@charset "UTF-8";@import "https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css";

:root {
  /* inner */
  --inner: min(81.25rem, 100%);
  --inner-sm: min(60.25rem, 100%);
  --inner-md: min(67.5rem, 100%);
  --inner-lg: min(87rem, 100%);
  --padding-inner: 4.375rem;
  --padding-inner-md: 2.5rem;
  --padding-inner-sp: 1.25rem;
  /* z-index */
  --z-index-header: 900;
  /* color */
  --color-white: #fff;
  --color-text: #444;
  --color-black: #000;
  --color-bg-beige: #f6f5f0;
  --color-border: rgb(68 68 68 / 30%);
  --color-gray: #d9d9d9;
  --color-charcoal: #333;
  --color-medium-gray: #4b4b4b;
  /* font-weight */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  /* font-family */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --font-mincho: "Shippori Mincho B1", serif;
  /* transition duration */
  --duration: 0.3s;
  /* header height */
  --header-height: 6.875rem;
  /* section gap */
  --section-gap: 200px;
  --section-gap-md: 100px;
  /* section padding（セクション内の上下余白） */
  --section-padding: 5rem;
}
@media screen and (width <= 1024px) {
  :root {
    --padding-inner: 2.5rem;
  }
}
@media screen and (width <= 767.98px) {
  :root {
    --header-height: 4.375rem;
    --padding-inner: 1.25rem;
    --section-gap: 6.25rem;
    --section-gap-md: 3.75rem;
    --section-padding: 3.75rem;
  }
}

html {
  font-size: 16px;
}
html.is-smooth {
  scroll-behavior: smooth;
}
@media screen and (width >= 767.99px) and (width <= 1060px) {
  html {
    font-size: 1.5094339623vw;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (width <= 320px) {
  html {
    font-size: 5vw;
  }
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 2.5rem);
}

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

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

a:hover {
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

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

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

textarea {
  field-sizing: content;
}

body {
  padding-top: calc(var(--header-height) + 8px);
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  color: var(--color-text);
}

body.home {
  padding-top: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  width: 100%;
}

.l-inner {
  max-width: calc(var(--inner) + var(--padding-inner) * 2);
  padding-inline: var(--padding-inner);
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  .l-inner {
    padding-inline: var(--padding-inner-sp);
  }
}
.l-inner--sm {
  max-width: calc(var(--inner-sm) + var(--padding-inner) * 2);
}
.l-inner--md {
  max-width: calc(var(--inner-md) + var(--padding-inner) * 2);
}
.l-inner--lg {
  max-width: calc(var(--inner-lg) + var(--padding-inner) * 2);
}

.js-fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transform: translateY(20px);
}
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes c-btn-arrow-underline {
  0% {
    clip-path: inset(0 0 0 0);
  }
  45% {
    clip-path: inset(0 0 0 100%);
  }
  45.01% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
.c-btn-arrow {
  position: relative;
  display: block;
  width: 100%;
  max-width: 15.1875rem;
  padding: 0.9375rem 1.25rem 0.9375rem 0;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767.98px) {
  .c-btn-arrow {
    font-size: 0.8125rem;
  }
}
.c-btn-arrow::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  clip-path: inset(0 0 0 0);
  content: "";
  background-image: linear-gradient(90deg, rgba(68, 68, 68, 0.3) 50%, transparent 50%);
  background-repeat: repeat-x;
  background-size: 10px 1px;
  transition: clip-path 0.3s ease;
}
.c-btn-arrow span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  letter-spacing: 0.05em;
}
.c-btn-arrow span::before {
  position: absolute;
  right: 0;
  width: 1.125rem;
  height: 0.125rem;
  content: "";
  background-color: var(--color-text);
  transition: translate var(--duration) ease;
  transform-origin: right center;
  rotate: 27deg;
  translate: 0 0;
}
@media screen and (max-width: 480px) {
  .c-btn-arrow span::before {
    width: 0.75rem;
  }
}
.c-btn-arrow span::after {
  position: absolute;
  right: 0;
  width: 1.125rem;
  height: 0.125rem;
  content: "";
  background-color: var(--color-text);
  transition: translate var(--duration) ease;
  transform-origin: right center;
  rotate: -27deg;
  translate: 0 0;
}
@media screen and (max-width: 480px) {
  .c-btn-arrow span::after {
    width: 0.75rem;
  }
}

@media (any-hover: hover) {
  .c-btn-arrow:hover::before {
    animation: c-btn-arrow-underline 0.8s ease;
  }
  .c-btn-arrow:hover span::before,
  .c-btn-arrow:hover span::after {
    translate: 0.3125rem 0;
  }
}
/* ----------------------------------------
 * c-btn — 共通ボタン（角丸・アロー付き）
 * Figma: Frame 1107（270×48）
 * 使用例: <a href="#" class="c-btn"><span>テキスト</span></a>
 * ---------------------------------------- */
.c-btn {
  position: relative;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 16.875rem;
  height: 3rem;
  padding: 0.625rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.02em;
  cursor: pointer;
  background-color: var(--color-text);
  border-radius: 60px;
  transition: opacity var(--duration);
  /* アロー（右矢印） */
  /* ---------- バリエーション ---------- */
  /* 白背景（テキスト色ボーダー） */
  /* 小ボタン（177×32） */
  /* 戻るボタン（左矢印付き） */
}
@media screen and (max-width: 480px) {
  .c-btn {
    max-width: 13.75rem;
    height: 2.75rem;
    font-size: 0.875rem;
  }
}
.c-btn span {
  position: relative;
  padding-right: 30px;
}
.c-btn::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 1.1875rem;
  height: 1.0625rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20width='19'%20height='17'%20viewBox='0%200%2019%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.23333%200.222168L0.0111111%201.29995L14.4556%208.27772L0%2015.2666L2.22222%2016.3444L18.9%208.27772L2.23333%200.222168Z'%20fill='white'/%3e%3c/svg%3e") no-repeat center/contain;
  transition: transform var(--duration);
  transform: translateY(-50%);
}
@media screen and (max-width: 767.98px) {
  .c-btn::after {
    width: 1rem;
    height: 0.875rem;
  }
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 0.8;
  }
  .c-btn:hover::after {
    transform: translateY(-50%) translateX(5px);
  }
}
.c-btn--outline {
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid var(--color-text);
}
.c-btn--outline::after {
  background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='17'%20viewBox='0%200%2019%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.23333%200.222168L0.0111111%201.29995L14.4556%208.27772L0%2015.2666L2.22222%2016.3444L18.9%208.27772L2.23333%200.222168Z'%20fill='%23444'/%3e%3c/svg%3e");
}
.c-btn--sm {
  min-width: 11.0625rem;
  height: 2rem;
  padding: 0.375rem 1.25rem;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767.98px) {
  .c-btn--sm {
    min-width: 10rem;
    height: 1.875rem;
    font-size: 0.75rem;
  }
}
.c-btn--sm::after {
  right: 20px;
  width: 0.875rem;
  height: 0.75rem;
}
.c-btn--back {
  gap: 2.5rem;
  min-width: 10.875rem;
  height: 2.5rem;
  padding: 0.625rem 2.5rem;
  font-size: 1.0625rem;
  line-height: 2.35;
  color: var(--color-text);
  letter-spacing: -0.02em;
  background-color: transparent;
  /* 左矢印 */
  /* 右矢印 */
}
@media screen and (max-width: 767.98px) {
  .c-btn--back {
    gap: 1.5rem;
    min-width: 9.375rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9375rem;
  }
}
@media (any-hover: hover) {
  .c-btn--back:hover {
    opacity: 0.7;
  }
}
.c-btn--back::before {
  width: 0.3125rem;
  height: 0.625rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20width='5'%20height='10'%20viewBox='0%200%205%2010'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M4.38596%2010.0764L4.97076%209.40277L1.16959%205.04167L4.97368%200.673614L4.38889%200L0%205.04167L4.38596%2010.0764Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
}
.c-btn--back::after {
  position: static;
  width: 0.3125rem;
  height: 0.625rem;
  background: url("data:image/svg+xml,%3csvg%20width='5'%20height='10'%20viewBox='0%200%205%2010'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M4.38596%2010.0764L4.97076%209.40277L1.16959%205.04167L4.97368%200.673614L4.38889%200L0%205.04167L4.38596%2010.0764Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
  transform: none;
  transform: scaleX(-1);
}

/* ----------------------------------------
 * c-cta-bg — CTA背景画像（各ページ共通）
 * 使用例: <div class="c-cta-bg"><img src="cta-bg.jpg" ...></div>
 * ---------------------------------------- */
*:has(+ .c-cta-bg):not(#top *) {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.98px) {
  *:has(+ .c-cta-bg):not(#top *) {
    margin-bottom: 80px;
  }
}

.c-cta-bg {
  width: 100%;
  height: 35.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .c-cta-bg {
    height: 18.75rem;
  }
}
.c-cta-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------
 * c-cta-contact — お問い合わせCTA（各ページ共通）
 * 使用例: <?php get_template_part('template/cta-contact'); ?>
 * ---------------------------------------- */
.c-cta-contact {
  padding-block: var(--section-gap) 7.5rem;
}
@media screen and (max-width: 767.98px) {
  .c-cta-contact {
    padding-block: var(--section-gap-md) 3.75rem;
  }
}

.c-cta-contact-inner {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  width: min(60.25rem, 100%);
  padding: 4.5rem 5rem;
  margin-inline: auto;
  background-color: var(--color-bg-beige);
  border-radius: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .c-cta-contact-inner {
    width: min(60.25rem, 100% - var(--padding-inner) * 2);
  }
}
@media screen and (max-width: 767.98px) {
  .c-cta-contact-inner {
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
}

.c-cta-contact-text-area {
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .c-cta-contact-text-area {
    width: 100%;
    text-align: center;
  }
}

.c-cta-contact-title {
  margin-bottom: 1rem;
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  .c-cta-contact-title {
    font-size: 1.5rem;
  }
}

.c-cta-contact-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  .c-cta-contact-desc {
    font-size: 0.8125rem;
  }
}

.c-cta-contact-text-area:has(+ .c-cta-contact-buttons) {
  margin-bottom: 0.375rem;
}

.c-cta-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 16.875rem;
}
@media screen and (max-width: 767.98px) {
  .c-cta-contact-buttons {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .c-cta-contact-buttons {
    align-items: center;
    margin-inline: auto;
  }
}

/* =========================================
   空状態（投稿0件）共通表示
   お知らせ / サービス / 制作事例 のアーカイブで使用
   ========================================= */
.c-empty {
  display: grid;
  gap: 1.25rem;
  place-items: center;
  padding-block: 6rem;
  text-align: center;
  /* 控えめなアクセントライン（既存の見出しラインのトーンに合わせる） */
}
@media screen and (max-width: 767.98px) {
  .c-empty {
    gap: 1rem;
    padding-block: 4rem;
  }
}
.c-empty::before {
  inline-size: 2.5rem;
  block-size: 0.125rem;
  content: "";
  background-color: var(--color-text);
  opacity: 0.25;
}

.c-empty-text {
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  .c-empty-text {
    font-size: 1rem;
  }
}

/* ----------------------------------------
 * c-page-fv — 下層ページ共通FV
 * Figma: 1300×414px / 角丸10px / 背景画像 + タイトル
 * 使用例: get_template_part('template/page-fv', null, ['title' => 'サービス', 'bg' => 'service-fv-bg.jpg']);
 * ---------------------------------------- */
.c-page-fv {
  position: relative;
  width: calc(100% - 8.75rem);
  max-width: 81.25rem;
  height: 25.875rem;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 0.625rem;
  /* 背景画像 */
  /* タイトル */
}
@media screen and (max-width: 1024px) {
  .c-page-fv {
    width: calc(100% - var(--padding-inner) * 2);
    height: 21.875rem;
  }
}
@media screen and (max-width: 767.98px) {
  .c-page-fv {
    width: calc(100% - var(--padding-inner) * 2);
    height: 15rem;
    border-radius: 0.5rem;
  }
}
.c-page-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-page-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-page-fv__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 7rem;
  font-family: var(--font-mincho);
  font-size: 3.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  .c-page-fv__title {
    padding-left: 2rem;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  .c-page-fv__title {
    padding-left: 1.25rem;
  }
}

.post-content {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  .post-content {
    font-size: 0.8125rem;
  }
}
.post-content > * {
  margin-top: 0;
  margin-bottom: 0;
}
.post-content > * + * {
  margin-top: 1rem;
}
@media screen and (max-width: 767.98px) {
  .post-content > * + * {
    margin-top: 0.875rem;
  }
}
.post-content > h1 + *,
.post-content > h2 + *,
.post-content > h3 + *,
.post-content > h4 + *,
.post-content > h5 + * {
  margin-top: 2rem;
}
@media screen and (max-width: 767.98px) {
  .post-content > h1 + *,
  .post-content > h2 + *,
  .post-content > h3 + *,
  .post-content > h4 + *,
  .post-content > h5 + * {
    margin-top: 1.5rem;
  }
}
.post-content > h2:not(:first-child),
.post-content > h3:not(:first-child),
.post-content > h4:not(:first-child),
.post-content > h5:not(:first-child) {
  margin-top: 4.5rem;
}
@media screen and (max-width: 767.98px) {
  .post-content > h2:not(:first-child),
  .post-content > h3:not(:first-child),
  .post-content > h4:not(:first-child),
  .post-content > h5:not(:first-child) {
    margin-top: 3rem;
  }
}
.post-content h1 {
  padding-bottom: 1rem;
  font-family: var(--font-mincho);
  font-size: 2.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  .post-content h1 {
    padding-bottom: 0.75rem;
    font-size: 1.75rem;
  }
}
.post-content h2 {
  position: relative;
  padding-bottom: 0.625rem;
  padding-left: 0;
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
  border-bottom: 1px solid #b3b3b3;
}
@media screen and (max-width: 767.98px) {
  .post-content h2 {
    font-size: 1.375rem;
  }
}
.post-content h2::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 12.25rem;
  height: 1px;
  content: "";
  background-color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  .post-content h2::before {
    width: 6.25rem;
  }
}
.post-content h3 {
  padding: 0.625rem;
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
  background-color: #f5f5f5;
}
@media screen and (max-width: 767.98px) {
  .post-content h3 {
    font-size: 1.125rem;
  }
}
.post-content h4 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-family: var(--font-mincho);
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
  border-bottom: 1px solid #b3b3b3;
}
@media screen and (max-width: 767.98px) {
  .post-content h4 {
    font-size: 1rem;
  }
}
.post-content h5 {
  font-family: var(--font-mincho);
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  .post-content h5 {
    font-size: 1rem;
  }
}
.post-content p {
  line-height: 1.75;
}
.post-content ul {
  padding-left: 0;
  list-style: none;
}
.post-content ul li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.75;
}
.post-content ul li + li {
  margin-top: 0.5rem;
}
.post-content ul li::before {
  position: absolute;
  top: 0.875em;
  left: 0.125rem;
  width: 0.625rem;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transform: translateY(-50%);
}
.post-content ul ul {
  padding-left: 1.5rem;
}
.post-content ol {
  padding-left: 1.5rem;
  list-style: decimal;
}
.post-content ol li {
  line-height: 1.75;
}
.post-content ol li + li {
  margin-top: 0.5rem;
}
.post-content ol ol {
  padding-left: 1.5rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
.post-content .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.post-content .alignright {
  float: right;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}
.post-content .alignleft {
  float: left;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
.post-content .alignnone {
  float: none;
}
.post-content::after {
  display: block;
  clear: both;
  content: "";
}
.post-content .wp-caption {
  max-width: 100%;
}
.post-content .wp-caption img {
  display: block;
}
.post-content .wp-caption-text {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
.post-content a {
  color: var(--color-text);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .post-content a:hover {
    opacity: 0.7;
  }
}
.post-content a.c-btn {
  display: flex;
  color: var(--color-white);
  text-decoration: none;
}
@media (any-hover: hover) {
  .post-content a.c-btn:hover {
    opacity: 0.8;
  }
}
.post-content > .c-btn,
.post-content > p:has(> .c-btn) {
  margin-top: 5rem;
}
@media screen and (max-width: 767.98px) {
  .post-content > .c-btn,
  .post-content > p:has(> .c-btn) {
    margin-top: 3rem;
  }
}
.post-content > p:has(> .c-btn) {
  width: 100%;
}
.post-content blockquote {
  padding: 1.25rem 2.5rem;
  border: 1px solid #b3b3b3;
}
@media screen and (max-width: 767.98px) {
  .post-content blockquote {
    padding: 1rem 1.25rem;
  }
}
.post-content table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #b3b3b3;
}
.post-content table th,
.post-content table td {
  height: 5rem;
  padding: 0.625rem 1.25rem;
  text-align: left;
  vertical-align: middle;
  border: 1px solid #b3b3b3;
}
@media screen and (max-width: 767.98px) {
  .post-content table th,
  .post-content table td {
    height: 3.75rem;
    padding: 0.5rem 0.75rem;
  }
}
.post-content table th {
  width: 16.5rem;
  font-weight: var(--fw-regular);
  text-align: center;
  background: #f5f5f5;
}
@media screen and (max-width: 767.98px) {
  .post-content table th {
    width: 7.5rem;
  }
}
.post-content hr {
  border: none;
  border-top: 1px solid #000;
}

.c-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.c-wave img,
.c-wave svg {
  width: 100%;
  height: auto;
}
.c-wave--flip {
  transform: scaleY(-1);
}

/* ========================================
 * 404 Error Page
 * ======================================== */
#error-page .error-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--header-height));
  padding: 5rem 0;
}
@media screen and (max-width: 767.98px) {
  #error-page .error-content {
    padding: 3.75rem 0;
  }
}
#error-page .error-inner {
  text-align: center;
}
#error-page .error-number {
  font-family: var(--font-mincho);
  font-size: 7.5rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-bg-beige);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  #error-page .error-number {
    font-size: 5rem;
  }
}
#error-page .error-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-mincho);
  font-size: 1.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #error-page .error-title {
    font-size: 1.375rem;
  }
}
#error-page .error-text {
  margin-bottom: 3rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #error-page .error-text {
    margin-bottom: 2.25rem;
    font-size: 0.875rem;
  }
}
#error-page .error-btn {
  display: flex;
  justify-content: center;
}

/* ========================================
 * Case Archive Page
 * Figma node: 21:3906
 * ======================================== */
#case {
  /* ----------------------------------------
   * Archive Section
   * ---------------------------------------- */
  /* ---------- Category Filter ---------- */
  /* ---------- Card Grid ---------- */
  /* ---------- Card ---------- */
  /* ---------- Pagination ---------- */
  /* ---------- Empty State ---------- */
}
#case .case-archive {
  padding: 3.4375rem 0 10rem;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive {
    padding: 2rem 0 5rem;
  }
}
#case .case-archive:has(+ .c-cta-bg) {
  padding-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive:has(+ .c-cta-bg) {
    padding-bottom: 0;
  }
}
#case .case-archive-inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-inner {
    gap: 3rem;
  }
}
#case .case-archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  max-width: 35.625rem;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-filter {
    gap: 0.75rem 1.5rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #case .case-archive-filter {
    gap: 0.625rem 1.25rem;
  }
}
#case .case-archive-filter-link {
  display: flex;
  gap: 0.8125rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-filter-link {
    gap: 0.5rem;
    font-size: 0.6875rem;
  }
}
@media (any-hover: hover) {
  #case .case-archive-filter-link:hover {
    opacity: 0.7;
  }
}
#case .case-archive-filter-link.is-active {
  font-weight: var(--fw-bold);
}
#case .case-archive-filter-link-text {
  position: relative;
}
#case .case-archive-filter-link-text::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #case .case-archive-filter-link:hover .case-archive-filter-link-text::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
#case .case-archive-filter-link-arrow {
  width: 0.375rem;
  height: 0.6875rem;
  transform: rotate(90deg);
}
#case .case-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 1.0625rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #case .case-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
}
@media screen and (max-width: 480px) {
  #case .case-archive-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
#case .case-archive-card {
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  text-decoration: none;
}
@media (any-hover: hover) {
  #case .case-archive-card:hover .case-archive-card-thumb-img {
    transform: scale(1.05);
  }
}
#case .case-archive-card-thumb {
  width: 100%;
  aspect-ratio: 349/230;
  margin-bottom: 0.625rem;
  overflow: hidden;
  background-color: #f5f5f0;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-thumb {
    margin-bottom: 0.375rem;
  }
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-thumb {
    border-radius: 0.375rem;
  }
}
#case .case-archive-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) ease-out;
}
#case .case-archive-card-title {
  margin-bottom: 0.25rem;
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-title {
    margin-bottom: 0.125rem;
  }
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-title {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 480px) {
  #case .case-archive-card-title {
    font-size: 0.875rem;
  }
}
#case .case-archive-card-client {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-client {
    font-size: 0.6875rem;
  }
}
#case .case-archive-card-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  padding: 0.25rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-text);
  border-radius: 0.1875rem;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-tag {
    margin-bottom: 0.375rem;
  }
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-tag {
    font-size: 0.625rem;
  }
}
#case .case-archive-card-client {
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-client {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-client {
    font-size: 0.6875rem;
  }
}
#case .case-archive-card-works {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-card-works {
    font-size: 0.6875rem;
  }
}
#case .case-archive-pager {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-pager {
    gap: 1.5rem;
  }
}
#case .case-archive-pager .page-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-pager .page-numbers {
    gap: 0.5rem;
  }
}
#case .case-archive-pager .page-numbers li .page-numbers {
  position: relative;
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 2.35;
  color: #b3b3b3;
  text-decoration: none;
  letter-spacing: -0.02em;
  opacity: 0.5;
  transition: opacity var(--duration), color var(--duration);
}
@media screen and (max-width: 767.98px) {
  #case .case-archive-pager .page-numbers li .page-numbers {
    font-size: 0.9375rem;
  }
}
#case .case-archive-pager .page-numbers li .page-numbers::before {
  position: absolute;
  right: 0.5rem;
  bottom: 0.125rem;
  left: 0.5rem;
  height: 1px;
  content: "";
  background-color: currentcolor;
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
#case .case-archive-pager .page-numbers li .page-numbers.current {
  font-weight: var(--fw-medium);
  color: var(--color-text);
  opacity: 1;
}
#case .case-archive-pager .page-numbers li .next,
#case .case-archive-pager .page-numbers li .prev {
  font-size: 0;
  color: transparent;
  opacity: 1;
}
#case .case-archive-pager .page-numbers li .next::after,
#case .case-archive-pager .page-numbers li .prev::after {
  display: inline-block;
  width: 0.375rem;
  height: 0.6875rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='6'%20height='11'%20viewBox='0%200%206%2011.3333'%20fill='none'%3e%3cpath%20d='M0.705262%200.148112L0.00350877%200.866633L4.56493%205.51848L0%2010.1777L0.701754%2010.8963L5.96842%205.51848L0.705262%200.148112Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
  transition: transform var(--duration) ease;
}
#case .case-archive-pager .page-numbers li .prev::after {
  transform: scaleX(-1);
}
@media (any-hover: hover) {
  #case .case-archive-pager .page-numbers li .page-numbers:not(.current, .next, .prev):hover {
    color: var(--color-text);
    opacity: 1;
  }
  #case .case-archive-pager .page-numbers li .page-numbers:not(.current, .next, .prev):hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
  #case .case-archive-pager .page-numbers li .next:hover::after {
    transform: translateX(0.125rem);
  }
  #case .case-archive-pager .page-numbers li .prev:hover::after {
    transform: scaleX(-1) translateX(0.125rem);
  }
}
#case .case-archive-empty {
  padding: 5rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text);
  text-align: center;
}

/* ========================================
 * Case Single Page
 * Figma node: 21:3907
 * ======================================== */
#case-detail {
  /* ----------------------------------------
   * Article Wrapper
   * ---------------------------------------- */
  /* ---------- Header ---------- */
  /* ---------- Images ---------- */
  /* ---------- Meta Box ---------- */
  /* ---------- Content ---------- */
  /* CTA Background → c-cta-bg（共通コンポーネント）に移行済み */
  /* ---------- Navigation ---------- */
}
#case-detail .case-single {
  padding-top: 6.875rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single {
    padding-top: 2rem;
  }
}
#case-detail .case-single-inner {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-inner {
    gap: 3.75rem;
  }
}
#case-detail .case-single-header {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-header {
    gap: 2.5rem;
  }
}
#case-detail .case-single-top {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-top {
    gap: 1.5rem;
  }
}
#case-detail .case-single-title {
  font-family: var(--font-mincho);
  font-size: 2.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  #case-detail .case-single-title {
    font-size: 1.25rem;
  }
}
#case-detail .case-single-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-images {
    gap: 1rem;
  }
}
#case-detail .case-single-thumb {
  width: 100%;
  max-width: 45rem;
  aspect-ratio: 1080/724;
  margin-inline: auto;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-thumb {
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0.375rem;
  }
}
#case-detail .case-single-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
#case-detail .case-single-thumb-img.is-fading {
  opacity: 0;
}
#case-detail .case-single-gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-gallery {
    gap: 0.375rem;
  }
}
#case-detail .case-single-gallery-item {
  flex: 0 0 calc((100% - 2rem) / 5);
  aspect-ratio: 6/4;
  overflow: hidden;
  cursor: pointer;
  background-color: #f5f5f5;
  border: 0.125rem solid transparent;
  border-radius: 0.625rem;
  transition: opacity 0.2s, border-color 0.2s;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-gallery-item {
    flex: 0 0 calc((100% - 1.5rem) / 5);
  }
}
@media screen and (max-width: 480px) {
  #case-detail .case-single-gallery-item {
    flex: 0 0 calc((100% - 0.75rem) / 3);
  }
}
@media (any-hover: hover) {
  #case-detail .case-single-gallery-item:hover {
    opacity: 0.8;
  }
}
#case-detail .case-single-gallery-item.is-active {
  border-color: #444;
}
#case-detail .case-single-gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#case-detail .case-single-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 4.5rem;
  background-color: #f5f5f5;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-meta {
    padding: 2rem 1.5rem;
    border-radius: 0.375rem;
  }
}
@media screen and (max-width: 480px) {
  #case-detail .case-single-meta {
    padding: 1.5rem 1rem;
  }
}
#case-detail .case-single-meta-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-meta-row {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 480px) {
  #case-detail .case-single-meta-row {
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.75rem;
  }
}
#case-detail .case-single-meta-label {
  flex-shrink: 0;
  width: 6.25rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-meta-label {
    width: 5rem;
  }
}
@media screen and (max-width: 480px) {
  #case-detail .case-single-meta-label {
    width: 5rem;
  }
}
#case-detail .case-single-meta-value {
  flex: 1;
}
#case-detail .case-single-meta-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  color: var(--color-white);
  background-color: var(--color-text);
  border-radius: 0.1875rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-meta-tag {
    font-size: 0.625rem;
  }
}
#case-detail .case-single-content {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-content {
    gap: 3rem;
  }
}
#case-detail .case-single-content h2 {
  position: relative;
  padding-bottom: 0.625rem;
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
  border-bottom: 1px solid #b3b3b3;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-content h2 {
    font-size: 1.25rem;
  }
}
#case-detail .case-single-content h2::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 12.25rem;
  height: 1px;
  content: "";
  background-color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-content h2::before {
    width: 6.25rem;
  }
}
#case-detail .case-single-content p {
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-content p {
    font-size: 0.8125rem;
  }
}
#case-detail .case-single-content > div,
#case-detail .case-single-content > section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-content > div,
  #case-detail .case-single-content > section {
    gap: 1.5rem;
  }
}
#case-detail .case-single-content-section-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#case-detail .l-inner {
  margin-bottom: 0;
}
#case-detail .case-single-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 4.25rem 0;
}
@media screen and (max-width: 767.98px) {
  #case-detail .case-single-nav {
    gap: 1.5rem;
    padding: 2.5rem 0;
  }
}
#case-detail .case-single-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0;
  line-height: 1;
  color: transparent;
  text-decoration: none;
}
#case-detail .case-single-nav-arrow::before {
  display: block;
  width: 0.375rem;
  height: 0.6875rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='6'%20height='11'%20viewBox='0%200%206%2011.3333'%20fill='none'%3e%3cpath%20d='M0.705262%200.148112L0.00350877%200.866633L4.56493%205.51848L0%2010.1777L0.701754%2010.8963L5.96842%205.51848L0.705262%200.148112Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
  transition: transform var(--duration) ease;
}
#case-detail .case-single-nav-arrow[aria-label=前の事例]::before {
  transform: scaleX(-1);
}
#case-detail .case-single-nav-arrow.is-disabled {
  pointer-events: none;
  visibility: hidden;
}
#case-detail .case-single-nav-back {
  position: relative;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 480px) {
  #case-detail .case-single-nav-back {
    font-size: 0.875rem;
  }
}
#case-detail .case-single-nav-back::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #case-detail .case-single-nav-arrow[aria-label=前の事例]:hover::before {
    transform: scaleX(-1) translateX(0.125rem);
  }
  #case-detail .case-single-nav-arrow[aria-label=次の事例]:hover::before {
    transform: translateX(0.125rem);
  }
  #case-detail .case-single-nav-back:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/* ========================================
 * Company Page
 * ======================================== */
#company {
  /* ----------------------------------------
  * Anchor Links
  * ---------------------------------------- */
  /* ----------------------------------------
  * Company Info (会社概要テーブル)
  * ---------------------------------------- */
  /* ----------------------------------------
  * Story (代表挨拶)
  * ---------------------------------------- */
  /* ----------------------------------------
  * Philosophy (企業理念)
  * ---------------------------------------- */
  /* ----------------------------------------
  * History (沿革)
  * ---------------------------------------- */
  /* ----------------------------------------
  * CTA Section
  * ---------------------------------------- */
}
#company .company-anchor {
  padding: 3.5rem 0 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-anchor {
    padding: 2rem 0 0;
    margin-bottom: 3rem;
  }
}
#company .company-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  #company .company-anchor-nav {
    gap: 1rem 1.5rem;
  }
}
#company .company-anchor-link {
  position: relative;
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  padding-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767.98px) {
  #company .company-anchor-link {
    font-size: 0.75rem;
  }
}
#company .company-anchor-link::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #company .company-anchor-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
#company .company-anchor-link-icon {
  width: 0.375rem;
  height: 0.6875rem;
  object-fit: contain;
  transform: rotate(90deg);
}
#company .company-info {
  padding: 0 0 5rem;
  margin-bottom: 6.875rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-info {
    padding: 0 0 3.5rem;
    margin-bottom: 5rem;
  }
}
#company .company-info-title {
  margin-bottom: 4rem;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #company .company-info-title {
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
  }
}
#company .company-info-table {
  max-width: 60.25rem;
  margin-inline: auto;
}
#company .company-info-row {
  display: flex;
  gap: 0;
  align-items: stretch;
}
#company .company-info-dt {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 12.25rem;
  padding: 2rem 1rem 2rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-text);
  letter-spacing: 0.04em;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-info-dt {
    width: clamp(8.125rem, 15vw, 12.25rem);
    padding: 1.5rem 0.75rem 1.5rem 0;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  #company .company-info-dt {
    width: 6.875rem;
  }
}
#company .company-info-dd {
  position: relative;
  flex: 1;
  padding: 2rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767.98px) {
  #company .company-info-dd {
    padding: 1.5rem 0;
    font-size: 0.875rem;
  }
}
#company .company-info-dd:has(.company-info-map-btn) {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  align-items: center;
}
#company .company-info-dd-list {
  margin: 0;
  line-height: 1.6;
  list-style: none;
}
@media screen and (max-width: 767.98px) {
  #company .company-info-dd-list {
    margin-bottom: 0.75rem;
  }
}
#company .company-info-dd-list li {
  position: relative;
}
#company .company-info-dd-list--dot li {
  padding-left: 1.5rem;
}
#company .company-info-dd-list--dot li::before {
  position: absolute;
  top: 0.72em;
  left: 0.625rem;
  width: 0.25rem;
  height: 0.25rem;
  content: "";
  background-color: var(--color-text);
  border-radius: 50%;
  transform: translateY(-50%);
}
#company .company-info-map-btn {
  display: inline-flex;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  transition: color var(--duration), background-color var(--duration), border-color var(--duration), opacity var(--duration);
}
@media screen and (max-width: 767.98px) {
  #company .company-info-map-btn {
    margin-top: 0;
  }
}
@media (any-hover: hover) {
  #company .company-info-map-btn:hover {
    color: var(--color-text);
    background-color: var(--color-white);
    border-color: var(--color-text);
    opacity: 1;
  }
  #company .company-info-map-btn:hover::after {
    background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='17'%20viewBox='0%200%2019%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.23333%200.222168L0.0111111%201.29995L14.4556%208.27772L0%2015.2666L2.22222%2016.3444L18.9%208.27772L2.23333%200.222168Z'%20fill='%23444'/%3e%3c/svg%3e");
  }
}
#company .company-story {
  position: relative;
  padding: 10rem 0;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #company .company-story {
    padding: 7.5rem 0 5rem;
  }
}
#company .company-story-wave {
  position: absolute;
  top: -8.375rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 8.75rem;
  pointer-events: none;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 53rem 8.75rem;
  transform: scale(-1);
}
@media screen and (max-width: 767.98px) {
  #company .company-story-wave {
    top: -3.375rem;
    height: 3.75rem;
    background-size: 26.5rem 3.75rem;
  }
}
#company .company-story-wave-bottom {
  position: absolute;
  bottom: -8.375rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 8.75rem;
  pointer-events: none;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 53rem 8.75rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-wave-bottom {
    bottom: -3.375rem;
    height: 3.75rem;
    background-size: 26.5rem 3.75rem;
  }
}
#company .company-story-block {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  min-height: 38.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-block {
    flex-direction: column;
    min-height: auto;
  }
}
#company .company-story-block:not(:last-of-type) {
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-block:not(:last-of-type) {
    margin-bottom: 3.75rem;
  }
}
#company .company-story > .company-story-block:nth-last-child(2) {
  margin-bottom: 0 !important;
}
#company .company-story-heading {
  position: absolute;
  top: -3.75rem;
  right: 10.625rem;
  z-index: 3;
  font-family: var(--font-mincho);
  font-size: 2.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-heading {
    top: -2.25rem;
    right: 1.5rem;
    font-size: 1.75rem;
  }
}
#company .company-story-image {
  flex-shrink: 0;
  width: 43.125%;
  aspect-ratio: 621/616;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-image {
    width: 95%;
    height: 25rem;
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 480px) {
  #company .company-story-image {
    width: 94%;
    height: 18.75rem;
  }
}
#company .company-story-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#company .company-story-content {
  position: relative;
  display: flex;
  flex: 1;
  padding: 2% 5% 1.5% 7%;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-content {
    gap: 2rem;
    justify-content: space-around;
    width: 100%;
    padding: 2.5rem 1.25rem 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  #company .company-story-content {
    gap: 1.5rem;
  }
}
#company .company-story-block-right {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-block-right {
    flex-direction: column;
  }
}
#company .company-story-block-right .company-story-image {
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-block-right .company-story-image {
    margin-left: auto;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
#company .company-story-block-right .company-story-content {
  padding: 2% 5% 1.5% 4.5%;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-block-right .company-story-content {
    padding: 2.5rem 1.25rem 0;
  }
}
#company .company-story-block-left .company-story-body {
  max-width: 26.875rem;
}
#company .company-story-block-left .company-story-image {
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-block-left .company-story-image {
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
#company .company-story-vertical {
  display: flex;
  flex-shrink: 0;
  gap: 1.875rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-vertical {
    height: fit-content;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  #company .company-story-vertical {
    font-size: 1.625rem;
  }
}
#company .company-story-title {
  flex-shrink: 0;
  font-family: var(--font-mincho);
  font-size: 2.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-title {
    height: fit-content;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  #company .company-story-title {
    font-size: 1.625rem;
    line-height: 1.3;
  }
}
#company .company-story-title span {
  display: block;
}
#company .company-story-title span:not(:last-child) {
  margin-bottom: 3rem;
}
#company .company-story-title span:last-child {
  transform: translateY(9.375rem);
}
@media screen and (max-width: 767.98px) {
  #company .company-story-title span:last-child {
    transform: translateY(6rem);
  }
}
#company .company-story-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 29.375rem;
  padding-top: 15rem;
  margin-left: 5.75%;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-body {
    flex: 1;
    gap: 2rem;
    max-width: 23.75rem;
    padding-top: 10.625rem;
    margin-left: 0;
  }
}
#company .company-story-block--greeting .company-story-body {
  padding-top: 10rem;
}
#company .company-story-subtitle {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-story-subtitle {
    font-size: 1.375rem;
  }
}
#company .company-story-body-text {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 2.35;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-body-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
#company .company-story-sign {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: flex-end;
}
@media screen and (max-width: 767.98px) {
  #company .company-story-sign {
    gap: 0.75rem;
  }
}
#company .company-story-sign-role {
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-story-sign-role {
    font-size: 0.9375rem;
  }
}
#company .company-story-sign-name {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-story-sign-name {
    font-size: 1.375rem;
  }
}
#company .company-philosophy {
  padding: 10rem 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy {
    padding: 5rem 0;
  }
}
#company .company-philosophy-inner {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-inner {
    gap: 4rem;
  }
}
#company .company-philosophy-mission,
#company .company-philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-mission,
  #company .company-philosophy-values {
    gap: 2rem;
  }
}
#company .company-philosophy-section-title {
  align-self: center;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-section-title {
    font-size: 1.75rem;
  }
}
#company .company-philosophy-statement {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 480px) {
  #company .company-philosophy-statement {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
}
#company .company-philosophy-label {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-label {
    font-size: 0.625rem;
  }
}
#company .company-philosophy-label::before, #company .company-philosophy-label::after {
  display: block;
  width: 2.5rem;
  height: 5px;
  content: "";
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-label::before, #company .company-philosophy-label::after {
    width: 1.875rem;
  }
}
#company .company-philosophy-copy {
  text-align: center;
}
#company .company-philosophy-copy-sub {
  margin-bottom: 0.625rem;
  font-family: var(--font-mincho);
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  line-height: 1.38;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-copy-sub {
    font-size: 1.125rem;
  }
}
#company .company-philosophy-copy-main {
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-copy-main {
    font-size: 1.625rem;
  }
}
#company .company-philosophy-cards {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-cards {
    flex-direction: column;
    gap: 1rem;
  }
}
#company .company-philosophy-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2.25rem;
  min-height: 14.75rem;
  padding: 1.75rem 1.5rem 2.25rem;
  background-color: #f7f7f4;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-card {
    gap: 1.5rem;
    min-height: 0;
    padding: 1.25rem 1.25rem 2rem;
  }
}
#company .company-philosophy-number {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}
#company .company-philosophy-number-badge {
  width: 100%;
  height: 100%;
}
#company .company-philosophy-number-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-text);
  transform: translate(-50%, -50%);
}
#company .company-philosophy-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
#company .company-philosophy-card-title {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-philosophy-card-title {
    font-size: 1.375rem;
  }
}
#company .company-philosophy-card-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#company .company-history {
  position: relative;
  padding: 10.375rem 0 10rem;
  margin-bottom: 0;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #company .company-history {
    padding: 5rem 0;
    margin-bottom: 0;
  }
}
#company .company-history-wave {
  position: absolute;
  top: -8.375rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 8.75rem;
  pointer-events: none;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 53rem 8.75rem;
  transform: scale(-1);
}
@media screen and (max-width: 767.98px) {
  #company .company-history-wave {
    top: -3.375rem;
    height: 3.75rem;
    background-size: 26.5rem 3.75rem;
  }
}
#company .company-history-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-inner {
    gap: 3rem;
  }
}
#company .company-history-heading {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
#company .company-history-title {
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-history-title {
    font-size: 1.625rem;
    text-align: center;
  }
}
#company .company-history-label {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-label {
    font-size: 0.625rem;
  }
}
#company .company-history-label::before, #company .company-history-label::after {
  display: block;
  width: 2.5rem;
  height: 5px;
  content: "";
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-history-label::before, #company .company-history-label::after {
    width: 1.875rem;
  }
}
#company .company-history-cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
#company .company-history-card {
  padding: 4.0625rem 3rem;
  background-color: var(--color-white);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-card {
    padding: 2rem 1.25rem;
  }
}
#company .company-history-card-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
#company .company-history-era-title {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-era-title {
    flex-wrap: wrap;
  }
}
#company .company-history-era-name {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-era-name {
    font-size: 1.375rem;
  }
}
#company .company-history-era-divider {
  display: block;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1px;
  background-color: var(--color-border);
}
#company .company-history-era-subtitle {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #company .company-history-era-subtitle {
    flex: 1;
    font-size: 1.25rem;
  }
}
#company .company-history-era-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 2.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-era-desc {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
#company .company-history-card-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.5rem;
  background-color: #b3b3b3;
}
#company .company-history-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#company .company-history-timeline-row {
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-timeline-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}
#company .company-history-timeline-dt {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-timeline-dt {
    font-size: 0.8125rem;
  }
}
#company .company-history-timeline-dd {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #company .company-history-timeline-dd {
    font-size: 0.8125rem;
  }
}
#company .company-history-timeline-dd-lead {
  display: block;
  margin-bottom: 0.5rem;
}
#company .company-history-timeline-dd-list {
  padding-left: 0;
  margin: 0;
  line-height: 1.75;
  list-style: none;
}
#company .company-history-timeline-dd-list li {
  position: relative;
  padding-left: 1.25rem;
}
#company .company-history-timeline-dd-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  content: "";
  background-color: var(--color-text);
  border-radius: 50%;
  transform: translateY(-50%);
}
#company .company-cta {
  width: 100%;
  overflow: hidden;
}
#company .company-cta-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ========================================
 * Contact Page
 * ======================================== */
#contact {
  /* ----------------------------------------
   * Info Section (TEL/FAX + 注意事項)
   * ---------------------------------------- */
  /* ----------------------------------------
   * Form Section
   * ---------------------------------------- */
  /* ----------------------------------------
   * Form body
   * ---------------------------------------- */
  /* ---------- テキスト入力 ---------- */
  /* ---------- セレクト ---------- */
  /* ---------- テキストエリア ---------- */
  /* ---------- ラジオ ---------- */
  /* ---------- 注記 ---------- */
  /* ---------- ファイル添付 ---------- */
  /* ---------- チェックボックス ---------- */
  /* ---------- Submit ---------- */
}
#contact .contact-info {
  padding: 6.9375rem 0 10rem;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info {
    padding: 2rem 0 5rem;
  }
}
#contact .contact-info-lead {
  margin-bottom: 4rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#contact .contact-info-notes {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-bottom: 5.625rem;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-notes {
    gap: 2.5rem;
    margin-bottom: 3.75rem;
  }
}
#contact .contact-info-note {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-note {
    flex-direction: column;
    gap: 1rem;
  }
}
#contact .contact-info-note-label {
  display: flex;
  flex-shrink: 0;
  gap: 0.625rem;
  align-items: center;
  padding: 1rem 1.5rem;
  white-space: nowrap;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-note-label {
    justify-content: center;
    width: 100%;
  }
}
#contact .contact-info-note-icon {
  width: 1.9375rem;
  height: 2rem;
}
#contact .contact-info-note-span {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-note-span {
    font-size: 0.9375rem;
  }
}
#contact .contact-info-note-body {
  flex: 1;
}
#contact .contact-info-note-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#contact .contact-info-note-text:has(+ .contact-info-note-small) {
  margin-bottom: 0.625rem;
}
#contact .contact-info-note-small {
  font-size: 0.75rem !important;
  letter-spacing: 0.04em;
}
#contact .contact-info-tel-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 4.5rem;
  background-color: var(--color-bg-beige);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-tel-box {
    gap: 0.75rem;
    padding: 2rem 1.5rem;
  }
}
#contact .contact-info-tel-title {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-tel-title {
    font-size: 1.375rem;
  }
}
#contact .contact-info-tel-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-tel-numbers {
    gap: 0.5rem;
  }
}
#contact .contact-info-tel-main {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-tel-main {
    font-size: 0.9375rem;
  }
}
#contact .contact-info-tel-link {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-tel-link {
    text-decoration: underline;
    pointer-events: auto;
  }
}
#contact .contact-info-tel-note {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-info-tel-note {
    font-size: 0.75rem;
  }
}
#contact .contact-form {
  position: relative;
  padding: 11.25rem 0 10rem;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #contact .contact-form {
    padding: 6.25rem 0 5rem;
  }
}
#contact .contact-form-title {
  margin-bottom: 4rem;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-form-title {
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
  }
}
#contact .contact-form-wave {
  position: absolute;
  top: -8.375rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 8.75rem;
  pointer-events: none;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 53rem 8.75rem;
  transform: scale(-1);
}
@media screen and (max-width: 767.98px) {
  #contact .contact-form-wave {
    top: -3.375rem;
    height: 3.75rem;
    background-size: 26.5rem 3.75rem;
  }
}
#contact .contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding: 2.5rem 8.75rem 3.75rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767.98px) {
  #contact .contact-form-body {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
}
#contact .contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#contact .contact-form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8125rem 0.5rem;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-form-row--two {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#contact .contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#contact .contact-form-label-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
#contact .contact-form-label {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#contact .contact-form-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.125rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.4;
  color: var(--color-white);
  letter-spacing: 0.04em;
  background-color: #c0392b;
  border-radius: 0.125rem;
}
#contact .contact-form-required--optional {
  background-color: #888;
}
#contact .contact-form-input {
  width: 100%;
  height: 2.8125rem;
  padding: 0.625rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.04em;
  appearance: none;
  background-color: var(--color-white);
  border: 1px solid #d9d5cc;
  border-radius: 0;
}
#contact .contact-form-input::placeholder {
  color: #b8b4a9;
}
#contact .contact-form-input:focus {
  outline: 2px solid var(--color-text);
  outline-offset: -2px;
}
#contact .contact-form-select {
  position: relative;
}
#contact .contact-form-select::after {
  position: absolute;
  top: 50%;
  right: 1.125rem;
  width: 0.5rem;
  height: 0.5rem;
  pointer-events: none;
  content: "";
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  transform: translateY(-75%) rotate(45deg);
}
#contact .contact-form-select-input {
  width: 100%;
  height: 2.8125rem;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.04em;
  appearance: none;
  background-color: var(--color-white);
  border: 1px solid #d9d5cc;
  border-radius: 0;
}
#contact .contact-form-select-input:focus {
  outline: 2px solid var(--color-text);
  outline-offset: -2px;
}
#contact .contact-form-textarea {
  width: 100%;
  min-height: 15rem;
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
  appearance: none;
  resize: vertical;
  background-color: var(--color-white);
  border: 1px solid #d9d5cc;
  border-radius: 0;
}
#contact .contact-form-textarea::placeholder {
  color: #b8b4a9;
}
#contact .contact-form-textarea:focus {
  outline: 2px solid var(--color-text);
  outline-offset: -2px;
}
#contact .contact-form-label-group:has(+ .contact-form-radios) {
  margin-bottom: 0.25rem;
}
#contact .contact-form-radios {
  display: grid;
  grid-template-columns: 16rem 9.1875rem 1fr;
  gap: 2.375rem 0;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-form-radios {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
#contact .contact-form-radios--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media screen and (max-width: 767.98px) {
  #contact .contact-form-radios--inline {
    gap: 0.75rem 1.25rem;
  }
}
#contact .contact-form-radio {
  position: relative;
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  cursor: pointer;
}
#contact .contact-form-radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
#contact .contact-form-radio-mark {
  position: relative;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-white);
  border: 1px solid #b8b4a9;
  border-radius: 50%;
}
#contact .contact-form-radio-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background-color: var(--color-text);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--duration);
  transform: translate(-50%, -50%);
}
#contact .contact-form-radio input:checked + .contact-form-radio-mark::after {
  opacity: 1;
}
#contact .contact-form-radio-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#contact *:has(+ .contact-form-note) {
  margin-bottom: 0.25rem;
}
#contact .contact-form-note {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#contact .contact-form-file {
  position: relative;
  display: block;
  cursor: pointer;
}
#contact .contact-form-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
#contact .contact-form-file-label {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  width: 100%;
  height: 2.8125rem;
  padding: 0.625rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #b3b3b3;
  background-color: var(--color-white);
  border: 1px solid #d9d5cc;
}
#contact .contact-form-file-icon {
  position: relative;
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
}
#contact .contact-form-file-icon::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 0.625rem;
  content: "";
  background-color: currentcolor;
  transform: translateX(-50%);
}
#contact .contact-form-file-icon::after {
  position: absolute;
  top: 0.0625rem;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}
#contact .contact-form-row--agree {
  gap: 0.75rem;
}
#contact *:has(+ .contact-form-checkbox) {
  margin-bottom: 0.25rem;
}
#contact .contact-form-checkbox {
  position: relative;
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  cursor: pointer;
}
#contact .contact-form-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
#contact .contact-form-checkbox-mark {
  position: relative;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-white);
  border: 1px solid #b8b4a9;
}
#contact .contact-form-checkbox-mark::after {
  position: absolute;
  top: 0.0625rem;
  left: 0.3125rem;
  width: 0.3125rem;
  height: 0.625rem;
  content: "";
  border-right: 2px solid var(--color-text);
  border-bottom: 2px solid var(--color-text);
  opacity: 0;
  transition: opacity var(--duration);
  transform: rotate(45deg);
}
#contact .contact-form-checkbox input:checked + .contact-form-checkbox-mark::after {
  opacity: 1;
}
#contact .contact-form-checkbox-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#contact .contact-form-agree-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#contact .contact-form-agree-text a {
  color: #b3b3b3;
  text-decoration: none;
}
@media (any-hover: hover) {
  #contact .contact-form-agree-text a:hover {
    text-decoration: underline;
  }
}
#contact *:has(+ .contact-form-submit) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #contact *:has(+ .contact-form-submit) {
    margin-bottom: 2rem;
  }
}
#contact .contact-form-submit {
  display: flex;
  justify-content: center;
}
#contact .contact-form-submit .c-btn {
  max-width: 16.875rem;
  border: none;
}

/* ========================================
 * Feature Page — 東京パックとは
 * ======================================== */
@keyframes feature-fv-fade-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dashed-flow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -200;
  }
}
.c-btn.--dashed {
  position: relative;
  overflow: hidden;
  color: var(--color-text);
  background-color: transparent;
  border: 2px dashed var(--color-text);
}
.c-btn.--dashed::before {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  content: "";
  border: 2px dashed var(--color-text);
  border-radius: 60px;
  animation: dashed-flow 12s linear infinite;
}
.c-btn.--dashed::after {
  background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='17'%20viewBox='0%200%2019%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.23333%200.222168L0.0111111%201.29995L14.4556%208.27772L0%2015.2666L2.22222%2016.3444L18.9%208.27772L2.23333%200.222168Z'%20fill='%23444'/%3e%3c/svg%3e");
}
@media (any-hover: hover) {
  .c-btn.--dashed:hover {
    color: var(--color-white);
    background-color: var(--color-text);
  }
  .c-btn.--dashed:hover::after {
    background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='17'%20viewBox='0%200%2019%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.23333%200.222168L0.0111111%201.29995L14.4556%208.27772L0%2015.2666L2.22222%2016.3444L18.9%208.27772L2.23333%200.222168Z'%20fill='white'/%3e%3c/svg%3e");
  }
}

#feature .feature-fv {
  opacity: 0;
  animation: feature-fv-fade-in 1.2s ease-out forwards;
  animation-delay: 0.2s;
}
#feature .c-page-fv {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767.98px) {
  #feature .c-page-fv {
    margin-bottom: 2rem;
  }
}
#feature .feature-nav {
  margin-bottom: 10.9375rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-nav {
    margin-bottom: 5rem;
  }
}
#feature .feature-nav-list {
  display: flex;
  gap: 4.6875rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  list-style: none;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-nav-list {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    justify-content: flex-start;
    max-width: fit-content;
    margin-inline: auto;
  }
}
#feature .feature-nav-link {
  position: relative;
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  padding-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1;
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-nav-link {
    font-size: 0.75rem;
  }
}
#feature .feature-nav-link::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #feature .feature-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
#feature .feature-nav-arrow {
  width: 0.375rem;
  height: 0.6875rem;
  object-fit: contain;
  transform: rotate(90deg);
}
#feature .feature-message {
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-message {
    margin-bottom: 5rem;
  }
}
#feature .feature-message-body {
  display: flex;
  gap: 3.75rem;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  #feature .feature-message-body {
    flex-direction: column;
    gap: 3rem;
  }
}
#feature .feature-message-content {
  flex-shrink: 0;
  width: 27.5rem;
}
@media screen and (max-width: 1024px) {
  #feature .feature-message-content {
    width: 100%;
  }
}
#feature .feature-message-sub {
  margin-bottom: 0.625rem;
  font-family: var(--font-mincho);
  font-size: 1.375rem;
  font-weight: var(--fw-medium);
  line-height: 1.38;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-message-sub {
    font-size: 1rem;
  }
}
#feature .feature-message-title {
  margin-bottom: 2.5rem;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-message-title {
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
  }
}
#feature .feature-message-text {
  font-family: var(--font-sans);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-message-text {
    font-size: 0.875rem;
  }
}
#feature .feature-message-text-p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 2.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-message-text-p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
#feature .feature-message-matrix {
  width: 100%;
  max-width: 46.8125rem;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  #feature .feature-message-matrix {
    margin-inline: auto;
  }
}
@media screen and (max-width: 767.98px) {
  #feature .feature-message-matrix {
    max-width: 31.25rem;
    margin-inline: auto;
  }
}
#feature .feature-message-matrix-img {
  display: block;
  width: 100%;
  height: auto;
}
#feature .feature-point {
  position: relative;
  margin-bottom: 10rem;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point {
    margin-bottom: 3.75rem;
  }
}
#feature .feature-point:not(.feature-point--reverse) .feature-point-inner {
  min-height: 41.9375rem;
}
#feature .feature-point .feature-point-title span:last-child {
  transform: translateY(9.8125rem);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point .feature-point-title span:last-child {
    transform: translateY(6.25rem);
  }
}
@media screen and (max-width: 480px) {
  #feature .feature-point .feature-point-title span:last-child {
    transform: translateY(5.8125rem);
  }
}
#feature .feature-point:not(.feature-point--reverse) .feature-point-body {
  padding-top: 14.125rem;
}
#feature .feature-point-inner {
  display: flex;
  gap: 0;
  align-items: flex-start;
  min-height: 38.5rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-inner {
    flex-direction: column;
    min-height: auto;
  }
}
#feature .feature-point-image {
  flex-shrink: 0;
  width: 43.125%;
  aspect-ratio: 621/616;
  overflow: hidden;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-image {
    width: 95%;
    height: 25rem;
    aspect-ratio: auto;
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
@media screen and (max-width: 480px) {
  #feature .feature-point-image {
    width: 94%;
  }
}
#feature .feature-point-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#feature .feature-point-content {
  position: relative;
  display: flex;
  flex: 1;
  padding: 1.65% 9% 1.5% 7%;
}
@media screen and (max-width: 1024px) {
  #feature .feature-point-content {
    padding: 1.65% 4% 1.5%;
  }
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-content {
    gap: 2rem;
    justify-content: space-around;
    width: 100%;
    padding: 2.5rem 1.25rem 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  #feature .feature-point-content {
    gap: 1.5rem;
  }
}
#feature .feature-point--reverse .feature-point-content {
  padding: 1.65% 9% 1.5% 4.5%;
}
@media screen and (max-width: 1024px) {
  #feature .feature-point--reverse .feature-point-content {
    padding: 1.65% 4% 1.5%;
  }
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point--reverse .feature-point-content {
    padding: 2.5rem 1.25rem 0;
  }
}
#feature .feature-point--reverse .feature-point-body {
  max-width: 27.5rem;
}
#feature .feature-point-label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-label {
    font-size: 0.625rem;
  }
}
#feature .feature-point-label::before, #feature .feature-point-label::after {
  display: block;
  width: 2.5rem;
  height: 5px;
  content: "";
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-label::before, #feature .feature-point-label::after {
    width: 1.875rem;
  }
}
#feature .feature-point-label-num {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  writing-mode: horizontal-tb;
}
#feature .feature-point-label:has(+ .feature-point-title) {
  margin-bottom: 0.625rem;
}
#feature .feature-point-title {
  flex-shrink: 0;
  font-family: var(--font-mincho);
  font-size: 2.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-title {
    height: fit-content;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 480px) {
  #feature .feature-point-title {
    font-size: 1.625rem;
    line-height: 1.3;
  }
}
#feature .feature-point-title span {
  display: block;
}
#feature .feature-point-title span:not(:last-child) {
  margin-bottom: 3rem;
}
#feature .feature-point-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: end;
  padding-top: 15.625rem;
  margin-left: 2.875rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-body {
    flex: 1;
    gap: 2rem;
    max-width: 23.75rem;
    padding-top: 10.625rem;
    margin-left: 0;
  }
}
#feature .feature-point-text {
  max-width: 28.125rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 2.35;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
#feature .feature-point--reverse .feature-point-image {
  order: 2;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-point--reverse .feature-point-image {
    order: -1;
    margin-left: auto;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
#feature .feature-flow {
  margin-bottom: 16.25rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow {
    margin-bottom: 6.25rem;
  }
}
#feature .feature-flow-box {
  width: 62.25rem;
  max-width: calc(100% - 2.5rem);
  min-height: 30.75rem;
  padding: 3.125rem 2.5rem 3rem;
  margin-inline: auto;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-box {
    width: 100%;
    min-height: auto;
    padding: 3rem 1.25rem;
  }
}
#feature .feature-flow-title {
  margin-bottom: 4.5rem;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-title {
    margin-bottom: 2.25rem;
    font-size: 1.625rem;
  }
}
#feature .feature-flow-steps {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-steps {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    max-width: 30rem;
    margin-inline: auto;
    margin-bottom: 1.5rem;
  }
}
#feature .feature-flow-step {
  position: relative;
  flex-shrink: 0;
  width: 10.125rem;
  height: 11.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-step {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 1.25rem 1.5rem;
  }
}
#feature .feature-flow-step-title {
  position: absolute;
  top: 4.1875rem;
  right: 0;
  left: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-step-title {
    position: static;
    font-size: 0.875rem;
    text-align: left;
  }
}
#feature .feature-flow-step-desc {
  position: absolute;
  top: 5.9375rem;
  right: 0.75rem;
  left: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-step-desc {
    position: static;
    right: auto;
    left: auto;
    width: 100%;
    font-size: 0.6875rem;
    text-align: left;
  }
}
#feature .feature-flow-num {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-align: center;
  border: 1px dashed var(--color-text);
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-num {
    position: static;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.625rem;
  }
}
#feature .feature-flow-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 11.25rem;
  font-size: 0.875rem;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-flow-arrow {
    height: auto;
    margin-inline: auto;
    transform: rotate(90deg);
  }
}
#feature .feature-flow-cta {
  display: flex;
  justify-content: center;
}
#feature .feature-printing {
  position: relative;
  margin-bottom: 4.125rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing {
    margin-bottom: 2.5rem;
  }
}
#feature .feature-printing-wave {
  position: absolute;
  top: -8.375rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 8.75rem;
  pointer-events: none;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 53rem 8.75rem;
  transform: scale(-1);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-wave {
    top: -3.375rem;
    height: 3.75rem;
    background-size: 26.5rem 3.75rem;
  }
}
#feature .feature-printing-wave--bottom {
  top: auto;
  bottom: -8.375rem;
  background-position: bottom;
  transform: none;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-wave--bottom {
    bottom: -3.375rem;
  }
}
#feature .feature-printing-bg {
  position: relative;
  padding-top: 11.25rem;
  padding-bottom: 10rem;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-bg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
#feature .feature-printing-heading {
  position: absolute;
  top: -7.9375rem;
  right: 11.25rem;
  z-index: 3;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  #feature .feature-printing-heading {
    right: 1.25rem;
  }
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-heading {
    top: -3.375rem;
    right: var(--padding-inner);
  }
}
#feature .feature-printing-heading-title {
  font-family: var(--font-mincho);
  font-size: 2.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
}
#feature .feature-printing-heading-title span {
  display: block;
}
#feature .feature-printing-heading-title span:last-child {
  transform: translateY(1rem);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-heading-title {
    font-size: 1.75rem;
  }
}
#feature .feature-printing-title {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 1024px) {
  #feature .feature-printing-title {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}
#feature .feature-printing-title-text {
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-title-text {
    font-size: 1.5rem;
  }
}
#feature .feature-printing-label {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-label {
    font-size: 0.625rem;
  }
}
#feature .feature-printing-label::before, #feature .feature-printing-label::after {
  display: block;
  width: 2.5rem;
  height: 5px;
  content: "";
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-label::before, #feature .feature-printing-label::after {
    width: 1.875rem;
  }
}
#feature .feature-printing-lead {
  margin-bottom: 2.8125rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  line-height: 2.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-lead {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
#feature .feature-printing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-cards {
    grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
    gap: 1.25rem;
  }
}
#feature .feature-printing-card {
  display: flex;
  flex-direction: column;
  height: 28.8125rem;
  padding: 1.5rem 1.5rem 2.5rem;
  color: var(--color-text);
  text-decoration: none;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  transition: box-shadow 0.3s;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-card {
    height: auto;
    padding: 1.25rem 1rem 1.5rem;
  }
}
@media (any-hover: hover) {
  #feature .feature-printing-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  #feature .feature-printing-card:hover .feature-printing-card-thumb-img {
    transform: scale(1.05);
  }
  #feature .feature-printing-card:hover .feature-printing-card-link::after {
    animation: c-btn-arrow-underline 0.8s ease;
  }
  #feature .feature-printing-card:hover .feature-printing-card-link-icon {
    transform: translateX(4px);
  }
}
#feature .feature-printing-card-title {
  margin-bottom: 0.9375rem;
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-card-title {
    font-size: 1.25rem;
  }
}
#feature .feature-printing-card-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-card-desc {
    font-size: 0.8125rem;
  }
}
#feature .feature-printing-card-link {
  position: relative;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: space-between;
  width: 11.0625rem;
  padding-bottom: 0.5rem;
  margin-top: auto;
  margin-left: auto;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  text-decoration: none;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-card-link {
    margin-top: 1rem;
  }
}
#feature .feature-printing-card-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background-image: linear-gradient(90deg, rgba(68, 68, 68, 0.3) 50%, transparent 50%);
  background-repeat: repeat-x;
  background-size: 10px 1px;
}
#feature .feature-printing-card-link-icon {
  width: 0.875rem;
  height: 0.75rem;
  transition: transform 0.3s;
}
#feature .feature-printing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2.9375rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-card-head {
    margin-bottom: 1rem;
  }
}
#feature .feature-printing-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border: 1px dashed var(--color-text);
  border-radius: 50%;
}
#feature .feature-printing-card-thumb {
  width: 8.5625rem;
  height: 8.5625rem;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-printing-card-thumb {
    width: 6.25rem;
    height: 6.25rem;
  }
}
#feature .feature-printing-card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#feature .feature-processing {
  position: relative;
  padding-top: 6.75rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing {
    padding-top: var(--section-padding);
    margin-bottom: var(--section-padding);
  }
}
#feature .feature-processing-title {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  #feature .feature-processing-title {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}
#feature .feature-processing-title-text {
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-title-text {
    font-size: 1.5rem;
  }
}
#feature .feature-processing-label {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-label {
    font-size: 0.625rem;
  }
}
#feature .feature-processing-label::before, #feature .feature-processing-label::after {
  display: block;
  width: 2.5rem;
  height: 5px;
  content: "";
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-label::before, #feature .feature-processing-label::after {
    width: 1.875rem;
  }
}
#feature .feature-processing-lead {
  margin-bottom: 5.3125rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  line-height: 1.8;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-lead {
    margin-bottom: 3.75rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
#feature .feature-processing-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-categories {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 3.75rem;
  }
}
#feature .feature-processing-category {
  padding: 1rem 1.25rem 1.5rem;
  background-color: #f5f5f5;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-category {
    padding: 1rem;
  }
}
#feature .feature-processing-category-title {
  margin-bottom: 0.25rem;
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-category-title {
    font-size: 1.25rem;
  }
}
#feature .feature-processing-category-list {
  list-style: none;
}
#feature .feature-processing-category-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem 0.75rem 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.04em;
}
#feature .feature-processing-category-link::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  clip-path: inset(0 0 0 0);
  content: "";
  background-color: rgba(68, 68, 68, 0.2);
  transition: clip-path 0.3s ease;
}
#feature .feature-processing-category-link::after {
  flex-shrink: 0;
  width: 0.4375rem;
  height: 0.375rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20width='19'%20height='17'%20viewBox='0%200%2019%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M2.23333%200.222168L0.0111111%201.29995L14.4556%208.27772L0%2015.2666L2.22222%2016.3444L18.9%208.27772L2.23333%200.222168Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
  transition: transform 0.3s;
}
@media (any-hover: hover) {
  #feature .feature-processing-category-link:hover::before {
    animation: c-btn-arrow-underline 0.8s ease;
  }
  #feature .feature-processing-category-link:hover::after {
    transform: translateX(4px);
  }
}
#feature .feature-processing-category-thumb {
  width: 6.25rem;
  height: 6.25rem;
  margin-bottom: 2rem;
  margin-left: auto;
  overflow: hidden;
  border-radius: 0.4375rem;
}
#feature .feature-processing-category-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#feature .feature-processing-category-desc {
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-processing-category-desc {
    font-size: 0.8125rem;
  }
}
#feature .feature-equipment {
  position: relative;
  margin-bottom: 10.1875rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment {
    margin-bottom: var(--section-padding);
  }
}
#feature .feature-equipment-wave {
  position: absolute;
  top: -8.375rem;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 8.75rem;
  pointer-events: none;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 53rem 8.75rem;
  transform: scale(-1);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-wave {
    top: -3.375rem;
    height: 3.75rem;
    background-size: 26.5rem 3.75rem;
  }
}
#feature .feature-equipment-wave--bottom {
  top: auto;
  bottom: -8.375rem;
  background-position: bottom;
  transform: none;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-wave--bottom {
    bottom: -3.375rem;
  }
}
#feature .feature-equipment-bg {
  position: relative;
  padding: 8.75rem 0 8rem;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-bg {
    padding: var(--section-padding) 0 var(--section-padding);
  }
}
#feature .feature-equipment-title {
  margin-bottom: 5rem;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-title {
    margin-bottom: 2.5rem;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-table-wrap {
    overflow-x: auto;
  }
}
#feature .feature-equipment-table {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.4;
  color: #000;
  table-layout: fixed;
  border-collapse: collapse;
}
#feature .feature-equipment-table > thead > tr > th:nth-child(1), #feature .feature-equipment-table > tbody > tr > td:nth-child(1) {
  width: 19.25rem;
}
#feature .feature-equipment-table > thead > tr > th:nth-child(2), #feature .feature-equipment-table > tbody > tr > td:nth-child(2) {
  width: 19.25rem;
}
#feature .feature-equipment-table > thead > tr > th:nth-child(3), #feature .feature-equipment-table > tbody > tr > td:nth-child(3) {
  width: 19.25rem;
}
#feature .feature-equipment-table > thead > tr > th:nth-child(4), #feature .feature-equipment-table > tbody > tr > td:nth-child(4) {
  width: 9.75rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-table {
    min-width: 40rem;
    font-size: 0.8125rem;
    table-layout: auto;
  }
  #feature .feature-equipment-table > thead > tr > th, #feature .feature-equipment-table > tbody > tr > td {
    width: auto;
  }
}
#feature .feature-equipment-table thead th {
  padding: 0.625rem 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-table thead th {
    padding: 0.625rem;
  }
}
#feature .feature-equipment-table tbody td {
  padding: 0.625rem 1.25rem;
  background-color: var(--color-white);
  border: 1px solid #b3b3b3;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-table tbody td {
    padding: 0.625rem;
  }
}
#feature .feature-equipment-table .is-count {
  text-align: right;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-equipment-table .is-count {
    width: 5rem;
  }
}
#feature .feature-closing {
  display: block;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing {
    margin-bottom: 5rem;
  }
}
#feature .feature-closing-inner {
  display: grid;
  grid-template-columns: 1fr 49.25%;
  gap: 3.75rem;
  align-items: flex-start;
  max-width: 90rem;
  padding-left: 12.5%;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  #feature .feature-closing-inner {
    padding-left: var(--padding-inner);
  }
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
}
#feature .feature-closing-text {
  max-width: 35.625rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing-text {
    max-width: 100%;
    padding: 2.5rem 1.25rem 0;
  }
}
#feature .feature-closing-title {
  margin-bottom: 2.5rem;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing-title {
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
  }
}
#feature .feature-closing-body {
  display: block;
}
#feature .feature-closing-text-p {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  line-height: 2.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#feature .feature-closing-text-p:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing-text-p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing-text-p {
    font-size: 0.875rem;
    line-height: 2;
  }
}
#feature .feature-closing-image {
  width: 100%;
  aspect-ratio: 621/597;
  overflow: hidden;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing-image {
    order: -1;
    width: 95%;
    height: 25rem;
    margin-left: auto;
    border-radius: 0.5rem 0 0 0.5rem;
  }
}
#feature .feature-closing-image-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 621/597;
  object-fit: cover;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-closing-image-photo {
    height: 100%;
    aspect-ratio: auto;
  }
}
#feature .feature-items {
  display: block;
}
#feature .feature-items-title {
  margin-bottom: 2.5rem;
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #feature .feature-items-title {
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
  }
}
#feature .feature-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-items-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
  }
}
@media (any-hover: hover) {
  #feature .feature-items-figure:hover .feature-items-img {
    transform: scale(1.05);
  }
}
#feature .feature-items-picture {
  display: block;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-items-picture {
    border-radius: 0.375rem;
  }
}
#feature .feature-items-img {
  width: 100%;
  height: auto;
  aspect-ratio: 349/234;
  object-fit: cover;
  transition: transform 0.4s ease;
}
#feature .feature-items-picture {
  margin-bottom: 0.5rem;
}
#feature .feature-items-caption {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #feature .feature-items-caption {
    font-size: 0.75rem;
  }
}
#feature .c-cta-contact {
  padding-block: 3.75rem 3.75rem;
}
@media screen and (max-width: 767.98px) {
  #feature .c-cta-contact {
    padding-block: 2.5rem 2.5rem;
  }
}

.footer {
  padding-top: 3.75rem;
  padding-bottom: 1.875rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 767.98px) {
  .footer {
    padding-top: 2.5rem;
    padding-bottom: 1.25rem;
  }
}

.footer-inner {
  position: relative;
}

.footer-top {
  position: relative;
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid var(--color-border);
}
@media screen and (max-width: 767.98px) {
  .footer-top {
    flex-wrap: wrap;
    gap: 2.25rem 1.25rem;
    justify-content: space-between;
    padding-bottom: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .footer-top {
    gap: 0;
  }
}

.footer-left {
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .footer-left {
    display: contents;
  }
}

.footer-logo {
  display: flex;
  gap: 0.9375rem;
  align-items: center;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 767.98px) {
  .footer-logo {
    gap: 0.625rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .footer-logo {
    order: 1;
  }
}

.footer-logo-mark {
  width: 5.375rem;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .footer-logo-mark {
    width: 3.75rem;
  }
}

.footer-logo-text {
  width: 13.0625rem;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .footer-logo-text {
    width: 9.375rem;
  }
}

.footer-address {
  font-size: 1rem;
  font-style: normal;
  line-height: 1.81;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767.98px) {
  .footer-address {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 480px) {
  .footer-address {
    order: 3;
    width: 100%;
    margin-bottom: 1rem;
  }
}

*:has(+ .footer-sns) {
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  *:has(+ .footer-sns) {
    margin-bottom: 0;
  }
}

.footer-sns {
  display: flex;
  gap: 1.3125rem;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .footer-sns {
    order: 4;
    width: 100%;
  }
}

.footer-sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration);
}
@media (any-hover: hover) {
  .footer-sns-link:hover {
    transform: scale(1.2);
  }
}

.footer-sns-icon {
  display: block;
  max-width: 1.375rem;
  height: auto;
}

.footer-nav {
  display: flex;
  gap: 5rem 8.5625rem;
  margin-bottom: 1rem;
  margin-left: 24%;
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 1024px) {
  .footer-nav {
    gap: 2.5rem 3.75rem;
    margin-left: 15%;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem 2.5rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav {
    order: 2;
    width: 100%;
    margin-bottom: 2.25rem;
  }
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 1024px) {
  .footer-nav-col {
    gap: 1rem;
  }
}

.footer-nav-link {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.13;
  color: var(--color-text);
  letter-spacing: 0.03em;
}
.footer-nav-link::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  .footer-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-nav-link {
    font-size: 0.875rem;
  }
}

.footer-pagetop {
  position: absolute;
  top: 1.5rem;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
  background: none;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color var(--duration), background-color var(--duration);
}
@media (any-hover: hover) {
  .footer-pagetop:hover {
    background-color: var(--color-white);
    border-color: var(--color-text);
  }
  .footer-pagetop:hover .footer-pagetop-icon {
    filter: invert(1);
  }
}
@media screen and (max-width: 767.98px) {
  .footer-pagetop {
    top: 0;
    right: 0;
    width: 2.25rem;
    height: 2.25rem;
  }
}

.footer-pagetop-icon {
  width: 100%;
  height: 100%;
  transition: filter var(--duration);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 3.75rem 1.875rem;
}
@media screen and (max-width: 767.98px) {
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 0.9375rem;
    align-items: center;
    padding-block: 1.875rem 1.25rem;
  }
}

.footer-copyright {
  font-size: 0.6875rem;
  color: rgba(68, 68, 68, 0.7);
}

.footer-privacy {
  position: relative;
  font-size: 0.8125rem;
  color: var(--color-text);
  text-decoration: none;
}
.footer-privacy::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: width var(--duration), left var(--duration);
}

@media (any-hover: hover) {
  .footer-privacy:hover::after {
    left: 50%;
    width: 0;
  }
}
.header {
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: 0 0 1.5625rem oklch(from var(--color-black) l c h/10%);
  transition: background-color var(--duration), box-shadow var(--duration);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-inline: 3.6875rem;
}
@media screen and (max-width: 1024px) {
  .header-inner {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767.98px) {
  .header-inner {
    padding-inline: 1rem 0;
  }
}

.header-logo {
  display: flex;
  flex-shrink: 0;
  gap: 0.8125rem;
  align-items: center;
}

.header-logo-mark {
  width: 5.375rem;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .header-logo-mark {
    width: 2.5rem;
  }
}

.header-logo-text {
  width: 13.0625rem;
  height: auto;
}
@media screen and (max-width: 767.98px) {
  .header-logo-text {
    width: 8.75rem;
  }
}

.header-nav {
  display: block;
  flex: 1;
  height: inherit;
  container-type: inline-size;
}
@media screen and (max-width: 767.98px) {
  .header-nav {
    display: none;
  }
}

.header-nav-list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: flex-end;
  height: inherit;
}
@media screen and (max-width: 1024px) {
  .header-nav-list {
    gap: 1.25rem;
  }
}

.header-nav-item {
  height: inherit;
}

.header-nav-link {
  display: flex;
  align-items: center;
  height: inherit;
  font-size: clamp(13px, 2cqi, 1.0625rem);
  font-weight: var(--fw-medium);
  line-height: 1.18;
  color: var(--color-text);
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.header-nav-link span {
  position: relative;
}
.header-nav-link span::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}

@media (any-hover: hover) {
  .header-nav-link:hover span::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.header-nav-contact {
  display: flex;
  align-items: center;
  height: inherit;
  margin-inline-start: -0.5rem;
}

.header-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0.625rem 1.5rem;
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
  background-color: var(--color-text);
  border: 1px solid var(--color-text);
  border-radius: 3.75rem;
  transition: background-color var(--duration), color var(--duration);
}
.header-contact-link::after {
  display: none;
}

@media (any-hover: hover) {
  .header-contact-link:hover {
    color: var(--color-text);
    background-color: var(--color-white);
  }
}
.header-hamburger {
  position: relative;
  z-index: 999;
  display: none;
  width: 4.375rem;
  height: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  background-color: var(--color-text);
  border: none;
  outline: none;
  transition: background-color var(--duration);
}
@media screen and (max-width: 767.98px) {
  .header-hamburger {
    display: block;
  }
}

.header-hamburger-line {
  position: relative;
  left: 50%;
  display: block;
  width: 1.5625rem;
  height: 1px;
  background-color: var(--color-white);
  transition: top calc(var(--duration) * 1.67), opacity calc(var(--duration) * 1.67), rotate calc(var(--duration) * 1.67);
  translate: -50% 0;
}
.header-hamburger-line:nth-of-type(1) {
  top: -0.5rem;
}
.header-hamburger-line:nth-of-type(2) {
  top: 0;
}
.header-hamburger-line:nth-of-type(3) {
  top: 0.5rem;
}

.header-hamburger.is-open .header-hamburger-line:nth-of-type(1) {
  top: 0;
  rotate: 45deg;
}
.header-hamburger.is-open .header-hamburger-line:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger.is-open .header-hamburger-line:nth-of-type(3) {
  top: -2px;
  rotate: -45deg;
}

.header-drawer {
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 900;
  display: none;
  width: 100%;
  height: calc(100svh - var(--header-height));
  padding-bottom: 6.875rem;
  overflow-y: auto;
  background-color: #eff4f5;
  scrollbar-width: none;
}
.header-drawer::-webkit-scrollbar {
  display: none;
}

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

.header-drawer-link {
  display: block;
  padding: 1.25rem 2rem;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}

*:has(+ .header-drawer-contact) {
  margin-bottom: 2.5rem;
}

.header-drawer-contact {
  margin-left: 2rem;
  border-bottom: none;
}

.header-drawer-contact-link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 11.25rem;
  padding: 0.9375rem 0;
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-text);
  border-radius: 3.75rem;
}
.header-drawer-contact-link::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  aspect-ratio: 1/1;
  content: "";
  border-top: 2px solid currentcolor;
  border-right: 2px solid currentcolor;
  transition: translate var(--duration);
  rotate: 45deg;
  translate: 0 -50%;
}

@media (any-hover: hover) {
  .header-drawer-contact-link:hover::after {
    translate: 0.25rem -50%;
  }
}
/* ========================================
 * News Archive Page
 * Figma nodeId: 21:3910
 * ======================================== */
#news {
  /* ----------------------------------------
   * Archive Section
   * ---------------------------------------- */
  /* ---------- Category Filter ---------- */
  /* ---------- Article List ---------- */
  /* ---------- Pagination ---------- */
  /* ---------- Empty State ---------- */
}
#news .news-archive {
  padding-top: 3.4375rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}
#news .news-archive:has(+ .c-cta-bg) {
  padding-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive:has(+ .c-cta-bg) {
    padding-bottom: 0;
  }
}
#news .news-archive-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive-filter {
    gap: 1rem 1.5rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  #news .news-archive-filter {
    gap: 0.75rem 1.25rem;
    margin-bottom: 2rem;
  }
}
#news .news-archive-filter-link {
  display: flex;
  gap: 0.8125rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  #news .news-archive-filter-link:hover {
    opacity: 0.7;
  }
}
#news .news-archive-filter-link.is-active {
  font-weight: var(--fw-bold);
}
#news .news-archive-filter-link-text {
  position: relative;
}
#news .news-archive-filter-link-text::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #news .news-archive-filter-link:hover .news-archive-filter-link-text::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
#news .news-archive-filter-link-icon {
  width: 0.375rem;
  height: 0.6875rem;
  object-fit: contain;
  transform: rotate(90deg);
}
#news .news-archive-list {
  padding: 0;
  margin-inline: auto;
  list-style: none;
}
#news .news-archive-list-item:first-child .news-archive-list-link {
  border-top: 1px solid var(--color-border);
}
#news .news-archive-list-link {
  display: grid;
  grid-template-columns: 14.0625rem minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: opacity var(--duration);
}
@media screen and (max-width: 767.98px) {
  #news .news-archive-list-link {
    grid-template-columns: 1fr;
    gap: 0.5rem 1rem;
    padding: 1rem 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  #news .news-archive-list-link {
    gap: 0.375rem 0.75rem;
    padding: 0.75rem 0.5rem;
  }
}
@media (any-hover: hover) {
  #news .news-archive-list-link:hover {
    opacity: 0.7;
  }
}
#news .news-archive-list-meta {
  display: grid;
  flex-shrink: 0;
  grid-template-columns: 5rem 6.875rem;
  gap: 2.1875rem;
  align-items: baseline;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive-list-meta {
    grid-template-columns: 4.5rem 6rem;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  #news .news-archive-list-meta {
    grid-template-columns: 4.25rem 5rem;
    gap: 0.75rem;
  }
}
#news .news-archive-list-date {
  flex: 0 0 5rem;
  width: 5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive-list-date {
    flex: 0 0 4.5rem;
    width: 4.5rem;
  }
}
@media screen and (max-width: 480px) {
  #news .news-archive-list-date {
    flex: 0 0 4.25rem;
    width: 4.25rem;
    font-size: 0.6875rem;
  }
}
#news .news-archive-list-cat {
  flex: 0 0 6.875rem;
  width: 6.875rem;
  overflow: hidden;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive-list-cat {
    flex: 0 0 6rem;
    width: 6rem;
  }
}
@media screen and (max-width: 480px) {
  #news .news-archive-list-cat {
    flex: 0 0 5rem;
    width: 5rem;
    font-size: 0.75rem;
  }
}
#news .news-archive-list-title {
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 2.25;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive-list-title {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 480px) {
  #news .news-archive-list-title {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
#news *:has(+ .news-archive-pager) {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  #news *:has(+ .news-archive-pager) {
    margin-bottom: 2.5rem;
  }
}
#news .news-archive-pager {
  display: flex;
  align-items: center;
  justify-content: center;
}
#news .news-archive-pager-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 2.35;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  #news .news-archive-pager-numbers {
    gap: 0.5rem;
    font-size: 0.9375rem;
  }
}
#news .news-archive-pager-numbers a,
#news .news-archive-pager-numbers span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration), color var(--duration);
}
#news .news-archive-pager-numbers a {
  color: #b3b3b3;
  opacity: 0.5;
}
#news .news-archive-pager-numbers a::before {
  position: absolute;
  right: 0.5rem;
  bottom: 0.125rem;
  left: 0.5rem;
  height: 1px;
  content: "";
  background-color: currentcolor;
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
#news .news-archive-pager-numbers .current {
  font-weight: var(--fw-medium);
  color: var(--color-text);
  opacity: 1;
}
#news .news-archive-pager-numbers .dots {
  opacity: 0.5;
}
#news .news-archive-pager-numbers .next,
#news .news-archive-pager-numbers .prev {
  font-size: 0;
  color: transparent;
  opacity: 1;
}
#news .news-archive-pager-numbers .next::after,
#news .news-archive-pager-numbers .prev::after {
  display: inline-block;
  width: 0.375rem;
  height: 0.6875rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='6'%20height='11'%20viewBox='0%200%206%2011.3333'%20fill='none'%3e%3cpath%20d='M0.705262%200.148112L0.00350877%200.866633L4.56493%205.51848L0%2010.1777L0.701754%2010.8963L5.96842%205.51848L0.705262%200.148112Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
  transition: transform var(--duration) ease;
}
#news .news-archive-pager-numbers .prev::after {
  transform: scaleX(-1);
}
@media (any-hover: hover) {
  #news .news-archive-pager-numbers a:not(.current, .next, .prev):hover {
    color: var(--color-text);
    opacity: 1;
  }
  #news .news-archive-pager-numbers a:not(.current, .next, .prev):hover::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
  #news .news-archive-pager-numbers .next:hover::after {
    transform: translateX(0.125rem);
  }
  #news .news-archive-pager-numbers .prev:hover::after {
    transform: scaleX(-1) translateX(0.125rem);
  }
}
#news .news-archive-empty {
  padding: 5rem 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--color-text);
  text-align: center;
}

/* ========================================
 * News Single Page
 * Figma nodeId: 21:3911
 * ======================================== */
#news-detail {
  /* ----------------------------------------
   * Article Wrapper
   * ---------------------------------------- */
  /* ---------- Header ---------- */
  /* ---------- Thumbnail ---------- */
  /* ---------- Post Content ---------- */
  /* ---------- CTA Button ---------- */
  /* ---------- CTA Background ---------- */
  /* ---------- Navigation ---------- */
}
#news-detail .news-single {
  padding-top: 6.875rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single {
    padding-top: 1.5rem;
  }
}
#news-detail .news-single .l-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .l-inner {
    padding-bottom: 3rem;
  }
}
#news-detail .news-single-header {
  width: 100%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single-header {
    margin-bottom: 1.5rem;
  }
}
#news-detail .news-single-meta {
  display: flex;
  gap: 2.1875rem;
  align-items: center;
  margin-bottom: 2.375rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single-meta {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
}
#news-detail .news-single-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  #news-detail .news-single-date {
    font-size: 0.6875rem;
  }
}
#news-detail .news-single-cat {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  white-space: nowrap;
}
@media screen and (max-width: 480px) {
  #news-detail .news-single-cat {
    font-size: 0.75rem;
  }
}
#news-detail .news-single-title {
  width: 100%;
  padding-bottom: 1rem;
  font-family: var(--font-mincho);
  font-size: 2.25rem;
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single-title {
    padding-bottom: 0.75rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  #news-detail .news-single-title {
    font-size: 1.25rem;
  }
}
#news-detail .news-single-thumb {
  width: 50rem;
  max-width: 100%;
  margin-bottom: 6.25rem;
  overflow: hidden;
  border-radius: 1.4375rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single-thumb {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 0.75rem;
  }
}
#news-detail .news-single-thumb-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
#news-detail .news-single .post-content {
  width: 100%;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content {
    margin-bottom: 3rem;
  }
}
#news-detail .news-single .post-content > * {
  margin-block: 0;
}
#news-detail .news-single .post-content > h2,
#news-detail .news-single .post-content > h3,
#news-detail .news-single .post-content > h4,
#news-detail .news-single .post-content > h5,
#news-detail .news-single .post-content > table,
#news-detail .news-single .post-content > hr,
#news-detail .news-single .post-content > blockquote,
#news-detail .news-single .post-content > ul,
#news-detail .news-single .post-content > ol,
#news-detail .news-single .post-content > p {
  margin-block: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content > h2,
  #news-detail .news-single .post-content > h3,
  #news-detail .news-single .post-content > h4,
  #news-detail .news-single .post-content > h5,
  #news-detail .news-single .post-content > table,
  #news-detail .news-single .post-content > hr,
  #news-detail .news-single .post-content > blockquote,
  #news-detail .news-single .post-content > ul,
  #news-detail .news-single .post-content > ol,
  #news-detail .news-single .post-content > p {
    margin-block: 1.75rem;
  }
}
#news-detail .news-single .post-content > :first-child {
  margin-top: 0;
}
#news-detail .news-single .post-content > :last-child {
  margin-bottom: 0;
}
#news-detail .news-single .post-content > p:has(> .c-btn) {
  margin-block: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content > p:has(> .c-btn) {
    margin-block: 1.75rem;
  }
}
#news-detail .news-single .post-content > p:has(+ p) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content > p:has(+ p) {
    margin-bottom: 1rem;
  }
}
#news-detail .news-single .post-content > p + p {
  margin-top: 0;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content > p + p {
    margin-top: 0;
  }
}
#news-detail .news-single .post-content h2 {
  padding-bottom: 0.875rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content h2 {
    padding-bottom: 0.625rem;
    font-size: 1.125rem;
  }
}
#news-detail .news-single .post-content h3 {
  font-size: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content h3 {
    font-size: 1rem;
  }
}
#news-detail .news-single .post-content p,
#news-detail .news-single .post-content li {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content p,
  #news-detail .news-single .post-content li {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
}
#news-detail .news-single .post-content li + li {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single .post-content li + li {
    margin-top: 0.5rem;
  }
}
#news-detail .news-single-btn {
  width: 100%;
}
#news-detail .news-single-cta-bg {
  width: 100%;
  height: 35.625rem;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single-cta-bg {
    height: 18.75rem;
  }
}
#news-detail .news-single-cta-bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#news-detail .news-single-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 10rem;
}
@media screen and (max-width: 767.98px) {
  #news-detail .news-single-nav {
    gap: 1.5rem;
    padding: 2.5rem 0 5rem;
  }
}
#news-detail .news-single-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0;
  line-height: 1;
  color: transparent;
  text-decoration: none;
}
#news-detail .news-single-nav-arrow::before {
  display: block;
  width: 0.375rem;
  height: 0.6875rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='6'%20height='11'%20viewBox='0%200%206%2011.3333'%20fill='none'%3e%3cpath%20d='M0.705262%200.148112L0.00350877%200.866633L4.56493%205.51848L0%2010.1777L0.701754%2010.8963L5.96842%205.51848L0.705262%200.148112Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
  transition: transform var(--duration) ease;
}
#news-detail .news-single-nav-arrow[aria-label=前のお知らせ]::before {
  transform: scaleX(-1);
}
#news-detail .news-single-nav-arrow.is-disabled {
  pointer-events: none;
  visibility: hidden;
}
#news-detail .news-single-nav-back {
  position: relative;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 480px) {
  #news-detail .news-single-nav-back {
    font-size: 0.875rem;
  }
}
#news-detail .news-single-nav-back::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #news-detail .news-single-nav-arrow[aria-label=前のお知らせ]:hover::before {
    transform: scaleX(-1) translateX(0.125rem);
  }
  #news-detail .news-single-nav-arrow[aria-label=次のお知らせ]:hover::before {
    transform: translateX(0.125rem);
  }
  #news-detail .news-single-nav-back:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}

/* ========================================
 * Privacy Policy Page
 * ======================================== */
#privacy .privacy-anchor {
  padding: 5.625rem 0 0;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-anchor {
    padding: 3.75rem 0 0;
  }
}
#privacy .privacy-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-anchor-nav {
    gap: 1rem 1.5rem;
  }
}
#privacy .privacy-anchor-link {
  position: relative;
  display: flex;
  gap: 0.8125rem;
  align-items: center;
  padding-bottom: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-anchor-link {
    font-size: 0.6875rem;
  }
}
#privacy .privacy-anchor-link::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #privacy .privacy-anchor-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
#privacy .privacy-anchor-link-icon {
  width: 0.375rem;
  height: 0.6875rem;
  object-fit: contain;
  transform: rotate(90deg);
}
#privacy .privacy-inner {
  width: min(60.25rem, 100% - var(--padding-inner) * 2);
  max-width: 60.25rem;
  padding-inline: 0;
  margin-inline: auto;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-inner {
    width: calc(100% - var(--padding-inner-sp) * 2);
  }
}
#privacy .privacy-section {
  padding: 0;
}
#privacy .privacy-section.privacy-policy {
  margin-top: 5rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-section.privacy-policy {
    margin-top: 3rem;
  }
}
#privacy .privacy-section.privacy-handling {
  margin-top: 5rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-section.privacy-handling {
    margin-top: 3rem;
    margin-bottom: 5rem;
  }
}
#privacy .privacy-title {
  padding: 0.375rem 1rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-mincho);
  font-size: 2.25rem;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-text);
  letter-spacing: 0.12em;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-title {
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy .privacy-title {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
  }
}
#privacy .privacy-lead {
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-lead {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
  }
}
#privacy .privacy-block {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-block {
    margin-bottom: 1.5rem;
  }
}
#privacy .privacy-block:last-child {
  margin-bottom: 0;
}
#privacy .privacy-block-title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-block-title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy .privacy-block-title {
    font-size: 1.25rem;
  }
}
#privacy .privacy-policy-block-title {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-policy-block-title {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy .privacy-policy-block-title {
    font-size: 1.25rem;
  }
}
#privacy .privacy-block-subtitle {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: var(--fw-regular);
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-block-subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy .privacy-block-subtitle {
    font-size: 0.875rem;
  }
}
#privacy .privacy-block-heading {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-block-heading {
    font-size: 0.8125rem;
  }
}
#privacy .privacy-block-text:has(+ .privacy-block-heading) {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-block-text:has(+ .privacy-block-heading) {
    margin-bottom: 0.5rem;
  }
}
#privacy .privacy-table:has(+ .privacy-block-heading),
#privacy .privacy-block-note:has(+ .privacy-block-heading) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-table:has(+ .privacy-block-heading),
  #privacy .privacy-block-note:has(+ .privacy-block-heading) {
    margin-bottom: 1rem;
  }
}
#privacy .privacy-block-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-block-text {
    font-size: 0.8125rem;
  }
}
#privacy .privacy-block-note {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-block-note {
    font-size: 0.8125rem;
  }
}
#privacy .privacy-table:has(+ .privacy-block-note),
#privacy .privacy-block-text:has(+ .privacy-block-note) {
  margin-bottom: 0.5rem;
}
#privacy .privacy-signature {
  margin: 2.5rem 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-signature {
    margin: 1.5rem 0;
    font-size: 0.8125rem;
  }
}
#privacy .privacy-contact {
  padding: 4.5rem;
  background-color: var(--color-bg-beige);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-contact {
    padding: 2.5rem 1.25rem;
  }
}
#privacy .privacy-contact-title {
  margin-bottom: 1.125rem;
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-contact-title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy .privacy-contact-title {
    font-size: 1.25rem;
  }
}
#privacy .privacy-contact-title .privacy-block-text + .privacy-block-text {
  margin-top: 0.625rem;
}
#privacy .privacy-signature:has(+ .privacy-contact) {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-signature:has(+ .privacy-contact) {
    margin-bottom: 1.5rem;
  }
}
#privacy .privacy-table {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
  table-layout: fixed;
  border-collapse: collapse;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-table {
    font-size: 0.8125rem;
    table-layout: auto;
  }
}
#privacy .privacy-table th,
#privacy .privacy-table td {
  padding: 1rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
  border: 1px solid var(--color-border);
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-table th,
  #privacy .privacy-table td {
    padding: 1rem;
  }
}
#privacy .privacy-table th {
  padding-right: 0.75rem;
  font-weight: var(--fw-medium);
  vertical-align: middle;
  background-color: var(--color-bg-beige);
}
#privacy .privacy-table tbody th {
  width: 18.75rem;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-table tbody th {
    width: 7.5rem;
  }
}
@media screen and (max-width: 480px) {
  #privacy .privacy-table tbody th {
    width: 6.25rem;
  }
}
#privacy .privacy-table.privacy-table-contact th {
  width: 18.75rem;
}
@media screen and (max-width: 480px) {
  #privacy .privacy-table.privacy-table-contact th {
    width: 6.875rem;
  }
}
#privacy .privacy-table.privacy-table--top-align td {
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  #privacy .privacy-contact-box {
    overflow-x: auto;
  }
}
#privacy *:has(+ .privacy-contact-box) {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #privacy *:has(+ .privacy-contact-box) {
    margin-bottom: 1rem;
  }
}
#privacy .privacy-contact-box-title {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #privacy .privacy-contact-box-title {
    font-size: 0.8125rem;
  }
}

/* ========================================
 * Service Archive Page
 * Figma node: 21:3908
 * ======================================== */
#service {
  /* ----------------------------------------
   * Archive Section
   * ---------------------------------------- */
  /* ---------- Category Block ---------- */
  /* ---------- Sub Groups ---------- */
  /* ---------- Links ---------- */
}
#service .service-archive {
  padding: 6.875rem 0 10rem;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive {
    padding: 2rem 0 5rem;
  }
}
#service .service-archive:has(+ .c-cta-bg) {
  padding-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive:has(+ .c-cta-bg) {
    padding-bottom: 0;
  }
}
#service .service-archive-inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-inner {
    gap: 3rem;
  }
}
#service .service-archive-category {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-category {
    gap: 1.5rem;
  }
}
#service .service-archive-cat-header {
  display: flex;
  gap: 0.6875rem;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--color-bg-beige);
  border-radius: 0.3125rem;
  box-shadow: 0 0.25rem 1.875rem rgba(185, 202, 216, 0.15);
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-cat-header {
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
}
#service .service-archive-cat-icon {
  position: relative;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5625rem;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-cat-icon {
    width: 2rem;
    height: 2.0625rem;
  }
}
#service .service-archive-cat-icon-bg {
  display: block;
  width: 100%;
  height: 100%;
}
#service .service-archive-cat-icon-img {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  width: 1.875rem;
  height: 1.875rem;
  object-fit: contain;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-cat-icon-img {
    top: 0.25rem;
    left: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
#service .service-archive-cat-title {
  font-family: var(--font-sans);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-black);
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-cat-title {
    font-size: 1.25rem;
  }
}
#service .service-archive-sub-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-sub-groups {
    gap: 1.5rem;
    padding: 0;
  }
}
#service .service-archive-divider {
  margin: 0;
  border: none;
  border-top: 1px solid #b3b3b3;
}
#service .service-archive-sub-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#service .service-archive-sub-title {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--color-black);
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-sub-title {
    font-size: 0.9375rem;
  }
}
#service .service-archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-links {
    gap: 0.625rem 1.5rem;
  }
}
#service .service-archive-links-direct {
  padding: 0 2.5rem;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-links-direct {
    padding: 0;
  }
}
#service .service-archive-link {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 2.35;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-link {
    gap: 0.625rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}
@media (any-hover: hover) {
  #service .service-archive-link:hover .service-archive-link-text::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
  #service .service-archive-link:hover .service-archive-link-arrow {
    transform: translateX(0.25rem);
  }
}
#service .service-archive-link-text {
  position: relative;
}
@media (any-hover: hover) {
  #service .service-archive-link-text::after {
    position: absolute;
    right: 0;
    bottom: 0.375rem;
    left: 0;
    height: 1px;
    content: "";
    background-color: var(--color-text);
    transition: transform var(--duration) ease;
    transform: scaleX(0);
    transform-origin: right center;
  }
}
#service .service-archive-link-arrow {
  flex-shrink: 0;
  width: 0.3125rem;
  height: 0.5rem;
  margin-top: calc(1.175em - 0.25rem);
  transition: transform var(--duration);
}
@media screen and (max-width: 767.98px) {
  #service .service-archive-link-arrow {
    margin-top: calc(1em - 0.25rem);
  }
}

/* ========================================
 * Service Single Page
 * Figma node: 21:3909
 * ======================================== */
#service-detail {
  /* ----------------------------------------
   * Article Wrapper
   * ---------------------------------------- */
  /* ---------- Hero Image ---------- */
  /* ---------- Section ---------- */
  /* ---------- Heading (h2) ---------- */
  /* ---------- Text ---------- */
  /* ---------- Features ---------- */
  /* ---------- Subheading (h3) ---------- */
  /* ---------- Purpose Cards (3col) ---------- */
  /* ---------- Item Cards (4col grid) ---------- */
  /* ---------- Cases Gallery (3col) ---------- */
  /* ---------- Steps Flow ---------- */
  /* ---------- FAQ Accordion ---------- */
  /* ---------- Back Button ---------- */
  /* ---------- Related Services ---------- */
  /* ---------- Contact CTA ---------- */
}
#service-detail .service-single {
  padding: 6.875rem 0 0;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single {
    padding: 2rem 0 0;
  }
}
#service-detail .service-single-inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-inner {
    gap: 2.5rem;
  }
}
#service-detail .service-single-hero {
  max-width: 50rem;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 1.4375rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-hero {
    border-radius: 0.75rem;
  }
}
#service-detail .service-single-hero img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}
#service-detail .service-single-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 67.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-section {
    gap: 1.5rem;
  }
}
#service-detail .service-single-heading {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
#service-detail .service-single-heading-title {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-heading-title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 480px) {
  #service-detail .service-single-heading-title {
    font-size: 1.25rem;
  }
}
#service-detail .service-single-heading-line {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
#service-detail .service-single-heading-line-bold {
  flex-shrink: 0;
  width: 12.25rem;
  height: 2px;
  background: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-heading-line-bold {
    width: 6.25rem;
  }
}
#service-detail .service-single-heading-line-thin {
  flex: 1;
  height: 1px;
  background: #b3b3b3;
}
#service-detail .service-single-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#service-detail .service-single-list {
  padding-left: 1.3125rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
  list-style: disc;
}
#service-detail .service-single-list li {
  margin-bottom: 0.5rem;
}
#service-detail .service-single-spec-list {
  padding-left: 1.3125rem;
  list-style: disc;
}
#service-detail .service-single-spec-item {
  line-height: 1.75;
}
#service-detail .service-single-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-features {
    gap: 1.5rem;
  }
}
#service-detail .service-single-feature-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#service-detail .service-single-subheading {
  padding: 0.625rem;
  background-color: #f5f5f5;
}
#service-detail .service-single-subheading-title {
  font-family: var(--font-mincho);
  font-size: 1.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-subheading-title {
    font-size: 1.125rem;
  }
}
#service-detail .c-btn-arrow {
  align-self: flex-end;
}
#service-detail .service-single-purpose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-purpose-cards {
    grid-template-columns: 1fr;
  }
}
#service-detail .service-single-purpose-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.5rem 2.5rem;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 0.625rem;
}
#service-detail .service-single-purpose-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 298/200;
  object-fit: cover;
  border-radius: 0.5625rem;
}
#service-detail .service-single-purpose-card-title {
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
#service-detail .service-single-purpose-card-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#service-detail .service-single-item-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-item-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
#service-detail .service-single-item-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
#service-detail .service-single-item-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 252/168;
  object-fit: cover;
  border-radius: 0.4375rem;
}
#service-detail .service-single-item-card-title {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  color: var(--color-text);
}
#service-detail .service-single-item-card-text {
  width: 100%;
  min-height: 6.25rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#service-detail .service-single-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-cases {
    grid-template-columns: 1fr;
  }
}
#service-detail .service-single-case {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
#service-detail .service-single-case:is(a):hover .service-single-case-img {
  opacity: 0.85;
}
#service-detail .service-single-case-img {
  width: 100%;
  height: auto;
  aspect-ratio: 346/230;
  object-fit: cover;
  border-radius: 0.875rem;
  transition: opacity 0.3s ease;
}
#service-detail .service-single-case-title {
  font-family: var(--font-mincho);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
  text-align: center;
}
#service-detail .service-single-steps {
  width: 100%;
}
#service-detail .service-single-step {
  display: flex;
  align-items: center;
  padding: 2rem 0;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-step {
    padding: 1.5rem 0;
  }
}
#service-detail .service-single-step-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-step-content {
    gap: 1rem;
  }
}
#service-detail .service-single-step-header {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
#service-detail .service-single-step-number {
  position: relative;
  flex-shrink: 0;
  width: 1.8125rem;
  height: 1.8125rem;
}
#service-detail .service-single-step-number-bg {
  width: 100%;
  height: 100%;
}
#service-detail .service-single-step-number-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
  transform: translate(-50%, -50%);
}
#service-detail .service-single-step-title {
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
#service-detail .service-single-step-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: #333;
  letter-spacing: 0.04em;
}
#service-detail .service-single-step-arrow {
  display: flex;
  justify-content: flex-start;
  padding-left: 5rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-step-arrow {
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  #service-detail .service-single-step-arrow {
    padding-left: 1.25rem;
  }
}
#service-detail .service-single-step-arrow-img {
  width: 1.25rem;
  height: 1rem;
}
@media screen and (max-width: 480px) {
  #service-detail .service-single-step-arrow-img {
    width: 0.875rem;
    height: 0.75rem;
  }
}
#service-detail .service-single-faq {
  display: flex;
  flex-direction: column;
}
#service-detail .service-single-faq-item {
  border-bottom: 1px solid #b3b3b3;
}
#service-detail .service-single-faq-question {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 1.875rem 2rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  line-height: 2.3;
  color: var(--color-text);
  letter-spacing: 0.04em;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-faq-question {
    padding: 1.25rem 1.875rem 1.25rem 0;
    font-size: 0.875rem;
    line-height: 1.75;
  }
}
@media screen and (max-width: 480px) {
  #service-detail .service-single-faq-question {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
#service-detail .service-single-faq-question::before, #service-detail .service-single-faq-question::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.125rem;
  height: 2px;
  content: "";
  background: var(--color-text);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 480px) {
  #service-detail .service-single-faq-question::before, #service-detail .service-single-faq-question::after {
    width: 0.875rem;
  }
}
#service-detail .service-single-faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}
#service-detail .service-single-faq-question::after {
  transform: translateY(-50%);
}
#service-detail .service-single-faq-question.is-open::before {
  transform: translateY(-50%) rotate(0deg);
}
#service-detail .service-single-faq-answer {
  max-height: 0;
  padding: 0 2.625rem 0 0;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0.4s ease, padding-bottom 0.4s ease;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-faq-answer {
    padding-right: 0;
  }
}
#service-detail .service-single-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  padding: 4.25rem 0;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-nav {
    gap: 1.5rem;
    padding: 2.5rem 0;
  }
}
#service-detail .service-single-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0;
  line-height: 1;
  color: transparent;
  text-decoration: none;
}
#service-detail .service-single-nav-arrow::before {
  display: block;
  width: 0.375rem;
  height: 0.6875rem;
  content: "";
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='6'%20height='11'%20viewBox='0%200%206%2011.3333'%20fill='none'%3e%3cpath%20d='M0.705262%200.148112L0.00350877%200.866633L4.56493%205.51848L0%2010.1777L0.701754%2010.8963L5.96842%205.51848L0.705262%200.148112Z'%20fill='%23444'/%3e%3c/svg%3e") no-repeat center/contain;
  transition: transform var(--duration) ease;
}
#service-detail .service-single-nav-arrow[aria-label=前のサービス]::before {
  transform: scaleX(-1);
}
#service-detail .service-single-nav-arrow.is-disabled {
  pointer-events: none;
  visibility: hidden;
}
#service-detail .service-single-nav-back {
  position: relative;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 480px) {
  #service-detail .service-single-nav-back {
    font-size: 0.875rem;
  }
}
#service-detail .service-single-nav-back::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  content: "";
  background-color: var(--color-text);
  transition: transform var(--duration) ease;
  transform: scaleX(0);
  transform-origin: right center;
}
@media (any-hover: hover) {
  #service-detail .service-single-nav-arrow[aria-label=前のサービス]:hover::before {
    transform: scaleX(-1) translateX(0.125rem);
  }
  #service-detail .service-single-nav-arrow[aria-label=次のサービス]:hover::before {
    transform: translateX(0.125rem);
  }
  #service-detail .service-single-nav-back:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
#service-detail .service-single-related {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}
#service-detail .service-single-related-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: 0.04em;
}
#service-detail .service-single-related-link::before {
  flex-shrink: 0;
  width: 0.625rem;
  height: 1px;
  content: "";
  background-color: rgba(68, 68, 68, 0.4);
}
@media (any-hover: hover) {
  #service-detail .service-single-related-link:hover .service-single-related-text::after {
    animation: c-btn-arrow-underline 0.8s ease;
  }
}
#service-detail .service-single-related-text {
  position: relative;
}
#service-detail .service-single-related-text::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  clip-path: inset(0 0 0 0);
  content: "";
  background-color: var(--color-text);
  transition: clip-path 0.3s ease;
  transform-origin: right center;
}
#service-detail *:has(+ .service-single-contact) {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail *:has(+ .service-single-contact) {
    margin-bottom: 5rem;
  }
}
#service-detail .service-single-contact {
  padding: 0 0.625rem 10rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-contact {
    padding: 0 0 5rem;
  }
}
#service-detail .service-single-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 60.25rem;
  padding: 4.5rem;
  margin: 0 auto;
  background-color: var(--color-bg-beige);
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-contact-inner {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 1.25rem;
  }
}
#service-detail .service-single-contact-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 17.9375rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-contact-left {
    max-width: 100%;
  }
}
#service-detail .service-single-contact-title {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-contact-title {
    font-size: 1.375rem;
  }
}
#service-detail .service-single-contact-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
#service-detail .service-single-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 16.875rem;
}
@media screen and (max-width: 767.98px) {
  #service-detail .service-single-contact-btns {
    width: 100%;
  }
}
#service-detail .service-single-contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  padding: 0.625rem 1.5rem;
  text-decoration: none;
  background-color: var(--color-text);
  border-radius: 3.75rem;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  #service-detail .service-single-contact-btn:hover {
    opacity: 0.8;
  }
}
#service-detail .service-single-contact-btn-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-white);
}
#service-detail .service-single-contact-btn-arrow {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 1.1875rem;
  height: 1.0625rem;
  transform: translateY(-50%);
}

/* ========================================
 * Thanks Page（お問い合わせ完了）
 * Figma node: 2098:4422
 * ======================================== */
#thanks .thanks-content {
  padding-block: 7.5rem 10rem;
}
@media screen and (max-width: 767.98px) {
  #thanks .thanks-content {
    padding-block: 4rem 5rem;
  }
}
#thanks .thanks-content .l-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 58.375rem;
  text-align: center;
}
#thanks .thanks-title {
  font-family: var(--font-mincho);
  font-size: 1.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.56;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #thanks .thanks-title {
    font-size: 1.25rem;
  }
}
#thanks .thanks-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.75;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #thanks .thanks-text {
    font-size: 0.8125rem;
  }
}
#thanks .thanks-btn {
  margin-top: 3rem;
}
@media screen and (max-width: 767.98px) {
  #thanks .thanks-btn {
    margin-top: 2rem;
  }
}

/* ----------------------------------------
 * case -- TOPページ 事例紹介セクション
 * Figma node: 21:3245
 * ---------------------------------------- */
#top *:has(+ .case) {
  margin-bottom: 8.125rem;
}
@media screen and (max-width: 767.98px) {
  #top *:has(+ .case) {
    margin-bottom: 3.75rem;
  }
}
#top .case {
  position: relative;
  background-color: var(--color-bg-beige);
}
@media screen and (max-width: 767.98px) {
  #top .case {
    padding-bottom: 60px;
  }
}
#top .case-wave {
  width: 100%;
  height: 140px;
  margin-top: -1px;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: top;
  background-size: 848px 140px;
  transform: scale(-1);
}
@media screen and (max-width: 767.98px) {
  #top .case-wave {
    height: 60px;
    background-size: 424px 60px;
  }
}
#top .case-inner {
  display: flex;
  gap: 2.5rem;
  min-height: 33.75rem;
  padding: 9.5rem 4.375rem 3rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  #top .case-inner {
    gap: 1.25rem;
    min-height: 28.75rem;
    padding: 6.25rem 2.5rem 5rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .case-inner {
    flex-direction: column-reverse;
    gap: 2rem;
    min-height: 0;
    padding: 2.5rem 1.25rem 3.75rem;
  }
}
#top .case-gallery {
  flex: 0 0 74.5%;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  #top .case-gallery {
    flex: 0 0 78%;
  }
}
@media screen and (max-width: 767.98px) {
  #top .case-gallery {
    flex: none;
    width: 100%;
  }
}
#top .case-sizer {
  width: calc(33.333% - 14px);
}
@media screen and (max-width: 480px) {
  #top .case-sizer {
    width: calc(50% - 6px);
  }
}
#top .case-gutter-sizer {
  width: 20px;
}
@media screen and (max-width: 480px) {
  #top .case-gutter-sizer {
    width: 12px;
  }
}
#top .case-item {
  width: calc(33.333% - 14px);
  margin-bottom: 1.25rem;
  overflow: hidden;
  color: var(--color-text);
  text-decoration: none;
  transition: opacity var(--duration);
}
#top .case-item.is-col-last {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  #top .case-item {
    width: calc(50% - 6px);
  }
  #top .case-item.is-col-last {
    margin-bottom: 1.25rem;
  }
  #top .case-item:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
}
@media (any-hover: hover) {
  #top .case-item:hover .case-item-img {
    transform: scale(1.05);
  }
}
#top .case-item-picture {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}
#top .case-item-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--duration) ease-out;
}
#top .case-item-caption {
  display: block;
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 2.3;
  color: var(--color-text);
  text-overflow: ellipsis;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
#top .case-sidebar {
  position: absolute;
  top: 4.875rem;
  right: 5%;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 15.375rem;
}
@media screen and (max-width: 1024px) {
  #top .case-sidebar {
    max-width: 11.25rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .case-sidebar {
    position: static;
    z-index: 1;
    max-width: 80%;
    margin-inline: auto;
    margin-top: -5.3125rem;
  }
}
#top .case-title {
  align-self: flex-end;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.05;
  color: var(--color-text);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  #top .case-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .case-title {
    font-size: 1.75rem;
  }
}
#top .case-sidebar-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: flex-end;
  margin-top: -5rem;
  margin-right: 5.375rem;
  margin-bottom: 7.5rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  #top .case-sidebar-text {
    margin-right: 3.75rem;
    margin-bottom: 5rem;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .case-sidebar-text {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
  }
}
#top .case-btn {
  align-self: flex-end;
}
#top *:has(+ .case-btn-sp) {
  margin-bottom: 2.5rem;
}
#top .case-btn-sp {
  justify-content: center;
}
@media screen and (max-width: 767.98px) {
  #top .case-btn-sp {
    display: flex;
  }
}

#top .c-feature {
  position: relative;
  overflow: hidden;
}
#top .c-feature-inner {
  display: flex;
  gap: 0;
  align-items: stretch;
  min-height: 38.5rem;
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-inner {
    flex-direction: column;
    min-height: auto;
  }
}
#top .c-feature-image {
  flex-shrink: 0;
  width: 43.125%;
  overflow: hidden;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-image {
    width: 95%;
    height: 25rem;
    border-radius: 0 0.5rem 0.5rem 0;
  }
}
@media screen and (max-width: 480px) {
  #top .c-feature-image {
    width: 94%;
  }
}
#top .c-feature-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top .c-feature-content {
  position: relative;
  display: flex;
  flex: 1;
  padding: 1.65% 4% 1.5% 10.3%;
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-content {
    justify-content: space-around;
    width: 100%;
    padding: 2.5rem 1.25rem 0;
    margin-left: auto;
  }
}
#top .c-feature-label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-label {
    font-size: 0.625rem;
  }
}
#top .c-feature-label::before, #top .c-feature-label::after {
  display: block;
  width: 2.5rem;
  height: 5px;
  content: "";
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-label::before, #top .c-feature-label::after {
    width: 1.875rem;
  }
}
#top .c-feature-label-num {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  writing-mode: horizontal-tb;
}
#top .c-feature-label:has(+ .c-feature-title) {
  margin-bottom: 0.625rem;
}
#top .c-feature-title {
  flex-shrink: 0;
  font-family: var(--font-mincho);
  font-size: 2.75rem;
  font-weight: var(--fw-medium);
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-title {
    height: fit-content;
    font-size: 1.75rem;
  }
}
#top .c-feature-title span {
  display: block;
}
#top .c-feature-title span:not(:last-child) {
  margin-bottom: 1.875rem;
}
#top .c-feature-title span:last-child {
  transform: translateY(3.75rem);
}
#top .c-feature-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  align-items: end;
  padding-top: 15.625rem;
  margin-left: 2.875rem;
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-body {
    flex: 1;
    gap: 2rem;
    max-width: 23.75rem;
    padding-top: 10.625rem;
  }
}
#top .c-feature-text {
  max-width: 26.875rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-regular);
  line-height: 2.35;
  color: var(--color-text);
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767.98px) {
  #top .c-feature-text {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

@keyframes fv-fade-in {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fv-copy-fade-in {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#top .fv {
  position: relative;
  width: 100%;
  padding-top: 7.3125rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  #top .fv {
    padding-top: 5rem;
    margin-bottom: 2.5rem;
  }
}
#top .fv-inner {
  position: relative;
  display: flex;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 87rem;
  aspect-ratio: 1392/553;
  padding-inline: 1.5rem;
  margin-inline: auto;
  opacity: 0;
  animation: fv-fade-in 1s ease-out 0.2s forwards;
}
@media screen and (max-width: 767.98px) {
  #top .fv-inner {
    flex-direction: column;
    aspect-ratio: auto;
    padding-inline: 1rem;
  }
}
#top .fv-left {
  position: relative;
  flex: 1 1 50%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #top .fv-left {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 696/280;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
@media screen and (max-width: 480px) {
  #top .fv-left {
    aspect-ratio: 696/400;
  }
}
#top .fv-left-picture {
  display: block;
  width: 100%;
  height: 100%;
}
#top .fv-left-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
#top .fv-left-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(32.37deg, rgba(0, 0, 0, 0.2) 21.557%, rgba(0, 0, 0, 0) 42.172%);
}
#top .fv-right {
  position: relative;
  flex: 1 1 50%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0.625rem 0.625rem 0;
}
@media screen and (max-width: 767.98px) {
  #top .fv-right {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 696/280;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  #top .fv-right {
    aspect-ratio: 696/400;
  }
}
#top .fv-right-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
#top .fv-right-slide.is-active {
  z-index: 1;
  opacity: 1;
}
#top .fv-right-picture {
  display: block;
  width: 100%;
  height: 100%;
}
#top .fv-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
#top .fv-copy {
  position: absolute;
  bottom: 1.75rem;
  left: 5.75rem;
  z-index: 2;
  color: #fff;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.45);
  opacity: 0;
  animation: fv-copy-fade-in 0.8s ease-out 0.8s forwards;
}
@media screen and (max-width: 767.98px) {
  #top .fv-copy {
    bottom: 1.25rem;
    left: 1.5rem;
  }
}
#top .fv-title {
  font-family: var(--font-mincho);
  font-size: 3.125rem;
  font-weight: var(--fw-semibold);
  line-height: 1.28;
}
@media screen and (max-width: 767.98px) {
  #top .fv-title {
    font-size: 1.75rem;
  }
}
#top .fv-sub {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  line-height: 2.3;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #top .fv-sub {
    font-size: 0.8125rem;
    line-height: 1.8;
  }
}

#top .message {
  position: relative;
  margin-bottom: 12.5rem;
}
@media screen and (max-width: 767.98px) {
  #top .message {
    margin-bottom: 5rem;
  }
}
#top .message-inner {
  position: relative;
  padding-inline: 4.375rem;
}
@media screen and (max-width: 767.98px) {
  #top .message-inner {
    padding-inline: 1.25rem;
  }
}
#top .message-content {
  position: relative;
  padding-top: 3.3125rem;
}
@media screen and (max-width: 767.98px) {
  #top .message-content {
    padding-top: 1.875rem;
  }
}
#top .message-title {
  position: absolute;
  top: 0;
  left: 8%;
  z-index: 2;
  font-family: var(--font-mincho);
  font-size: 1.875rem;
  font-weight: var(--fw-medium);
  line-height: 1.55;
  color: var(--color-text);
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767.98px) {
  #top .message-title {
    top: 0;
    left: 5%;
    font-size: 1.375rem;
  }
}
#top .message-title span {
  display: block;
}
#top .message-title span:not(:last-child) {
  margin-bottom: 2.25rem;
}
#top .message-title span:last-child {
  transform: translateY(2.5rem);
}
#top .message-bg {
  position: relative;
  height: 32.125rem;
  overflow: hidden;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767.98px) {
  #top .message-bg {
    aspect-ratio: auto;
  }
}
#top .message-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 31%, rgba(255, 255, 255, 0.38) 100%);
  border-radius: 0.625rem;
}
#top .message-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#top .message-text {
  position: absolute;
  right: 4.7%;
  bottom: 8.5%;
  z-index: 1;
  width: 29.1875rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fw-medium);
  line-height: 2.3;
  color: var(--color-text);
  text-shadow: 1px 1px 7px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #top .message-text {
    width: 18.75rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

#top .news {
  margin-bottom: 0;
}
#top .c-cta-contact {
  padding-top: 8.75rem;
}
@media screen and (max-width: 767.98px) {
  #top .c-cta-contact {
    padding-top: 5rem;
  }
}
#top .news-inner {
  display: flex;
  gap: 3.75rem;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #top .news-inner {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .news-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}
#top .news-heading {
  flex-shrink: 0;
  width: 14.8125rem;
}
@media screen and (max-width: 1024px) {
  #top .news-heading {
    width: 11.25rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .news-heading {
    width: 100%;
  }
}
#top .news-title {
  margin-bottom: 5.9375rem;
  font-family: var(--font-mincho);
  font-size: 2.5rem;
  font-weight: var(--fw-medium);
  line-height: 1.28;
  color: var(--color-text);
}
@media screen and (max-width: 767.98px) {
  #top .news-title {
    margin-bottom: 0;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .news-link {
    display: none;
  }
}
@media (any-hover: hover) {
  #top .news-link:hover {
    opacity: 0.7;
  }
}
#top .news-link-icon {
  width: 1.1875rem;
  height: 1.0625rem;
  object-fit: contain;
}
#top .news-list {
  width: 70.8%;
}
@media screen and (max-width: 767.98px) {
  #top .news-list {
    width: 100%;
  }
}
#top .news-item {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--duration);
}
#top .news-item:first-child {
  border-top: 1px solid var(--color-border);
}
@media screen and (max-width: 1024px) {
  #top .news-item {
    gap: 1rem;
    padding: 1rem 0.75rem;
  }
}
@media screen and (max-width: 767.98px) {
  #top .news-item {
    gap: 0.5rem;
    padding: 1rem 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  #top .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (any-hover: hover) {
  #top .news-item:hover {
    background-color: rgba(68, 68, 68, 0.02);
  }
}
#top .news-meta {
  display: flex;
  flex-shrink: 0;
  gap: 2.25rem;
  align-items: baseline;
}
@media screen and (max-width: 767.98px) {
  #top .news-meta {
    gap: 0.75rem;
  }
}
#top .news-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  white-space: nowrap;
}
#top .news-cat {
  width: 5.625rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: var(--fw-regular);
  line-height: 1.9;
  color: var(--color-text);
  white-space: nowrap;
}
#top .news-item-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-regular);
  line-height: 2.25;
  color: var(--color-text);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767.98px) {
  #top .news-item-title {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767.98px) {
  #top *:has(+ .news-link-sp) {
    margin-bottom: 1.5rem;
  }
}
#top .news-link-sp {
  display: none;
}
@media screen and (max-width: 767.98px) {
  #top .news-link-sp {
    display: flex;
    justify-content: center;
  }
}
#top .news-wave-top {
  width: 100%;
  height: 140px;
  margin-bottom: 4.375rem;
  background-color: var(--color-bg-beige);
  background-image: url("data:image/svg+xml,%3csvg%20preserveAspectRatio='none'%20width='100%25'%20height='100%25'%20overflow='visible'%20style='display:%20block;'%20viewBox='0%200%20848%20140'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20id='bg_wave'%20clip-path='url(%23clip0_0_4)'%3e%3cpath%20id='Vector'%20d='M825.056%205.68655C819.324%205.68655%20819.324%200%20813.592%200C807.86%200%20807.855%205.68655%20802.125%205.68655C796.395%205.68655%20796.393%200%20790.667%200C784.941%200%20784.937%205.68655%20779.205%205.68655C773.474%205.68655%20773.468%200%20767.736%200C762.004%200%20762.004%205.68655%20756.273%205.68655C750.542%205.68655%20750.541%200%20744.81%200C739.078%200%20739.077%205.68655%20733.344%205.68655C727.611%205.68655%20727.609%200%20721.882%200C716.155%200%20716.151%205.68655%20710.42%205.68655C704.689%205.68655%20704.69%200%20698.958%200C693.227%200%20693.232%205.68655%20687.495%205.68655C681.758%205.68655%20681.765%200%20676.034%200C670.303%200%20670.305%205.68655%20664.576%205.68655C658.847%205.68655%20658.846%200%20653.115%200C647.385%200%20647.386%205.68655%20641.657%205.68655C635.928%205.68655%20635.928%200%20630.199%200C624.47%200%20624.468%205.68655%20618.738%205.68655C613.008%205.68655%20613.006%200%20607.275%200C601.544%200%20601.544%205.68655%20595.813%205.68655C590.082%205.68655%20590.082%200%20584.351%200C578.62%200%20578.621%205.68655%20572.891%205.68655C567.16%205.68655%20567.16%200%20561.429%200C555.698%200%20555.699%205.68655%20549.968%205.68655C544.237%205.68655%20544.239%200%20538.509%200C532.779%200%20532.778%205.68655%20527.046%205.68655C521.315%205.68655%20521.316%200%20515.586%200C509.856%200%20509.855%205.68655%20504.124%205.68655C498.393%205.68655%20498.395%200%20492.668%200C486.941%200%20486.938%205.68655%20481.207%205.68655C475.477%205.68655%20475.479%200%20469.745%200C464.011%200%20464.015%205.68655%20458.285%205.68655C452.555%205.68655%20452.555%200%20446.825%200C441.094%200%20441.095%205.68655%20435.366%205.68655C429.637%205.68655%20429.636%200%20423.906%200C418.176%200%20418.177%205.68655%20412.447%205.68655C406.717%205.68655%20406.719%200%20400.99%200C395.26%200%20395.259%205.68655%20389.53%205.68655C383.801%205.68655%20383.8%200%20378.071%200C372.342%200%20372.342%205.68655%20366.614%205.68655C360.886%205.68655%20360.885%200%20355.16%200C349.436%200%20349.43%205.68655%20343.699%205.68655C337.968%205.68655%20337.965%200%20332.237%200C326.509%200%20326.509%205.68655%20320.784%205.68655C315.058%205.68655%20315.051%200%20309.322%200C303.593%200%20303.595%205.68655%20297.862%205.68655C292.129%205.68655%20292.133%200%20286.407%200C280.681%200%20280.68%205.68655%20274.952%205.68655C269.223%205.68655%20269.218%200%20263.493%200C257.768%200%20257.763%205.68655%20252.03%205.68655C246.297%205.68655%20246.305%200%20240.576%200C234.847%200%20234.848%205.68655%20229.12%205.68655C223.393%205.68655%20223.393%200%20217.665%200C211.937%200%20211.938%205.68655%20206.21%205.68655C200.482%205.68655%20200.481%200%20194.752%200C189.022%200%20189.022%205.68655%20183.293%205.68655C177.564%205.68655%20177.565%200%20171.838%200C166.111%200%20166.111%205.68655%20160.384%205.68655C154.657%205.68655%20154.657%200%20148.931%200C143.204%200%20143.203%205.68655%20137.475%205.68655C131.747%205.68655%20131.747%200%20126.015%200C120.283%200%20120.286%205.68655%20114.557%205.68655C108.828%205.68655%20108.832%200%20103.104%200C97.3773%200%2097.3773%205.68655%2091.6512%205.68655C85.925%205.68655%2085.921%200%2080.1919%200C74.4628%200%2074.4628%205.68655%2068.7326%205.68655C63.0025%205.68655%2063.0045%200%2057.2754%200C51.5462%200%2051.5462%205.68655%2045.8171%205.68655C40.088%205.68655%2040.087%200%2034.3578%200C28.6287%200%2028.6287%205.68655%2022.8996%205.68655C17.1704%205.68655%2017.1704%200%2011.4423%200C5.71415%200%205.71115%205.67351%200%205.68554V140H848V5.68655C842.264%205.68655%20842.264%200%20836.528%200C830.792%200%20830.793%205.68655%20825.056%205.68655Z'%20fill='var(--fill-0,%20white)'/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_0_4'%3e%3crect%20width='848'%20height='140'%20fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 848px 140px;
}
@media screen and (max-width: 767.98px) {
  #top .news-wave-top {
    height: 60px;
    margin-bottom: 2rem;
    background-size: 424px 60px;
  }
}

:root {
  --clip-triangle-top: polygon(50% 0, 100% 100%, 0 100%);
  --clip-triangle-bottom: polygon(0 0, 100% 0, 50% 100%);
  --clip-triangle-right: polygon(0 0, 100% 50%, 0 100%);
  --clip-triangle-left: polygon(0 50%, 100% 0, 100% 100%);
  --clip-triangle-lower-left: polygon(0 0, 100% 100%, 0 100%);
  --clip-triangle-upper-left: polygon(0 0, 100% 0, 0 100%);
  --clip-triangle-lower-right: polygon(100% 0, 100% 100%, 0 100%);
  --clip-triangle-upper-right: polygon(0 0, 100% 0, 100% 100%);
}

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

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

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

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

.u-hidden-sp--inline {
  display: inline;
}
@media screen and (max-width: 767.98px) {
  .u-hidden-sp--inline {
    display: none;
  }
}

.u-hidden-sp--flex {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .u-hidden-sp--flex {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .u-hidden-sm {
    display: none;
  }
}

.u-hidden-sm-block {
  display: none;
}
@media screen and (max-width: 480px) {
  .u-hidden-sm-block {
    display: block;
  }
}

.u-hidden-sm--inline {
  display: inline;
}
@media screen and (max-width: 480px) {
  .u-hidden-sm--inline {
    display: none;
  }
}

.u-hidden-sm--flex {
  display: flex;
}
@media screen and (max-width: 480px) {
  .u-hidden-sm--flex {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .u-hidden-md {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .u-hidden-md {
    display: block;
  }
}

@media screen and (max-width: 767.98px) {
  .u-hidden-md--inline {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .u-hidden-md--inline {
    display: inline;
  }
}

@media screen and (max-width: 767.98px) {
  .u-hidden-md--flex {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .u-hidden-md--flex {
    display: flex;
  }
}

@media (width <= 768px) {
  [data-only-device=md] {
    display: none;
  }
}

@media (width >= 769px) {
  [data-only-device=sm] {
    display: none;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  white-space: nowrap;
  border: 0;
}