@charset "UTF-8";
/* リキッドレイアウト対応 */
:root {
  --padding-pc: 25px;
  --padding-sp: 16px;
  --base-font-family: "Noto Sans", sans-serif;
  --second-font-family: "";
  --regular: 400;
  --normal: 500;
  --bold: 700;
  --black: #111;
  --white: #fff;
  --primary: #00b580;
  --primary-light: #e6f9f4;
  --secondary: #ffc200;
  --secondary-foreground: #333333;
  --foreground: #333333;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;
  --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);
}

body {
  font-family: var(--base-font-family);
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media (min-width: 768px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-wrap: break-word;
}

body {
  padding-top: 5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--foreground);
  background: #fff;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 4rem;
  }
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 var(--padding-sp);
  }
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--foreground);
}
.section-title--center {
  text-align: center;
}
.section-title .text-primary {
  color: var(--primary);
}
.section-title .text-secondary {
  color: var(--secondary-foreground);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--primary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 4px 16px rgba(255, 194, 0, 0.35);
}
.btn--primary:hover {
  background: rgb(224.4, 170.72, 0);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 194, 0, 0.4);
}
.btn--outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-color: var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: rgba(0, 181, 128, 0.05);
}
.btn--outline-gray {
  background: transparent;
  border-color: #e5e7eb;
  color: var(--foreground);
  padding: 0.75rem 2rem;
  margin-top: 1rem;
}
.btn--outline-gray:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--primary {
  background: rgba(0, 181, 128, 0.12);
  color: var(--primary);
}
.badge--muted {
  background: var(--muted);
  color: var(--muted-foreground);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  padding: 0 0 0.5rem;
}
.breadcrumb a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.products-page-wrap,
.company-page-wrap {
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .products-page-wrap,
  .company-page-wrap {
    margin-top: -4rem;
  }
}
.products-page-wrap .sticky,
.company-page-wrap .sticky {
  position: sticky;
  top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .products-page-wrap .sticky,
  .company-page-wrap .sticky {
    position: relative;
    top: 0;
  }
}
.products-page-wrap .contact-sec,
.company-page-wrap .contact-sec {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .products-page-wrap .contact-sec,
  .company-page-wrap .contact-sec {
    margin-bottom: 3rem;
  }
}
.products-page-wrap .telnum,
.company-page-wrap .telnum {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.products-page-wrap .telnum img.tel,
.company-page-wrap .telnum img.tel {
  flex-shrink: 0;
}

.pagetop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 181, 128, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pagetop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 181, 128, 0.5);
}
.pagetop svg {
  stroke: #fff;
  width: 1.25rem;
  height: 1.25rem;
}

.contact-form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form .contact-form__row {
  display: grid;
  gap: 0.5rem;
}
.contact-form .contact-form__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  width: auto;
}
.contact-form .need {
  position: relative;
  padding-right: 0;
}
.contact-form .need::after {
  content: "*";
  position: static;
  display: inline;
  background: none;
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0;
  margin-left: 0.25rem;
  transform: none;
}
@media screen and (max-width: 767px) {
  .contact-form .need {
    padding-right: 0;
  }
}
.contact-form .optional {
  position: relative;
  padding-right: 0;
}
.contact-form .optional::after {
  content: "任意";
  position: static;
  display: inline;
  background: none;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0;
  margin-left: 0.5rem;
  transform: none;
}
@media screen and (max-width: 767px) {
  .contact-form .optional {
    padding-right: 0;
  }
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email],
.contact-form input[type=number],
.contact-form textarea {
  width: 100%;
  min-width: 0;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: transparent;
  padding: 0.25rem 0.75rem;
  font-size: 1rem;
  color: var(--foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: color 0.15s, box-shadow 0.15s;
  outline: none;
}
.contact-form input[type=text]::-moz-placeholder, .contact-form input[type=tel]::-moz-placeholder, .contact-form input[type=email]::-moz-placeholder, .contact-form input[type=number]::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: var(--muted-foreground);
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=number]::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted-foreground);
}
.contact-form input[type=text]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=number]:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.1875rem rgba(0, 181, 128, 0.2);
}
@media screen and (max-width: 767px) {
  .contact-form input[type=text],
  .contact-form input[type=tel],
  .contact-form input[type=email],
  .contact-form input[type=number],
  .contact-form textarea {
    font-size: 0.875rem;
  }
}
.contact-form textarea {
  height: auto;
  min-height: 7.5rem;
  padding: 0.5rem 0.75rem;
}
.contact-form span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form .contact-form__help {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}
.contact-form .wpcf7-radio {
  display: flex;
  gap: 1rem;
}
.contact-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.contact-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form input[type=radio] {
  display: inline-block;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.contact-form input[type=radio]:checked {
  border-color: var(--border);
  background: var(--primary);
  box-shadow: inset 0 0 0 0.1875rem #fff;
}
.contact-form input[type=radio]:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.1875rem rgba(0, 181, 128, 0.2);
}
.contact-form input[type=radio] + span {
  padding-left: 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--foreground);
  line-height: 1;
}
.contact-form input[type=radio] + span::before, .contact-form input[type=radio] + span::after {
  display: none;
}
.contact-form select,
.contact-form .wpcf7-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 12.5rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  background: transparent;
  padding: 0.25rem 2rem 0.25rem 0.75rem;
  font-size: 0.875rem;
  color: var(--foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: color 0.15s, box-shadow 0.15s;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
}
.contact-form select:focus,
.contact-form .wpcf7-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.1875rem rgba(0, 181, 128, 0.2);
}
.contact-form input[type=checkbox] {
  display: inline-block;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.25rem;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form input[type=checkbox]:checked {
  background: var(--primary);
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem;
}
.contact-form input[type=checkbox] + span {
  padding-left: 0;
}
.contact-form input[type=checkbox] + span::before, .contact-form input[type=checkbox] + span::after {
  display: none;
}
.contact-form .contact-form__row--submit {
  padding-top: 1rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.contact-form .contact-form__row--submit::after {
  display: none;
}
.contact-form .wpcf7-submit {
  display: block;
  width: 100%;
  height: auto;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, 0.1);
}
.contact-form .wpcf7-submit:hover {
  background: rgba(0, 181, 128, 0.9);
  color: #fff;
  box-shadow: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1);
}
.contact-form .wpcf7-submit:disabled {
  background: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
  pointer-events: none;
}
.contact-form .wpcf7-spinner {
  margin: 0;
  display: none;
}
.contact-form .contact-form__unavailable {
  display: none;
  background: #fff3f3;
  border: 2px solid #e53e3e;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}
.contact-form .contact-form__unavailable.is-visible {
  display: block;
}
.contact-form .contact-form__unavailable p {
  font-size: 1rem;
  font-weight: 700;
  color: #e53e3e;
}
.contact-form .contact-form__footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.contact-form .contact-form__footer .contact-form__footer-tel {
  font-size: 1.125rem;
  font-weight: 700;
  color: #374151;
  margin-top: 0.25rem;
}
.contact-form .contact-form__footer .contact-form__footer-tel span {
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 0.5rem;
}

.site-footer {
  background: #333333;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .site-footer__inner {
    padding: 0 var(--padding-sp);
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.site-footer__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  height: 1.875rem;
  width: auto;
}

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #c9c9c9;
  line-height: 1.6;
}
.site-footer__contact-item svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
  stroke: var(--primary);
}

.site-footer__tel {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__tel:hover {
  color: var(--primary);
}

.site-footer__nav-wrap {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .site-footer__nav-wrap {
    justify-content: flex-start;
  }
}

.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .site-footer__nav-list {
    text-align: left;
  }
}
.site-footer__nav-list li a {
  font-size: 0.875rem;
  color: #c9c9c9;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__nav-list li a:hover {
  color: var(--secondary);
}

.site-footer__copyright {
  border-top: 1px solid #555;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #888;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .site-header {
    height: 4rem;
  }
}
.site-header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .site-header__inner {
    padding: 0 var(--padding-sp);
  }
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo img {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}
.site-header__logo img:hover {
  transform: scale(1.04);
}

@media screen and (max-width: 767px) {
  .site-header__nav {
    display: none;
  }
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-header__nav-list li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s;
}
.site-header__nav-list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--primary);
  border-radius: 0.125rem;
  transition: width 0.2s;
}
.site-header__nav-list li a:hover, .site-header__nav-list li a.is-current {
  color: var(--primary);
}
.site-header__nav-list li a:hover::after, .site-header__nav-list li a.is-current::after {
  width: 100%;
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}
@media screen and (max-width: 767px) {
  .site-header__hamburger {
    display: flex;
  }
}
.site-header__hamburger span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  border-radius: 0.125rem;
  transition: transform 0.3s, opacity 0.3s;
}
.site-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  padding-top: 5.25rem;
  padding-left: var(--padding-sp);
  padding-right: var(--padding-sp);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.site-drawer.is-open {
  transform: translateX(0);
}

.site-drawer__nav ul {
  display: flex;
  flex-direction: column;
}
.site-drawer__nav ul li {
  border-bottom: 1px solid var(--border);
}
.site-drawer__nav ul li a {
  display: block;
  padding: 1.25rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  text-decoration: none;
  text-align: center;
  transition: color 0.2s;
}
.site-drawer__nav ul li a:hover {
  color: var(--primary);
}

.site-drawer__overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.site-drawer__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.inner {
  max-width: 90rem;
  padding: 0 var(--padding-pc);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding: 0 var(--padding-sp);
  }
}

.page-contact {
  min-height: 100vh;
  background: var(--background);
  padding-top: 1.75rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-contact {
    padding-top: 0.75rem;
    padding-bottom: 3.5rem;
  }
}

.contact-container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .contact-container {
    padding: 0 var(--padding-sp);
  }
}

.subsidy-banner {
  max-width: 48rem;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 4px solid #facc15;
  background: #fefce8;
}

.subsidy-banner__header {
  background: #fff;
  border-bottom: 4px solid #facc15;
  padding: 0.75rem 1rem;
  text-align: center;
}
.subsidy-banner__header h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__header h2 {
    font-size: 1.125rem;
  }
}

.subsidy-banner__stripe {
  height: 1rem;
  width: 100%;
  background: repeating-linear-gradient(45deg, #000, #000 10px, #fbbf24 10px, #fbbf24 20px);
}

.subsidy-banner__body {
  background: #fde047;
  padding: 1.5rem 1rem;
  text-align: center;
}

.subsidy-banner__alert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.subsidy-banner__alert-icon {
  width: 2rem;
  height: 2rem;
  box-shadow: none;
  animation: pulse-opacity 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-opacity {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.subsidy-banner__alert-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #dc2626;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .subsidy-banner__alert-text {
    font-size: 1.25rem;
  }
}

.subsidy-banner__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__title {
    font-size: 1.125rem;
  }
}

.subsidy-banner__date {
  font-size: 1.5rem;
  color: #dc2626;
  border-bottom: 4px solid #dc2626;
  display: inline-block;
  margin: 0 0.25rem;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__date {
    font-size: 1.375rem;
  }
}

.subsidy-banner__info {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.subsidy-banner__info-period {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__info-period {
    font-size: 1rem;
  }
}

.subsidy-banner__info-sub {
  font-size: 0.875rem;
  color: #334155;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__info-sub {
    font-size: 0.8125rem;
  }
}

.subsidy-banner__info-notes {
  display: inline-block;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b91c1c;
}
.subsidy-banner__info-notes p + p {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__info-notes {
    font-size: 0.8125rem;
  }
}

.subsidy-banner__footer {
  background: #fff;
  padding: 0.75rem 1rem;
  text-align: center;
  border-top: 4px solid #facc15;
}
.subsidy-banner__footer p {
  font-size: 1.25rem;
  font-weight: 900;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__footer p {
    font-size: 1.125rem;
  }
}

.subsidy-banner__deco {
  font-size: 1.75rem;
  display: inline-block;
}
.subsidy-banner__deco--left {
  transform: rotate(-12deg);
}
.subsidy-banner__deco--right {
  transform: rotate(12deg);
}

.subsidy-banner__highlight {
  background: #1e293b;
  color: #fff;
  padding: 0.25rem 0.5rem;
}

.contact-card {
  margin-top: 2rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-card__header {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.contact-card__desc a {
  color: var(--primary);
  text-decoration: underline;
  transition: opacity 0.2s;
}
.contact-card__desc a:hover {
  opacity: 0.8;
}

.contact-card__body {
  padding: 2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .contact-card__body {
    padding: 1.5rem 1rem;
  }
}

.lp-hero {
  position: relative;
  min-height: 90vh;
  margin-top: -5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(240, 253, 248, 0.5), #fff);
}
@media screen and (max-width: 767px) {
  .lp-hero {
    margin-top: -4rem;
  }
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.lp-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  padding-top: 5rem;
  padding-bottom: 5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-hero__inner {
    grid-template-columns: 1fr;
    padding: 0 var(--padding-sp);
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}

.lp-hero__content {
  max-width: 37.5rem;
}
@media screen and (max-width: 767px) {
  .lp-hero__content {
    max-width: 100%;
  }
}

.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 181, 128, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid rgba(0, 181, 128, 0.2);
  margin-bottom: 1.5rem;
}

.lp-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111;
  margin-bottom: 1.5rem;
}
.lp-hero__title span {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.lp-hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #555;
  line-height: 1.8;
  max-width: 31.25rem;
  margin-bottom: 2rem;
}

.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  padding-top: 1rem;
}
.lp-hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lp-hero__trust span svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.lp-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(0, 181, 128, 0.5);
  animation: bounce 1.5s infinite;
}
.lp-hero__scroll svg {
  width: 2rem;
  height: 2rem;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
.lp-simulation {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.lp-simulation__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 1rem 1rem;
  opacity: 0.3;
}

.lp-simulation__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-simulation__inner {
    padding: 0 var(--padding-sp);
  }
}

.lp-simulation__header {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 4rem;
}

.lp-simulation__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.lp-simulation__title span {
  background: linear-gradient(to right, var(--primary), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-simulation__lead {
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.lp-simulation__banner {
  max-width: 53.75rem;
  margin: 0 auto 3rem;
  background: rgba(255, 194, 0, 0.18);
  border: 2px solid var(--secondary);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s;
}
.lp-simulation__banner:hover {
  transform: scale(1.01);
}
@media screen and (max-width: 767px) {
  .lp-simulation__banner {
    padding: 2rem 1.5rem;
  }
}

.lp-simulation__banner-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.lp-simulation__banner-amount {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.lp-simulation__banner-amount strong {
  color: var(--secondary-foreground);
}

.lp-simulation__banner-note {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #555;
}
.lp-simulation__banner-note small {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #999;
  display: block;
  margin-top: 0.25rem;
}

.lp-simulation__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 62.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lp-simulation__cards {
    grid-template-columns: 1fr;
  }
}

.lp-simulation__card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s;
}
.lp-simulation__card:hover {
  box-shadow: var(--card-shadow-hover);
}

.lp-simulation__card-head {
  background: var(--muted);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.lp-simulation__card-body {
  padding: 2rem;
  text-align: center;
}

.lp-simulation__card-before {
  font-size: 0.875rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.lp-simulation__card-price-old {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ccc;
  text-decoration: line-through;
  text-decoration-color: rgba(239, 68, 68, 0.5);
  margin-bottom: 1rem;
}

.lp-simulation__card-after {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.lp-simulation__card-price-new {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.lp-steps {
  padding: 6rem 0;
  background: var(--muted);
}

.lp-steps__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-steps__inner {
    padding: 0 var(--padding-sp);
  }
}

.lp-steps__header {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 5rem;
}

.lp-steps__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}
.lp-steps__title span {
  color: var(--primary);
}

.lp-steps__lead {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

.lp-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 68.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .lp-steps__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .lp-steps__grid {
    grid-template-columns: 1fr;
  }
}

.lp-steps__item {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
  height: 100%;
}
.lp-steps__item:hover {
  box-shadow: var(--card-shadow-hover);
}
.lp-steps__item-bg {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  background: rgba(0, 181, 128, 0.1);
  border-bottom-left-radius: 100%;
  transition: transform 0.3s;
}
.lp-steps__item-num {
  font-size: 2.25rem;
  font-weight: 900;
  color: rgba(0, 181, 128, 0.2);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}
.lp-steps__item-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.lp-steps__item-icon-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 194, 0, 0.15);
  border-radius: 1rem;
  transform: rotate(3deg);
  transition: transform 0.3s;
}
.lp-steps__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.lp-steps__item:hover .lp-steps__item-bg {
  transform: scale(1.1);
}
.lp-steps__item:hover .lp-steps__item-icon-bg {
  transform: rotate(6deg);
}
.lp-steps__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.lp-steps__item:hover .lp-steps__item-title {
  color: var(--primary);
}
.lp-steps__item-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.lp-company {
  padding: 6rem 0;
  background: #fff;
}

.lp-company__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-company__inner {
    padding: 0 var(--padding-sp);
  }
}

.lp-company__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-company__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.lp-company__image-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}
.lp-company__image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.6s;
}
.lp-company__image-wrap:hover img {
  transform: scale(1.04);
}
.lp-company__image-wrap-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 2rem 1.5rem 1.5rem;
  color: #fff;
}
.lp-company__image-wrap-caption p {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}
.lp-company__image-wrap-caption small {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.lp-company__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lp-company__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
}
.lp-company__title span {
  color: var(--primary);
}

.lp-company__text {
  color: #555;
  line-height: 1.9;
  font-size: 1.0625rem;
}

.lp-company__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lp-company__stat {
  background: var(--muted);
  border-radius: 1rem;
  padding: 1.5rem;
}
.lp-company__stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lp-company__stat-num small {
  font-size: 0.875rem;
  font-weight: 400;
  color: #888;
  margin-left: 0.25rem;
}
.lp-company__stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}

.lp-faq {
  padding: 6rem 0;
  background: var(--muted);
}

.lp-faq__inner {
  max-width: 56.25rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-faq__inner {
    padding: 0 var(--padding-sp);
  }
}

.lp-faq__header {
  text-align: center;
  margin-bottom: 4rem;
}

.lp-faq__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.lp-faq__lead {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

.lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-item[open] .faq-item__question::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--foreground);
  list-style: none;
  position: relative;
}
.faq-item__question::marker, .faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s;
}
.faq-item__question .faq-q {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.faq-item__answer {
  padding: 0 1.5rem 1.5rem 3.5rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}
.faq-item__answer .faq-a {
  color: var(--secondary);
  font-weight: 700;
  margin-right: 0.5rem;
}

.lp-cta {
  padding: 6rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.lp-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero_bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: overlay;
}

.lp-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-cta__inner {
    padding: 0 var(--padding-sp);
  }
}

.lp-cta__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.lp-cta__title span {
  color: var(--secondary);
}

.lp-cta__lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 37.5rem;
  margin: 0 auto 3rem;
}

.lp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  border-radius: 9999px;
  font-size: 1.25rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2s infinite;
}
.lp-cta__btn:hover {
  transform: scale(1.05);
  animation: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.lp-cta__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
  }
}
.media-layout {
  background: var(--muted);
  min-height: 100vh;
  padding-bottom: 5rem;
}
.media-layout--white {
  background: #fff;
}

.media-layout__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2.5rem var(--padding-pc);
  display: grid;
  grid-template-columns: 1fr 21.25rem;
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .media-layout__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .media-layout__inner {
    padding: 1.5rem var(--padding-sp);
  }
}

.article-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.article-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}
.article-card:hover .article-card__title {
  color: var(--primary);
}
.article-card:hover .article-card__thumb img {
  transform: scale(1.05);
}

.article-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.article-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.article-card__meta svg {
  width: 0.75rem;
  height: 0.75rem;
}

.article-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--foreground);
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.article-card__excerpt {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

.article-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}
.article-row:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}
.article-row:hover .article-row__title {
  color: var(--primary);
}
.article-row:hover .article-row__thumb img {
  transform: scale(1.05);
}

.article-row__thumb {
  width: 30%;
  flex-shrink: 0;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.75rem 0 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .article-row__thumb {
    width: 35%;
  }
}
.article-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-row__body {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem 0.75rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-row__cat {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.375rem;
  height: 1rem;
  font-size: 0.625rem;
  font-weight: 400;
  background: #f3f4f6;
  color: #4b5563;
  border-radius: 0.375rem;
  margin-bottom: 0.25rem;
}

.article-row__title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--foreground);
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article-row__title {
    font-size: 0.875rem;
    -webkit-line-clamp: 2;
  }
}

.article-row__meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: var(--muted-foreground);
  margin-top: 0.375rem;
}
.article-row__meta svg {
  width: 0.6875rem;
  height: 0.6875rem;
}

.media-carousel {
  background: #fff;
  padding-top: 0.625rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}
.media-carousel .swiper {
  overflow: visible;
  margin: 0 -1rem;
}
@media screen and (max-width: 767px) {
  .media-carousel .swiper {
    margin: 0 -0.75rem;
  }
}
.media-carousel .swiper-slide {
  padding: 0 0.5rem;
  height: auto;
}
.media-carousel .swiper-slide a {
  display: block;
  height: 100%;
  text-decoration: none;
}
.media-carousel .swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.media-carousel .swiper-pagination-bullet {
  background: #d1d5db;
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  transition: width 0.3s, background 0.3s;
}
.media-carousel .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 1.5rem;
  border-radius: 9999px;
}

.media-carousel__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  position: relative;
}
@media screen and (max-width: 767px) {
  .media-carousel__inner {
    padding: 0 var(--padding-sp);
  }
}

.media-category-section {
  margin-bottom: 3rem;
}

.media-category-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.media-category-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0;
  padding-left: 0.75rem;
  border-left: 4px solid var(--primary);
  line-height: 1;
}

.media-category-section__more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.2s;
}
.media-category-section__more:hover {
  gap: 0.5rem;
  text-decoration: underline;
}
.media-category-section__more svg {
  width: 1rem;
  height: 1rem;
}

.media-category-section__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.media-category-section__footer {
  display: flex;
  justify-content: flex-end;
}

.media-infeed-cta {
  background: rgba(0, 181, 128, 0.05);
  border: 2px solid rgba(0, 181, 128, 0.18);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .media-infeed-cta {
    padding: 2rem 1.5rem;
  }
}
.media-infeed-cta::before, .media-infeed-cta::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  filter: blur(48px);
  pointer-events: none;
}
.media-infeed-cta::before {
  top: -2.5rem;
  left: -2.5rem;
  background: rgba(0, 181, 128, 0.1);
}
.media-infeed-cta::after {
  bottom: -2.5rem;
  right: -2.5rem;
  background: rgba(255, 194, 0, 0.2);
}

.media-infeed-cta__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.media-infeed-cta__text {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.archive-header {
  background: var(--muted);
  padding: 4rem 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .archive-header {
    padding: 3rem 0 2rem;
  }
}

.archive-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .archive-header__inner {
    padding: 0 var(--padding-sp);
  }
}

.archive-header__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--foreground);
  margin-top: 0.75rem;
}

.archive-header__lead {
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  font-size: 1rem;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination__item {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--foreground);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: #fff;
}
.pagination__item:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination__item--current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  pointer-events: none;
}
.pagination__item--prev svg, .pagination__item--next svg {
  width: 1.125rem;
  height: 1.125rem;
}
.pagination__item--prev.disabled, .pagination__item--next.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-banner {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.sidebar-banner a {
  display: block;
  width: 100%;
  height: 100%;
}
.sidebar-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s;
}
.sidebar-banner:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.sidebar-ranking {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.sidebar-ranking__head {
  background: rgba(0, 181, 128, 0.05);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}
.sidebar-ranking__head svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--secondary);
}

.sidebar-ranking__list {
  divide-y: 1px solid var(--border);
}

.sidebar-ranking__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.sidebar-ranking__item:last-child {
  border-bottom: none;
}
.sidebar-ranking__item:hover {
  background: var(--muted);
}
.sidebar-ranking__item:hover .sidebar-ranking__item-title {
  color: var(--primary);
}

.sidebar-ranking__item-rank {
  font-size: 1.5rem;
  font-weight: 900;
  font-style: italic;
  flex-shrink: 0;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ddd;
}
.sidebar-ranking__item-rank--1 {
  color: var(--secondary);
}
.sidebar-ranking__item-rank--2 {
  color: #9ca3af;
}
.sidebar-ranking__item-rank--3 {
  color: #b45309;
}

.sidebar-ranking__item-body {
  flex: 1;
  min-width: 0;
}

.sidebar-ranking__item-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--foreground);
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.sidebar-ranking__item-views {
  font-size: 0.6875rem;
  color: var(--muted-foreground);
}

.sidebar-categories {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.sidebar-categories__head {
  background: var(--muted);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}
.sidebar-categories__head svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary);
}

.sidebar-categories__tags {
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sidebar-categories__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.sidebar-categories__tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 181, 128, 0.05);
}

.single-article {
  background: var(--muted);
  min-height: 100vh;
  padding-bottom: 5rem;
}

.single-article__breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  display: none;
}
@media (min-width: 768px) {
  .single-article__breadcrumb-bar {
    display: block;
  }
}

.single-article__breadcrumb-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}

.single-article__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem var(--padding-pc);
  display: grid;
  grid-template-columns: 1fr 21.25rem;
  gap: 3rem;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .single-article__inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .single-article__inner {
    padding: 0 0 2.5rem;
  }
}

.article-body {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
@media screen and (max-width: 767px) {
  .article-body {
    border-radius: 0;
  }
}

.article-body__header {
  padding: 3rem 3rem 0;
}
@media screen and (max-width: 767px) {
  .article-body__header {
    padding: 1.5rem 1.25rem 0;
  }
}

.article-body__title {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.article-body__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
.article-body__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
}

.article-body__summary {
  margin: 0 3rem;
  background: var(--muted);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}
@media screen and (max-width: 767px) {
  .article-body__summary {
    margin: 0 1.25rem;
  }
}

.article-body__summary-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.9375rem;
}

.article-body__summary-ai {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 900;
  flex-shrink: 0;
}

.article-body__summary-text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.article-body__toc {
  margin: 2rem 3rem 0;
  background: #f9fafb;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .article-body__toc {
    margin: 1.5rem 1.25rem 0;
  }
}

.article-body__toc-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.article-body__toc-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.article-body__toc-list li.toc-h3 {
  padding-left: 1rem;
}
.article-body__toc-list a {
  font-size: 0.9375rem;
  color: #4b5563;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s, -webkit-text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s;
  transition: color 0.2s, text-decoration 0.2s, -webkit-text-decoration 0.2s;
  text-underline-offset: 4px;
}
.article-body__toc-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .article-body__toc-list a {
    font-size: 0.875rem;
  }
}

.article-body__toc-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  transition: opacity 0.2s;
}
.article-body__toc-toggle:hover {
  opacity: 0.7;
}
.article-body__toc-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}
.article-body__toc-toggle.is-expanded svg {
  transform: rotate(180deg);
}

.article-body__content {
  padding: 2.5rem 3rem;
}
@media screen and (max-width: 767px) {
  .article-body__content {
    padding: 1.75rem 1.25rem;
  }
}
.article-body__content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 181, 128, 0.2);
}
.article-body__content h2:first-child {
  margin-top: 0;
}
.article-body__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.article-body__content p {
  color: var(--muted-foreground);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.article-body__content .cta-box {
  background: rgba(0, 181, 128, 0.06);
  border: 1px solid rgba(0, 181, 128, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 2rem 0;
}
.article-body__content .cta-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.article-body__content .cta-box p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.article-body__inline-cta {
  margin: 0 3rem 3rem;
  background: linear-gradient(135deg, rgba(0, 181, 128, 0.08), rgba(255, 194, 0, 0.08));
  border: 1px solid rgba(0, 181, 128, 0.18);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .article-body__inline-cta {
    margin: 0 1.25rem 2rem;
    padding: 1.5rem 1.25rem;
  }
}
.article-body__inline-cta h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.article-body__inline-cta p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.article-body__writer {
  padding: 2rem 3rem;
  background: rgba(249, 250, 251, 0.5);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .article-body__writer {
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.article-body__writer-avatar {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.article-body__writer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body__writer-body {
  flex: 1;
}

.article-body__writer-namerow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .article-body__writer-namerow {
    justify-content: center;
  }
}

.article-body__writer-label {
  display: inline-flex;
  align-items: center;
  padding: 0.0625rem 0.5rem;
  background: #e5e7eb;
  color: #4b5563;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.article-body__writer-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.article-body__writer-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.article-body__writer-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.article-body__share {
  padding: 1.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .article-body__share {
    padding: 1.25rem;
  }
}

.article-body__share-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  color: var(--foreground);
}
.article-body__share-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.article-body__share-btn--fb:hover {
  background: #1877F2;
  color: #fff;
  border-color: #1877F2;
}
.article-body__share-btn--tw:hover {
  background: #1DA1F2;
  color: #fff;
  border-color: #1DA1F2;
}
.article-body__share-btn--li:hover {
  background: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
}
.article-body__share-btn--copy:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

.related-articles {
  margin-top: 3rem;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .related-articles {
    padding: 0;
  }
}

.related-articles__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.related-articles__title::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 2rem;
  background: var(--secondary);
  border-radius: 9999px;
}

.related-articles__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .page-404 {
    min-height: 50vh;
    padding: 3rem 0;
  }
}

.page-404__content {
  text-align: center;
}

.page-404__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  opacity: 0.15;
  margin-bottom: -1.5rem;
}

.page-404__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.page-404__text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.recruit-header {
  padding: 2rem 0 1rem;
}
.recruit-header .section-title {
  margin-top: 1rem;
}

.recruit-message {
  padding: 3rem 0;
}

.recruit-message__inner {
  background: linear-gradient(135deg, #e6f9f4 0%, #f0fdf4 50%, #fffbeb 100%);
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit-message__inner {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }
}

.recruit-message__title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.recruit-message__text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  max-width: 40rem;
  margin: 0 auto;
}

.recruit-positions {
  padding: 3rem 0;
}
.recruit-positions .section-title {
  margin-bottom: 2.5rem;
}

.recruit-positions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .recruit-positions__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.recruit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.recruit-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}

.recruit-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.recruit-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.recruit-card__title small {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.recruit-card__details {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.recruit-card__details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.recruit-card__details li svg {
  flex-shrink: 0;
  color: var(--primary);
}

.recruit-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.recruit-card__tags span {
  font-size: 0.75rem;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--muted-foreground);
  font-weight: 500;
}

.recruit-benefits {
  padding: 3rem 0;
  background: var(--muted);
}
.recruit-benefits .section-title {
  margin-bottom: 2.5rem;
}

.recruit-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .recruit-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .recruit-benefits__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.recruit-benefit {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.recruit-benefit__icon {
  margin-bottom: 1rem;
}

.recruit-benefit__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.recruit-benefit__text {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.recruit-cta {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .recruit-cta {
    padding: 3rem 0;
  }
}

.recruit-cta__inner {
  background: linear-gradient(135deg, var(--primary) 0%, #009966 100%);
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recruit-cta__inner {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }
}

.recruit-cta__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.recruit-cta__text {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.recruit-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.recruit-cta__actions .btn--outline {
  border-color: #fff;
  color: #fff;
}
.recruit-cta__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.service-hero {
  background: linear-gradient(135deg, #e6f9f4 0%, #f0fdf4 50%, #fffbeb 100%);
  padding: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-hero {
    padding: 3rem 0;
  }
}

.service-hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.service-hero__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 900;
  color: var(--foreground);
  line-height: 1.35;
  margin-bottom: 1rem;
}

.service-hero__lead {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-points {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .service-points {
    padding: 3rem 0;
  }
}
.service-points .section-title {
  margin-bottom: 3rem;
}

.service-points__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 50rem;
  margin: 0 auto;
}

.service-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-point:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-2px);
}
@media screen and (max-width: 767px) {
  .service-point {
    flex-wrap: wrap;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
}

.service-point__number {
  font-size: 0.8125rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 0.125rem;
}

.service-point__body {
  flex: 1;
  min-width: 0;
}

.service-point__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-point__text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.service-point__icon {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .service-point__icon {
    order: -1;
  }
}

.service-structure {
  background: var(--muted);
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .service-structure {
    padding: 3rem 0;
  }
}
.service-structure .section-title {
  margin-bottom: 1rem;
}

.service-structure__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .service-structure__grid {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

.service-structure__item {
  flex: 1;
  max-width: 17.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}
@media screen and (max-width: 767px) {
  .service-structure__item {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem 1.25rem;
  }
}

.service-structure__item-icon {
  margin-bottom: 1rem;
}

.service-structure__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.service-structure__item-label {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.service-structure__item-text {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.7;
}

.service-structure__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .service-structure__arrow {
    transform: rotate(90deg);
  }
}

.service-faq {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .service-faq {
    padding: 3rem 0;
  }
}
.service-faq .section-title {
  margin-bottom: 1rem;
}

.service-faq__list {
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
}
.service-faq__item[open] {
  border-color: var(--primary);
}
.service-faq__item[open] .service-faq__chevron {
  transform: rotate(180deg);
}

.service-faq__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.6;
  list-style: none;
}
.service-faq__question::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767px) {
  .service-faq__question {
    padding: 1rem 1rem;
    font-size: 0.875rem;
  }
}

.service-faq__q-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-faq__chevron {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--muted-foreground);
}

.service-faq__answer {
  display: flex;
  gap: 0.75rem;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
@media screen and (max-width: 767px) {
  .service-faq__answer {
    padding: 0 1rem 1rem;
    font-size: 0.8125rem;
  }
}

.service-faq__a-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.875rem;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}

.service-flow {
  background: var(--muted);
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .service-flow {
    padding: 3rem 0;
  }
}
.service-flow .section-title {
  margin-bottom: 1rem;
}

.service-flow__list {
  max-width: 50rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.service-flow__list::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  bottom: 1.5rem;
  left: 2.4375rem;
  width: 2px;
  background: var(--primary);
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .service-flow__list::before {
    left: 1.6875rem;
  }
}

.service-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.25rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-flow__step {
    gap: 1rem;
    padding: 1rem 0;
  }
}

.service-flow__step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.service-flow__step-number span {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.service-flow__step-number strong {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service-flow__step-number {
    width: 2.75rem;
    height: 2.75rem;
  }
  .service-flow__step-number span {
    font-size: 0.5rem;
  }
  .service-flow__step-number strong {
    font-size: 1rem;
  }
}

.service-flow__step-body {
  flex: 1;
  min-width: 0;
  padding-top: 0.25rem;
}

.service-flow__step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-flow__step-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.service-cta {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .service-cta {
    padding: 3rem 0;
  }
}

.service-cta__inner {
  background: linear-gradient(135deg, var(--primary) 0%, #009966 100%);
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .service-cta__inner {
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
  }
}

.service-cta__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.service-cta__text {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.service-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.service-cta__actions .btn--outline {
  border-color: #fff;
  color: #fff;
}
.service-cta__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-thanks {
  background: var(--muted);
  padding-top: 1.75rem;
  padding-bottom: 5rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-thanks {
    padding-top: 0.75rem;
    padding-bottom: 3.5rem;
    padding-left: var(--padding-sp);
    padding-right: var(--padding-sp);
  }
}

.thanks-card {
  max-width: 42rem;
  width: 100%;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 4rem 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks-card {
    padding: 3rem 1.5rem;
  }
}

.thanks-card__icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.thanks-card__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(0, 181, 128, 0.1);
}
.thanks-card__icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.thanks-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .thanks-card__title {
    font-size: 1.25rem;
  }
}

.thanks-card__desc {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .thanks-card__desc {
    font-size: 0.8125rem;
  }
}

.thanks-card__note p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.thanks-card__note .btn {
  min-width: 15rem;
}