@charset "UTF-8";
/* リキッドレイアウト対応 */
:root {
  --padding-pc: 25px;
  --padding-sp: 20px;
  --base-font-family: "Zen Kaku Gothic New", sans-serif;
  --second-font-family: "Montserrat", sans-serif;
  --regular: 400;
  --normal: 500;
  --bold: 700;
  --black: #111;
  --white: #fff;
  --primary: #00b680;
  --primary-light: #e6f8f2;
  --secondary: #ffc200;
  --secondary-foreground: #333333;
  --foreground: #433b31;
  --orange: #f5901f;
  --cta-red: #f86242;
  --yellow: #fef763;
  --yellow-bg: #fcf2b6;
  --voice-bg: #b3e9d9;
  --voice-deco: #33c599;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --border: #e4e4e4;
  --card-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  --card-shadow-hover: 0 0 24px rgba(0, 0, 0, 0.16);
}

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;
  }
}

/* ホバー */
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;
}

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

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 a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-form .contact-form__footer .contact-form__footer-tel a:hover {
  opacity: 0.7;
}
.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-section-tag {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  font-family: var(--base-font-family);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-section-tag {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}

.lp-section-tag::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
}
@media screen and (max-width: 767px) {
  .lp-section-tag::after {
    bottom: -0.5rem;
    border-left: 0.375rem solid transparent;
    border-right: 0.375rem solid transparent;
  }
}

.lp-section-tag--green {
  background: var(--primary);
  color: #fff;
}

.lp-section-tag--green::after {
  border-top: 0.75rem solid var(--primary);
}
@media screen and (max-width: 767px) {
  .lp-section-tag--green::after {
    border-top-width: 0.5rem;
  }
}

.lp-section-tag--orange {
  background: var(--orange);
  color: #fff;
}

.lp-section-tag--orange::after {
  border-top: 0.75rem solid var(--orange);
}
@media screen and (max-width: 767px) {
  .lp-section-tag--orange::after {
    border-top-width: 0.5rem;
  }
}

.lp-section-tag--white {
  background: #fff;
  color: var(--foreground);
}

.lp-section-tag--white::after {
  border-top: 0.75rem solid #fff;
}
@media screen and (max-width: 767px) {
  .lp-section-tag--white::after {
    border-top-width: 0.5rem;
  }
}

.lp-fv {
  position: relative;
  padding: 2rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .lp-fv {
    padding: 0;
  }
}

.lp-fv__inner {
  max-width: 86.25rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-fv__inner {
    padding: 1.25rem;
    gap: 0;
  }
}

.lp-fv__bg {
  position: absolute;
  inset: 0 1.25rem 0 1.25rem;
  aspect-ratio: 1380/602;
  border-radius: 1.875rem;
  overflow: hidden;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .lp-fv__bg {
    display: none;
  }
}

.lp-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-fv__box {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0 1rem;
}
@media screen and (max-width: 767px) {
  .lp-fv__box {
    width: calc(100% + 0.3125rem);
    margin-left: 0.3125rem;
    padding: unset;
    max-width: 100%;
    border-radius: 1.875rem;
    background-size: cover;
    background-position: center;
    margin-bottom: -4.375rem;
  }
}

.lp-fv__text-img {
  width: 100%;
  max-width: 31.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-fv__text-img {
    max-width: unset;
  }
}

.lp-fv__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-fv__headline {
    gap: 0.5rem;
  }
}

.lp-fv__headline-top {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
}

.lp-fv__cta {
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .lp-fv__cta {
    margin-top: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .lp-fv__cta .lp-cta {
    padding-top: unset;
  }
}
@media screen and (max-width: 767px) {
  .lp-fv__cta .lp-cta__content {
    width: 19.25rem;
    padding-inline: unset;
  }
}

.lp-fv__stats-label {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  background: var(--foreground);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .lp-fv__stats-label {
    font-size: 0.625rem;
    padding: 0.0625rem 0.25rem;
  }
}

.lp-fv__stats-value {
  display: flex;
  align-items: flex-end;
  gap: 0.125rem;
}

.lp-fv__stats-num {
  font-family: var(--second-font-family);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}
@media screen and (max-width: 767px) {
  .lp-fv__stats-num {
    font-size: 1.5rem;
  }
}

.lp-fv__stats-unit {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1.2;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .lp-fv__stats-unit {
    font-size: 0.625rem;
    padding-bottom: 0.125rem;
  }
}

.lp-fv__stats-unit small {
  font-size: 0.625rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .lp-fv__stats-unit small {
    font-size: 0.5rem;
  }
}

.lp-fv__stats-suffix {
  font-size: 1.3125rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-fv__stats-suffix {
    font-size: 0.75rem;
  }
}

.lp-fv__notes {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-fv__notes {
    display: none;
  }
}

.lp-fv__tel {
  text-align: center;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-fv__tel {
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
  }
}

.lp-fv__tel-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  gap: 0.375rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: opacity 0.2s;
}
.lp-fv__tel-link:hover {
  opacity: 0.7;
}

.lp-fv__tel-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-fv__tel-number {
    font-size: 1.625rem;
  }
}

.lp-fv__tel-info {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-fv__tel-info {
    font-size: 0.75rem;
  }
}

.lp-about {
  padding: 2rem 0 4rem;
  background: linear-gradient(180deg, #fff 18%, rgba(255, 255, 255, 0) 86%), url("../images/top/about_bg.jpg") center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .lp-about {
    padding: 1rem 1rem 2.5rem;
    background: linear-gradient(180deg, #fff 18%, rgba(255, 255, 255, 0) 49%), url("../images/top/about_bg.jpg") center/cover no-repeat;
  }
}

.lp-about--initial {
  text-align: center;
}

.lp-about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lp-about__heading {
    margin-bottom: 1.5rem;
  }
}

.lp-about__heading-img {
  width: 100%;
  max-width: 37.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-about__heading-img {
    max-width: 21.875rem;
  }
}

.lp-about__tag {
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.25rem;
  padding: 0.25rem 1.5rem;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .lp-about__tag {
    padding: 0.25rem 1rem;
    gap: 0.125rem;
  }
}

.lp-about__tag--orange {
  background: var(--orange);
}

.lp-about__tag-label {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .lp-about__tag-label {
    font-size: 1rem;
    padding-bottom: 0.125rem;
  }
}

.lp-about__tag-num {
  font-family: var(--second-font-family);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--yellow);
}
@media screen and (max-width: 767px) {
  .lp-about__tag-num {
    font-size: 1.5rem;
  }
}

.lp-about__tag-yen {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .lp-about__tag-yen {
    font-size: 1rem;
    padding-bottom: 0.125rem;
  }
}

.lp-about__tag-arrow {
  width: 0;
  height: 0;
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
}
@media screen and (max-width: 767px) {
  .lp-about__tag-arrow {
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
  }
}

.lp-about__tag-arrow--orange {
  border-top: 0.75rem solid var(--orange);
}
@media screen and (max-width: 767px) {
  .lp-about__tag-arrow--orange {
    border-top: 0.5rem solid var(--orange);
  }
}

.lp-about__tag-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-about__tag-text {
    font-size: 1rem;
    margin-top: 0.25rem;
  }
}

.lp-about__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.lp-about__brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lp-about__brand-name {
  font-size: 2rem;
  font-weight: 900;
  color: var(--foreground);
  line-height: 1;
}

.lp-about__brand-particle {
  font-size: 2rem;
  font-weight: 900;
  color: var(--foreground);
  line-height: 1;
}

.lp-about__brand-badge {
  display: inline-block;
  background: #fff;
  color: var(--foreground);
  font-weight: 900;
  font-size: 1.75rem;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.24);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-about__brand-badge {
    font-size: 1.25rem;
    padding: 0.25rem 0.75rem;
  }
}

.lp-about__result {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lp-about__result {
    margin-bottom: 1.5rem;
    gap: 0.125rem;
  }
}

.lp-about__result-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lp-about__result-text {
    font-size: 1.25rem;
    padding-bottom: 0.375rem;
  }
}

.lp-about__result-num {
  font-family: var(--second-font-family);
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.8;
  color: var(--orange);
}
@media screen and (max-width: 767px) {
  .lp-about__result-num {
    font-size: 3rem;
  }
}

.lp-about__result-unit {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lp-about__result-unit {
    font-size: 1.25rem;
    padding-bottom: 0.375rem;
  }
}

.lp-about__result-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .lp-about__result-suffix {
    font-size: 1.25rem;
    padding-bottom: 0.375rem;
  }
}

.lp-about__card {
  max-width: 50rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 2rem;
  padding: 0.5rem;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .lp-about__card {
    display: contents;
  }
}

.lp-about__card-inner {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lp-about__card-inner {
    display: contents;
  }
}

.lp-about__card-chart {
  max-width: 28rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-about__card-chart {
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.lp-about__card-illust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -1rem;
}
@media screen and (max-width: 767px) {
  .lp-about__card-illust {
    display: none;
  }
}

.lp-about__card-illust img {
  width: 7.875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-about__card-illust img {
    width: 6.1875rem;
  }
}

.lp-about__card-bubble {
  background: #f2f2f2;
  border-radius: 2.5rem;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.4;
  text-align: center;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .lp-about__card-bubble {
    border-radius: 1.25rem;
    font-size: 0.75rem;
  }
}

.lp-subsidy {
  background: var(--primary-light);
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy {
    gap: 2rem;
    padding: 2.5rem 1rem 0;
  }
}

.lp-subsidy__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading {
    padding: 0;
  }
}

.lp-subsidy__heading-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading-sub {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}

.lp-subsidy__heading-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: -0.625rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading-main {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.lp-subsidy__heading-pre {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading-pre {
    font-size: 1.5rem;
    width: 100%;
    text-align: center;
    margin-bottom: -0.9375rem;
  }
}

.lp-subsidy__heading-num {
  font-family: var(--second-font-family);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--primary);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading-num {
    font-size: 3rem;
  }
}

.lp-subsidy__heading-unit {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading-unit {
    font-size: 1.75rem;
  }
}

.lp-subsidy__heading-suffix {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading-suffix {
    font-size: 1.5rem;
  }
}

.lp-subsidy__content {
  max-width: 64.375rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content {
    max-width: 37.5rem;
    flex-direction: column;
    padding: 1.25rem;
    margin: 0;
    border-radius: 1.25rem;
    gap: unset;
  }
}

.lp-subsidy__content-text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-text {
    display: contents;
  }
}

.lp-subsidy__content-ttl {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-ttl {
    display: contents;
  }
}

.lp-subsidy__content-ttl p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-ttl p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--orange);
    text-align: right;
    order: 1;
    width: 100%;
  }
}

.lp-subsidy__content-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-badges {
    gap: 0.25rem;
    order: 3;
    margin-bottom: 1rem;
    margin-top: -1.25rem;
  }
}

.lp-subsidy__content-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
  padding: 0.375rem 1rem;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-badge {
    font-size: 1.125rem;
    padding: 0.25rem 0.75rem;
  }
}

.lp-subsidy__content-badge-yellow {
  color: var(--yellow);
}

.lp-subsidy__content-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-desc {
    order: 4;
    font-size: 0.875rem;
  }
}

.lp-subsidy__content-img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-img {
    order: 2;
  }
}

.lp-subsidy__content-img img {
  width: 28.6875rem;
  height: auto;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__content-img img {
    width: 100%;
    border-radius: 0.75rem;
  }
}

.lp-subsidy__bottom {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom {
    max-width: 27.5rem;
    margin-inline: auto;
    flex-wrap: wrap;
    gap: 0.0625rem 2rem;
    padding: 0;
  }
}

.lp-subsidy__bottom-man {
  flex-shrink: 0;
  width: 11.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-man {
    width: 7.75rem;
    order: 2;
  }
}

.lp-subsidy__bottom-woman {
  flex-shrink: 0;
  width: 14.5rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-woman {
    width: 9.9375rem;
    order: 3;
  }
}

.lp-subsidy__bottom-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-info {
    padding-bottom: unset;
    order: 1;
  }
}

.lp-subsidy__bottom-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-tags {
    gap: 0.375rem;
  }
}

.lp-subsidy__bottom-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0.375rem 1rem;
  border-radius: 0.25rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-tag {
    font-size: 1.375rem;
    padding: 0.25rem 0.75rem;
  }
}

.lp-subsidy__bottom-tag--orange {
  background: var(--orange);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-tag--orange {
    flex-grow: 1;
  }
}

.lp-subsidy__bottom-tag--red {
  background: #e86028;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-tag--red {
    flex-grow: 1;
  }
}

.lp-subsidy__bottom-tag-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-tag-text {
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

.lp-subsidy__bottom-amount {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.lp-subsidy__bottom-pre {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-pre {
    font-size: 1.625rem;
    padding-bottom: 0.25rem;
  }
}

.lp-subsidy__bottom-num {
  font-family: var(--second-font-family);
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.8;
  color: var(--orange);
  -webkit-text-stroke: 0.5rem #fff;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-num {
    font-size: 3rem;
    -webkit-text-stroke: 0.3125rem #fff;
  }
}

.lp-subsidy__bottom-unit {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  -webkit-text-stroke: 0.375rem #fff;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-unit {
    font-size: 2rem;
    -webkit-text-stroke: 0.25rem #fff;
  }
}

.lp-subsidy__bottom-particle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-particle {
    font-size: 1.25rem;
    padding-bottom: 0.25rem;
  }
}

.lp-subsidy__bottom-result {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  -webkit-text-stroke: 0.375rem #fff;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.16);
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-result {
    font-size: 2rem;
    -webkit-text-stroke: 0.25rem #fff;
    width: 100%;
    text-align: center;
  }
}

.lp-voice {
  background: var(--voice-bg);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-voice {
    padding: 2.5rem 0;
  }
}

.lp-voice__deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50rem;
  background-image: url("../images/top/voice-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  height: 17.5rem;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .lp-voice__deco {
    width: 37.8125rem;
    height: 13.25rem;
  }
}

.lp-voice__heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__heading {
    margin-bottom: 2rem;
  }
}

.lp-voice__heading-main {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__heading-main {
    flex-wrap: wrap;
    margin-top: 0.375rem;
  }
}

.lp-voice__heading-highlight {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  -webkit-text-stroke: 0.375rem #fff;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .lp-voice__heading-highlight {
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }
}

.lp-voice__heading-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__heading-text {
    font-size: 2rem;
    width: 100%;
    text-align: center;
  }
}

.lp-voice__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.lp-voice__slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  max-width: 100%;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-voice__slider {
    padding: 0 var(--padding-sp);
  }
}

.lp-voice__card.swiper-slide {
  flex-shrink: 0;
  width: 54.375rem;
  height: auto;
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-voice__card.swiper-slide {
    width: 19.375rem;
    padding: unset;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
  }
}

.lp-voice__card-num {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--second-font-family);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  background: var(--orange);
  padding: 0.75rem 1.25rem;
  border-radius: 0 1.5rem 0 1.5rem;
  line-height: 1;
  margin-left: auto;
  margin: -2rem -2rem 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-num {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 0 1rem 0 1rem;
    margin: unset;
    margin-left: auto;
    order: 1;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.lp-voice__card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-title {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    order: 3;
    margin-bottom: 0.75rem;
    padding: 0 1.25rem;
  }
}

.lp-voice__card-divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 2px dashed #d9d9d9;
  background: none;
  margin: 1rem 0;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-divider {
    display: none;
  }
}

.lp-voice__card-body {
  display: flex;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-body {
    display: contents;
  }
}

.lp-voice__card-text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-text {
    order: 4;
    padding: 0 1.25rem 1.25rem;
  }
}

.lp-voice__card-text p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
}
@media screen and (max-width: 767px) {
  .lp-voice__card-text p {
    font-size: 0.875rem;
  }
}

.lp-voice__card-name {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-name {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    text-align: right;
  }
}

.lp-voice__card-img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-img {
    order: 2;
    margin-bottom: 0.75rem;
  }
}

.lp-voice__card-img img {
  width: 24.375rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__card-img img {
    width: 100%;
    aspect-ratio: 310/191;
    height: auto;
    border-radius: 0.75rem 0.75rem 0 0;
  }
}

.lp-voice__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__nav {
    gap: 1rem;
  }
}

.lp-voice__buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 54.375rem;
  aspect-ratio: 870/382;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-voice__buttons {
    display: none;
  }
}

.lp-voice__prev,
.lp-voice__next {
  width: 4rem;
  pointer-events: all;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  position: relative;
  display: grid;
  place-content: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .lp-voice__prev,
  .lp-voice__next {
    width: 2.25rem;
  }
}

.lp-voice__prev {
  transform: translateX(calc(-100% - 1rem));
}

.lp-voice__next {
  transform: translateX(calc(100% + 1rem));
}

.lp-voice__prev:hover,
.lp-voice__next:hover {
  opacity: 0.8;
}

.lp-voice__prev::after,
.lp-voice__next::after {
  content: "";
  display: block;
  width: 0.8125rem;
  aspect-ratio: 13/27;
  -webkit-mask-image: url("../images/top/right-arrow.svg");
          mask-image: url("../images/top/right-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background: #fff;
}

.lp-voice__prev::after {
  transform: scaleX(-1);
}

.lp-voice__prev.swiper-button-disabled,
.lp-voice__next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.lp-voice__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-voice__pagination {
    gap: 0.5rem;
  }
}

.lp-voice__pagination .swiper-pagination-bullet {
  width: 0.75rem !important;
  height: 0.75rem !important;
  margin-inline: 0.375rem !important;
  background: #fff !important;
  opacity: 1 !important;
  transition: background 0.3s !important;
}
.lp-voice__pagination .swiper-pagination-bullet-active {
  background-color: var(--orange) !important;
}

.lp-points {
  padding: 4rem 0;
  background: url("../images/top/points_bg.jpg") center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-points {
    padding: 2.5rem 1.25rem;
  }
}
.lp-points::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: linear-gradient(to bottom, white 20%, transparent);
  z-index: 1;
  pointer-events: none;
}

.lp-points__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding: 0 var(--padding-pc);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-points__heading {
    padding: 0;
    margin-bottom: 2rem;
  }
}

.lp-points__heading-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-points__heading-sub {
    font-size: 1.25rem;
  }
}

.lp-points__heading-main {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.125rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-points__heading-main {
    flex-wrap: unset;
    gap: unset;
    white-space: nowrap;
  }
}

.lp-points__heading-keyword {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-points__heading-keyword {
    font-size: 1.75rem;
  }
}

.lp-points__heading-particle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  padding-bottom: 0.125rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-points__heading-particle {
    font-size: 1rem;
  }
}

.lp-points__heading-promise {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-points__heading-promise {
    font-size: 1.75rem;
  }
}

.lp-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-points__grid {
    max-width: 37.5rem;
    margin-inline: auto;
    grid-template-columns: 1fr;
    padding: 0;
    gap: 1.25rem;
  }
}

.lp-points__item {
  background: var(--primary-light);
  border-radius: 1.5rem;
  padding: 0 1.5rem 1.5rem 1.5rem;
  box-shadow: var(--card-shadow);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-points__item {
    border-radius: 1rem;
    padding: 0 1.25rem 1.25rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.16);
  }
}

.lp-points__item-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--second-font-family);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 0 0 1rem 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-points__item-label {
    padding: 0.625rem 2rem;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 0.75rem;
  }
}

.lp-points__item-img {
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  aspect-ratio: 272/160;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-points__item-img {
    width: calc(100% - 0.75rem);
    margin-inline: auto;
  }
}

.lp-points__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-points__item-title {
    margin-bottom: 0.75rem;
  }
}

.lp-points__item-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.6;
  text-align: justify;
}

.lp-cta {
  padding: 2.5rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .lp-cta {
    padding: 2rem 1.25rem;
  }
}

.lp-cta__inner {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__inner {
    padding: 0;
    margin-inline: auto;
    max-width: 37.5rem;
  }
}

.lp-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-cta__content {
  background: var(--cta-red);
  border-radius: 1.25rem;
  width: 50rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1.25rem 1.5rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__content {
    padding: 0.75rem 1rem 2.75rem;
    width: 100%;
    text-align: center;
    gap: unset;
  }
}

.lp-cta__countdown {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.1875rem;
  position: relative;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown {
    flex-wrap: wrap;
    width: 15rem;
    padding: 0 0.75rem;
    margin-inline: auto;
  }
}

.lp-cta__countdown::before,
.lp-cta__countdown::after {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  top: 65%;
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown::before,
  .lp-cta__countdown::after {
    font-size: 1.125rem;
    bottom: -0.1875rem;
    top: unset;
  }
}

.lp-cta__countdown::before {
  content: "＼";
  left: 0;
  transform: translateY(-50%) rotate(20deg);
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown::before {
    left: 0.625rem;
    transform: translateY(-50%) rotate(20deg) scaleY(1.3);
  }
}

.lp-cta__countdown::after {
  content: "／";
  right: 0;
  transform: translateY(-50%) rotate(-20deg);
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown::after {
    right: 0.625rem;
    transform: translateY(-50%) rotate(-20deg) scaleY(1.3);
  }
}

.lp-cta__countdown-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown-label {
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }
}

.lp-cta__countdown-days,
.lp-cta__countdown-time {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.lp-cta__wrap {
  position: relative;
  width: 2rem;
  height: 2.625rem;
  background: #f2f1ed;
  border-radius: 0.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2.67px 2.67px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .lp-cta__wrap {
    width: 1.375rem;
    height: 1.6875rem;
  }
}
.lp-cta__wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  z-index: 1;
}

.lp-cta__countdown-num-box {
  font-family: var(--second-font-family);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cta-red);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown-num-box {
    font-size: 1.25rem;
  }
}

.lp-cta__countdown-unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown-unit {
    font-size: 1.25rem;
  }
}

.lp-cta__countdown-dots {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-cta__countdown-dots {
    font-size: 1.25rem;
  }
}

.lp-cta__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.125rem;
  flex-wrap: wrap;
  padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__title {
    gap: 0.0625rem;
    padding: unset;
    margin-bottom: 0.5rem;
  }
}

.lp-cta__title-date {
  display: flex;
  align-items: flex-end;
}

.lp-cta__title-date-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.32);
}
@media screen and (max-width: 767px) {
  .lp-cta__title-date-num {
    font-size: 2rem;
  }
}

.lp-cta__title-date-unit {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  padding-bottom: 0.125rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.32);
}
@media screen and (max-width: 767px) {
  .lp-cta__title-date-unit {
    font-size: 1.25rem;
  }
}

.lp-cta__title-text {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  padding-bottom: 0.125rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.32);
}
@media screen and (max-width: 767px) {
  .lp-cta__title-text {
    font-size: 1.25rem;
  }
}

.lp-cta__title-highlight {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  padding-bottom: 0.125rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.32);
}
@media screen and (max-width: 767px) {
  .lp-cta__title-highlight {
    font-size: 1.25rem;
  }
}

.lp-cta__sub {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-cta__sub {
    font-size: 0.875rem;
  }
}

.lp-cta__buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  margin-top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__buttons {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    margin-top: -3.125rem;
    gap: 0.5rem;
  }
}

.lp-cta__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  border: 0.1875rem solid #fff;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  gap: 1rem;
  padding: 0.375rem 1rem 0.375rem 0.375rem;
  box-shadow: 4.6px 4.6px 4.6px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media screen and (max-width: 767px) {
  .lp-cta__btn {
    width: 100%;
    padding: 0.25rem 1rem 0.25rem 0.25rem;
  }
}
@media (any-hover: hover) {
  .lp-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 4.6px 8px 8px rgba(0, 0, 0, 0.2);
  }
}

.lp-cta__btn--orange {
  background: linear-gradient(180deg, #f5901f 50%, #ca6e07 100%);
}

.lp-cta__btn--green {
  background: linear-gradient(180deg, #00b680 50%, #009066 100%);
}

.lp-cta__btn-badge {
  width: 4rem;
  height: 4rem;
  background: #fff;
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 0.88;
  flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-cta__btn-badge {
    width: 3rem;
    height: 3rem;
    font-size: 0.875rem;
  }
}

.lp-cta__btn--orange .lp-cta__btn-badge {
  color: var(--orange);
  padding-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__btn--orange .lp-cta__btn-badge {
    padding-top: 0.625rem;
  }
}
.lp-cta__btn--orange .lp-cta__btn-badge span {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__btn--orange .lp-cta__btn-badge span {
    font-size: 1.0625rem;
  }
}

.lp-cta__btn--green .lp-cta__btn-badge {
  color: var(--primary);
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .lp-cta__btn--green .lp-cta__btn-badge {
    font-size: 0.75rem;
    padding-top: 0.4375rem;
  }
}

.lp-cta__btn-text {
  flex: 1;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.32);
}
@media screen and (max-width: 767px) {
  .lp-cta__btn-text {
    font-size: 1.25rem;
  }
}

.lp-cta__btn-text-highlight {
  color: #ffe320;
}

.lp-cta__btn-arrow {
  width: 1rem;
  height: 1.5rem;
  flex-shrink: 0;
  background: #fff;
  -webkit-mask-image: url("../images/top/right-arrow.svg");
          mask-image: url("../images/top/right-arrow.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .lp-cta__btn-arrow {
    width: 0.5625rem;
    height: 1rem;
  }
}

.lp-electricity {
  padding: 4rem 0 7.875rem;
  background-size: 75rem 100%;
  position: relative;
  background-image: url("../images/top/electricity_bg.jpg");
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 7.8125rem), 50% 100%, 0% calc(100% - 7.8125rem));
}
@media screen and (max-width: 767px) {
  .lp-electricity {
    background-size: 28.125rem auto;
    background-position: 0 -3.75rem;
    padding: 2.5rem 1rem 6.25rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 4.375rem), 50% 100%, 0% calc(100% - 4.375rem));
  }
}
.lp-electricity::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(300deg, #76716a 0%, rgba(118, 113, 106, 0.32) 100%);
  pointer-events: none;
}

.lp-electricity__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 3rem;
  padding: 0 var(--padding-pc);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp-electricity__heading {
    padding: 0;
    margin-bottom: 2rem;
  }
}

.lp-electricity__heading-main {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-electricity__heading-main {
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }
}

.lp-electricity__heading-text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .lp-electricity__heading-text {
    font-size: 1.5rem;
    padding-bottom: 0.25rem;
    width: 100%;
    text-align: center;
  }
}

.lp-electricity__heading-highlight {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  -webkit-text-stroke: 0.375rem #fff;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .lp-electricity__heading-highlight {
    font-size: 2rem;
    text-align: center;
    width: 100%;
  }
}

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

.lp-electricity__card-inner {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 0 13.3px rgba(0, 0, 0, 0.16);
  text-align: center;
  outline: 1px solid #e4e4e4;
  outline-offset: -0.4375rem;
}
@media screen and (max-width: 767px) {
  .lp-electricity__card-inner {
    padding: 1rem;
    border-radius: 1.25rem;
  }
}

.lp-electricity__graph {
  width: 100%;
  height: auto;
}

.lp-electricity__note {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
  margin-top: 1rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .lp-electricity__note {
    font-size: 0.625rem;
    margin-top: 0.75rem;
  }
}

.lp-beforeafter {
  position: relative;
  z-index: 1;
  padding: 2rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter {
    padding: 2.5rem 1.25rem 0rem;
    overflow: hidden;
  }
}

.lp-beforeafter__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__heading {
    margin-bottom: 1.375rem;
  }
}

.lp-beforeafter__icons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__icons {
    display: block;
    padding: 0;
    gap: 0.5rem;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.lp-beforeafter__img {
  flex: 1;
  aspect-ratio: 1030/537;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__img {
    aspect-ratio: 350/1257;
  }
}

.lp-beforeafter__bottoms {
  max-width: 77rem;
  margin-inline: auto;
  margin-top: -10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -4.375rem;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__bottoms {
    margin-top: -6.875rem;
    margin-bottom: unset;
  }
}

.lp-beforeafter__icon-man {
  width: 11.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__icon-man {
    width: 7.1875rem;
    margin-left: -2.5rem;
  }
}

.lp-beforeafter__icon-woman {
  width: 11.25rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__icon-woman {
    width: 7.1875rem;
    margin-right: -3.125rem;
    margin-top: 0.9375rem;
  }
}

.lp-beforeafter__heading-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  padding-bottom: 0.75rem;
  border-bottom: 0.25rem solid var(--orange);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__heading-text {
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
  }
}

.lp-beforeafter__container {
  display: flex;
  gap: 2rem;
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__container {
    flex-direction: column;
    padding: 0;
    gap: 0.25rem;
    max-width: 21.875rem;
  }
}

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

.lp-beforeafter__side {
  flex: 1;
  border-radius: 1.5rem;
  overflow: hidden;
}

.lp-beforeafter__side--before {
  background: #eae4db;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__side--before {
    border-radius: 1rem 1rem 0 0;
  }
}

.lp-beforeafter__side--after {
  background: var(--primary);
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__side--after {
    border-radius: 0 0 2rem 2rem;
  }
}

.lp-beforeafter__side-label {
  display: block;
  text-align: center;
  font-family: var(--second-font-family);
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem 0;
  letter-spacing: 0.1em;
  line-height: 1;
}

.lp-beforeafter__side--before .lp-beforeafter__side-label {
  color: var(--foreground);
}

.lp-beforeafter__side--after .lp-beforeafter__side-label {
  color: #fff;
}

.lp-beforeafter__side-content {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__side-content {
    padding: 2rem 2rem 1rem;
  }
}

.lp-beforeafter__side-lead {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__side-lead {
    font-size: 1.5rem;
  }
}

.lp-beforeafter__side-lead--white {
  color: #fff;
}

.lp-beforeafter__side-lead:last-child {
  margin-top: 1rem;
  margin-bottom: 0;
}

.lp-beforeafter__side-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__side-list {
    gap: 0.75rem;
    width: 19.375rem;
    margin: 0 auto;
  }
}

.lp-beforeafter__side-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lp-beforeafter__side-item-icon {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__side-item-icon {
    width: 3rem;
    height: 3rem;
  }
}

.lp-beforeafter__side-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-beforeafter__side-item-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__side-item-text {
    font-size: 1.5rem;
  }
}

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

.lp-beforeafter__after-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__after-item {
    padding: 1rem;
  }
}

.lp-beforeafter__after-item-head {
  margin-bottom: 0.5rem;
}

.lp-beforeafter__after-item-word {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__after-item-word {
    font-size: 1.5rem;
  }
}

.lp-beforeafter__after-item-desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__after-item-desc {
    font-size: 0.75rem;
  }
}

.lp-beforeafter__after-item-note {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--foreground);
  margin-top: 0.25rem;
  line-height: 1.3;
}

.lp-beforeafter__after-item-num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--second-font-family);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-beforeafter__after-item-num {
    font-size: 3rem;
  }
}

.lp-savings {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  background: var(--yellow-bg);
}
@media screen and (max-width: 767px) {
  .lp-savings {
    padding: 2.5rem 0;
  }
}

.lp-savings__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 67.5rem;
  padding: 0 var(--padding-pc);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lp-savings__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 37.5rem;
    margin-inline: auto;
    padding: 0 var(--padding-sp);
  }
}

.lp-savings__text-box {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .lp-savings__text-img {
    width: 100%;
  }
}

.lp-savings__table-img {
  width: 100%;
  height: auto;
}

.lp-example {
  padding: 4rem 0 6.25rem;
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lp-example {
    padding: 2.5rem 1.25rem 8.375rem;
  }
}

.lp-example__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--second-font-family);
  font-size: 12.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .lp-example__bg-text {
    font-size: 6.25rem;
  }
}

.lp-example__heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 5.25rem;
}
@media screen and (max-width: 767px) {
  .lp-example__heading {
    margin-bottom: 2rem;
    gap: 0.0625rem;
  }
}

.lp-example__heading-main {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.lp-example__heading-main span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-example__heading-main span {
    font-size: 2rem;
  }
}

.lp-example__heading-highlight {
  color: var(--primary) !important;
}

.lp-example__address-sp {
  text-align: center;
  font-size: 1rem;
  font-weight: var(--bold);
  font-family: var(--base-font-family);
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.lp-example__table-sp {
  aspect-ratio: 350/152;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-example__table-sp {
    margin-bottom: 0.75rem;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

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

.lp-example__card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-example__card {
    max-width: 37.5rem;
    margin-inline: auto;
    border-radius: 1.25rem;
    padding: 1.25rem 1.25rem 7.5rem;
  }
}
.lp-example__card::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 320/200;
  width: 20rem;
  bottom: 0;
  left: 4rem;
  transform: translateY(50%);
  background-image: url("../images/top/real-img.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp-example__card::after {
    transform: translate(-50%, 40%);
    left: 50%;
    width: 17.5rem;
  }
}

.lp-example__card-top {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-example__card-top {
    flex-direction: column-reverse;
  }
}

.lp-example__card-text {
  width: 30rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .lp-example__card-text {
    width: 100%;
  }
}

.lp-example__card-title {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-example__card-title {
    margin-bottom: 0.5rem;
    margin-top: -1.25rem;
  }
}

.lp-example__card-title-band {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 0.125rem 0.75rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.8;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .lp-example__card-title-band {
    font-size: 0.9375rem;
    padding: 0.125rem 0.625rem;
  }
}
.lp-example__card-title-band .yellow {
  color: var(--yellow);
}

.lp-example__card-body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 1rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .lp-example__card-body {
    font-size: 0.875rem;
    margin-bottom: unset;
  }
}

.lp-example__card-attr {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-example__card-attr {
    text-align: center;
  }
}

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

.lp-example__card-photo img {
  transform: translate(4.375rem, -4.375rem);
  width: 100%;
  border-radius: 1.8125rem;
  aspect-ratio: 440/240;
  object-fit: cover;
  box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .lp-example__card-photo img {
    transform: unset;
    box-shadow: unset;
    border-radius: 0.9375rem;
    width: 100%;
  }
}

.lp-example__card-table {
  width: 30rem;
  aspect-ratio: 480/154;
  margin-left: auto;
  margin-top: -5rem;
}

.lp-example__card-table-img {
  width: 100%;
  height: auto;
}

.lp-example__card-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lp-example__card-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
}

.lp-example__card-row-label {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  background: #66d3b3;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  min-width: 10rem;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lp-example__card-row-label {
    font-size: 1rem;
    min-width: auto;
  }
}

.lp-example__card-row-label--dark {
  background: #1abd8d;
}

.lp-example__card-row-values {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .lp-example__card-row-values {
    gap: 0.5rem;
  }
}

.lp-example__card-row-before {
  font-size: 1rem;
  font-weight: 700;
  color: #9fa0a0;
}

.lp-example__card-row-before strong {
  font-size: 1.6875rem;
  font-weight: 700;
  color: #9fa0a0;
}
@media screen and (max-width: 767px) {
  .lp-example__card-row-before strong {
    font-size: 1.25rem;
  }
}

.lp-example__card-row-arrow {
  width: 1.5rem;
  height: 1rem;
  position: relative;
}

.lp-example__card-row-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0.5rem;
  height: 0.125rem;
  background: var(--primary);
  transform: translateY(-50%);
}

.lp-example__card-row-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  border-left: 0.625rem solid var(--primary);
}

.lp-example__card-row-after {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.lp-example__card-row-after strong {
  font-size: 1.6875rem;
  font-weight: 700;
  color: var(--primary);
}
@media screen and (max-width: 767px) {
  .lp-example__card-row-after strong {
    font-size: 1.25rem;
  }
}

.over-wrap {
  overflow: hidden;
}

.lp-concerns {
  background-image: url("../images/top/but-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 4rem 0 6.875rem;
}
@media screen and (max-width: 767px) {
  .lp-concerns {
    padding: 2.5rem 0 10.3125rem;
  }
}

.lp-concerns__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .lp-concerns__heading {
    margin-bottom: 2rem;
  }
}

.lp-concerns__heading-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  padding-bottom: 0.75rem;
  border-bottom: 0.25rem solid var(--foreground);
}
@media screen and (max-width: 767px) {
  .lp-concerns__heading-text {
    padding-bottom: 0.5rem;
    font-size: 2rem;
  }
}

.lp-concerns__body {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-concerns__body {
    width: 100%;
    align-items: flex-end;
    flex-direction: row-reverse;
    padding-bottom: 2.5rem;
    max-width: 37.5rem;
    padding: 2rem 1.25rem;
  }
}
.lp-concerns__body::after {
  content: "";
  display: block;
  position: absolute;
  right: -4rem;
  top: 3.125rem;
  background-color: white;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.24);
  border-radius: 0 2rem 2rem 0;
  width: 100vw;
  height: calc(100% - 6.25rem);
}
@media screen and (max-width: 767px) {
  .lp-concerns__body::after {
    height: 100%;
    right: 1.25rem;
    top: 0;
  }
}

.lp-concerns__list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 23.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .lp-concerns__list {
    width: calc(100% - 1.25rem);
    gap: 0.5rem;
  }
}

.lp-concerns__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1rem 0.75rem;
  border-bottom: 1px dashed #d9d9d9;
}
@media screen and (max-width: 767px) {
  .lp-concerns__item {
    gap: 0.5rem;
    padding: 0 0 0.75rem;
  }
}

.lp-concerns__item-icon {
  width: 1.5rem;
  aspect-ratio: 1;
  background-image: url("../images/top/check-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 767px) {
  .lp-concerns__item-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.lp-concerns__item-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-concerns__item-text {
    font-size: 1rem;
  }
}

.lp-concerns__item-text--green {
  color: var(--primary);
}

.lp-concerns__arrow {
  width: 5.5rem;
  aspect-ratio: 94/64;
  background-image: url("../images/top/arrow-but.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  margin-inline: auto;
  z-index: 2;
  margin-top: -4.6875rem;
}
@media screen and (max-width: 767px) {
  .lp-concerns__arrow {
    margin-top: -1.25rem;
    width: 5rem;
    margin-bottom: -1.375rem;
  }
}

.lp-concerns__illust {
  position: relative;
  z-index: 2;
  width: 20.5rem;
  transform: translateY 1.25rem;
  aspect-ratio: 328/400;
}
@media screen and (max-width: 767px) {
  .lp-concerns__illust {
    position: absolute;
    bottom: -5.5rem;
    right: -1.25rem;
    width: 11.25rem;
    aspect-ratio: 180/220;
    z-index: 3;
  }
}

.lp-point-detail {
  padding-bottom: 4rem;
  position: relative;
  background-color: white;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .lp-point-detail {
    padding: 0 0 2.5rem;
  }
}
.lp-point-detail::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  aspect-ratio: 1440/508;
  background-image: url("../images/top/safe-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .lp-point-detail::after {
    background-image: url("../images/top/safe-bg-sp.png");
    aspect-ratio: 389/528;
  }
}

.lp-point-detail__intro {
  transform: translateY(-6.875rem);
  z-index: 3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2.5rem 9.0625rem 3rem;
  margin-inline: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro {
    transform: translateY(-50%);
    padding: 2rem var(--padding-sp) 2rem;
  }
}
.lp-point-detail__intro::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #00b680;
  border-radius: 2rem 0 0 2rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro::after {
    left: 1.25rem;
    width: 50rem;
  }
}

.lp-point-detail__intro .lp-section-tag {
  position: relative;
  z-index: 2;
  background-color: white;
  color: #00b680;
}
.lp-point-detail__intro .lp-section-tag::after {
  border-top-color: white;
  bottom: -0.625rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro .lp-section-tag::after {
    bottom: -0.5rem;
  }
}

.lp-point-detail__intro-main {
  position: relative;
  z-index: 2;
  gap: 0.25rem;
  line-height: 2;
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro-main {
    margin-top: unset;
  }
}
.lp-point-detail__intro-main span {
  display: inline-block;
}

.lp-point-detail__intro-highlight {
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  -webkit-text-stroke: 0.375rem #fff;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro-highlight {
    font-size: 1.5rem;
  }
}

.lp-point-detail__intro-num {
  font-family: var(--second-font-family);
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.8;
  color: var(--orange);
  -webkit-text-stroke: 0.375rem #fff;
  paint-order: stroke fill;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro-num {
    font-size: 2.5rem;
  }
}

.lp-point-detail__intro-particle {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro-particle {
    font-size: 1.5rem;
  }
}

.lp-point-detail__intro-logo {
  aspect-ratio: 86/20;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro-logo {
    width: 5.375rem;
    margin-top: 0.25rem;
  }
}

.lp-point-detail__intro-brand {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__intro-brand {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .lp-point-detail__intro-brand:last-of-type {
    width: 100%;
    text-align: center;
  }
}

.lp-point-detail__inner {
  position: relative;
  z-index: 2;
  max-width: 67.5rem;
  margin: -2.5rem auto 0;
  padding: 0 var(--padding-pc);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__inner {
    padding: 0 1.25rem;
    gap: 2.5rem;
    margin-top: -3.25rem;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.lp-point-detail__item-header {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-header {
    margin-bottom: 1rem;
  }
}

.lp-point-detail__item-header-img {
  aspect-ratio: 131/69;
  width: 8.1875rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-header-img {
    width: 5.375rem;
    order: 1;
  }
}

.lp-point-detail__item-body {
  display: flex;
  align-items: flex-start;
  gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-body {
    gap: 1rem 0.75rem;
    flex-wrap: wrap;
  }
}

.lp-point-detail__item-text {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-text {
    display: contents;
  }
}

.lp-point-detail__item-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-title {
    order: 2;
    width: 50%;
    flex-grow: 1;
    font-size: 1.5rem;
    margin-bottom: unset;
    white-space: nowrap;
  }
}

.lp-point-detail__item-text p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-text p {
    order: 5;
    font-size: 0.875rem;
  }
}

.lp-point-detail__item-highlights {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-highlights {
    order: 4;
    margin-bottom: unset;
  }
}

.lp-point-detail__item-highlight {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.5rem 0.25rem;
  line-height: 1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-highlight {
    font-size: 1.25rem;
    padding: 0.1875rem 1rem;
  }
}

.lp-point-detail__item-highlight:last-of-type {
  margin-bottom: unset;
}

.lp-point-detail__item-highlight-yellow {
  color: var(--yellow);
}

.lp-point-detail__item-white-band {
  margin-top: 1rem;
}

.lp-point-detail__item-white-band-text {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  display: inline-block;
  padding: 0.25rem 1rem;
  line-height: 1.6;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-white-band-text {
    font-size: 1.5rem;
  }
}

.lp-point-detail__item-img {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-img {
    order: 3;
    width: 100%;
  }
}

.lp-point-detail__item-img img {
  width: 30rem;
  height: auto;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
  }
}

.lp-point-detail__item:nth-child(even) .lp-point-detail__item-body {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__item:nth-child(even) .lp-point-detail__item-body {
    flex-direction: row;
  }
}

.lp-point-detail__loan {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--primary);
  border-radius: 2rem;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__loan {
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.5rem;
  }
}

.lp-point-detail__loan-text {
  width: 20rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__loan-text {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.lp-point-detail__loan-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__loan-ttl {
    margin-bottom: 0.75rem;
  }
}

.lp-point-detail__loan-ttl-band {
  display: inline-block;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  padding: 0.5rem 1rem;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__loan-ttl-band {
    font-size: 1.5rem;
  }
}

.lp-point-detail__loan-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__loan-desc {
    font-size: 0.875rem;
  }
}

.lp-point-detail__loan-img {
  flex: 1;
  min-width: 0;
}

.lp-point-detail__loan-img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__loan-img img {
    border-radius: 0.75rem;
  }
}

.lp-roof {
  padding: 4rem 0;
  background: #b3e9d9;
}
@media screen and (max-width: 767px) {
  .lp-roof {
    background: var(--voice-bg);
    padding: 2.5rem 0;
  }
}

.lp-roof__heading {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-roof__heading {
    padding: 0 var(--padding-sp);
    margin-bottom: 2rem;
  }
}

.lp-roof__heading-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-roof__heading-sub {
    font-size: 1rem;
  }
}

.lp-roof__heading-sub-green {
  color: var(--primary);
}

.lp-roof__heading-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-roof__heading-main {
    font-size: 2rem;
  }
}

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

.lp-roof__content {
  max-width: 67.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 2rem;
  padding: 2rem 2.5rem;
  box-shadow: var(--card-shadow);
}
@media screen and (max-width: 767px) {
  .lp-roof__content {
    flex-direction: column;
    padding: 1.25rem;
    gap: 0;
  }
}

.lp-roof__content-text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .lp-roof__content-text {
    order: 2;
  }
}

.lp-roof__content-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .lp-roof__content-badges {
    gap: 0.25rem;
    margin-bottom: 1rem;
    margin-top: -1.25rem;
  }
}

.lp-roof__content-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 2.25rem;
  padding: 0.5rem 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-roof__content-badge {
    font-size: 1.5rem;
    padding: 0.5rem 0.875rem;
  }
}
.lp-roof__content-badge .yellow {
  color: var(--yellow);
}

.lp-roof__content-desc {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
}
@media screen and (max-width: 767px) {
  .lp-roof__content-desc {
    font-size: 1rem;
  }
}

.lp-roof__content-desc .green {
  color: var(--primary);
}

.lp-roof__content-img {
  flex-shrink: 0;
}

.lp-roof__content-img img {
  width: 28.6875rem;
  height: auto;
  border-radius: 1rem;
}
@media screen and (max-width: 767px) {
  .lp-roof__content-img img {
    width: 19.375rem;
    max-width: 100%;
    border-radius: 0.875rem;
  }
}

.lp-steps {
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .lp-steps {
    padding: 2.5rem 1rem;
  }
}

.lp-steps__heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 3rem;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-steps__heading {
    padding: 0;
    flex-wrap: wrap;
    gap: 0.125rem 0.375rem;
    margin-bottom: 2rem;
  }
}

.lp-steps__heading-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-steps__heading-text {
    font-size: 2rem;
    width: 100%;
    text-align: center;
    padding-bottom: 0.0625rem;
  }
}

.lp-steps__heading-img {
  width: 10.625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .lp-steps__heading-img {
    width: 8.125rem;
  }
}

.lp-steps__list {
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  display: flex;
  gap: 1.25rem;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .lp-steps__list {
    padding: 0;
    gap: 1.5rem;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.lp-steps__item {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-steps__item {
    gap: 1rem;
  }
}

.lp-steps__item-left {
  flex-shrink: 0;
  width: 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-left {
    width: 4rem;
  }
}

.lp-steps__item-step {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-steps__item-step-label {
  font-family: var(--second-font-family);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-step-label {
    font-size: 0.875rem;
  }
}

.lp-steps__item-step-icon {
  width: 7rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-step-icon {
    width: 4rem;
  }
}

.lp-steps__item-step-icon img {
  width: 100%;
  aspect-ratio: 1;
}

.lp-steps__item-step-dots {
  width: 0.375rem;
  flex: 1;
  background: radial-gradient(circle, #9fa0a0 0.1875rem, transparent 0.1875rem);
  background-size: 0.375rem 0.75rem;
  background-repeat: repeat-y;
  background-position: center;
  min-height: 2.25rem;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-step-dots {
    display: none;
  }
}

.lp-steps__item-right {
  flex: 1;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-right {
    padding-bottom: 0;
  }
}

.lp-steps__item-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-title {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: var(--orange);
  }
}

.lp-steps__item-desc {
  background: #eae4db;
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 0.25rem 0 0 #d8cdbb;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-desc {
    padding: unset;
    box-shadow: unset;
    background: unset;
    border-radius: unset;
  }
}

.lp-steps__item-desc p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .lp-steps__item-desc p {
    font-size: 0.875rem;
  }
}

.lp-faq {
  padding: 4rem 0;
  background: var(--yellow-bg);
}
@media screen and (max-width: 767px) {
  .lp-faq {
    padding: 2.5rem 1rem;
  }
}

.lp-faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 4rem;
  padding: 0 var(--padding-pc);
}
@media screen and (max-width: 767px) {
  .lp-faq__heading {
    padding: 0;
    margin-bottom: 2rem;
  }
}

.lp-faq__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-faq__title {
    font-size: 2rem;
    margin-top: 0.75rem;
  }
}

.lp-faq__list {
  max-width: 67.5rem;
  margin: 0 auto;
  padding: 0 var(--padding-pc);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .lp-faq__list {
    padding: 0;
    gap: 1rem;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}

.lp-faq__item {
  filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.16));
  border-radius: 0.625rem;
  overflow: hidden;
}

.lp-faq__item-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--orange);
  cursor: pointer;
  border-radius: 0.625rem 0.625rem 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .lp-faq__item-question {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
}

@media (any-hover: hover) {
  .lp-faq__item-question:hover {
    opacity: 0.7;
  }
}
.lp-faq__item-q {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #fff;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
  padding-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .lp-faq__item-q {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
}

.lp-faq__item-q-text {
  padding-bottom: 0.0625rem;
  flex: 1;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lp-faq__item-q-text {
    font-size: 1rem;
    line-height: 1.3;
  }
}

.lp-faq__item-toggle {
  width: 1.25rem;
  transform: scaleY(-1);
  aspect-ratio: 20/10;
  transition: transform 0.3s;
  -webkit-mask-image: url("../images/top/faq-arrow.svg");
          mask-image: url("../images/top/faq-arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: white;
}

.lp-faq__item.is-open .lp-faq__item-toggle {
  transform: scaleY(1);
}

.lp-faq__item-answer {
  display: none;
  padding: 1rem 2rem;
  background: #fff;
  border-radius: 0 0 0.625rem 0.625rem;
  align-items: center;
  gap: 1rem;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .lp-faq__item-answer {
    padding: 1rem;
    gap: 0.5rem;
  }
}

.lp-faq__item-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  padding-bottom: 0.1875rem;
  height: 3rem;
  background: var(--orange);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .lp-faq__item-a {
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
  }
}

.lp-faq__item-a-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
}
@media screen and (max-width: 767px) {
  .lp-faq__item-a-text {
    font-size: 0.75rem;
  }
}

.lp-cta__btn-text-highlight-unit {
  transform: rotate(15deg);
  display: inline-block;
}

.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: 0.6rem 1rem;
  border: 2px solid rgba(0, 181, 128, 0.35);
  border-radius: 0.375rem;
  background: rgba(0, 181, 128, 0.05);
}
.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;
  padding-left: 0.75rem;
  border-left: 4px solid var(--primary);
}
.article-body__content h4:not(.cta-box h4) {
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid rgba(0, 181, 128, 0.3);
}
.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,
.article-body__inline-cta .article-body__cta-title { /* ▼ ver9_260430: h3→p化に伴うクラス追加 */
  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;
}
/* ▼ ver6_260412〜 LinkedIn → LINE に変更 */
.article-body__share-btn--line:hover {
  background: #06C755;
  color: #fff;
  border-color: #06C755;
}
.article-body__share-btn--copy:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* ========== SNS Links (ver6_260412) ========== */

/* --- フッター SNS --- */
.site-footer__sns {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.site-footer__sns-head {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.875rem;
}
.site-footer__sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.site-footer__sns-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.8rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.site-footer__sns-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.site-footer__sns-item--line:hover { background: #06C755; border-color: #06C755; color: #fff; }
.site-footer__sns-item--ig:hover   { background: #E1306C; border-color: #E1306C; color: #fff; }
.site-footer__sns-item--tt:hover   { background: #010101; border-color: #010101; color: #fff; }

/* --- ドロワー SNS --- */
.site-drawer__sns {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-drawer__sns-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  background: #f7f7f5;
  color: #444;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.site-drawer__sns-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.site-drawer__sns-item--line { color: #06C755; }
.site-drawer__sns-item--line:hover { background: #e8faf0; }
.site-drawer__sns-item--ig   { color: #E1306C; }
.site-drawer__sns-item--ig:hover   { background: #fdf0f4; }
.site-drawer__sns-item--tt   { color: #333; }
.site-drawer__sns-item--tt:hover   { background: #f0f0f0; }

/* --- サイドバー SNS --- */
.sidebar-sns {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-top: 1.5rem;
}
.sidebar-sns__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.125rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
  border-bottom: 1px solid #ebebeb;
}
.sidebar-sns__head svg { color: var(--primary); flex-shrink: 0; }
.sidebar-sns__list { display: flex; flex-direction: column; }
.sidebar-sns__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.6875rem 1.125rem;
  text-decoration: none;
  color: #444;
  font-size: 0.8125rem;
  border-bottom: 1px solid #f2f2f0;
  transition: background 0.15s;
}
.sidebar-sns__item:last-child { border-bottom: none; }
.sidebar-sns__item:hover { background: #f9f9f7; }
.sidebar-sns__item svg { flex-shrink: 0; width: 1.5rem; height: 1.5rem; }
.sidebar-sns__item--line svg { color: #06C755; }
.sidebar-sns__item--ig svg   { color: #E1306C; }
.sidebar-sns__item--tt svg   { 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;
}

/* ========== CTAプロモテキスト (ver1_260324) ========== */
/* FV: 前要素(z-index:1)より前面に */
.lp-fv__cta {
  position: relative;
  z-index: 2;
}
/* ▼ ver3_260327〜 コメントアウト (旧: 3月31日プロモテキスト CSS)
.lp-cta__promo-text {
  display: block;
  text-align: center;
  color: #dc2626;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin: 0;
  padding: 0.5rem 1rem 0;
}
@media screen and (min-width: 768px) {
  .lp-cta__promo-text br { display: none; }
  .lp-fv__cta .lp-cta__promo-text {
    color: #fff;
    text-shadow: 0 1px 5px rgba(0,0,0,0.6), 0 0 10px rgba(0,0,0,0.45);
    margin-top: 3.75rem;
    margin-bottom: 6px;
  }
  .lp-cta__promo-text + .lp-cta { padding-top: 0; }
  .lp-cta__promo-text + .lp-cta .lp-cta__inner { padding-top: 0; }
}
@media screen and (max-width: 767px) {
  .lp-cta__promo-text { font-size: 0.9375rem; padding: 0.4rem 0.75rem 0; }
  .lp-cta__promo-text + .lp-cta { padding-top: 0.5rem; }
}
▲ コメントアウトここまで */

/* ========== ver3_260327〜 新オファーテキスト CSS ========== */

/* 1行目：アナウンスバッジ */
.lp-cta__headline {
  display: inline-block;
  background: #fef763;
  color: #333;
  font-size: 1.0625rem;
  font-weight: 800;
  padding: 0.3rem 1.1rem;
  border-radius: 2rem;
  letter-spacing: 0.07em;
  margin: 0 0 0.7rem;
  line-height: 1;
}

/* 2行目：メインコピー（大） */
.lp-cta__lead {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}
.lp-cta__lead em {
  font-style: normal;
  color: #fef763;
}

/* 3行目：サブコピー（.lp-cta__sub の既存定義を上書き） */
.lp-cta__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.03em;
  position: static;
}

@media screen and (max-width: 767px) {
  .lp-cta__headline { font-size: 0.75rem; padding: 0.25rem 0.875rem; margin-bottom: 0.6rem; }
  .lp-cta__lead { font-size: 1.375rem; }
  .lp-cta__sub { font-size: 1rem; }
}

/* ========== contactページ 補助金プロモテキスト (ver1_260324) ========== */
.subsidy-banner__promo {
  font-size: 1rem;
  font-weight: 700;
  color: #b91c1c;
  text-align: center;
  line-height: 1.7;
  margin: 0.75rem auto 0;
  max-width: 36rem;
}
@media screen and (max-width: 767px) {
  .subsidy-banner__promo {
    font-size: 0.875rem;
  }
}

/* ========== YouTube セクション ========== */
.lp-youtube {
  padding: 4rem 0;
  background: #fff;
}
.lp-youtube__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.lp-youtube__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.4;
  color: #1a1a1a;
  margin: 0;
}
.lp-youtube__title .sp-br { display: none; }
.lp-youtube__desc {
  text-align: center;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.75;
  max-width: 38rem;
  margin: 0;
}
.lp-youtube__embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0,0,0,.14);
}
.lp-youtube__embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
@media screen and (max-width: 767px) {
  .lp-youtube { padding: 2.5rem 0; }
  .lp-youtube__title { font-size: 1.25rem; }
  .lp-youtube__title .sp-br { display: inline; }
  .lp-youtube__desc { font-size: 0.875rem; }
}

/* ========== 記事コンテンツ スタイル調整 (ver5_260409) ========== */

/* リスト：箇条書き＋行間余白 */
.article-body__content .wp-block-list {
  list-style: disc;
  padding-left: 1.5em;
}
.article-body__content .wp-block-list li {
  margin-bottom: 0.5em;
  line-height: 1.8;
}

/* アンカーテキスト：色＋下線 */
.article-body__content a {
  color: #0000ee;
  text-decoration: underline;
}

/* ========== SNS 2×2グリッド & 中央揃え (ver7_260415) ========== */

/* フッター SNS — 中央揃え */
.site-footer__sns { text-align: center; }
.site-footer__sns-list { justify-content: center; }

/* ドロワー SNS — 2×2グリッド */
.site-drawer__sns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
}
.site-drawer__sns-item {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  text-align: center;
  padding: 0.875rem 0.5rem;
  font-size: 0.8rem;
}

/* サイドバー SNS — 2×2グリッド */
.sidebar-sns__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ebebeb;
}
.sidebar-sns__item {
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 1rem 0.5rem;
  text-align: center;
  border-bottom: none;
  font-size: 0.75rem;
}
.sidebar-sns__item:last-child { border-bottom: none; }

/* ========== SNS 横並び & フッター線削除 (ver7_260415) ========== */

/* サイドバー SNS — アイコン+ID横並び */
.sidebar-sns__item {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
  padding: 0.75rem 0.875rem;
  gap: 0.5rem;
}

/* ドロワー SNS — アイコン+ID横並び */
.site-drawer__sns-item {
  flex-direction: row;
  justify-content: center;
  text-align: left;
  gap: 0.5rem;
}

/* フッター SNSリンク直下の線を削除 */
.site-footer__copyright {
  border-top: none;
}

/* ========== フッター SNS — SP 2×2グリッド (ver7_260415) ========== */
@media (max-width: 767px) {
  .site-footer__sns-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .site-footer__sns-item {
    width: 100%;
    justify-content: center;
  }
}

/* ▼ ver7_260415 コメントアウト — LINE全箇所「LINEで無料相談」に統一のため不要
.sns-line-label--sp { display: none; }
@media (max-width: 767px) {
  .sns-line-label--pc { display: none; }
  .sns-line-label--sp { display: inline; }
}
*/

/* ========== company mv h1 位置・色修正 (ver7_260415) ========== */
/* h3→h1変更により style.css の section#mv h1 ルールが干渉するため上書き */
section#mv.mv-kasou-company h1 {
  margin: 0;
  text-indent: 0;
  letter-spacing: .15em;
}
section#mv.mv-kasou-company h1.animation-is-inview {
  color: #ffffff; /* style.css の #003180 を白に上書き */
}
@media (max-width: 767px) {
  .mv-child h1 {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== about chart-wrapper / loan-note & point-detail loan-note (ver8_260419) ========== */

/* about: chart-wrapper */
.lp-about__chart-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  width: 100%;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .lp-about__card {
    display: block;
  }
  .lp-about__card-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
    border: none;
  }
  .lp-about__card-illust {
    display: none;
  }
  .lp-about__chart-wrapper {
    max-width: 100%;
    margin-inline: 0;
    gap: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
}

/* about: loan-note */
.lp-about__loan-note {
  text-align: center;
  box-sizing: border-box;
}
.lp-about__loan-note-title {
  font-size: 0.9375rem;
  font-weight: 800;
  color: #333;
  margin: 0 0 0.3rem;
}
.lp-about__loan-note-text {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
  line-height: 1.7;
}
.lp-about__loan-note-small {
  display: block;
  font-size: 0.8125rem;
  color: #888;
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .lp-about__loan-note {
    padding: 0.875rem 1.25rem 1.25rem;
    font-size: 0.8125rem;
  }
}

/* point-detail: loan-note PC/SP切り替え */
.lp-point-detail__loan-note--sp { display: none; }
@media screen and (max-width: 767px) {
  .lp-point-detail__loan-note--pc { display: none; }
  .lp-point-detail__loan-note--sp { display: block; }
}

/* point-detail: loan-note 共通 */
.lp-point-detail__loan-note {
  margin-top: 0.875rem;
}
.lp-point-detail__loan-note-title {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.3rem;
}
.lp-point-detail__loan-note-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.7;
}
.lp-point-detail__loan-note-small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .lp-point-detail__loan-note {
    margin-top: 0.75rem;
    padding: 0.75rem 0.875rem;
  }
  .lp-point-detail__loan-note-title { font-size: 0.8125rem; }
  .lp-point-detail__loan-note-text { font-size: 0.75rem; }
}

/* ========== FV CTA SP幅修正 (ver8_260419) ========== */
@media screen and (max-width: 767px) {
  .lp-fv__cta {
    width: 100%;
  }
  .lp-fv__cta .lp-cta {
    padding-left: 0;
    padding-right: 0;
  }
  .lp-fv__cta .lp-cta__content {
    width: 100% !important;
  }
}

/* ========== subsidy bottom-note SP表示 (ver8_260419) ========== */
.lp-subsidy__bottom-note {
  display: none;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__bottom-note {
    display: block;
    font-size: 0.75rem;
    color: #555;
    line-height: 1.6;
    margin-top: -0.5rem;
    text-align: center;
  }
}

/* ========== savings text-box flex化 & note (ver8_260419) ========== */
.lp-savings__text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lp-savings__note {
  font-size: 0.8125rem;
  color: #6b6b6b;
  line-height: 1.65;
  margin: 1rem 0 0;
  text-align: left;
}
.lp-savings__note .sp-note { display: none; }
@media screen and (max-width: 767px) {
  .lp-savings__note { margin-top: 0.75rem; }
  .lp-savings__note .pc-note { display: none; }
  .lp-savings__note .sp-note { display: inline; }
}

/* ========== X(Twitter) SNS Link 追加 (ver9_260428) ========== */
/* フッター X ホバー（ブランドカラー：黒） */
.site-footer__sns-item--x:hover { background: #000; border-color: #000; color: #fff; }
/* SPドロワー X カラー */
.site-drawer__sns-item--x { color: #000; }
.site-drawer__sns-item--x:hover { background: #f0f0f0; }
/* サイドバー X カラー */
.sidebar-sns__item--x svg { color: #000; }

/* SPフッター 5項目化対応：DOMはPC順固定、SPのみ order で並び替え */
/* DOM順: 1=LINE, 2=IG main, 3=IG corp, 4=X, 5=TikTok */
/* 表示順 (SP): 1段目=IG main / X、2段目=IG corp / TikTok、3段目=LINE(全幅) */
@media (max-width: 767px) {
  .site-footer__sns-list > a:nth-child(1) { order: 5; } /* LINE → 最下段 */
  .site-footer__sns-list > a:nth-child(2) { order: 1; } /* IG main */
  .site-footer__sns-list > a:nth-child(3) { order: 3; } /* IG corp */
  .site-footer__sns-list > a:nth-child(4) { order: 2; } /* X */
  .site-footer__sns-list > a:nth-child(5) { order: 4; } /* TikTok */
  .site-footer__sns-list > a.site-footer__sns-item--line {
    grid-column: 1 / -1;
  }
}

/* SPドロワー 5項目化対応：5番目の単独行を全幅化 */
.site-drawer__sns > a:nth-child(odd):last-child {
  grid-column: 1 / -1;
}

/* サイドバー 5項目化対応：5番目の単独行を全幅化＋中央寄せ */
.sidebar-sns__list > a:nth-child(odd):last-child {
  grid-column: 1 / -1;
  justify-content: center;
  text-align: center;
}

/* ========== 景表法対応スタイル調整 (ver12_260522〜) ========== */
/* ▼ ver12_260522〜 Section3見出し復元により不要になったため削除 */
/* Section3: work-textとcontentの間のgap(3rem)を打ち消す */
/* .lp-subsidy__content { margin-top: -3rem; } */
/* @media screen and (max-width: 767px) { */
/*   .lp-subsidy__content { margin-top: -2rem; } */
/* } */
/* ▲ ver12_260522〜 */
/* POINT02 注釈テキスト小さく */
.lp-point-detail__item-note { font-size: 11px !important; }
/* POINT02 ハイライト内の※を小さく */
.lp-point-detail__item-highlight-sup { font-size: 0.6em; vertical-align: super; line-height: 1; }

/* ========== Section3見出し注釈スタイル (ver12_260522〜) ========== */
/* Section3 見出し内の※上付き文字 */
.lp-subsidy__heading-sup { font-size: 0.5em; vertical-align: super; line-height: 1; }
/* Section3 見出し下注釈テキスト */
.lp-subsidy__heading-note {
  font-size: 0.75rem;
  color: var(--foreground);
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .lp-subsidy__heading-note { font-size: 0.6875rem; }
}

/* ========== 追従CTA (ver12_260522〜) ========== */

@media screen and (max-width: 767px) {
  body.floating-cta-visible .pagetop {
    bottom: calc(1rem + 7.5625rem);
    transition: bottom 0.4s ease;
  }
}

.floating-cta {
  pointer-events: none;
}

.floating-cta__pc {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  pointer-events: auto;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.floating-cta__pc.is-visible {
  transform: translate(0, -50%);
  opacity: 1;
}

.floating-cta__pc-tell {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1rem 0.75rem 1rem 1.5rem;
  background: #433B31;
  border-radius: 2rem 0 0 2rem;
  text-decoration: none;
  height: 7rem;
  width: 6.75rem;
  transition: width 0.3s ease, opacity 0.2s;
  overflow: hidden;
}
.floating-cta__pc-tell:hover {
  width: 21.0625rem;
}
.floating-cta__pc-tell:hover .floating-cta__pc-tell__right {
  max-width: 15rem;
  opacity: 1;
  margin-left: 0.5rem;
  padding: 0 1rem;
  pointer-events: auto;
}

.floating-cta__pc-tell__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  width: 4.5rem;
}

.floating-cta__pc-tell__icon {
  width: 2rem;
  height: 2rem;
  color: #ffffff;
  flex-shrink: 0;
}

.floating-cta__pc-tell__text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--base-font-family);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.floating-cta__pc-tell__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  background: #ffffff;
  border-radius: 0.5rem;
  align-self: stretch;
  flex-shrink: 0;
  overflow: hidden;
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.3s ease, padding 0.3s ease, margin-left 0.3s ease, opacity 0.25s ease;
}

.floating-cta__pc-tell__number {
  font-family: var(--second-font-family);
  font-size: 1.75rem;
  font-weight: 600;
  color: #433B31;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.floating-cta__pc-tell__hours {
  font-size: 0.75rem;
  font-weight: 700;
  color: #433B31;
  font-family: var(--base-font-family);
  line-height: 1;
  white-space: nowrap;
}

.floating-cta__pc-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  padding: 0.5rem 0.75rem 1rem 1.5rem;
  background: #4CC764;
  border-radius: 2rem 0 0 2rem;
  text-decoration: none;
  transition: opacity 0.2s;
  width: 6.75rem;
}
.floating-cta__pc-line:hover {
  opacity: 0.7;
}

.floating-cta__pc-line__icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.floating-cta__pc-line__text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--base-font-family);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.floating-cta__pc-line__text-em {
  color: var(--secondary);
}

.floating-cta__pc-banner {
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
  z-index: 199;
  width: 20rem;
  pointer-events: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.16));
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.4s ease;
}
.floating-cta__pc-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .floating-cta__pc-banner {
    display: none;
  }
}
.floating-cta__pc-banner__body {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 0;
  transition: opacity 0.2s;
}
.floating-cta__pc-banner__body:hover {
  opacity: 0.7;
}
.floating-cta__pc-banner__img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.floating-cta__pc-banner__close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(20%, -20%);
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #433B31;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  z-index: 2;
  transition: opacity 0.2s;
}
.floating-cta__pc-banner__close svg {
  width: 0.625rem;
  height: 0.625rem;
  display: block;
}
.floating-cta__pc-banner__close:hover {
  opacity: 0.85;
}
.floating-cta__pc-banner.is-hidden {
  display: none;
}

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

.floating-cta__sp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 0 0.5rem;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.floating-cta__sp.is-visible {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .floating-cta__sp {
    display: flex;
  }
}

.floating-cta__banner {
  position: relative;
  width: 100%;
  max-width: 23.75rem;
  margin-bottom: 0.5rem;
}
.floating-cta__banner__body {
  display: block;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}
.floating-cta__banner__img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.floating-cta__banner__close {
  position: absolute;
  top: -0.375rem;
  right: 0%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #433B31;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  z-index: 2;
  transition: opacity 0.2s;
}
.floating-cta__banner__close svg {
  width: 0.625rem;
  height: 0.625rem;
  display: block;
}
.floating-cta__banner__close:hover {
  opacity: 0.85;
}
.floating-cta__banner.is-hidden {
  display: none;
}

.floating-cta__sp-btns {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
  max-width: 24.375rem;
}

.floating-cta__sp-line {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  text-decoration: none;
  transition: opacity 0.2s;
  line-height: 0;
}
.floating-cta__sp-line:hover {
  opacity: 0.92;
}

.floating-cta__sp-line__img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.floating-cta__sp-tell {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  text-decoration: none;
  transition: opacity 0.2s;
  line-height: 0;
}
.floating-cta__sp-tell:hover {
  opacity: 0.92;
}

.floating-cta__sp-tell__img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.floating-cta__pc-bottom {
  display: none !important;
}

/* ========== site-drawer__nav-cta--gray (ver13_260601) ========== */
.site-drawer__nav ul li.site-drawer__nav-cta.site-drawer__nav-cta--gray a {
  background: #555555 !important;
  color: #ffffff !important;
}
.site-drawer__nav ul li.site-drawer__nav-cta.site-drawer__nav-cta--gray a:hover {
  background: #333333 !important;
}


/* ========== contact-other ページ CSS（制作会社実装分マージ ver13_260601） ========== */
.page-contact-other {
  background: #ffffff;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-contact-other {
    padding-bottom: 1.5rem;
  }
}

.contact-other-contents {
  padding: 3.4375rem 12.8125rem 5rem 12.8125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1024px) {
  .contact-other-contents {
    padding: 3rem 3rem 4rem 3rem;
    gap: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .contact-other-contents {
    padding: 2rem 1.25rem 3rem 1.25rem;
    gap: 1.5rem;
  }
}

.contact-other-lead {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: #433B31;
  font-family: var(--base-font-family);
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-other-lead {
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: left;
  }
}

.contact-other-lead__link {
  color: #00B680;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-other-lead__link:hover {
  opacity: 0.8;
}

.contact-other-form-wrap {
  width: 100%;
  max-width: 52.5rem;
}
.contact-other-form-wrap .wpcf7 {
  width: 100%;
}
.contact-other-form-wrap form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .contact-other-form-wrap form.wpcf7-form {
    gap: 2rem;
  }
}

.contact-other-form-wrap > .wpcf7 > form > p:empty,
.contact-other-form-wrap form.wpcf7-form > p:empty {
  display: none;
}
.contact-other-form-wrap .contact-other-form__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact-other-form-wrap .contact-other-form__row {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.contact-other-form-wrap .contact-other-form__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  width: 20rem;
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #433B31;
  font-family: var(--base-font-family);
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact-other-form-wrap .contact-other-form__label {
    width: 100%;
    padding-top: 0;
    font-size: 1rem;
  }
}
.contact-other-form-wrap .contact-other-form__req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0.5rem 0.25rem;
  background: #F86242;
  color: #ffffff;
  border: 1px solid #F86242;
  border-radius: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--base-font-family);
  line-height: 1;
  flex-shrink: 0;
}
.contact-other-form-wrap .contact-other-form__opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.1875rem 0.5rem 0.25rem;
  background: #ffffff;
  color: #A99882;
  border: 1px solid #A99882;
  border-radius: 0.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--base-font-family);
  line-height: 1;
  flex-shrink: 0;
}
.contact-other-form-wrap input[type=text],
.contact-other-form-wrap input[type=tel],
.contact-other-form-wrap input[type=email],
.contact-other-form-wrap textarea,
.contact-other-form-wrap select,
.contact-other-form-wrap .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  min-width: 0;
}
.contact-other-form-wrap input[type=text],
.contact-other-form-wrap input[type=tel],
.contact-other-form-wrap input[type=email],
.contact-other-form-wrap textarea,
.contact-other-form-wrap select {
  width: 100%;
  padding: 1rem;
  background: #F9F9F7;
  border: 1px solid #9F9F9F;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #433B31;
  font-family: var(--base-font-family);
  line-height: 1.6;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-shadow: none;
}
.contact-other-form-wrap input[type=text]::-moz-placeholder, .contact-other-form-wrap input[type=tel]::-moz-placeholder, .contact-other-form-wrap input[type=email]::-moz-placeholder, .contact-other-form-wrap textarea::-moz-placeholder, .contact-other-form-wrap select::-moz-placeholder {
  color: #9F9F9F;
  font-weight: 500;
}
.contact-other-form-wrap input[type=text]::placeholder,
.contact-other-form-wrap input[type=tel]::placeholder,
.contact-other-form-wrap input[type=email]::placeholder,
.contact-other-form-wrap textarea::placeholder,
.contact-other-form-wrap select::placeholder {
  color: #9F9F9F;
  font-weight: 500;
}
.contact-other-form-wrap input[type=text]:focus,
.contact-other-form-wrap input[type=tel]:focus,
.contact-other-form-wrap input[type=email]:focus,
.contact-other-form-wrap textarea:focus,
.contact-other-form-wrap select:focus {
  border-color: #00B680;
  box-shadow: 0 0 0 0.1875rem rgba(0, 182, 128, 0.15);
}
@media screen and (max-width: 767px) {
  .contact-other-form-wrap input[type=text],
  .contact-other-form-wrap input[type=tel],
  .contact-other-form-wrap input[type=email],
  .contact-other-form-wrap textarea,
  .contact-other-form-wrap select {
    font-size: 0.9375rem;
    padding: 0.875rem;
  }
}
.contact-other-form-wrap textarea {
  min-height: 8.75rem;
  resize: vertical;
  line-height: 1.6;
}
.contact-other-form-wrap .contact-other-form__select-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
}
.contact-other-form-wrap .contact-other-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='12' viewBox='0 0 24 12' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.2894 10.157L5.63235 4.5L7.04635 3.086L11.9964 8.036L16.9464 3.086L18.3604 4.5L12.7034 10.157C12.5158 10.3445 12.2615 10.4498 11.9964 10.4498C11.7312 10.4498 11.4769 10.3445 11.2894 10.157Z' fill='%239F9F9F'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.contact-other-form-wrap .contact-other-form__select-wrap select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  padding-right: 3.25rem;
  cursor: pointer;
}
.contact-other-form-wrap .contact-other-form__privacy-box {
  width: 100%;
  height: 12.5rem;
  overflow-y: scroll;
  padding: 1rem 2rem 1rem 1rem;
  background: #ffffff;
  border: 1px solid #9F9F9F;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #433B31;
  font-family: var(--base-font-family);
  line-height: 1.6;
  text-align: justify;
}
.contact-other-form-wrap .contact-other-form__privacy-box::-webkit-scrollbar {
  width: 1rem;
  background: #F1F1F1;
}
.contact-other-form-wrap .contact-other-form__privacy-box::-webkit-scrollbar-thumb {
  background: #C1C1C1;
  border-radius: 0.125rem;
  border: 0.125rem solid #F1F1F1;
}
.contact-other-form-wrap .contact-other-form__privacy-box {
  scrollbar-color: #C1C1C1 #F1F1F1;
  scrollbar-width: thin;
}
.contact-other-form-wrap .contact-other-form__privacy-box h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #433B31;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.contact-other-form-wrap .contact-other-form__privacy-box h4:first-child {
  margin-top: 0;
}
.contact-other-form-wrap .contact-other-form__privacy-box p {
  margin: 0 0 0.5rem 0;
}
.contact-other-form-wrap .contact-other-form__privacy-box p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact-other-form-wrap .contact-other-form__privacy-box {
    font-size: 0.875rem;
    padding: 0.875rem 1.5rem 0.875rem 0.875rem;
  }
  .contact-other-form-wrap .contact-other-form__privacy-box h4 {
    font-size: 1rem;
  }
}
.contact-other-form-wrap .contact-other-form__row:has(.contact-other-form__privacy-box) {
  flex-direction: column;
}
.contact-other-form-wrap .contact-other-form__row--agree {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
  text-align: center;
}
.contact-other-form-wrap .wpcf7-form-control-wrap:has(.wpcf7-acceptance),
.contact-other-form-wrap .wpcf7-acceptance,
.contact-other-form-wrap .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.contact-other-form-wrap .wpcf7-acceptance label,
.contact-other-form-wrap .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  margin: 0;
}
.contact-other-form-wrap .wpcf7-list-item-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #433B31;
  line-height: 1.6;
}
.contact-other-form-wrap .wpcf7-list-item input[type=checkbox],
.contact-other-form-wrap input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  min-width: 1.25rem;
  min-height: 1.25rem;
  display: inline-block;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #909090;
  border-radius: 0.125rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin: 0;
  padding: 0;
  position: relative;
  opacity: 1;
  visibility: visible;
  vertical-align: middle;
}
.contact-other-form-wrap .wpcf7-list-item input[type=checkbox]:checked,
.contact-other-form-wrap input[type=checkbox]:checked {
  background: #00B680;
  border-color: #00B680;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' 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.875rem;
}
.contact-other-form-wrap .contact-other-form__row--submit {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.contact-other-form-wrap .wpcf7-submit,
.contact-other-form-wrap .contact-other-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.6875rem 3.4375rem 0.6875rem 2.5rem;
  background-color: #00B680;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--base-font-family);
  line-height: 1;
  border: 1px solid #00B680;
  border-radius: 6.25rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  min-width: 14.5rem;
  height: 3.375rem;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  text-align: left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Ccircle cx='16' cy='16' r='16' fill='white'/%3E%3Cpath d='M12 16h8M16 12l4 4-4 4' stroke='%2300B680' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6875rem center;
  background-size: 2rem 2rem;
  padding-right: 3.4375rem;
}
.contact-other-form-wrap .wpcf7-submit:hover,
.contact-other-form-wrap .contact-other-form__submit:hover {
  opacity: 0.9;
  transform: translateX(2px);
}
.contact-other-form-wrap .wpcf7-submit:disabled,
.contact-other-form-wrap .contact-other-form__submit:disabled {
  background-color: #d1d5db;
  color: #6b7280;
  border-color: #d1d5db;
  cursor: not-allowed;
}
.contact-other-form-wrap .wpcf7-submit:disabled:hover,
.contact-other-form-wrap .contact-other-form__submit:disabled:hover {
  opacity: 1;
  transform: none;
}
.contact-other-form-wrap > p:has(.wpcf7-submit),
.contact-other-form-wrap .contact-other-form__row--submit {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.contact-other-form-wrap .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #F86242;
  font-family: var(--base-font-family);
}
.contact-other-form-wrap .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.875rem 1rem;
  border: 1px solid #9F9F9F;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #433B31;
  font-family: var(--base-font-family);
  line-height: 1.6;
  background: #ffffff;
}
.contact-other-form-wrap .wpcf7 form.sent .wpcf7-response-output {
  border-color: #00B680;
  color: #00B680;
  background: rgba(0, 182, 128, 0.05);
}
.contact-other-form-wrap .wpcf7 form.invalid .wpcf7-response-output,
.contact-other-form-wrap .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #F86242;
  color: #F86242;
  background: rgba(248, 98, 66, 0.05);
}

.contact-other-footer-note {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #433B31;
  font-family: var(--base-font-family);
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .contact-other-footer-note {
    font-size: 0.875rem;
  }
}

.contact-other-footer-note__tel {
  font-weight: 700;
  color: #00B680;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  letter-spacing: 0;
  transition: opacity 0.2s;
}
.contact-other-footer-note__tel:hover {
  opacity: 0.7;
}

.contact-other-footer-note__hours {
  font-weight: 500;
  color: #433B31;
}


/* ========== page-hero CSS（制作会社実装分マージ ver13_260601） ========== */
.page-hero {
  padding: 2.125rem 1.875rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-hero {
    padding: 1rem 1rem 0;
  }
}

.page-hero__inner {
  background-image: url("../images/now-site/compnay_top.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #ffffff;
  min-height: 21.875rem;
  border-radius: 1.875rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-hero__inner {
    background-image: url("../images/now-site/compnay_top_sp.png");
    min-height: 13.75rem;
    border-radius: 1.25rem;
  }
}

.page-hero__child {
  width: 100%;
  max-width: 82.5rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
@media screen and (max-width: 767px) {
  .page-hero__child {
    padding: 0 1.25rem;
    align-items: center;
  }
}

.page-hero__en {
  font-family: var(--second-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.04em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page-hero__en {
    font-size: 1rem;
    text-align: center;
  }
}

.page-hero__ja {
  font-family: var(--base-font-family);
  font-size: 2.8125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page-hero__ja {
    font-size: 1.75rem;
    text-align: center;
  }
}

.page-contact-other {
  background: #ffffff;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .page-contact-other {
    padding-bottom: 1.5rem;
  }
}


/* ========== site-drawer__nav-cta 緑ボタン（制作会社実装分マージ ver13_260601） ========== */
.site-drawer__nav ul li.site-drawer__nav-cta {
  margin-top: 1rem;
  border-bottom: none;
}
.site-drawer__nav ul li.site-drawer__nav-cta a {
  background: #00B680;
  color: #ffffff;
  border-radius: 6.25rem;
  padding: 1rem 1.5rem;
}
.site-drawer__nav ul li.site-drawer__nav-cta a:hover {
  background: #008e64;
  color: #ffffff;
}

/* ========== contact-other 送信ボタン中央揃え修正 (ver13_260601) ========== */
.contact-other-form-wrap .wpcf7-submit,
.contact-other-form-wrap .contact-other-form__submit {
  justify-content: center !important;
  text-align: center !important;
  padding-left: 3.4375rem !important;
}

/* ========== contact-other wpcf7-spinner位置調整（ver13_260601） ========== */
.contact-other-form-wrap .wpcf7-spinner {
  width: 0;
  overflow: hidden;
  margin: 0;
}

/* ========== contact-other ファイル添付（ver14_260604） ========== */
.contact-other-file-section {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-other-form__row--file .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  min-width: 0;
}
.contact-other-form__file-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: #fafafa;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 0.9rem;
  color: #433B31;
}
.contact-other-form__file-input:hover {
  border-color: #00B680;
}
.contact-other-form__file-note {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  padding-left: 328px;
}
@media screen and (max-width: 767px) {
  .contact-other-form__file-note {
    padding-left: 0;
  }
}

/* ========== 記事本文テーブル：左見出し型(E)（ver15_260620・全記事共通） ========== */
.article-body__content .wp-block-table table{width:100%;border-collapse:collapse;border:1px solid #e4e4e4;border-radius:8px;overflow:hidden;table-layout:auto;}
.article-body__content .wp-block-table table.has-fixed-layout{table-layout:auto;}
.article-body__content .wp-block-table th,
.article-body__content .wp-block-table td{padding:12px 14px;text-align:left;vertical-align:top;border:1px solid #e4e4e4;}
.article-body__content .wp-block-table thead th{background:#009168;color:#fff;font-weight:700;}
.article-body__content .wp-block-table tbody td:first-child{background:#e6f8f2;color:#009168;font-weight:700;white-space:nowrap;vertical-align:middle;}
@media (max-width:600px){
  .article-body__content .wp-block-table thead{display:none;}
  .article-body__content .wp-block-table table,
  .article-body__content .wp-block-table tbody,
  .article-body__content .wp-block-table tr,
  .article-body__content .wp-block-table td{display:block;width:100%;box-sizing:border-box;}
  .article-body__content .wp-block-table tr{border:1px solid #e4e4e4;border-radius:10px;margin-bottom:12px;overflow:hidden;}
  .article-body__content .wp-block-table td{border:none;border-bottom:1px solid rgba(0,0,0,.06);padding:10px 14px;}
  .article-body__content .wp-block-table td:last-child{border-bottom:none;}
  .article-body__content .wp-block-table tbody td:first-child{white-space:normal;}
  .article-body__content .wp-block-table td::before{content:attr(data-label);display:block;font-size:.72rem;font-weight:700;color:#009168;margin-bottom:2px;}
}

/* ============================================================
   掲載実績ページ（media_listing カード）2026-06-22 追加
   ============================================================ */
.media-listing-main{padding:40px 0 64px;}
.media-listing-main .container{max-width:1040px;margin:0 auto;padding:0 20px;}
.media-listing-section{margin-bottom:48px;}
.media-listing-section__title{font-size:1.3rem;font-weight:700;color:#433b31;border-left:5px solid #00b680;padding-left:12px;margin:0 0 24px;}
.media-listing-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px;}
.media-listing-card{background:#fff;border:1px solid #e4e4e4;border-radius:10px;overflow:hidden;transition:box-shadow .2s,transform .2s,border-color .2s;}
.media-listing-card:hover{box-shadow:0 6px 18px rgba(0,0,0,.08);transform:translateY(-2px);border-color:#00b680;}
.media-listing-card__link{display:block;text-decoration:none;color:inherit;height:100%;}
.media-listing-card__thumb{position:relative;aspect-ratio:16/9;background:#e6f8f2;overflow:hidden;}
.media-listing-card__thumb img{display:block!important;width:100%!important;height:100%!important;max-width:none!important;object-fit:cover;}
.media-listing-card__thumb--placeholder{display:flex;align-items:center;justify-content:center;background:#e6f8f2;}
.media-listing-card__media-name{font-size:1.1rem;font-weight:700;letter-spacing:.08em;color:#00b680;}
.media-listing-card__body{padding:16px 18px 18px;}
.media-listing-card__meta{display:flex;align-items:center;gap:10px;margin:0 0 8px;}
.media-listing-card__tag{font-size:.72rem;font-weight:700;color:#fff;border-radius:4px;padding:3px 8px;}
.media-listing-card__tag--prtimes{background:#00b680;}
.media-listing-card__tag--other{background:#27476e;}
.media-listing-card__date{font-size:.8rem;color:#888;}
.media-listing-card__title{font-size:.98rem;font-weight:700;line-height:1.55;color:#433b31;margin:0;}
.media-listing-card__excerpt{font-size:.85rem;line-height:1.6;color:#666;margin:8px 0 0;}
.media-listing-empty{text-align:center;color:#888;padding:48px 0;}
@media(max-width:480px){.media-listing-grid{grid-template-columns:1fr;}}

/* 掲載実績：6件まで表示＋「もっと見る」ボタン 2026-06-22 */
.media-listing-card--hidden{display:none;}
.media-listing-more-wrap{text-align:center;margin-top:28px;}
.media-listing-more{display:inline-block;background:#fff;color:#009168;border:1.5px solid #00b680;border-radius:999px;padding:12px 32px;font-size:.92rem;font-weight:700;cursor:pointer;transition:background .2s,color .2s;}
.media-listing-more:hover{background:#00b680;color:#fff;}

/* お問い合わせ：備考欄トグル（details / ＋で開閉）2026-06-22 */
.ml-remarks{margin:4px 0;}
.ml-remarks>summary{list-style:none;cursor:pointer;display:inline-flex;align-items:center;padding:8px 0;font-weight:700;color:#433b31;}
.ml-remarks>summary::-webkit-details-marker{display:none;}
.ml-remarks>summary::before{content:"＋";font-weight:700;margin-right:8px;line-height:1;}
.ml-remarks[open]>summary::before{content:"−";}
.ml-remarks__inner{padding:6px 0 4px;}
.ml-remarks__note{margin:0 0 14px!important;font-size:.8rem!important;color:#999!important;line-height:1.6;}
.ml-remarks__field{width:100%;box-sizing:border-box;padding:10px 12px;border:1px solid #ccc;border-radius:6px;}

/* ========== ver17_260706: 100%実績・実質0円 注釈対応（TOP審査対応） ========== */
/* FV注釈をSPでもFV画像上（エンブレム直下の写真帯）に白文字で表示。上のSP用display:noneを上書き */
@media screen and (max-width: 767px) {
  .lp-fv__notes {
    display: block !important;
    position: absolute;
    top: 66%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0 20px 0 12px;
    color: #fff !important;
    background: none !important;
    text-align: justify;
    font-size: 0.55rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    z-index: 2;
  }
  /* FV電話番号の重なり位置微調整 */
  .lp-fv__tel {
    margin-top: -0.25rem !important;
  }
}
/* 補助金セクションの注釈（lp-subsidy__content外直下）とcontentの間隔を詰める */
.lp-subsidy__note { margin-top: -2rem !important; }
@media screen and (max-width: 767px) {
  .lp-subsidy__note { margin-top: -1.5rem !important; }
}
