@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "Murecho";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/murecho-Bold.woff2") format("woff2");
}
:root {
  --ff-jp: Noto Sans JP, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  --ff-ttl: Murecho, Noto Sans JP, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  --ff-en: Helvetica Neue, Helvetica, Arial, sans-serif;
  --ff-serif: serif;
  --color-primary: #d50033;
  --color-secondary: #2C2C2C;
  --color-accent: #fc4400;
  --color-info: #fffc00;
  --color-success: #20A4AF;
  --color-link: #D32F2F;
  --color-bg: #f4f4f4;
  --color-text: #333333;
  --color-border: #d8d8d8;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-red1: #ff001a;
  --color-darkred1: #bf001a;
  --color-blue: #003d9e;
  --color-orng: #fa6c00;
  --color-ylw: #ffd200;
  --color-gray-1: #f1f1f1;
  --color-gray-100: #f5f5f5;
  --color-gray-200: #e7e7e7;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #6c757d;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;
  --color-header-bg: #111111;
  --color-header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --color-header-bg-mobile: linear-gradient(0deg, #d50033 50%, rgb(221.4, 51, 91.8) 90%, #ffffff 100%);
  --color-header-bg-fallback: rgba(255, 255, 255, 0.9);
  --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-10: 10px;
  --space-12: 12px;
  --space-15: 15px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-30: 30px;
  --space-40: 40px;
  --space-64: 64px;
  --space-96: 96px;
  --space-nav-gap: clamp(1.5rem, 5vw, 2.5rem);
  --space-nav-gap-mobile: 1rem;
  --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.25rem, 2.8vw, 1.5rem);
  --font-size-xl: clamp(1.5rem, 4vw, 2.2rem);
  --font-size-xxl: clamp(1.8rem, 5vw, 3rem);
  --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-size-text: clamp(14px, 2.5vw, 16px);
  --font-size-10: 10px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-logo: clamp(1.125rem, 2.5vw, 1.5rem);
  --font-size-logo-icon: clamp(14px, 2.5vw, 18px);
  --line-height-base: 1.6;
  --color-bg-light: #e5e5e5;
  --color-gray-50: #f8f8f8;
  --border-radius: 0.5rem;
  --border-radius-base: 4px;
  --border-radius-sm: 8px;
  --border-radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
  --animation-duration: 0.6s;
  --animation-easing: ease-out;
  --header-height: 80px;
  --header-height-mobile: 60px;
  --header-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  --header-border: 1px solid var(--color-border);
  --header-clip-right: 40px;
  --header-clip-right-scrolled: 30px;
  --header-clip-right-mobile: 30px;
  --header-clip-right-mobile-scrolled: 25px;
  --header-transition-duration: 0.3s;
  --header-transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --z-index-header: map-get($z-index, header);
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: var(--header-height-mobile);
    --header-clip-right: var(--header-clip-right-mobile);
    --header-clip-right-scrolled: var(--header-clip-right-mobile-scrolled);
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", var(--ff-jp);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  scroll-behavior: smooth;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  block-size: 100%;
  letter-spacing: 1px;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-text);
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
  height: auto;
}

:where(img, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-ttl);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: break-word;
  letter-spacing: 2px;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

p {
  margin: 0 0 1em 0;
  overflow-wrap: break-word;
}

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

:where(ul, ol)[role=list] {
  list-style: none;
  padding-left: 0;
}

li {
  margin: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  padding: var(--space-xs);
  text-align: left;
}

a {
  word-break: break-all;
  outline: 0;
  transition: color 300ms linear, opacity 300ms linear;
  color: var(--color-link);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a,
button,
input,
label {
  -webkit-tap-highlight-color: transparent;
}

:where(input, button, textarea, select) {
  font: inherit;
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background-color: var(--color-bg);
  padding: 0.5rem;
  width: 100%;
}

:where(input, textarea) {
  cursor: text;
}

:where(textarea) {
  resize: vertical;
  min-height: 80px;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(button) {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
  text-align: center;
}

:where(button, input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

:where(input[type=file]) {
  cursor: inherit;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

:where(a[href], button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
@media (prefers-reduced-motion: reduce) {
  *:not(.nav-list, .nav-list *) {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    scroll-behavior: smooth;
  }
}
video {
  margin-inline: auto;
}

.p-none {
  padding: 0 !important;
}

.m-none {
  margin: 0 !important;
}

.pt-none {
  padding-top: 0 !important;
}

.pr-none {
  padding-right: 0 !important;
}

.pb-none {
  padding-bottom: 0 !important;
}

.pl-none {
  padding-left: 0 !important;
}

.mt-none {
  margin-top: 0 !important;
}

.mr-none {
  margin-right: 0 !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

.ml-none {
  margin-left: 0 !important;
}

.p-xxs {
  padding: 4px !important;
}

.m-xxs {
  margin: 4px !important;
}

.pt-xxs {
  padding-top: 4px !important;
}

.pr-xxs {
  padding-right: 4px !important;
}

.pb-xxs {
  padding-bottom: 4px !important;
}

.pl-xxs {
  padding-left: 4px !important;
}

.mt-xxs {
  margin-top: 4px !important;
}

.mr-xxs {
  margin-right: 4px !important;
}

.mb-xxs {
  margin-bottom: 4px !important;
}

.ml-xxs {
  margin-left: 4px !important;
}

.p-xs {
  padding: 0.5rem !important;
}

.m-xs {
  margin: 0.5rem !important;
}

.pt-xs {
  padding-top: 0.5rem !important;
}

.pr-xs {
  padding-right: 0.5rem !important;
}

.pb-xs {
  padding-bottom: 0.5rem !important;
}

.pl-xs {
  padding-left: 0.5rem !important;
}

.mt-xs {
  margin-top: 0.5rem !important;
}

.mr-xs {
  margin-right: 0.5rem !important;
}

.mb-xs {
  margin-bottom: 0.5rem !important;
}

.ml-xs {
  margin-left: 0.5rem !important;
}

.p-sm {
  padding: 1rem !important;
}

.m-sm {
  margin: 1rem !important;
}

.pt-sm {
  padding-top: 1rem !important;
}

.pr-sm {
  padding-right: 1rem !important;
}

.pb-sm {
  padding-bottom: 1rem !important;
}

.pl-sm {
  padding-left: 1rem !important;
}

.mt-sm {
  margin-top: 1rem !important;
}

.mr-sm {
  margin-right: 1rem !important;
}

.mb-sm {
  margin-bottom: 1rem !important;
}

.ml-sm {
  margin-left: 1rem !important;
}

.p-md {
  padding: 2rem !important;
}

.m-md {
  margin: 2rem !important;
}

.pt-md {
  padding-top: 2rem !important;
}

.pr-md {
  padding-right: 2rem !important;
}

.pb-md {
  padding-bottom: 2rem !important;
}

.pl-md {
  padding-left: 2rem !important;
}

.mt-md {
  margin-top: 2rem !important;
}

.mr-md {
  margin-right: 2rem !important;
}

.mb-md {
  margin-bottom: 2rem !important;
}

.ml-md {
  margin-left: 2rem !important;
}

.p-lg {
  padding: 3rem !important;
}

.m-lg {
  margin: 3rem !important;
}

.pt-lg {
  padding-top: 3rem !important;
}

.pr-lg {
  padding-right: 3rem !important;
}

.pb-lg {
  padding-bottom: 3rem !important;
}

.pl-lg {
  padding-left: 3rem !important;
}

.mt-lg {
  margin-top: 3rem !important;
}

.mr-lg {
  margin-right: 3rem !important;
}

.mb-lg {
  margin-bottom: 3rem !important;
}

.ml-lg {
  margin-left: 3rem !important;
}

.p-xl {
  padding: 4rem !important;
}

.m-xl {
  margin: 4rem !important;
}

.pt-xl {
  padding-top: 4rem !important;
}

.pr-xl {
  padding-right: 4rem !important;
}

.pb-xl {
  padding-bottom: 4rem !important;
}

.pl-xl {
  padding-left: 4rem !important;
}

.mt-xl {
  margin-top: 4rem !important;
}

.mr-xl {
  margin-right: 4rem !important;
}

.mb-xl {
  margin-bottom: 4rem !important;
}

.ml-xl {
  margin-left: 4rem !important;
}

.p-xxl {
  padding: 96px !important;
}

.m-xxl {
  margin: 96px !important;
}

.pt-xxl {
  padding-top: 96px !important;
}

.pr-xxl {
  padding-right: 96px !important;
}

.pb-xxl {
  padding-bottom: 96px !important;
}

.pl-xxl {
  padding-left: 96px !important;
}

.mt-xxl {
  margin-top: 96px !important;
}

.mr-xxl {
  margin-right: 96px !important;
}

.mb-xxl {
  margin-bottom: 96px !important;
}

.ml-xxl {
  margin-left: 96px !important;
}

.p-4 {
  padding: 4px !important;
}

.m-4 {
  margin: 4px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

.pr-4 {
  padding-right: 4px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pl-4 {
  padding-left: 4px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.ml-4 {
  margin-left: 4px !important;
}

.p-8 {
  padding: 8px !important;
}

.m-8 {
  margin: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.p-10 {
  padding: 10px !important;
}

.m-10 {
  margin: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.p-12 {
  padding: 12px !important;
}

.m-12 {
  margin: 12px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pr-12 {
  padding-right: 12px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pl-12 {
  padding-left: 12px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mr-12 {
  margin-right: 12px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.ml-12 {
  margin-left: 12px !important;
}

.p-15 {
  padding: 15px !important;
}

.m-15 {
  margin: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.p-16 {
  padding: 16px !important;
}

.m-16 {
  margin: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.p-20 {
  padding: 20px !important;
}

.m-20 {
  margin: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.p-24 {
  padding: 24px !important;
}

.m-24 {
  margin: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.pb-24 {
  padding-bottom: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mb-24 {
  margin-bottom: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.p-30 {
  padding: 30px !important;
}

.m-30 {
  margin: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.p-40 {
  padding: 40px !important;
}

.m-40 {
  margin: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.p-64 {
  padding: 64px !important;
}

.m-64 {
  margin: 64px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.pb-64 {
  padding-bottom: 64px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.mb-64 {
  margin-bottom: 64px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.p-96 {
  padding: 96px !important;
}

.m-96 {
  margin: 96px !important;
}

.pt-96 {
  padding-top: 96px !important;
}

.pr-96 {
  padding-right: 96px !important;
}

.pb-96 {
  padding-bottom: 96px !important;
}

.pl-96 {
  padding-left: 96px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

.mr-96 {
  margin-right: 96px !important;
}

.mb-96 {
  margin-bottom: 96px !important;
}

.ml-96 {
  margin-left: 96px !important;
}

.bg-primary {
  background-color: #d50033 !important;
}

.text-primary {
  color: #d50033 !important;
}

.border-primary {
  border-color: #d50033 !important;
}

.bg-secondary {
  background-color: #2C2C2C !important;
}

.text-secondary {
  color: #2C2C2C !important;
}

.border-secondary {
  border-color: #2C2C2C !important;
}

.bg-accent {
  background-color: #fc4400 !important;
}

.text-accent {
  color: #fc4400 !important;
}

.border-accent {
  border-color: #fc4400 !important;
}

.bg-info {
  background-color: #fffc00 !important;
}

.text-info {
  color: #fffc00 !important;
}

.border-info {
  border-color: #fffc00 !important;
}

.bg-success {
  background-color: #20A4AF !important;
}

.text-success {
  color: #20A4AF !important;
}

.border-success {
  border-color: #20A4AF !important;
}

.bg-link {
  background-color: #D32F2F !important;
}

.text-link {
  color: #D32F2F !important;
}

.border-link {
  border-color: #D32F2F !important;
}

.bg-bg {
  background-color: #f4f4f4 !important;
}

.text-bg {
  color: #f4f4f4 !important;
}

.border-bg {
  border-color: #f4f4f4 !important;
}

.bg-text {
  background-color: #333333 !important;
}

.text-text {
  color: #333333 !important;
}

.border-text {
  border-color: #333333 !important;
}

.bg-border {
  background-color: #d8d8d8 !important;
}

.text-border {
  color: #d8d8d8 !important;
}

.border-border {
  border-color: #d8d8d8 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.text-white {
  color: #FFFFFF !important;
}

.border-white {
  border-color: #FFFFFF !important;
}

.bg-black {
  background-color: #000000 !important;
}

.text-black {
  color: #000000 !important;
}

.border-black {
  border-color: #000000 !important;
}

.bg-red1 {
  background-color: #ff001a !important;
}

.text-red1 {
  color: #ff001a !important;
}

.border-red1 {
  border-color: #ff001a !important;
}

.bg-darkred1 {
  background-color: #bf001a !important;
}

.text-darkred1 {
  color: #bf001a !important;
}

.border-darkred1 {
  border-color: #bf001a !important;
}

.bg-blue {
  background-color: #003d9e !important;
}

.text-blue {
  color: #003d9e !important;
}

.border-blue {
  border-color: #003d9e !important;
}

.bg-orng {
  background-color: #fa6c00 !important;
}

.text-orng {
  color: #fa6c00 !important;
}

.border-orng {
  border-color: #fa6c00 !important;
}

.bg-ylw {
  background-color: #ffd200 !important;
}

.text-ylw {
  color: #ffd200 !important;
}

.border-ylw {
  border-color: #ffd200 !important;
}

.bg-gray-1 {
  background-color: #f1f1f1 !important;
}

.text-gray-1 {
  color: #f1f1f1 !important;
}

.border-gray-1 {
  border-color: #f1f1f1 !important;
}

.bg-gray-100 {
  background-color: #f5f5f5 !important;
}

.text-gray-100 {
  color: #f5f5f5 !important;
}

.border-gray-100 {
  border-color: #f5f5f5 !important;
}

.bg-gray-200 {
  background-color: #e7e7e7 !important;
}

.text-gray-200 {
  color: #e7e7e7 !important;
}

.border-gray-200 {
  border-color: #e7e7e7 !important;
}

.bg-gray-300 {
  background-color: #dee2e6 !important;
}

.text-gray-300 {
  color: #dee2e6 !important;
}

.border-gray-300 {
  border-color: #dee2e6 !important;
}

.bg-gray-400 {
  background-color: #ced4da !important;
}

.text-gray-400 {
  color: #ced4da !important;
}

.border-gray-400 {
  border-color: #ced4da !important;
}

.bg-gray-500 {
  background-color: #adb5bd !important;
}

.text-gray-500 {
  color: #adb5bd !important;
}

.border-gray-500 {
  border-color: #adb5bd !important;
}

.bg-gray-600 {
  background-color: #6c757d !important;
}

.text-gray-600 {
  color: #6c757d !important;
}

.border-gray-600 {
  border-color: #6c757d !important;
}

.bg-gray-700 {
  background-color: #495057 !important;
}

.text-gray-700 {
  color: #495057 !important;
}

.border-gray-700 {
  border-color: #495057 !important;
}

.bg-gray-800 {
  background-color: #343a40 !important;
}

.text-gray-800 {
  color: #343a40 !important;
}

.border-gray-800 {
  border-color: #343a40 !important;
}

.bg-gray-900 {
  background-color: #212529 !important;
}

.text-gray-900 {
  color: #212529 !important;
}

.border-gray-900 {
  border-color: #212529 !important;
}

.bg-header-bg {
  background-color: #111111 !important;
}

.text-header-bg {
  color: #111111 !important;
}

.border-header-bg {
  border-color: #111111 !important;
}

.bg-header-bg-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.text-header-bg-scrolled {
  color: rgba(255, 255, 255, 0.95) !important;
}

.border-header-bg-scrolled {
  border-color: rgba(255, 255, 255, 0.95) !important;
}

.bg-header-bg-mobile {
  background-color: linear-gradient(0deg, #d50033 50%, rgb(221.4, 51, 91.8) 90%, #ffffff 100%) !important;
}

.text-header-bg-mobile {
  color: linear-gradient(0deg, #d50033 50%, rgb(221.4, 51, 91.8) 90%, #ffffff 100%) !important;
}

.border-header-bg-mobile {
  border-color: linear-gradient(0deg, #d50033 50%, rgb(221.4, 51, 91.8) 90%, #ffffff 100%) !important;
}

.bg-header-bg-fallback {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.text-header-bg-fallback {
  color: rgba(255, 255, 255, 0.9) !important;
}

.border-header-bg-fallback {
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.btn-primary {
  background-color: #d50033;
  border-color: #d50033;
  color: white;
}
.btn-primary:hover {
  filter: brightness(0.9);
  background-color: rgb(162, 0, 38.7887323944);
  border-color: rgb(162, 0, 38.7887323944);
}
.btn-primary:active {
  filter: brightness(0.85);
  background-color: rgb(136.5, 0, 32.6830985915);
}

.btn-secondary {
  background-color: #2C2C2C;
  border-color: #2C2C2C;
  color: white;
}
.btn-secondary:hover {
  filter: brightness(0.9);
  background-color: rgb(18.5, 18.5, 18.5);
  border-color: rgb(18.5, 18.5, 18.5);
}
.btn-secondary:active {
  filter: brightness(0.85);
  background-color: rgb(5.75, 5.75, 5.75);
}

.btn-accent {
  background-color: #fc4400;
  border-color: #fc4400;
  color: white;
}
.btn-accent:hover {
  filter: brightness(0.9);
  background-color: rgb(201, 54.2380952381, 0);
  border-color: rgb(201, 54.2380952381, 0);
}
.btn-accent:active {
  filter: brightness(0.85);
  background-color: rgb(175.5, 47.3571428571, 0);
}

@media screen and (max-width: 575px) {
  .hidden-sm {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .visible-md {
    display: block !important;
  }
}

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

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

.container {
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-iblock {
  display: inline-block !important;
}

.d-inline {
  display: inline !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-center {
  justify-content: center !important;
}

.align-center {
  align-items: center !important;
}

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

.transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale {
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .hover-scale:hover {
    transform: scale(1.05);
  }
}

/* fadeIn を持つ要素<picture>と、その子 img のどちらにも初期状態を適用
[class*="fadeIn"],
[class*="fadeIn"]>img {
  opacity: 0;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
} */
/* >>> 初期位置（重要） 
.fadeInLeft,
.fadeInLeft>img {
  transform: translateX(-30px);
}
.fadeInRight,
.fadeInRight>img {
  transform: translateX(30px);
}
.fadeInUp,
.fadeInUp>img {
  transform: translateY(30px);
}
.fadeInDown,
.fadeInDown>img {
  transform: translateY(-30px);
}*/
/* >>> アクティブ時（どちらも対象） 
[class*="fadeIn"].is-active,
[class*="fadeIn"].is-active>img {
  opacity: 1;
  transform: translateX(0) translateY(0);
}*/
.fN {
  font-weight: normal;
}

.fB {
  font-weight: bold;
}

/* * モダンフチ文字 Mixin (paint-order対応)
 * 文字が潰れない外フチを作成します。
 * @param {Length} $size - フチの太さ (デフォルト: 4px)
 * @param {Color}  $color - フチの色 (デフォルト: #fff)
 */
.bk {
  color: #000;
}

.red {
  color: var(--color-red1);
}

.marker {
  background: linear-gradient(transparent 70%, var(--color-ylw) 0%);
  display: inline;
  padding: 0 1px 0px;
}

.parallax {
  overflow: hidden;
}
.parallax img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateY(15%);
  will-change: transform;
}

.glass,
.glass2 {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass2 {
  background-color: rgba(255, 255, 255, 0.5);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* =========================================================
  Common / Layout (Mobile First)
========================================================= */
body {
  padding-top: 50px;
  font-size: 14px;
}
body.admin-bar .header {
  top: 46px;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 62px;
  }
  body.admin-bar .header {
    top: 32px;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline;
  }
}

.sp {
  display: inline;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* 共通タイトル */
[class*=-section-title] {
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}
@media screen and (min-width: 768px) {
  [class*=-section-title] {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
[class*=-section-title]::after {
  content: "";
  display: block;
  width: 40vw;
  height: 5px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--color-ylw);
}

.cta-btn,
.link-btn {
  margin-top: 40px;
  text-align: center;
}

.cta-btn > a,
.link-btn > a,
a.cta-btn,
a.link-btn {
  color: #fff;
  display: block;
  width: 80vw;
  max-width: 500px;
  margin-inline: auto;
  border-radius: 100vmax;
  padding: 18px 52px 18px 32px;
  font-family: var(--ff-ttl);
  font-weight: 700;
  font-size: var(--font-size-lg);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: filter 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .cta-btn > a,
  .link-btn > a,
  a.cta-btn,
  a.link-btn {
    font-size: 21px;
  }
}
.cta-btn > a::after,
.link-btn > a::after,
a.cta-btn::after,
a.link-btn::after {
  content: "▶";
  color: #fff;
  font-size: 0.7em;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .cta-btn > a::after,
  .link-btn > a::after,
  a.cta-btn::after,
  a.link-btn::after {
    font-size: 0.7em;
  }
}
.cta-btn > a:visited,
.link-btn > a:visited,
a.cta-btn:visited,
a.link-btn:visited {
  color: #fff;
  text-decoration: none;
}
.cta-btn > a:active,
.link-btn > a:active,
a.cta-btn:active,
a.link-btn:active {
  transform: translateY(1px);
  filter: brightness(1.12);
}
@media (any-hover: hover) {
  .cta-btn > a:hover,
  .link-btn > a:hover,
  a.cta-btn:hover,
  a.link-btn:hover {
    transform: translateY(1px);
    filter: brightness(1.08);
  }
  .cta-btn > a:hover::after,
  .link-btn > a:hover::after,
  a.cta-btn:hover::after,
  a.link-btn:hover::after {
    transform: translateY(-50%) translateX(2px);
  }
}

.cta-btn a {
  background: linear-gradient(180deg, var(--color-accent) 40%, var(--color-ylw) 120%);
}

.link-btn a {
  background: linear-gradient(180deg, var(--color-secondary) 40%, var(--color-primary) 120%);
}

.icon {
  width: 1.3em;
  height: 1.3em;
  display: inline-block;
}
.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

/* .inview, .fadeIn {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform; // GPU最適化プロパティ
}

.inview.is-inview, .fadeIn.is-inview {
  opacity: 1;
  transform: none;
}
 */
.pagination {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination .nav-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  width: auto;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination .page-numbers.current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
@media (any-hover: hover) {
  .pagination .page-numbers:hover:not(.current) {
    background: var(--color-gray-100);
    color: var(--color-primary);
  }
}

/* -------------------------------------
   電話番号リンク制御用クラス
   PCではリンク無効化、モバイルではタップ可能
-------------------------------------- */
.tel-link {
  /* PCでのリンク無効化設定 */
}
@media screen and (min-width: 1024px) {
  .tel-link {
    pointer-events: none; /* クリック反応を消す */
    cursor: default; /* カーソルを矢印に戻す */
    color: inherit; /* リンク色(赤など)が当たらないよう継承 */
    text-decoration: none;
  }
}

/* =========================================================
  Area Section (対応可能エリア)
========================================================= */
.area-section {
  /* Heroセクションの下部はみ出しを考慮して140px以上を確保 */
  padding: clamp(140px, 15vw, 180px) 0 clamp(40px, 8vw, 80px);
}
.area-section .container {
  max-width: 960px;
}
@media screen and (min-width: 1024px) {
  .area-section .container {
    padding: 0;
  }
}
.area-section .area-box {
  position: relative;
  background-color: transparent;
  /* タイトル下無しの赤線枠囲み（影無し） */
  border: 3px solid var(--color-primary);
  box-shadow: none;
  padding: clamp(48px, 8vw, 64px) clamp(16px, 4vw, 40px) clamp(32px, 6vw, 48px);
  text-align: center;
  margin-top: 32px; /* タイトルの半分ほど下げて配置スペースを作る */
}
.area-section .area-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 親の背景色と同じ色を敷くことで赤枠線を隠し「タイトル下無し」を表現 */
  background-color: #fff;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 900;
  color: #111; /*黒系 */
  margin: 0;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .area-section .area-title {
    font-size: 44px;
  }
}
.area-section .area-title__icon {
  width: clamp(36px, 8vw, 48px);
  height: auto;
  flex-shrink: 0;
  /* 少しだけアイコンを上に浮かせて立体感強調 */
  transform: translateY(1px);
}
.area-section .area-text {
  font-size: clamp(16px, 3.5vw, 24px);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1.8; /* 二重線が重ならないように行間を少しだけ広げます */
  display: inline;
  border-bottom: 5px double rgb(254.25, 194.7, 0);
}
@media screen and (min-width: 1024px) {
  .area-section .area-text {
    font-size: 32px;
  }
}
.area-section .area-text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .area-section .area-text br {
    display: block;
  }
}
.area-section .area-note {
  font-size: clamp(13px, 3vw, 15px);
  font-weight: 700;
  color: var(--color-gray-700);
  margin: 1em auto 0;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .area-section .area-note {
    font-size: 21px;
  }
}
.area-section .area-note .sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .area-section .area-note .sp {
    display: none;
  }
}

/* =========================================================
  SOS Section (症状チェック)
========================================================= */
.sos-section {
  padding: clamp(160px, 15vw, 200px) 0 clamp(60px, 8vw, 100px);
  background-color: var(--color-white);
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .sos-section {
    padding-top: 60px;
  }
}
.sos-section .sos-header {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 80px);
  /* 画像ラッパーと虫眼鏡の装飾 */
}
.sos-section .sos-header .sos-images {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  margin: 40px auto 0;
  /* PCサイズでフルブリード（画面幅いっぱい）に拡張 */
}
@media screen and (min-width: 1024px) {
  .sos-section .sos-header .sos-images {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    max-width: 100vw;
  }
}
.sos-section .sos-header .sos-images__main {
  display: block;
  width: 100%;
}
.sos-section .sos-header .sos-images__main img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* 家の画像が無限に大きくならないように最大幅を制御 */
}
@media screen and (min-width: 1024px) {
  .sos-section .sos-header .sos-images__main img {
    max-width: 1100px;
  }
}
.sos-section .sos-header .sos-images__hand {
  position: absolute;
  width: clamp(180px, 25vw, 300px);
  height: auto;
  z-index: 10;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .sos-section .sos-header .sos-images__hand {
    width: 300px;
  }
}
.sos-section .sos-header .sos-images__hand {
  /* PCサイズで虫眼鏡もダイナミックに大きく */
}
@media screen and (min-width: 1024px) {
  .sos-section .sos-header .sos-images__hand {
    width: clamp(350px, 30vw, 500px);
  }
}
.sos-section .sos-header .sos-images__hand {
  /* 手首が見えないよう外側に配置し、15度回転 */
}
.sos-section .sos-header .sos-images__hand--top {
  top: 15%;
  right: -7%;
  transform: rotate(15deg);
}
@media screen and (min-width: 768px) {
  .sos-section .sos-header .sos-images__hand--top {
    right: -12%;
  }
}
@media screen and (min-width: 1024px) {
  .sos-section .sos-header .sos-images__hand--top {
    top: 5%;
    right: -2%; /* フルブリードの枠からさらに少しはみ出させる */
  }
}
.sos-section .sos-header .sos-images__hand {
  /* 左下に配置して反転（180度 + 15度 = 195度） */
}
.sos-section .sos-header .sos-images__hand--bottom {
  bottom: 15%;
  left: -7%;
  transform: rotate(195deg);
}
@media screen and (min-width: 768px) {
  .sos-section .sos-header .sos-images__hand--bottom {
    left: -12%;
  }
}
@media screen and (min-width: 1024px) {
  .sos-section .sos-header .sos-images__hand--bottom {
    bottom: 5%;
    left: -2%;
  }
}
.sos-section .sos-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sos-section .sos-title__sub {
  position: relative;
  font-size: clamp(13px, 3.2vw, 18px);
  letter-spacing: 0;
  font-weight: 900;
  color: #111;
  margin-bottom: 8px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
  padding: clamp(8px, 2vw, 12px) 0.7em;
  background-color: var(--color-white);
  max-width: 95%;
  line-height: 1.4;
  /* Check の赤丸（白フチなし） */
}
.sos-section .sos-title__sub::before {
  content: "Check";
  position: absolute;
  top: -25px;
  left: -33px;
  width: clamp(44px, 12vw, 60px);
  height: clamp(44px, 12vw, 60px);
  background-color: rgb(255, 51, 71.8);
  color: var(--color-white);
  border-radius: 50%;
  font-size: clamp(12px, 3vw, 16px);
  font-family: var(--ff-en);
  font-weight: 900;
  transform: rotate(-15deg);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .sos-section .sos-title__sub::before {
    left: -45px;
  }
}
.sos-section .sos-title__main {
  font-size: clamp(26px, 6vw, 49px);
  font-weight: 900;
  color: #111;
  line-height: 1.3;
  letter-spacing: 0;
}
.sos-section .sos-title__main .red {
  font-family: var(--ff-en);
  position: relative;
  display: inline-block;
  color: #ff001a;
  font-size: 1.2em;
  letter-spacing: -0.05em;
  padding: 0 0.3em;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff; /* 将来の標準プロパティ対応 */
  paint-order: stroke fill;
  /* 親要素や前後の要素との重なりを防ぐための保険的指定 */
  z-index: 1;
  z-index: 1;
  /* SVGを利用した白ベタ赤線の爆弾マーク */
}
.sos-section .sos-title__main .red::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.2em;
  height: 2.2em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,5 64,26 89,16 78,38 98,50 78,62 89,84 64,74 50,95 36,74 11,84 22,62 2,50 22,38 11,16 36,26' fill='%23ffffff' stroke='%238B0000' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  z-index: -1;
}
.sos-section {
  /* グリッドレイアウト */
}
.sos-section .sos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .sos-section .sos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .sos-section .sos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
.sos-section .sos-card {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  padding: 0; /* paddingを0にリセット */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* 画像やタイトルが枠をはみ出さないように */
}
.sos-section .sos-card__title {
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 900;
  color: var(--color-white);
  background-color: var(--color-primary);
  margin: 0;
  text-align: center;
  padding: 12px 6px;
}
@media screen and (min-width: 768px) {
  .sos-section .sos-card__title {
    font-size: 18px;
    letter-spacing: 1px;
  }
}
.sos-section .sos-card__img {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--color-gray-200);
}
.sos-section .sos-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sos-section .sos-card__text {
  padding: 16px; /* 指定通りpaddingを追加 */
  font-size: var(--font-size-md);
  line-height: 1.4;
  color: var(--color-text);
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .sos-section .sos-card__text {
    font-size: 16px;
  }
}
.sos-section .sos-card__text p {
  margin: 0;
}
.sos-section .sos-card__text {
  /* textの中のspanタグを赤く強調 */
}
.sos-section .sos-card__text span {
  font-weight: 900;
  color: rgb(255, 9, 67.9014084507);
}

/* =========================================================
  Diagnostic Section (診断フロー)
========================================================= */
.diagnostic-section {
  padding: 80px 0 0;
  background: #fff;
  text-align: center;
  position: relative;
  background: #FAF7F2 url("../images/diagnostic-bg_sp.webp") no-repeat center top/cover;
}
@media screen and (min-width: 768px) {
  .diagnostic-section {
    background: #FAF7F2 url("../images/diagnostic-bg_pc.webp") no-repeat center center/cover;
    min-height: 600px;
  }
}
.diagnostic-section .diagnostic-illust {
  margin: 0 auto 30px;
}
.diagnostic-section .diagnostic-title {
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  .diagnostic-section .diagnostic-title {
    font-size: 36px;
  }
}
.diagnostic-section .diagnostic-title .large {
  font-size: 1.5em;
  display: block;
  margin-top: 10px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .diagnostic-section .diagnostic-title .large {
    font-size: 1.35em;
  }
}
.diagnostic-section .diagnostic-title {
  /* 「無料」のスタイル */
}
.diagnostic-section .diagnostic-title .color01 {
  position: relative;
  color: #d50033;
  margin-right: -0.2em;
}
.diagnostic-section .diagnostic-title .color01::before {
  content: "・・";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  text-align: center;
  color: #d50033;
  font-size: 0.8em;
  font-weight: var(--fw-regular);
  line-height: 0;
  letter-spacing: 0.2em;
}
.diagnostic-section .diagnostic-title {
  /* 「現地診断」のスタイル */
}
.diagnostic-section .diagnostic-title .color-teal {
  color: #20a4af;
}
.diagnostic-section .diagnostic-title {
  /* 「を」のスタイル */
}
.diagnostic-section .diagnostic-title .small-text {
  font-size: 0.8em;
  vertical-align: middle;
  margin-right: 0.2em;
  display: inline-block;
  position: relative;
  bottom: 2px;
  left: 5px;
}

.diagnostic-text {
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .diagnostic-text {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .diagnostic-text {
    font-size: 22px;
  }
}
.diagnostic-text br {
  display: none;
}
@media screen and (min-width: 768px) {
  .diagnostic-text br {
    display: block;
  }
}
.diagnostic-text br.sp {
  display: block;
}

.diagnostic-flow {
  margin: 0 auto 40px;
}

.diagnostic-note {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  background-color: var(--color-primary);
  color: #FFD700;
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 900;
  text-align: center;
  padding: 24px 20px;
  margin-top: 40px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* =========================================================
  Point Section (ポイント)
========================================================= */
.point-section {
  padding: 80px 0;
  background-color: #fff;
}
.point-section .point-section-title {
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #111;
}
.point-section .point-section-title .en {
  position: absolute;
  top: -25px;
  left: -20px;
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  transform: rotate(-15deg);
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .point-section .point-section-title .en {
    font-size: 21px;
  }
}
.point-section .point-section-title .jp {
  display: block;
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.point-section .point-section-title .jp .num {
  font-size: 2.5em;
  color: var(--color-primary);
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  font-family: var(--ff-en);
}
.point-section .point-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.point-section .point-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}
@media screen and (min-width: 1024px) {
  .point-section .point-card {
    border-radius: 8px;
    overflow: hidden;
  }
}
.point-section .point-card__img {
  position: absolute;
  top: 0;
  left: -15px;
  height: auto;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin: 0 auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .point-section .point-card__img {
    left: -55px;
  }
}
@media screen and (min-width: 1024px) {
  .point-section .point-card__img {
    width: 55vw; /* PC時のカード幅55%に合わせる */
    height: 100%;
    left: 50%; /* 親カード内の右半分へ */
  }
}
.point-section .point-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 768px) {
  .point-section .point-card__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.point-section .point-card__img {
  /* 画像の上にグラデーションを敷く（奇数カード：左から白→透明） */
}
.point-section .point-card__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* ★スマホ・タブレット時は文字が全体にかかるため、白部分を広く・濃くする */
  background: linear-gradient(to right, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.7) 75%, rgba(255, 255, 255, 0) 95%);
}
@media screen and (min-width: 1024px) {
  .point-section .point-card__img::after {
    /* PC時は左半分に文字が来るので右側は透明に抜く */
    background: linear-gradient(to right, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0) 60%);
  }
}
.point-section .point-card {
  /* ③ テキストを最前面に持ってくる */
}
.point-section .point-card__text {
  position: relative;
  z-index: 2;
  padding: 30px 20px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .point-section .point-card__text {
    width: 65%; /* PC時はテキストエリアを左半分に制限 */
    padding: 40px 0 40px 40px;
    min-height: 380px;
  }
}
.point-section .point-card__text {
  /* Reason01 の文字 */
}
.point-section .point-card__text .en-text {
  font-family: var(--ff-en);
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 900;
  color: #EA4444; /*明るいピンクレッド */
  margin-bottom: 2px;
  letter-spacing: 0;
}
.point-section .point-card__text {
  /* 選ばれる理由01 の緑文字 */
}
.point-section .point-card__text .color-text {
  font-size: clamp(16px, 5vw, 36px);
  font-weight: 900;
  color: #537A5D; /* 緑色 */
  line-height: 1;
  margin-bottom: 10px;
}
.point-section .point-card__text .title {
  font-size: clamp(22px, 6.5vw, 32px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .point-section .point-card__text .title {
    font-size: 45px;
  }
}
.point-section .point-card__text .title .red {
  color: var(--color-primary);
  font-size: 1.4em;
  vertical-align: baseline;
  line-height: 1;
  margin: 0 4px;
}
.point-section .point-card__text .sub-title {
  font-size: clamp(14px, 3.8vw, 18px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
.point-section .point-card__text .txt {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .point-section .point-card__text .txt {
    font-size: 15px;
  }
}
.point-section .point-card {
  /* ★ 2番目のカード（偶数）の画像配置とグラデーション・テキストの反転 */
}
@media screen and (min-width: 1024px) {
  .point-section .point-card:nth-child(even) .point-card__img {
    left: 0; /* PC時は画像を左半分に配置 */
  }
}
.point-section .point-card:nth-child(even) .point-card__img img {
  /* モバイル時：左寄せ */
  right: auto;
  left: 0;
  -o-object-position: left center;
     object-position: left center;
}
@media screen and (min-width: 1024px) {
  .point-section .point-card:nth-child(even) .point-card__img img {
    /* PC時はセンターに戻す */
    -o-object-position: center;
       object-position: center;
  }
}
.point-section .point-card:nth-child(even) .point-card__img {
  /* 画像のグラデーションを反転（右側を白、左側を透明に） */
}
.point-section .point-card:nth-child(even) .point-card__img::after {
  background: linear-gradient(to left, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.7) 75%, rgba(255, 255, 255, 0) 95%);
}
@media screen and (min-width: 1024px) {
  .point-section .point-card:nth-child(even) .point-card__img::after {
    background: linear-gradient(to left, rgb(255, 255, 255) 8%, rgba(255, 255, 255, 0.85) 15%, rgba(255, 255, 255, 0) 60%);
  }
}
.point-section .point-card:nth-child(even) .point-card__text {
  /* モバイル時はグラデーションの白い側(右)に合わせてテキストを右寄せ */
  align-items: flex-end;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  .point-section .point-card:nth-child(even) .point-card__text {
    /* PC時はテキストブロックを右半分へ移動し、テキスト自体は左揃えに戻す */
    margin-left: auto;
    padding: 40px 40px 40px 0;
    align-items: flex-start;
    text-align: left;
  }
}

/* =========================================================
  Works Card Component (共通修正)
========================================================= */
.works-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  border: none;
  padding: 0;
}
.works-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (any-hover: hover) {
  .works-card__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  .works-card__link:hover .works-card__btn {
    background-color: #fff;
    color: #537a5d;
  }
}
.works-card__head {
  background-color: #537a5d;
  position: relative;
  padding: 35px 15px 10px;
  display: flex;
  justify-content: flex-end;
}
.works-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #333;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.works-card__title {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}
.works-card__img {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-gray-200);
}
.works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-card__btn {
  background-color: #537a5d;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 15px;
  font-weight: 900;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #537a5d;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.works-card__btn .arrow {
  font-size: 0.8em;
}

/* =========================================================
  Information (お知らせ共通コンポーネント)
========================================================= */
/* フッター等で使用する背景付きセクション */
.information-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* 背景画像（青空と家） */
  background: #eef7f9 url("../images/footer-info-bg_sp.webp") no-repeat center bottom/cover;
}
@media screen and (min-width: 768px) {
  .information-section {
    background: #eef7f9 url("../images/footer-info-bg_pc.webp") no-repeat center bottom/cover;
    padding: 80px 0 120px;
  }
}

/* 共通タイトル */
.information-title {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  color: #111;
}
.information-title .en {
  display: block;
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .information-title .en {
    font-size: 21px;
  }
}
.information-title .jp {
  display: block;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  letter-spacing: 0.05em;
}

/* リストコンテナ */
.information-list {
  max-width: 800px;
  margin: 0 auto clamp(40px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 記事カード (aタグを前提とし、Fittsの法則に配慮したクリッカブル領域) */
.information-item {
  background: #fff;
  border: 1px solid #537A5D;
  display: flex;
  align-items: stretch;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .information-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .information-item:hover .post-title {
    color: #537A5D;
  }
}
.information-item {
  /* 右下の三角アクセント */
}
.information-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #537A5D transparent;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .information-item::after {
    border-width: 0 0 32px 32px;
  }
}
.information-item .thumb {
  width: clamp(110px, 28vw, 160px);
  flex-shrink: 0;
  padding: clamp(10px, 2vw, 15px);
}
.information-item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
.information-item .meta-box {
  padding: clamp(12px, 3vw, 24px) 15px clamp(12px, 3vw, 24px) 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.information-item .meta-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .information-item .meta-top {
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
    gap: 12px;
  }
}
.information-item .date {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--color-text);
  font-family: var(--ff-en);
  line-height: 1;
}
.information-item .cat {
  display: inline-block;
  background: #537A5D;
  color: #fff;
  font-size: clamp(11px, 2.5vw, 13px);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  line-height: 1;
}
.information-item .post-title {
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 700;
  color: #111;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s;
}

/* フッター等の一覧へ誘導するボタン */
.information-btn {
  text-align: center;
}
.information-btn .btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #537A5D;
  color: #fff;
  font-weight: 900;
  font-size: clamp(16px, 4vw, 20px);
  padding: 18px 40px;
  border-radius: 50px;
  width: 100%;
  max-width: 480px;
  text-decoration: none;
  position: relative;
  transition: filter 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (any-hover: hover) {
  .information-btn .btn-green:hover {
    filter: brightness(1.15);
  }
}
.information-btn .btn-green svg {
  position: absolute;
  right: 24px;
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* =========================================================
  Information Archive / Single (下層ページ固有のレイアウト)
========================================================= */
.information-archive .information-list-section {
  padding: clamp(40px, 8vw, 80px) 0;
}

.information-single .information-detail-section {
  padding: clamp(40px, 8vw, 80px) 0;
}
.information-single .information-detail {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: clamp(20px, 5vw, 40px);
  border: 1px solid var(--color-border);
}
.information-single .information-head {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}
.information-single .information-head .meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.information-single .information-head .date {
  font-size: clamp(13px, 3vw, 15px);
  color: var(--color-text);
  font-family: var(--ff-en);
  line-height: 1;
}
.information-single .information-head .cat {
  background: #537A5D;
  color: #fff;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  line-height: 1;
}
.information-single .information-head .information-title {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
  color: #111;
  line-height: 1.4;
  margin: 0;
}
.information-single .information-single-img {
  margin: 0 0 30px;
}
.information-single .information-single-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.information-single .information-text-area {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  color: var(--color-text);
}
.information-single .information-text-area p {
  margin-bottom: 1.5em;
}
.information-single .information-text-area p:last-child {
  margin-bottom: 0;
}
.information-single .information-text-area h2, .information-single .information-text-area h3, .information-single .information-text-area h4 {
  margin: 1.5em 0 0.5em;
  color: #111;
}
.information-single .information-text-area a {
  color: var(--color-link);
  text-decoration: underline;
}
.information-single .information-text-area a:hover {
  text-decoration: none;
}

/* =========================================================
  _header.scss (Mobile & Tablet First / Accessibility Fixed)
========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* 新設した変数 var(--color-header-bg) を適用 */
  background-color: var(--color-header-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  padding: 12px 0;
  transition: transform 0.3s ease;
  /* JS不要メニュー開閉用チェックボックス（非表示） */
}
.header .nav-toggle-input {
  display: none;
}
.header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  /* -------------------------------------
       Brand (ロゴエリア)
    -------------------------------------- */
}
.header .header-brand {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px; /* ★追加: ロゴとテキストの隙間 */
  text-decoration: none;
  /* ★追加: ロゴ画像のサイズ調整（スマホで小さく、PCで大きく） */
}
.header .header-brand .header-logo {
  width: clamp(24px, 4.7vw, 36px);
  height: auto;
}
.header .header-brand strong {
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 900;
  letter-spacing: 0.05em;
}
@media (any-hover: hover) {
  .header .header-brand:hover {
    opacity: 0.8;
  }
}
.header {
  /* -------------------------------------
     Hamburger Menu (モバイル・タブレット用 / JS不要)
  -------------------------------------- */
}
.header .header-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
}
.header .header-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header .header-toggle {
  /* PC幅（1024px以上）でハンバーガーを非表示 */
}
@media screen and (min-width: 1024px) {
  .header .header-toggle {
    display: none;
  }
}
.header {
  /* チェックボックスON時のハンバーガーアイコンの「×」アニメーション */
}
.header .nav-toggle-input:checked ~ .container .header-toggle span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}
.header .nav-toggle-input:checked ~ .container .header-toggle span:nth-child(2) {
  opacity: 0;
}
.header .nav-toggle-input:checked ~ .container .header-toggle span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}
.header {
  /* -------------------------------------
     PC Navigation
  -------------------------------------- */
}
.header .header-nav-wrapper {
  display: none;
  /* PC幅（1024px以上）でPCナビを表示 */
}
@media screen and (min-width: 1024px) {
  .header .header-nav-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 40px);
  }
}
.header .header-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .header-nav__item {
  position: relative;
}
.header .header-nav__item a {
  color: var(--color-white);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .header .header-nav__item a:hover {
    color: var(--color-accent);
  }
}
.header .header-nav__item.has-child {
  padding-right: 14px;
}
.header .header-nav__item.has-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-white);
  pointer-events: none;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .header .header-nav__item.has-child:hover::after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: var(--color-accent);
  }
  .header .header-nav__item.has-child:hover .header-nav__child {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.header .header-nav__child {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-header-bg);
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}
.header .header-nav__child li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  white-space: nowrap;
  color: var(--color-white);
}
@media (any-hover: hover) {
  .header .header-nav__child li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
  }
}
.header {
  /* -------------------------------------
     Header CTA
  -------------------------------------- */
}
.header .header-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .header-phone-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  line-height: 1.3;
}
.header .header-phone-group .header-phone-note {
  font-size: clamp(11px, 2.5vw, 13px);
  color: var(--color-bg);
  font-weight: 500;
  margin: 0;
}
.header .header-phone-group .header-phone {
  color: var(--color-accent);
  text-decoration: none;
  font-family: var(--ff-en);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0;
}
.header .header-phone-group .header-phone svg {
  width: clamp(20px, 2.3vw, 32px);
  height: clamp(20px, 2.3vw, 32px);
  right: -5px;
  bottom: 2px;
  position: relative;
  flex-shrink: 0;
}
.header .header-phone-group .header-phone strong {
  /* 電話番号を少し大きく調整 */
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}
@media (any-hover: hover) {
  .header .header-phone-group .header-phone:hover {
    opacity: 0.8;
  }
}
.header .header-button {
  /* 左上がハイライトになる斜めのグラデーション */
  background: linear-gradient(135deg, #ff6b6b 0%, #D32F2F 40%, #B71C1C 100%);
  color: var(--color-white);
  padding: 12px 24px;
  font-weight: 900;
  font-size: clamp(14px, 3.5vw, 15px);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (any-hover: hover) {
  .header .header-button:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
}
.header {
  /* =========================================================
    Drawer Navigation (Mobile / Tablet Only)
  ========================================================= */
}
.header .drawer-nav {
  position: fixed;
  top: 53px;
  right: -100%;
  left: auto;
  width: 100%;
  max-width: 400px;
  height: calc(100vh - 60px);
  /* ドロワーは重なりを表現するため、明るい secondary を使用 */
  background-color: var(--color-secondary);
  padding: 32px 24px 100px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 999;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  /* PC幅（1024px以上）でドロワーを非表示 */
}
@media screen and (min-width: 1024px) {
  .header .drawer-nav {
    display: none;
  }
}
.header .drawer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.header .drawer-nav__list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}
.header .drawer-nav__list > li > a {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  display: block;
  text-decoration: none;
}
.header .drawer-nav__child {
  margin-top: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header .drawer-nav__child li {
  border: none;
  padding: 0;
}
.header .drawer-nav__child li a {
  font-size: 15px;
  color: var(--color-bg);
  text-decoration: none;
  display: block;
  padding: 4px 0;
}
.header {
  /* チェックボックスON時のドロワー表示 */
}
.header .nav-toggle-input:checked ~ .drawer-nav {
  right: 0;
}

/* =========================================================
  _footer.scss (Mobile First & Accessibility Fixed)
========================================================= */
.footer {
  border-top: 4px solid var(--color-primary);
  /* =========================================================
      Before After Section
  ========================================================= */
}
.footer .before-after-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: #fff;
  position: relative;
  overflow: hidden; /* はみ出しを許容 */
  /* 背景装飾用コンテナ */
}
.footer .before-after-section::before, .footer .before-after-section::after {
  content: "";
  position: absolute;
  background-color: #f7f3d7; /* クリーム色 */
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.footer .before-after-section {
  /* 画面左上：巨大な円 */
}
.footer .before-after-section::before {
  width: clamp(500px, 80vw, 800px);
  height: clamp(500px, 80vw, 800px);
  top: -10%;
  left: -10%;
  opacity: 0.5;
}
.footer .before-after-section {
  /* 画面右下：少し小さい円 */
}
.footer .before-after-section::after {
  width: clamp(400px, 60vw, 600px);
  height: clamp(400px, 60vw, 600px);
  bottom: 5%;
  right: -15%;
  opacity: 0.3;
}
.footer .before-after-section {
  /* 追加の背景装飾：画面中央左寄り */
}
.footer .before-after-section .before-after-list::before {
  content: "";
  position: absolute;
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background-color: #f7f3d7;
  border-radius: 50%;
  top: 30%;
  left: 25%;
  opacity: 0.4;
  z-index: 0;
}
.footer .before-after-section .before-after-title {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  font-size: clamp(24px, 6vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  color: #fcce00; /* 明るい黄色 */
  -webkit-text-stroke: 9px #000;
  text-stroke: 9px #000;
  paint-order: stroke fill;
  position: relative;
  z-index: 5;
}
.footer .before-after-section .before-after-title::after {
  content: "";
  display: grid;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 1.2em;
  transform: rotate(1deg);
  position: absolute;
  top: -0.5em;
  z-index: 2;
}
.footer .before-after-section .before-after-list {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 8vw, 80px);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer .before-after-section .ba-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.footer .before-after-section .ba-image {
  margin: 0 0 20px 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.footer .before-after-section .ba-image img {
  width: 100%;
  height: auto;
  display: block;
}
.footer .before-after-section .ba-text {
  position: relative;
  z-index: 4;
  text-align: center;
  font-size: clamp(18px, 5.5vw, 32px);
  font-weight: 900;
  color: #e60012;
  line-height: 1.4;
  margin: 0;
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff; /* 将来の標準プロパティ対応 */
  paint-order: stroke fill;
  /* 親要素や前後の要素との重なりを防ぐための保険的指定 */
  z-index: 1;
  filter: drop-shadow(0 0 4px rgba(230, 0, 18, 0.4));
}
.footer .before-after-section .before-after-catch {
  text-align: center;
  margin-top: clamp(40px, 6vw, 60px);
  font-size: clamp(18px, 5vw, 30px);
  font-weight: 900;
  color: #111;
  line-height: 1.5;
  -webkit-text-stroke: 5px #fff;
  text-stroke: 5px #fff; /* 将来の標準プロパティ対応 */
  paint-order: stroke fill;
  /* 親要素や前後の要素との重なりを防ぐための保険的指定 */
  z-index: 1;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 5;
}
.footer {
  /* =========================================================
    cm-price Section
  ========================================================= */
}
.footer .cm-price {
  background: #fdfbf7 url("../images/footer-price-bg_sp.webp") no-repeat center/cover;
  padding: clamp(60px, 8vw, 80px) 15px;
}
@media screen and (min-width: 1024px) {
  .footer .cm-price {
    background: #fdfbf7 url("../images/footer-price-bg_pc.webp") no-repeat center/cover;
  }
}
.footer .cm-price .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .cm-price .title {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 40px);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer .cm-price .title {
    font-size: 44px;
  }
}
.footer .cm-price .title .en {
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: var(--ff-en);
  font-size: clamp(12px, 2.5vw, 16px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  transform: rotate(-15deg);
}
@media screen and (min-width: 768px) {
  .footer .cm-price .title .en {
    font-size: 21px;
  }
}
.footer .cm-price .title .jp {
  display: block;
  font-weight: 900;
  color: #111;
  line-height: 1.5;
  text-shadow: none;
}
.footer .cm-price .overview {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.8;
  color: #111;
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .footer .cm-price .overview {
    font-size: 21px;
  }
}
.footer .cm-price .flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.footer .cm-price .col {
  background: #fff;
  border: 2px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  padding: 0;
  color: #111;
}
.footer .cm-price .price-title {
  background: var(--color-primary);
  color: #fff;
  padding: 16px;
  margin: 0;
  font-size: clamp(18px, 4vw, 22px);
  text-align: center;
}
.footer .cm-price img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.footer .cm-price .txt {
  font-size: clamp(13px, 3vw, 16px);
  padding: 0 15px;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #111;
}
.footer .cm-price .bottom-box {
  margin-top: auto;
  padding: 0 15px 15px;
}
.footer .cm-price .dl-box {
  margin-bottom: 20px;
}
.footer .cm-price .dl-box dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  padding: 5px 0;
}
.footer .cm-price .dl-box dl dt {
  background: var(--color-success);
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 900;
  border-radius: 4px;
}
.footer .cm-price .dl-box dl dd {
  font-weight: 900;
  color: #111;
}
.footer .cm-price .num {
  font-size: 2.2em;
  font-family: var(--ff-en);
  margin-right: 4px;
  color: #111;
}
.footer .cm-price .cm-button-square a {
  display: block;
  padding: 15px;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer .cm-price .cm-button-square a:hover {
  filter: brightness(1.2) saturate(1.2);
}
.footer {
  /* =========================================================
    banner-section
  ========================================================= */
}
.footer .banner-section {
  position: relative;
  background: #f4f4f4 url("../images/footer-banner-bg_sp.webp") no-repeat center/cover;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .footer .banner-section {
    background: #f4f4f4 url("../images/footer-banner-bg_pc.webp") no-repeat center/cover;
  }
}
.footer .banner-section .inner {
  position: relative;
  margin: 0 auto;
  /* モバイル時：テキスト領域とイラスト領域の高さを確保 */
  min-height: 280px;
  padding: 30px 15px 140px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .footer .banner-section .inner {
    min-height: 220px;
    padding: 40px 15px;
    align-items: center;
  }
}
@media screen and (min-width: 1281px) {
  .footer .banner-section .inner {
    max-width: unset;
  }
}
.footer .banner-section .banner-illust {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(140px, 40vw, 220px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  /* タップの妨げにならないように */
}
@media screen and (min-width: 768px) {
  .footer .banner-section .banner-illust {
    left: -20px;
    bottom: 0;
    transform: none;
    width: auto;
    max-height: 160px;
  }
}
@media screen and (min-width: 1024px) {
  .footer .banner-section .banner-illust {
    max-height: 200px;
  }
}
.footer .banner-section .banner-staff {
  position: absolute;
  top: 0;
  right: -5%;
  width: auto;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .footer .banner-section .banner-staff {
    top: auto;
    bottom: 0;
    right: -20px;
    opacity: 1;
    /* PC時は透過させない */
    width: auto;
  }
}
.footer .banner-section .text-box {
  position: relative;
  z-index: 3;
  /* 画像より前面に配置して視認性を確保 */
  text-align: center;
  width: 100%;
}
.footer .banner-section .text01 {
  font-size: clamp(14px, 3.5vw, 20px);
  font-weight: 900;
  color: #111;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .footer .banner-section .text01 {
    font-size: 27px;
  }
}
.footer .banner-section .text02 {
  font-size: clamp(22px, 5.5vw, 36px);
  font-weight: 900;
  color: #111;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer .banner-section .text02 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .footer .banner-section .text02 {
    font-size: 40px;
  }
}
.footer .banner-section .text02 .small {
  font-size: 0.7em;
}
.footer .banner-section .text02 .color01 {
  color: #0046FF;
  /* プロ：青色 */
}
.footer .banner-section .text02 .color02 {
  color: var(--color-primary);
  /* 無料：赤色 */
  position: relative;
}
.footer .banner-section .text02 .color02:after {
  content: "・・";
  position: absolute;
  left: 0;
  right: 0;
  top: -35px;
  margin: auto;
  font-weight: var(--fw-regular);
}
.footer .banner-section .disp-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer .banner-section .disp-sp {
    display: none;
  }
}
.footer {
  /* =========================================================
    staff-section
  ========================================================= */
}
.footer .staff-section {
  background-color: #fff;
  padding: clamp(60px, 8vw, 80px) 15px;
  overflow: hidden;
}
.footer .staff-section .inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  /* 子要素の配置基準 */
}
.footer .staff-section .title {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  position: relative;
  z-index: 2;
}
.footer .staff-section .title .txt01 {
  color: #e6004b;
  font-weight: 900;
  font-size: clamp(16px, 4vw, 22px);
  margin-bottom: 8px;
}
.footer .staff-section .title .txt01 .slash {
  display: inline-block;
  margin: 0 4px;
  transform: scale(1.2, 1);
}
.footer .staff-section .title .txt02 {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  color: #111;
  margin-bottom: 15px;
}
.footer .staff-section .title .txt02 .marker {
  background: linear-gradient(transparent 60%, #fff100 60%);
  padding: 0 4px;
}
.footer .staff-section .title .txt03 {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 900;
  color: #111;
  line-height: 1.6;
}
.footer .staff-section .disp-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .disp-sp {
    display: none;
  }
}
.footer .staff-section {
  /* 上段（資格・知識） */
}
.footer .staff-section .flex01 {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .flex01 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
  }
}
.footer .staff-section .flex01 .left {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .flex01 .left {
    width: 55%;
  }
}
.footer .staff-section .flex01 .right-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .flex01 .right-text {
    width: 45%;
    display: block;
  }
}
.footer .staff-section .flex01 .right-text p {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 900;
  color: #111;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .footer .staff-section .flex01 .right-text p {
    font-size: 27px;
  }
}
.footer .staff-section .green-box {
  border: 4px solid #d4ebd6;
  padding: clamp(15px, 4vw, 25px);
  background: #fff;
  position: relative;
  z-index: 2;
}
.footer .staff-section .green-box .box-title {
  text-align: center;
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 900;
  color: #111;
  margin-bottom: 20px;
}
.footer .staff-section .green-box .list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .green-box .list {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}
.footer .staff-section .green-box .list ul {
  flex: 1;
}
.footer .staff-section .green-box .list ul li {
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 700;
  color: #111;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 8px;
}
.footer .staff-section .illust01 {
  position: absolute;
  z-index: 0;
  width: clamp(120px, 12vw, 140px);
  top: -10px;
  left: -30px;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .illust01 {
    top: -230px;
    left: -440px;
    width: clamp(130px, 18vw, 200px);
  }
}
@media screen and (min-width: 1024px) {
  .footer .staff-section .illust01 {
    top: -240px;
    left: -52vw;
  }
}
.footer .staff-section {
  /* 下段（丁寧な対応・写真） */
}
.footer .staff-section .flex02 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .flex02 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
  }
}
.footer .staff-section .flex02 .left-text {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .flex02 .left-text {
    width: 50%;
    display: block;
  }
}
.footer .staff-section .flex02 .left-text p {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 900;
  color: #111;
  line-height: 1.8;
  text-align: left;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .footer .staff-section .flex02 .left-text p {
    font-size: 27px;
    padding-left: 1em;
  }
}
.footer .staff-section .flex02 .right {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .flex02 .right {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .footer .staff-section .flex02 .right {
    width: 75%;
  }
}
.footer .staff-section .flex02 .right .photo {
  width: 100%;
  height: auto;
}
.footer .staff-section .illust02 {
  position: absolute;
  z-index: 0;
  width: clamp(130px, 36vw, 200px);
  bottom: -40px;
  right: -20px;
}
@media screen and (min-width: 768px) {
  .footer .staff-section .illust02 {
    bottom: 120px;
    right: -440px;
    width: clamp(130px, 26vw, 220px);
  }
}
@media screen and (min-width: 1024px) {
  .footer .staff-section .illust02 {
    bottom: 280px;
    right: -67vw;
    width: clamp(150px, 21vw, 270px);
  }
}
@media screen and (min-width: 1280px) {
  .footer .staff-section .illust02 {
    bottom: 310px;
    right: -62vw;
  }
}
@media screen and (min-width: 1281px) {
  .footer .staff-section .illust02 {
    right: -840px;
  }
}
.footer .staff-section {
  /* 会社概要ボタン */
}
.footer .staff-section .cm-button-round.type02 {
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer .staff-section .cm-button-round.type02 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #537a5d;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 900;
  font-size: clamp(18px, 4.5vw, 22px);
  text-decoration: none;
  max-width: 400px;
  width: 100%;
  position: relative;
}
.footer .staff-section .cm-button-round.type02 a:hover {
  filter: brightness(1.2) saturate(1.2);
}
.footer .staff-section .cm-button-round.type02 a svg {
  position: absolute;
  right: 20px;
  width: 24px;
  fill: #ffffff;
}
.footer {
  /* =========================================================
    CTA Section
  ========================================================= */
}
.footer .cta-section {
  background-color: var(--color-primary);
  padding: clamp(40px, 6vw, 60px) 15px;
  color: #fff;
  text-align: center;
}
.footer .cta-section .cta-catch {
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.4;
}
.footer .cta-section .cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer .cta-section .cta-wrapper {
    gap: 30px;
  }
}
.footer .cta-section {
  /* 電話アイコンのサイズ調整 */
}
.footer .cta-section .cta-tel__number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  font-family: var(--ff-ttl);
  line-height: 1;
}
.footer .cta-section .cta-tel__number svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  position: relative;
  bottom: -0.15em;
}
.footer .cta-section .cta-tel__hours {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 700;
  margin-top: 12px;
}
.footer .cta-section .cta-tel__note {
  font-size: clamp(11px, 2.5vw, 14px);
  margin-top: 4px;
  opacity: 0.8;
}
.footer .cta-section .cta-mail__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  color: var(--color-primary);
  padding: clamp(16px, 3vw, 24px) clamp(24px, 4vw, 40px);
  border-radius: 8px;
  font-size: clamp(16px, 3.5vw, 22px);
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.3s;
  /* メールアイコンを1.5倍(60px)に拡大し、潰れないように固定 */
}
.footer .cta-section .cta-mail__link svg {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  stroke: unset;
  fill: var(--color-primary);
}
.footer .cta-section .cta-mail__link:hover {
  opacity: 0.9;
}
.footer {
  /* =========================================================
    Works Section & Works Card Component
  ========================================================= */
}
.footer .works-section {
  /* 背景にテクスチャ画像がある場合はここに追加 */
  background: url(../images/work_bg_sp.webp) center top repeat;
  padding: clamp(60px, 8vw, 100px) 0 200px;
}
@media screen and (min-width: 768px) {
  .footer .works-section {
    background: url(../images/work_bg_pc.webp) center top repeat;
    padding-bottom: 250px;
  }
}
.footer .works-section .works-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.footer .works-section .works-header__title {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}
.footer .works-section .works-header__title .en {
  position: absolute;
  top: -20px;
  left: -30px;
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 900;
  color: #EA4444;
  font-family: var(--ff-en);
  transform: rotate(-15deg);
}
@media screen and (min-width: 768px) {
  .footer .works-section .works-header__title .en {
    font-size: 21px;
  }
}
.footer .works-section .works-header__title .jp {
  display: block;
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 900;
  color: #333;
  line-height: 1.4;
}
.footer .works-section .works-header__title .jp span {
  font-size: 1.8em;
  color: var(--color-primary);
  font-family: var(--ff-en);
  margin: 0 4px;
  line-height: 1;
}
.footer .works-section .works-header__img {
  width: clamp(220px, 80vw, 650px);
  margin: 0 auto 30px;
}
.footer .works-section .works-header__catch {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 900;
  color: #111;
  margin-bottom: 24px;
  line-height: 1.5;
}
.footer .works-section .works-header__overview {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  color: var(--color-text);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .footer .works-section .works-header__overview {
    text-align: center;
  }
}
.footer .works-section {
  /* 施工実績グリッド */
}
.footer .works-section .works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(40px, 8vw, 60px);
}
@media screen and (min-width: 768px) {
  .footer .works-section .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .footer .works-section .works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.footer .works-section {
  /* 下部CTA */
}
.footer .works-section .works-bottom {
  text-align: center;
}
.footer .works-section .works-bottom__text {
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 900;
  color: #111;
  line-height: 1.6;
  margin-bottom: 30px;
}
.footer .works-section {
  /* 共通ボタンスタイル（赤・丸型） */
}
.footer .works-section .cm-button-round.type-red a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 900;
  font-size: clamp(18px, 4.5vw, 24px);
  text-decoration: none;
  width: 100%;
  max-width: 480px;
  position: relative;
  transition: filter 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.footer .works-section .cm-button-round.type-red a:hover {
  filter: brightness(1.2) saturate(1.2);
}
.footer .works-section .cm-button-round.type-red a svg {
  position: absolute;
  right: 20px;
  width: 24px;
  height: 24px;
  fill: #fff;
}
.footer {
  /* =========================================================
    Works Card (汎用コンポーネント)
  ========================================================= */
}
.footer .works-card {
  background: #fff;
  display: flex;
  flex-direction: column;
}
.footer .works-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* ホバー・アクティブ時のボタン色反転 */
}
@media (any-hover: hover) {
  .footer .works-card__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }
  .footer .works-card__link:hover .works-card__btn {
    background-color: #fff;
    color: #537a5d;
  }
}
.footer .works-card__link:active .works-card__btn {
  background-color: #fff;
  color: #537a5d;
}
.footer .works-card__head {
  background-color: #537a5d;
  position: relative;
  padding: 35px 15px 10px;
  display: flex;
  justify-content: flex-end;
}
.footer .works-card__cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #333;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.footer .works-card__title {
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  margin: 0;
}
.footer .works-card__img {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-gray-200);
}
.footer .works-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .works-card__btn {
  background-color: #537a5d;
  color: #fff;
  text-align: center;
  /* ボーダーの1px分を考慮してpaddingを微調整 */
  padding: 15px;
  font-size: 15px;
  font-weight: 900;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #537a5d;
  /* 反転時の枠線を担保 */
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer .works-card__btn .arrow {
  font-size: 0.8em;
}
.footer {
  /* =========================================================
    Apology Section (お詫び・キャンペーン)
  ========================================================= */
}
.footer .apology-section {
  background-color: transparent;
  position: relative;
  z-index: 2;
  /* アイキャッチ画像エリア */
}
.footer .apology-section .apology-header {
  width: 100%;
  margin-top: -150px;
}
.footer .apology-section .apology-header img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  /* 画像下の余白を消す */
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .apology-section {
  /* コンテンツエリア */
}
.footer .apology-section .apology-body {
  padding: clamp(40px, 8vw, 80px) 0 120px;
  /* 家のシルエット背景 */
  background: url("../images/footer_apology_bg.webp") repeat-x center bottom/auto 100px;
}
@media screen and (min-width: 768px) {
  .footer .apology-section .apology-body {
    background: url("../images/footer_apology_bg@2x.webp") repeat-x center bottom/auto 100px;
    background-size: auto 150px;
    padding: clamp(60px, 8vw, 100px) 0 150px;
  }
}
.footer .apology-section {
  /* 各ブロック（テキスト＋画像）のレイアウト */
}
.footer .apology-section .apology-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.footer .apology-section .apology-block:last-child {
  margin-bottom: 0;
}
.footer .apology-section .apology-block {
  /* PC時は横並び（左テキスト、右画像） */
}
@media screen and (min-width: 1024px) {
  .footer .apology-section .apology-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
}
.footer .apology-section .apology-block {
  /* テキストエリア */
}
.footer .apology-section .apology-block__text {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .footer .apology-section .apology-block__text {
    width: 55%;
  }
}
.footer .apology-section .apology-block__text p {
  font-size: clamp(15px, 3.8vw, 18px);
  line-height: 1.8;
  margin-bottom: 1.5em;
  color: var(--color-text);
}
.footer .apology-section .apology-block__text p:last-child {
  margin-bottom: 0;
}
.footer .apology-section .apology-block__text p {
  /* 協調テキスト（赤・太字） */
}
.footer .apology-section .apology-block__text p strong,
.footer .apology-section .apology-block__text p .red {
  color: var(--color-primary);
  font-weight: 900;
}
.footer .apology-section .apology-block {
  /* 画像エリア */
}
.footer .apology-section .apology-block__img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer .apology-section .apology-block__img {
    width: 40%;
    margin: 0;
  }
}
.footer .apology-section .apology-block__img img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  /* 少し影をつけて画像をなじませる */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}
.footer {
  /* =========================================================
    Information Section (お知らせ)
  ========================================================= */
}
.footer .information-section {
  padding: clamp(60px, 8vw, 100px) 0;
  /* 背景画像（青空と家） */
  background: #eef7f9 url("../images/top-info-bg_sp.webp") no-repeat center bottom/cover;
}
@media screen and (min-width: 768px) {
  .footer .information-section {
    background: #eef7f9 url("../images/top-info-bg_pc.webp") no-repeat center bottom/cover;
    padding: 80px 0 120px;
  }
}
.footer .information-section .information-title {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  color: #111;
}
.footer .information-section .information-title .en {
  display: block;
  font-size: clamp(16px, 4vw, 21px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .footer .information-section .information-title .en {
    font-size: 21px;
  }
}
.footer .information-section .information-title .jp {
  display: block;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.footer .information-section .information-list {
  max-width: 800px;
  /* PC・タブレットで広がりすぎないように制限 */
  margin: 0 auto clamp(40px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .information-section .information-item {
  background: #fff;
  border: 1px solid #537A5D;
  display: flex;
  align-items: stretch;
  position: relative;
  /* 右下の三角アクセント（CSSで描画） */
}
.footer .information-section .information-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #537A5D transparent;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .footer .information-section .information-item::after {
    border-width: 0 0 32px 32px;
  }
}
.footer .information-section .information-item .thumb {
  width: clamp(110px, 28vw, 160px);
  flex-shrink: 0;
  padding: clamp(10px, 2vw, 15px);
}
.footer .information-section .information-item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
}
.footer .information-section .information-item .meta-box {
  padding: clamp(12px, 3vw, 24px) 15px clamp(12px, 3vw, 24px) 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer .information-section .information-item .meta-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .footer .information-section .information-item .meta-top {
    margin-bottom: 12px;
    gap: 8px;
  }
}
.footer .information-section .information-item .date {
  font-size: clamp(12px, 3vw, 14px);
  color: var(--color-text);
  font-family: var(--ff-en);
  line-height: 1;
}
.footer .information-section .information-item .cat {
  display: inline-block;
  background: #537A5D;
  color: #fff;
  font-size: clamp(11px, 2.5vw, 13px);
  font-weight: 700;
  padding: 4px 12px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .footer .information-section .information-item .cat:hover {
    opacity: 0.8;
  }
}
.footer .information-section .information-item .post-title {
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 700;
  color: #111;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .footer .information-section .information-item .post-title:hover {
    color: #537A5D;
  }
}
.footer .information-section {
  /* お知らせ一覧ボタン */
}
.footer .information-section .information-btn {
  text-align: center;
}
.footer .information-section .information-btn .btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #537A5D;
  color: #fff;
  font-weight: 900;
  font-size: clamp(16px, 4vw, 20px);
  padding: 18px 40px;
  border-radius: 50px;
  width: 100%;
  max-width: 480px;
  text-decoration: none;
  position: relative;
  transition: filter 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (any-hover: hover) {
  .footer .information-section .information-btn .btn-green:hover {
    filter: brightness(1.15);
  }
}
.footer .information-section .information-btn .btn-green svg {
  position: absolute;
  right: 24px;
  width: 24px;
  height: 24px;
  fill: #fff;
}
.footer {
  /* =========================================================
       Menu Section (フッターメニュー)
    ========================================================= */
}
.footer .menu-section {
  background-color: var(--color-secondary);
  padding: clamp(40px, 8vw, 60px) 0;
}
.footer .menu-section .footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* SP時は2列 */
  gap: 24px 16px;
  align-items: start; /* カラムの高さを揃えず上詰めにする */
}
@media screen and (min-width: 1024px) {
  .footer .menu-section .footer-nav {
    /* PC時は横一列に均等配置 */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 40px;
  }
}
.footer .menu-section .footer-nav__col {
  display: flex;
  flex-direction: column;
  gap: 24px; /* SP時の各メニュー項目の縦の隙間 */
}
@media screen and (min-width: 1024px) {
  .footer .menu-section .footer-nav__col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px 40px;
  }
}
.footer .menu-section .footer-nav__col > li {
  font-size: clamp(14px, 3.5vw, 15px);
}
.footer .menu-section .footer-nav__col > li > a,
.footer .menu-section .footer-nav__col > li > .nav-title {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  display: block;
  margin-bottom: 0;
  transition: color 0.3s;
}
.footer .menu-section .footer-nav__col > li > .nav-title {
  margin-bottom: 12px; /* サブメニューとの間隔 */
  cursor: default;
}
.footer .menu-section .footer-nav__col > li > a:hover {
  color: var(--color-primary);
}
.footer .menu-section .footer-nav__col > li {
  /* サブメニュー */
}
.footer .menu-section .footer-nav__col > li ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .menu-section .footer-nav__col > li ul li a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-border);
  margin-bottom: 0;
  display: block;
}
.footer .menu-section .footer-nav__col > li ul li a:hover {
  color: var(--color-primary);
}
.footer .menu-section .footer-privacy {
  text-align: center;
  margin-top: clamp(40px, 8vw, 60px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .menu-section .footer-privacy a {
  color: var(--color-border);
  font-size: 13px;
  text-decoration: none;
}
@media (any-hover: hover) {
  .footer .menu-section .footer-privacy a:hover {
    color: var(--color-white);
    text-decoration: underline;
  }
}
.footer {
  /* =========================================================
     Copy Section
  ========================================================= */
}
.footer .copy-section {
  background-color: var(--color-header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* SP時は固定CTA(約130px)が被らないように下部に大きなパディングを自動確保 */
  padding: 24px 0 154px;
  text-align: center;
  font-size: 12px;
  color: var(--color-border);
}
@media screen and (min-width: 768px) {
  .footer .copy-section {
    padding: 24px 0;
  }
}
.footer .copy-section p {
  margin: 0;
  letter-spacing: 0.05em;
}

/* =========================================================
     Copy Section
  ========================================================= */
.copy-section {
  background-color: var(--color-header-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  /* 全デバイスで固定CTAが被らないように下部に大きなパディングを確保 */
  padding: 24px 0 184px;
  text-align: center;
  font-size: 12px;
  color: var(--color-border);
}
@media screen and (min-width: 768px) {
  .copy-section {
    padding: 24px 0 124px;
  }
}
.copy-section p {
  margin: 0;
  letter-spacing: 0.05em;
}

/* =========================================================
  Fixed CTA Bar (全デバイス対応)
========================================================= */
.fixed-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 990;
  /* バナーエリアの背景*/
  background-color: #111111;
  padding: 8px 10px;
}
.fixed-cta-bar__inner {
  display: flex;
  flex-direction: column; /* タブレットまでは上下2段で余裕を持たせる */
  gap: 8px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .fixed-cta-bar__inner {
    flex-direction: row; /* PCサイズ（lg以上）でのみ横並びにする */
    justify-content: center;
    gap: 15px;
  }
}
.fixed-cta-bar .cta-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3); /* 上部の微かなハイライト */
  transition: filter 0.2s ease;
}
@media (any-hover: hover) {
  .fixed-cta-bar .cta-box:hover {
    filter: brightness(1.1);
  }
}
.fixed-cta-bar .cta-box:active {
  filter: brightness(0.9);
}
.fixed-cta-bar .cta-box .cta-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  fill: var(--color-white) !important;
  stroke: transparent !important;
  margin-right: 4px;
}
@media screen and (min-width: 768px) {
  .fixed-cta-bar .cta-box .cta-icon {
    width: 36px;
    height: 36px;
  }
}
.fixed-cta-bar .cta-box {
  /* 電話ボタン（上段/左側・オレンジ系） */
}
.fixed-cta-bar .cta-box--phone {
  background: linear-gradient(to bottom, #e65100 0%, #bf360c 100%);
  color: var(--color-white);
  padding: 6px 10px;
  justify-content: center;
  gap: 10px;
}
.fixed-cta-bar .cta-box--phone .cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.2;
}
.fixed-cta-bar .cta-box--phone .cta-content__top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 2px;
}
.fixed-cta-bar .cta-box--phone .cta-content__top small {
  font-size: 10px;
  font-weight: 500;
}
.fixed-cta-bar .cta-box--phone .cta-content__bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fixed-cta-bar .cta-box--phone .cta-content__bottom small {
  font-size: 9px;
  font-weight: 500;
}
.fixed-cta-bar .cta-box--phone .cta-content__bottom strong {
  font-family: var(--ff-en);
  font-size: clamp(17px, 4.5vw, 26px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.fixed-cta-bar .cta-box {
  /* Web見積りボタン（下段/右側・緑系） */
}
.fixed-cta-bar .cta-box--web {
  background: linear-gradient(to bottom, #558b2f 0%, #33691e 100%);
  color: var(--color-white);
  padding: 12px 10px;
}
.fixed-cta-bar .cta-box--web strong {
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: visible;
}

main {
  flex-grow: 1;
  padding: 0;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
}

section {
  position: relative;
}

.container {
  position: relative;
  z-index: 1;
  /*#parallax (z-index: 0) より上に表示 */
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .container {
    width: min(100%, 1200px);
    margin-inline: auto;
    padding-inline: 30px;
  }
}/*# sourceMappingURL=style.css.map */