@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-text__marker {
  background: linear-gradient(transparent 75%, var(--color-orange) 75%);
}

.u-text__inline-block {
  display: inline-block;
}

.u-text__indent {
  padding-inline-start: 1em;
  text-indent: -1em;
}

@property --root-font-size {
  syntax: "<length>";
  inherits: false;
  initial-value: 16px;
}
:root {
  /* inner */
  --inner: 1100px;
  --padding-pc: 25px;
  --padding-sp: 30px;
  /* color */
  /* 白・グレー系 */
  --color-white: #fff;
  --color-off-white: #F8F8F8;
  --color-gray-light: #BCB0BF;
  --color-gray-medium: #9A9A9A;
  --color-gray-medium-2: #D5D5D5;
  --color-gray-dark: #707070;
  --color-gray-darker: #575757;
  --color-gray-darker-2: #BCBDBF;
  --color-dark-gray: #2B2B2B;
  --color-black: #0D0505;
  --color-black-2: #333333;
  /* 赤系 */
  --color-red-bright: #D90101;
  --color-red-dark: #ED0000;
  /* オレンジ系 */
  --color-orange: #ED6800;
  --color-orange-dark: #ED5B00;
  /* 黄色系 */
  --color-yellow: #FFD833;
  --color-yellow-light: #FCF9EC;
  /* 緑系 */
  --color-green-bright: #08C900;
  --color-green-dark: #00B73B;
  --color-green-light: #A9CFBA;
  --color-green-pale: #ECFDEB;
  --color-teal: #18693C;
  /* 青系 */
  --color-blue: #1869C7;
  --color-blue-dark: #373A48;
  --color-blue-navy: #000026;
  /* font-weight */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  /* font-family */
  --noto-sans-jp: "Noto Sans JP", sans-serif;
  --baskervville: "Baskervville", serif;
  --noto-serif-jp: "Noto Serif JP", serif;
  --jost: "Jost", sans-serif;
  /* 8pxを余白の基準とした余白ルール */
  /* 参考：https://www.tak-dcxi.com/article/use-line-height-trim-as-css-variable/ */
  --leading-trim: calc((1em - 1lh) / 2);
  --spacing-unit: 0.5rem;
  --spacing-xs: calc(var(--spacing-unit) / 2);
  --spacing-sm: var(--spacing-unit);
  --spacing-md: calc(var(--spacing-unit) * 2);
  --spacing-lg: calc(var(--spacing-unit) * 3);
  --spacing-lg-2: calc(var(--spacing-unit) * 4);
  --spacing-xl: calc(var(--spacing-unit) * 5);
  --spacing-xl-2: calc(var(--spacing-unit) * 6);
  --spacing-2xl: calc(var(--spacing-unit) * 8);
  --spacing-3xl: calc(var(--spacing-unit) * 13);
  /* line-height分の余白を打ち消す */
  --spacing-xs-trim: calc(var(--spacing-xs) + var(--leading-trim));
  --spacing-sm-trim: calc(var(--spacing-sm) + var(--leading-trim));
  --spacing-md-trim: calc(var(--spacing-md) + var(--leading-trim));
  --spacing-lg-trim: calc(var(--spacing-lg) + var(--leading-trim));
  --spacing-xl-trim: calc(var(--spacing-xl) + var(--leading-trim));
  --spacing-2xl-trim: calc(var(--spacing-2xl) + var(--leading-trim));
  --spacing-3xl-trim: calc(var(--spacing-3xl) + var(--leading-trim));
  /* --leading-trimの使い方 */
  --to-rem: calc(tan(atan2(1px, var(--root-font-size))) * 1rem);
}

@supports not (top: 1lh) {
  :root {
    --leading-trim: 0px;
    /* `px`などの単位が必要 */
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

main {
  flex: 1;
}

a[href^=tel] {
  text-decoration: none;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  /* デフォルトはスマホ向け - 電話発信可能 */
  pointer-events: auto;
  /* PCなど精密なポインティングデバイスを持つ環境では無効化 */
}
@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  /* 強調をなくす */
}

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi));
  --clamp: clamp(calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
          var(--clamp-preffered-value),
          calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size))));
  font-size: var(--clamp);
}

/* bodyにデフォルト値を設定する */
body {
  font-family: var(--noto-sans-jp);
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
}

/* ドロワーメニュー展開時の背景固定 */
body.is-drawer-open {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.is-drawer-open {
    overflow: visible;
  }
}

/* 👍使い方 */
@media (max-width: 767px) {
  [data-device=pc] {
    display: none;
  }
}

@media (min-width: 768px) {
  [data-device=sp] {
    display: none;
  }
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:focus:not(:focus-visible) {
  outline: none;
}

input[type=text] {
  font-size: 1rem;
  /* = 16px */
}

textarea {
  field-sizing: content;
}

html {
  box-sizing: border-box;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
  box-sizing: border-box;
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
     # General elements
     # ================================================================= */
hr {
  overflow: visible;
  /* Show the overflow in Edge and IE */
  height: 0;
  /* Add the correct box sizing in Firefox */
  color: inherit;
  /* Correct border color in Firefox. */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0;
  /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
     # Forms
     # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield;
  appearance: none;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  appearance: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
     # Specify media element style
     # ================================================================= */
img {
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
     # Accessibility
     # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

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

/* Remove default padding */
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  max-width: 35rem;
  width: 100%;
  padding-right: var(--padding-sp);
  padding-left: var(--padding-sp);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: calc(var(--inner) + var(--padding-pc) * 2);
    padding-right: var(--padding-pc);
    padding-left: var(--padding-pc);
  }
}

.l-top__about {
  margin-block-start: var(--spacing-xl);
}
@media screen and (min-width: 768px) {
  .l-top__about {
    margin-block-start: var(--spacing-3xl);
  }
}

.l-top-greeting {
  margin-block-start: 9.5625rem;
}
@media screen and (min-width: 768px) {
  .l-top-greeting {
    margin-block-start: 10rem;
  }
}

.l-top-business {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .l-top-business {
    margin-top: 1.875rem;
  }
}

.c-breadcrumbs {
  color: var(--color-gray-medium-2);
}

.c-breadcrumbs__inner {
  padding-inline: var(--padding-sp);
  display: flex;
  align-items: center;
  gap: 0.3125rem 0.625rem;
  flex-wrap: wrap;
}

.c-breadcrumbs span {
  font-size: 0.75rem;
  font-weight: var(--medium);
  color: var(--color-gray-medium-2);
  line-height: 1.8571428571;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .c-breadcrumbs span {
    font-size: 0.875rem;
  }
}

.c-breadcrumbs__inner .current-item {
  color: var(--color-orange-dark);
}

.c-breadcrumbs a {
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .c-breadcrumbs a:hover {
    opacity: 0.7;
  }
}
.recruit-page .c-breadcrumbs__inner .current-item {
  color: var(--color-green-bright);
}

@media screen and (min-width: 768px) {
  .recruit-page .c-breadcrumbs__inner {
    padding-inline: 4.25rem;
  }
}

.c-breadcrumbs__inner .current-item-404 {
  text-transform: capitalize;
  color: var(--color-orange-dark);
}

.c-button {
  padding: 1.0625rem 1.25rem;
  max-width: 15rem;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.2;
  font-size: 1rem;
  font-weight: var(--semibold);
  color: var(--color-white);
  background-color: var(--color-black);
  letter-spacing: 0.04em;
  border-radius: 2rem;
  transition: opacity 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.125rem;
    padding: 1.375rem 1.5625rem;
    max-width: 16.875rem;
  }
}

.c-button::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .c-button::after {
    width: 0.625rem;
    height: 0.625rem;
  }
}

@media (any-hover: hover) {
  .c-button:hover {
    opacity: 1;
    border-radius: 0;
    background-color: var(--color-orange);
  }
}
.c-button.c-button--white {
  color: var(--color-black);
  background-color: var(--color-white);
  transition: border-radius 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

@media (any-hover: hover) {
  .c-button.c-button--white:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
  }
}
.c-button.c-button--navy {
  background-color: var(--color-blue-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-button.c-button--navy {
    max-width: 16.875rem;
  }
}

.c-button.c-button--navy::after {
  content: none;
}

@media (any-hover: hover) {
  .c-button.c-button--navy:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
  }
}
.c-contact-button {
  padding: 0.75rem 0.625rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: var(--color-orange);
  border-radius: 2rem;
  gap: 0.25rem;
  transition: border-radius 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

@media (any-hover: hover) {
  .c-contact-button:hover {
    opacity: 1;
    border-radius: 0;
    background-color: var(--color-white);
    color: var(--color-orange);
  }
}
.c-image-text {
  display: grid;
  align-items: center;
  grid-template: "image gutter text margin" auto/41.6666666667% 16px 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text--reverse {
  grid-template: "margin text gutter image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 16px 41.6666666667%;
}

.c-image-text__image {
  grid-area: image;
}

.c-image-text__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text__text {
  grid-area: text;
}

.c-image-text02 {
  display: grid;
  align-items: center;
  grid-template: "image text margin" auto/41.6666666667% 1fr max((100% - var(--inner)) / 2, 32px);
}

.c-image-text02--reverse {
  grid-template: "margin text image" auto/max((100% - var(--inner)) / 2, 32px) 1fr 41.6666666667%;
}

.c-image-text02__image {
  grid-area: image;
}

.c-image-text02__image img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.c-image-text02__text {
  grid-area: text;
  padding: 20px 0 20px 20px;
  margin-left: -100px;
  background: #fff;
}

.c-image-text02--reverse .c-image-text02__text {
  padding: 20px 20px 20px 0;
  margin-left: auto;
  margin-right: -100px;
}

.c-recruit-button {
  position: relative;
  background-color: var(--color-dark-gray);
  border-radius: 0.625rem;
  padding: 0.65625rem 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1rem;
  font-weight: var(--semibold);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 2.125;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-recruit-button {
    font-size: 1.125rem;
    line-height: 1.7777777778;
    letter-spacing: 0.06em;
    padding: 1.375rem 0.25rem 1.375rem;
  }
}

@media (any-hover: hover) {
  .c-recruit-button:hover {
    color: var(--color-yellow);
  }
}
.c-recruit-button__icon::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-recruit-button__icon::before {
    content: "";
    display: block;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
  }
}

.c-recruit-button__icon-left::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.6875rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-recruit-button__icon-left::before {
    left: 1.375rem;
  }
}

.c-section-subtitle {
  font-size: 0.875rem;
  font-weight: var(--regular);
  font-family: var(--baskervville);
  color: var(--color-white);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .c-section-subtitle {
    font-size: 1rem;
  }
}

.c-section-subtitle.c-section-subtitle--ja {
  font-family: var(--noto-serif-jp);
  font-weight: var(--semibold);
  color: var(--color-white);
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-section-subtitle.c-section-subtitle--ja {
    font-size: 1rem;
  }
}

.c-section-subtitle.c-section-subtitle--dark {
  color: var(--color-dark-gray);
}

.c-section-title-wrap {
  position: relative;
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-section-title-wrap {
    gap: 0.625rem;
  }
}

.c-section-title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.125rem;
  height: 0.25rem;
  background-color: var(--color-orange-dark);
}
@media screen and (min-width: 768px) {
  .c-section-title-wrap::after {
    width: 4.375rem;
  }
}

.c-section-title-wrap.c-section-title-wrap--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.c-section-title {
  position: relative;
  z-index: 10;
  font-size: 1.375rem;
  font-weight: var(--bold);
  font-family: var(--noto-sans-jp);
  color: var(--color-white);
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 2.625rem;
  }
}

.c-section-title.c-section-title--left {
  text-align: left;
  letter-spacing: 0.06em;
}

.c-section-title.c-section-title--right {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .c-section-title::before {
    content: attr(data-title);
    position: absolute;
    z-index: -1;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-blue-dark);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    font-size: clamp(60px, 6.5104166667vw, 100px);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

.c-section-title.c-section-title--left::before {
  left: 0;
  transform: translate(0, -50%);
  color: var(--color-white);
  opacity: 0.3;
  letter-spacing: -0.04em;
}

.c-section-title.c-section-title--right::before {
  right: 0;
  left: initial;
  transform: translate(0, -50%);
}

.c-section-title.c-section-title--dark {
  color: var(--color-dark-gray);
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--dark {
    font-size: clamp(1.625rem, 0.994rem + 0.92vw, 1.875rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
}

.c-section-title.c-section-title--dark::before {
  color: var(--color-off-white);
}

.c-section-title.c-section-title--black {
  color: var(--color-dark-gray);
  text-align: left;
  font-size: 1.375rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--black {
    font-size: 2.625rem;
    line-height: 1.5;
  }
}

.c-section-title.c-section-title--naby {
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--naby {
    letter-spacing: 0.06em;
  }
}

.c-text {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-white);
  line-height: 1.875;
  letter-spacing: 0.04em;
}
.c-text.c-text--black {
  color: var(--color-dark-gray);
}

.c-triangle {
  aspect-ratio: 1/1;
  width: 4rem;
  background-color: var(--color-black);
  display: inline-block;
}

.c-triangle--top {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.c-triangle--bottom {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.c-triangle--left {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.c-triangle--right {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-triangle--lower-left {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.c-triangle--upper-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.c-triangle--lower-right {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.c-triangle--upper-right {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.p-business {
  position: relative;
  padding-block: 0 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-business {
    padding-block: 0 9.8125rem;
  }
}

.p-business__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-business__inner {
    max-width: 97.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-business__inner::after {
    content: "business";
    position: absolute;
    bottom: -2.75rem;
    left: calc(50% - min(48vw, 42.5rem));
    color: var(--color-off-white);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: 8.5rem;
    line-height: 0.9411764706;
    letter-spacing: 0.01em;
    z-index: -1;
    text-align: right;
    white-space: pre-line;
  }
}

.p-business__container {
  display: grid;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 31.25rem) minmax(1.875rem, 1fr);
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 768px) {
  .p-business__container {
    margin-top: 2.25rem;
    --padding-inline: clamp(5.3125rem, -40.089rem + 55.95vw, 13.625rem);
    --grid-gap: clamp(1.25rem, -11.365rem + 18.35vw, 6.25rem);
    grid-template-columns: var(--padding-inline) var(--grid-gap) 360fr 40fr 500fr var(--grid-gap) var(--padding-inline);
    grid-template-rows: repeat(3, auto);
  }
}

.p-business__title-wrap {
  margin-top: 1.875rem;
  grid-area: 4/2/5/3;
}
@media screen and (min-width: 768px) {
  .p-business__title-wrap {
    margin-top: 3.875rem;
    grid-area: 3/3/4/4;
  }
  .p-business__title-wrap .c-section-title {
    letter-spacing: 0.06em;
  }
}

@media screen and (min-width: 768px) {
  .p-business__title-wrap.c-section-title-wrap {
    padding-bottom: 2.5rem;
  }
}

.p-business__content {
  margin-top: 1.625rem;
  grid-area: 5/2/6/3;
  display: grid;
  gap: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-business__content {
    margin-top: 3.6875rem;
    gap: 0;
    grid-area: 3/5/5/6;
  }
}

.p-business__message {
  margin-top: -0.125rem;
  text-align: right;
}

.p-company-access {
  background-color: var(--color-white);
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-company-access {
    padding-bottom: 5.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company-access__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-company-access__container {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: 180fr 650fr;
    align-items: flex-start;
    gap: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company-access__container::after {
    content: "access";
    position: absolute;
    top: -2.9375rem;
    left: calc(50% - min(48vw, 43.125rem));
    color: var(--color-off-white);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: 8.5rem;
    line-height: 0.9411764706;
    letter-spacing: 0.01em;
    z-index: -1;
    text-align: right;
    white-space: pre-line;
  }
}

@media screen and (min-width: 768px) {
  .p-company-access__title-wrap.c-section-title-wrap {
    padding-bottom: 2.5rem;
  }
}

.p-company-access__content {
  margin-top: 1.75rem;
  display: grid;
  gap: 3.6875rem;
}
@media screen and (min-width: 768px) {
  .p-company-access__content {
    margin-top: initial;
    grid-template-columns: 1fr;
    gap: 2.1875rem;
  }
}

.p-company-access__location {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-access__location {
    flex-direction: row;
    align-items: flex-end;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company-access__map {
    width: min(100%, 24.25rem);
    flex-shrink: 0;
  }
}

.p-company-access__map iframe {
  aspect-ratio: 315/196;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-company-access__map iframe {
    aspect-ratio: 388/242;
  }
}

@media screen and (min-width: 768px) {
  .p-company-access__info {
    padding-bottom: 0.3125rem;
  }
}

.p-company-access__name {
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  letter-spacing: 0.04em;
  line-height: 1.5555555556;
  border-bottom: 1px solid var(--color-gray-medium-2);
  padding-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-company-access__name {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
}

.p-company-access__address {
  margin-top: 0.9375rem;
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-black-2);
  line-height: 1.5;
  letter-spacing: 0.04em;
  border: none;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-company-access__address {
    margin-top: 1rem;
  }
}

.p-company-access__contact {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-company-access__tel {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-black-2);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-left: -0.5rem;
  border: none;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .p-company-access__tel {
    margin-top: initial;
    white-space: nowrap;
  }
}

.p-company-access__tel a {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-black-2);
  letter-spacing: 0.04em;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.p-company-access__tel span {
  position: relative;
  color: var(--color-gray-dark);
  font-weight: var(--bold);
  display: inline-flex;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-company-access__tel span {
    gap: 0.1875rem;
  }
}

.p-company-access__tel span::before {
  content: "【";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-dark);
}

.p-company-access__tel span::after {
  content: "】";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-dark);
  margin-right: -0.1875rem;
}

.p-company-history {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding-block: 5rem 6.9375rem;
}
@media screen and (min-width: 768px) {
  .p-company-history {
    padding-block: 10.125rem 6.25rem;
  }
}

.p-company-history__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-company-history__bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-image: image-set(url("../../images/bg_company.webp") type("image/webp"), url("../../images/bg_company.jpg") type("image/jpg"));
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .p-company-history__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-company-history__container {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: 180fr 650fr;
    align-items: flex-start;
    gap: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company-history__container::after {
    content: "history";
    position: absolute;
    top: -2.9375rem;
    left: calc(50% - min(48vw, 43.125rem));
    color: var(--color-blue-dark);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: 8.5rem;
    line-height: 0.9411764706;
    letter-spacing: 0.01em;
    z-index: -1;
    text-align: right;
    white-space: pre-line;
  }
}

@media screen and (min-width: 768px) {
  .p-company-history__title-wrap.c-section-title-wrap {
    padding-bottom: 2.5rem;
  }
}

.p-company-history__content {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-company-history__content {
    margin-top: -0.4375rem;
  }
}

.p-company-history__list {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-company-history__list {
    gap: 0;
  }
}

.p-company-history__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-company-history__item {
    position: relative;
    flex-direction: row;
    gap: 2.75rem;
    padding-block: 1.54375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company-history__item.p-company-history__item--center {
    align-items: center;
  }
}

.p-company-history__term {
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .p-company-history__term {
    flex-shrink: 0;
    min-width: 13.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company-history__item::after {
    content: "";
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    width: 14.0625rem;
    height: 0.25rem;
    background-color: var(--color-white);
  }
}

.p-company-history__year-number {
  font-size: 2.5rem;
  font-weight: var(--regular);
  line-height: 1;
  font-family: var(--noto-serif-jp);
  color: var(--color-white);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-company-history__year-number {
    font-size: 3rem;
  }
}

.p-company-history__year-unit,
.p-company-history__year-era {
  margin-bottom: -0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-company-history__year-unit,
  .p-company-history__year-era {
    margin-bottom: initial;
  }
}

.p-company-history__year-unit {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.875;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-left: 0.125rem;
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .p-company-history__year-unit {
    font-size: 1.125rem;
    margin-left: 0.25rem;
    margin-bottom: -0.25rem;
  }
}

.p-company-history__year-era {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.875;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-left: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-company-history__year-era {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.p-company-history__description,
.p-company-history__description span {
  display: grid;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-company-history__description,
  .p-company-history__description span {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    gap: 0.9375rem;
  }
}

.p-company-message {
  background-color: var(--color-blue-navy);
  padding-block: 3.75rem 4.625rem;
}
@media screen and (min-width: 768px) {
  .p-company-message {
    padding-block: 4rem 0;
  }
}

@media screen and (min-width: 768px) {
  .p-company-message__inner {
    max-width: 100rem;
    margin-inline: auto;
  }
}

.p-company-message__container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 500px) minmax(1.875rem, 1fr);
  grid-template-rows: auto auto auto;
}
@media screen and (min-width: 768px) {
  .p-company-message__container {
    --padding-inline: clamp(1.875rem, -27.769rem + 43.12vw, 13.625rem);
    grid-template-columns: var(--padding-inline) 560fr 40fr 500fr var(--padding-inline);
  }
}

.p-company-message__text-block {
  display: grid;
  gap: 1.125rem;
  grid-area: 1/2/2/3;
}
@media screen and (min-width: 768px) {
  .p-company-message__text-block {
    grid-area: 1/2/2/3;
    position: relative;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-company-message__text-block::after {
    content: "company message";
    position: absolute;
    z-index: -1;
    left: 0;
    top: 7.5rem;
    color: var(--color-blue-dark);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    font-size: 6.25rem;
    line-height: 1.16;
    text-transform: uppercase;
    letter-spacing: -0.03em;
  }
}

.p-company-message__title {
  font-size: 2.5rem;
  font-weight: var(--bold);
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-company-message__title {
    font-size: clamp(3.25rem, -0.219rem + 5.05vw, 4.625rem);
    line-height: 1.3513513514;
  }
}
@supports (-webkit-appearance: none) and (not (text-size-adjust: none)) {
  .p-company-message__title {
    font-size: 2rem;
  }
  @media screen and (min-width: 768px) {
    .p-company-message__title {
      font-size: clamp(2.5rem, -0.969rem + 5.05vw, 3.75rem);
      line-height: 1.3513513514;
    }
  }
}

.p-company-message__description {
  grid-area: 3/2/4/3;
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.875;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-company-message__description {
    margin-top: initial;
    font-size: 1rem;
    padding-block: 3.375rem 1.875rem;
    grid-area: 1/4/3/5;
  }
}

.p-company-message__image {
  position: relative;
  z-index: 2;
  margin-top: 1.75rem;
  grid-area: 2/1/3/3;
}
@media screen and (min-width: 768px) {
  .p-company-message__image {
    margin-top: 2.25rem;
    padding-right: 2.375rem;
    grid-area: 2/1/4/3;
  }
}

.p-company-message__image img {
  aspect-ratio: 345/136;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-company-message__image img {
    aspect-ratio: 740/316;
  }
}

.p-company-message__bg {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-company-message__bg {
    display: block;
    grid-area: 3/1/4/6;
    border-image: linear-gradient(var(--color-white) 0 0) fill 0//0 100vi;
    height: 9.875rem;
  }
}

.p-company {
  padding-block: 3.875rem 5.125rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-company {
    padding-block: 6.25rem 10rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-company__content {
  background-color: var(--color-off-white);
  padding: 1.6875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__content {
    padding: 3.0625rem 3.75rem 5.0625rem;
  }
}

.p-company__list {
  display: grid;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-company__list {
    gap: 0rem;
  }
}

.p-company__item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--color-gray-medium-2);
  gap: 0.3125rem;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__item {
    flex-direction: row;
    justify-content: space-between;
    gap: 2.1875rem;
    padding-block: 1.71875rem;
  }
}

.p-company__term {
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-orange-dark);
  letter-spacing: 0.04em;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-company__term {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    min-width: 10rem;
  }
}

.p-company__description,
.p-company__description-item {
  font-size: 1rem;
  font-weight: var(--medium);
  letter-spacing: 0.04em;
  line-height: 1.875;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-company__description,
  .p-company__description-item {
    width: 100%;
  }
}

.p-company__description-item:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-company__description-item:not(:first-child) {
    margin-top: 0.9375rem;
  }
}

.p-confirm {
  padding-block: 3.75rem 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-confirm {
    padding-block: 6.1875rem 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-confirm__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-confirm__text {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-confirm__text {
    font-size: 0.875rem;
  }
}

.p-confirm__content {
  margin-top: 1.5625rem;
  background-color: var(--color-off-white);
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-confirm__content {
    margin-top: 2.3125rem;
    padding: 3.75rem 3.75rem;
  }
}

.p-confirm__form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-confirm__form {
    gap: 3.8125rem;
  }
}

.p-confirm__field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-confirm__field {
    flex-direction: row;
    gap: 0.75rem;
    padding-bottom: 3.5rem;
  }
}

.p-confirm__zip-container {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-confirm__zip-container {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.p-confirm__field.p-confirm__field--textarea {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-confirm__field.p-confirm__field--textarea {
    align-items: flex-start;
    padding-bottom: 3.4375rem;
  }
}

.p-confirm__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-confirm__label {
    min-width: 11.25rem;
    gap: 0.625rem;
  }
}

.p-confirm__label-text {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}

.p-confirm__data {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}

.p-confirm__message {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-confirm__message {
    font-size: 1rem;
  }
}

.p-confirm__required {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-white);
  background-color: var(--color-orange-dark);
}

.p-confirm__optional {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-white);
  background-color: var(--color-gray-dark);
}

.p-confirm__submit-wrap {
  margin-top: 1.9375rem;
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-confirm__submit-wrap {
    margin-top: 2.5rem;
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
  }
}

.p-confirm__return,
.p-form__send {
  width: 100%;
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-confirm__return,
  .p-form__send {
    max-width: 16.875rem;
  }
}

.p-confirm__submit,
.p-confirm__back {
  width: 100%;
  padding: 1.0625rem 1.25rem;
  font-size: 1rem;
  font-weight: var(--semibold);
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-black);
  letter-spacing: 0.04em;
  border-radius: 2rem;
  transition: border-radius 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-confirm__submit,
  .p-confirm__back {
    padding: 0.9375rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}

@media (any-hover: hover) {
  .p-confirm__submit:hover,
  .p-confirm__back:hover {
    opacity: 1;
    border-radius: 0;
    background-color: var(--color-orange);
  }
}
.p-confirm__back {
  display: block !important;
}

.p-contact {
  padding-block: 3.75rem 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: 6.1875rem 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-contact__text {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__text {
    font-size: 0.875rem;
  }
}

.p-contact__content {
  margin-top: 1.5625rem;
  background-color: var(--color-off-white);
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__content {
    margin-top: 2.3125rem;
    padding: 3.75rem 3.75rem;
  }
}

.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    gap: 3.8125rem;
  }
}

.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-contact__field {
    flex-direction: row;
    gap: 0.75rem;
    padding-bottom: 3.5rem;
  }
}

.p-contact__zip-container {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__zip-container {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.p-contact__field.p-contact__field--textarea {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__field.p-contact__field--textarea {
    align-items: flex-start;
    padding-bottom: 3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__field.p-contact__field--textarea .p-contact__label {
    padding-top: 0.75rem;
  }
}

/* バリデーションエラー時のスタイル */
.p-contact__field .wpcf7-not-valid-tip {
  color: var(--color-red-dark);
  font-weight: var(--medium);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  margin-top: 0.1875rem;
}

/* バリデーションエラー時のスタイル */
.p-contact__field .wpcf7-not-valid {
  border: 1px solid var(--color-red-dark) !important;
}

@media screen and (min-width: 768px) {
  .p-contact__field .wpcf7-form-control-wrap {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__field.p-contact__field--tel .wpcf7-form-control-wrap {
    width: 100%;
    max-width: 18.125rem;
  }
}

.p-contact__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    min-width: 11.25rem;
    gap: 0.625rem;
  }
}

.p-contact__label-text {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}

.p-contact__required {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-white);
  background-color: var(--color-orange-dark);
}

.p-contact__optional {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-white);
  background-color: var(--color-gray-dark);
}

.p-contact__field .p-contact__input,
.p-contact__field .p-contact__textarea {
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background-color: var(--color-white);
  color: var(--color-dark-gray);
  font-weight: var(--medium);
  line-height: 2.1428571429;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .p-contact__field .p-contact__input,
  .p-contact__field .p-contact__textarea {
    padding: 0.8125rem 1.25rem;
  }
}

.p-contact__input::placeholder,
.p-contact__textarea::placeholder {
  color: var(--color-gray-medium-2);
}

/* オートコンプリート時の背景色を制御 */
.p-contact__input:-webkit-autofill,
.p-contact__input:-webkit-autofill:hover,
.p-contact__input:-webkit-autofill:focus,
.p-contact__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--color-white) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.p-contact__textarea {
  min-height: 15rem;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    min-height: 13.125rem;
  }
}

.p-contact__zip-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__zip-wrap {
    display: grid;
    grid-template-columns: 290fr 190fr;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 0.625rem;
    max-width: 30.625rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__zip-wrap .wpcf7-form-control-wrap {
    grid-area: 1/1/2/2;
  }
}

.p-contact__input + .wpcf7-not-valid-tip {
  order: 1;
}

.p-contact__zip-wrap .wpcf7-form-control-wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-contact__zip-wrap .wpcf7-form-control-wrap {
    display: block;
  }
}

.p-contact__zip-button {
  padding: 0.625rem 1.125rem;
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background-color: var(--color-dark-gray);
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact__zip-button {
    flex-shrink: 0;
    max-width: 11.875rem;
    max-height: 3.5rem;
    width: 100%;
    grid-area: 1/2/2/3;
  }
}

@media (any-hover: hover) {
  .p-contact__zip-button:hover {
    background-color: var(--color-orange-dark);
    color: var(--color-white);
  }
}
.p-contact__privacy-policy {
  margin-top: 1.0625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__privacy-policy {
    margin-top: 3.375rem;
  }
}

.p-contact__privacy-link {
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 2.1428571429;
  letter-spacing: 0.04em;
  color: var(--color-gray-darker-2);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .p-contact__privacy-link:hover {
    color: var(--color-dark-gray);
    text-decoration: underline;
  }
}
.p-contact__agreement {
  margin-top: 0.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__agreement {
    margin-top: 0.75rem;
  }
}

.p-contact__agreement .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 3.75rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact__agreement .wpcf7-list-item label {
    padding-left: 2rem;
  }
}

@media (any-hover: hover) {
  .p-contact__agreement .wpcf7-list-item label:hover {
    opacity: 0.7;
  }
}
.p-contact__agreement .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-black-2);
  text-align: left;
}

.p-contact__checkbox {
  position: absolute;
  top: 0.125rem;
  left: 1.875rem;
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: var(--color-gray-medium-2);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox {
    top: 0.1875rem;
    left: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-contact__checkbox:checked {
  border-color: var(--color-orange-dark);
}

.p-contact__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.3125rem;
  border: 0.125rem solid var(--color-orange-dark);
  border-width: 0 0 0.125rem 0.125rem;
  transform: translate(-50%, -60%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .p-contact__checkbox:checked::after {
    width: 0.8125rem;
    height: 0.375rem;
  }
}

.p-contact__submit-wrap {
  margin-top: 1.9375rem;
  text-align: center;
  max-width: 15rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-contact__submit-wrap {
    margin-top: 2.5rem;
    max-width: 16.875rem;
  }
}

.p-contact__submit {
  width: 100%;
  padding: 1.0625rem 1.25rem;
  font-size: 1rem;
  font-weight: var(--semibold);
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-black);
  letter-spacing: 0.04em;
  border-radius: 2rem;
  transition: opacity 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    padding: 0.9375rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}

@media (any-hover: hover) {
  .p-contact__submit:hover {
    opacity: 1;
    border-radius: 0;
    background-color: var(--color-orange);
  }
}
.wpcf7-spinner {
  display: none;
}

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

.p-contact__error-message {
  color: var(--color-red-dark);
  font-weight: var(--medium);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  margin-top: 0.3125rem;
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-contact__error-message {
    display: grid;
    grid-area: 2/1/3/3;
  }
}

.p-faq {
  padding-block: 3.9375rem 4.8125rem;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-block: 6.3125rem 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-faq__inner.l-inner {
    max-width: 51.875rem;
    margin-inline: auto;
  }
}

.p-faq__list {
  display: grid;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    gap: 3.625rem;
  }
}

.p-faq__item {
  display: grid;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item {
    gap: 1.5625rem;
  }
}

.p-faq__question {
  position: relative;
  display: grid;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq__question {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
  }
}

.p-faq__question-num {
  position: relative;
  font-family: var(--noto-serif-jp);
  font-size: 1.5rem;
  color: var(--color-orange-dark);
  font-weight: var(--regular);
  line-height: 1;
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-faq__question-num {
    font-size: 2.25rem;
    padding-bottom: initial;
    padding-left: 1.4375rem;
  }
}

.p-faq__question-num::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.9375rem;
  height: 0.125rem;
  background-color: var(--color-orange-dark);
}
@media screen and (min-width: 768px) {
  .p-faq__question-num::before {
    bottom: initial;
    top: -0.0625rem;
    width: 0.25rem;
    height: 2.625rem;
  }
}

.p-faq__question-text {
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.6875;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-faq__question-text {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.p-faq__answer {
  position: relative;
  display: flex;
  gap: 0.5rem;
  background-color: var(--color-off-white);
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__answer {
    padding: 1.875rem 1.875rem 1.75rem;
  }
}

.p-faq__answer-mark {
  font-family: var(--noto-serif-jp);
  font-size: 1.5rem;
  color: var(--color-orange-dark);
  font-weight: var(--regular);
  line-height: 1;
  letter-spacing: 0.04em;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .p-faq__answer-mark {
    font-size: 1.5rem;
  }
}

.p-faq__answer-text {
  font-size: 0.875rem;
  color: var(--color-dark-gray);
  font-weight: var(--medium);
  line-height: 1.8571428571;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-faq__answer-text {
    padding-top: 0.125rem;
  }
}

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

.p-faq__contact-text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-faq__contact-text {
    font-size: 1.125rem;
  }
}

.p-faq__button-wrap {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__button-wrap {
    margin-top: 2rem;
  }
}

.p-footer {
  background-color: var(--color-blue-navy);
}

.p-footer.p-footer--recruit {
  background-color: var(--color-green-bright);
}

.p-footer__banner {
  background-image: image-set(url("../../images/bg_footer.webp") type("image/webp"), url("../../images/bg_footer.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  padding: 1.875rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__banner {
    padding: 5rem 1.25rem;
  }
}

.p-footer__recruit-banner {
  background-image: image-set(url("../../images/bg_recruit-banner.webp") type("image/webp"), url("../../images/bg_recruit-banner.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  padding: 3.25rem 1.875rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-banner {
    padding: 7.25rem 1.25rem 6.25rem;
  }
}

.p-footer__banner-inner {
  display: flex;
  flex-direction: column;
  max-width: 33.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__banner-inner {
    max-width: 68.75rem;
    flex-direction: row;
    justify-content: center;
  }
}

.p-footer__recruit-banner-wrap {
  position: relative;
}

.p-footer__recruit-banner-check {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  max-width: 12.5rem;
  padding: 0.25rem 1rem;
  border: 1px solid var(--color-dark-gray);
  border-radius: 1.5625rem;
  background-color: var(--color-yellow);
  text-align: center;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.5;
  color: var(--color-dark-gray);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-banner-check {
    max-width: 7.625rem;
  }
}

.p-footer__recruit-banner-check::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border-style: solid;
  border-width: 0.625rem 0.40625rem 0 0.40625rem;
  border-color: var(--color-dark-gray) transparent transparent;
}

.p-footer__recruit-banner-check::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  border-style: solid;
  border-width: 0.5125rem 0.33125rem 0 0.33125rem;
  border-color: var(--color-yellow) transparent transparent;
}

.p-footer__recruit-banner-text-wrap {
  background-color: var(--color-dark-gray);
  border-radius: 1.25rem;
  width: min(100%, 19.6875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-banner-text-wrap {
    width: min(100%, 43.125rem);
  }
}

.p-footer__recruit-banner-text-wrap a {
  padding: 1.75rem 1.25rem 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1.3333333333;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-banner-text-wrap a {
    position: relative;
    font-size: 1.5rem;
    line-height: 1.3333333333;
    padding: 2.21875rem 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-footer__recruit-banner-text-wrap a:hover {
    color: var(--color-yellow);
  }
}
.p-footer__recruit-banner-icon:before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-banner-icon:before {
    content: "";
    display: block;
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
  }
}

.p-footer__banner-block {
  position: relative;
  flex: 1;
  text-align: center;
  background-color: var(--color-blue-navy);
  padding: 1.6875rem 0.625rem 0.9375rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-footer__banner-block {
    padding: 2.5625rem 1.25rem;
  }
}

.p-footer__banner-block:hover {
  opacity: 1;
}

.p-footer__banner-block::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 0;
}

.p-footer__banner-block:hover::after {
  transform: translateX(0);
}

.p-footer__banner-block.p-footer__banner-block--right {
  border-top: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-footer__banner-block.p-footer__banner-block--right {
    position: relative;
    border-top: none;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__banner-block.p-footer__banner-block--right::before {
    content: "";
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--color-white);
  }
}

.p-footer__banner-title-ja {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__banner-title-ja {
    font-size: 1.875rem;
  }
}

.p-footer__banner-title-ja::before {
  content: attr(data-title);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-blue-dark);
  font-family: var(--baskervville);
  font-weight: var(--regular);
  font-size: 3.625rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-footer__banner-title-ja::before {
    font-size: clamp(60px, 6.5104166667vw, 100px);
  }
}

.p-footer__banner-title-en {
  position: relative;
  z-index: 10;
  font-size: 0.875rem;
  font-family: var(--baskervville);
  font-weight: var(--regular);
  color: var(--color-white);
  letter-spacing: 0.06em;
  margin-top: 0.625rem;
  text-transform: uppercase;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-footer__banner-title-en {
    font-size: 1rem;
    margin-top: 1.1875rem;
  }
}

.p-footer__inner {
  padding: 2.6875rem 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 5.125rem 1.5625rem 1.25rem;
  }
}

.p-footer__recruit-inner.l-inner {
  padding-block: 2.625rem 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-inner.l-inner {
    padding-block: 3.875rem 1.25rem;
    max-width: 73.125rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__recruit-container {
    --diff: min(484/1536*100vw, 484px);
    display: grid;
    grid-template-columns: 370fr var(--diff) 266fr;
    grid-template-rows: repeat(2, auto);
  }
}

.p-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__top.p-footer__top--recruit {
    grid-area: 1/1/2/2;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__offices.p-footer__offices--recruit {
    grid-area: 2/1/3/2;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav.p-footer__nav--recruit {
    grid-area: 1/3/3/4;
  }
}

.p-footer__logo {
  max-width: 19.6875rem;
  width: 100%;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 23.125rem;
  }
}

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

.p-footer__recruit-logo {
  max-width: 19.6875rem;
  width: 100%;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-logo {
    max-width: 23.125rem;
  }
}

@media (any-hover: hover) {
  .p-footer__logo:hover,
  .p-footer__recruit-logo:hover {
    opacity: 0.7;
  }
}
.p-footer__recruit-logo img {
  width: 104%;
  height: auto;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-logo img {
    width: 100%;
  }
}

.p-footer__contact {
  width: min(100%, 14.4375rem);
}
@media screen and (min-width: 768px) {
  .p-footer__contact {
    margin-top: -0.8125rem;
  }
}

.p-footer__contact-icon::before {
  font-size: 1.25rem;
}

.p-footer__content {
  margin-top: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    margin-top: 1.5rem;
    flex-direction: row;
    gap: 3.75rem;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.p-footer__recruit-content {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__recruit-content {
    display: contents;
  }
}

.p-footer__offices {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__offices {
    flex-direction: row;
    gap: 2rem;
    flex-shrink: 0;
    width: 51.2727272727%;
  }
}

.p-footer__office {
  min-width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__office {
    max-width: 16.5rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__office.p-footer__office--recruit {
    max-width: none;
  }
}

.p-footer__office-title {
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.8888888889;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--color-white);
}

.p-footer__office-address {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.5;
  color: var(--color-white);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

.p-footer__office-contact-wrap {
  margin-top: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-footer__office-tel,
.p-footer__office-fax {
  font-size: 1.375rem;
  font-weight: var(--bold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.04em;
  border: none;
  text-decoration: none;
}

.p-footer__map {
  margin-top: 1.5625rem;
  padding: 0.375rem 1.8125rem;
  display: inline-block;
  font-size: 1rem;
  color: var(--color-white);
  font-weight: var(--bold);
  line-height: 1;
  letter-spacing: 0.04em;
  border: 1px solid var(--color-white);
  border-radius: 1.25rem;
  transition: background-color 0.3s, color 0.3s;
}

.p-footer__map:hover {
  background-color: var(--color-white);
  color: var(--color-dark-gray);
}

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

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

@media screen and (min-width: 768px) {
  .p-footer__nav-columns {
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
  }
}

.p-footer__nav-column {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-column:nth-child(2) {
    max-width: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-column:nth-child(3) {
    max-width: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-column:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -26%;
    width: 1px;
    height: 100%;
    background-color: var(--color-white);
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-column:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: -43%;
    width: 1px;
    height: 100%;
    background-color: var(--color-white);
  }
}

.p-footer__nav-wrap {
  padding-block: 1.1875rem;
  display: grid;
  gap: 0.1875rem;
  border-bottom: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-footer__nav-wrap {
    padding-block: initial;
    border-bottom: none;
  }
}

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

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

.p-footer__nav-policy {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-policy {
    margin-top: 0.75rem;
    text-align: right;
  }
}

.p-footer__nav-title {
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.06em;
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .p-footer__nav-title:hover,
  .p-footer__nav-link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__nav-title.p-footer__nav-title--top {
    margin-top: 1.25rem;
  }
}

.p-footer__nav-link {
  font-size: 0.75rem;
  color: var(--color-white);
  font-weight: var(--medium);
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 1.75rem;
  }
}

.p-footer__nav-item {
  border-bottom: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item {
    border: none;
  }
}

.p-footer__nav-item.p-footer__nav-item--recruit {
  padding-block: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item.p-footer__nav-item--recruit {
    padding-block: initial;
  }
}

.p-footer__nav-item a {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-bottom: 0.25rem;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    color: var(--color-dark-gray);
  }
}
.p-footer__nav-button-wrap {
  margin-top: 2.3125rem;
  max-width: 16.625rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-button-wrap {
    margin-top: 0.875rem;
    max-width: 16.875rem;
    margin-left: auto;
    margin-right: initial;
  }
}

.p-footer__nav-button-wrap a {
  padding: 1.0625rem 1.25rem 1.0625rem 1.5625rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.375;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-blue);
  background-color: var(--color-white);
  letter-spacing: 0.04em;
  border-radius: 1.875rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-button-wrap a {
    padding: 1rem 1.25rem 1rem 1.5625rem;
  }
}

@media (any-hover: hover) {
  .p-footer__nav-button-wrap a:hover {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
  }
}
.p-footer__nav-button-icon:before {
  content: "";
  font-size: 1.25rem;
}

.p-footer__bottom {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    margin-top: 7.3125rem;
  }
}

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

.p-footer__copyright {
  font-size: 0.625rem;
  font-weight: var(--medium);
  color: var(--color-white);
  line-height: 1;
}

.p-greeting {
  position: relative;
  background-color: var(--color-blue-navy);
  padding-block: 0 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-greeting {
    padding-block: 0 9.8125rem;
  }
}

.p-greeting__inner {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-greeting__inner {
    max-width: 100rem;
  }
}

@media screen and (min-width: 768px) {
  .p-greeting__inner::after {
    content: "top\amessage";
    position: absolute;
    bottom: -2.75rem;
    right: calc(50% - min(48vw, 45.6875rem));
    color: var(--color-blue-dark);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: 8.5rem;
    line-height: 0.9411764706;
    letter-spacing: 0.01em;
    z-index: -1;
    text-align: right;
    white-space: pre-line;
  }
}

.p-greeting__container {
  display: grid;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 31.25rem) minmax(1.875rem, 1fr);
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 768px) {
  .p-greeting__container {
    margin-top: 2.625rem;
    --padding-inline: clamp(1.875rem, -40.089rem + 55.95vw, 13.625rem);
    --grid-gap: clamp(1.25rem, -11.365rem + 18.35vw, 6.25rem);
    grid-template-columns: var(--padding-inline) var(--grid-gap) 360fr 40fr 500fr var(--grid-gap) var(--padding-inline);
    grid-template-rows: repeat(3, auto);
  }
}

.p-greeting__image {
  margin-top: -5.875rem;
  grid-area: 1/2/3/4;
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__image {
    margin-top: -3.6875rem;
    padding-left: 0.3125rem;
    grid-area: 1/5/3/8;
  }
}

.p-greeting__image img {
  aspect-ratio: 325/206;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-greeting__image img {
    aspect-ratio: 814/450;
  }
}

.p-greeting__lead-wrap {
  margin-top: -0.125rem;
  grid-area: 2/2/4/3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__lead-wrap {
    margin-top: initial;
    padding-bottom: 3.8125rem;
    grid-area: 2/3/3/6;
    gap: 0.5625rem;
  }
}

.p-greeting__lead-wrap--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-greeting__lead-wrap--pc {
    display: inline-flex;
  }
}

.p-greeting__lead-wrap--sp {
  display: inline-flex;
}
@media screen and (min-width: 768px) {
  .p-greeting__lead-wrap--sp {
    display: none;
  }
}

.p-greeting__lead {
  background-color: var(--color-white);
  width: fit-content;
  padding: 0.65625rem 0.3125rem;
  margin-right: auto;
  font-size: 1.625rem;
  font-weight: var(--semibold);
  font-family: var(--noto-serif-jp);
  color: var(--color-dark-gray);
  line-height: 1;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-greeting__lead {
    font-size: 3.75rem;
    padding: 1.125rem 0.3125rem;
  }
}
@supports (-webkit-appearance: none) and (not (text-size-adjust: none)) {
  .p-greeting__lead {
    font-size: clamp(1.375rem, -0.875rem + 10vw, 1.625rem);
  }
  @media screen and (min-width: 768px) {
    .p-greeting__lead {
      font-size: 3.75rem;
    }
  }
}

.p-greeting__title-wrap {
  margin-top: 1.875rem;
  grid-area: 4/2/5/3;
}
@media screen and (min-width: 768px) {
  .p-greeting__title-wrap {
    margin-top: 3.875rem;
    grid-area: 3/3/4/4;
  }
}

.p-greeting__content {
  margin-top: 1.625rem;
  grid-area: 5/2/6/3;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-greeting__content {
    margin-top: 3.6875rem;
    gap: 0.875rem;
    grid-area: 3/5/5/6;
  }
}

.p-greeting__message {
  margin-top: -0.125rem;
  text-align: right;
}

.p-header {
  height: 3.4375rem;
  background-color: var(--color-blue-navy);
  transition: background-color 0.4s ease;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5.25rem;
  }
}

.p-header.p-header--recruit {
  background-color: transparent;
  padding-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-header.p-header--recruit {
    padding-top: 0.25rem;
  }
}

.p-header.p-header--recruit.is-scrolled {
  background-color: var(--color-white);
}

body.home .p-header {
  background-color: transparent;
}

body.home .p-header.is-scrolled,
.p-header.is-scrolled {
  background-color: var(--color-blue-navy);
}

body.home .p-header.is-drawer-expanded,
.p-header.is-drawer-expanded {
  background-color: var(--color-blue-navy);
}

.p-header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-inline: clamp(0.625rem, -2.529rem + 4.59vw, 1.875rem);
  }
}

.p-header__inner.p-header__inner--recruit {
  padding-left: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner.p-header__inner--recruit {
    padding-left: 4.25rem;
  }
}

.p-header__logo {
  position: relative;
  z-index: 1000;
  max-width: 14.875rem;
  width: 100%;
  height: inherit;
  margin-block: 0;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: initial;
    width: clamp(18.75rem, 7.712rem + 16.06vw, 23.125rem);
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}
.p-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.p-header__nav-list {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: clamp(0.313rem, -2.053rem + 3.44vw, 1.25rem);
}

.p-header__nav-item.p-header__nav-item--contact .c-contact-button {
  min-width: 10.3125rem;
}

.p-header__nav-contact-icon:before {
  content: "";
  font-size: 1.25rem;
}

.p-header__nav-item > a {
  position: relative;
  padding: 0.9375rem clamp(0.625rem, -0.952rem + 2.29vw, 1.25rem);
  display: flex;
  align-items: center;
  font-size: clamp(0.875rem, 0.56rem + 0.46vw, 1rem);
  font-weight: var(--bold);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.04em;
  transition: border-radius 0.3s ease;
}

.p-header__nav-item > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  height: 0.125rem;
  display: block;
  background: var(--color-orange-dark);
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform 0.3s ease;
  width: 80%;
}

@media (any-hover: hover) {
  .p-header__nav-item > a:hover::before {
    transform: scale(1, 1);
  }
}
.p-header__nav-item.p-header__nav-item--contact > a::before {
  content: none;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 4rem;
  height: inherit;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.25rem;
  height: auto;
  transition: opacity 0.3s ease;
}

.p-header__hamburger-icon--close {
  opacity: 1;
}

.p-header__hamburger-icon--open {
  opacity: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-icon--close {
  opacity: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-icon--open {
  opacity: 1;
}

.p-header__drawer {
  margin-top: 3.375rem;
  padding-bottom: 6.875rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-blue-navy);
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-nav {
  padding-inline: var(--padding-sp);
  padding-block: 0.625rem 2.25rem;
  width: min(100%, 31.25rem);
  margin-inline: auto;
}

.p-header__drawer-item {
  border-bottom: 1px solid var(--color-white);
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-top: 1.0625rem;
  margin-inline: auto;
  border-bottom: none;
  max-width: 14.4375rem;
  width: 100%;
}

.p-header__drawer-link {
  padding-block: 1.46875rem;
  display: block;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 0.06em;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__drawer-link:hover {
    opacity: 0.7;
  }
}
.p-header__drawer-sub-list {
  padding-bottom: 0.625rem;
  display: grid;
  gap: 0.625rem;
}

.p-header__drawer-sub-link {
  display: block;
  font-size: 1rem;
  color: var(--color-white);
  font-weight: var(--medium);
  line-height: 1;
  letter-spacing: 0.04em;
  padding-block: 0.125rem;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-header__drawer-sub-link:hover,
  .p-header__drawer-sub-link-item:hover {
    opacity: 0.7;
  }
}
.p-header__drawer-item--footer-links {
  margin-top: 0.75rem;
  border-bottom: none;
}

.p-header__drawer-item--footer-links .p-header__drawer-link {
  font-size: 0.75rem;
  font-weight: var(--medium);
  color: var(--color-white);
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  padding-block: 0.625rem;
}

.p-header__drawer-contact-icon:before {
  content: "";
  font-size: 1.25rem;
}

.p-header__drawer-accordion-title {
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.p-header__drawer-accordion-title:hover {
  opacity: 1;
}

.p-header__drawer-accordion-title::before,
.p-header__drawer-accordion-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.25rem;
  height: 0.125rem;
  display: block;
  background: var(--color-white);
  transition: transform 0.3s ease;
}

.p-header__drawer-accordion-title::before {
  transform: translateY(-50%);
}

.p-header__drawer-accordion-title::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-header__drawer-accordion-title.is-open::after {
  transform: translateY(-50%);
}

.p-header__drawer-accordion-list {
  margin-top: -0.25rem;
  padding-bottom: 0.9375rem;
  display: none;
}

.p-header__drawer-accordion-list-sub {
  margin-top: 0.3125rem;
  padding-left: 0.875rem;
}

.p-header__drawer-sub-link-item {
  padding: 0.4375rem 0;
  display: block;
  font-size: 1rem;
  color: var(--color-white);
  font-weight: var(--medium);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}

.p-maker {
  background-color: var(--color-white);
  padding-block: 3.75rem 5.0625rem;
}
@media screen and (min-width: 768px) {
  .p-maker {
    padding-block: 6.375rem 6.25rem;
  }
}

.p-maker__container {
  width: 100%;
}

/* 検索フォーム */
.p-maker__search {
  background-color: var(--color-off-white);
  padding: 0.9375rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-maker__search {
    padding: 3.6875rem 1.25rem;
  }
}

.p-maker__search-form {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-maker__search-form {
    width: min(100%, 56.25rem);
    margin-inline: auto;
    grid-template-columns: 440fr 365fr;
    gap: 5.9375rem;
  }
}

.p-maker__search-item {
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-maker__search-item {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
  }
}

.p-maker__input-group {
  position: relative;
}

.p-maker__search-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 2.125;
}
@media screen and (min-width: 768px) {
  .p-maker__search-label {
    font-size: 1rem;
    gap: 0.875rem;
  }
}

.p-maker__search-label::before {
  content: "";
  display: inline-flex;
  width: 0.25rem;
  height: 1.25rem;
  background-color: var(--color-gray-darker-2);
}

.p-maker__input-group .p-maker__search-input {
  width: 100%;
  padding: 0.96875rem 3.125rem 0.96875rem 1rem;
  border-radius: 1.875rem;
  font-size: 0.875rem;
  font-weight: var(--bold);
  color: var(--color-gray-darker-2);
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-maker__input-group .p-maker__search-input {
    padding: 0.9375rem 3.75rem 0.9375rem 1.25rem;
  }
}

.p-maker__search-input::placeholder {
  color: var(--color-gray-darker-2);
}

.p-maker__search-input:focus {
  outline: none;
  border-color: var(--color-blue);
}

/* オートコンプリート時の背景色を制御 */
.p-maker__search-input:-webkit-autofill,
.p-maker__search-input:-webkit-autofill:hover,
.p-maker__search-input:-webkit-autofill:focus,
.p-maker__search-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--color-white) inset !important;
  -webkit-text-fill-color: var(--color-gray-darker-2) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.p-maker__search-button {
  position: absolute;
  right: 0.1875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.875rem;
  height: 2.875rem;
  background-color: var(--color-gray-medium-2);
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-white);
  transition: background-color 0.3s ease;
}

.p-maker__search-button:hover {
  background-color: var(--color-dark-gray);
}

.p-maker__search-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  margin: auto;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-maker__search-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.p-maker__select-wrap {
  position: relative;
}

.p-maker__search-select {
  width: 100%;
  padding: 0.96875rem 2.5rem 0.96875rem 1rem;
  border-radius: 1.875rem;
  font-size: 0.875rem;
  font-weight: var(--bold);
  color: var(--color-gray-darker-2);
  background-color: var(--color-white);
  appearance: none;
}
@media screen and (min-width: 768px) {
  .p-maker__search-select {
    padding: 0.9375rem 3.125rem 0.9375rem 1.25rem;
  }
}

.p-maker__search-select:focus {
  outline: none;
  border-color: var(--color-blue);
}

.p-maker__select-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  color: var(--color-gray-darker-2);
}

/* メインコンテンツ */
.p-maker__content {
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-maker__content {
    margin-top: 6.25rem;
  }
}

/* カテゴリ別一覧 */
.p-maker__categories {
  display: grid;
  gap: 4.9375rem;
}
@media screen and (min-width: 768px) {
  .p-maker__categories {
    gap: 6.25rem;
  }
}

.p-maker__category {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-maker__category {
    display: grid;
    gap: 1.875rem;
    grid-template-columns: 180fr 890fr;
  }
}

.p-maker__category-title {
  position: relative;
  font-size: 1.375rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.5;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-maker__category-title {
    font-size: 1.875rem;
    padding-bottom: 1.625rem;
    height: fit-content;
  }
}
.p-maker__category-title br {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-maker__category-title br {
    display: block;
  }
}

.p-maker__category-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 0.25rem;
  background-color: var(--color-orange-dark);
}
@media screen and (min-width: 768px) {
  .p-maker__category-title::before {
    width: 4.5rem;
    height: 0.25rem;
  }
}

.p-maker__category-title-text {
  display: block;
}

/* メーカーグリッド */
.p-maker__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-maker__list {
    margin-top: initial;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1.25rem;
  }
}

.p-maker__item {
  background-color: var(--color-off-white);
  font-size: 0.875rem;
  font-weight: var(--bold);
  color: var(--color-gray-dark);
  line-height: 1.5;
  text-align: center;
  align-content: center;
}
@media screen and (min-width: 768px) {
  .p-maker__item {
    font-size: 1rem;
  }
}

.p-maker__item a {
  display: block;
  padding: 0.59375rem 0.625rem;
  background-color: var(--color-off-white);
  font-size: 0.875rem;
  font-weight: var(--bold);
  color: var(--color-gray-dark);
  line-height: 1.5;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-maker__item a {
    padding: 0.625rem 0.25rem;
    font-size: 1rem;
  }
}

.p-maker__item a:hover {
  background-color: var(--color-dark-gray);
  color: var(--color-white);
}

/* 検索結果 */
.p-maker__search-results {
  text-align: center;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-maker__search-results {
    padding: 3.75rem 2.5rem;
  }
}

.p-maker__search-results-title {
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-maker__search-results-title {
    font-size: 1.375rem;
  }
}

.p-merchandise {
  position: relative;
  background-color: var(--color-blue-navy);
  padding-block: 5.0625rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-merchandise {
    padding-block: 2.4375rem 10.0625rem;
  }
}

.p-merchandise__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-merchandise__inner {
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-merchandise__inner::after {
    content: "merchandise";
    position: absolute;
    bottom: -2.9375rem;
    right: calc(50% - min(48vw, 45.625rem));
    color: var(--color-blue-dark);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: 8.5rem;
    line-height: 0.9411764706;
    letter-spacing: 0.01em;
    z-index: -1;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .p-merchandise__container {
    max-width: 56.25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-merchandise__title-wrap {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-merchandise__title-wrap {
    display: grid;
    gap: 0.625rem;
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .p-merchandise__title-wrap.c-section-title-wrap {
    padding-bottom: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-merchandise__content {
    margin-top: 3.6875rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.p-merchandise__text-wrap {
  margin-top: 1.6875rem;
  display: grid;
  gap: 0.125rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-merchandise__text-wrap {
    margin-top: initial;
    gap: 0.875rem;
    display: grid;
    width: 55.5555555556%;
  }
}

.p-merchandise__title {
  font-size: 1.125rem;
  font-weight: var(--bold);
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-merchandise__title {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 768px) {
  .p-merchandise__text-wrap .p-merchandise__text:last-child {
    margin-top: -0.75rem;
  }
}

.p-merchandise__list {
  margin-top: 1.6875rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-merchandise__list {
    margin-top: 3.5625rem;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.9375rem;
  }
}

.p-merchandise__item {
  padding: 0.9375rem 0.625rem;
  padding: 0.5rem 0.25rem;
  background-color: var(--color-white);
  color: var(--color-gray-dark);
  text-align: center;
  font-size: 0.875rem;
  font-weight: var(--bold);
  line-height: 1.7142857143;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-merchandise__item {
    padding: 0.625rem 0.25rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-merchandise__button-wrap {
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-merchandise__button-wrap {
    margin-top: 2.5rem;
    margin-left: auto;
    max-width: 16.875rem;
  }
}

.p-mv-recruit {
  position: relative;
  background-color: var(--color-white);
  padding-top: 6.0625rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit {
    padding-top: 0.625rem;
  }
}

.p-mv-recruit__vertical-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__vertical-text {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--medium);
    font-family: var(--jost);
    color: var(--color-green-bright);
    line-height: 2;
    writing-mode: vertical-rl;
    text-transform: uppercase;
  }
}

@media screen and (min-width: 768px) {
  .p-mv-recruit__vertical-text-left {
    position: absolute;
    top: 56%;
    left: 1.0625rem;
    transform: translateY(-50%) rotate(180deg);
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .p-mv-recruit__vertical-text-right {
    position: absolute;
    top: 56%;
    right: 1.0625rem;
    transform: translateY(-50%);
    z-index: 10;
  }
}

@media screen and (min-width: 768px) {
  .p-mv-recruit::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 45.5729166667%;
    aspect-ratio: 700/312;
    z-index: 1;
    background-image: image-set(url("../../images/bg_recruit.webp") type("image/webp"), url("../../images/bg_recruit.png") type("image/png"));
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.p-mv-recruit__container {
  display: grid;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 500px) minmax(1.875rem, 1fr);
  grid-template-rows: auto auto;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__container {
    position: relative;
    display: block;
  }
}

.p-mv-recruit__container::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-green-bright);
  height: 16.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__container::before {
    height: 8.0625rem;
  }
}

.p-mv-recruit__title {
  width: min(100%, 19.6875rem);
  margin-inline: auto;
  grid-area: 1/2/2/3;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__title {
    margin-inline: initial;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 9.5%;
    transform: translateY(-50%);
    width: clamp(356.4px, 38.671875vw, 594px);
  }
}

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

.p-mv-recruit__image {
  position: relative;
  margin-top: 1.25rem;
  grid-column: 2/4;
  justify-self: end;
  max-width: 30.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__image {
    margin-top: initial;
    margin-left: auto;
    max-width: initial;
    width: 86.4583333333%;
  }
}

.p-mv-recruit__image img {
  aspect-ratio: 345/330;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__image img {
    aspect-ratio: 1328/762;
  }
}

.p-mv-recruit__cta-wrap {
  position: fixed;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  display: block;
  width: 101%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__cta-wrap {
    right: 0;
    transform: translateX(0);
    max-width: 14.125rem;
  }
}

.p-mv-recruit__top-button {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__top-button {
    position: fixed;
    z-index: 100;
    bottom: 7.6875rem;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    font-size: 1rem;
    font-weight: var(--bold);
    color: var(--color-green-bright);
    background-color: var(--color-white);
    padding: 1.3125rem 1.0625rem;
    border-radius: 1.875rem;
    border: 1px solid var(--color-blue-navy);
    border-radius: 1.25rem 0 0 1.25rem;
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.15em;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
}
.p-mv-recruit__top-button.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-mv-recruit__top-button span {
  font-family: var(--jost);
  font-size: 1.125rem;
  font-weight: var(--medium);
  color: var(--color-green-bright);
  letter-spacing: -0.15em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-transform: uppercase;
}

_::-webkit-full-page-media, _:future, :root .p-mv-recruit__top-button span {
  font-size: 1.125rem;
  font-weight: var(--semibold);
  letter-spacing: -0.05em;
}

/* Firefox */
@-moz-document url-prefix() {
  .p-mv-recruit__top-button {
    gap: 0;
  }
}
.p-mv-recruit__top-button:hover {
  background-color: var(--color-yellow);
}

.p-mv-recruit__check {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 100%;
  max-width: 12.5rem;
  padding: 0.25rem 1rem;
  border: 1px solid var(--color-dark-gray);
  border-radius: 1.5625rem;
  background-color: var(--color-yellow);
  text-align: center;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.5;
  color: var(--color-dark-gray);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__check {
    max-width: 7.5rem;
    top: 1.5625rem;
  }
}

.p-mv-recruit__check::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border-style: solid;
  border-width: 0.625rem 0.40625rem 0 0.40625rem;
  border-color: var(--color-dark-gray) transparent transparent;
}

.p-mv-recruit__check::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  border-style: solid;
  border-width: 0.5125rem 0.33125rem 0 0.33125rem;
  border-color: var(--color-yellow) transparent transparent;
}

.p-mv-recruit__cta-text-wrap {
  position: relative;
  background-color: var(--color-dark-gray);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__cta-text-wrap {
    margin-top: 1.6875rem;
  }
}

.p-mv-recruit__cta-text-wrap a::before,
.p-mv-recruit__cta-text-wrap a::after {
  content: "";
  position: absolute;
  display: block;
}

.p-mv-recruit__cta-text-wrap a::before {
  top: -1.875rem;
  left: calc(50% - 10.5rem);
  width: 3.9375rem;
  height: 3.5625rem;
  background-image: url("../../images/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__cta-text-wrap a::before {
    left: calc(50% - 8.375rem);
    width: 5.25rem;
    height: 4.6875rem;
  }
}

.p-mv-recruit__cta-text-wrap a::after {
  top: -1.3125rem;
  right: calc(50% - 9.875rem);
  width: 1.625rem;
  height: 2.8125rem;
  background-image: url("../../images/icon_star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-mv-recruit__cta-text-wrap a::after {
    top: -0.625rem;
    right: calc(50% - 6.25rem);
    width: 1.5rem;
    height: 2.6875rem;
  }
}

.p-mv-recruit__cta-text-wrap a {
  padding: 1.75rem 1.25rem 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1.3333333333;
  transition: color 0.3s ease;
  text-align: center;
}
@media (any-hover: hover) {
  .p-mv-recruit__cta-text-wrap a:hover {
    color: var(--color-yellow);
  }
}
.p-mv {
  position: relative;
  z-index: 1;
  min-height: 30.125rem;
  height: 80vh;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 100dvh;
  }
}
body.admin-bar .p-mv {
  height: calc(80vh - 46px);
}
@media screen and (min-width: 768px) {
  body.admin-bar .p-mv {
    height: calc(100dvh - 32px);
  }
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__title-wrap {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 44%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  width: min(100%, 18.125rem);
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrap {
    bottom: 0;
    left: 28.5%;
    width: min(100%, 40rem);
  }
}

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

.p-mv__splide,
.p-mv__splide .splide__track,
.p-mv__splide .splide__list,
.p-mv__splide .splide__slide,
.p-mv__splide .splide__slide-image,
.p-mv__splide .splide__slide-image img {
  height: calc(80vh - 5.25rem);
  min-height: 25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__splide,
  .p-mv__splide .splide__track,
  .p-mv__splide .splide__list,
  .p-mv__splide .splide__slide,
  .p-mv__splide .splide__slide-image,
  .p-mv__splide .splide__slide-image img {
    height: calc(100dvh - 4rem);
  }
}
body.admin-bar .p-mv__splide,
body.admin-bar .p-mv__splide .splide__track,
body.admin-bar .p-mv__splide .splide__list,
body.admin-bar .p-mv__splide .splide__slide,
body.admin-bar .p-mv__splide .splide__slide-image,
body.admin-bar .p-mv__splide .splide__slide-image img {
  height: calc(80vh - 5.25rem - 46px);
}
@media screen and (min-width: 768px) {
  body.admin-bar .p-mv__splide,
  body.admin-bar .p-mv__splide .splide__track,
  body.admin-bar .p-mv__splide .splide__list,
  body.admin-bar .p-mv__splide .splide__slide,
  body.admin-bar .p-mv__splide .splide__slide-image,
  body.admin-bar .p-mv__splide .splide__slide-image img {
    height: calc(100dvh - 4rem - 32px);
  }
}

.p-mv__splide .splide__slide-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.p-mv__splide .splide__slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease-out;
  transform: scale(1);
}

.p-mv__splide .splide__slide.is-active .splide__slide-image img {
  transform: scale(1.1);
}

.p-mv__splide .splide__slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.p-mv__splide .splide__slide.is-active {
  opacity: 1;
}

.p-mv__banner {
  background-color: var(--color-blue-navy);
  padding: 0 var(--padding-sp);
  height: 5.25rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-mv__banner {
    padding: 0.9375rem 1.875rem;
    height: 4rem;
  }
}

@keyframes newsTickerRotate {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  8.33% {
    opacity: 1;
    transform: translateY(0);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  33.33% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}
.p-mv__news-ticker {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: min(100%, 31.25rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__news-ticker {
    width: min(100%, 50rem);
  }
}

.p-mv__news-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  animation: newsTickerRotate 9s infinite;
}

.p-mv__news-item--1 {
  animation-delay: 0s;
}

.p-mv__news-item--2 {
  animation-delay: 3s;
}

.p-mv__news-item--3 {
  animation-delay: 6s;
}

.p-mv__news-link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  width: 100%;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-mv__news-link {
    flex-direction: row;
    align-items: center;
  }
}

.p-mv__news-link:hover {
  opacity: 0.7;
}

.p-mv__news-date-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__news-date-wrap {
    margin-right: 1.25rem;
  }
}

.p-mv__news-label {
  padding: 0.1875rem 0.75rem;
  background-color: var(--color-white);
  color: var(--color-gray-medium);
  font-size: 0.75rem;
  font-weight: var(--medium);
  letter-spacing: 0;
  line-height: 1.3333333333;
  border-radius: 0.125rem;
}

.p-mv__news-date {
  font-size: 1rem;
  font-family: var(--noto-serif-jp);
  font-weight: var(--regular);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.p-mv__news-text-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .p-mv__news-text-wrap {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__news-text-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: inline-block;
    align-items: center;
    justify-content: center;
    margin-left: 0.625rem;
    width: 0.625rem;
    height: 0.625rem;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: var(--color-white);
  }
}

.p-mv__news-text {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__news-text {
    padding-right: 1.25rem;
  }
}

.p-news-detail {
  background-color: var(--color-white);
  padding-block: 3.75rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail {
    padding-block: 6.25rem 6.25rem;
  }
}

.p-news-detail__inner.l-inner {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__inner.l-inner {
    margin-top: 9.625rem;
    max-width: 59.375rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-news-detail__container {
  width: 100%;
}

/* 日付表示ボックス */
.p-news-detail__date-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.p-news-detail__category-label {
  background-color: var(--color-gray-medium);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1;
  border-radius: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__category-label {
    padding: 0.25rem 0.65625rem;
  }
}

.p-news-detail__date-value {
  font-size: 1rem;
  color: var(--color-gray-medium);
  font-family: var(--noto-serif-jp);
  font-weight: var(--regular);
  line-height: 1;
}

/* 記事タイトル */
.p-news-detail__title {
  margin-top: 0.625rem;
  font-size: 1.375rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.4347826087;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-news-detail__title {
    margin-top: 0.625rem;
    font-size: 2.125rem;
    line-height: 1.5882352941;
    letter-spacing: 0.04em;
  }
}

/* 記事本文 */
.p-news-detail__content {
  color: var(--color-dark-gray);
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content {
    margin-top: 3.3125rem;
  }
}

/* 段落 */
.p-news-detail__content p {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content p {
    margin-top: 1.875rem;
  }
}

.p-news-detail__content p:not(:first-child) {
  margin-top: 1.875rem;
}

.p-news-detail__content p > strong {
  color: var(--color-orange-dark);
  font-weight: var(--medium);
  font-size: 1rem;
  line-height: 1.875;
  letter-spacing: 0.04em;
}

/* 見出し2 */
.p-news-detail__content h2 {
  margin-top: 3.75rem;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--color-gray-dark);
  border-bottom: 1px solid var(--color-gray-dark);
  padding-block: 0.9375rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content h2 {
    font-size: 1.875rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-block: 1rem 1.25rem;
  }
}

/* 見出し3 */
.p-news-detail__content h3 {
  margin-top: 3.75rem;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-gray-dark);
  background-color: var(--color-off-white);
  line-height: 1.6666666667;
  letter-spacing: 0.04em;
  padding: 1.25rem;
  border-left: 0.25rem solid var(--color-orange-dark);
}
@media screen and (min-width: 768px) {
  .p-news-detail__content h3 {
    font-size: 1.25rem;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }
}

/* 見出し4 */
.p-news-detail__content h4 {
  margin-top: 3.75rem;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.5;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--color-gray-dark);
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content h4 {
    font-size: 1.125rem;
    line-height: 1.8888888889;
    letter-spacing: 0.04em;
  }
}

/* 見出し5 */
.p-news-detail__content h5 {
  margin-top: 3.75rem;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content h5 {
    font-size: 1.125rem;
    line-height: 1.8888888889;
    letter-spacing: 0.04em;
  }
}

/* 引用ボックス */
.p-news-detail__content blockquote {
  position: relative;
  margin-top: 1.875rem;
  background-color: var(--color-off-white);
  border: 1px solid var(--color-gray-dark);
  padding: 2.125rem 1.25rem 1.6875rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content blockquote {
    margin-top: 3.75rem;
    padding: 1.6875rem 1.875rem 4rem 1.25rem;
  }
}

.p-news-detail__content blockquote::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.625rem;
  width: 1.4375rem;
  height: 1.125rem;
  background-image: url(../../images/logo_quote.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-news-detail__content blockquote::before {
    top: 1.875rem;
    left: 1.25rem;
  }
}

.p-news-detail__content blockquote p {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--color-gray-dark);
}

.p-news-detail__content blockquote p:not(:first-child) {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
}

/* 画像 */
.p-news-detail__content .wp-block-image {
  margin-top: 1.875rem;
  display: block;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content .wp-block-image {
    margin-top: 3.75rem;
    max-width: 40.625rem;
  }
}

/* リスト */
.p-news-detail__content ul,
.p-news-detail__content ol {
  margin-top: 1.875rem;
  padding-left: 1em;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content ul,
  .p-news-detail__content ol {
    margin-top: 3.75rem;
    padding-left: 1.5rem;
    max-width: 44.6875rem;
    width: 100%;
    margin-inline: auto;
    gap: 0.3125rem;
  }
}

.p-news-detail__content ul {
  list-style-type: disc;
}

.p-news-detail__content ol {
  list-style-type: decimal;
}

.p-news-detail__content li {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.p-news-detail__content li::marker {
  color: var(--color-orange-dark);
  font-size: 0.75rem;
}

.p-news-detail__content ol li::marker {
  color: var(--color-orange-dark);
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-news-detail__content ol li::marker {
    letter-spacing: 0.04em;
  }
}

/* ページネーション */
.p-news-detail__pagination {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__pagination {
    border-top: 1px solid var(--color-gray-darker-2);
    padding-top: 3.75rem;
  }
}

.p-news-detail__pagination-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-news-detail__pagination-links {
    flex-direction: row;
    max-width: 40.25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-news-detail__pagination-prev,
.p-news-detail__pagination-next,
.p-news-detail__pagination-list {
  display: block;
  padding: 1.25rem 0.3125rem;
  width: 100%;
  text-align: center;
  color: var(--color-gray-darker-2);
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.2857142857;
  letter-spacing: 0.04em;
  border-top: 1px solid var(--color-gray-darker-2);
  transition: color 0.3s ease;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news-detail__pagination-prev,
  .p-news-detail__pagination-next,
  .p-news-detail__pagination-list {
    padding: 0 0.3125rem;
    border-top: none;
  }
}

@media (hover: hover) {
  .p-news-detail__pagination-prev:hover,
  .p-news-detail__pagination-next:hover,
  .p-news-detail__pagination-list:hover {
    color: var(--color-blue);
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-news-detail__pagination-list {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-news-detail__pagination-list::before {
    content: "";
    position: absolute;
    top: 35%;
    left: -1.125rem;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--color-gray-darker-2);
  }
}

.p-news-detail__pagination-prev .fa-arrow-left {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-news-detail__pagination-prev .fa-arrow-left {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-darker-2);
    left: 0.125rem;
    font-size: 1.25rem;
  }
}

.p-news-detail__pagination-next {
  border-bottom: 1px solid var(--color-gray-darker-2);
}
@media screen and (min-width: 768px) {
  .p-news-detail__pagination-next {
    position: relative;
    border-bottom: none;
  }
}

@media screen and (min-width: 768px) {
  .p-news-detail__pagination-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 1.125rem;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: var(--color-gray-darker-2);
  }
}

.p-news-detail__pagination-next .fa-arrow-right {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-news-detail__pagination-next .fa-arrow-right {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    color: var(--color-gray-darker-2);
    right: 0.125rem;
    font-size: 1.25rem;
  }
}

.p-news {
  background-color: var(--color-white);
  padding-block: 3.875rem 5rem;
}

@media screen and (min-width: 768px) {
  .p-news {
    padding-block: 6.25rem 6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-news__inner.l-inner {
    max-width: 59.375rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-news__container {
  width: 100%;
  background-color: var(--color-off-white);
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__container {
    padding-bottom: 2.5rem;
  }
}

.p-news__tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.p-news__tab-item a {
  position: relative;
  display: block;
  height: 100%;
  text-align: center;
  align-content: center;
  padding: 0.875rem 0.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.875rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.2857142857;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news__tab-item a {
    padding: 1.28125rem 0.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.p-news__tab-item a:hover {
  opacity: 1;
  background-color: var(--color-blue);
  color: var(--color-white);
}

.p-news__tab-item--active a {
  background-color: var(--color-blue);
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.p-news__tab-item:nth-child(n+2) a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -1px;
  right: 0;
  width: 0.125rem;
  height: 78.5%;
  background-color: var(--color-gray-medium-2);
}

/* コンテンツエリア */
.p-news__content {
  margin-top: 1.9375rem;
  display: grid;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news__content {
    padding-inline: 2.3125rem;
    margin-top: 3.125rem;
    grid-template-columns: 190fr 540fr;
    gap: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__content.p-news__content--accompany {
    grid-template-columns: 220fr 500fr;
    gap: 2.0625rem;
  }
}

/* サイドバー */
@media screen and (min-width: 768px) {
  .p-news__sidebar {
    padding-top: 1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__sidebar.p-news__sidebar--hotnews {
    padding-top: 0.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__sidebar.p-news__sidebar--accompany {
    padding-top: 0.9375rem;
  }
}

.p-news__filter {
  padding-inline: 1.25rem;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__filter {
    padding-inline: initial;
  }
}

.p-news__filter-title {
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 1.375rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-news__filter-title {
    padding-bottom: initial;
    font-size: 1.875rem;
    text-align: left;
    padding-left: 2.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__filter-title.p-news__filter-title--hotnews {
    font-size: 1.875rem;
    line-height: 1.4;
  }
}

.p-news__filter-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 0.25rem;
  background-color: var(--color-gray-darker-2);
}
@media screen and (min-width: 768px) {
  .p-news__filter-title::before {
    left: 0.5rem;
    top: 60%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: 1.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__filter-title.p-news__filter-title--hotnews::before {
    left: 0.5rem;
    top: 54%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: 4.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__filter-title.p-news__filter-title--accompany::before {
    left: 0.5rem;
    top: 54%;
    transform: translateY(-50%);
    width: 0.25rem;
    height: 6.9375rem;
  }
}

.p-news__filter-title-text {
  display: inline-flex;
  align-items: flex-end;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news__filter-title-text {
    font-size: 1.5rem;
    line-height: 1.75;
  }
}

.p-news__filter-title-text span {
  font-size: 2.625rem;
  font-weight: var(--semibold);
  color: var(--color-dark-gray);
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news__filter-title-text span {
    font-size: 3.125rem;
  }
}

.p-news__filter-title-text-sub {
  display: block;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news__filter-title-text-sub {
    margin-top: -0.375rem;
    font-size: 1.5rem;
    line-height: 1.75;
  }
}

.p-news__filter-title-time {
  margin-top: 0.4375rem;
  padding-left: 0.125rem;
  display: block;
  font-size: 0.75rem;
  font-weight: var(--medium);
  color: var(--color-dark-gray);
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news__filter-title-time {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-news__filter-list {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__filter-list {
    margin-top: 2.25rem;
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: 11.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__filter-item {
    margin-right: -0.25rem;
  }
}

.p-news__filter-item a {
  display: block;
  text-align: center;
  padding: 0.5625rem 0.25rem;
  background-color: var(--color-gray-darker-2);
  font-size: 0.875rem;
  font-weight: var(--medium);
  color: var(--color-white);
  line-height: 1.2857142857;
  letter-spacing: 0.04em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news__filter-item a {
    padding: 0.625rem 1.25rem;
    font-size: 1rem;
  }
}

.p-news__filter-item:nth-child(1) a {
  border-radius: 1.875rem 0rem 0rem 1.875rem;
}

.p-news__filter-item:nth-child(3) a {
  border-radius: 0rem 1.875rem 1.875rem 0rem;
}

@media screen and (min-width: 768px) {
  .p-news__filter-item:nth-child(n+1) a {
    border-radius: 1.875rem;
  }
}

.p-news__filter-item a:hover {
  background-color: var(--color-blue-navy);
  opacity: 1;
  color: var(--color-white);
}

.p-news__filter-item a.is-active {
  background-color: var(--color-blue-navy);
}

/* メインコンテンツ */
.p-news__main {
  padding-inline: 1.25rem;
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-news__main {
    margin-top: -1.3125rem;
    padding-inline: initial;
    padding-left: 0.25rem;
    padding-right: 0.4375rem;
  }
}

/* 記事リスト */
.p-news__item a {
  display: grid;
  gap: 0.25rem;
  padding: 1.125rem 0;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-news__item a {
    grid-template-columns: auto auto;
    padding: 1.75rem 0 1rem;
    gap: 1.6875rem;
  }
}

.p-news__item a:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-news__item a:hover .p-news__title {
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--color-blue);
    color: var(--color-blue);
  }
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news__meta {
    align-items: flex-start;
    gap: 0.5625rem;
  }
}

.p-news__category {
  display: inline-block;
  padding: 0.09375rem 0.78125rem;
  background-color: var(--color-gray-medium);
  font-size: 0.75rem;
  color: var(--color-white);
  font-weight: var(--medium);
  line-height: 1.5;
  border-radius: 0.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__category {
    font-size: 0.75rem;
    padding: 0.125rem 0.3125rem;
    min-width: 3.5625rem;
  }
}

.p-news__date {
  font-size: 1rem;
  font-family: var(--noto-serif-jp);
  color: var(--color-gray-medium);
  font-weight: var(--regular);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news__date {
    font-size: 1rem;
  }
}

.p-news__title {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-dark-gray);
  line-height: 1.625;
  letter-spacing: 0.04em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    position: relative;
    padding-right: 2.625rem;
    transition: color 0.3s ease-in-out;
  }
}

@media screen and (min-width: 768px) {
  .p-news__title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0.625rem;
    background-color: var(--color-gray-medium-2);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 0.625rem;
    height: 0.625rem;
  }
}

/* ページネーション */
.p-news__pagination {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__pagination {
    margin-top: 5rem;
  }
}

.p-news__pagination-nav {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-news__pagination-nav {
    margin-top: 3.5625rem;
    gap: 0.625rem;
  }
}

/* WordPressのpaginate_links()が生成するページ番号リンク */
.p-news__pagination-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: var(--color-white);
  font-size: 0.75rem;
  color: var(--color-gray-darker-2);
  font-weight: var(--medium);
  line-height: 1;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news__pagination-nav a {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

.p-news__pagination-nav a:hover {
  background-color: var(--color-blue-navy);
  color: var(--color-white);
}

/* 現在のページ（WordPressのpaginate_links()が生成するspan.current） */
.p-news__pagination-nav .current {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue-navy);
  color: var(--color-white);
  border-radius: 50%;
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__pagination-nav .current {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* 省略記号（WordPressのpaginate_links()が生成するspan.dots） */
.p-news__pagination-nav .dots {
  padding-bottom: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  background-color: var(--color-white);
  border-radius: 50%;
  color: var(--color-gray-darker-2);
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-news__pagination-nav .dots {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* 前後の矢印ボタン */
.p-news__pagination-prev[class],
.p-news__pagination-next[class] {
  font-size: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__pagination-prev[class],
  .p-news__pagination-next[class] {
    font-size: 0.75rem;
  }
}

/* 投稿なしの場合 */
.p-news__no-posts {
  text-align: center;
  padding: 3.75rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__no-posts {
    padding: 5rem 2.5rem;
  }
}

.p-news__no-posts p {
  font-size: 1rem;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-news__no-posts p {
    font-size: 1.125rem;
  }
}

.p-news__accompany-schedule {
  padding-block: 0.625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news__accompany-schedule {
    padding-block: 0.625rem 0.375rem;
  }
}

.p-news__accompany-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__accompany-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 0;
    max-width: 31.25rem;
  }
}

.p-news__accompany-item-list {
  display: grid;
  gap: 0.3125rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-news__accompany-item-list {
    padding-block: 1.21875rem;
  }
}

.p-news__accompany-item-list:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-news__accompany-item-list:last-child {
    border-bottom: 1px solid var(--color-gray-medium-2);
  }
}

@media screen and (min-width: 768px) {
  .p-news__accompany-item-list.p-news__accompany-item-list--last-row {
    border-bottom: none;
  }
}

.p-news__accompany-item {
  position: relative;
  font-size: 0.875rem;
  font-weight: var(--medium);
  color: var(--color-dark-gray);
  line-height: 1.5;
  padding-left: 1em;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-news__accompany-item {
    font-size: 1rem;
    padding-left: 0.625rem;
  }
}

.p-news__accompany-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gray-dark);
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-news__accompany-item::before {
    font-size: 1.125rem;
    top: 0.1em;
  }
}

.p-philosophy {
  position: relative;
  padding-block: 5.0625rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy {
    padding-block: 6.3125rem 10.0625rem;
  }
}

.p-philosophy__inner {
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-philosophy__inner {
    max-width: 100rem;
  }
}

@media screen and (min-width: 768px) {
  .p-philosophy__inner::before {
    content: "philosophy";
    position: absolute;
    bottom: 4.9375rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-off-white);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: 8.5rem;
    line-height: 0.9411764706;
    letter-spacing: 0.01em;
    z-index: -1;
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .p-philosophy__inner::after {
    content: "and policy";
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-off-white);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: 8.5rem;
    line-height: 0.9411764706;
    letter-spacing: 0.01em;
    z-index: -1;
    text-align: right;
    white-space: nowrap;
  }
}

.p-philosophy__container {
  display: grid;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 31.25rem) minmax(1.875rem, 1fr);
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 768px) {
  .p-philosophy__container {
    --padding-inline: clamp(1.875rem, -40.089rem + 55.95vw, 13.625rem);
    grid-template-columns: 218fr 100fr 500fr 400fr 100fr 218fr;
    grid-template-rows: repeat(3, auto);
  }
}

.p-philosophy__image {
  grid-area: 1/1/3/3;
  position: relative;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy__image {
    grid-area: 1/1/3/4;
    padding-right: 0.3125rem;
  }
}

.p-philosophy__image img {
  aspect-ratio: 325/206;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-philosophy__image img {
    aspect-ratio: 814/450;
  }
}

.p-philosophy__lead-wrap {
  grid-area: 2/2/4/3;
  padding-top: 2.9375rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-philosophy__lead-wrap {
    grid-area: 1/3/3/5;
    padding-top: 11.8125rem;
    gap: 0.5625rem;
  }
}

.p-philosophy__lead {
  background-color: var(--color-blue-navy);
  width: fit-content;
  padding: 0.65625rem 0.25rem;
  margin-left: auto;
  font-size: 1.625rem;
  font-weight: var(--semibold);
  font-family: var(--noto-serif-jp);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-philosophy__lead {
    font-size: 3.75rem;
    padding: 1.125rem 0.3125rem;
  }
}

.p-philosophy__title-wrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-philosophy__title-wrap {
    display: grid;
    gap: 0.625rem;
  }
}

.p-philosophy__content {
  grid-area: 4/2/5/3;
}
@media screen and (min-width: 768px) {
  .p-philosophy__content {
    margin-top: 3.6875rem;
    text-align: right;
    grid-area: 3/3/4/5;
  }
}

.p-philosophy__text-wrap {
  margin-top: 1.6875rem;
  display: grid;
  gap: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-philosophy__text-wrap {
    margin-top: 2.5625rem;
    gap: 1.4375rem;
  }
}

.p-philosophy__logo {
  margin-top: 1.4375rem;
  max-width: 15.9375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-philosophy__logo {
    margin-top: 2.1875rem;
    max-width: 21.25rem;
  }
}

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

.p-privacy {
  padding-block: 4rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-block: 6.3125rem 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-privacy__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-privacy__block {
  border-bottom: 1px solid var(--color-gray-medium-2);
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__block {
    padding-bottom: 3.625rem;
  }
}

.p-privacy__block:last-child {
  border-bottom: none;
}

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

.p-privacy__title {
  position: relative;
  font-size: 1.375rem;
  line-height: 1;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    font-size: 2.125rem;
    line-height: 1.3529411765;
    letter-spacing: 0.04em;
  }
}

.p-privacy__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 0.25rem;
  background-color: var(--color-orange-dark);
}
@media screen and (min-width: 768px) {
  .p-privacy__title::before {
    width: 4.5rem;
  }
}

.p-privacy__text-wrap {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__text-wrap {
    margin-top: 2.375rem;
    gap: 0.875rem;
  }
}

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

.p-privacy__list {
  margin-top: 1.5rem;
  counter-reset: privacy-counter;
  display: grid;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__list {
    margin-top: 1rem;
  }
}

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

.p-privacy__item {
  position: relative;
  padding-left: 1.3125rem;
  counter-increment: privacy-counter;
}

.p-privacy__item::before {
  content: counter(privacy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange-dark);
  font-size: 1rem;
  font-weight: var(--medium);
}

.p-recruit-faq {
  padding-block: 5rem 5rem;
  background-color: var(--color-off-white);
}
@media screen and (min-width: 768px) {
  .p-recruit-faq {
    padding-block: 8.9375rem 8.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-faq__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-recruit-faq__head {
  display: grid;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__head {
    gap: 1.75rem;
  }
}

.p-recruit-faq__title {
  width: min(100%, 18.0625rem);
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__title {
    width: min(100%, 22.3125rem);
  }
}

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

.p-recruit-faq__lead {
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-black-2);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-recruit-faq__list {
  margin-top: 1.875rem;
  background-color: var(--color-white);
  display: grid;
  gap: 1.1875rem;
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__list {
    margin-top: 3.6875rem;
    padding-block: 3.9375rem;
    padding-inline: 3.75rem;
    gap: 3.3125rem;
  }
}

.p-recruit-faq__item {
  display: grid;
  gap: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__item {
    gap: 1.4375rem;
  }
}

.p-recruit-faq__question {
  display: flex;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__question {
    gap: 1.1875rem;
  }
}

.p-recruit-faq__answer {
  background-color: var(--color-green-pale);
  display: flex;
  gap: 0.625rem;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__answer {
    padding: 1.0625rem 1.25rem;
  }
}

.p-recruit-faq__question-text {
  padding-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-black-2);
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__question-text {
    padding-top: 0.3125rem;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.p-recruit-faq__answer-text {
  padding-top: 0.1875rem;
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-gray-darker);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__answer-text {
    padding-top: 0.375rem;
  }
}

.p-recruit-faq__question-icon,
.p-recruit-faq__answer-icon {
  display: inline-block;
  font-size: 1.25rem;
  color: var(--color-green-bright);
  font-weight: var(--bold);
  line-height: 1.55;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-recruit-faq__question-icon,
  .p-recruit-faq__answer-icon {
    font-size: 1.625rem;
    line-height: 1.1923076923;
  }
}

.p-recruit-intro {
  padding-block: 5.125rem 5rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-recruit-intro {
    padding-block: 8.875rem 8.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-intro__inner {
    width: min(100%, 59.375rem);
  }
}

.p-recruit-intro__title {
  width: min(100%, 12.375rem);
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__title {
    width: min(100%, 15.4375rem);
  }
}

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

.p-recruit-intro__list {
  margin-top: 1.125rem;
  display: grid;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__list {
    margin-top: 3.75rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem;
  }
}

.p-recruit-intro__item a {
  display: block;
  position: relative;
  padding: 0.5625rem 1rem 0.4375rem;
  background-color: var(--color-off-white);
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-green-bright);
  text-align: center;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__item a {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    padding: 0.875rem 0.25rem 0.75rem;
  }
}

.p-recruit-intro__item span {
  margin-top: 0.25rem;
  display: block;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.5714285714;
  font-family: var(--jost);
  color: var(--color-green-bright);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__item span {
    letter-spacing: 0;
  }
}

.p-recruit-intro__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4.25rem;
  height: 0.125rem;
  background-color: var(--color-yellow);
}

.p-recruit-intro__item a:hover {
  background-color: var(--color-green-bright);
  color: var(--color-white);
}

.p-recruit-intro__item a:hover span {
  color: var(--color-white);
}

.p-recruit-intro__block {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__block {
    margin-top: 5rem;
    gap: 5.125rem;
  }
}

.p-recruit-intro__content {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 500px) minmax(1.875rem, 1fr);
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__content {
    --padding-outer-min: clamp(0rem, -43.75rem + 50vw, 4.25rem);
    --padding-inner: clamp(0rem, -38.03rem + 48.73vw, 8.75rem);
    --grid-gap: clamp(0rem, -10.74rem + 18.35vw, 6.875rem);
    grid-template-columns: minmax(var(--padding-outer-min), 1fr) var(--padding-inner) var(--grid-gap) minmax(0, 31.875rem) minmax(0, 24.375rem) var(--grid-gap) var(--padding-inner) minmax(var(--padding-outer-min), 1fr);
    grid-template-rows: 4.5rem repeat(2, auto);
  }
}

.p-recruit-intro__image {
  position: relative;
  z-index: 2;
  grid-area: 1/2/3/3;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__image {
    grid-area: 1/5/3/7;
    padding-bottom: 1.4375rem;
  }
}

.p-recruit-intro__image img {
  aspect-ratio: 315/183;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__image img {
    aspect-ratio: 520/290;
  }
}

.p-recruit-intro__text-area {
  margin-top: 1.875rem;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
  grid-area: 3/2/4/3;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__text-area {
    margin-top: 3.1875rem;
    grid-area: 2/4/3/5;
  }
}

.p-recruit-intro__text-area.p-recruit-intro__text-area--reverse {
  padding-left: 2.5rem;
  padding-right: initial;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__text-area.p-recruit-intro__text-area--reverse {
    padding-left: initial;
  }
}

.p-recruit-intro__text-area.p-recruit-intro__text-area--general {
  padding-right: 1.25rem;
}

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

.p-recruit-intro__subtitle[data-image=sales] {
  width: min(100%, 9.0625rem);
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__subtitle[data-image=sales] {
    width: min(100%, 18.25rem);
  }
}

.p-recruit-intro__subtitle[data-image=quality] {
  width: min(100%, 15.75rem);
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__subtitle[data-image=quality] {
    width: min(100%, 30.25rem);
  }
}

.p-recruit-intro__subtitle[data-image=general] {
  width: min(100%, 9.625rem);
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__subtitle[data-image=general] {
    width: min(100%, 18.5rem);
  }
}

.p-recruit-intro__date {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-green-bright);
  background-color: var(--color-white);
  padding: 0.125rem 0.625rem;
  border-radius: 0.625rem;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__date {
    margin-top: 0.9375rem;
  }
}

.p-recruit-intro__catch {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: var(--bold);
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__catch {
    margin-top: 1.375rem;
    font-size: 1.625rem;
    line-height: 1.3;
  }
}

.p-recruit-intro__catch[data-color=black] {
  color: var(--color-dark-gray);
  padding-right: initial;
}

.p-recruit-intro__desc-wrap {
  margin-top: 1.25rem;
  padding-right: 2.125rem;
  padding-bottom: 1.875rem;
  position: relative;
  z-index: 2;
  grid-area: 4/2/5/3;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__desc-wrap {
    margin-top: 1.125rem;
    padding-right: 3.25rem;
    padding-bottom: 3.125rem;
    grid-area: 3/4/4/6;
  }
}

.p-recruit-intro__desc-wrap.p-recruit-intro__desc-wrap--reverse {
  padding-right: initial;
  padding-left: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__desc-wrap.p-recruit-intro__desc-wrap--reverse {
    padding-left: initial;
    padding-right: 3.25rem;
  }
}

.p-recruit-intro__desc {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-recruit-intro__desc[data-color=black] {
  color: var(--color-dark-gray);
  padding-right: initial;
}

.p-recruit-intro__desc[data-color=black] strong {
  color: var(--color-green-bright);
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-recruit-intro__desc strong {
  color: var(--color-yellow);
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-recruit-intro__strong {
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-yellow);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-recruit-intro__bg {
  margin-top: 2.5rem;
  margin-right: 0.625rem;
  grid-area: 1/1/5/3;
  background-color: var(--color-green-bright);
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__bg {
    margin: initial;
    grid-area: 2/1/4/6;
  }
}

.p-recruit-intro__bg[data-bg=quality] {
  margin-top: 2.5rem;
  margin-left: 0.625rem;
  margin-right: initial;
  grid-area: 1/2/5/4;
  background-color: var(--color-off-white);
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-intro__bg[data-bg=quality] {
    position: relative;
    margin: initial;
    grid-area: 2/4/4/9;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-intro__bg[data-bg=quality]::before {
    content: "";
    position: absolute;
    top: 0;
    left: -3.125rem;
    width: 3.125rem;
    height: 100%;
    background-color: var(--color-off-white);
    z-index: 1;
    border-radius: 0.625rem 0 0 0.625rem;
  }
}

.p-recruit-job {
  position: relative;
}

.p-recruit-job__scroll {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__scroll {
    display: block;
    padding-bottom: 7.5rem;
    position: absolute;
    top: -4.875rem;
    left: 1.375rem;
    font-size: 0.875rem;
    line-height: 1;
    font-family: var(--jost);
    color: var(--color-white);
    font-weight: var(--medium);
    text-transform: uppercase;
    writing-mode: sideways-lr;
    z-index: 100;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-job__scroll::before,
  .p-recruit-job__scroll::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0.125rem;
    height: 6.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-job__scroll::before {
    background-color: var(--color-white);
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-job__scroll::after {
    background-color: var(--color-black-2);
    animation: scrollDown 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  }
}

@keyframes scrollDown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.p-recruit-job__top {
  position: relative;
  background-color: var(--color-green-bright);
  padding-block: 4.25rem 0rem;
  padding-inline: 1.875rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__top {
    padding-block: 11.8125rem 0rem;
  }
}

.p-recruit-job__top::after {
  content: "";
  position: absolute;
  bottom: -4.6875rem;
  left: 0;
  width: 100%;
  height: 5rem;
  background-image: image-set(url(../../images/bg_green_sp.webp) type("image/webp"), url(/images/bg_green_sp.jpg) type("image/jpg"));
  background-size: 100% 5rem;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__top::after {
    background-image: image-set(url(../../images/bg_green_pc.webp) type("image/webp"), url(/images/bg_green_pc.jpg) type("image/jpg"));
    bottom: -11.5625rem;
    height: 11.5625rem;
    background-size: 100% 11.5625rem;
  }
}

.p-recruit-job__title {
  position: relative;
  left: -0.625rem;
  width: 103%;
  max-width: 20.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__title {
    left: -0.625rem;
    width: 100%;
    max-width: 38.1875rem;
  }
}

.p-recruit-job__title img,
.p-recruit-job__subtitle img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-recruit-job__text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  line-height: 1.8888888889;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__text {
    margin-top: 1.875rem;
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.p-recruit-job__subtitle {
  margin-top: 2rem;
  max-width: 19.6875rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__subtitle {
    margin-top: 3rem;
    max-width: 26.5625rem;
  }
}

.p-recruit-job__bottom {
  position: relative;
  overflow: hidden;
  padding-block: 9.625rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__bottom {
    padding-block: 20.3125rem 8.75rem;
  }
}

.p-recruit-job__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.p-recruit-job__bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-image: image-set(url(../../images/bg_recruit-job_sp.webp) type("image/webp"), url(../../images/bg_recruit-job_sp.jpg) type("image/jpg"));
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__bg::before {
    background-image: image-set(url(../../images/bg_recruit-job_pc.webp) type("image/webp"), url(../../images/bg_recruit-job_pc.jpg) type("image/jpg"));
  }
}

.p-recruit-job__bottom-inner {
  padding-inline: 1.875rem;
  max-width: 33.75rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__bottom-inner {
    padding-inline: 1.5rem;
    max-width: 59.375rem;
    display: grid;
    grid-template-columns: 210fr 610fr;
    gap: 5rem;
  }
}

.p-recruit-job__message-title {
  max-width: 12.75rem;
  width: 100%;
}

.p-recruit-job__message-title img,
.p-recruit-job__message img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-recruit-job__content {
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__content {
    margin-top: initial;
  }
}

.p-recruit-job__message {
  max-width: 19.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__message {
    max-width: 32.5rem;
  }
}

.p-recruit-job__desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-white);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-recruit-job__desc {
    margin-top: 1.9375rem;
  }
}

.p-recruit-number {
  padding-block: 5.125rem 5.0625rem;
  background-image: image-set(url(../../images/bg_number.webp) type("image/webp"), url(../../images/bg_number.jpg) type("image/jpg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-recruit-number {
    padding-block: 8.625rem 8.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-number__inner.l-inner {
    max-width: 73.125rem;
    margin-inline: auto;
  }
}

.p-recruit-number__head {
  background-color: var(--color-blue-navy);
  padding-block: 1.875rem;
  border-radius: 0.625rem 0.625rem 0 0;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit-number__head {
    padding-block: 1.875rem;
  }
}

.p-recruit-number__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.125rem;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-number__head::after {
    right: 6.875rem;
    width: 1.5625rem;
  }
}

.p-recruit-number__head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6875rem;
  transform: translateY(-50%);
  width: 0.125rem;
  height: 1rem;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-number__head::before {
    right: 7.625rem;
    width: 0.125rem;
    height: 1.5625rem;
  }
}

.p-recruit-number__head.is-open::before {
  transform: translateY(-50%) rotate(90deg);
}

.p-recruit-number__title {
  width: min(100%, 11.5rem);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-number__title {
    width: min(100%, 19.0625rem);
  }
}

.p-recruit-number__card-item {
  background-color: var(--color-white);
  padding: 0 1.25rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  border-radius: 0 0 0.625rem 0.625rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  .p-recruit-number__card-item {
    grid-template-columns: repeat(6, 1fr);
    padding: 0 6.875rem;
    gap: 0.9375rem;
    justify-content: center;
  }
}

.p-recruit-number__card-item.is-open {
  max-height: 2000px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-number__card-item.is-open {
    padding: 3.125rem 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-number__card-item > *:nth-child(1) {
    grid-column: 1/3;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-number__card-item > *:nth-child(2) {
    grid-column: 3/5;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-number__card-item > *:nth-child(3) {
    grid-column: 5/7;
  }
}

/* 下段の各アイテム（中央寄せ） */
@media screen and (min-width: 768px) {
  .p-recruit-number__card-item > *:nth-child(4) {
    grid-column: 2/4;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-number__card-item > *:nth-child(5) {
    grid-column: 4/6;
  }
}

.p-recruit-number__card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.p-recruit-welfare {
  padding-block: 5rem 5.0625rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .p-recruit-welfare {
    padding-block: 8.9375rem 8.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-welfare__inner.l-inner {
    max-width: 73.125rem;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-welfare__head {
    width: min(100%, 56.25rem);
    margin-inline: auto;
  }
}

.p-recruit-welfare__title {
  width: min(100%, 12.25rem);
}
@media screen and (min-width: 768px) {
  .p-recruit-welfare__title {
    width: min(100%, 15.4375rem);
  }
}

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

.p-recruit-welfare__content {
  margin-top: 1.375rem;
  display: grid;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-welfare__content {
    margin-top: initial;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

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

.p-recruit-welfare__item {
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-welfare__item {
    padding-block: 3.75rem;
  }
}

.p-recruit-welfare__item:nth-child(odd) {
  background-color: var(--color-yellow-light);
}

.p-recruit-welfare__item-wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-recruit-welfare__item-wrap {
    display: grid;
    grid-template-columns: 390fr 450fr;
    gap: 3.75rem;
    width: min(100%, 56.25rem);
    margin-inline: auto;
  }
}

.p-recruit-welfare__lead {
  position: relative;
  font-size: 1.25rem;
  font-weight: var(--bold);
  color: var(--color-blue-navy);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-welfare__lead {
    font-size: 1.625rem;
    line-height: 1.1538461538;
  }
}

.p-recruit-welfare__lead::before {
  content: "";
  position: relative;
  top: -0.125rem;
  display: inline-block;
  width: 2.4375rem;
  height: 2.8125rem;
  background-image: url("../../images/icon_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-recruit-welfare__text {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-black-2);
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.p-recruit-welfare__image img {
  aspect-ratio: 275/171;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-welfare__image img {
    aspect-ratio: 450/280;
  }
}

.p-requirements {
  padding-block: 1.8125rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-requirements {
    padding-block: 5.0625rem 8.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-requirements__inner.l-inner {
    max-width: 59.375rem;
  }
}

.p-requirements__tab-menu {
  background-color: var(--color-off-white);
  display: flex;
  border-radius: 0.625rem;
}

.p-requirements__tab-button {
  position: relative;
  flex: 1;
  padding: 1.25rem 0.25rem;
  color: var(--color-gray-medium);
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-requirements__tab-button {
    padding: 1.53125rem 0.3125rem;
    font-size: 1.25rem;
  }
}

.p-requirements__tab-button:hover {
  background-color: var(--color-green-bright);
  border-radius: 0.625rem;
  color: var(--color-white);
}

.p-requirements__tab-button.is-active {
  background-color: var(--color-green-bright);
  color: var(--color-white);
  border-radius: 0.625rem;
  z-index: 1;
}

.p-requirements__tab-content {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__tab-content {
    margin-top: 3.8125rem;
  }
}

.p-requirements__tab-panel {
  display: none;
}

.p-requirements__tab-panel.is-active {
  display: block;
}

.p-requirements__title {
  position: relative;
  font-size: 1.375rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.3181818182;
  letter-spacing: 0.04em;
  text-align: center;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__title {
    font-size: 2rem;
    padding-bottom: 1.875rem;
  }
}

.p-requirements__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.625rem;
  height: 0.4375rem;
  background-image: url("../../images/logo_title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-requirements__title::after {
    width: 4.5rem;
    height: 0.75rem;
  }
}

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

.p-requirements__list {
  position: relative;
  border-radius: 0.625rem;
  padding: 0.8125rem 1.25rem;
  display: grid;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-requirements__list {
    padding: 1.6rem 2.1875rem;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
}

.p-requirements__list:nth-child(odd) {
  background-color: var(--color-off-white);
}

.p-requirements__term {
  position: relative;
  font-size: 1rem;
  font-weight: var(--bold);
  color: var(--color-green-bright);
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-requirements__term {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    min-width: 7.5rem;
  }
}

.p-requirements__term::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  background-image: radial-gradient(circle, #08C900 1px, transparent 1px);
  background-size: 4px 2px;
  width: 1.875rem;
  height: 2px;
  background-position: top;
  background-repeat: repeat-x;
}
@media screen and (min-width: 768px) {
  .p-requirements__term::before {
    bottom: 0;
    left: auto;
    right: 0;
    background-image: radial-gradient(circle, #08C900 1px, transparent 1px);
    background-size: 2px 3px;
    width: 0.1875rem;
    height: 100%;
    background-position: top;
    background-repeat: repeat-y;
  }
}

.p-requirements__desc {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-requirements__desc {
    line-height: 1.5;
  }
}

.p-requirements__item {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-requirements__item {
    line-height: 1.5;
  }
}

.p-requirements__button {
  margin-top: 3.75rem;
  max-width: 15rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-requirements__button {
    max-width: 19.375rem;
  }
}

.p-requirements__tab-panel {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-sub-mv {
  background-color: var(--color-blue-navy);
  padding-top: 3.75rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-sub-mv {
    padding-top: 6.25rem;
  }
}

.p-sub-mv.p-sub-mv--common {
  padding-block: 3.75rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv.p-sub-mv--common {
    padding-block: 6.25rem 3.0625rem;
  }
}

.p-sub-mv.p-sub-mv--maker {
  padding-block: 3.75rem 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv.p-sub-mv--maker {
    padding-block: 6.25rem 2.25rem;
  }
}

.p-sub-mv.p-sub-mv--privacypolicy {
  padding-block: 3.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv.p-sub-mv--privacypolicy {
    padding-block: 6.25rem 3.125rem;
  }
}

.p-sub-mv__inner {
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__inner {
    margin-top: 4.125rem;
    margin-inline: auto;
  }
}

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

.p-sub-mv__inner.p-sub-mv__inner--maker {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__inner.p-sub-mv__inner--maker {
    margin-top: 5.3125rem;
    max-width: 72.5rem;
    padding-inline: 1.875rem;
  }
}

.p-sub-mv__container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 180px) minmax(auto, 180px) minmax(1.875rem, 1fr);
  grid-template-rows: repeat(3, auto);
}
@media screen and (min-width: 768px) {
  .p-sub-mv__container {
    --padding-inline: clamp(3.75rem, -40.089rem + 55.95vw, 13.625rem);
    /* パディングの計算を変更 */
    --container-max: 1333px;
    --viewport-width: 100vw;
    --side-space: max(0px, calc((var(--viewport-width) - var(--container-max)) / 2));
    grid-template-columns: var(--side-space) var(--padding-inline) 1fr var(--padding-inline) var(--side-space);
    grid-template-rows: repeat(3, auto);
  }
}

@media screen and (min-width: 768px) {
  .p-sub-mv__container.p-sub-mv__container--maker {
    display: block;
  }
}

.p-sub-mv__title-wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title-wrap {
    display: flex;
    gap: 0.75rem;
    grid-area: 1/2/2/4;
    padding-left: 7.3125rem;
  }
}

.p-sub-mv__text-wrap {
  grid-area: 1/2/2/4;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__text-wrap {
    grid-area: 1/1/2/4;
    display: flex;
    gap: 1.4375rem;
    flex-direction: column;
  }
}

.p-sub-mv__title {
  position: relative;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  align-content: center;
  line-height: 1;
  grid-area: 1/2/2/4;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title {
    font-size: 1.5rem;
    flex-shrink: 0;
  }
}

.p-sub-mv__title.p-sub-mv__title--common {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title.p-sub-mv__title--common {
    font-size: 2.625rem;
  }
}

.p-sub-mv__subtitle {
  font-size: 2.625rem;
  font-family: var(--baskervville);
  font-weight: var(--regular);
  color: var(--color-blue-dark);
  letter-spacing: 0.03em;
  line-height: 0.9523809524;
  text-align: right;
  text-transform: uppercase;
  grid-area: 1/2/2/4;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__subtitle {
    text-align: left;
    white-space: nowrap;
    font-size: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-mv__subtitle.p-sub-mv__subtitle--privacypolicy {
    font-size: clamp(4.375rem, -5.953rem + 12.71vw, 6.25rem);
  }
}

.p-sub-mv__sub-text {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__sub-text {
    margin-top: initial;
  }
}

.p-sub-mv__image {
  position: relative;
  margin-top: 2.0625rem;
  grid-area: 2/1/4/4;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__image {
    margin-top: 3rem;
    grid-area: 2/1/4/4;
  }
}

.p-sub-mv__image.p-sub-mv__image--common {
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__image.p-sub-mv__image--common {
    margin-top: 3.1875rem;
  }
}

.p-sub-mv__image img {
  aspect-ratio: 345/136;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__image img {
    aspect-ratio: 1218/316;
  }
}

.p-sub-mv__bg {
  grid-area: 3/1/4/5;
  border-image: linear-gradient(var(--color-white) 0 0) fill 0//0 100vi;
  height: 4.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__bg {
    height: 8.125rem;
    grid-area: 3/1/4/6;
  }
}

.p-sub-mv-recruit {
  position: relative;
  padding-block: 4rem 1.875rem;
  border-bottom: 2px solid var(--color-green-bright);
}
@media screen and (min-width: 768px) {
  .p-sub-mv-recruit {
    padding-block: 6.25rem 2.375rem;
  }
}

.p-sub-mv-recruit__inner.l-inner {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv-recruit__inner.l-inner {
    margin-top: 8.75rem;
    max-width: 59.375rem;
  }
}

.p-sub-mv-recruit__title {
  width: min(100%, 12.6875rem);
}
@media screen and (min-width: 768px) {
  .p-sub-mv-recruit__title {
    width: min(100%, 14rem);
  }
}

.p-sub-mv-recruit__title.p-sub-mv-recruit__title--entry {
  width: min(100%, 16.75rem);
}
@media screen and (min-width: 768px) {
  .p-sub-mv-recruit__title.p-sub-mv-recruit__title--entry {
    width: min(100%, 32.3125rem);
  }
}

.p-sub-mv-recruit__title img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-thanks {
  padding-block: 3.75rem 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-thanks {
    padding-block: 6.25rem 6.25rem;
  }
}

.p-thanks__title {
  position: relative;
  font-size: 1.375rem;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-dark-gray);
  text-align: center;
  padding-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 2.125rem;
    line-height: 1.3529411765;
    padding-bottom: 1.6875rem;
    letter-spacing: 0.04em;
  }
}

.p-thanks__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.25rem;
  background-color: var(--color-orange-dark);
}
@media screen and (min-width: 768px) {
  .p-thanks__title::before {
    width: 4.5rem;
  }
}

.p-thanks__text-wrap {
  text-align: center;
  margin-top: 1.6875rem;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__text-wrap {
    margin-top: 2.3125rem;
    gap: 0.8125rem;
  }
}

.p-thanks__text {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
  text-align: center;
}

.p-thanks__text:nth-child(3) {
  margin-top: -0.625rem;
}
.p-thanks__button-wrap {
  margin-top: 1.6875rem;
  max-width: 15rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-thanks__button-wrap {
    margin-top: 3.3125rem;
    max-width: 16.875rem;
  }
}

.p-top-accompany {
  display: grid;
  grid-template-columns: var(--padding-sp) 1fr var(--padding-sp);
}
@media screen and (min-width: 768px) {
  .p-top-accompany {
    --padding-outer: clamp(0rem, -66.912rem + 76.47vw, 6.5rem);
    --padding-inner: clamp(1.875rem, -52.169rem + 61.76vw, 7.125rem);
    --inner: 1fr;
    display: grid;
    grid-template-columns: var(--padding-outer) var(--padding-inner) var(--inner) var(--padding-inner) var(--padding-outer);
  }
}

.p-top-accompany__bg {
  position: relative;
  background-image: image-set(url("../../images/bg_accompany_pc.webp") type("image/webp"), url("../../images/bg_accompany_pc.jpg") type("image/jpg"));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 6.25rem;
  grid-area: 1/1/2/4;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__bg {
    background-image: image-set(url("../../images/bg_accompany_pc.webp") type("image/webp"), url("../../images/bg_accompany_pc.jpg") type("image/jpg"));
    grid-area: 1/1/2/5;
    border-top-right-radius: 12.5rem;
  }
}

.p-top-accompany__inner {
  padding-block: 5.0625rem 5rem;
  width: min(100%, 31.25rem);
  margin-inline: auto;
  grid-area: 1/2/2/3;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__inner {
    position: relative;
    z-index: 1;
    grid-area: 1/3/2/4;
    width: min(100%, 68.75rem);
    padding-block: 6.25rem 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-accompany__inner::after {
    content: "about\a accompaniment";
    position: absolute;
    top: 0;
    right: calc(50% - min(48vw, 45rem));
    color: var(--color-off-white);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    text-transform: uppercase;
    font-size: clamp(4.375rem, -0.356rem + 6.88vw, 6.25rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    z-index: -1;
    text-align: right;
    white-space: pre-line;
  }
}

.p-top-accompany__content {
  position: relative;
}

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

.p-top-accompany__text {
  margin-top: 1.5rem;
}

.p-top-accompany__schedule {
  margin-top: 1.6875rem;
  position: relative;
  background-color: var(--color-white);
  padding-block: 1.5625rem 1.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule {
    margin-top: 3.125rem;
    padding-block: 2rem;
  }
}

.p-top-accompany__schedule-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.p-top-accompany__schedule-header::before {
  content: "";
  width: 0.625rem;
  height: 3.4375rem;
  background-color: var(--color-blue-navy);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-header::before {
    width: 1rem;
    height: 2.5rem;
  }
}

.p-top-accompany__schedule-title-wrap {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-title-wrap {
    flex-direction: row;
    align-items: flex-end;
  }
}

.p-top-accompany__schedule-title {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-dark-gray);
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-title {
    font-size: 1.5rem;
  }
}

.p-top-accompany__schedule-month {
  margin-right: 0.25rem;
  font-size: 2.625rem;
  font-weight: var(--semibold);
  color: var(--color-dark-gray);
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-month {
    font-size: 3.125rem;
  }
}

.p-top-accompany__schedule-date {
  margin-top: 0.125rem;
  padding-left: 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--semibold);
  color: var(--color-dark-gray);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-date {
    margin-top: initial;
    padding-left: initial;
    padding-bottom: 0.1875rem;
    margin-left: 0.5rem;
    font-size: 1rem;
  }
}

.p-top-accompany__schedule-list {
  margin-top: 0.9375rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding-inline: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-list {
    margin-top: 1rem;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1.25rem;
    row-gap: 0;
    padding-inline: 2.5rem;
  }
}

.p-top-accompany__schedule-item-list {
  display: grid;
  gap: 0.3125rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-item-list {
    padding-block: 1.25rem;
  }
}

.p-top-accompany__schedule-item-list:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-item-list:last-child {
    border-bottom: 1px solid var(--color-gray-medium-2);
  }
}

@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-item-list.p-top-accompany__schedule-item-list--last-row {
    border-bottom: none;
  }
}

.p-top-accompany__schedule-item {
  position: relative;
  font-size: 0.875rem;
  font-weight: var(--medium);
  color: var(--color-dark-gray);
  line-height: 1.5;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-item {
    font-size: 1rem;
  }
}

.p-top-accompany__schedule-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gray-dark);
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top-accompany__schedule-item::before {
    font-size: 1.125rem;
    top: 0.1em;
  }
}

.p-top-business {
  position: relative;
  padding-block: 4.875rem 5.0625rem;
}
@media screen and (min-width: 768px) {
  .p-top-business {
    padding-block: 6.1875rem 6.125rem;
  }
}

.p-top-business__inner {
  max-width: 100rem;
  margin-inline: auto;
}

.p-top-business__title-wrap {
  display: grid;
  gap: 0.375rem;
}

.p-top-business__container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 400px) minmax(1.875rem, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas: "l-margin image image" "l-margin text r-margin";
}
@media screen and (min-width: 768px) {
  .p-top-business__container {
    --padding-inline: clamp(1.875rem, -27.769rem + 43.12vw, 13.625rem);
    grid-template-columns: var(--padding-inline) 500fr 597fr var(--padding-inline);
  }
}

.p-top-business__image {
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
  grid-area: image;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-business__image {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 19% 100%);
    grid-area: 1/3/2/5;
  }
}

.p-top-business__image img {
  aspect-ratio: 345/206;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top-business__image img {
    aspect-ratio: 815/451;
  }
}

.p-top-business__content {
  margin-top: 1.875rem;
  grid-area: text;
}
@media screen and (min-width: 768px) {
  .p-top-business__content {
    margin-top: 0;
    padding-top: 3.75rem;
    grid-area: 1/2/2/3;
  }
}

.p-top-business__text {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-dark-gray);
  letter-spacing: 0.04em;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-top-business__text {
    margin-top: 1.6875rem;
    font-size: clamp(0.875rem, 0.56rem + 0.46vw, 1rem);
  }
}

.p-top-business__button-wrap {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__button-wrap {
    margin-top: 2.3125rem;
    margin-right: auto;
    max-width: 16.875rem;
  }
}

.p-top-greeting {
  position: relative;
  background-color: var(--color-blue-navy);
  padding: 5.125rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-greeting {
    padding-block: 9.8125rem 6.25rem;
  }
}

.p-top-greeting__inner {
  max-width: 100rem;
  margin-inline: auto;
}

.p-top-greeting__title-wrap {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__title-wrap {
    display: grid;
    gap: 0.625rem;
  }
}

.p-top-greeting__container {
  margin-top: 1.75rem;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 400px) minmax(1.875rem, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas: "image image r-margin" "l-margin text r-margin";
}
@media screen and (min-width: 768px) {
  .p-top-greeting__container {
    margin-top: 2.625rem;
    --padding-inline: clamp(1.875rem, -40.089rem + 55.95vw, 13.625rem);
    display: grid;
    grid-template-columns: var(--padding-inline) 379fr 218fr 503fr var(--padding-inline);
  }
}

.p-top-greeting__image {
  clip-path: polygon(0 0, 100% 0%, 76% 100%, 0% 100%);
  grid-area: image;
  position: relative;
  padding-bottom: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__image {
    padding-bottom: initial;
    grid-area: 1/1/2/4;
  }
}

.p-top-greeting__splide {
  height: 100%;
}

.p-top-greeting__splide .splide__track {
  height: 100%;
}

.p-top-greeting__splide .splide__list {
  height: 100%;
}

.p-top-greeting__splide .splide__slide {
  height: 100%;
  transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.p-top-greeting__splide .splide__slide-image {
  height: 100%;
}

.p-top-greeting__splide .splide__slide-image img {
  aspect-ratio: 345/206;
  object-fit: cover;
  width: 100%;
  height: auto;
  transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (min-width: 768px) {
  .p-top-greeting__splide .splide__slide-image img {
    aspect-ratio: 814/450;
  }
}

.p-top-greeting__content {
  grid-area: text;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__content {
    padding-top: 2.5rem;
    text-align: right;
    grid-area: 1/2/2/5;
  }
}

.p-top-greeting__lead-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__lead-wrap {
    gap: 0.5625rem;
  }
}

.p-top-greeting__lead {
  background-color: var(--color-gray-medium-2);
  width: fit-content;
  padding: 0.65625rem 0.3125rem;
  margin-left: auto;
  font-size: 1.625rem;
  font-weight: var(--semibold);
  font-family: var(--noto-serif-jp);
  color: var(--color-dark-gray);
  line-height: 1;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__lead {
    font-size: 3.75rem;
    padding: 1.125rem 0.3125rem;
  }
}

.p-top-greeting__lead span {
  margin-left: 0.3125rem;
  font-size: inherit;
  color: inherit;
}

.p-top-greeting__catch {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: var(--bold);
  color: var(--color-white);
  letter-spacing: 0.06em;
  line-height: 1.6666666667;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__catch {
    font-size: 1.875rem;
    margin-top: 1.625rem;
  }
}

.p-top-greeting__message {
  margin-top: 0.3125rem;
}

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

.p-top-greeting__button-wrap {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__button-wrap {
    margin-top: 2.3125rem;
    margin-left: auto;
    max-width: 16.875rem;
  }
}

.p-top-greeting__splide .splide__pagination {
  position: absolute;
  bottom: -1.5625rem;
  left: -50%;
  display: flex;
  gap: 0.25rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top-greeting__splide .splide__pagination {
    bottom: 0;
    transform: translateX(-50%);
    left: 36%;
    top: clamp(0rem, -24rem + 50vw, 26rem);
  }
}

.p-top-greeting__splide .splide__pagination__page {
  width: 3.125rem;
  height: 0.1875rem;
  border-radius: 0;
  background-color: var(--color-white);
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: background-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media screen and (min-width: 768px) {
  .p-top-greeting__splide .splide__pagination__page {
    width: 4.375rem;
    height: 0.1875rem;
  }
}

.p-top-greeting__splide .splide__pagination__page.is-active {
  background-color: var(--color-orange);
  transform: scale(1);
}

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

@media screen and (min-width: 768px) {
  .p-top-news__container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-top-news__container::after {
    content: "news";
    position: absolute;
    right: calc(50% - min(48vw, 45rem));
    top: -7.9375rem;
    color: var(--color-off-white);
    font-family: var(--baskervville);
    font-weight: var(--regular);
    font-size: 6.25rem;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

.p-top-news__title-wrap {
  text-align: left;
  display: grid;
  gap: 0.625rem;
}

.p-top-news__list-wrap {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__list-wrap {
    margin-top: -1.375rem;
    width: 72.7272727273%;
  }
}

.p-top-news__item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  padding: 1.1875rem 0;
  border-bottom: 1px solid var(--color-gray-medium-2);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-news__item a {
    flex-direction: row;
    align-items: center;
    padding: 1.25rem 0 0.875rem;
    gap: 1.875rem;
    transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

.p-top-news__item a:hover {
  background-color: #f5f5f5;
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-top-news__item a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-gray-medium-2);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-top-news__label-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__label-wrap {
    justify-content: center;
  }
}

.p-top-news__label {
  padding: 0.0625rem 0.125rem 0.125rem;
  min-width: 3.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: var(--medium);
  color: var(--color-white);
  background-color: var(--color-gray-medium);
  line-height: 1.5;
  border-radius: 0.125rem;
}

.p-top-news__date {
  font-size: 1rem;
  font-family: var(--noto-serif-jp);
  font-weight: var(--regular);
  color: var(--color-gray-medium);
  line-height: 1.5;
}

.p-top-news__text {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-dark-gray);
  letter-spacing: 0.04em;
  line-height: 1.625;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .p-top-news__text {
    -webkit-line-clamp: 1;
  }
}

.p-top-news__button-wrap {
  margin-top: 2.5rem;
  width: min(100%, 15rem);
}
@media screen and (min-width: 768px) {
  .p-top-news__button-wrap {
    margin-top: 2.1875rem;
    margin-left: 7.1875rem;
    width: min(100%, 16.875rem);
  }
}

.p-top-system {
  position: relative;
  padding-block: 5.0625rem 5rem;
  background: transparent linear-gradient(90deg, #1869C7 0%, #0DAC00 100%) 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 768px) {
  .p-top-system {
    padding-block: 5rem 5rem;
  }
}

.p-top-system__inner {
  max-width: 100rem;
  margin-inline: auto;
}

.p-top-system__title-wrap {
  display: grid;
  gap: 0.1875rem;
  grid-area: title;
}
@media screen and (min-width: 768px) {
  .p-top-system__title-wrap {
    padding-top: 3.75rem;
    gap: 0.625rem;
    grid-area: 1/2/2/3;
  }
}

.p-top-system__container {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: minmax(1.875rem, 1fr) minmax(auto, 400px) minmax(1.875rem, 1fr);
  grid-template-rows: auto auto auto;
  grid-template-areas: "l-margin title r-margin" "l-margin image r-margin" "l-margin text r-margin";
}
@media screen and (min-width: 768px) {
  .p-top-system__container {
    --padding-inline: clamp(1.875rem, -27.769rem + 43.12vw, 13.625rem);
    grid-template-columns: var(--padding-inline) 643fr 57fr 400fr var(--padding-inline);
    grid-template-rows: auto auto;
  }
}

.p-top-system__image {
  margin-top: 1.5625rem;
  grid-area: image;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-system__image {
    margin-top: initial;
    grid-area: 1/4/3/5;
  }
}

.p-top-system__image img {
  aspect-ratio: 315/300;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-top-system__image img {
    aspect-ratio: 400/415;
  }
}

.p-top-system__content {
  grid-area: text;
}
@media screen and (min-width: 768px) {
  .p-top-system__content {
    grid-area: 2/2/3/3;
  }
}

.p-top-system__text {
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .p-top-system__text {
    margin-top: 1.25rem;
    font-size: clamp(0.875rem, 0.56rem + 0.46vw, 1rem);
  }
}

.p-top-system__button-wrap {
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-system__button-wrap {
    margin-top: 2.125rem;
    margin-right: auto;
    max-width: 16.875rem;
  }
}

.p-entry {
  padding-block: 1.5625rem 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding-block: 4.875rem 8.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-entry__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-entry__text {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-entry__text {
    font-size: 0.875rem;
    line-height: 1.8571428571;
  }
}

.p-entry__content {
  margin-top: 1.5625rem;
  background-color: var(--color-off-white);
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry__content {
    margin-top: 2.125rem;
    border-radius: 1.25rem;
    padding: 3.75rem 3.75rem;
  }
}

.p-entry__job-title {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-entry__job-title {
    flex-direction: row;
    gap: 2.0625rem;
    padding-bottom: 3.4375rem;
  }
}

.p-entry__job-label {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-entry__job-label {
    min-width: 11.25rem;
    gap: 0.625rem;
  }
}

.p-entry__job-name {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}

.p-entry__form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-entry__form {
    margin-top: 3.875rem;
    gap: 3.875rem;
  }
}

.p-entry__field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-entry__field {
    flex-direction: row;
    gap: 1.875rem;
    padding-bottom: 3.4375rem;
  }
}

.p-entry__zip-container {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-entry__zip-container {
    flex-direction: row;
    gap: 1.875rem;
  }
}

.p-entry__field.p-entry__field--textarea {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry__field.p-entry__field--textarea {
    align-items: flex-start;
    padding-bottom: 3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-entry__field.p-entry__field--textarea .p-entry__label {
    padding-top: 0.75rem;
  }
}

/* バリデーションエラー時のスタイル */
.p-entry__field .wpcf7-not-valid-tip {
  color: var(--color-red-dark);
  font-weight: var(--medium);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  margin-top: 0.1875rem;
}

/* バリデーションエラー時のスタイル */
.p-entry__field .wpcf7-not-valid {
  border: 1px solid var(--color-red-dark) !important;
}

@media screen and (min-width: 768px) {
  .p-entry__field .wpcf7-form-control-wrap {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-entry__field.p-entry__field--tel .wpcf7-form-control-wrap {
    width: 100%;
    max-width: 18.125rem;
  }
}

.p-entry__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-entry__label {
    min-width: 11.25rem;
    gap: 0.625rem;
  }
}

.p-entry__label-text {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}

.p-entry__required {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-dark-gray);
  background-color: var(--color-yellow);
}

.p-entry__optional {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-white);
  background-color: var(--color-gray-dark);
}

.p-entry__field .p-entry__input,
.p-entry__field .p-entry__textarea {
  width: 100%;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  background-color: var(--color-white);
  color: var(--color-dark-gray);
  font-weight: var(--medium);
  line-height: 2.1428571429;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px) {
  .p-entry__field .p-entry__input,
  .p-entry__field .p-entry__textarea {
    padding: 0.75rem 1.25rem;
  }
}

.p-entry__input::placeholder,
.p-entry__textarea::placeholder {
  color: var(--color-gray-medium-2);
}

/* オートコンプリート時の背景色を制御 */
.p-entry__input:-webkit-autofill,
.p-entry__input:-webkit-autofill:hover,
.p-entry__input:-webkit-autofill:focus,
.p-entry__input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--color-white) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.p-entry__textarea {
  min-height: 15rem;
}
@media screen and (min-width: 768px) {
  .p-entry__textarea {
    min-height: 13.125rem;
  }
}

.p-entry__zip-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-entry__zip-wrap {
    display: grid;
    grid-template-columns: 290fr 190fr;
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 0.625rem;
    max-width: 30.625rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-entry__zip-wrap .wpcf7-form-control-wrap {
    grid-area: 1/1/2/2;
  }
}

.p-entry__input + .wpcf7-not-valid-tip {
  order: 1;
}

.p-entry__zip-wrap .wpcf7-form-control-wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-entry__zip-wrap .wpcf7-form-control-wrap {
    display: block;
  }
}

.p-entry__zip-button {
  padding: 0.625rem 1.125rem;
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-white);
  background-color: var(--color-dark-gray);
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-entry__zip-button {
    max-width: 11.875rem;
    max-height: 3.5rem;
    width: 100%;
    grid-area: 1/2/2/3;
  }
}

@media (any-hover: hover) {
  .p-entry__zip-button:hover {
    color: var(--color-yellow);
  }
}
.p-entry__privacy-policy {
  margin-top: 1.0625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-entry__privacy-policy {
    margin-top: 3.375rem;
  }
}

.p-entry__privacy-link {
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 2.1428571429;
  letter-spacing: 0.04em;
  color: var(--color-gray-darker-2);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  transition: color 0.3s ease;
}

@media (any-hover: hover) {
  .p-entry__privacy-link:hover {
    color: var(--color-dark-gray);
    text-decoration: underline;
  }
}
.p-entry__agreement {
  margin-top: 0.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-entry__agreement {
    margin-top: 0.75rem;
  }
}

.p-entry__agreement .wpcf7-list-item label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 3.75rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-entry__agreement .wpcf7-list-item label {
    padding-left: 2rem;
  }
}

@media (any-hover: hover) {
  .p-entry__agreement .wpcf7-list-item label:hover {
    opacity: 0.7;
  }
}
.p-entry__agreement .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-black-2);
  text-align: left;
}

.p-entry__checkbox {
  position: absolute;
  top: 0.125rem;
  left: 1.875rem;
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: var(--color-gray-medium-2);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-entry__checkbox {
    top: 0.1875rem;
    left: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}

.p-entry__checkbox:checked {
  border-color: var(--color-orange-dark);
}

.p-entry__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 0.3125rem;
  border: 0.125rem solid var(--color-orange-dark);
  border-width: 0 0 0.125rem 0.125rem;
  transform: translate(-50%, -60%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .p-entry__checkbox:checked::after {
    width: 0.8125rem;
    height: 0.375rem;
  }
}

.p-entry__submit-wrap {
  position: relative;
  margin-top: 1.9375rem;
  text-align: center;
  max-width: 15rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-entry__submit-wrap {
    margin-top: 2.5rem;
    max-width: 19.375rem;
  }
}

.p-entry__submit {
  position: relative;
  width: 100%;
  padding: 1.0625rem 1.25rem;
  font-size: 1rem;
  font-weight: var(--semibold);
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-black);
  letter-spacing: 0.04em;
  border-radius: 0.625rem;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-entry__submit {
    padding: 1.3125rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}

@media (any-hover: hover) {
  .p-entry__submit:hover {
    color: var(--color-yellow);
  }
}
.p-entry__submit-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry__submit-icon::before {
    right: 1.25rem;
  }
}

.wpcf7-spinner {
  display: none;
}

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

.p-entry__error-message {
  color: var(--color-red-dark);
  font-weight: var(--medium);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  margin-top: 0.3125rem;
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-entry__error-message {
    display: grid;
    grid-area: 2/1/3/3;
  }
}

.p-entry-confirm {
  padding-block: 3.75rem 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm {
    padding-block: 6.1875rem 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-confirm__inner.l-inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-entry-confirm__text {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__text {
    font-size: 0.875rem;
  }
}

.p-entry-confirm__content {
  margin-top: 1.5625rem;
  background-color: var(--color-off-white);
  padding: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__content {
    margin-top: 2.3125rem;
    border-radius: 1.25rem;
    padding: 3.75rem 3.75rem;
  }
}

.p-entry-confirm__form {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__form {
    gap: 3.8125rem;
  }
}

.p-entry-confirm__field {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--color-gray-medium-2);
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__field {
    flex-direction: row;
    gap: 0.75rem;
    padding-bottom: 3.5rem;
  }
}

.p-entry-confirm__zip-container {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__zip-container {
    flex-direction: row;
    gap: 0.75rem;
  }
}

.p-entry-confirm__field.p-entry-confirm__field--textarea {
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__field.p-entry-confirm__field--textarea {
    align-items: flex-start;
    padding-bottom: 3.4375rem;
  }
}

.p-entry-confirm__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__label {
    min-width: 11.25rem;
    gap: 0.625rem;
  }
}

.p-entry-confirm__label-text {
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}

.p-entry-confirm__data {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}

.p-entry-confirm__message {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.4285714286;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__message {
    font-size: 1rem;
  }
}

.p-entry-confirm__required {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-white);
  background-color: var(--color-orange-dark);
}

.p-entry-confirm__optional {
  padding: 0 0.3125rem;
  font-size: 0.75rem;
  font-weight: var(--medium);
  line-height: 1.6666666667;
  color: var(--color-white);
  background-color: var(--color-gray-dark);
}

.p-entry-confirm__submit-wrap {
  margin-top: 1.9375rem;
  text-align: center;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__submit-wrap {
    margin-top: 2.5rem;
    flex-direction: row;
    justify-content: center;
    gap: 1.25rem;
  }
}

.p-entry-confirm__return,
.p-form__send {
  width: 100%;
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__return,
  .p-form__send {
    max-width: 16.875rem;
  }
}

.p-entry-confirm__submit,
.p-entry-confirm__back {
  position: relative;
  width: 100%;
  padding: 1.0625rem 1.25rem;
  font-size: 1rem;
  font-weight: var(--semibold);
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-black);
  letter-spacing: 0.04em;
  border-radius: 0.625rem;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__submit,
  .p-entry-confirm__back {
    padding: 0.9375rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}

.p-entry-confirm__back-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__back-icon::before {
    left: 1.25rem;
  }
}

.p-entry-confirm__submit-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry-confirm__submit-icon::before {
    right: 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-entry-confirm__submit:hover,
  .p-entry-confirm__back:hover {
    color: var(--color-yellow);
  }
}
.p-entry-confirm__back {
  display: block !important;
}

.p-entry-thanks {
  padding-block: 2.0625rem 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks {
    padding-block: 5.8125rem 8.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-entry-thanks__inner {
    max-width: 59.375rem;
    margin-inline: auto;
  }
}

.p-entry-thanks__title {
  position: relative;
  font-size: 1.375rem;
  font-weight: var(--bold);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-dark-gray);
  text-align: center;
  padding-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks__title {
    font-size: 2rem;
    line-height: 0.90625;
    padding-bottom: 2.25rem;
    letter-spacing: 0.04em;
  }
}

.p-entry-thanks__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.625rem;
  height: 0.4375rem;
  background-image: url("../../images/logo_title.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks__title::before {
    width: 4.5rem;
    height: 0.75rem;
  }
}

.p-entry-thanks__text-wrap {
  margin-top: 1.0625rem;
  text-align: center;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks__text-wrap {
    margin-top: 2.3125rem;
    gap: 0.0625rem;
  }
}

.p-entry-thanks__text-wrap:nth-child(3) {
  margin-top: 0.625rem;
}

.p-entry-thanks__text {
  font-size: 1rem;
  font-weight: var(--medium);
  line-height: 1.875;
  letter-spacing: 0.04em;
  color: var(--color-dark-gray);
  text-align: center;
}

.p-entry-thanks__block {
  margin-top: 1.4375rem;
  background-color: var(--color-off-white);
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks__block {
    padding: 1.875rem 0.625rem;
    max-width: 40.625rem;
    margin-inline: auto;
  }
}

.p-entry-thanks__block-inner {
  display: grid;
  gap: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks__block-inner {
    max-width: 29.375rem;
    margin-inline: auto;
    gap: 0.8125rem;
  }
}

.p-entry-thanks__list {
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-gray-medium-2);
  display: grid;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks__list {
    padding-top: 1rem;
    gap: 0;
  }
}

.p-entry-thanks__item {
  position: relative;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-gray-darker);
  padding-left: 0.875rem;
}

.p-entry-thanks__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  font-size: 0.875rem;
  font-weight: var(--medium);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-gray-darker);
}

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

.p-entry-thanks__button-wrap {
  margin-top: 1.875rem;
  max-width: 15rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-entry-thanks__button-wrap {
    margin-top: 3.4375rem;
    max-width: 19.375rem;
  }
}

.p-404 {
  padding-block: 3.875rem 5rem;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding-block: 6.25rem 6.25rem;
  }
}

.p-404__inner {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-404__inner {
    margin-top: 6.25rem;
  }
}

.p-404__title {
  position: relative;
  font-size: 1.375rem;
  color: var(--color-dark-gray);
  font-weight: var(--bold);
  line-height: 1.5;
  text-align: center;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 2.125rem;
    letter-spacing: 0.04em;
    line-height: 1.2941176471;
    padding-bottom: 1.75rem;
  }
}

.p-404__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 0.25rem;
  background-color: var(--color-orange-dark);
}
@media screen and (min-width: 768px) {
  .p-404__title::after {
    width: 4.375rem;
  }
}

.p-404__text-wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__text-wrap {
    margin-top: 2.3125rem;
  }
}

.p-404__text {
  font-size: 1rem;
  font-weight: var(--medium);
  color: var(--color-dark-gray);
  line-height: 1.875;
  letter-spacing: 0.04em;
  text-align: center;
}

.p-404__button-wrap {
  margin-top: 1.6875rem;
  text-align: center;
  max-width: 15rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-404__button-wrap {
    margin-top: 3.4375rem;
    max-width: 16.875rem;
  }
}