/* ---- reset.css ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}

ul,
ol {
  list-style: none;
}

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

fieldset {
  border: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ---- common.css ---- */
:root {
  --color-white: #ffffff;
  --color-text: #1e293b;
  --color-line: #d5dce5;
  --color-dark-blue: #002e6e;
  --color-logo-blue: #004098;
  --color-bg-header: #f8fafc;
  --color-bg-light: #f4f7fa;
  --color-bg-pale: #ebf1f6;
  --color-bg-placeholder: #e8ecf0;
  --color-text-gray: #999;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --gradient-accent: linear-gradient(193deg, #004098 9.8%, #2e5283 51.6%, #002d60 90.25%);
  --font-en: "Hanken Grotesk", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-jp-serif: "Shippori Mincho", serif;

  --header-height-pc: 80px;
  --header-height-sp: 58px;
}

a:hover {
  opacity: 0.7;
}


/* ---- typography.css ---- */
.c-heading-en {
  color: var(--color-dark-blue);
  font-family: var(--font-en);
  font-weight: 600;
  text-transform: uppercase;
}

.c-heading-en--h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0;
}
.c-heading-en--h2 {
  font-size: 2.625rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.c-heading-en--h3 {
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.c-heading-en--h4 {
  font-size: 1.875rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.c-heading-en--h5 {
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.c-heading-en--h6 {
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .c-heading-en--h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }
  .c-heading-en--h2 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
  }
  .c-heading-en--h3 {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .c-heading-en--h4 {
    font-size: 1.125rem;
    line-height: 1.2;
  }
  .c-heading-en--h5 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .c-heading-en--h6 {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}
.c-heading-ja {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1.6;
}

.c-heading-ja--28 {
  font-family: var(--font-jp-serif);
  font-size: 1.75rem;
  font-weight: 600;
}
.c-heading-ja--24 {
  font-size: 1.5rem;
}
.c-heading-ja--20 {
  font-size: 1.25rem;
}
.c-heading-ja--18 {
  font-size: 1.125rem;
}
.c-heading-ja--16 {
  font-size: 1rem;
}
.c-heading-ja--15 {
  font-size: 0.9375rem;
}
.c-section-heading__sub {
  margin-top: 8px;
  color: var(--color-text-gray);
  font-family: var(--font-jp);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}
.c-section-heading--white .c-section-heading__sub {
  color: #fff;
}
@media (max-width: 767px) {
  .c-section-heading__sub {
    margin-top: 6px;
    font-size: 0.9375rem;
  }
}
.c-text {
  color: var(--color-text);
  font-family: var(--font-jp);
}

.c-text--ll {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.c-text--l {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}
.c-text--m {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}
.c-text--s {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .c-text--ll {
    font-size: 1.25rem;
    line-height: 1.75;
  }
  .c-text--l {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.02em;
  }
  .c-text--m {
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  .c-text--s {
    font-size: 0.75rem;
    line-height: 1.6;
  }
}
.c-list {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 400;
  list-style: none;
}
.c-list > li::before {
  content: "・";
}

.c-list--m {
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
.c-list--s {
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .c-list--m {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .c-list--s {
    font-size: 0.75rem;
    line-height: 1.7;
  }
}
.c-link-underline {
  color: var(--color-dark-blue);
  text-decoration: underline;
}
.c-link-underline:hover {
  text-decoration: none;
}


/* ---- utility.css ---- */
.u-mt-0 { margin-top: 0 !important; }
.u-mt-4 { margin-top: 4px !important; }
.u-mt-8 { margin-top: 8px !important; }
.u-mt-12 { margin-top: 12px !important; }
.u-mt-16 { margin-top: 16px !important; }
.u-mt-20 { margin-top: 20px !important; }
.u-mt-24 { margin-top: 24px !important; }
.u-mt-32 { margin-top: 32px !important; }
.u-mt-40 { margin-top: 40px !important; }
.u-mt-48 { margin-top: 48px !important; }
.u-mt-56 { margin-top: 56px !important; }
.u-mt-64 { margin-top: 64px !important; }
.u-mt-80 { margin-top: 80px !important; }
.u-mt-100 { margin-top: 100px !important; }

.u-mb-0 { margin-bottom: 0 !important; }
.u-mb-4 { margin-bottom: 4px !important; }
.u-mb-8 { margin-bottom: 8px !important; }
.u-mb-12 { margin-bottom: 12px !important; }
.u-mb-16 { margin-bottom: 16px !important; }
.u-mb-20 { margin-bottom: 20px !important; }
.u-mb-24 { margin-bottom: 24px !important; }
.u-mb-32 { margin-bottom: 32px !important; }
.u-mb-40 { margin-bottom: 40px !important; }
.u-mb-48 { margin-bottom: 48px !important; }
.u-mb-56 { margin-bottom: 56px !important; }
.u-mb-64 { margin-bottom: 64px !important; }
.u-mb-80 { margin-bottom: 80px !important; }
.u-mb-100 { margin-bottom: 100px !important; }

@media (max-width: 767px) {
  .u-mt-sp-0 { margin-top: 0 !important; }
  .u-mt-sp-4 { margin-top: 4px !important; }
  .u-mt-sp-8 { margin-top: 8px !important; }
  .u-mt-sp-16 { margin-top: 16px !important; }
  .u-mt-sp-24 { margin-top: 24px !important; }
  .u-mt-sp-32 { margin-top: 32px !important; }
  .u-mt-sp-40 { margin-top: 40px !important; }
  .u-mt-sp-56 { margin-top: 56px !important; }
  .u-mt-sp-80 { margin-top: 80px !important; }

  .u-mb-sp-0 { margin-bottom: 0 !important; }
  .u-mb-sp-4 { margin-bottom: 4px !important; }
  .u-mb-sp-8 { margin-bottom: 8px !important; }
  .u-mb-sp-16 { margin-bottom: 16px !important; }
  .u-mb-sp-24 { margin-bottom: 24px !important; }
  .u-mb-sp-32 { margin-bottom: 32px !important; }
  .u-mb-sp-40 { margin-bottom: 40px !important; }
  .u-mb-sp-56 { margin-bottom: 56px !important; }
  .u-mb-sp-80 { margin-bottom: 80px !important; }
}
.u-relative {
  position: relative !important;
}
.u-text-left {
  text-align: left !important;
}
.u-text-center {
  text-align: center !important;
}
.u-text-right {
  text-align: right !important;
}

@media (max-width: 767px) {
  .u-text-sp-left {
    text-align: left !important;
  }
  .u-text-sp-center {
    text-align: center !important;
  }
  .u-text-sp-right {
    text-align: right !important;
  }
}
.u-pc-only {
  display: block !important;
}
.u-sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
  .u-sp-only {
    display: block !important;
  }
}
.u-bg-white {
  background-color: var(--color-white) !important;
}
.u-bg-placeholder {
  background-color: var(--color-bg-placeholder) !important;
}
.u-bg-light {
  background-color: var(--color-bg-light) !important;
}
.u-bg-pale {
  background-color: var(--color-bg-pale) !important;
}
.u-ratio-4-3 {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.u-ratio-3-2 {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.js-inview {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-inview.is-inview {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-inview {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ---- layout.css ---- */
body {
  padding-top: var(--header-height-pc);
}
body[data-page="top"] {
  padding-top: 0;
}
@media (max-width: 1080px) {
  body {
    padding-top: var(--header-height-sp);
  }
}
html.is-scroll-locked,
body.is-scroll-locked {
  overflow: hidden;
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-bg-header);
  transition: background-color 0.3s ease;
}
.l-header.is-transparent {
  background-color: transparent;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height-pc);
  padding: 0 40px;
}

.l-header__logo {
  display: block;
  width: 218px;
  line-height: 0;
}
.l-header__logo img {
  width: 100%;
  aspect-ratio: 218 / 40;
  height: auto;
}
.l-header__logo-img--default {
  display: block;
}
.l-header__logo-img--white {
  display: none;
}
.l-header.is-transparent .l-header__logo-img--default {
  display: none;
}
.l-header.is-transparent .l-header__logo-img--white {
  display: block;
}
.l-header__hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.l-header__hamburger-line {
  position: absolute;
  left: 6px;
  width: 28px;
  height: 1px;
  background-color: var(--color-dark-blue);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}
.l-header.is-transparent .l-header__hamburger-line {
  background-color: #fff;
}
.l-header__hamburger-line:first-child {
  top: 15px;
}
.l-header__hamburger-line:last-child {
  top: 23px;
}
html.is-header-open .l-header {
  background-color: var(--color-bg-header);
}
html.is-header-open .l-header__hamburger-line {
  background-color: var(--color-dark-blue);
  top: 50%;
}
html.is-header-open .l-header__hamburger-line:first-child {
  transform: rotate(45deg);
}
html.is-header-open .l-header__hamburger-line:last-child {
  transform: rotate(-45deg);
}

@media (max-width: 1080px) {
  .l-header__inner {
    height: var(--header-height-sp);
    padding: 9px 10px;
  }
  .l-header__logo {
    width: 134px;
  }
  .l-header__hamburger {
    display: block;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.l-header__nav-item {
  position: relative;
}

.l-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  padding-bottom: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.l-header.is-transparent .l-header__nav-link {
  color: #fff;
}
.l-header__nav-link-text {
  display: contents;
}
.l-header__nav-link-en {
  display: none;
}
.l-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.l-header__nav-link.is-current::after,
.l-header__nav-item--drawer.is-open .l-header__nav-link::after,
.l-header__nav-link:hover::after {
  transform: scaleX(1);
}
.l-header__nav-link:hover {
  opacity: 1;
}
.l-header__nav-chevron-wrap {
  display: inline-flex;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.l-header__nav-item--drawer.is-open .l-header__nav-chevron-wrap {
  transform: rotate(180deg);
}

.l-header__nav-chevron {
  width: 18px;
  height: 18px;
}
.l-header__nav-chevron--default {
  display: inline-block;
}
.l-header__nav-chevron--white {
  display: none;
}
.l-header.is-transparent .l-header__nav-chevron--default {
  display: none;
}
.l-header.is-transparent .l-header__nav-chevron--white {
  display: inline-block;
}
.l-header__nav-toggle-icon {
  display: none;
}
.l-header__nav-item--sp-only {
  display: none;
}
.l-header__nav-legal {
  display: none;
}

@media (max-width: 1080px) {
  .l-header__nav {
    display: block;
    position: fixed;
    left: 0;
    top: var(--header-height-sp);
    width: 100%;
    height: calc(100vh - var(--header-height-sp));
    overflow-y: auto;
    background-color: #fff;
    padding: 28px 30px 80px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
    z-index: 950;
  }
  html.is-header-open .l-header__nav {
    transform: scaleY(1);
  }

  .l-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .l-header__nav-item {
    border-bottom: 1px solid var(--color-line);
    padding: 16px 0;
  }
  .l-header__nav-item--sp-only {
    display: block;
  }
  .l-header__nav-link {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 0;
    color: var(--color-dark-blue);
    text-align: left;
  }
  .l-header__nav-link::after {
    display: none;
  }
  .l-header__nav-link-text {
    display: block;
  }
  .l-header__nav-link-en {
    display: block;
    font-family: var(--font-en);
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .l-header__nav-link-jp {
    display: block;
    font-family: var(--font-jp);
    font-size: 12px;
    margin-top: 2px;
  }
  .l-header__nav-chevron-wrap {
    display: none;
  }
  .l-header__nav-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
  .l-header__nav-toggle-icon::before,
  .l-header__nav-toggle-icon::after {
    content: "";
    position: relative;
    width: 20px;
    height: 2px;
    background-color: var(--color-dark-blue);
    transition: transform 0.2s ease;
  }
  .l-header__nav-toggle-icon::before {
    position: absolute;
  }
  .l-header__nav-toggle-icon::after {
    position: absolute;
    transform: rotate(90deg);
  }
  .l-header__nav-item--drawer.is-open .l-header__nav-toggle-icon::after {
    transform: rotate(0deg);
  }

  .l-header__nav-legal {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    font-family: var(--font-jp);
    font-size: 13px;
  }
  .l-header__nav-legal a {
    color: var(--color-dark-blue);
    text-decoration: none;
  }
}
.l-header__nav-item--drawer > .l-header__drawer {
  position: absolute;
  top: 100%;
  right: -50%;
  background-color: #fff;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.l-header__nav-item--drawer.is-open > .l-header__drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header__nav-item--drawer > .l-header__drawer--mega {
  position: fixed;
  top: var(--header-height-pc);
  left: 0;
  width: 100%;
  padding: 60px 0 80px;
}
.l-header__drawer-heading {
  color: var(--color-dark-blue);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.l-header__drawer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
}
.l-header__drawer-top-link .icon-arrow {
  width: 10px;
  height: 7px;
}
.l-header__drawer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}
.l-header__drawer-card {
  display: block;
  width: 282px;
  text-decoration: none;
}
.l-header__drawer-card-thumb {
  display: block;
  width: 100%;
  height: 141px;
  background-color: var(--color-bg-placeholder);
  overflow: hidden;
}
.l-header__drawer-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-header__drawer-card-label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-text);
}
.l-header__drawer--simple {
  min-width: 200px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-header__drawer--simple a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
}
.l-header__drawer--simple a:first-child {
  font-size: 15px;
  font-weight: 500;
}

.l-header__overlay {
  position: fixed;
  inset: var(--header-height-pc) 0 0 0;
  background-color: var(--color-overlay);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s;
}
.l-header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1080px) {
  .l-header__nav-item--drawer > .l-header__drawer {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.25s ease;
  }
  .l-header__nav-item--drawer.is-open > .l-header__drawer {
    margin-top: 16px;
  }
  .l-header__nav-item--drawer > .l-header__drawer--mega {
    position: static;
    width: auto;
  }
  .l-header__drawer--mega .l-inner {
    padding: 0;
  }
  .l-header__drawer-heading,
  .l-header__drawer-card-thumb {
    display: none;
  }
  .l-header__drawer-top-link {
    font-weight: 500;
    margin-bottom: 12px;
  }
  .l-header__drawer-top-link .icon-arrow {
    display: none;
  }
  .l-header__drawer-cards {
    flex-direction: column;
    gap: 12px;
    margin-top: 0;
  }
  .l-header__drawer-card {
    width: 100%;
  }
  .l-header__drawer-card-label {
    margin-top: 0;
    font-size: 14px;
  }
  .l-header__overlay {
    display: none;
  }
}
.l-sitemap-accordion {
  display: flex;
  flex-direction: column;
}
.l-sitemap-accordion__group {
  display: contents;
}
.l-sitemap-accordion__item {
  border-bottom: 1px solid var(--color-line);
  padding: 16px 0;
}
.l-sitemap-accordion__link {
  display: block;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: var(--color-dark-blue);
  cursor: pointer;
}
.l-sitemap-accordion__link-en {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.l-sitemap-accordion__link-jp {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  margin-top: 2px;
  color: var(--color-dark-blue);
}
.l-sitemap-accordion__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.l-sitemap-accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.l-sitemap-accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.l-sitemap-accordion__icon::before,
.l-sitemap-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: var(--color-dark-blue);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}
.l-sitemap-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.l-sitemap-accordion__item.is-open .l-sitemap-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.l-sitemap-accordion__panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.l-sitemap-accordion__panel a {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--color-dark-blue);
  text-decoration: none;
}
.l-sitemap-accordion__item.is-open .l-sitemap-accordion__panel {
  padding-top: 16px;
}
.l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}
.l-footer {
  background-color: #fff;
  padding: 100px 0 40px;
}
.l-footer__content {
}
.l-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 120px;
  margin-top: 120px;
}
.l-footer__logo {
  order: 1;
  display: block;
  width: 218px;
  line-height: 0;
  margin-right: auto;
}
.l-footer__logo img {
  display: block;
  width: 100%;
  aspect-ratio: 218 / 40;
  height: auto;
}
.l-footer__legal-links {
  order: 2;
  display: flex;
  gap: 60px;
}
.l-footer__legal-links a {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-dark-blue);
  text-decoration: none;
}
.l-footer__copyright {
  order: 3;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-dark-blue);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .l-footer .l-sitemap-accordion {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
  .l-footer .l-sitemap-accordion__group {
    display: flex;
    flex-direction: column;
    flex: 1 1 240px;
    min-width: 200px;
    max-width: 280px;
  }
  .l-footer .l-sitemap-accordion__item {
    border-bottom: none;
    padding: 0 0 40px;
  }
  .l-footer .l-sitemap-accordion__link,
  .l-footer .l-sitemap-accordion__row {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-line);
    margin-bottom: 16px;
  }
  .l-footer .l-sitemap-accordion__row .l-sitemap-accordion__link {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
  }
  .l-footer .l-sitemap-accordion__link-en {
    font-size: 20px;
  }
  .l-footer .l-sitemap-accordion__toggle {
    display: none;
  }
  .l-footer .l-sitemap-accordion__panel {
    max-height: none !important;
    overflow: visible !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .l-footer {
    padding: 60px 0 40px;
  }
  .l-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  .l-footer__logo {
    order: 2;
    width: 205px;
    margin-right: 0;
  }
  .l-footer__legal-links {
    order: 1;
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    width: 100%;
  }
  .l-footer__copyright {
    order: 3;
  }
}


/* ---- button.css ---- */
.c-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 40px;
  padding: 8px 20px;
  border: 2px solid var(--color-logo-blue);
  border-radius: 50px;
  background-color: transparent;
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.c-btn-outline:hover {
  background-color: var(--color-logo-blue);
  color: #fff;
  opacity: 1;
}

.c-btn-outline--white {
  border-color: #fff;
  color: #fff;
}
.c-btn-outline--white:hover {
  background-color: #fff;
  color: var(--color-dark-blue);
}

.c-btn-outline--l {
  height: 50px;
  min-width: 240px;
  padding: 8px 20px;
  font-size: 1rem;
}
.c-btn-outline--external {
  gap: 6px;
}
.c-btn-outline__icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 767px) {
  .c-btn-outline {
    height: 44px;
    padding: 8px 32px;
    font-size: 1rem;
  }
  .c-btn-outline--l {
    min-width: auto;
    width: 100%;
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-btn-outline {
    min-width: 145px;
    transition: none;
  }
}


/* ---- cta.css ---- */
.c-cta {
  background: linear-gradient(242deg, #004098 9.8%, #2e5283 51.6%, #002d60 90.25%);
  padding-top: 72px;
}

.c-cta__items {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.c-cta__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 33.3%;
  padding: 0 40px 40px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.c-cta__item + .c-cta__item {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.c-cta__heading-en {
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.c-cta__heading-jp {
  margin-top: 4px;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.c-cta__suffix,
.c-cta__suffix-particle {
  display: none;
}

.c-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50px;
  background-color: transparent;
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.c-cta__btn:hover {
  background-color: #fff;
  color: var(--color-dark-blue);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .c-cta__btn {
    transition: none;
  }
}

.c-cta__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
}
.c-cta__tel-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-cta__tel-icon {
  width: 40px;
  height: 40px;
}
.c-cta__tel-number {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.8px;
  color: #fff;
  text-decoration: none;
}
.c-cta__tel-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.c-cta__tel-hours-range {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .c-cta {
    padding-top: 40px;
  }
  .c-cta__items {
    flex-direction: column;
    align-items: stretch;
  }
  .c-cta__item {
    gap: 24px;
    width: 100%;
    padding: 0 0 24px;
    margin-top: 24px;
  }
  .c-cta__item:first-child {
    margin-top: 0;
  }
  .c-cta__item + .c-cta__item {
    border-left: none;
  }
  .c-cta__heading-en {
    font-size: 1.5rem;
    letter-spacing: 0.48px;
  }
  .c-cta__heading-jp {
    font-size: 0.875rem;
  }
  .c-cta__suffix,
  .c-cta__suffix-particle {
    display: inline;
  }
  .c-cta__btn {
    height: 44px;
    font-size: 0.9375rem;
  }
  .c-cta__tel {
    flex-direction: column;
    gap: 4px;
    padding: 16px 0 24px;
  }
  .c-cta__tel-icon {
    width: 28px;
    height: 28px;
  }
  .c-cta__tel-number {
    font-size: 1.75rem;
  }
  .c-cta__tel-hours {
    font-size: 0.75rem;
  }
  .c-cta__tel-hours-range {
    font-size: 1rem;
  }
}


/* ---- follow-cta.css ---- */
.c-follow-cta {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 158px;
  padding: 16px 10px;
  border: 1px solid #fff;
  border-right: none;
  background: linear-gradient(262.5deg, #004098 9.8%, #2e5283 51.6%, #002d60 90.25%);
  transform: translate(0, -50%);
  transition: transform 0.3s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.c-follow-cta.is-collapsed {
  transform: translate(102px, -50%);
}
.c-follow-cta.is-collapsed:hover,
.c-follow-cta.is-collapsed:focus-within {
  transform: translate(0, -50%);
}

.c-follow-cta__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.c-follow-cta__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.c-follow-cta__label {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  line-height: 20px;
  white-space: nowrap;
}
.c-follow-cta__divider {
  display: none;
}
.c-totop {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 900;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e293b;
  border: 1px solid #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.c-totop__icon {
  width: 30px;
  height: 30px;
}
.c-totop.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-totop:hover,
.c-totop:focus-visible {
  opacity: 0.7;
}
.c-totop.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 767px) {
  .c-follow-cta {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: 52px;
    padding: 12px 10px;
    border: none;
    border-top: 1px solid #fff;
    background: linear-gradient(224.86deg, #004098 9.8%, #2e5283 51.6%, #002d60 90.25%);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .c-follow-cta.is-collapsed {
    transform: translateY(100%);
  }
  .c-follow-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
  }
  [data-nav="recruit"] .c-follow-cta {
    transform: none;
    opacity: 1;
  }
  .c-follow-cta__item {
    gap: 8px;
  }
  .c-follow-cta__icon {
    width: 24px;
    height: 24px;
  }
  .c-follow-cta__label {
    font-size: 0.75rem;
  }
  .c-follow-cta__divider {
    display: block;
    width: 1px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .c-totop {
    right: 16px;
    bottom: 68px;
    width: 44px;
    height: 44px;
  }
  .c-totop__icon {
    width: 22px;
    height: 22px;
  }
  main {
    padding-bottom: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c-follow-cta {
    transition: none;
  }
}
.c-follow-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* ---- top.css ---- */
.p-top-hero {
  position: relative;
  z-index: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: #224b85;
}
.p-top-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.p-top-hero__text {
  position: absolute;
  z-index: 1;
  left: 100px;
  bottom: 80px;
}
.p-top-hero__text.js-inview {
  transition-delay: 0.5s;
  transition-duration: 0.9s;
}
.p-top-hero__tagline img {
  display: block;
  width: calc(770 / 1600 * 100vw);
  max-width: 770px;
  height: auto;
}
.p-top-hero__subheading {
  margin-top: 28px;
  color: #fff;
}
.p-top-hero__toggle {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.p-top-hero__toggle:hover,
.p-top-hero__toggle:focus-visible {
  background: #fff;
}
.p-top-hero__toggle-icon,
.p-top-hero__toggle-icon::before,
.p-top-hero__toggle-icon::after {
  box-sizing: border-box;
}
.p-top-hero__toggle-icon {
  position: relative;
  display: block;
  width: 10px;
  height: 12px;
}
.p-top-hero__toggle-icon::before,
.p-top-hero__toggle-icon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 12px;
  background: var(--color-dark-blue);
  transition: transform 0.2s ease, width 0.2s ease, border-width 0.2s ease;
}
.p-top-hero__toggle-icon::before {
  left: 0;
}
.p-top-hero__toggle-icon::after {
  right: 0;
}
.p-top-hero__toggle.is-paused .p-top-hero__toggle-icon::before {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--color-dark-blue);
  background: none;
  left: 0;
}
.p-top-hero__toggle.is-paused .p-top-hero__toggle-icon::after {
  width: 0;
  height: 0;
  background: none;
}
.p-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #224b85 url("/assets/img/top/loading-bg-pc.webp") center center / cover no-repeat;
}
.p-loading__logo img {
  display: block;
  width: 380px;
  height: auto;
  opacity: 0;
}
.p-loading.is-ready .p-loading__logo img {
  animation: p-loading-logo-in 0.4s ease forwards;
}
@keyframes p-loading-logo-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.p-loading.is-loaded {
  animation: p-loading-out 0.5s ease forwards;
  pointer-events: none;
}
@keyframes p-loading-out {
  to {
    opacity: 0;
  }
}
.p-loading.is-hidden {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .p-loading__logo img {
    animation: none;
    opacity: 1;
  }
  .p-loading.is-loaded {
    animation: none;
    opacity: 0;
  }
}
.p-top-section {
  padding: 120px 0;
}
.p-top-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.p-top-section__heading {
  text-align: center;
}
.p-top-section__lead {
  margin-top: 40px;
  text-align: center;
}
.p-top-decor-wrap {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-image: url("/assets/img/top/decor-top-bg-left-pc.webp"), url("/assets/img/top/decor-top-bg-right-pc.webp");
  background-position: left top, right top;
  background-repeat: repeat-y;
  background-size: 349px auto, 465px auto;
}
@media (max-width: 767px) {
  .p-top-decor-wrap {
    background-image: url("/assets/img/top/decor-top-bg-left-sp.webp"), url("/assets/img/top/decor-top-bg-right-sp.webp");
    background-size: 85px auto, 81px auto;
  }
}
.p-top-strengths {
  padding: 80px 0 120px;
  overflow-x: clip;
}
.p-top-strengths__row {
  display: flex;
  align-items: center;
  gap: min(7.5%, 120px);
  max-width: 1600px;
  margin: 0 auto;
}
.p-top-strengths__image {
  flex: 37 1 0%;
  min-width: 0;
  max-width: 740px;
  aspect-ratio: 740 / 929;
  max-height: 929px;
  overflow: hidden;
}
.p-top-strengths__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.p-top-strengths__content {
  flex: 27 1 0%;
  min-width: 0;
  max-width: 540px;
  margin-right: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
}
.p-top-strengths__lead {
  margin-top: 24px;
}
.p-top-strengths__text {
  margin-top: 24px;
}
.p-top-strengths__btn {
  margin-top: 40px;
}
.p-top-service {
  padding: 80px 0 160px;
}
.p-top-service__row {
  display: flex;
  align-items: center;
  gap: min(7.5%, 120px);
  max-width: 1600px;
  margin: 0 auto;
}
.p-top-service__content {
  flex: 27 1 0%;
  min-width: 0;
  max-width: 540px;
  margin-left: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
  margin-right: auto;
}
.p-top-service__lead {
  margin-top: 40px;
}
.p-top-service__desc {
  font-size: 1.125rem;
  line-height: 1.8;
}
.p-top-service__list {
  margin-top: 16px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
.p-top-service__btn {
  margin-top: 40px;
}
.p-top-service__image {
  flex: 37 1 0%;
  min-width: 0;
  max-width: 740px;
  aspect-ratio: 4 / 3;
  margin-left: auto;
  overflow: hidden;
}
.p-top-service__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-product {
  background: var(--color-bg-pale);
  padding: 160px 0 120px;
  overflow-x: clip;
}
.p-top-product__lead {
  margin-top: 40px;
}
.p-top-product__list {
  margin-top: 60px;
}
.p-top-product__row {
  display: flex;
  align-items: center;
  gap: min(7.5%, 120px);
  padding: 30px 0;
  max-width: 1600px;
  margin: 0 auto;
}
.p-top-product__row--end .p-top-product__image {
  margin-left: auto;
}
.p-top-product__image {
  flex: 9 1 0%;
  min-width: 0;
  max-width: 720px;
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: var(--color-bg-placeholder);
}
.p-top-product__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-product__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.1;
  opacity: 0.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.p-top-product__content {
  flex: 7 1 0%;
  min-width: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
}
@media (min-width: 1600px) {
  .p-top-product__content {
    margin-left: 0;
  }
}
.p-top-product__row--end .p-top-product__content {
  margin-left: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
  margin-right: auto;
}
.p-top-product__title {
  margin-bottom: 24px;
}
.p-top-product__desc {
  margin: 0;
}
.p-top-product__btn {
  margin-top: 40px;
}
.p-top-product__more {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.p-top-factory {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: var(--color-bg-light);
  padding: 120px 0;
}
.p-top-decor-ring {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: -20px;
  top: 27px;
  transform: rotate(-90deg) scaleY(-1);
}
.p-top-decor-ring img {
  display: block;
  width: 99.314px;
  max-width: none;
  height: 198.629px;
}
.p-top-decor-circle {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: -148px;
  top: 503px;
  width: 634px;
  max-width: none;
  height: 634px;
}
.p-top-decor-drum {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  max-width: none;
  right: -28px;
  top: 235.99px;
  width: 170px;
  height: 278px;
}
.p-top-factory__lead {
  margin-top: 16px;
}
.p-top-factory__marquee {
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
}
.p-top-factory__marquee:hover .p-top-factory__track,
.p-top-factory__marquee:focus-within .p-top-factory__track {
  animation-play-state: paused;
}
.p-top-factory__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: p-top-factory-scroll 30s linear infinite;
}
@keyframes p-top-factory-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-top-factory__item {
  flex: 0 0 auto;
  width: 380px;
  height: 285px;
  overflow: hidden;
  background: var(--color-bg-placeholder);
}
.p-top-factory__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-factory__btn {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media (prefers-reduced-motion: reduce) {
  .p-top-factory__track {
    animation: none;
  }
}
.p-top-company {
  background: var(--color-bg-pale);
}
.p-top-company__row {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 40px;
}
.p-top-company__image {
  flex: 9 1 0%;
  min-width: 0;
  max-width: 540px;
  overflow: hidden;
}
.p-top-company__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
}
.p-top-company__content {
  position: relative;
  z-index: 0;
  overflow: hidden;
  flex: 11 1 0%;
  min-width: 0;
  max-width: 660px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 50px;
  background: linear-gradient(260deg, #004098 9.8%, #2e5283 51.6%, #002d60 90.25%);
  color: #fff;
}
.p-top-company__pattern {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.p-top-company__text {
  margin-top: 24px;
}
.p-top-recruit {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #000;
}
.p-top-recruit__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-recruit__decor-ring,
.p-top-recruit__decor-circle {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-top-recruit__decor-ring {
  left: -216px;
  top: -218px;
  width: 416px;
  height: 416px;
}
.p-top-recruit__decor-circle {
  right: -559px;
  top: 168px;
  width: 1179px;
  height: 1179px;
}
.p-top-recruit__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.1) 60%);
}
.p-top-recruit__content {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  color: #fff;
}
.p-top-recruit__lead {
  margin-top: 40px;
}
.p-top-recruit__catch {
  margin: 0;
}
.p-top-recruit__text {
  margin-top: 12px;
}
.p-top-recruit__btn {
  margin-top: 40px;
}
.p-top-news__row {
  display: flex;
  gap: 140px;
  align-items: flex-start;
}
.p-top-news__heading {
  flex: 0 0 auto;
}
.p-top-news__list {
  flex: 1 1 auto;
  min-width: 0;
  list-style: none;
}
.p-top-news__item {
  border-top: 1px solid var(--color-line);
}
.p-top-news__item:last-child {
  border-bottom: 1px solid var(--color-line);
}
.p-top-news__link {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  color: var(--color-text);
  text-decoration: none;
}
.p-top-news__date {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.p-top-news__title {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-top-news__link:hover .p-top-news__title {
  text-decoration: none;
}
.p-top-news__link.is-plain .p-top-news__title {
  text-decoration: none;
}
.p-top-news__btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-top-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 480px;
  }
  .p-top-hero__text {
    left: 24px;
    bottom: 56px;
    max-width: calc(100% - 48px);
  }
  .p-top-hero__tagline img {
    width: calc(325 / 375 * 100vw);
  }
  .p-top-hero__toggle {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }

  .p-loading {
    background-image: url("/assets/img/top/loading-bg-sp.webp");
  }
  .p-loading__logo img {
    width: 220px;
  }

  .p-top-section {
    padding: 60px 0;
  }
  .p-top-section__inner {
    padding: 0 20px;
  }
  .p-top-section__lead {
    margin-top: 24px;
  }

  .p-top-strengths {
    padding: 40px 0 60px;
  }
  .p-top-strengths__row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .p-top-strengths__image {
    aspect-ratio: 375 / 236;
    max-height: none;
    margin: 0 20px;
    width: calc(100% - 40px);
  }
  .p-top-strengths__content {
    width: auto;
    margin: 24px 20px 0;
    flex: none;
  }
  .p-top-strengths__lead {
    margin-top: 16px;
  }
  .p-top-strengths__text {
    margin-top: 16px;
  }
  .p-top-strengths__btn {
    margin-top: 24px;
  }

  .p-top-service {
    padding: 24px 0 40px;
  }
  .p-top-service__row {
    display: flex;
    flex-direction: column;
    max-width: none;
    margin: 0;
  }
  .p-top-service__content {
    flex: none;
    order: 2;
    max-width: none;
    margin: 24px 20px 0;
  }
  .p-top-service__lead {
    margin-top: 24px;
  }
  .p-top-service__desc {
    font-size: 0.875rem;
    line-height: 2;
  }
  .p-top-service__list {
    font-size: 0.875rem;
  }
  .p-top-service__btn {
    margin-top: 24px;
  }
  .p-top-service__image {
    flex: none;
    order: 1;
    max-width: none;
    aspect-ratio: 315 / 236;
    max-height: none;
    margin: 0 20px;
    width: calc(100% - 40px);
  }

  .p-top-product {
    padding: 60px 0;
  }
  .p-top-product__lead {
    margin-top: 24px;
  }
  .p-top-product__list {
    margin-top: 40px;
    padding: 0 20px;
  }
  .p-top-product__row,
  .p-top-product__row--end {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    padding: 20px 0;
  }
  .p-top-product__image {
    width: 100%;
    flex-basis: auto;
    height: auto;
    aspect-ratio: 315 / 236;
  }
  .p-top-product__tag {
    display: none;
  }
  .p-top-product__content {
    width: auto;
    flex-basis: auto;
    margin-right: 0;
    margin-left: 0;
  }
  .p-top-product__row--end .p-top-product__image {
    order: 1;
  }
  .p-top-product__row--end .p-top-product__content {
    order: 2;
    margin-right: 0;
    margin-left: 0;
  }
  .p-top-product__title {
    margin-bottom: 12px;
    font-size: 1.125rem;
  }
  .p-top-product__btn {
    margin-top: 24px;
  }
  .p-top-product__more {
    margin-top: 40px;
  }

  .p-top-factory {
    padding: 60px 0;
  }
  .p-top-factory__lead {
    margin-top: 12px;
  }
  .p-top-factory__marquee {
    margin-top: 32px;
  }
  .p-top-factory__item {
    width: 215px;
    height: 161px;
  }
  .p-top-factory__btn {
    margin-top: 40px;
  }

  .p-top-company__row {
    flex-direction: column;
    padding: 60px 0;
  }
  .p-top-company__image {
    width: auto;
    max-width: none;
    height: 315px;
    margin: 0 30px;
    flex-basis: auto;
  }
  .p-top-company__content {
    width: auto;
    max-width: none;
    flex-basis: auto;
    min-height: auto;
    margin: 0 30px;
    padding: 40px 30px;
    gap: 24px;
  }
  .p-top-company__text {
    margin-top: 16px;
  }

  .p-top-recruit {
    height: 557px;
  }
  .p-top-recruit__bg {
    object-position: 50% 0%;
  }
  .p-top-recruit__decor-ring {
    left: -112px;
    top: -114px;
    width: 208px;
    height: 208px;
  }
  .p-top-recruit__decor-circle {
    right: -369.25px;
    top: 332.75px;
    width: 589.5px;
    height: 589.5px;
  }
  .p-top-recruit__content {
    left: 20px;
    right: 20px;
    max-width: none;
  }
  .p-top-recruit__lead {
    margin-top: 24px;
  }
  .p-top-recruit__text {
    margin-top: 8px;
  }
  .p-top-recruit__btn {
    margin-top: 24px;
  }

  .p-top-news__row {
    flex-direction: column;
    gap: 24px;
  }
  .p-top-news__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0;
  }
  .p-top-news__btn {
    margin-top: 24px;
  }
}


/* ---- inner-page.css ---- */
.c-page-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--color-bg-light);
}
.c-page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-page-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(89.28deg, rgba(5, 5, 5, 0.5) 32.059%, rgba(0, 0, 0, 0) 86.425%);
}
.c-page-hero__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.c-page-hero__text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  color: #fff;
  transform: translateY(-50%);
}
.c-page-hero__title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}
.c-page-hero__subtitle {
  margin-top: 8px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .c-page-hero__gradient {
    background: linear-gradient(23.86deg, rgba(5, 5, 5, 0.3) 29.799%, rgba(0, 0, 0, 0) 71.45%);
  }
  .c-page-hero__text {
    top: auto;
    bottom: 45px;
    transform: none;
  }
  .c-page-hero__title {
    font-size: 2.25rem;
  }
  .c-page-hero__subtitle {
    margin-top: 4px;
    font-size: 0.875rem;
  }
}
.c-page-hero--flat {
  background: var(--color-line);
}
.c-page-hero--flat .c-page-hero__bg {
  object-fit: contain;
}
.c-page-hero--flat .c-page-hero__text {
  color: var(--color-dark-blue);
}
.c-page-hero--plain {
  background: var(--color-line);
}
.c-page-hero--plain .c-page-hero__text {
  color: var(--color-dark-blue);
}
@media (max-width: 767px) {
  .c-page-hero--plain .c-page-hero__text {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.c-page-hero__decor--ring {
  left: -142px;
  top: -157px;
  width: 334px;
  height: 334px;
}
.c-page-hero__decor--circle {
  left: -276px;
  top: 82px;
  width: 634px;
  height: 634px;
}
.c-page-hero__decor--arc {
  right: 0;
  bottom: 16px;
  width: 80px;
  height: 160px;
}
.c-page-hero__decor--arc2 {
  right: -0.7px;
  top: 230px;
  width: 220.794px;
  height: 441.589px;
}
@media (max-width: 767px) {
  .c-page-hero__decor--ring {
    left: -182px;
  }
  .c-page-hero__decor--circle {
    left: -316px;
  }
}
.c-page-bg-wrap {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-image: url("/assets/img/common/decor-page-bg-left-pc.webp"), url("/assets/img/common/decor-page-bg-right-pc.webp");
  background-position: left top, right top;
  background-repeat: repeat-y;
  background-size: 376px auto, 364px auto;
}
@media (max-width: 767px) {
  .c-page-bg-wrap {
    background-image: url("/assets/img/common/decor-page-bg-left-sp.webp"), url("/assets/img/common/decor-page-bg-right-sp.webp");
    background-size: 144px auto, 70px auto;
  }
}
.c-page-intro {
  padding-top: 80px;
  padding-bottom: 20px;
  text-align: center;
}
.c-page-intro--left {
  text-align: left;
}

@media (max-width: 767px) {
  .c-page-intro {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.c-page-anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.c-page-anchor--below-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}
.c-page-anchor__link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  line-height: 2;
  text-decoration: none;
}
.c-page-anchor__link img {
  width: 23px;
  height: 23px;
}

@media (max-width: 767px) {
  .c-page-anchor,
  .c-page-anchor--below-hero {
    justify-content: left;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.c-breadcrumbs {
  background: var(--color-bg-header);
  border-bottom: 1px solid var(--color-line);
}
.c-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 60px;
}
.c-breadcrumbs__link {
  color: #515459;
  font-size: 0.75rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.c-breadcrumbs__link:hover {
  text-decoration: none;
}
.c-breadcrumbs__icon {
  width: 12px;
  height: 12px;
  transform: rotate(-90deg);
}
.c-breadcrumbs__current {
  color: var(--color-text);
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-breadcrumbs {
    display: none;
  }
}
.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
}
.c-pager__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  color: var(--color-text);
  font-family: var(--font-en);
  font-size: 1rem;
  text-decoration: none;
}
.c-pager__item.is-current {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.c-pager__item.is-disabled {
  color: var(--color-line);
  pointer-events: none;
}
.c-pager__item.is-ellipsis {
  pointer-events: none;
}

@media (max-width: 767px) {
  .c-pager {
    gap: 10px;
    margin-top: 32px;
  }
}
.c-tabs__list {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
}
.c-tabs__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 240px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
}
.c-tabs__tab-bar {
  width: 100%;
  height: 2px;
  background: var(--color-bg-placeholder);
}
.c-tabs__tab.is-active .c-tabs__tab-bar {
  background: var(--color-dark-blue);
}
.c-tabs__panel {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .c-tabs__tab {
    flex: 1 1 0%;
    min-width: 0;
    gap: 12px;
    font-size: 0.9375rem;
    justify-content: space-between;
  }
  .c-tabs__panel {
    margin-top: 30px;
  }
}
.c-table {
  display: flex;
  flex-direction: column;
}
.c-table__row {
  display: flex;
  gap: 60px;
  padding: 20px 0;
  border-top: 1px solid #dedede;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.c-table__row:last-child {
  border-bottom: 1px solid #dedede;
}
.c-table__label {
  flex: 1 1 0%;
  min-width: 0;
  font-family: var(--font-jp);
  font-weight: 500;
}
.c-table__value {
  flex: 1 1 0%;
  min-width: 0;
  font-family: var(--font-jp);
  font-weight: 400;
}

@media (max-width: 767px) {
  .c-table {
    overflow-x: auto;
  }
  .c-table__row {
    gap: 24px;
    padding: 16px 0;
    min-width: 600px;
    font-size: 0.875rem;
  }
  .c-table__label {
    flex: 0 0 120px;
  }
  .c-table__value {
    flex: 0 0 440px;
    white-space: nowrap;
  }
}
.c-table--label-narrow .c-table__label {
  flex: 0 0 200px;
}
.c-table--label-narrow .c-table__value {
  flex: 1 1 0%;
}
@media (max-width: 767px) {
  .c-table--stack {
    overflow-x: visible;
  }
  .c-table--stack .c-table__row {
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .c-table--stack .c-table__label {
    flex: none;
    width: 100%;
  }
  .c-table--stack .c-table__value {
    flex: none;
    width: 100%;
    white-space: normal;
  }
}
.c-data-table-wrap {
  width: 100%;
}
.c-data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-data-table th,
.c-data-table td {
  padding: 20px 16px;
  border: 1px solid var(--color-line);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
  vertical-align: middle;
  word-break: break-all;
}
.c-data-table thead th {
  background: #595959;
  color: #fff;
  font-weight: 700;
  border-color: #fff;
}
.c-data-table tbody th,
.c-data-table tbody td {
  background-color: #fff;
  color: var(--color-text);
  font-weight: 400;
}
.c-data-table tbody th {
  background-color: #EDEDED;
  color: var(--color-text);
}
@media (max-width: 767px) {
  .c-data-table-wrap {
    overflow-x: auto;
  }
  .c-data-table {
    min-width: 700px;
  }
  .c-data-table th,
  .c-data-table td {
    padding: 14px 12px;
    font-size: 0.875rem;
  }
}
.c-placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #EBF1F6;
  color: var(--color-text-gray);
  font-family: var(--font-en);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.u-bg-pale .c-placeholder-img {
  background-color: #ffffff;
}
.c-subheading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .c-subheading {
    font-size: 1.5rem;
  }
}
.c-media-row {
  padding: 60px 0;
}
.c-media-row--list {
  padding: 40px 0;
}
.c-media-row--list:first-of-type {
  padding-top: 60px;
}
.c-media-row--list:last-of-type {
  padding-bottom: 120px;
}
.c-media-row__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.67%;
}
.c-media-row__image {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 560px;
  aspect-ratio: 560 / 420;
}
.c-media-row__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-media-row__content {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 560px;
}
.c-media-row__model {
  margin-top: 8px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}
.c-media-row__body {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .c-media-row {
    padding: 40px 0;
  }
  .c-media-row--list:first-of-type {
    padding-top: 32px;
  }
  .c-media-row--list:last-of-type {
    padding-bottom: 60px;
  }
  .c-media-row__inner {
    flex-direction: column;
    gap: 24px;
  }
  .c-media-row__image,
  .c-media-row__content {
    max-width: none;
    width: 100%;
  }
  .c-media-row__content .c-heading-ja--28 {
    font-size: 1.5rem;
  }
  .c-media-row__model {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .c-media-row__body {
    margin-top: 12px;
    line-height: 1.6;
  }
}
.c-related-products {
  padding: 120px 0;
}
.c-related-products__heading {
  margin-bottom: 40px;
}
.c-related-products__list {
  display: flex;
  gap: 90px;
}
.c-related-products__item {
  flex: 1 1 0%;
  min-width: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.c-related-products__img {
  width: 100%;
  aspect-ratio: 340 / 255;
  background-color: #fff;
  margin-bottom: 24px;
}
.c-related-products__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-related-products__name {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}
.c-related-products__desc {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .c-related-products {
    padding: 60px 0;
  }
  .c-related-products__heading {
    margin-bottom: 24px;
  }
  .c-related-products__list {
    flex-direction: column;
    gap: 32px;
  }
}


/* ---- form.css ---- */
.c-form-row {
  margin-bottom: 32px;
}
.c-form-label {
  display: block;
  margin-bottom: 16px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.6;
}
.c-form-required {
  margin-left: 8px;
  color: #e4392c;
  font-size: 0.8125rem;
  font-weight: 700;
}
.c-form-error {
  display: block;
  margin-top: 8px;
  color: #e4392c;
  font-size: 0.875rem;
  line-height: 1.6;
}
.c-form-error--center {
  text-align: center;
}

.c-form-input,
.c-form-textarea,
.c-form-select {
  display: block;
  width: 100%;
  height: 63px;
  padding: 0 24px;
  border: 1px solid var(--color-line);
  border-radius: 15px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
}
.c-form-input::placeholder,
.c-form-textarea::placeholder {
  color: var(--color-text-gray);
}
.c-form-textarea {
  height: auto;
  min-height: 183px;
  padding: 20px 24px;
  resize: vertical;
  line-height: 1.75;
}
.c-form-input.is-error,
.c-form-textarea.is-error,
.c-form-select.is-error {
  border-color: #e4392c;
}

.c-form-select {
  appearance: none;
  padding-right: 48px;
}
.c-form-select-wrap {
  position: relative;
}
.c-form-select-wrap__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  pointer-events: none;
}
.c-form-select:invalid {
  color: var(--color-text-gray);
}

.c-form-input--zip {
  max-width: 240px;
}
.c-form-input--tel {
  max-width: 430px;
}
.c-form-select-wrap--pref {
  max-width: 405px;
}

.c-form-address-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-form-date-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.c-form-date-group__unit {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
}
.c-form-input--year {
  max-width: 140px;
}
.c-form-input--month,
.c-form-input--day {
  max-width: 100px;
}

.c-form-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 24px;
}
.c-form-agree input[type="checkbox"] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  accent-color: var(--color-logo-blue);
}
.c-form-agree label {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
}
.c-form-agree a {
  color: var(--color-logo-blue);
  text-decoration: underline;
}

.c-form-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.c-form-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .c-form-row {
    margin-bottom: 24px;
  }
  .c-form-label {
    margin-bottom: 12px;
    font-size: 1rem;
  }
  .c-form-input,
  .c-form-textarea,
  .c-form-select {
    height: 56px;
    padding: 0 16px;
    font-size: 0.9375rem;
  }
  .c-form-textarea {
    height: auto;
    min-height: 160px;
    padding: 16px;
  }
  .c-form-input--zip,
  .c-form-input--tel,
  .c-form-select-wrap--pref {
    max-width: none;
  }
  .c-form-date-group {
    gap: 8px;
  }
  .c-form-input--year {
    max-width: 96px;
  }
  .c-form-input--month,
  .c-form-input--day {
    max-width: 72px;
  }
  .c-form-agree {
    align-items: flex-start;
    text-align: left;
  }
}
.c-form-page {
  padding-top: 80px;
  padding-bottom: 120px;
}

@media (max-width: 767px) {
  .c-form-page {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.c-form-confirm__lead {
  margin-bottom: 40px;
}
.c-form-confirm__row {
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
}
.c-form-confirm__row:last-child {
  border-bottom: 1px solid var(--color-line);
}
.c-form-confirm__label {
  margin-bottom: 8px;
  color: var(--color-text-gray);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 0.875rem;
}
.c-form-confirm__value {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
}
.c-form-confirm__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .c-form-confirm__actions {
    flex-direction: column;
    align-items: center;
  }
}
.c-form-thanks {
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
}
.c-form-thanks__text {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .c-form-thanks {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


/* ---- strengths.css ---- */
@media (max-width: 767px) {
  .c-page-hero__decor--ring {
    top: -207px;
  }
  .c-page-hero__decor--circle {
    left: -276px;
    top: 252px;
  }
}
.p-strengths-section + .p-strengths-section {
  margin-top: 120px;
}
.p-strengths-section__number {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-dark-blue);
  text-transform: uppercase;
}
.p-strengths-section__title {
  margin-top: 24px;
}
.p-strengths-section__body {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-strengths-section + .p-strengths-section {
    margin-top: 64px;
  }
}
.p-strengths-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  color: #fff;
  white-space: nowrap;
  z-index: 1;
}
.p-strengths-stat__label {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.25rem;
}
.p-strengths-stat__divider {
  width: 1px;
  height: 50px;
  background: var(--color-line);
}
.p-strengths-stat__value {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.p-strengths-stat__number {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 4rem;
  line-height: 0.7;
}
.p-strengths-stat__unit {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .p-strengths-stat {
    position: absolute;
    top: 0;
    padding: 14px 12px;
    gap: 8px;
  }
  .p-strengths-stat__label {
    font-size: 0.75rem;
  }
  .p-strengths-stat__divider {
    height: 22px;
  }
  .p-strengths-stat__number {
    font-size: 2rem;
  }
  .p-strengths-stat__unit {
    font-size: 0.5625rem;
  }
}
.p-strengths-carousel-wrap {
  position: relative;
  margin-top: 90px;
}
.p-strengths-carousel {
  width: 100%;
  overflow: hidden;
}
.p-strengths-carousel:hover .p-strengths-carousel__track,
.p-strengths-carousel:focus-within .p-strengths-carousel__track {
  animation-play-state: paused;
}
.p-strengths-carousel__track {
  display: flex;
  align-items: center;
  gap: 5px;
  width: max-content;
  animation: p-strengths-carousel-scroll 40s linear infinite;
}
@keyframes p-strengths-carousel-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-strengths-carousel__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 316px;
  height: 400px;
  overflow: hidden;
  background: var(--color-bg-placeholder);
}
.p-strengths-carousel__item img {
  display: block;
  object-fit: cover;
}
.p-strengths-stat--01 {
  top: -50px;
  right: 40px;
  background: linear-gradient(246.98deg, #004098 9.7962%, #2e5283 51.601%, #002d60 90.251%);
}

@media (prefers-reduced-motion: reduce) {
  .p-strengths-carousel__track {
    animation: none;
  }
}

@media (max-width: 767px) {
  .p-strengths-carousel-wrap {
    margin-top: 30px;
  }
  .p-strengths-carousel__track {
    gap: 4px;
  }
  .p-strengths-carousel__item {
    width: 218px;
    height: 276px;
  }
  .p-strengths-stat--01 {
    top: -25px;
    right: 19.811px;
  }
}
.p-strengths-row {
  display: flex;
  align-items: center;
  gap: min(10%, 160px);
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.p-strengths-row__image {
  flex: 18 1 0%;
  min-width: 0;
  max-width: 720px;
  aspect-ratio: 720 / 576;
}
.p-strengths-row--end .p-strengths-row__image {
  margin-left: auto;
}
.p-strengths-row__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-strengths-row__content {
  flex: 13 1 0%;
  min-width: 0;
  max-width: 520px;
}
.p-strengths-row--end .p-strengths-row__content {
  margin-left: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
  margin-right: auto;
}
.p-strengths-row:not(.p-strengths-row--end) .p-strengths-row__content {
  margin-left: auto;
  margin-right: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
}
@media (min-width: 1600px) {
  .p-strengths-row:not(.p-strengths-row--end) .p-strengths-row__content {
    margin-left: 0;
  }
}
.p-strengths-row__number {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  color: var(--color-dark-blue);
  text-transform: uppercase;
}
.p-strengths-row__title {
  margin-top: 24px;
}
.p-strengths-row__body {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-strengths-row,
  .p-strengths-row--end {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .p-strengths-row__image {
    max-width: none;
    width: calc(100% - 30px);
    margin-left: 0;
    margin-right: 30px;
  }
  .p-strengths-row--end .p-strengths-row__image {
    margin-left: 30px;
    margin-right: 0;
  }
  .p-strengths-row__content {
    max-width: none;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .p-strengths-row:not(.p-strengths-row--end) .p-strengths-row__image {
    order: 2;
  }
  .p-strengths-row:not(.p-strengths-row--end) .p-strengths-row__content {
    order: 1;
  }
}
.p-strengths-parallax-wrap {
  position: relative;
  margin-top: 90px;
}
.c-parallax {
  position: relative;
  width: 100%;
  height: 576px;
  overflow: hidden;
}
.c-parallax__img {
  display: block;
  position: absolute;
  width: 120.125vw;
  max-width: none;
  aspect-ratio: 1922 / 1281;
  right: -13.5vw;
  bottom: calc((576px - 80.0625vw) / 4);
  object-fit: cover;
}
.p-strengths-stat--05 {
  top: -50px;
  right: 40px;
  background: linear-gradient(250.87deg, #004098 9.7962%, #2e5283 51.601%, #002d60 90.251%);
}
.p-strengths-section05-sp-img {
  display: block;
  width: 100%;
  height: 301.89px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-strengths-parallax-wrap {
    margin-top: 30px;
  }
  .p-strengths-stat--05 {
    top: -25.89px;
    right: 29.811px;
  }
}


/* ---- business.css ---- */
#development,
#equipment,
#odm,
#oem {
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}
@media (max-width: 767px) {
  #development,
  #equipment,
  #odm,
  #oem {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-business-heading {
  padding: 40px 0 60px;
}
.p-business-heading--gray {
  padding: 120px 0 60px;
}
.p-business-heading__body {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-business-heading {
    padding: 24px 0 40px;
  }
  .p-business-heading--gray {
    padding: 60px 0 40px;
  }
  .p-business-heading__body {
    margin-top: 12px;
  }
}
.p-business-row {
  display: flex;
  align-items: center;
  gap: min(10%, 160px);
  width: 100%;
  padding: 60px 0;
  max-width: 1600px;
  margin: 0 auto;
}
.p-business-row__image {
  flex: 18 1 0%;
  min-width: 0;
  max-width: 720px;
  aspect-ratio: 720 / 540;
}
.p-business-row--end .p-business-row__image {
  margin-left: auto;
}
.p-business-row__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-business-row__content {
  flex: 13 1 0%;
  min-width: 0;
  max-width: 520px;
}
.p-business-row:not(.p-business-row--end) .p-business-row__content {
  margin-left: auto;
  margin-right: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
}
@media (min-width: 1600px) {
  .p-business-row:not(.p-business-row--end) .p-business-row__content {
    margin-left: 0;
  }
}
.p-business-row--end .p-business-row__content {
  margin-left: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
  margin-right: auto;
}
.p-business-row__lead {
  margin-top: 24px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.p-business-row__body {
  margin-top: 24px;
}
.p-business-row__btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-business-row {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 40px 0;
  }
  .p-business-row__image {
    max-width: none;
    width: calc(100% - 30px);
    margin-left: 0;
    margin-right: 30px;
    aspect-ratio: 345 / 258.75;
  }
  .p-business-row--end .p-business-row__image {
    margin-left: 30px;
    margin-right: 0;
  }
  .p-business-row__content {
    max-width: none;
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .p-business-row__lead {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }
  .p-business-row__body {
    margin-top: 12px;
  }
  .p-business-row__btn {
    margin-top: 20px;
  }
  .p-business-row--end .p-business-row__image {
    order: 1;
  }
  .p-business-row--end .p-business-row__content {
    order: 2;
  }
}
.p-business-feature {
  padding: 100px 0;
}
.p-business-feature__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1200 / 520;
}
.p-business-feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-business-feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(89.7deg, rgba(0, 0, 0, 0) 14.785%, rgba(0, 0, 0, 0.18) 60.63%);
}
.p-business-feature__content {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 45%;
  color: #fff;
}
.p-business-feature__title {
  color: #fff;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-business-feature__body {
  margin-top: 12px;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-business-feature__btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-business-feature {
    padding: 0;
  }
  .p-business-feature__media {
    aspect-ratio: 375 / 660;
  }
  .p-business-feature__content {
    top: calc(50% + 16.74%);
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84%;
  }
  .p-business-feature__title {
    font-size: 1.25rem;
    line-height: 1.75;
  }
  .p-business-feature__body {
    font-size: 0.75rem;
    line-height: 1.7;
    letter-spacing: normal;
  }
  .p-business-feature__btn-group {
    gap: 12px;
    margin-top: 12px;
  }
}
.p-business-cards {
  padding: 60px 0 120px;
}
.p-business-cards__heading {
  margin-bottom: 24px;
}
.p-business-cards__list {
  display: flex;
  gap: 30px;
}
.p-business-cards__item {
  flex: 1 1 0%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background-color: #fff;
}
.p-business-cards__icon {
  width: 60px;
  height: 60px;
}
.p-business-cards__title {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
.p-business-cards__body {
  align-self: stretch;
}

@media (max-width: 767px) {
  .p-business-cards {
    padding: 40px 0 80px;
  }
  .p-business-cards__list {
    flex-direction: column;
    gap: 24px;
  }
}
.p-business-split {
  padding: 120px 0 60px;
}
.p-business-split--end {
  padding: 60px 0 120px;
}
.p-business-split__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.67%;
}
.p-business-split__image {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 560px;
  aspect-ratio: 560 / 420;
  background-color: #EBF1F6;
  overflow: hidden;
}
.p-business-split__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-business-split__content {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 560px;
}
.p-business-split__title {
  margin-top: 24px;
}
.p-business-split__body {
  margin-top: 24px;
}
.p-business-split__btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-business-split {
    padding: 60px 0 0;
  }
  .p-business-split--end {
    padding: 60px 0 60px;
  }
  .p-business-split__row {
    flex-direction: column;
    gap: 20px;
  }
  .p-business-split__image,
  .p-business-split__content {
    max-width: none;
    width: 100%;
  }
  .p-business-split__title {
    margin-top: 20px;
  }
  .p-business-split__body {
    margin-top: 20px;
  }
  .p-business-split__btn {
    margin-top: 20px;
  }
  .p-business-split--end .p-business-split__image {
    order: 1;
  }
  .p-business-split--end .p-business-split__content {
    order: 2;
  }
}


/* ---- company.css ---- */
.p-company-hero {
  height: 900px;
}
.p-company-hero .c-page-hero__gradient {
  background: linear-gradient(103.19deg, rgba(5, 5, 5, 0.3) 20.345%, rgba(0, 0, 0, 0) 93.745%);
}
.p-company-hero__decor--ring {
  top: -179px;
  right: -137.31px;
  width: 400.8px;
  height: 400.8px;
}
.p-company-hero__decor--arc {
  bottom: -179.24px;
  left: 0px;
  width: 179.119px;
  height: 358.238px;
  transform: rotate(180deg);
}
.p-company-hero__decor--circle {
  top: 151px;
  right: -598.805px;
  width: 1257.805px;
  height: 1257.805px;
}
.p-company-hero .c-page-hero__text {
  top: calc(50% - 120.5px);
}
.p-company-hero__lead {
  margin-top: 30px;
  color: #fff;
}
.p-company-hero__catch {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.6;
}
.p-company-hero__desc {
  margin-top: 10px;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .p-company-hero {
    height: 667px;
  }
  .p-company-hero .c-page-hero__gradient {
    background: linear-gradient(134.19deg, rgba(5, 5, 5, 0.3) 45.246%, rgba(0, 0, 0, 0) 103.49%);
  }
  .p-company-hero__decor--ring {
    top: -109.7px;
    right: -94.86px;
    width: 200.4px;
    height: 200.4px;
  }
  .p-company-hero__decor--arc {
    bottom: -89.12px;
    left: -2.8px;
    width: 89.559px;
    height: 179.119px;
  }
  .p-company-hero__decor--circle {
    top: 288.4px;
    left: 77.7px;
    width: 628.902px;
    height: 628.902px;
  }
  .p-company-hero .c-page-hero__text {
    top: calc(50% - 121px);
    bottom: auto;
    transform: translateY(-50%);
  }
  .p-company-hero__lead {
    margin-top: 20px;
  }
  .p-company-hero__desc {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.p-company-stats {
  background-color: var(--color-bg-placeholder);
  padding: 60px 0;
}
.p-company-stats__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.p-company-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 366px;
}
.p-company-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  margin-bottom: 20px;
}
.p-company-stats__icon img {
  display: block;
  height: 60px;
  width: auto;
}
.p-company-stats__label {
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-align: center;
}
.p-company-stats__number {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--color-dark-blue);
  text-align: center;
  text-transform: uppercase;
}
.p-company-stats__unit {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.375rem;
  margin-left: 4px;
}
.p-company-stats__divider {
  width: 1px;
  align-self: stretch;
  background-color: #aaa;
}

@media (max-width: 767px) {
  .p-company-stats {
    padding: 20px 0;
  }
  .p-company-stats__row {
    flex-direction: column;
    gap: 20px;
    width: 315px;
  }
  .p-company-stats__item {
    width: 100%;
  }
  .p-company-stats__divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .p-company-stats__label {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #20282d;
  }
  .p-company-stats__number {
    font-size: 3rem;
  }
  .p-company-stats__unit {
    font-size: 1.25rem;
  }
}
.p-company-message,
.p-company-profile {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.p-company-message {
  background-color: var(--color-bg-header);
}
.p-company-profile {
  background-color: var(--color-white);
}
.p-company-message__text,
.p-company-profile__text {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 120px 40px;
  text-align: center;
}
.p-company-message__heading,
.p-company-profile__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.p-company-message__btn,
.p-company-profile__btn {
  min-width: 240px;
  height: 50px;
  padding: 8px 20px;
  font-size: 1rem;
}
.p-company-message__image,
.p-company-profile__image {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
}
.p-company-message__image img,
.p-company-profile__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-company-message,
  .p-company-profile {
    flex-direction: column;
  }
  .p-company-message__image,
  .p-company-profile__image {
    width: 100%;
    order: 1;
    aspect-ratio: 375 / 281;
  }
  .p-company-message__text,
  .p-company-profile__text {
    width: 100%;
    order: 2;
    padding: 40px 30px;
    gap: 24px;
  }
  .p-company-message__btn,
  .p-company-profile__btn {
    min-width: 132px;
    height: 40px;
    padding: 8px 20px;
    font-size: 0.9375rem;
  }
}
.p-company-history {
  display: flex;
  gap: 40px;
  padding-top: 160px;
  padding-bottom: 160px;
}
.p-company-history__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 580px;
  color: inherit;
  text-decoration: none;
}
.p-company-history__image {
  width: 580px;
  height: 386px;
  overflow: hidden;
  background-color: var(--color-white);
}
.p-company-history__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-company-history__title {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text);
}

@media (max-width: 767px) {
  .p-company-history {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-company-history__card {
    width: 100%;
  }
  .p-company-history__image {
    width: 100%;
    aspect-ratio: 580 / 386;
  }
  .p-company-history__title {
    color: #0f2c59;
  }
}


/* ---- news.css ---- */
.p-news-hero--article {
  height: auto;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 64px 0;
}

@media (max-width: 767px) {
  .p-news-hero--article {
    min-height: 580px;
    padding: 32px 0;
  }
}
.p-news-section {
  padding: 80px 0 120px;
}
.p-news-layout {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
.p-news-main {
  flex: 1 1 auto;
  min-width: 0;
}
.p-news-list {
  list-style: none;
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}

@media (max-width: 767px) {
  .p-news-list {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-news-list__item {
  border-top: 1px solid var(--color-line);
}
.p-news-list__item:last-child {
  border-bottom: 1px solid var(--color-line);
}
.p-news-list__link {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  color: var(--color-text);
  text-decoration: none;
}
.p-news-list__date {
  flex: 0 0 auto;
  font-family: var(--font-en);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.p-news-list__tag {
  flex: 0 0 auto;
  padding: 4px 14px;
  background: var(--color-bg-placeholder);
  font-family: var(--font-jp);
  font-size: 0.875rem;
  white-space: nowrap;
}
.p-news-list__title {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.p-news-list__link:hover .p-news-list__title {
  text-decoration: none;
}
.p-news-list__link.is-plain .p-news-list__title {
  text-decoration: none;
}
.p-news-list__empty {
  padding: 60px 0;
  color: var(--color-text-gray);
  text-align: center;
}

@media (max-width: 767px) {
  .p-news-list__link {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 16px 0;
  }
  .p-news-list__title {
    flex-basis: 100%;
  }
}
.p-news-sidebar {
  flex: 0 0 240px;
}
.p-news-sidebar__heading {
  margin-bottom: 20px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-text);
}
.p-news-sidebar__list {
  list-style: none;
}
.p-news-sidebar__item {
  border-bottom: 1px solid var(--color-line);
}
.p-news-sidebar__link {
  display: block;
  padding: 14px 0;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  text-decoration: none;
}
.p-news-sidebar__link.is-current {
  color: var(--color-dark-blue);
  font-weight: 700;
}

@media (max-width: 767px) {
  .p-news-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
  .p-news-sidebar {
    flex: 1 1 auto;
    width: 100%;
  }
}
.p-news-article__hero-title {
  margin-top: 16px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--color-text);
}
.p-news-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.p-news-article__date {
  font-family: var(--font-en);
  font-size: 0.9375rem;
  color: var(--color-text);
}
.p-news-article__tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-bg-placeholder);
  font-family: var(--font-jp);
  font-size: 0.875rem;
  color: var(--color-text);
}
.p-news-article__image {
  aspect-ratio: 823 / 463;
  background: var(--color-bg-placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-gray);
  font-family: var(--font-en);
  font-size: 1.125rem;
  overflow: hidden;
}
.p-news-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news-article__paragraph {
  margin-top: 40px;
}
.p-news-article__paragraph p {
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}
.p-news-article__paragraph p + p {
  margin-top: 24px;
}
.p-news-article__heading {
  margin-top: 56px;
  margin-bottom: 24px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--color-text);
}
.p-news-article__figure {
  margin-top: 40px;
}
.p-news-article__figure-img {
  aspect-ratio: 823 / 463;
  overflow: hidden;
}
.p-news-article__figure-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news-article__figure-caption {
  margin-top: 12px;
  font-family: var(--font-jp);
  font-size: 0.875rem;
  color: var(--color-text-gray);
  text-align: center;
}
.p-news-article__list {
  margin-top: 24px;
}
.p-news-article__list li {
  position: relative;
  padding-left: 1.25em;
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}
.p-news-article__list li::before {
  content: "";
  position: absolute;
  left: 0.35em;
  top: 0.85em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-dark-blue);
}
.p-news-article__list li + li {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .p-news-article__hero-title {
    font-size: 1.375rem;
  }
  .p-news-article__paragraph {
    margin-top: 24px;
  }
  .p-news-article__heading {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.125rem;
  }
  .p-news-article__figure {
    margin-top: 24px;
  }
  .p-news-article__list {
    margin-top: 16px;
  }
}


/* ---- product.css ---- */
.p-product-hero__decor--ring {
  left: -142px;
  top: -157px;
  width: 334px;
  height: 334px;
}
.p-product-hero__decor--circle {
  left: -276px;
  top: 82px;
  width: 634px;
  height: 634px;
}
#welding,
#can-manufacturing,
#robot,
#custom {
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}
@media (max-width: 767px) {
  #welding,
  #can-manufacturing,
  #robot,
  #custom {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-product-heading {
  padding: 40px 0;
}
.p-product-heading--spaced {
  padding: 120px 0 40px;
}
.p-product-heading__body {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-product-heading {
    padding: 24px 0;
  }
  .p-product-heading--spaced {
    padding: 60px 0 24px;
  }
  .p-product-heading__body {
    margin-top: 12px;
  }
}
.p-product-subheading {
  padding: 20px 0;
}
.p-product-subheading__title {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .p-product-subheading {
    padding: 12px 0;
  }
  .p-product-subheading__title {
    font-size: 1.5rem;
  }
}
.p-product-row {
  display: flex;
  align-items: center;
  gap: min(10%, 160px);
  width: 100%;
  padding: 60px 0;
  max-width: 1600px;
  margin: 0 auto;
}
.p-product-row__image {
  flex: 18 1 0%;
  min-width: 0;
  max-width: 720px;
  aspect-ratio: 720 / 540;
}
.p-product-row--end .p-product-row__image {
  margin-left: auto;
}
.p-product-row__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-product-row__content {
  flex: 13 1 0%;
  min-width: 0;
  max-width: 520px;
}
.p-product-row:not(.p-product-row--end) .p-product-row__content {
  margin-left: auto;
  margin-right: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
}
@media (min-width: 1600px) {
  .p-product-row:not(.p-product-row--end) .p-product-row__content {
    margin-left: 0;
  }
}
.p-product-row--end .p-product-row__content {
  margin-left: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
  margin-right: auto;
}
.p-product-row__model {
  margin-top: 24px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}
.p-product-row__body {
  margin-top: 8px;
}
.p-product-row__btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-product-row {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 40px 0;
  }
  .p-product-row__image {
    max-width: none;
    width: calc(100% - 30px);
    margin-left: 0;
    margin-right: 30px;
    aspect-ratio: 345 / 259;
  }
  .p-product-row--end .p-product-row__image {
    margin-left: 30px;
    margin-right: 0;
  }
  .p-product-row__content {
    max-width: none;
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .p-product-row__content .c-heading-ja--28 {
    font-size: 1.5rem;
  }
  .p-product-row__model {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .p-product-row__body {
    margin-top: 12px;
    line-height: 1.6;
  }
  .p-product-row__btn {
    margin-top: 20px;
  }
  .p-product-row--end .p-product-row__image {
    order: 1;
  }
  .p-product-row--end .p-product-row__content {
    order: 2;
  }
}
.p-product-category {
  padding-top: 60px;
  padding-bottom: 120px;
}
.p-product-category--tight {
  padding-top: 40px;
}
.p-product-category__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.p-product-category__heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.p-product-category__list {
  display: flex;
  gap: 90px;
  width: 100%;
  margin-bottom: 20px;
}
.p-product-category__item {
  flex: 1 1 0%;
  min-width: 0;
}
.p-product-category__img {
  width: 100%;
  aspect-ratio: 340 / 255;
  margin-bottom: 24px;
}
.p-product-category__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-product-category__name {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}
.p-product-category__model {
  color: #000;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-product-category__more {
  border-color: var(--color-dark-blue);
}

@media (max-width: 767px) {
  .p-product-category {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .p-product-category--tight {
    padding-top: 24px;
  }
  .p-product-category__inner {
    gap: 32px;
  }
  .p-product-category__heading {
    font-size: 1.375rem;
  }
  .p-product-category__list {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 0;
  }
  .p-product-category__img {
    margin-bottom: 16px;
  }
  .p-product-category__name {
    font-size: 1.125rem;
  }
  .p-product-category__model {
    font-size: 0.875rem;
  }
}
.p-product-split {
  padding: 40px 0;
}
.p-product-split--end {
  padding: 40px 0 120px;
}
.p-product-split__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.67%;
}
.p-product-split__image {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 560px;
  aspect-ratio: 560 / 420;
}
.p-product-split__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-product-split__content {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 560px;
}
.p-product-split__body {
  margin-top: 24px;
}
.p-product-split__btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-product-split {
    padding: 24px 0 0;
  }
  .p-product-split--end {
    padding: 40px 0 60px;
  }
  .p-product-split__row {
    flex-direction: column;
    gap: 24px;
  }
  .p-product-split__image,
  .p-product-split__content {
    max-width: none;
    width: 100%;
  }
  .p-product-split__content .c-heading-ja--28 {
    font-size: 1.5rem;
  }
  .p-product-split__body {
    margin-top: 12px;
    line-height: 1.6;
  }
  .p-product-split__btn {
    margin-top: 20px;
  }
  .p-product-split--end .p-product-split__image {
    order: 1;
  }
  .p-product-split--end .p-product-split__content {
    order: 2;
  }
}


/* ---- product-welding.css ---- */
#standard,
#custom,
#multi-function,
#simple-type {
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}
@media (max-width: 767px) {
  #standard,
  #custom,
  #multi-function,
  #simple-type {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-welding-heading {
  padding: 60px 0 40px;
}
.p-welding-heading--spaced {
  padding: 120px 0 40px;
}
@media (max-width: 767px) {
  .p-welding-heading {
    padding: 40px 0 24px;
  }
  .p-welding-heading--spaced {
    padding: 60px 0 24px;
  }
}
.p-welding-custom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6.67%;
  row-gap: 80px;
  padding-top: 60px;
  padding-bottom: 120px;
}
.p-welding-custom__item {
  min-width: 0;
}
.p-welding-custom__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 560 / 420;
  margin-bottom: 24px;
  background: #fff;
}
.p-welding-custom__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .p-welding-custom__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding-top: 32px;
    padding-bottom: 60px;
  }
}
.p-welding-spec {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-welding-spec {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}


/* ---- product-can.css ---- */
#standard,
#custom,
#adrian-seamer {
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}
@media (max-width: 767px) {
  #standard,
  #custom,
  #adrian-seamer {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-can-heading {
  padding: 60px 0 40px;
}
.p-can-heading--spaced {
  padding: 120px 0 40px;
}
@media (max-width: 767px) {
  .p-can-heading {
    padding: 40px 0 24px;
  }
  .p-can-heading--spaced {
    padding: 60px 0 24px;
  }
}
.p-can-spec {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .p-can-spec {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.p-can-custom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 6.67%;
  row-gap: 80px;
  padding-top: 60px;
  padding-bottom: 120px;
}
.p-can-custom__item {
  min-width: 0;
}
.p-can-custom__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 560 / 420;
  margin-bottom: 24px;
  background: #fff;
}
.p-can-custom__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .p-can-custom__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding-top: 32px;
    padding-bottom: 60px;
  }
}


/* ---- product-robot.css ---- */
#welding,
#handling {
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}
@media (max-width: 767px) {
  #welding,
  #handling {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-robot-heading {
  padding: 60px 0 40px;
}
.p-robot-heading--spaced {
  padding: 120px 0 40px;
}
@media (max-width: 767px) {
  .p-robot-heading {
    padding: 40px 0 24px;
  }
  .p-robot-heading--spaced {
    padding: 60px 0 24px;
  }
}
.p-robot-subheading {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .p-robot-subheading {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}


/* ---- product-custom.css ---- */
.p-custom-tabs {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .p-custom-tabs {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.p-custom-line {
  padding-top: 60px;
  padding-bottom: 60px;
}
.p-custom-line__group + .p-custom-line__group {
  margin-top: 150px;
}
.p-custom-line__heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.5;
}
.p-custom-line__intro {
  margin-top: 20px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.5;
}
.p-custom-line__body {
  margin-top: 70px;
}
.p-custom-line__sub-group + .p-custom-line__sub-group {
  margin-top: 85px;
}
.p-custom-line__sub-heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.75;
}
.p-custom-line__sub-body {
  margin-top: 55px;
}
.p-custom-line__flow {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 54px;
}
.p-custom-line__step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 1 250px;
  min-width: 0;
}
.p-custom-line__item-wrap {
  position: relative;
}
.p-custom-line__item {
  width: 100%;
  aspect-ratio: 250 / 188;
  background: var(--color-bg-pale);
  overflow: hidden;
}
.p-custom-line__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-custom-line__arrow {
  position: absolute;
  top: 50%;
  right: -39px;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  width: 24px;
  height: 24px;
}
.p-custom-line__step:last-child .p-custom-line__arrow {
  display: none;
}
.p-custom-line__divider {
  display: none;
}

@media (max-width: 767px) {
  .p-custom-line {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .p-custom-line__group + .p-custom-line__group {
    margin-top: 100px;
  }
  .p-custom-line__heading {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .p-custom-line__intro {
    font-size: 0.875rem;
    line-height: 2;
  }
  .p-custom-line__body {
    margin-top: 35px;
  }
  .p-custom-line__sub-group + .p-custom-line__sub-group {
    margin-top: 100px;
  }
  .p-custom-line__sub-heading {
    font-size: 1.375rem;
    line-height: 1.6;
  }
  .p-custom-line__sub-body {
    margin-top: 35px;
  }

  .p-custom-line__flow {
    flex-direction: column;
    gap: 30px;
  }
  .p-custom-line__step {
    flex: none;
    max-width: none;
    width: 100%;
  }
  .p-custom-line__arrow {
    position: static;
    margin: 16px auto 0;
    transform: rotate(180deg);
  }
  .p-custom-line__divider {
    display: block;
    margin-top: 35px;
    border: none;
    border-top: 1px solid var(--color-line);
  }
}


/* ---- company-message.css ---- */
.p-message {
  padding: 100px 0 120px;
}
.p-message__inner {
  max-width: 900px;
}
.p-message__heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.p-message__body {
  margin-top: 40px;
}
.p-message__body p {
  margin-top: 24px;
}
.p-message__body p:first-child {
  margin-top: 0;
}
.p-message__signature {
  margin-top: 40px;
  text-align: right;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .p-message {
    padding: 60px 0;
  }
  .p-message__heading {
    font-size: 1.5rem;
  }
  .p-message__body {
    margin-top: 24px;
  }
  .p-message__body p {
    margin-top: 20px;
  }
  .p-message__signature {
    margin-top: 24px;
  }
}


/* ---- company-profile.css ---- */
.p-profile-table {
  padding: 100px 0 120px;
}
@media (max-width: 767px) {
  .p-profile-table {
    padding: 60px 0;
  }
}
.p-profile-clients {
  column-count: 2;
  column-gap: 40px;
}
.p-profile-clients li {
  break-inside: avoid;
}
.p-profile-clients__note {
  margin-top: 16px;
  color: var(--color-text-gray);
}

@media (max-width: 767px) {
  .p-profile-clients {
    column-count: 1;
  }
}


/* ---- company-history.css ---- */
.p-history-table {
  padding: 100px 0 120px;
}
@media (max-width: 767px) {
  .p-history-table {
    padding: 60px 0;
  }
}


/* ---- company-access.css ---- */
.p-access-office {
  padding: 100px 0 80px;
}
.p-access-office__heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 40px;
}
.p-access-office__row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.p-access-office__map-col,
.p-access-office__info-col {
  flex: 0 0 calc(50% - 20px);
  min-width: 0;
}
.p-access-office__map-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.p-access-office__map {
  width: 100%;
  aspect-ratio: 527 / 417;
  background-color: var(--color-bg-placeholder);
}
.p-access-office__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.p-access-office__map-btn {
  align-self: flex-start;
}
.p-access-office__info-col .c-table--label-narrow .c-table__label {
  flex: 0 0 80px;
}

@media (max-width: 767px) {
  .p-access-office {
    padding: 60px 0;
  }
  .p-access-office__heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .p-access-office__row {
    flex-direction: column;
    gap: 24px;
  }
  .p-access-office__map-col,
  .p-access-office__info-col {
    width: 100%;
  }
  .p-access-office__map-btn {
    align-self: stretch;
  }
  .p-access-office__info-col .c-table--label-narrow .c-table__label {
    flex: none;
  }
}
.p-access-factory {
  padding: 0 0 120px;
}
.p-access-factory__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 30px;
}
.p-access-factory__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.p-access-factory__img {
  aspect-ratio: 530 / 298;
}
.p-access-factory__heading {
  margin-top: 30px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .p-access-factory {
    padding: 0 0 60px;
  }
  .p-access-factory__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-access-factory__heading {
    margin-top: 20px;
    margin-bottom: 12px;
  }
}


/* ---- privacy.css ---- */
.p-privacy {
  padding: 100px 0 120px;
}
.p-privacy__intro {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.8;
}
.p-privacy__divider {
  margin-top: 40px;
  border-top: 1px solid var(--color-line);
}
.p-privacy__section {
  margin-top: 56px;
}
.p-privacy__heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 24px;
}
.p-privacy__list {
  margin-top: 24px;
}
.p-privacy__list-title {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
}
.p-privacy__btn {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .p-privacy {
    padding: 60px 0;
  }
  .p-privacy__intro {
    font-size: 1rem;
  }
  .p-privacy__divider {
    margin-top: 24px;
  }
  .p-privacy__section {
    margin-top: 40px;
  }
  .p-privacy__heading {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}


/* ---- sitemap.css ---- */
.p-sitemap-list {
  padding: 100px 0 120px;
}
.p-sitemap-list .l-sitemap-accordion {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.p-sitemap-list .l-sitemap-accordion__group {
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 280px;
}
.p-sitemap-list .l-sitemap-accordion__item {
  border-bottom: none;
  padding: 0 0 40px;
}
.p-sitemap-list .l-sitemap-accordion__link,
.p-sitemap-list .l-sitemap-accordion__row {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
  margin-bottom: 16px;
}
.p-sitemap-list .l-sitemap-accordion__row .l-sitemap-accordion__link {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.p-sitemap-list .l-sitemap-accordion__link-en {
  font-size: 20px;
}
.p-sitemap-list .l-sitemap-accordion__toggle {
  display: none;
}
.p-sitemap-list .l-sitemap-accordion__panel {
  max-height: none !important;
  overflow: visible !important;
  padding-top: 0 !important;
}
.p-sitemap-list__extra {
  display: block;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 767px) {
  .p-sitemap-list {
    padding: 60px 0;
  }
  .p-sitemap-list .l-sitemap-accordion {
    flex-direction: column;
    gap: 32px;
  }
  .p-sitemap-list .l-sitemap-accordion__group {
    max-width: none;
  }
  .p-sitemap-list__extra {
    margin-top: 32px;
    padding-top: 32px;
  }
}


/* ---- error-404.css ---- */
.p-error404 {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  background: var(--color-bg-light);
}
.p-error404__inner {
  text-align: center;
}
.p-error404__title {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 2.8125rem;
  line-height: 1.5;
}
.p-error404__text {
  margin-top: 16px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.125rem;
}
.p-error404__btn {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .p-error404 {
    padding: 80px 0;
  }
  .p-error404__title {
    font-size: 2rem;
  }
  .p-error404__text {
    font-size: 1rem;
  }
}


/* ---- facilities.css ---- */
#bending,
#cutting,
#machining,
#welding-equip {
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}
@media (max-width: 767px) {
  #bending,
  #cutting,
  #machining,
  #welding-equip {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-facilities-section {
  padding: 60px 0;
}
.p-facilities-section__heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
}
.p-facilities-section__intro {
  margin-top: 24px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
}
.p-facilities-category {
  padding: 60px 0;
}
.p-facilities-category__heading {
  color: var(--color-dark-blue);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.5;
}
.p-facilities-category__intro {
  margin-top: 24px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .p-facilities-section,
  .p-facilities-category {
    padding: 40px 0;
  }
  .p-facilities-section__heading {
    font-size: 1.5rem;
  }
  .p-facilities-category__heading {
    font-size: 1.375rem;
  }
}
.p-facilities-factory {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 0;
}
.p-facilities-factory__image {
  flex: 534 1 0%;
  min-width: 0;
  max-width: 534px;
  aspect-ratio: 4 / 3;
}
.p-facilities-factory__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facilities-factory__content {
  flex: 507 1 0%;
  min-width: 0;
  max-width: 507px;
}
.p-facilities-factory__title {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.5;
}
.p-facilities-factory__subtitle {
  margin-top: 12px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.6;
}
.p-facilities-factory__body {
  margin-top: 20px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .p-facilities-factory {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 0;
  }
  .p-facilities-factory__image {
    order: 1;
    max-width: none;
  }
  .p-facilities-factory__content {
    order: 2;
    max-width: none;
  }
  .p-facilities-factory__title {
    font-size: 1.375rem;
  }
  .p-facilities-factory__subtitle {
    margin-top: 8px;
    font-size: 1rem;
  }
  .p-facilities-factory__body {
    margin-top: 12px;
  }
}
.p-facilities-featured {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 30px 0;
}
.p-facilities-featured__image {
  flex: 534 1 0%;
  min-width: 0;
  max-width: 534px;
  aspect-ratio: 4 / 3;
}
.p-facilities-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-facilities-featured__content {
  flex: 507 1 0%;
  min-width: 0;
  max-width: 507px;
}
.p-facilities-featured__title {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5;
}
.p-facilities-featured__spec {
  margin-top: 15px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.5;
}
.p-facilities-featured__model {
  margin-top: 15px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
}
.p-facilities-featured__body {
  margin-top: 15px;
  color: var(--color-text);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .p-facilities-featured {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 24px 0;
  }
  .p-facilities-featured__image {
    max-width: none;
  }
  .p-facilities-featured__content {
    max-width: none;
  }
  .p-facilities-featured__title {
    font-size: 1.25rem;
  }
  .p-facilities-featured__spec,
  .p-facilities-featured__model {
    margin-top: 10px;
  }
  .p-facilities-featured__body {
    margin-top: 10px;
  }
}
.p-facilities-list {
  margin-top: 60px;
}
.p-facilities-list__heading {
  color: var(--color-text);
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .p-facilities-list {
    margin-top: 40px;
  }
  .p-facilities-list__heading {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}


/* ---- recruit.css ---- */
.p-recruit {
  --re-blue: #0052cc;
  --re-navy: #0a1931;
  --re-heading-navy: #0f2c59;
  --re-text-gray: #4b535f;
  --re-line-gray: #ddd;
  --re-light-blue: #00d4ff;
  --re-gradient: linear-gradient(120deg, #1c4081 0%, #0052cc 76%);
}
#message,
#company-data,
#interview,
#workplace,
#job-details,
#faq {
  scroll-margin-top: calc(var(--header-height-pc) + 20px);
}
@media (max-width: 767px) {
  #message,
  #company-data,
  #interview,
  #workplace,
  #job-details,
  #faq {
    scroll-margin-top: calc(var(--header-height-sp) + 12px);
  }
}
.p-recruit-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-recruit-heading__en {
  color: var(--re-blue);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.p-recruit-heading__ja {
  color: var(--re-text-gray);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}
.p-recruit-heading--white .p-recruit-heading__en {
  color: #fff;
}
.p-recruit-heading--white .p-recruit-heading__ja {
  color: #fff;
}

@media (max-width: 767px) {
  .p-recruit-heading__en {
    font-size: 2.25rem;
    letter-spacing: 0.02em;
  }
  .p-recruit-heading__ja {
    font-size: 1rem;
  }
}
.p-recruit-hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: #000;
}
.p-recruit-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.p-recruit-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(269deg, rgba(255, 255, 255, 0) 15%, rgba(0, 0, 0, 0.2) 62%);
}
.p-recruit-hero__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-recruit-hero__decor--circle {
  top: 338px;
  right: -359px;
  width: 1179px;
  height: 1179px;
}
.p-recruit-hero__decor--ring {
  top: -218px;
  left: -216px;
  width: 416px;
  height: 416px;
}
.p-recruit-hero__text {
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 60px;
  color: #fff;
}
.p-recruit-hero__title {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.75rem;
  line-height: 1.1;
}
.p-recruit-hero__subtitle {
  margin-top: 8px;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}
.p-recruit-hero__tagline {
  font-family: var(--font-jp-serif);
  font-weight: 700;
  font-size: 3.75rem;
  line-height: 1.4;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .p-recruit-hero {
    height: 600px;
  }
  .p-recruit-hero__decor--circle {
    top: 332.75px;
    right: -369.25px;
    left: auto;
    width: 589.5px;
    height: 589.5px;
  }
  .p-recruit-hero__decor--ring {
    top: -114px;
    left: -112px;
    width: 208px;
    height: 208px;
  }
  .p-recruit-hero__text {
    left: 30px;
    top: auto;
    bottom: 60px;
    transform: none;
    gap: 24px;
  }
  .p-recruit-hero__title {
    font-size: 2.25rem;
  }
  .p-recruit-hero__subtitle {
    font-size: 0.875rem;
  }
  .p-recruit-hero__tagline {
    font-size: 2rem;
    white-space: normal;
  }
}
.p-recruit-anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 40px;
  padding: 15px 20px;
  background: linear-gradient(96deg, #a4c8ff 0.3%, #aef1ff 63%);
}
.p-recruit-anchor__link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  line-height: 2;
  text-decoration: none;
}
.p-recruit-anchor__link img {
  width: 23px;
  height: 23px;
}
@media (max-width: 767px) {
  .p-recruit-anchor {
    justify-content: left;
  }
}
.p-recruit-message {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--re-gradient);
  color: #fff;
}
.p-recruit-message__inner {
  position: relative;
}
@media (max-width: 767px) {
  .p-recruit-message__inner {
    padding: 0 20px;
  }
}
.p-recruit-message__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-recruit-message__decor--ring {
  top: -9.5px;
  right: -214px;
  width: 334px;
  height: 334px;
}
.p-recruit-message__decor--arc {
  bottom: 60.58px;
  left: -29.61px;
  width: 89.61px;
  height: 179.22px;
  transform: rotate(180deg);
}
.p-recruit-message__decor--circle-a {
  top: -330px;
  left: -223px;
  width: 634px;
  height: 634px;
}
.p-recruit-message__decor--circle-b {
  top: 616px;
  right: 258px;
  width: 744px;
  height: 744px;
}
.p-recruit-message__row {
  position: relative;
  display: flex;
  align-items: center;
  gap: min(10%, 160px);
  max-width: 1600px;
  margin: 0 auto;
}
.p-recruit-message__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  flex: 1 1 0%;
  min-width: 0;
  max-width: 620px;
  margin-left: min(max(40px, calc((100vw - 1200px) / 2)), 200px);
}
.p-recruit-message__text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.p-recruit-message__catch {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.6;
}
.p-recruit-message__body {
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 2;
}
.p-recruit-message__signature {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 2;
}
.p-recruit-message__signature-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-recruit-message__signature-name {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.5rem;
}
.p-recruit-message__image {
  flex: 1 1 0%;
  min-width: 0;
  max-width: 620px;
  aspect-ratio: 620 / 860;
  overflow: hidden;
  background: var(--color-bg-placeholder);
}
.p-recruit-message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-recruit-message {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-recruit-message__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    max-width: none;
    margin: 0;
  }
  .p-recruit-message__content {
    flex: none;
    width: 100%;
    max-width: none;
    margin-left: 0;
    gap: 28px;
  }
  .p-recruit-message__text {
    gap: 20px;
  }
  .p-recruit-message__catch {
    font-size: 1.25rem;
  }
  .p-recruit-message__body {
    font-size: 0.875rem;
    line-height: 1.8;
  }
  .p-recruit-message__signature {
    font-size: 0.875rem;
  }
  .p-recruit-message__signature-name {
    font-size: 1.25rem;
  }
  .p-recruit-message__image {
    flex: none;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    height: 320px;
  }
}
.p-recruit-company-data {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-bg-light);
}
.p-recruit-company-data__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-recruit-company-data__decor--circle {
  top: 342px;
  left: -333px;
  width: 634px;
  height: 634px;
}
.p-recruit-company-data__decor--drum {
  top: 404px;
  right: -60px;
  width: 170px;
  height: 278px;
  opacity: 0.35;
}
.p-recruit-company-data__decor--arc {
  top: -79.41px;
  right: 219.59px;
  width: 79.608px;
  height: 159.217px;
}
.p-recruit-company-data__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.p-recruit-company-data__item {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 24px 36px;
  background: #fff;
}
.p-recruit-company-data__item img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.p-recruit-company-data__label {
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.p-recruit-company-data__value {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.p-recruit-company-data__number {
  color: var(--re-blue);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.375rem;
  line-height: 1.1;
}
.p-recruit-company-data__unit {
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
}

@media (max-width: 767px) {
  .p-recruit-company-data {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-recruit-company-data__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .p-recruit-company-data__item {
    padding: 16px 20px;
  }
  .p-recruit-company-data__item img {
    width: 80px;
    height: 80px;
  }
  .p-recruit-company-data__number {
    font-size: 2.25rem;
  }
}
.p-recruit-interview {
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(240deg, #d4fbff 42%, #97bbff 93%);
}
.p-recruit-interview__grid {
  display: flex;
  gap: 24px;
  margin-top: 60px;
}
.p-recruit-interview__card {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  height: 510px;
  overflow: hidden;
  background: var(--color-bg-placeholder);
}
.p-recruit-interview__card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-interview__text {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: calc(100% - 20px);
  overflow: hidden;
  padding: 17px 20px;
  background: var(--re-gradient);
  color: #fff;
}
.p-recruit-interview__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  max-width: none;
  width: 334px;
  height: 334px;
}
.p-recruit-interview__decor--card1 {
  bottom: -184px;
  right: -160px;
}
.p-recruit-interview__decor--card2 {
  bottom: -54px;
  left: -160px;
}
.p-recruit-interview__decor--card3 {
  bottom: -64px;
  right: -200px;
}
.p-recruit-interview__catch {
  position: relative;
  z-index: 1;
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6;
}
.p-recruit-interview__meta {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-family: var(--font-jp);
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .p-recruit-interview {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-recruit-interview__grid {
    flex-direction: column;
    margin-top: 32px;
  }
  .p-recruit-interview__card {
    width: 100%;
    height: 380px;
  }
}
.p-recruit-workplace {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-bg-light);
}
.p-recruit-workplace__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-recruit-workplace__decor--drum {
  top: 176px;
  left: -65px;
  width: 170px;
  height: 278px;
  opacity: 0.2;
}
.p-recruit-workplace__decor--arc {
  top: 1124px;
  right: 219.39px;
  width: 79.608px;
  height: 159.217px;
  transform: rotate(180deg);
}
.p-recruit-workplace__decor--circle {
  top: -213px;
  right: -301px;
  width: 814px;
  height: 814px;
}
.p-recruit-workplace__decor--ring {
  top: 1133px;
  left: 162px;
  width: 334px;
  height: 334px;
}
.p-recruit-workplace__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
.p-recruit-workplace__row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.p-recruit-workplace__row--end {
  flex-direction: row-reverse;
}
.p-recruit-workplace__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 570 1 0%;
  min-width: 0;
  max-width: 570px;
}
.p-recruit-workplace__catch {
  color: var(--re-heading-navy);
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.6;
}
.p-recruit-workplace__body {
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 2;
}
.p-recruit-workplace__image {
  flex: 570 1 0%;
  min-width: 0;
  max-width: 570px;
  aspect-ratio: 570 / 380;
  overflow: hidden;
  background: var(--color-bg-placeholder);
}
.p-recruit-workplace__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-recruit-workplace {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-recruit-workplace__list {
    gap: 40px;
    margin-top: 32px;
  }
  .p-recruit-workplace__row,
  .p-recruit-workplace__row--end {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .p-recruit-workplace__content,
  .p-recruit-workplace__image {
    flex: none;
    width: 100%;
    max-width: none;
  }
  .p-recruit-workplace__image {
    height: 240px;
  }
  .p-recruit-workplace__catch {
    font-size: 1.25rem;
  }
  .p-recruit-workplace__body {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-recruit-job {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  background: linear-gradient(257deg, #d4fbff 42%, #97bbff 93%);
}
.p-recruit-job__positions {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}
.p-recruit-job__position-title {
  color: var(--re-blue);
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
}
.p-recruit-job__card {
  background: #fff;
  padding: 60px 80px;
}
.p-recruit-job__row {
  display: flex;
  gap: 40px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--re-line-gray);
}
.p-recruit-job__row:last-child {
  border-bottom: 1px solid var(--re-line-gray);
}
.p-recruit-job__label {
  flex: 0 0 160px;
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.p-recruit-job__value {
  flex: 1 1 0%;
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.5;
}
.p-recruit-job__value-note {
  display: block;
  margin-top: 4px;
  font-size: 0.875rem;
}
.p-recruit-job__comment {
  position: relative;
  margin-top: 100px;
  background: #fff;
}
.p-recruit-job__comment-label {
  display: inline-flex;
  padding: 10px 20px 12px;
  background: var(--re-gradient);
  color: #fff;
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.4;
}
.p-recruit-job__comment-body {
  padding: 70px 40px;
}
.p-recruit-job__comment-catch {
  color: var(--re-heading-navy);
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.6;
}
.p-recruit-job__comment-text {
  margin-top: 20px;
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 2;
}

@media (max-width: 767px) {
  .p-recruit-job {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-recruit-job__positions {
    gap: 60px;
    margin-top: 32px;
  }
  .p-recruit-job__position-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
  .p-recruit-job__card {
    padding: 32px 20px;
  }
  .p-recruit-job__row {
    flex-direction: column;
    gap: 4px;
  }
  .p-recruit-job__label {
    flex: none;
  }
  .p-recruit-job__comment {
    margin-top: 60px;
  }
  .p-recruit-job__comment-body {
    padding: 32px 20px;
  }
  .p-recruit-job__comment-catch {
    font-size: 1.25rem;
  }
  .p-recruit-job__comment-text {
    font-size: 0.875rem;
  }
}
.p-recruit-faq {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-bg-light);
}
.p-recruit-faq__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-recruit-faq__decor--circle {
  top: -333px;
  right: -326px;
  width: 634px;
  height: 634px;
}
.p-recruit-faq__decor--drum {
  top: 591px;
  left: -42px;
  width: 170px;
  height: 278px;
  opacity: 0.15;
}
.p-recruit-faq__decor--arc {
  top: 70.59px;
  left: -30.42px;
  width: 79.608px;
  height: 159.217px;
  transform: rotate(90deg);
}
.p-recruit-faq__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.p-recruit-faq__item {
  border-top: 1px solid var(--re-line-gray);
}
.p-recruit-faq__item:last-child {
  border-bottom: 1px solid var(--re-line-gray);
}
.p-recruit-faq__question {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.p-recruit-faq__q-mark {
  flex-shrink: 0;
  color: var(--re-blue);
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.2;
}
.p-recruit-faq__q-text {
  flex: 1 1 0%;
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75;
}
.p-recruit-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.p-recruit-faq__icon::before,
.p-recruit-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--re-blue);
  transition: transform 0.2s ease;
}
.p-recruit-faq__icon::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.p-recruit-faq__icon::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%);
}
.p-recruit-faq__item.is-open .p-recruit-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.p-recruit-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.p-recruit-faq__answer-text {
  padding: 0 0 20px 56px;
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .p-recruit-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-recruit-faq__list {
    margin-top: 32px;
  }
  .p-recruit-faq__q-text {
    font-size: 1rem;
  }
  .p-recruit-faq__answer-text {
    padding-left: 40px;
    font-size: 0.875rem;
  }
}
.p-recruit-entry-banner {
  position: relative;
  overflow: hidden;
  background: var(--re-gradient);
}
.p-recruit-entry-banner__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-recruit-entry-banner__decor--circle {
  top: -330px;
  left: -263px;
  width: 634px;
  height: 634px;
}
.p-recruit-entry-banner__decor--ring {
  bottom: -347px;
  right: -315px;
  width: 686px;
  height: 686px;
}
.p-recruit-entry-banner__decor--arc {
  top: -54px;
  left: 710px;
  width: 79.608px;
  height: 159.217px;
  transform: rotate(180deg);
}
.p-recruit-entry-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.p-recruit-entry-banner__content {
  display: flex;
  flex-direction: column;
  width: calc(58% - 40px);
  gap: 40px;
  color: #fff;
}
.p-recruit-entry-banner__text {
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 2;
}
.p-recruit-entry-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  padding: 8px 20px;
  border: 2px solid #fff;
  border-radius: 50px;
  background: linear-gradient(90deg, #aff2ff 36%, #7bacf5 100%);
  color: var(--re-navy);
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}
.p-recruit-entry-banner__image {
  position: relative;
  overflow: hidden;
  height: 558px;
  width: calc(42% - 40px);
}
.p-recruit-entry-banner__images {
  display: flex;
  gap: 16px;
  position: relative;
  bottom: 76%;
}
.p-recruit-entry-banner__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 8px);
  flex-shrink: 0;
}
.p-recruit-entry-banner__col--offset {
  margin-top: 170px;
}
.p-recruit-entry-banner__col img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: #f8fafc;
}

@media (max-width: 767px) {
  .p-recruit-entry-banner {
    padding: 60px 0;
  }
  .p-recruit-entry-banner__decor--circle {
    top: -130px;
    left: -115px;
    width: 317px;
    height: 317px;
  }
  .p-recruit-entry-banner__decor--ring {
    bottom: -232px;
    right: -150px;
    width: 343px;
    height: 343px;
  }
  .p-recruit-entry-banner__decor--arc {
    top: 30%;
    right: 50px;
    left: auto;
    width: 40px;
    height: 80px;
    transform: rotate(0deg);
  }
  .p-recruit-entry-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .p-recruit-entry-banner__content {
    width: 100%;
    order: 2;
  }
  .p-recruit-entry-banner__text {
    white-space: normal;
  }
  .p-recruit-entry-banner__image {
    display: none;
  }
  .p-recruit-entry-banner__strip-wrap {
    order: 1;
    width: 140%;
    margin-left: -20%;
  }
  .p-recruit-entry-banner__strip {
    display: flex;
    gap: 8px;
    margin: 0 auto;
  }
  .p-recruit-entry-banner__strip img {
    width: 25%;
    object-fit: cover;
    flex-shrink: 0;
    background: #f8fafc;
  }
  .p-recruit-entry-banner__btn {
    width: 100%;
  }
}
.p-recruit-float-entry {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 40;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 240px;
  height: 70px;
  border: 2px solid #fff;
  border-radius: 50px;
  background: linear-gradient(90deg, #aff2ff 36.317%, #7bacf5 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  color: var(--re-navy);
  text-decoration: none;
}
.p-recruit-float-entry__en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  color: #1e293b;
}
.p-recruit-float-entry__ja {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 0.75rem;
}
.p-recruit-float-totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.286px solid #fff;
  background: linear-gradient(45deg, #1c4081 0%, #0052cc 76%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.p-recruit-float-totop img {
  width: 22px;
  height: 22px;
  transform: rotate(180deg);
}
.p-recruit-float-totop:hover,
.p-recruit-float-totop:focus-visible {
  opacity: 0.7;
}
.p-recruit-float-entry.is-hidden,
.p-recruit-float-totop.is-hidden {
  display: none;
}

@media (max-width: 767px) {
  .p-recruit-float-entry {
    right: 12px;
    bottom: 82px;
    width: 180px;
    height: 56px;
  }
  .p-recruit-float-entry__en {
    font-size: 1.125rem;
  }
  .p-recruit-float-totop {
    right: 12px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  .p-recruit-float-totop img {
    width: 18px;
    height: 18px;
  }
}
.p-recruit-bg-wrap {
  background-image: none;
}

@media (max-width: 767px) {
  .p-recruit-bg-wrap {
    background-image: url("/assets/img/common/decor-recpage-bg-left-sp.webp"),
      url("/assets/img/common/decor-recpage-bg-right-sp.webp");
    background-size: 117px auto, 88px auto;
  }
  .p-recruit-message__decor,
  .p-recruit-company-data__decor,
  .p-recruit-workplace__decor,
  .p-recruit-faq__decor {
    display: none;
  }
  .p-recruit-company-data,
  .p-recruit-workplace,
  .p-recruit-faq {
    background: transparent;
  }
}


/* ---- recruit-interview.css ---- */
.p-interview-hero {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
}
.p-interview-hero__media {
  position: relative;
  flex: 0 0 auto;
  width: min(47.5%, 760px);
  aspect-ratio: 760 / 533;
  overflow: hidden;
  background: #e9e9e9;
}
.p-interview-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-interview-hero__panel {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(32.68deg, #1c4081 0%, #0052cc 75.828%);
}
.p-interview-hero__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-interview-hero__decor--circle-white {
  top: 100px;
  left: 90px;
  width: 800px;
  height: 800px;
}
.p-interview-hero__decor--ring {
  top: -218px;
  left: -216px;
  width: 416px;
  height: 416px;
}
.p-interview-hero__decor--circle {
  top: 267px;
  right: -271px;
  width: 539px;
  height: 539px;
  transform: scaleX(-1);
}
.p-interview-hero__decor--arc {
  top: -90px;
  left: 54.9375%;
  width: 79.608px;
  height: 159.217px;
}
.p-interview-hero__text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
  padding-right: 20px;
  color: #fff;
}
.p-interview-hero__label {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--re-light-blue);
}
.p-interview-hero__catch {
  margin-top: 20px;
  max-width: 560px;
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.6;
}
.p-interview-hero__meta {
  margin-top: 16px;
  max-width: 560px;
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .p-interview-hero {
    flex-direction: column;
  }
  .p-interview-hero__media {
    width: 100%;
  }
  .p-interview-hero__panel {
    min-height: 194px;
    background: linear-gradient(27.61deg, #1c4081 0%, #0052cc 75.828%);
  }
  .p-interview-hero__decor--circle {
    top: 134.75px;
    right: -149.25px;
    width: 269.5px;
    height: 269.5px;
  }
  .p-interview-hero__decor--arc {
    top: -20.2px;
    left: 39.9px;
    width: 39.804px;
    height: 79.608px;
  }
  .p-interview-hero__decor--ring {
    top: auto;
    bottom: -110px;
    left: auto;
    right: -120px;
    width: 208px;
    height: 208px;
  }
  .p-interview-hero__decor--circle-white {
    top: -240px;
    left: -190px;
    width: 400px;
    height: 400px;
  }
  .p-interview-hero__text {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-interview-hero__label {
    font-size: 1rem;
  }
  .p-interview-hero__catch {
    margin-top: 6px;
    font-size: 1.25rem;
  }
  .p-interview-hero__meta {
    margin-top: 8px;
    font-size: 0.875rem;
  }
}
.p-interview-qa {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-bg-light);
}
.p-interview-qa__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-interview-qa__decor--circle {
  top: 1152px;
  left: -263px;
  width: 634px;
  height: 634px;
}
.p-interview-qa__decor--arc {
  top: -79.41px;
  right: 219.59px;
  width: 79.608px;
  height: 159.217px;
}
.p-interview-qa__decor--drum {
  top: 864px;
  right: -60px;
  width: 170px;
  height: 278px;
  opacity: 0.35;
}
.p-interview-qa__decor--ring {
  top: 36px;
  left: -226px;
  width: 334px;
  height: 334px;
}
.p-interview-qa__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.p-interview-qa__row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.p-interview-qa__image {
  flex: 550 1 0%;
  min-width: 0;
  max-width: 550px;
  aspect-ratio: 550 / 367;
  overflow: hidden;
  background: #e2e2e2;
}
.p-interview-qa__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-interview-qa__content {
  display: flex;
  flex: 570 1 0%;
  min-width: 0;
  max-width: 570px;
  flex-direction: column;
  gap: 24px;
}
.p-interview-qa__question {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.p-interview-qa__q {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--re-blue);
}
.p-interview-qa__title {
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.6;
  color: var(--re-navy);
}
.p-interview-qa__body {
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 2;
  color: var(--re-navy);
}

@media (max-width: 767px) {
  .p-interview-qa {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-interview-qa__list {
    gap: 48px;
  }
  .p-interview-qa__row,
  .p-interview-qa__row--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .p-interview-qa__row--reverse .p-interview-qa__image {
    order: 1;
  }
  .p-interview-qa__row--reverse .p-interview-qa__content {
    order: 2;
  }
  .p-interview-qa__image,
  .p-interview-qa__content {
    flex: none;
    width: 100%;
    max-width: none;
  }
  .p-interview-qa__question {
    gap: 12px;
  }
  .p-interview-qa__q {
    font-size: 1.75rem;
  }
  .p-interview-qa__title {
    font-size: 1.25rem;
  }
  .p-interview-qa__body {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}
.p-interview-schedule {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}
.p-interview-schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(248.18deg, #d4fbff 42.221%, #97bbff 92.884%);
  opacity: 0.5;
  pointer-events: none;
}
.p-interview-schedule > .l-inner {
  position: relative;
}
.p-interview-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
  background: #fff;
  padding: 80px 100px;
}
.p-interview-schedule__item {
  display: flex;
  flex-direction: column;
}
.p-interview-schedule__event {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-interview-schedule__time {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3125;
  color: var(--re-navy);
  white-space: nowrap;
  min-width: 73px;
}
.p-interview-schedule__dot {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--re-gradient);
}
.p-interview-schedule__label {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--re-navy);
}
.p-interview-schedule__desc {
  margin-left: 100px;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 28px;
  border-left: 1.5px solid #bebebe;
}
.p-interview-schedule__desc--empty {
  min-height: 59px;
  box-sizing: border-box;
}
.p-interview-schedule__text {
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--re-navy);
}
.p-interview-schedule__note {
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .p-interview-schedule {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-interview-schedule__list {
    margin-top: 32px;
    padding: 32px 20px;
  }
  .p-interview-schedule__event {
    gap: 12px;
  }
  .p-interview-schedule__time {
    min-width: 54px;
  }
  .p-interview-schedule__time,
  .p-interview-schedule__label {
    font-size: 1.125rem;
  }
  .p-interview-schedule__dot {
    width: 10px;
    height: 10px;
  }
  .p-interview-schedule__desc {
    margin-left: 12px;
    padding-left: 20px;
    padding-bottom: 16px;
  }
  .p-interview-schedule__desc--empty {
    min-height: 32px;
  }
  .p-interview-schedule__text {
    font-size: 0.875rem;
  }
  .p-interview-schedule__note {
    font-size: 0.75rem;
  }
}
.p-interview-message {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--color-bg-light);
}
.p-interview-message__decor {
  position: absolute;
  pointer-events: none;
  max-width: none;
}
.p-interview-message__decor--circle {
  bottom: -230px;
  right: -241px;
  width: 634px;
  height: 634px;
}
.p-interview-message__decor--drum {
  top: 466px;
  left: -15px;
  width: 170px;
  height: 278px;
  opacity: 0.2;
}
.p-interview-message__decor--ring {
  bottom: 426px;
  left: -154px;
  width: 334px;
  height: 334px;
}
.p-interview-message__row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.p-interview-message__content {
  display: flex;
  flex: 780 1 0%;
  min-width: 0;
  max-width: 780px;
  flex-direction: column;
  gap: 40px;
}
.p-interview-message__body {
  font-family: var(--font-jp);
  font-size: 1rem;
  line-height: 2;
  color: var(--re-navy);
}
.p-interview-message__image {
  flex: 360 1 0%;
  min-width: 0;
  max-width: 360px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e8e8e8;
}
.p-interview-message__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-interview-message {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-interview-message__row {
    flex-direction: column;
    gap: 24px;
  }
  .p-interview-message__content,
  .p-interview-message__image {
    flex: none;
    width: 100%;
    max-width: none;
  }
  .p-interview-message__content {
    gap: 24px;
  }
  .p-interview-message__body {
    font-size: 0.875rem;
    line-height: 1.9;
  }
}
.p-interview-other {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}
.p-interview-other::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(238.38deg, #d4fbff 42.221%, #97bbff 92.884%);
  opacity: 0.5;
  pointer-events: none;
}
.p-interview-other > .l-inner {
  position: relative;
}
.p-interview-other__list {
  display: flex;
  gap: 60px;
  margin-top: 60px;
}
.p-interview-other__card {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  max-width: 570px;
  aspect-ratio: 570 / 456;
  overflow: hidden;
  background: #e4e4e4;
}
.p-interview-other__card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-interview-other__text {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 63.86%;
  min-height: 150px;
  overflow: hidden;
  padding: 17px 20px;
  background: linear-gradient(22.62deg, rgba(28, 64, 129, 0.95) 0%, rgba(0, 82, 204, 0.95) 75.828%);
  color: #fff;
}
.p-interview-other__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  max-width: none;
  width: 334px;
  height: 334px;
}
.p-interview-other__decor--rs {
  bottom: -54px;
  left: -160px;
}
.p-interview-other__decor--ss {
  bottom: -64px;
  left: 235px;
}
.p-interview-other__decor--ko {
  bottom: -184px;
  right: -160px;
}
.p-interview-other__catch {
  position: relative;
  z-index: 1;
  font-family: var(--font-jp-serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6;
}
.p-interview-other__meta {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-family: var(--font-jp);
  font-size: 0.875rem;
  line-height: 1.6;
}
@media (max-width: 1200px) {
  .p-interview-other__card {
    overflow: visible;
    margin-bottom: 60px;
  }
  .p-interview-other__text {
    width: 90%;
    bottom: -60px;
  }
}
@media (max-width: 899px) {
  .p-interview-other__text {
    width: calc(100% - 20px);
  }
  .p-interview-other__catch {
    font-size: 1rem;
  }
  .p-interview-other__meta {
    font-size: 0.8125rem;
  }
}

@media (max-width: 767px) {
  .p-interview-other {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-interview-other__list {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-top: 32px;
  }
  .p-interview-other__card {
    flex: none;
    max-width: none;
  }
  .p-interview-other__text {
    min-height: 0;
  }
}
@media (max-width: 767px) {
  .p-interview-qa__decor,
  .p-interview-message__decor {
    display: none;
  }
  .p-interview-qa,
  .p-interview-message {
    background: transparent;
  }
}
