/* =================================================================
   Base
   ================================================================= */
:root {
  --gothic: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --heading: "Stack Sans Notch", "Outfit", sans-serif;
  --color-white: #ffffff;
  --color-black: #0a0a0a;
  --color-gray-800: #262626;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  background-color: transparent;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  color: var(--color-black);
  background: #1c1916;
  font-family: var(--gothic);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading);
}

button,
input,
textarea {
  font-family: inherit;
}

button {
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* =================================================================
   Header — hamburger button
   ================================================================= */
.hamburger-btn {
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 9100;
  width: 72px;
  height: 72px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.hamburger-btn.is-hidden-scrolled {
  display: none;
}

.hamburger-btn.is-menu-open {
  opacity: 0;
  pointer-events: none;
}

.hamburger-dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hamburger-btn.is-menu-open .hamburger-dots {
  opacity: 0;
}

.hamburger-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: #90c421;
  filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s, width 0.9s ease-out, height 0.9s ease-out, filter 0.4s;
}

.hamburger-btn:hover:not(.is-menu-open) .hamburger-glow {
  width: 72px;
  height: 72px;
  filter: blur(0);
  opacity: 1;
}

.hamburger-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 72px;
  height: 72px;
  border: 1.5px solid rgba(144, 196, 33, 0.75);
  border-radius: 50%;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hamburger-ripple.is-animating {
  animation: hamburger-ripple-expand 0.85s ease-out forwards;
}

@keyframes hamburger-ripple-expand {
  0% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.65);
  }
}

.hamburger-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 47px;
  height: 47px;
  overflow: hidden;
  border-radius: 50%;
  background: #90c421;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.43, 0.05, 0.17, 1), height 0.6s cubic-bezier(0.43, 0.05, 0.17, 1);
}

.hamburger-btn.is-menu-open .hamburger-circle {
  width: 0;
  height: 0;
}

.hamburger-circle.is-animating {
  animation: navcircleanime 0.9s ease forwards;
}

@keyframes navcircleanime {
  0% { transform: translate(-50%, -50%) scale(1.4); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.hamburger-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 20px;
  height: 7px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all 0.6s cubic-bezier(0.43, 0.05, 0.17, 1);
}

.hamburger-line--1 { top: 0; }
.hamburger-line--3 { top: 100%; }

.hamburger-btn:hover:not(.is-menu-open) .hamburger-line--1,
.hamburger-btn:hover:not(.is-menu-open) .hamburger-line--3 {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-btn.is-menu-open .hamburger-line {
  top: 50%;
  color: rgba(51, 51, 51, 0.9);
  background: rgba(51, 51, 51, 0.9);
}

.hamburger-btn.is-menu-open .hamburger-line--1 {
  opacity: 1;
  transform: translateY(-50%) rotate(-135deg);
}

.hamburger-btn.is-menu-open .hamburger-line--3 {
  opacity: 1;
  transform: translateY(-50%) rotate(-45deg);
}

.hamburger-btn.is-hamburger-returning {
  animation: hamburger-return 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes hamburger-return {
  from {
    opacity: 0;
    transform: translate(-60px, -60px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* =================================================================
   Header — compact
   ================================================================= */
.header-compact {
  position: fixed;
  top: 0;
  z-index: 8000;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 65px;
  background: rgba(28, 25, 22, 0.97);
  font-family: var(--gothic);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1), transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-compact.is-scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.header-compact__left {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

.header-compact__logo-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.header-compact__logo {
  width: 115px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.header-compact__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  max-width: min(460px, calc(100vw - 470px));
}

.header-compact__services {
  overflow-wrap: break-word;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.header-compact__services-break {
  display: inline;
}

.header-compact__spacer {
  flex: 1;
}

.header-compact__nav {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.yoko-item {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 0.05s), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--i) * 0.05s);
}

.header-compact.is-scrolled .yoko-item {
  opacity: 1;
  transform: translateX(0);
}

.yoko-sep {
  padding: 0 2px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
}

.compact-nav-link {
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.compact-nav-link:hover { color: #fc0; }

.header-compact__cta {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 0 22px;
  background: #e5007f;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}

.compact-header-cta {
  transition: background 0.6s cubic-bezier(0.26, 0.06, 0, 1);
}

.compact-header-cta:hover {
  background: #b70066;
}

.compact-hamburger {
  position: relative;
  flex-shrink: 0;
  align-self: stretch;
  width: 80px;
  background: rgb(60, 49, 8);
  cursor: pointer;
}

.compact-hamburger__lines {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 27px;
  height: 6px;
  transform: translate(-50%, -50%);
}

.compact-hamburger__line {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  transition: 0.6s cubic-bezier(0.43, 0.05, 0.17, 1);
}

.compact-hamburger__line--1 { top: 0; }
.compact-hamburger__line--2 { top: 100%; }

.compact-hamburger:hover .compact-hamburger__line--1 {
  top: 50%;
  transform: translateY(-50%);
}

.compact-hamburger:hover .compact-hamburger__line--2 {
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
}

/* =================================================================
   Menu overlay
   ================================================================= */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9000;
  display: flex;
  width: 100%;
  height: 100vh;
  font-family: var(--gothic);
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu.is-open {
  transform: translateX(0);
}

.menu__left {
  position: relative;
  flex-shrink: 0;
  width: 650px;
  height: 100%;
  overflow: hidden;
}

.menu__left-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu__left-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}

.menu__left-block {
  position: absolute;
  bottom: 87.5px;
  left: 72.5px;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--gothic);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.menu-cta:hover {
  opacity: 0.6;
}

.menu-cta-arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 13px;
  transition: background 0.3s ease;
}

.menu-cta-arrow-img {
  display: block;
  width: 14px;
  height: auto;
}

.menu-cta:hover .menu-cta-arrow {
  background: rgba(255, 255, 255, 0.12);
}

.menu__right {
  position: relative;
  flex: 1;
  height: 100%;
  overflow-y: auto;
  background-image: url("assets/images/common/white115.png");
  background-repeat: repeat;
}

.menu-close-btn {
  position: fixed;
  top: 106px;
  right: 83px;
  z-index: 9200;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0;
  transform: translate(18px, 12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.43, 0.05, 0.17, 1);
}

.menu.is-open .menu-close-btn {
  opacity: 1;
  transform: translate(0, 0);
  transition-delay: 0.38s;
}

.menu-close-btn:hover .menu-x-line1,
.menu-close-btn:hover .menu-x-line2 {
  opacity: 0.4;
}

.menu-x-line1,
.menu-x-line2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 1.5px;
  border-radius: 1px;
  background: #444;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity 0.3s ease, transform 0.42s cubic-bezier(0.43, 0.05, 0.17, 1);
}

.menu.is-open .menu-x-line1 {
  transform: translate(-50%, -50%) rotate(-135deg);
  transition-delay: 0.42s;
}

.menu.is-open .menu-x-line2 {
  transform: translate(-50%, -50%) rotate(-45deg);
  transition-delay: 0.48s;
}

.menu__nav {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 167px 42px 170px 45px;
}

.menu__col {
  flex: 1;
  min-width: 0;
}

.menu-anim-item {
  opacity: 0;
  transform: translateY(14px);
}

.menu.is-open .menu-anim-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s cubic-bezier(0.43, 0.05, 0.17, 1) var(--delay), transform 0.55s cubic-bezier(0.43, 0.05, 0.17, 1) var(--delay);
}

.menu-nav-head {
  margin-bottom: 51px;
}

.menu-head-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  color: #333;
  font-family: var(--heading);
  font-size: 22.5px;
  line-height: 1;
  letter-spacing: 0.05rem;
  text-decoration: none;
}

.menu-head-link .inner {
  display: block;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-head-link .popup {
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-head-link:hover .inner,
.menu-head-link:hover .popup {
  transform: translateY(-100%);
}

.menu-bottom-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-bottom-item {
  display: flex;
  align-items: center;
}

.menu-bottom-sep {
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.2);
}

.menu-bottom-link {
  color: rgba(51, 51, 51, 0.45);
  font-family: var(--gothic);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-bottom-link:hover {
  color: rgb(51, 51, 51);
}

/* =================================================================
   Footer
   ================================================================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 56px) 0 clamp(16px, 3vw, 28px);
  background: var(--color-black);
  color: var(--color-white);
}

.footer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, text-underline-offset 0.2s ease;
}

.footer a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--accent-color, #3b82f6);
  outline-offset: 2px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  align-items: start;
  gap: clamp(16px, 3vw, 28px);
  text-align: center;
}

.footer-section h4 {
  margin: 0 0 10px;
  font-family: var(--heading);
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-section p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.footer-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section li {
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer-logo-text .footer-main {
  display: block;
  color: var(--color-white);
  font-family: var(--heading);
  font-size: clamp(18px, 2.6vw, 20px);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-logo-text .footer-sub {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
}

.footer-brand-logo {
  filter: brightness(0) invert(1);
}

.footer-handwritten {
  display: block;
  width: 200px;
  max-width: 100%;
  height: auto;
  margin: 16px auto 0;
}

.footer-hours > li {
  margin: 0;
}

.footer-contact {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-variant-numeric: tabular-nums;
}

.footer-contact > div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  line-height: 1.7;
}

.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid #90c421;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.footer-social-icon:hover {
  background-color: #90c421;
}

.footer-social-icon img {
  display: block;
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1400px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  padding: 14px 60px 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(12.5px, 1.8vw, 14px);
  text-align: center;
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1699px) {
  .header-compact__nav {
    display: none;
  }

  .menu {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .menu__left {
    width: 280px;
  }

  .menu__left-bg {
    object-position: 78% 100%;
  }

  .menu__left-block {
    display: none;
  }

  .menu-close-btn {
    position: absolute;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .menu__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0 28px;
    min-height: 100%;
    padding: calc(92px + env(safe-area-inset-top)) 24px 40px;
  }

  .menu-nav-head {
    margin-bottom: 30px;
  }

  .menu-head-link {
    font-size: 21px;
    line-height: 1.2;
  }

  .menu-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding-top: 14px;
  }

  .menu-bottom-item {
    display: block;
  }

  .menu-bottom-sep {
    display: none;
  }

  .menu-bottom-link {
    line-height: 1.7;
    white-space: normal;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 929px) {
  .header-compact__services-break {
    display: block;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hamburger-btn {
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .hamburger-dots,
  .hamburger-ripple {
    width: 56px;
    height: 56px;
  }

  .header-compact {
    height: 60px;
    padding-top: env(safe-area-inset-top);
  }

  .header-compact__left {
    min-width: 0;
    gap: 0;
    padding: 0 16px;
  }

  .header-compact__logo {
    width: 104px;
    height: auto;
    max-height: 36px;
    object-fit: contain;
  }

  .header-compact__info,
  .header-compact__nav {
    display: none !important;
  }

  .header-compact__cta {
    padding: 0 12px;
    font-size: 11px;
  }

  .compact-hamburger {
    width: 64px;
  }

  .compact-hamburger__lines {
    width: 24px;
  }

  .menu {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .menu__left {
    display: none;
  }

  .menu__right {
    flex: 1 1 100%;
    width: 100%;
  }

  .menu-close-btn {
    position: absolute;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .menu__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0 28px;
    min-height: 100%;
    padding: calc(92px + env(safe-area-inset-top)) 24px 40px;
  }

  .menu-nav-head {
    margin-bottom: 30px;
  }

  .menu-head-link {
    font-size: 21px;
    line-height: 1.2;
  }

  .menu-bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding-top: 14px;
  }

  .menu-bottom-item {
    display: block;
  }

  .menu-bottom-sep {
    display: none;
  }

  .menu-bottom-link {
    line-height: 1.7;
    white-space: normal;
  }

  .footer .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-section h4 {
    margin-bottom: 8px;
  }

  .footer-handwritten {
    width: 160px;
    margin: 16px auto 0;
  }

  .footer-contact {
    display: grid;
    justify-items: center;
    gap: 8px;
  }

  .footer-contact > div {
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin: 0;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 24px;
    padding: 20px 0 0;
    line-height: 1.8;
  }

  .footer-bottom a,
  .footer-bottom p {
    max-width: 100%;
    margin: 0;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-top: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-bottom {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
    row-gap: 8px;
  }

  .footer-bottom p {
    flex-basis: 100%;
    margin: 8px 0 0;
    text-align: center;
  }
}

@media (prefers-color-scheme: light) {
  .footer {
    background: var(--color-gray-800);
  }
}

/* =================================================================
   Main content — service detail pages
   ================================================================= */
.lp-page-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #1c1916;
}

.lp-page-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/images/common/hougan111.webp");
  background-repeat: repeat;
  background-position: center top;
  background-size: 210px 210px;
  opacity: 0.3;
  pointer-events: none;
}

@media (max-width: 640px) {
  .lp-page-wrap::before {
    background-size: 150px 150px;
  }
}

.lp-main {
  --lp-main-top-pad: 230px;
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: var(--lp-main-top-pad) 200px 150px;
}

.lp-section-label {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
  text-align: center;
}

.lp-section-label__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lp-section-label__line {
  flex-shrink: 0;
  width: 120px;
  height: 2px;
  background-color: #90c421;
}

.lp-section-label__name {
  margin: 0;
  color: #f4f1ea;
  font-family: var(--heading);
  font-size: 45px;
  font-weight: 500;
  letter-spacing: 9.45px;
  line-height: 1.4;
}

.lp-section-label__sub {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #f4f1ea;
  font-family: var(--heading);
  font-size: 16px;
  line-height: 1.4;
}

.lp-section-label__watermark {
  position: absolute;
  top: calc(var(--lp-main-top-pad) + 46px);
  right: -20px;
  color: rgba(244, 241, 234, 0.08);
  font-family: var(--heading);
  font-size: 180px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  user-select: none;
  white-space: nowrap;
}

.lp-intro {
  max-width: 1040px;
  margin: 0;
  color: #f4f1ea;
  font-family: var(--gothic);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  text-wrap: pretty;
}

.lp-intro-note {
  display: block;
  margin-top: 10px;
  color: rgba(244, 241, 234, 0.78);
  font-size: 12px;
  line-height: 1.65;
}

.lp-plans {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 1040px;
  max-width: 100%;
}

.lp-plan-card {
  display: flex;
  flex-direction: row;
  gap: 61px;
  padding: 60px 75px;
  border: 0.667px solid rgb(47, 47, 51);
  background-color: #fff;
  box-shadow: 3px 3px 0 0 rgb(0, 0, 0);
}

.lp-plan-left {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 19px;
  width: 412px;
}

.lp-plan-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 19px;
  padding-top: 37px;
}

.lp-plan-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  height: 38px;
  padding: 5px 20px;
  border-radius: 4px;
}

.lp-plan-badge--green {
  background-color: #90c421;
}

.lp-plan-badge--purple {
  background-color: #8d94c4;
}

.lp-plan-badge--pink {
  background-color: #e5007f;
}

.lp-plan-badge--green .lp-plan-badge-en,
.lp-plan-badge--green .lp-plan-badge-ja {
  color: #fff;
}

.lp-plan-badge-en {
  margin: 0;
  color: #fff;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 200;
  line-height: 16px;
}

.lp-plan-badge-ja {
  margin: 0;
  color: #fff;
  font-family: var(--gothic);
  font-size: 20px;
  font-weight: 400;
  line-height: 16px;
}

.lp-plan-summary {
  margin: 0;
  color: rgb(47, 47, 51);
  font-family: var(--gothic);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.lp-section-heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}

.lp-dot {
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgb(141, 148, 196);
}

.lp-heading-text {
  margin: 0;
  color: rgb(47, 47, 51);
  font-family: var(--gothic);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.lp-body-text {
  margin: 0;
  color: rgb(47, 47, 51);
  font-family: var(--gothic);
  font-size: 16px;
  font-weight: 400;
  line-height: 25.44px;
}

.lp-body-text--bold {
  font-weight: 700;
}

.lp-detail-note {
  margin: 7px 0 0;
  color: rgb(92, 92, 98);
  font-family: var(--gothic);
  font-size: 12px;
  line-height: 1.65;
}

.lp-note {
  margin: 0;
  color: rgb(233, 74, 99);
  font-family: var(--gothic);
  font-size: 15px;
  line-height: 23.85px;
}

.lp-price {
  margin: 0;
  color: rgb(47, 47, 51);
  font-family: var(--gothic);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.lp-price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-price-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 17px 2px 19px;
}

.lp-price-line + .lp-price-line {
  border-top: 1px solid rgba(47, 47, 51, 0.16);
}

.lp-price-tax {
  align-self: flex-end;
  margin: 0;
  color: rgb(92, 92, 98);
  font-family: var(--gothic);
  font-size: 11px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.lp-price-note {
  margin: 0;
  color: rgb(92, 92, 98);
  font-family: var(--gothic);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.65;
}

/* Web画像・DTP・ロゴ・その他制作のフラットな料金表 */
.lp-service-rate-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-service-rate {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 17px 2px 19px;
  border: 0;
  background: transparent;
}

.lp-service-rate + .lp-service-rate {
  border-top: 1px solid rgba(47, 47, 51, 0.16);
}

.lp-service-rate__name {
  margin: 0;
  color: rgb(47, 47, 51);
  font-family: var(--gothic);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.lp-service-rate__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.lp-service-rate__price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-service-rate__price {
  margin: 0;
  color: rgb(47, 47, 51);
  font-family: var(--gothic);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.lp-service-rate__period {
  flex-shrink: 0;
  margin: 0;
  color: rgb(92, 92, 98);
  font-family: var(--gothic);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.lp-service-rate > .lp-price-tax {
  align-self: flex-end;
  margin-top: 0;
}

.lp-nav-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.lp-nav-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  height: 64px;
  padding: 0 25px;
  border: 2px solid rgb(47, 47, 51);
  border-radius: 32px;
  background-color: #fff;
  color: rgb(47, 47, 51);
  font-family: var(--gothic);
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.lp-nav-btn:hover {
  background-color: rgb(47, 47, 51);
  color: #fff;
}

.lp-nav-btn__arrow {
  flex-shrink: 0;
  width: 32px;
  height: auto;
  filter: brightness(0);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.lp-nav-btn:hover .lp-nav-btn__arrow {
  filter: brightness(0) invert(1);
  transform: translateX(3px);
}

.hamburger-btn:focus-visible,
.compact-hamburger:focus-visible,
.menu-close-btn:focus-visible {
  outline: 3px solid #fc0;
  outline-offset: 3px;
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 1024px) {
  .lp-main {
    --lp-main-top-pad: 130px;
    padding: var(--lp-main-top-pad) 24px 80px;
  }

  .lp-plan-card {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
  }

  .lp-plan-left {
    width: 100%;
  }

  .lp-plan-right {
    padding-top: 0;
  }

  .lp-plans {
    width: 100%;
  }

  .lp-nav-btns {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .lp-intro__break {
    display: none;
  }

  .lp-section-label__line {
    width: 72px;
  }

  .lp-section-label__name {
    font-size: 38px;
    letter-spacing: 5px;
  }

  .lp-section-label__sub {
    font-size: 13px;
  }

  .lp-section-label__watermark {
    top: calc(var(--lp-main-top-pad) + 39px);
    right: -8px;
    font-size: 124px;
  }

  .lp-plan-badge {
    flex-wrap: wrap;
    height: auto;
    gap: 5px 10px;
    padding: 8px 14px;
  }

  .lp-plan-badge-en,
  .lp-plan-badge-ja {
    font-size: 16px;
    line-height: 1.35;
  }

  .lp-service-rate__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .lp-service-rate__period {
    text-align: left;
  }

  .lp-price-tax {
    max-width: 100%;
    white-space: normal;
  }
}
