@charset "UTF-8";
:root {
  --color-primary: #B30000;
  --color-secondary: #8A0000;
  --color-accent: #E60012;
  --color-accent-hover: #FF1A2D;
  --color-highlight: #FFD700;
  --color-text: #333333;
  --color-text-light: #777777;
  --color-white: #FFFFFF;
  --color-bg-light: #F8F9FA;
  --color-bg-gray: #EDF2F7;
  --space-none: 0;
  --space-xxs: 4px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-xxl: 96px;
  --space-4: 4px;
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-40: 40px;
  --space-64: 64px;
  --space-96: 96px;
  --font-size-base: clamp(1rem, 2.5vw, 1.125rem);
  --font-size-xs: clamp(0.7rem, 1.7vw, 0.9rem);
  --font-size-sm: clamp(0.875rem, 2vw, 1rem);
  --font-size-md: clamp(1.08rem, 2.6vw, 1.125rem);
  --font-size-lg: clamp(1.125rem, 2.8vw, 1.25rem);
  --font-size-xl: clamp(1.8rem, 5vw, 2.7rem);
  --font-size-h1: clamp(2rem, 5vw, 3rem);
  --font-size-h2: clamp(1.5rem, 4vw, 2.25rem);
  --font-size-h3: clamp(1.25rem, 3vw, 1.5rem);
  --font-base: Noto Sans JP, Hiragino Sans, Hiragino Kaku Gothic ProN, Yu Gothic, YuGothic, sans-serif;
  --font-en: Inter, system-ui, -apple-system, sans-serif;
  --border-radius: 12px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

html {
  block-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
}

body {
  min-block-size: 100%;
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.8;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* 2. Typography & Lists */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* 3. Media & Tables */
:where(img, video) {
  block-size: auto;
  max-inline-size: 100%;
}

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

/* 4. Interactive Elements */
:where(a[href], button, input, select, textarea) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

/* 5. Utility & Accessibility */
:where(button, input, textarea) {
  -webkit-tap-highlight-color: transparent;
}

:where(button, [disabled]) {
  cursor: not-allowed;
}

/* Focus Visible */
:focus-visible {
  outline-offset: 5px;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-accent);
}

.mt-4 {
  margin-top: 2rem;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.ib {
  display: inline-block;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fadein {
  opacity: 0;
  transition: opacity 1s ease-out;
}
.animate-fadein.is-visible {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* Layout & Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--small {
  max-width: 800px;
}
.container--medium {
  max-width: 1000px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 60px;
  line-height: 1.4;
  position: relative;
}
.section-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(12px, 1.5vw, 16px);
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 700;
}
.section-title--white {
  color: var(--color-white);
}
.section-title--white .section-title__en {
  color: var(--color-highlight);
}

/* Components */
.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(230, 0, 18, 0.4);
  cursor: pointer;
  border: none;
}
.btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 0, 18, 0.5);
}
.btn--small {
  padding: 12px 24px;
  font-size: clamp(12px, 1.5vw, 14px);
}
.btn--large {
  padding: 20px 48px;
  font-size: clamp(16px, 2.5vw, 20px);
  border-radius: 60px;
  width: 100%;
  max-width: 600px;
}
.btn--shiny {
  position: relative;
  overflow: hidden;
}
.btn--shiny::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(35deg);
  transition: 0.5s;
}
.btn--shiny:hover::after {
  left: 120%;
}

.highlight {
  color: var(--color-accent);
}

.highlight-text {
  color: var(--color-accent);
  font-weight: bold;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  color: var(--color-white);
}

.icon {
  width: 48px;
  height: 48px;
  fill: var(--color-accent);
  margin-bottom: 16px;
}

select,
input {
  margin-top: 6px;
  display: inline-block;
}

textarea {
  min-height: 12em;
}

input.zip {
  width: 8em;
}
@media screen and (min-width: 1024px) {
  input.zip {
    width: 20%;
  }
}

select.pref {
  width: 50%;
}
@media screen and (min-width: 1024px) {
  select.pref {
    width: 20%;
  }
}

@media screen and (min-width: 1024px) {
  input[type=text],
  input[type=email] {
    max-width: 70%;
  }
}

@media screen and (min-width: 768px) {
  .checkLabel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.checkLabel label {
  line-height: 24px;
  min-height: 24px;
  margin-right: 1em;
  margin-bottom: 10px;
  display: block;
  width: 100%;
  font-size: 3.6vw;
}
@media screen and (max-width: 320px) {
  .checkLabel label {
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .checkLabel label {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.checkLabel .checkbox {
  display: none;
}
.checkLabel .checkbox-icon {
  position: relative;
  top: 0.35em;
  left: 0;
  display: inline-block;
  margin-right: 5px;
  width: 1.5em;
  height: 1.5em;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
@media screen and (min-width: 768px) {
  .checkLabel .checkbox-icon {
    margin-right: 8px;
  }
}
.checkLabel .checkbox:checked + .checkbox-icon {
  background: rgb(255, 134.7202380952, 73.5);
}
.checkLabel .checkbox:checked + .checkbox-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 55%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #FFFFFF;
}
.checkLabel .checkbox:checked + .checkbox-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 55%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #FFFFFF;
}

#sendMsg {
  text-align: left;
  padding: 6em 0;
}
@media screen and (min-width: 1024px) {
  #sendMsg {
    text-align: center;
    font-size: 16px;
  }
}

.topBtn {
  text-align: center;
  margin: 0 auto 100px;
}
.topBtn a {
  border-radius: 1.5em;
  background-color: #fc5500;
  color: #fff;
  font-size: 16px;
  height: 3em;
  text-indent: -1.5em;
  line-height: 3em;
  padding: 0 20px 0 2em;
  min-width: 10em;
  display: inline-block;
  position: relative;
}
.topBtn a::after {
  content: "▲";
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.5em;
  position: absolute;
  top: 50%;
  right: 1.8em;
  transform: translateY(-50%);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.header__top {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 12px;
  text-align: left;
  padding: 6px 24px;
}
.header__top-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.header__top p {
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .header__top {
    font-size: clamp(9px, 2.5vw, 10px);
    padding: 4px 10px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 12px 16px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.header__logo:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .header__logo {
    gap: 6px;
    max-width: 65%;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .header__right {
    gap: 16px;
    margin-left: auto;
  }
}
.header__contact {
  text-align: right;
}
.header__tel-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: #1a1a1a;
}
.header__tel {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  pointer-events: none;
}
.header__time {
  display: block;
  font-size: 11px;
  color: var(--color-text-light);
  margin-top: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .header__btn {
    display: none !important;
  }
}
.header__btn--decorated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #E60012 0%, #B30000 100%);
  box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
  animation: pulse-shadow 2s infinite;
  padding: 14px 32px;
  font-size: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.header__btn--decorated:hover {
  background: linear-gradient(135deg, #FF1A2D 0%, #E60012 100%);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .header__btn--decorated {
    display: none !important;
  }
}
.header__tel-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__tel-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(230, 0, 18, 0.3);
  }
  .header__tel-sp svg {
    width: 22px;
    height: 22px;
  }
}

.logo-icon {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .logo-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 768px) {
  .logo-main-row {
    gap: 4px;
  }
}

.logo-main {
  font-size: 24px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: var(--font-base);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .logo-main {
    font-size: clamp(12px, 3.5vw, 16px);
  }
}

.logo-fc {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 45%, #FFD700 55%, #B8860B 100%);
  background-size: 200% 100%;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: skewX(-5deg);
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  animation: logo-fc-shine 4s infinite linear;
}
@media screen and (max-width: 768px) {
  .logo-fc {
    font-size: clamp(9px, 2.5vw, 10px);
    padding: 2px 6px;
    flex-shrink: 0;
  }
}

.logo-accent {
  color: var(--color-accent);
}

.logo-sub {
  font-size: 10px;
  font-family: var(--font-en);
  color: #777;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .logo-sub {
    font-size: 9px;
  }
}

.tel-icon {
  color: var(--color-accent);
  display: flex;
  align-items: center;
}
.tel-icon svg {
  width: 24px;
  height: 24px;
}

.btn-icon {
  display: flex;
  align-items: center;
}
.btn-icon svg {
  width: 20px;
  height: 20px;
}

/* Drawer Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: 5px;
  }
}
.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  left: 10px;
  transition: all 0.3s;
}
.hamburger__line:nth-child(1) {
  top: 14px;
}
.hamburger__line:nth-child(2) {
  top: 21px;
}
.hamburger__line:nth-child(3) {
  top: 28px;
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

@keyframes logo-fc-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes pulse-shadow {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 0, 18, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 0, 18, 0);
  }
}
.footer {
  background-color: #2E0000;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 0;
}

/* =========================================
  Hero Section
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(179, 0, 0, 0.9) 0%, rgba(179, 0, 0, 0.5) 100%);
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .hero__side-menu {
    position: absolute;
    left: max(20px, 50% - 680px);
    top: 50%;
    transform: translateY(-50%);
    width: 210px;
    z-index: 50;
  }
}
@media screen and (max-width: 768px) {
  .hero__side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    padding: 80px 20px 20px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    max-width: none;
    flex: none;
  }
  .hero__side-menu.is-open {
    right: 0;
  }
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero_bg.webp");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero__content {
  color: var(--color-white);
  max-width: 850px;
}
.hero__catchphrase {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 24px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .hero__catchphrase {
    font-size: 32px;
  }
}
.hero__catchphrase--yorozu {
  font-size: 64px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: -3px -3px 0 #E60012, 3px -3px 0 #E60012, -3px 3px 0 #E60012, 3px 3px 0 #E60012, 0px 6px 0 #B30000;
}
@media screen and (max-width: 768px) {
  .hero__catchphrase--yorozu {
    font-size: 9.5vw;
    text-shadow: -2px -2px 0 #E60012, 0px -2px 0 #E60012, 2px -2px 0 #E60012, -2px 0px 0 #E60012, 2px 0px 0 #E60012, -2px 2px 0 #E60012, 0px 2px 0 #E60012, 2px 2px 0 #E60012, 0px 4px 0 #B30000;
  }
}
.hero__sub-catchphrase {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero__sub-catchphrase strong {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .hero__sub-catchphrase {
    font-size: 16px;
  }
}
.hero__sub-catchphrase--yorozu {
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
  text-shadow: -2px -2px 0 #E60012, 2px -2px 0 #E60012, -2px 2px 0 #E60012, 2px 2px 0 #E60012, 3px 3px 0px #B30000;
  margin-bottom: 50px;
  background: none;
  padding: 0;
}
.hero__sub-catchphrase--yorozu .hero-highlight {
  color: #FFD700;
  font-size: 1.3em;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .hero__sub-catchphrase--yorozu {
    font-size: clamp(14px, 4vw, 18px);
    margin-bottom: 30px;
    text-shadow: -1px -1px 0 #E60012, 0px -1px 0 #E60012, 1px -1px 0 #E60012, -1px 0px 0 #E60012, 1px 0px 0 #E60012, -1px 1px 0 #E60012, 0px 1px 0 #E60012, 1px 1px 0 #E60012, 0px 2px 0 #B30000;
  }
  .hero__sub-catchphrase--yorozu .hero-highlight {
    font-size: 1.15em;
  }
}
.hero__achievements {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .hero__achievements {
    flex-direction: column;
  }
}
.hero__cta-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}
.hero__logo-yorozu {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--color-white);
  font-weight: 900;
  text-shadow: -2px -2px 0 #E60012, 2px -2px 0 #E60012, -2px 2px 0 #E60012, 2px 2px 0 #E60012, 4px 4px 0 #B30000;
  transform: rotate(-5deg);
  z-index: 10;
  font-family: var(--font-base);
}
@media screen and (max-width: 768px) {
  .hero__logo-yorozu {
    top: 60px;
    right: 20px;
    font-size: 24px;
    text-shadow: -1px -1px 0 #E60012, 0px -1px 0 #E60012, 1px -1px 0 #E60012, -1px 0px 0 #E60012, 1px 0px 0 #E60012, -1px 1px 0 #E60012, 0px 1px 0 #E60012, 1px 1px 0 #E60012, 0px 2px 0 #B30000;
  }
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.hero__tags span {
  background-color: #FFFFFF;
  color: #E60012;
  border: 2px solid #E60012;
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 2px 2px 0 #B30000;
}
.hero__panel-yorozu {
  background-color: #FFFFFF;
  border: 4px solid #E60012;
  border-radius: 12px;
  padding: 30px 40px;
  position: relative;
  max-width: 680px;
  color: var(--color-text);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .hero__panel-yorozu {
    padding: 30px 15px;
    margin-top: 40px;
  }
}
.hero--yorozu {
  padding-top: 170px;
  padding-bottom: 80px;
  min-height: 90vh;
}
@media screen and (max-width: 768px) {
  .hero--yorozu {
    padding-top: 140px;
    align-items: flex-start;
  }
}
.hero--yorozu .hero__bg {
  background-image: url("../images/yorozu_hero_bg.webp");
  background-position: right center;
  background-size: cover;
  background-color: #E60012;
}
.hero--yorozu::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (max-width: 768px) {
  .hero--yorozu::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 45%, rgba(255, 255, 255, 0) 100%);
  }
}

.side-menu {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.side-menu li {
  margin-bottom: 0;
}
.side-menu li:last-child {
  margin-bottom: 0;
}
.side-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #E60012 0%, #B30000 100%);
  padding: 14px 20px;
  border-radius: 40px;
  font-weight: 800;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(230, 0, 18, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.side-menu a:hover {
  background: linear-gradient(135deg, #FF1A2D 0%, #E60012 100%);
  color: var(--color-white);
  transform: translateX(10px) translateY(-2px);
  box-shadow: 0 12px 25px rgba(230, 0, 18, 0.6);
  border-color: #fff;
}
.side-menu a::after {
  content: "▶";
  font-size: 12px;
  margin-left: 10px;
  color: var(--color-highlight);
}
@media screen and (max-width: 768px) {
  .side-menu li {
    margin-bottom: 20px;
  }
}

.achievement-card {
  background: rgba(179, 0, 0, 0.7);
  border: 1px solid rgba(230, 0, 18, 0.3);
  padding: 20px 24px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .achievement-card {
    padding: 16px;
  }
}
.achievement-card__number {
  display: block;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.achievement-card__number small {
  font-size: 16px;
}
.achievement-card__text {
  font-size: 14px;
  font-weight: 700;
}

.panel-ribbon {
  background-color: #E60012;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  padding: 10px 24px;
  position: absolute;
  top: -24px;
  left: -15px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.panel-ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  border-width: 10px 15px 0 0;
  border-style: solid;
  border-color: #B30000 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .panel-ribbon {
    font-size: 18px;
    left: -10px;
    padding: 8px 16px;
  }
}

.panel-list {
  margin-top: 15px;
  padding: 0;
}
.panel-list li {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 22px;
}
.panel-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.panel-list li > span:first-child {
  color: #E60012;
  margin-right: 8px;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-2px);
}
.panel-list li strong {
  color: #E60012;
  font-size: 34px;
  margin: 0 8px;
}
@media screen and (max-width: 768px) {
  .panel-list li {
    font-size: 14px;
  }
  .panel-list li > span:first-child {
    margin-right: 2px;
    font-size: 6px;
    transform: none;
  }
  .panel-list li strong {
    font-size: 7vw;
    margin: 0 4px;
  }
}

.hero-btn-wrapper {
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-btn-microcopy {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 20px;
  border: 4px solid var(--color-primary);
  position: relative;
  z-index: 2;
  margin-bottom: -15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .hero-btn-microcopy {
    font-size: 14px;
    padding: 4px 14px;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  background: linear-gradient(180deg, #FF3344 0%, #E60012 100%);
  color: var(--color-white);
  font-size: 26px;
  font-weight: 900;
  padding: 24px 20px;
  border-radius: 50px;
  border: 4px solid var(--color-white);
  box-shadow: 0 8px 0 #990000, 0 15px 25px rgba(230, 0, 18, 0.5);
  text-decoration: none;
  animation: pulse-scale 2s infinite ease-in-out;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-btn:hover {
  transform: translateY(4px) scale(1.02);
  box-shadow: 0 4px 0 #990000, 0 10px 15px rgba(230, 0, 18, 0.5);
  color: var(--color-white);
}
.hero-btn svg {
  margin-right: 12px;
}
.hero-btn .arrow-icon {
  margin-left: 14px;
  font-size: 0.85em;
  letter-spacing: -7px;
}
@media screen and (max-width: 768px) {
  .hero-btn {
    font-size: 5vw;
    padding: 18px 10px;
  }
  .hero-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================
   Special Strengths Section
   ========================================= */
.special-strengths {
  background-color: #FDF9F8;
  color: var(--color-text);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .special-strengths {
    padding: 60px 0;
  }
}
.special-strengths__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 80px;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .special-strengths__title {
    font-size: 24px;
    margin-bottom: 50px;
  }
}
.special-strengths__prefix {
  font-size: 20px;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .special-strengths__prefix {
    font-size: 16px;
  }
}
.special-strengths__highlight {
  font-size: 48px;
  color: var(--color-accent);
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .special-strengths__highlight {
    font-size: 32px;
  }
}
.special-strengths__list--zigzag {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .special-strengths__list--zigzag {
    gap: 60px;
  }
}

.strength-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.strength-row--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .strength-row {
    flex-direction: column;
    gap: 30px;
  }
  .strength-row--reverse {
    flex-direction: column;
  }
}
.strength-row__image {
  flex: 1;
  position: relative;
}
.strength-row__image .image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  aspect-ratio: 4/3;
}
.strength-row__image .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: inherit;
  pointer-events: none;
}
.strength-row__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.strength-row:hover .strength-row__image img {
  transform: scale(1.05);
}
.strength-row__content {
  flex: 1;
  position: relative;
}
.strength-row__content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .strength-row__content h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.strength-row__content .special-card__desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}
.strength-row__content .special-card__desc strong {
  color: var(--color-accent);
  font-size: 18px;
}

.special-card__badge {
  font-family: var(--font-en);
  font-size: 100px;
  font-weight: 900;
  color: rgba(230, 0, 18, 0.08);
  line-height: 1;
  position: absolute;
  top: -60px;
  left: -20px;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .special-card__badge {
    font-size: 70px;
    top: -40px;
    left: -10px;
  }
}

/* =========================================
   Problem Section
   ========================================= */
.problem {
  background-color: var(--color-bg-light);
}
.problem__list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.problem__item {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  flex: 1;
  min-width: 300px;
  text-align: center;
  transition: var(--transition);
}
.problem__item:hover {
  transform: translateY(-10px);
}
.problem__summary {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
}
.problem__summary strong {
  color: var(--color-highlight);
}

/* =========================================
   Solution Section
   ========================================= */
.solution {
  background-color: var(--color-primary);
  color: var(--color-white);
  background-image: radial-gradient(circle at right top, var(--color-secondary), var(--color-primary));
}
@media screen and (max-width: 768px) {
  .solution h2.section-title {
    font-size: clamp(22px, 6vw, 32px);
  }
}
.solution__card {
  padding: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .solution__card {
    padding: 30px 20px;
  }
}
.solution__lead {
  font-size: 21px;
  margin-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  .solution__lead {
    font-size: 30px;
  }
}
.solution__lead strong {
  color: var(--color-highlight);
}
.solution__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .solution__steps {
    flex-direction: column;
  }
}
.solution__diagram {
  max-width: 800px;
  margin: 0 auto 50px;
  width: 100%;
}
.solution__diagram img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-step {
  background: var(--color-white);
  color: var(--color-text);
  padding: 40px;
  border-radius: var(--border-radius);
  flex: 1;
  max-width: 400px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .solution-step {
    padding: 30px 20px;
  }
}
.solution-step--accent {
  background: var(--color-secondary);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
}
.solution-step--accent .solution-step__num {
  color: var(--color-highlight);
}
.solution-step__num {
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.solution-step__title {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .solution-step__title {
    font-size: 21px;
  }
}
.solution-step__arrow {
  color: var(--color-accent);
  font-size: 30px;
}

/* =========================================
   Strengths Section
   ========================================= */
.strength__cards {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.strength-card {
  display: flex;
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
  position: relative;
  overflow: hidden;
  align-items: center;
}
.strength-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--color-accent);
}
.strength-card__num {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 900;
  color: var(--color-bg-gray);
  line-height: 1;
  margin-right: 40px;
  min-width: 100px;
}
.strength-card__title {
  font-size: 24px;
  font-weight: 800;
  flex: 1;
  color: var(--color-primary);
}
.strength-card__desc {
  flex: 2;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .strength-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .strength-card::before {
    width: 100%;
    height: 6px;
  }
  .strength-card__num {
    margin-right: 0;
    margin-bottom: 20px;
    font-size: 60px;
  }
  .strength-card__title {
    margin-bottom: 20px;
    font-size: 21px;
  }
}

/* =========================================
   Business Guide Section
   ========================================= */
.business-guide {
  background-color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .business-guide {
    padding: 80px 0;
  }
}

.guide-badge {
  display: inline-block;
  background: var(--color-bg-gray);
  color: var(--color-primary);
  padding: 6px 16px;
  border-radius: 4px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.guide-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .guide-title {
    font-size: 26px;
  }
}
.guide-title__accent {
  color: var(--color-accent);
  font-size: 4vw;
  display: block;
  margin-bottom: -1em;
}

.guide-main {
  margin-top: 60px;
}

.guide-row--top {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .guide-row--top {
    flex-direction: column;
  }
}

.guide-visual {
  flex: 1.2;
  position: relative;
}
.guide-visual img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  display: block;
}
@media screen and (max-width: 768px) {
  .guide-visual {
    width: 100%;
    flex: none;
  }
}

.guide-stats {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .guide-stats {
    width: 100%;
    flex: none;
  }
}

.stats-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  border: 4px solid var(--color-bg-gray);
  box-shadow: 0 40px 40px -30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.stats-card__title {
  font-size: 26px;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 5px;
}
.stats-card__subtitle {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stats-list li {
  display: flex;
  gap: 16px;
}

.stats-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #28a745;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 3px;
}

.stats-text {
  font-size: 16px;
  line-height: 1.6;
}

.branch-earnings {
  background: var(--color-bg-light);
  padding: 30px;
  border-radius: var(--border-radius);
  border: 1px dashed var(--color-primary);
}
.branch-earnings__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .branch-grid {
    grid-template-columns: 1fr;
  }
}

.branch-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.branch-name {
  font-weight: 500;
}

.branch-val {
  color: var(--color-accent);
  font-weight: 800;
  font-family: var(--font-en);
}

.guide-section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 50px;
}
.guide-section-title span {
  color: var(--color-accent);
  font-size: 1.25em;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.guide-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .guide-strengths {
    grid-template-columns: 1fr;
  }
}

.g-strength-card {
  background: #fff;
  padding: 50px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--color-bg-gray);
}
.g-strength-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}
.g-strength-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-primary);
}
.g-strength-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
}

.g-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.guide-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .guide-features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-bg-gray);
  padding: 30px;
  border-radius: var(--border-radius);
}
.feature-box h5 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--color-primary);
}
.feature-box p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.f-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.guide-footer {
  margin-top: 80px;
}

.step-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: #fff;
  padding: 50px 80px;
  border-radius: 100px;
  box-shadow: 0 15px 40px rgba(179, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .step-flow {
    flex-direction: column;
    border-radius: 24px;
    gap: 40px;
    padding: 40px 20px;
  }
}

.step-box {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.step-box p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
.step-box strong {
  color: var(--color-highlight);
  font-size: 1.25em;
}
@media screen and (max-width: 768px) {
  .step-box {
    width: 100%;
    justify-content: flex-start;
  }
}

.s-num {
  width: 48px;
  height: 48px;
  background: var(--color-highlight);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-arrow {
  font-size: 32px;
  color: var(--color-highlight);
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .step-arrow {
    transform: rotate(90deg);
    margin: -10px 0;
  }
}

/* =========================================
   Revenue Model Section
   ========================================= */
.model {
  background-color: var(--color-bg-light);
}
.model__intro {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}
.model__average {
  text-align: center;
  margin-bottom: 80px;
  perspective: 1000px;
}
.model__cases {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.model__notice {
  text-align: center;
  margin-top: 40px;
  font-weight: 700;
}

.average-data {
  position: relative;
  background: linear-gradient(135deg, #8A0000 0%, #E60012 30%, #B30000 70%, #8A0000 100%);
  background-size: 200% 200%;
  color: var(--color-white);
  display: inline-block;
  padding: 50px 100px;
  border-radius: 60px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(230, 0, 18, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  animation: floating-vibe 6s infinite ease-in-out, gradient-shift 8s infinite alternate;
}
@media screen and (max-width: 768px) {
  .average-data {
    padding: 30px 20px;
    border-radius: 40px;
  }
}
.average-data::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 300%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: rotate(35deg);
  animation: shine-sweep 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.average-data::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 15px 15px, 100% 4px;
  opacity: 0.6;
  pointer-events: none;
}
.average-data h3 {
  font-family: var(--font-en);
  font-size: 80px;
  font-weight: 900;
  color: var(--color-highlight);
  line-height: 1;
  margin: 10px 0;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  letter-spacing: -2px;
}
@media screen and (max-width: 768px) {
  .average-data h3 {
    font-size: 40px;
    letter-spacing: -1px;
  }
}
.average-data h3 small {
  font-size: 28px;
  letter-spacing: 0;
  margin-left: 4px;
  color: var(--color-white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .average-data h3 small {
    font-size: 16px;
  }
}
.average-data p {
  position: relative;
  z-index: 2;
  font-weight: 700;
  opacity: 0.9;
}

.case-card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  flex: 1;
  min-width: 300px;
  overflow: hidden;
}
.case-card__header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 20px;
  text-align: center;
}
.case-card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.case-card__user {
  display: block;
  font-size: 15px;
}
.case-card__body {
  padding: 30px;
}
.case-card__body dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 20px;
}
.case-card__body dt {
  width: 50%;
  font-weight: 700;
  margin-bottom: 10px;
}
.case-card__body dd {
  width: 50%;
  text-align: right;
  margin-bottom: 10px;
}
.case-card__result {
  text-align: center;
  background: var(--color-bg-gray);
  padding: 20px;
  border-radius: 8px;
}
.case-card__result span {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.case-card__result strong {
  font-size: 32px;
  color: var(--color-accent);
  font-family: var(--font-en);
}

/* =========================================
   Support Section
   ========================================= */
.support__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .support__list {
    grid-template-columns: 1fr;
  }
}
.support__list li {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border-top: 4px solid var(--color-primary);
}
.support__list h4 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--color-primary);
}

/* =========================================
   Contract Section
   ========================================= */
.contract {
  background-color: var(--color-bg-light);
}
.contract__info {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
}

.plan-table-wrap {
  background: var(--color-white);
  border-radius: var(--border-radius);
  overflow: visible;
  box-shadow: var(--box-shadow);
  margin-top: 30px;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
}
.plan-table th, .plan-table td {
  padding: 24px;
  text-align: center;
  border: 1px solid var(--color-bg-gray);
}
@media screen and (max-width: 768px) {
  .plan-table th, .plan-table td {
    padding: 12px;
    font-size: 14px;
  }
}
.plan-table th {
  background: var(--color-primary);
  color: var(--color-white);
  width: 35%;
}
.plan-table th:first-child {
  width: 30%;
  background: var(--color-secondary);
}
.plan-table th.plan-a {
  border-bottom: 4px solid var(--color-accent);
  position: relative;
}
.plan-table th.is-recommended {
  border-top: 3px solid var(--color-highlight) !important;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) !important;
}
.plan-table td:first-child {
  font-weight: bold;
  background: var(--color-bg-light);
  text-align: left;
}
.plan-table .is-recommended {
  border-left: 3px solid var(--color-highlight) !important;
  border-right: 3px solid var(--color-highlight) !important;
  background-color: rgba(255, 215, 0, 0.05);
}
.plan-table tr:last-child td.is-recommended {
  border-bottom: 3px solid var(--color-highlight) !important;
}

.total-row td {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .total-row td {
    font-size: 16px;
  }
}
.total-row td:not(:first-child) {
  color: var(--color-primary);
}

.plan-notice {
  margin-top: 32px;
  padding: 0 32px 32px;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .plan-notice {
    padding: 0 20px 24px;
    margin-top: 24px;
    font-size: 13px;
  }
}

.recommend-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #FFD700, #FFFACD, #FFD700);
  background-size: 200% auto;
  color: #B30000;
  padding: 6px 15px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
  white-space: nowrap;
  z-index: 10;
  animation: badge-shine 2s infinite, badge-pulse 1.5s infinite ease-in-out;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-item {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  text-align: left;
  overflow: hidden;
}
.faq-item__q {
  padding: 24px 60px 24px 24px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  list-style: none;
}
.faq-item__q::-webkit-details-marker {
  display: none;
}
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--color-accent);
  transition: transform 0.3s;
}
.faq-item__a {
  padding: 0 24px 24px;
  color: var(--color-text-light);
  line-height: 1.8;
}

details[open] .faq-item__q::after {
  content: "-";
}

/* =========================================
    CTA Section & Contact Form
   ========================================= */
.cta {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 120px 0;
  background-image: linear-gradient(135deg, rgba(179, 0, 0, 0.95), rgba(138, 0, 0, 0.95)), url("../images/hero_bg.webp");
  background-size: cover;
  background-position: center;
}
.cta__title {
  font-size: 36px;
  margin-bottom: 30px;
  line-height: 1.4;
  color: var(--color-highlight);
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 8.5vw;
  }
}
.cta__desc {
  font-size: 18px;
  margin-bottom: 40px;
}
.cta__benefits-container {
  max-width: 950px;
  margin: 50px auto 30px;
  background: linear-gradient(135deg, #FFFDF0 0%, #FFF8D4 50%, #FFE985 100%);
  border: 4px solid var(--color-highlight);
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 25px 60px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 255, 255, 0.5) inset;
  position: relative;
}
.cta__benefits-container::before, .cta__benefits-container::after {
  content: "★";
  position: absolute;
  top: 15px;
  font-size: 28px;
  color: #FFA500;
  animation: star-pulse 1.5s infinite ease-in-out;
}
.cta__benefits-container::before {
  left: 25px;
}
.cta__benefits-container::after {
  right: 25px;
}
@media screen and (max-width: 768px) {
  .cta__benefits-container {
    padding: 30px 15px;
    margin: 40px 10px 20px;
  }
  .cta__benefits-container::before, .cta__benefits-container::after {
    display: none;
  }
}
.cta__benefits-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 15px rgba(230, 0, 18, 0.4);
  border: 2px solid var(--color-white);
}
.cta__benefits-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #2E0000;
  margin-bottom: 35px;
  line-height: 1.4;
  text-shadow: 1px 1px 0px #FFF;
}
.cta__benefits-title .text-highlight {
  color: var(--color-accent);
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 950;
  background: linear-gradient(transparent 60%, #FF9999 60%);
  padding: 0 4px;
  display: inline-block;
}
.cta__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .cta__benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.cta-benefit-card {
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  border-radius: 20px;
  padding: 28px 15px;
  color: var(--color-text);
  box-shadow: 0 12px 30px rgba(230, 0, 18, 0.15);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.35);
  border-color: #FFA500;
}
.cta-benefit-card:hover::after {
  left: 120%;
}
.cta-benefit-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 215, 0, 0.15);
  transform: rotate(35deg);
  transition: 0.8s;
}
@media screen and (max-width: 768px) {
  .cta-benefit-card {
    padding: 20px 10px;
    border-width: 2px;
  }
}
.cta-benefit-card:nth-child(1) .cta-benefit-label {
  background: #E60012;
}
.cta-benefit-card:nth-child(2) .cta-benefit-label {
  background: #008000;
}
.cta-benefit-card:nth-child(3) .cta-benefit-label {
  background: #0000FF;
}
.cta-benefit-card:nth-child(4) .cta-benefit-label {
  background: #D2691E;
}
.cta-benefit-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF334B 0%, #B30014 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 15px rgba(179, 0, 20, 0.3);
  border: 2px solid var(--color-white);
}
@media screen and (max-width: 768px) {
  .cta-benefit-icon-wrapper {
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
  }
}
.cta-benefit-icon {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-benefit-icon svg {
  width: 36px;
  height: 36px;
}
@media screen and (max-width: 768px) {
  .cta-benefit-icon svg {
    width: 28px;
    height: 28px;
  }
}
.cta-benefit-info {
  width: 100%;
}
.cta-benefit-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--color-white);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .cta-benefit-label {
    padding: 2px 6px;
  }
}
.cta-benefit-text {
  font-size: clamp(12px, 2vw, 20px);
  font-weight: 950;
  color: #1a1a1a;
  line-height: 1.3;
}
.cta__benefits-summary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  border: 3px solid var(--color-highlight);
  padding: 28px 24px;
  border-radius: 16px;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(230, 0, 18, 0.3);
}
@media screen and (max-width: 768px) {
  .cta__benefits-summary {
    padding: 20px 12px;
  }
}
.cta__benefits-summary p {
  font-size: clamp(16px, 2.5vw, 26px);
  font-weight: 900;
  color: var(--color-white);
  margin: 0;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
  .cta__benefits-summary p {
    font-size: 46px;
  }
}
.cta__benefits-summary .text-gold {
  color: var(--color-highlight);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 950;
  text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000, 0 0 20px rgba(255, 215, 0, 0.8);
  padding: 0 6px;
  display: inline-block;
  animation: glow-pulse 2s infinite ease-in-out;
}
.cta__benefits-note {
  font-size: 13px;
  color: #555555;
  font-weight: bold;
  margin: 0;
}
.cta {
  /* アニメーション用キーフレーム（独立して定義） */
}
@keyframes star-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3) rotate(15deg);
    opacity: 1;
    color: var(--color-highlight);
  }
}
@keyframes glow-pulse {
  0%, 100% {
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000, 0 0 10px rgba(255, 215, 0, 0.6);
  }
  50% {
    text-shadow: 2px 2px 0px #000, -2px -2px 0px #000, 2px -2px 0px #000, -2px 2px 0px #000, 0 0 30px rgb(255, 215, 0);
    transform: scale(1.03);
  }
}
.cta__form-wrapper {
  background: var(--color-white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .cta__form-wrapper {
    padding: 30px 20px;
  }
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}
.form-label .required {
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: text-top;
}

.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email],
.contact-form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
  background-color: #fcfcfc;
}
.contact-form input[type=text]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=email]:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #fff;
}

.input-group-half {
  display: flex;
  gap: 16px;
}
.input-group-half input {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .input-group-half {
    flex-direction: column;
    gap: 10px;
  }
}

.checkbox-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.checkbox-group label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}
.checkbox-group input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #fc5500;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}
.form-submit button {
  width: 100%;
  max-width: 400px;
  border: none;
  font-family: inherit;
}

.thanks {
  min-height: 90vh;
  padding-top: calc(120px + 5em);
}

/* =========================================
   Company Profile Section
   ========================================= */
.company {
  background-color: var(--color-bg-light);
}
.company__card {
  background: var(--color-white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .company__card {
    padding: 24px 16px;
  }
}
.company__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company__row {
  display: flex;
  border-bottom: 1px solid var(--color-bg-gray);
  padding-bottom: 12px;
}
.company__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.company__row dt {
  width: 200px;
  font-weight: 700;
  color: var(--color-primary);
  flex-shrink: 0;
}
.company__row dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .company__row {
    flex-direction: column;
    gap: 4px;
  }
  .company__row dt {
    width: 100%;
    font-size: 14px;
  }
  .company__row dd {
    font-size: 15px;
  }
}
.company__sub-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-primary);
}
.company__groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .company__groups {
    grid-template-columns: 1fr;
  }
}

.group-card {
  background: var(--color-white);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--color-accent);
  transition: var(--transition);
}
.group-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}
.group-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-text);
}
.group-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Main Animations */
@keyframes pulse-scale {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 0 #990000, 0 15px 25px rgba(230, 0, 18, 0.5);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 0 #990000, 0 20px 40px rgba(230, 0, 18, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 0 #990000, 0 15px 25px rgba(230, 0, 18, 0.5);
  }
}
@keyframes floating-vibe {
  0%, 100% {
    transform: translateY(0) rotateX(0deg);
  }
  50% {
    transform: translateY(-15px) rotateX(3deg);
  }
}
@keyframes shine-sweep {
  0% {
    left: -150%;
  }
  25% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes badge-shine {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
@keyframes badge-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
}/*# sourceMappingURL=style.css.map */