@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: Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  --ff-ttl: Murecho, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  --ff-en: Helvetica Neue, Helvetica, Arial, sans-serif;
  --ff-serif: serif;
  --color-primary: #5514d4;
  --color-secondary: #003d9e;
  --color-accent: #fa6c00;
  --color-info: #fff4ba;
  --color-success: #198754;
  --color-link: #fa6c00;
  --color-bg: #ffffff;
  --color-text: #4c4c4c;
  --color-border: #e5e7eb;
  --color-red1: #ff001a;
  --color-darkred1: #bf001a;
  --color-blue: #0046FF;
  --color-orng: #fa6c00;
  --color-ylw: #ffcb2b;
  --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: rgba(85, 20, 212, 0.9);
  --color-header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --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(10px, 3.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.5;
  --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: 50px;
  --header-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  --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);
  --header-gradient: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
  --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;
  background-color: var(--color-bg);
  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;
}

a[href^="tel:"] {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
  }
}

.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: #5514d4 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-text {
  color: #4c4c4c !important;
}

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

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

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

.border-border {
  border-color: #e5e7eb !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: #0046FF !important;
}

.text-blue {
  color: #0046FF !important;
}

.border-blue {
  border-color: #0046FF !important;
}

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

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

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

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

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

.border-ylw {
  border-color: #ffcb2b !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: rgba(85, 20, 212, 0.9) !important;
}

.text-header-bg {
  color: rgba(85, 20, 212, 0.9) !important;
}

.border-header-bg {
  border-color: rgba(85, 20, 212, 0.9) !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-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: #5514d4;
  border-color: #5514d4;
  color: white;
}
.btn-primary:hover {
  filter: brightness(0.9);
  background-color: rgb(66.3146551724, 15.6034482759, 165.3965517241);
  border-color: rgb(66.3146551724, 15.6034482759, 165.3965517241);
}
.btn-primary:active {
  filter: brightness(0.85);
  background-color: rgb(56.9719827586, 13.4051724138, 142.0948275862);
}

.btn-secondary {
  background-color: #003d9e;
  border-color: #003d9e;
  color: white;
}
.btn-secondary:hover {
  filter: brightness(0.9);
  background-color: rgb(0, 41.3101265823, 107);
  border-color: rgb(0, 41.3101265823, 107);
}
.btn-secondary:active {
  filter: brightness(0.85);
  background-color: rgb(0, 31.4651898734, 81.5);
}

.btn-accent {
  background-color: #fa6c00;
  border-color: #fa6c00;
  color: white;
}
.btn-accent:hover {
  filter: brightness(0.9);
  background-color: rgb(199, 85.968, 0);
  border-color: rgb(199, 85.968, 0);
}
.btn-accent:active {
  filter: brightness(0.85);
  background-color: rgb(173.5, 74.952, 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: 1140px;
  }
}
.d-flex {
  display: flex !important;
}

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

.d-block {
  display: block !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;
}

.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: 75px;
  font-size: 14px;
}
body.admin-bar .header {
  top: 46px;
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 105px;
  }
  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: min(40vw, 8em);
  height: 5px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--color-ylw);
}

/* 共通セクション余白 */
.home-line,
.home-electrymenu,
.home-review,
.work,
.inc-strong,
.inc-constructionmenu,
.inc-qanda,
.inc-contact,
.inc-area,
.inc-maker,
.money-electrymenu,
.money-construction,
.menu-block,
.menu-construction,
.company-greeting,
.company-detail,
.contact-container,
.contact-privacy,
.privacy-container,
.work-block {
  padding: 38px 0;
}
@media screen and (min-width: 768px) {
  .home-line,
  .home-electrymenu,
  .home-review,
  .work,
  .inc-strong,
  .inc-constructionmenu,
  .inc-qanda,
  .inc-contact,
  .inc-area,
  .inc-maker,
  .money-electrymenu,
  .money-construction,
  .menu-block,
  .menu-construction,
  .company-greeting,
  .company-detail,
  .contact-container,
  .contact-privacy,
  .privacy-container,
  .work-block {
    padding: 56px 0;
  }
}

.inc-area {
  padding-bottom: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .inc-area {
    padding-bottom: 24px;
  }
}
.inc-area-text {
  max-width: 820px;
  margin: 0 auto;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  white-space: pre-line;
}
.inc-area .service-area picture {
  display: block;
  margin: 0 auto 1em;
  border-radius: 5px;
  overflow: hidden;
}
.inc-area .service-area .area-text {
  border: solid 2px rgb(208.1120689655, 187.3793103448, 248.6206896552);
  border-radius: 0.5em;
  padding: 15px;
}
.inc-area .service-area .area-text p {
  color: var(--color-primary);
  font-size: clamp(14px, 3.7vw, 16px);
  line-height: 1.35;
  text-wrap: pretty;
  text-align: left;
}
.inc-area .service-area .area-text p strong {
  font-weight: 900;
  display: block;
  width: 100%;
}
.inc-area {
  /* .map {//google
      width: 100%;
      height: 350px; // モバイル時の高さを画面に収まりやすく調整
      overflow: hidden; // 角丸からはみ出るのを防ぐ
      border-radius: 6px; // デザインに合わせて角を少し丸めます（不要なら削除）
      @include mq(md) {
        height: 600px; // PC（タブレット以上）では元の高さに
      }
      iframe {
        width: 100% !important;
        height: 100% !important;
        display: block;
      }
    }
  */
}

.inc-maker {
  padding-top: 18px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .inc-maker {
    padding-top: 24px;
  }
}
.inc-maker picture {
  display: block;
  max-width: 820px;
  margin: 0 auto;
}
.inc-maker picture img {
  width: 100%;
  margin: 0 auto;
}
.inc-maker p {
  margin: -12px 0 24px;
  color: var(--color-red1);
  font-size: 20px;
  font-weight: 900;
}

.inner-header {
  padding: 32px 0 26px;
  text-align: center;
}
.inner-header h1 {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .inner-header {
    padding: 44px 0 34px;
  }
  .inner-header h1 {
    font-size: 38px;
  }
}
.inner-header-green {
  margin-top: 12px;
  color: var(--color-red1);
  font-size: 22px;
  font-weight: 900;
}
.inner-header-text {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
}

/* 共通グリッド */
.inner-header-list,
.home-electrymenu-list,
.money-electrymenu-list,
.home-review-list,
.work-list,
.work-block-list,
.inc-strong-list,
.inc-constructionmenu-list,
.menu-block-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .work-list,
  .work-block-list,
  .inc-constructionmenu-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media screen and (min-width: 768px) {
  .inner-header-list,
  .inc-strong-list,
  .menu-block-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* その他の共通コンポーネント */
.line-bg {
  position: relative;
}

.line-btn {
  width: 82%;
  margin: -54px auto 0;
}
@media screen and (min-width: 576px) {
  .line-btn {
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: 48%;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .line-btn {
    width: 35%;
    bottom: 13%;
  }
}

/* Contact / Forms */
.contact-container,
.contact-privacy,
.privacy-container {
  max-width: 860px;
}

.contact-privacy {
  background: #fff;
  background-image: none;
}

.contact-form,
.contact-block,
.contact-privacy-block,
.privacy-block {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .contact-form,
  .contact-block,
  .contact-privacy-block,
  .privacy-block {
    padding: 28px;
  }
}

.wpcf7 table, .wpcf7 tbody, .wpcf7 tr, .wpcf7 th, .wpcf7 td {
  display: block;
  width: 100%;
}
.wpcf7 th {
  padding: 12px 0 6px;
  text-align: left;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .wpcf7 table, .wpcf7 tbody, .wpcf7 tr, .wpcf7 th, .wpcf7 td {
    display: table-cell;
    width: auto;
  }
  .wpcf7 table {
    width: 100%;
    display: table;
  }
  .wpcf7 th {
    width: 170px;
    padding-right: 20px;
    text-align: center;
    vertical-align: middle;
  }
  .wpcf7 td {
    padding: 3px 0;
    vertical-align: middle;
  }
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  background: #fff;
}
.wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}
.wpcf7 input[type=submit] {
  display: inline-grid;
  min-width: 260px;
  min-height: 56px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  background: var(--color-red1);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.wpcf7-form {
  display: grid;
  gap: 18px;
}
.wpcf7-form p {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.cta-btn,
.link-btn {
  margin-top: 40px;
  text-align: center;
}
.cta-btn a,
.link-btn a {
  color: #fff;
  display: block;
  width: 80vw;
  max-width: 800px;
  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 6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .cta-btn a,
  .link-btn a {
    font-size: 36px;
  }
}
.cta-btn a::after,
.link-btn a::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 {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .cta-btn a:hover,
  .link-btn a:hover {
    transform: translateY(1px);
    filter: brightness(1.08);
  }
  .cta-btn a:hover::after,
  .link-btn a:hover::after {
    transform: translateY(-50%) translateX(2px);
  }
}

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

.inview, .fadeIn {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.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);
  }
}

.work-minititle {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 10px;
  margin-bottom: 0;
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  font-size: clamp(14px, 3.5vw, 16px);
}
.work-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .work-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.work-list__item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}
.work-list__item-text {
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
}
.work-list__media {
  display: block;
  width: 100%;
  aspect-ratio: 230/150;
  background: #f2f2f2;
  overflow: hidden;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
}
.work-list__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work-list__media::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21 21-4.34-4.34'/%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M11 8v6'/%3E%3Cpath d='M8 11h6'/%3E%3C/svg%3E") center/22px 22px no-repeat;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
}
.work-btn {
  margin-top: 32px;
  text-align: center;
}
.work-btn a {
  display: inline-grid;
  place-items: center;
  min-width: 260px;
  min-height: 56px;
  padding: 12px 28px;
  border-radius: 4px;
  background: var(--color-red1);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}

.inc-constructionmenu {
  background-color: #f5f7ff;
}

.inc-qanda {
  background-color: var(--color-info);
  background-image: linear-gradient(0deg, transparent 9px, #f2f2f2 10px), linear-gradient(90deg, transparent 9px, #f2f2f2 10px);
  background-size: 10px 10px;
}

.inc-strong {
  background: var(--color-primary);
  color: #fff;
}
.inc-strong-title {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .inc-strong-title {
    font-size: 32px;
  }
}
.inc-strong-text {
  margin-bottom: 28px;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
}
.inc-strong-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .inc-strong-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.inc-strong-list__item-block {
  background: #fff;
  color: var(--color-text);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.inc-strong-list__item h3 {
  background: var(--color-ylw);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  padding: 14px;
}
.inc-strong-list__item picture {
  width: 100%;
  aspect-ratio: 4/3;
}
.inc-strong-list__item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inc-strong-list__item p {
  padding: 16px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.inc-constructionmenu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 431px) {
  .inc-constructionmenu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .inc-constructionmenu-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.inc-constructionmenu-list__item {
  position: relative;
  border-radius: 6px;
  background: #000;
  overflow: hidden;
}
.inc-constructionmenu-list__item picture {
  display: block;
  aspect-ratio: 1/1;
}
.inc-constructionmenu-list__item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.76;
}
.inc-constructionmenu-list__item-tit {
  position: absolute;
  left: 10px;
  bottom: 12px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}
.inc-constructionmenu-list__item-tit small {
  display: block;
  font-size: 14px;
  margin-top: 4px;
}
.inc-constructionmenu-btn {
  margin-top: 32px;
  text-align: center;
}
.inc-constructionmenu-btn a {
  display: inline-grid;
  place-items: center;
  min-width: 260px;
  min-height: 56px;
  padding: 12px 28px;
  border-radius: 4px;
  background: var(--color-red1);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}

.inc-qanda-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.inc-qanda-box dl {
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  overflow: hidden;
  margin: 0;
}
.inc-qanda-box dt, .inc-qanda-box dd {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 16px 20px;
  margin: 0;
  align-items: center;
}
.inc-qanda-box dt {
  background: var(--color-primary);
  color: #fff;
  font-weight: 900;
}
.inc-qanda-box dt span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--color-ylw);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.inc-qanda-box dt p {
  margin: 0;
  font-size: 15px;
}
.inc-qanda-box dd span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 900;
}
.inc-qanda-box dd p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.inc-contact {
  background: var(--color-ylw);
  text-align: center;
}
.inc-contact-toptext, .inc-contact-text {
  color: var(--color-primary);
  font-size: clamp(16px, 4.8vw, 22px);
  font-weight: 900;
  margin: 0 0 8px 0;
}
.inc-contact-tel {
  margin: 0 0 8px 0;
  color: var(--color-red1);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .inc-contact-tel {
    font-size: 44px;
  }
}
.inc-contact-tel span {
  position: relative;
  padding-left: 40px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .inc-contact-tel span {
    padding-left: 60px;
  }
}
.inc-contact-tel span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../images/icon-tel.svg") no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .inc-contact-tel span::before {
    width: 40px;
    height: 40px;
  }
}
.inc-contact-tel a {
  color: inherit;
  text-decoration: none;
}
.inc-contact-tel a kbd, .inc-contact-tel a span {
  color: inherit;
}
.inc-contact-detail {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 575px) {
  .inc-contact-detail span {
    font-size: 0.7em;
    display: block;
  }
}
.inc-contact-btn a {
  display: inline-grid;
  place-items: center;
  min-width: 260px;
  min-height: 56px;
  padding: 12px 28px;
  border-radius: 4px;
  background: var(--color-red1);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}

/* =========================================================
  Header (Mobile First)
========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
  background: linear-gradient(0deg, #ffcb2b 20%, rgb(255, 234.2735849057, 170.5) 90%);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
  /* SP Base */
  min-height: 48px;
  padding: 10px 4em 10px 10px;
}
@media (max-width: 374px) {
  .header {
    min-height: 18.6667vw;
    padding: 2.6667vw;
  }
}
@media screen and (min-width: 768px) {
  .header {
    min-height: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .header {
    padding: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    padding: 10px 30px;
  }
}
.header {
  /* Logo */
}
.header-logo {
  flex-basis: 120px;
  padding-left: 0;
}
.header-logo a {
  display: flex;
  align-items: center;
  margin-block: -10px;
}
.header-logo img {
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(1px 1px 3px #fff);
}
@media (max-width: 374px) {
  .header-logo {
    flex-basis: 25.3333vw;
  }
  .header-logo a {
    height: 18.6667vw;
    margin-block: -2.6667vw;
    padding-left: 2vw;
  }
  .header-logo img {
    max-height: 18.6667vw;
  }
}
@media screen and (min-width: 768px) {
  .header-logo {
    flex: 0 0 170px;
  }
  .header-logo a {
    height: 64px;
    margin-left: 10px;
  }
  .header-logo img {
    height: 64px;
  }
}
@media (min-width: 1181px) and (max-width: 1520px) {
  .header-logo {
    padding-left: 0;
  }
}
.header {
  /* PC Nav (Hidden on SP) */
}
.header-pcnav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header-pcnav {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    margin-left: auto;
    padding: 0;
  }
  .header-pcnav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 3rem;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
  }
  .header-pcnav-list a {
    display: block;
    padding: 8px 0;
    white-space: nowrap;
    color: #000;
  }
}
@media screen and (min-width: 1024px) and (any-hover: hover) {
  .header-pcnav-list a:hover {
    color: #fa6c00;
  }
}
@media screen and (min-width: 1024px) {
  .header-pcnav-list a:active {
    color: #fa6c00;
  }
}
@media screen and (min-width: 768px) {
  .header-pcnav-list {
    gap: 0 10px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .header-pcnav-list {
    gap: 0 15px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  .header-pcnav-list {
    gap: 0 18px;
    font-size: 19px;
  }
}
@media screen and (min-width: 1281px) {
  .header-pcnav-list {
    gap: 0 18px;
    font-size: 21px;
  }
}
.header {
  /* Telephone Button */
}
.header-tel {
  display: block;
  margin-left: auto;
  font-weight: 700;
  line-height: 1;
}
.header-tel a[href^="tel:"] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 175px;
  height: 50px;
  margin-right: 10px;
  padding: 0 5px;
  border: 1px solid rgb(5, 101.5189873418, 255);
  border-radius: 7px;
  background: #fff;
  color: var(--color-secondary);
}
@media (max-width: 374px) {
  .header-tel a[href^="tel:"] {
    width: 41.3333vw;
    margin-right: 2.6667vw;
    border-radius: 1.8667vw;
  }
}
@media screen and (min-width: 768px) {
  .header-tel a[href^="tel:"] {
    width: 260px;
    height: 60px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(var(--color-secondary), #0046FF);
    color: #fff;
    gap: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header-tel a[href^="tel:"] {
    width: 220px;
    height: 64px;
    margin-right: 0;
  }
}
.header-tel-note {
  color: #231815;
  font-size: 8px;
  letter-spacing: -0.05em;
  margin: 0 auto 4px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .header-tel-note {
    display: none;
  }
}
.header-tel-number {
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 2px;
}
.header-tel-number::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../images/icon-tel.svg") no-repeat center/cover;
}
@media (max-width: 374px) {
  .header-tel-number {
    font-size: 14px;
  }
  .header-tel-number::before {
    width: 3.2vw;
    height: 3.2vw;
  }
}
@media screen and (min-width: 768px) {
  .header-tel-number {
    font-size: 22px;
  }
  .header-tel-number::before {
    width: 22px;
    height: 22px;
    background-image: url("../images/icon-tel-wh.svg");
  }
}
.header-tel-text {
  font-size: 10px;
}
@media (max-width: 374px) {
  .header-tel-text {
    font-size: 9px;
  }
}
@media screen and (min-width: 768px) {
  .header-tel-text {
    font-size: 14px;
  }
}
.header-tel-text {
  margin: 0 auto;
}
.header a + .header-tel-note {
  display: none;
}
@media screen and (min-width: 768px) {
  .header a + .header-tel-note {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    margin: 3px auto 0;
    text-align: center;
  }
}

/* =========================
  ハンバーガー
========================= */
.hamburger {
  position: fixed;
  top: 11px;
  right: 10px;
  width: 48px;
  height: 48px;
  background: #5514d4;
  border-radius: 6px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hamburger {
    top: 16px;
    right: 10px;
  }
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  transform-origin: center;
}
@media screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* =========================
  ドロワー
========================= */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85vw;
  max-width: 400px;
  height: 100vh;
  background: rgb(255, 247.2, 223.2);
  z-index: 9999;
  transition: right 0.3s ease;
  padding-top: 80px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer ul {
  list-style: none;
  padding: 20px 10px;
  margin: 0;
}
.drawer li {
  border-bottom: 1px solid rgb(107, 164.1392405063, 255);
}
.drawer a {
  display: block;
  padding: 14px 20px;
  color: var(--secondary);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
.drawer a:active {
  background: rgba(85, 20, 212, 0.2);
}
.drawer-sptel {
  text-align: center;
  padding: 20px 10px;
}
.drawer-sptel a {
  padding: 0;
}
.drawer-sptel-number span {
  position: relative;
  padding-left: 46px;
  font-size: 30px;
  font-weight: 900;
  color: var(--color-red1);
}
.drawer-sptel-number span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  background: url("../images/icon-tel.svg") no-repeat center/contain;
}
.drawer-sptel-text {
  width: 87vw;
  max-width: 100%;
  margin: 5px auto 0;
  padding: 5px 10px 0;
  border-top: 1px solid #000;
  font-size: 18px;
  color: #000;
  text-align: center;
}
.drawer-copy {
  margin-top: 20px;
  padding-bottom: 20px;
  color: var(--color-secondary);
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .drawer {
    display: none;
  }
}

/* =========================
  トグル制御
========================= */
#nav-toggle {
  display: none;
}
#nav-toggle:checked ~ .drawer {
  right: 0;
}
#nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
  Footer (Mobile First)
========================================================= */
.footer {
  background: var(--color-ylw);
  padding: 30px 0 0px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: flex-start;
  width: min(790px, 100% - 32px);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.footer-main__logo {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer-main__logo {
    display: block;
    flex: 0 1 180px;
  }
  .footer-main__logo img {
    width: auto;
    max-width: 180px;
    max-height: 64px;
    -o-object-fit: contain;
       object-fit: contain;
    filter: drop-shadow(1px 1px 3px #fff);
  }
}
.footer-main-detail {
  display: none;
}
@media screen and (min-width: 1024px) {
  .footer-main-detail {
    display: block;
    flex: 0 1 260px;
    font-size: 14px;
  }
  .footer-main-detail address {
    font-style: normal;
  }
  .footer-main-detail-tel {
    margin-top: 6px;
    color: var(--color-red1);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }
  .footer-main-detail-tel a span {
    position: relative;
    padding-left: 20px;
  }
  .footer-main-detail-tel a span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background: url("../images/icon-tel.svg") no-repeat center/contain;
  }
}
.footer-main-links {
  display: block;
  flex: 0 1 100%;
  margin-top: 18px;
  color: var(--color-red1);
  font-size: 14px;
}
.footer-main-links li {
  width: 80%;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
}
.footer-main-links li:first-child {
  border-top: 1px solid #fff;
}
.footer-main-links li a {
  display: block;
  padding: 20px 0;
  font-size: clamp(16px, 4vw, 20px);
  text-align: center;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .footer-main-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    flex: 0 1 270px;
    justify-content: space-between;
    margin-top: 0;
  }
  .footer-main-links li {
    width: auto;
    flex: 0 1 50%;
    margin: 0;
    border: none;
  }
  .footer-main-links li:first-child {
    border: none;
  }
  .footer-main-links li a {
    position: relative;
    padding: 0 0 0 15px;
    font-size: 14px;
    text-align: left;
  }
  .footer-main-links li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--color-red1);
    transform: translateY(-50%);
  }
}
.footer-copy {
  width: 100%;
  margin: 40px auto 0px;
  padding: 5px 0 63px;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-copy {
    padding-bottom: 110px;
  }
}
.footer-text {
  width: min(1000px, 100% - 32px);
  margin: 2rem auto 0;
  color: var(--color-red1);
  text-align: center;
  font-size: 14px;
}

/* 固定CTA */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 990;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none; /* 初期状態は透過して下の要素を触れるようにする */
  transform: translateY(120%);
  transition: opacity 0.3s, transform 0.3s;
}
.fixed-cta.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto; /* 表示されたらタップできるようにする */
}
.fixed-cta .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 1em;
}
.fixed-cta .inner::before {
  content: "";
  height: 13vw;
  width: 100%;
  display: block;
  background-color: rgb(143.4827586207, 94.1724137931, 239.8275862069);
  filter: saturate(130%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .fixed-cta .inner::before {
    height: 100px;
  }
}
@media (min-width: 960px) {
  .fixed-cta .inner {
    width: 100%; /* autoから変更: PCでも横幅をしっかり確保 */
    display: flex;
    justify-content: center; /* PCで中央寄せ */
  }
}
.fixed-cta .ctaimg {
  position: relative;
  pointer-events: auto;
  width: 100%;
}
@media (min-width: 960px) {
  .fixed-cta .ctaimg {
    /* PC用画像が大きくなりすぎないよう最大幅を設定。画像のサイズに合わせて変更してください */
    width: min(100%, 1000px);
  }
}
.fixed-cta .ctaimg img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .fixed-cta .ctaimg img {
    max-height: 140px; /* PC画像の高さに合わせて微調整してください */
    -o-object-fit: contain;
       object-fit: contain; /* coverからcontainに変更: 画像が見切れないようにする */
  }
}
.fixed-cta .ctaimg {
  /* 以下、透明なリンクエリア（削除しないでください） */
}
.fixed-cta .ctaimg a {
  position: absolute;
  display: block;
  bottom: 0;
  height: 60%;
  z-index: 2;
}
.fixed-cta .ctaimg {
  /* ↓ 作成された画像の「電話」と「お問い合わせ」の幅に合わせて％を調整してください ↓ */
}
.fixed-cta .ctaimg-phone {
  left: 0;
  width: 35%; /* スマホ時の左側エリア割合 */
}
@media (min-width: 960px) {
  .fixed-cta .ctaimg-phone {
    width: 50%;
  }
}
.fixed-cta .ctaimg-phone { /* PC時の左側エリア割合 */ }
.fixed-cta .ctaimg-contact {
  right: 0;
  width: 65%; /* スマホ時の右側エリア割合 */
}
@media (min-width: 960px) {
  .fixed-cta .ctaimg-contact {
    width: 50%;
  }
}
.fixed-cta .ctaimg-contact { /* PC時の右側エリア割合 */ }

.pagetop-btn {
  position: fixed;
  bottom: 140px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.pagetop-btn.is-show {
  opacity: 1;
  pointer-events: auto;
}
.pagetop-btn svg, .pagetop-btn use {
  width: 20px;
  height: 20px;
  fill: #fff;
  color: #fff;
}
@media (any-hover: hover) {
  .pagetop-btn svg:hover, .pagetop-btn use:hover {
    color: var(--color-link);
  }
}
.pagetop-btn svg:active, .pagetop-btn use:active {
  color: var(--color-link);
}

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

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

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 */