@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-min: Noto Serif JP, Yu Mincho, YuMincho, Hiragino Mincho ProN, serif;
  --ff-en: Helvetica Neue, Helvetica, Arial, sans-serif;
  --ff-serif: serif;
  --color-primary: #1466ff;
  --color-secondary: #0000AE;
  --color-accent: #FF6A1A;
  --color-info: #FFC845;
  --color-success: #33B864;
  --color-link: #ff6000;
  --color-bg: #ffffff;
  --color-text: #4c4c4c;
  --color-border: #e5e7eb;
  --color-red1: #f50000;
  --color-darkred1: #cc0012;
  --color-blue: #0046FF;
  --color-orng: #ff6000;
  --color-ylw: #ffee00;
  --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(20, 102, 255, 0.9);
  --color-header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --color-header-bg-mobile: linear-gradient(0deg, #1466ff 50%, rgb(67, 132.6, 255) 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-16: 16px;
  --space-24: 24px;
  --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-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", sans-serif;
  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, "Noto Sans JP", sans-serif);
  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-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-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-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: #1466ff !important;
}

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

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

.bg-secondary {
  background-color: #0000AE !important;
}

.text-secondary {
  color: #0000AE !important;
}

.border-secondary {
  border-color: #0000AE !important;
}

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

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

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

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

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

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

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

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

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

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

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

.border-link {
  border-color: #ff6000 !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: #f50000 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-ylw {
  border-color: #ffee00 !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(20, 102, 255, 0.9) !important;
}

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

.border-header-bg {
  border-color: rgba(20, 102, 255, 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-mobile {
  background-color: linear-gradient(0deg, #1466ff 50%, rgb(67, 132.6, 255) 90%, #ffffff 100%) !important;
}

.text-header-bg-mobile {
  color: linear-gradient(0deg, #1466ff 50%, rgb(67, 132.6, 255) 90%, #ffffff 100%) !important;
}

.border-header-bg-mobile {
  border-color: linear-gradient(0deg, #1466ff 50%, rgb(67, 132.6, 255) 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: #1466ff;
  border-color: #1466ff;
  color: white;
}
.btn-primary:hover {
  filter: brightness(0.9);
  background-color: rgb(0, 78.1617021277, 224);
  border-color: rgb(0, 78.1617021277, 224);
}
.btn-primary:active {
  filter: brightness(0.85);
  background-color: rgb(0, 69.2638297872, 198.5);
}

.btn-secondary {
  background-color: #0000AE;
  border-color: #0000AE;
  color: white;
}
.btn-secondary:hover {
  filter: brightness(0.9);
  background-color: #00007b;
  border-color: #00007b;
}
.btn-secondary:active {
  filter: brightness(0.85);
  background-color: rgb(0, 0, 97.5);
}

.btn-accent {
  background-color: #FF6A1A;
  border-color: #FF6A1A;
  color: white;
}
.btn-accent:hover {
  filter: brightness(0.9);
  background-color: rgb(230, 80.3493449782, 0);
  border-color: rgb(230, 80.3493449782, 0);
}
.btn-accent:active {
  filter: brightness(0.85);
  background-color: rgb(204.5, 71.4410480349, 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) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-only {
    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: 1200px;
  }
}
.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;
}

.mincho {
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.bk {
  color: #000;
}

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

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

/*
.parallax{
  overflow:hidden;
  img{
    width:100%;
    height:100%;
    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;
  }
}

/* =========================
  catch breadcrumb (wpプラグイン)
========================= */
div.breadcrumb {
  background: rgba(206, 212, 218, 0.6);
  min-height: 30px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: relative;
  top: -40px;
}
.breadcrumb, .breadcrumb-current {
  padding: 0;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .breadcrumb, .breadcrumb-current {
    font-size: 13px;
  }
}

.catch-breadcrumb {
  margin: 0 auto;
  padding: 0 15px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .catch-breadcrumb nav {
    max-width: 900px;
  }
}
@media screen and (min-width: 1024px) {
  .catch-breadcrumb nav {
    max-width: 1100px;
  }
}

.entry-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

/* 各要素 */
.entry-breadcrumbs .breadcrumb,
.entry-breadcrumbs .breadcrumb-current {
  display: inline-flex;
  align-items: center;
}

/* リンク */
.entry-breadcrumbs a {
  color: rgb(0, 78.1617021277, 224);
  text-decoration: none;
}

/* hover（軽量） */
@media (any-hover: hover) {
  .entry-breadcrumbs a:hover {
    opacity: 0.7;
  }
}
/* 区切り */
.entry-breadcrumbs .sep {
  margin: 0 4px;
  color: #aaa;
}

/* 現在ページ */
.entry-breadcrumbs .breadcrumb-current {
  font-weight: 500;
}

.section-title {
  position: relative;
  overflow: hidden;
  z-index: 0;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: #fff;
  text-align: center;
  padding: 24px 20px;
  margin-bottom: var(--space-40);
}
.section-title::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: 10px;
  left: -60px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(30deg);
}
@media screen and (min-width: 768px) {
  .section-title::before {
    width: 50vw;
    height: 50vw;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -70px;
  right: -140px;
  z-index: 1;
  background: rgba(0, 0, 174, 0.2);
  transform: rotate(60deg);
}
.section-title p {
  color: rgb(96.5, 151.8063829787, 255);
  margin-bottom: 0;
  font-family: var(--ff-ttl, "Noto Sans JP", sans-serif);
  font-weight: 700;
}
.section-title h2 {
  font-family: var(--ff-ttl, "Noto Sans JP", sans-serif);
  text-shadow: 2px 2px 0 var(--color-secondary);
  z-index: 2;
}

.section-title.title2 {
  background: linear-gradient(135deg, var(--color-accent), var(--color-ylw));
}
.section-title.title2::before {
  background: rgba(255, 255, 255, 0.25);
}
.section-title.title2::after {
  background: rgba(255, 106, 26, 0.1);
}
.section-title.title2 p {
  color: var(--color-ylw);
}
.section-title.title2 h2 {
  color: #fff;
  text-shadow: 2px 2px 0 var(--color-accent);
}

.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, "Noto Sans JP", sans-serif);
  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.4);
}
@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;
  }
}
.cta-btn a:visited,
.link-btn a:visited {
  color: #fff;
  text-decoration: none;
}
.cta-btn a:active,
.link-btn a:active {
  transform: translateY(1px);
  filter: brightness(1.12);
}
@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%);
}

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

.cta-tel {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
}
.cta-tel picture, .cta-tel img {
  display: block;
  width: 100%;
  height: auto;
}
.cta-tel .cta-num {
  color: #fff;
  font-weight: 700;
  font-family: var(--ff-en);
  position: absolute;
  bottom: 20%;
  left: 15%;
  font-size: clamp(16px, 8.5vw, 36px);
}
@media screen and (min-width: 768px) {
  .cta-tel .cta-num {
    font-size: 62px;
    bottom: 17%;
  }
}
@media screen and (min-width: 1024px) {
  .cta-tel .cta-num {
    font-size: 90px;
    bottom: 17%;
  }
}
@media screen and (min-width: 1280px) {
  .cta-tel .cta-num {
    font-size: 108px;
    bottom: 17%;
  }
}
.cta-tel .cta-num > span {
  width: 1.1em;
  height: 1.1em;
  position: relative;
  top: 0.3em;
  left: 0.4em;
}
.cta-tel .time {
  color: #fff;
  position: absolute;
  bottom: 6%;
  left: 18%;
  font-size: clamp(13px, 3.8vw, 16px);
}
@media screen and (min-width: 768px) {
  .cta-tel .time {
    font-size: 24px;
    left: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .cta-tel .time {
    font-size: 32px;
    left: 25%;
  }
}
@media screen and (min-width: 1280px) {
  .cta-tel .time {
    font-size: 42px;
    left: 25%;
  }
}

.single-work div.breadcrumb, .work div.breadcrumb {
  background: rgba(206, 212, 218, 0.6);
  top: -70px;
}
@media screen and (min-width: 1024px) {
  .single-work div.breadcrumb, .work div.breadcrumb {
    top: -90px;
  }
}

.work-hero-title {
  position: relative;
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  margin-bottom: 40px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .work-hero-title {
    min-height: 480px;
    padding: 70px 40px;
    margin-bottom: 60px;
  }
}
.work-hero-title__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.work-hero-title__bg picture, .work-hero-title__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.work-hero-title__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  padding: 20px 20px;
  background: linear-gradient(to right, rgba(10, 18, 41, 0) 0%, rgba(10, 18, 41, 0.85) 25%, rgba(10, 18, 41, 0.85) 75%, rgba(10, 18, 41, 0) 100%);
}
@media screen and (min-width: 768px) {
  .work-hero-title__content {
    padding: 30px 60px;
  }
}
.work-hero-title__content .hero-badge {
  background-color: #ffffff;
  color: #0000AE;
  font-weight: 700;
  font-size: 13px;
  padding: 4px 16px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  display: inline-block;
  border: 1px solid #0000AE;
}
@media screen and (min-width: 768px) {
  .work-hero-title__content .hero-badge {
    font-size: 15px;
    padding: 6px 22px;
  }
}
.work-hero-title__content .hero-sub {
  font-size: clamp(15px, 4vw, 20px);
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 15px 0;
  letter-spacing: 0.03em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.work-hero-title__content .hero-title {
  font-size: clamp(24px, 5.5vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
  letter-spacing: 0.04em;
}
.work-hero-title__content .hero-title .gold-text {
  background: linear-gradient(45deg, #dfbf75 0%, #ffefbd 50%, #dfbf75 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}
.work-hero-title__content .hero-sub2 {
  font-family: var(--ff-ttl);
  font-size: clamp(16px, 3.5vw, 22px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.work-hero-title__content .hero-features {
  background-color: #FF6A1A;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 18px;
  margin: 0;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .work-hero-title__content .hero-features {
    font-size: 15px;
  }
}

.work {
  background: url(../images/diagonal-dots.svg) repeat;
  padding: 0 0 var(--space-xl);
  overflow: hidden;
}

.work__content .work-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  gap: var(--space-xs);
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .work__content .work-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .work__content .work-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.work__content .work-item {
  overflow: visible;
}
.work__content .work-item > a {
  display: block;
  color: inherit;
  transition: background-color 0.2s ease;
}
@media (any-hover: hover) {
  .work__content .work-item > a:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .work__content .work-item > a {
    /* ★ここが本体（枠ごとズーム） */
  }
  .work__content .work-item > a:hover .work-photo {
    transform: scale(1.05);
  }
}
.work__content .work-item .work-photo {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  margin: 0 auto var(--space-xs);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.work__content .work-item .work-photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border: 8px solid white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .work__content .work-item .work-photo:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
}
.work__content .work-item .work-body strong {
  color: var(--color-accent);
}
.work__content .work-item .work-body strong svg {
  display: inline-block;
  color: rgb(255, 127.5, 138.75);
  fill: currentColor;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  position: relative;
  top: 0.1em;
}
.work__content .work-item .work-body strong svg:active {
  color: var(--color-link);
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.work-tags object {
  display: inline-flex;
  pointer-events: auto;
}
.work-tags--single {
  justify-content: center;
  margin-bottom: 20px;
}
.work-tags .work-tag {
  display: inline-block;
  background-color: rgb(71, 135.2042553191, 255);
  color: #fff;
  font-family: var(--ff-ttl);
  font-size: clamp(11px, 3vw, 14px);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  line-height: 1.2;
  transition: filter 0.2s ease, transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .work-tags .work-tag {
    font-size: 14px;
  }
}
@media (any-hover: hover) {
  .work-tags .work-tag:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
  }
}

.sos {
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../images/sos_bg_sp.webp) center top repeat;
  background-size: cover;
}
.sos .title {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 30px;
  background: repeating-linear-gradient(75deg, #abb59f 0px, #abb59f 30px, #e6e600 30px, #e6e600 60px);
}
@media screen and (min-width: 1024px) {
  .sos .title {
    background: repeating-linear-gradient(75deg, #abb59f 0px, #abb59f 60px, #e6e600 60px, #e6e600 120px);
  }
}
.sos .title img {
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.sos__timing {
  padding: 28px 0;
}
@media screen and (min-width: 768px) {
  .sos__timing {
    padding: 36px 0;
  }
}
.sos__timing-ttl {
  color: #f50000;
  text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px;
  font-size: var(--font-size-h3);
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .sos__timing-ttl {
    font-size: 40px;
    text-align: center;
  }
}
.sos__timing-ttl em {
  font-style: normal;
  color: #f50000;
}
.sos p {
  line-height: 1.9;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .sos p {
    text-align: center;
  }
}
.sos p + div {
  margin: 40px auto 0;
  text-align: center;
}
.sos p + div a {
  display: grid;
  place-items: center;
}
.sos p + div:active {
  transform: translateY(1px);
  filter: brightness(1.12);
}
@media (any-hover: hover) {
  .sos p + div:hover {
    transform: translateY(1px);
    filter: brightness(1.08);
  }
  .sos p + div:hover::after {
    transform: translateY(-50%) translateX(2px);
  }
}

main.first-time .cost {
  padding-top: 0;
}

.cost {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: rgb(71, 135.2042553191, 255);
  background-image: linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.3) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.3) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.3) 25%, rgba(255, 255, 255, 0.3) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.3) 75%, rgba(255, 255, 255, 0.3) 76%, transparent 77%, transparent);
  background-size: 40px 40px;
}
.cost .title {
  width: 100%;
  margin-bottom: var(--space-40);
  text-align: center;
}
.cost .title::before, .cost .title::after {
  display: none;
}
.cost .title p {
  color: #fff;
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  text-shadow: #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px, #f50000 0px 0px 5px;
}
@media screen and (min-width: 768px) {
  .cost .title p {
    font-size: var(--font-size-h3);
  }
}
.cost .title h2 {
  color: #f50000;
  font-size: 8vw;
  line-height: 1.3;
  text-shadow: #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px, #FFF 0px 0px 5px;
}
@media screen and (min-width: 768px) {
  .cost .title h2 {
    font-size: var(--font-size-h2);
  }
  .cost .title h2 br {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cost__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
  }
}
.cost__box {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .cost__box {
    padding: 40px;
    margin-bottom: 0;
  }
  .cost__box:nth-of-type(1), .cost__box:nth-of-type(2) {
    width: calc(50% - 15px);
  }
  .cost__box:nth-of-type(3) {
    width: 100%;
    padding: 40px;
    margin-top: 30px;
  }
}
.cost__box h3 {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cost__box h3 {
    font-size: var(--font-size-lg);
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.cost__box picture {
  display: block;
  margin-bottom: 20px;
}
.cost__box picture img {
  width: 100%;
  max-width: 960px;
  height: auto;
  margin-inline: auto;
}
.cost__box p {
  font-size: var(--font-size-text);
  line-height: 1.8;
  color: var(--color-text);
  text-align: left;
  margin-bottom: 1em;
}
.cost__box p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .cost__box p {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .cost .cost__box:nth-of-type(3) > h3 {
    font-size: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cost .cost__box:nth-of-type(3) > h3 {
    font-size: 48px;
  }
}
.cost__catch {
  font-size: var(--font-size-lg);
  font-weight: 700;
  font-family: var(--ff-ttl);
  color: #fff;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .cost__catch {
    font-size: var(--font-size-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  }
}
.cost__catch span {
  color: #f50000;
  font-size: 1.3em;
}

.fire-insurance {
  background-color: rgb(25.8555120997, 88.6474700562, 203.0944879003);
  padding: var(--space-xl) 0;
  margin: 0;
}
.fire-insurance__hero {
  margin: 0 auto -1em;
  padding: 0;
  max-width: 80%;
}
.fire-insurance__hero img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}
.fire-insurance__content-box {
  background-color: #ffffff;
  color: #000000;
  padding: 30px 20px;
  margin: 0 0 40px 0;
}
@media screen and (min-width: 768px) {
  .fire-insurance__content-box {
    padding: 50px 40px;
  }
}
.fire-insurance__intro {
  text-align: center;
  margin: 0 0 var(--space-lg) 0;
  padding: 0;
}
.fire-insurance__intro .title {
  margin: 0;
  padding: 0;
}
.fire-insurance__intro .title img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.fire-insurance__about {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 0 50px 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .fire-insurance__about {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
.fire-insurance__about .img-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .fire-insurance__about .img-wrap {
    width: 35%;
    flex-shrink: 0;
  }
}
.fire-insurance__about .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.fire-insurance__about .text-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .fire-insurance__about .text-wrap {
    flex-grow: 1;
  }
}
.fire-insurance__about .text-wrap p {
  font-size: var(--font-size-text, 16px);
  line-height: 1.8;
  margin: 0 0 1.5em 0;
  padding: 0;
}
.fire-insurance__about .text-wrap p:last-child {
  margin-bottom: 0;
}
.fire-insurance__about .text-wrap .highlight {
  font-weight: 700;
  font-size: 1.1em;
}
.fire-insurance__cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 576px) {
  .fire-insurance__cases {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .fire-insurance__cases {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fire-insurance__cases .case-item {
  text-align: center;
  margin: 0;
  padding: 0;
}
.fire-insurance__cases .case-item img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 10px 0;
}
.fire-insurance__cases .case-item p {
  font-family: var(--ff-ttl);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-shadow: 0 1px 0 #fff, 1px 0 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, -1.5px -1.5px 3px #fff, 1.5px -1.5px 3px #fff, -1.5px 1.5px 3px #fff, 1.5px 1.5px 3px #fff;
}
@media (min-width: 768px) {
  .fire-insurance__cases .case-item p {
    text-shadow: 0 2px 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, -3px -3px 6px #fff, 3px -3px 6px #fff, -3px 3px 6px #fff, 3px 3px 6px #fff;
  }
}
.fire-insurance__cases .case-item p {
  color: #f50000;
  margin: -3em 0 0;
  padding: 0;
}
.fire-insurance__alert {
  background: repeating-linear-gradient(75deg, #d7c700 0px, #d7c700 30px, #eee900 30px, #eee900 60px);
}
@media screen and (min-width: 1024px) {
  .fire-insurance__alert {
    background: repeating-linear-gradient(75deg, #d7c700 0px, #d7c700 60px, #eee900 60px, #eee900 120px);
  }
}
.fire-insurance__alert {
  margin: 0;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .fire-insurance__alert {
    padding: 30px;
  }
}
.fire-insurance__alert .alert-img {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.fire-insurance__alert .alert-img img {
  width: 100%;
  max-width: 915px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.fire-insurance__alert .alert-content {
  width: 100%;
  margin: 0;
  padding: 0;
}
.fire-insurance__alert .alert-content p {
  font-size: var(--font-size-sm);
  font-weight: 500;
  line-height: 1.8;
  margin: 0 0 1em 0;
  padding: 0;
}
.fire-insurance__alert .alert-content p:last-child {
  margin-bottom: 0;
}

.voice {
  background: url(../images/graph-paper.svg) repeat;
  padding: 0 0 var(--space-xl);
  overflow: hidden;
}

.voice__content .section-title {
  padding: 1rem;
  color: var(--color-accent);
}
.voice__content .section-title h2::before {
  border-top: 2px solid var(--color-accent);
}
.voice__content .voice-list {
  padding: 0;
  list-style: none;
}
.voice__content .voice-list li.voice-pop {
  position: relative;
  margin-inline: auto;
  margin-block: 2em;
  padding: var(--space-sm);
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-accent);
}
@media screen and (min-width: 768px) {
  .voice__content .voice-list li.voice-pop {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.voice__content .voice-list li.voice-pop::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  border-style: solid;
  border-width: 16px 7px 0 7px;
  border-color: var(--color-accent) transparent transparent;
  translate: -50% 100%;
}
@media screen and (min-width: 768px) {
  .voice__content .voice-list li.voice-pop::after {
    left: 2em;
    bottom: 1px;
    border-width: 22px 10px 0 10px;
  }
}
.voice__content .voice-list li.voice-pop:nth-child(even) {
  background-color: rgb(255, 135.8, 71.8);
}
.voice__content .voice-list li.voice-pop:nth-child(even)::after {
  left: 90%;
  border-color: rgb(255, 135.8, 71.8) transparent transparent;
}
@media screen and (min-width: 768px) {
  .voice__content .voice-list li.voice-pop:nth-child(even)::after {
    left: auto;
    right: 2em;
    translate: 50% 100%;
  }
}
@media screen and (min-width: 768px) {
  .voice__content .voice-list li.voice-pop:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.voice__content .voice-list li.voice-pop > div {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .voice__content .voice-list li.voice-pop > div {
    flex: 1;
  }
}
.voice__content .voice-list li.voice-pop > div .star {
  font-family: var(--ff-ttl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-ylw);
}
@media screen and (min-width: 768px) {
  .voice__content .voice-list li.voice-pop > div .star {
    font-size: 1.5em;
  }
}
.voice__content .voice-list li.voice-pop > div p {
  font-family: var(--ff-ttl);
  font-size: var(--font-size-sm);
  color: white;
  margin-bottom: 0;
}
.voice__content .voice-list li.voice-pop > span {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 0.7em;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .voice__content .voice-list li.voice-pop > span {
    width: 270px;
  }
}
.voice__content .voice-list li.voice-pop > span img {
  width: 100%;
  height: auto;
  display: block;
}

.thanks, [class^=contact] {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}
.thanks .section-title, [class^=contact] .section-title {
  order: 1;
}
.thanks .catch-breadcrumb, [class^=contact] .catch-breadcrumb {
  order: 2;
  background: rgba(0, 0, 174, 0.1);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: relative;
  margin: -40px auto 20px;
}
.thanks .contact,
.thanks .contact__section, [class^=contact] .contact,
[class^=contact] .contact__section {
  position: relative;
  order: 3;
  padding: 0 0 var(--space-xl);
}
.thanks .contact__content, [class^=contact] .contact__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-sm);
  min-height: 500px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}
.thanks .contact__heading, [class^=contact] .contact__heading {
  font-size: var(--font-size-lg);
  text-align: center;
  margin-bottom: var(--space-md);
  color: var(--color-secondary);
  line-height: 1.4;
}
@media screen and (max-width: 575px) {
  .thanks .contact__heading, [class^=contact] .contact__heading {
    letter-spacing: 0px;
  }
}
.thanks .contact__text, [class^=contact] .contact__text {
  text-align: center;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}
.thanks .contact__info, [class^=contact] .contact__info {
  background: rgba(58, 170, 239, 0.08);
  padding: var(--space-md);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-xl);
}
.thanks .contact__label, [class^=contact] .contact__label {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  text-align: center;
}
.thanks .contact__tel, [class^=contact] .contact__tel {
  margin-bottom: 0;
}
.thanks .contact__tel span, [class^=contact] .contact__tel span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: clamp(16px, 7vw, 28px);
  font-family: var(--ff-en);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-accent);
}
@media screen and (min-width: 1024px) {
  .thanks .contact__tel span, [class^=contact] .contact__tel span {
    font-size: 48px;
  }
}
.thanks .contact__tel svg, [class^=contact] .contact__tel svg {
  color: var(--color-link);
  fill: currentColor;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  position: relative;
  top: 0.1em;
}
.thanks .contact__line, [class^=contact] .contact__line {
  text-align: center;
}
.thanks .contact__line img, [class^=contact] .contact__line img {
  width: 180px;
  max-width: 100%;
  height: auto;
}

.contact__form {
  margin-bottom: 0;
}
.contact__form .wpcf7 .form-row {
  padding: 20px 15px;
  margin-bottom: var(--space-sm);
  border-radius: var(--border-radius);
}
.contact__form .wpcf7 .form-row:nth-child(odd) {
  background: rgba(20, 102, 255, 0.06);
}
.contact__form .wpcf7 .form-row__label {
  font-weight: bold;
}
.contact__form .wpcf7 .form-row__label span.required {
  font-size: 0.7em;
  font-weight: bold;
  display: inline-block;
  position: relative;
  left: 5px;
  top: -2px;
  color: #fff;
  border-radius: 100vmax;
  background-color: rgb(255, 66.5, 66.5);
  height: 1.4em;
  line-height: 1.4em;
  padding: 0 0.5em;
}
.contact__form .wpcf7 .form-row__field {
  margin: 0;
}
.contact__form .wpcf7 .form-row__field p {
  margin: 0;
}
.contact__form .wpcf7 .form-row__field .wpcf7-form-control-wrap {
  display: block;
}
.contact__form .wpcf7 .form-input,
.contact__form .wpcf7 .form-textarea,
.contact__form .wpcf7 .wpcf7-text,
.contact__form .wpcf7 .wpcf7-textarea,
.contact__form .wpcf7 .wpcf7-tel,
.contact__form .wpcf7 .wpcf7-email {
  width: 100%;
  display: block;
  margin: 0;
  box-sizing: border-box;
}
.contact__form .wpcf7 .telNumber {
  max-width: 100%;
}
.contact__form .wpcf7 .form-row__field--address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact__form .wpcf7 .form-row__field--address .zip-wrap {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.contact__form .wpcf7 .form-row__field--address .zip-wrap .wpcf7-form-control-wrap {
  display: inline-block;
  width: auto;
  flex: 0 1 12rem;
}
.contact__form .wpcf7 .form-submit {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact__form .wpcf7 .form-submit p {
  margin-bottom: 0;
}
.contact__form .wpcf7 .wpcf7-submit,
.contact__form .wpcf7 .wpcf7-previous-button,
.contact__form .wpcf7 .form-submit__button,
.contact__form .wpcf7 .form-fix__button {
  width: 100%;
  max-width: 220px;
  padding: 1rem 2rem;
  border: none;
  border-radius: 100vmax;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease;
  -webkit-appearance: none;
}
.contact__form .wpcf7 .wpcf7-submit,
.contact__form .wpcf7 .form-submit__button {
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-ylw) 120%);
}
.contact__form .wpcf7 .wpcf7-previous-button,
.contact__form .wpcf7 .form-fix__button {
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}
@media screen and (max-width: 575px) {
  .contact__form .wpcf7 .form-submit {
    flex-direction: column;
    align-items: center;
  }
  .contact__form .wpcf7 .wpcf7-submit,
  .contact__form .wpcf7 .wpcf7-previous-button {
    max-width: 340px;
  }
}
.contact__form .wpcf7 .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 10px;
  border-radius: var(--border-radius);
  text-align: center;
}
.contact__form .wpcf7 .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--color-primary);
  padding: 1rem;
  text-align: center;
}
.contact__form .thanks-text {
  text-align: center;
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  font-weight: 700;
  max-width: 520px;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  main.contact-thanks div.contact__form > p {
    text-align: center;
  }
}

/* [class^="contact"] {
  display: flex;
  flex-direction: column;
  margin-bottom:60px;
  .section-title{
    order:1
  }
  //パンくず出力固定プラグインのため位置調整
  .catch-breadcrumb {
    order: 2;
    background: rgba($secondary, 0.1);
    @include full-bleed;
    position: relative;
    //top:-40px;
    margin: -40px auto 20px;
    @include mq(lg) {
      background:transparent;
    }
  }
  .contact,
  .contact__section{
    position: relative;
    order:3;
    padding:0 0 var(--space-xl);
  }

  .contact__content {
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--space-sm);
    min-height: 500px;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
  }

  .contact__heading {
    font-size: var(--font-size-lg);
    text-align: center;
    margin-bottom: var(--space-md);
    color: var(--color-secondary);
    line-height: 1.4;
    @include mq-max(sm)  {
      letter-spacing: 0px;
    }
  }

  .contact__text {
    text-align: center;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
  }

  .contact__info {
    background: rgba(58, 170, 239, 0.08);
    padding: var(--space-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-xl);
  }

  .contact__label {
    color: var(--color-primary);
    font-size:var(--font-size-sm) ;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    text-align: center;
  }

  .contact__tel {
    margin-bottom: 0; //var(--space-md);
      span {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2px;
        font-size: clamp(16px, 7vw, 28px);
        font-family: var(--ff-en);
        font-weight: 700;
        line-height: 1.2;
        color: var(--color-accent);
        @include mq(lg) {
          font-size: 48px;
        }
      }

      &:active {
        color: var(--color-link);
      }

      svg {
        color: var(--color-link);
        fill: currentColor;
        width: 1em;
        height: 1em;
        flex-shrink: 0;
        position: relative;
        top: 0.1em;

        &:active {
          color: var(--color-link);
        }
      }
    }


  .contact__line {
    text-align: center;

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

//mw_wp_form
.contact__form {
  .mw_wp_form {
    .form-row {
      padding: 20px 15px;
      margin-bottom: var(--space-sm);
      border-radius: var(--border-radius);

      &:nth-child(odd) {
        background: rgba($primary, 0.06);
      }
    }
    .form-row__label{
      font-weight:bold;
      span.required{
        font-size: 0.7em;
        font-weight:bold;
        display:inline-block;
        position: relative;
        left:5px;
        top: -2px;
        color: #fff;
        border-radius: 100vmax;
        background-color: color.adjust($red1, $lightness:15%);
        height: 1.4em;
        line-height: 1.4em;
        padding: 0 0.5em;
      }
    }
    .form-row__field {
      margin: 0;

      > p {
        margin: 0;
      }
    }

    .form-input,
    .form-textarea,
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      width: 100%;
      display: block;
      margin: 0;
      box-sizing: border-box;
    }
    .form-note{
      @include mq(md) {
        text-align: center;
      }
    }


    // -----------------------------
    // 電話番号
    // -----------------------------
    .mwform-tel-field {
      display: flex;
      align-items: center;
      gap: 0.4em;
      flex-wrap: nowrap;
    }

    .mwform-tel-field .telNumber {
      width: 6em;
      max-width: 6em;
      flex: 0 0 auto;
    }

    // -----------------------------
    // 住所
    // -----------------------------
    .form-row__field--address {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .form-row__field--address .zip-wrap {
      display: flex;
      align-items: center;
      gap: 0.5em;
      >span{display: inline-block;}
    }

    .form-row__field--address .zip {
      display: inline-block;
      max-width: 12rem;
    }

    #zip {
      margin-left: 0.5em;
    }

    #addr1,
    #addr2 {
      margin-top: 5px;
    }

    // -----------------------------
    // テキストエリア
    // -----------------------------
    .form-textarea,
    textarea {
      min-height: 180px;
    }

    // -----------------------------
    // ボタン
    // -----------------------------
    .form-submit {
      margin-top: var(--space-lg);
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .form-submit__button,
    .form-fix__button,
    .form-submit input[type="submit"] {
      width: 100%;
      max-width: 220px;
      padding: 1rem 2rem;
      border: none;
      border-radius: 100vmax;
      color: #fff;
      font-weight: 700;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    // 送信ボタン 
    .form-submit__button {
      background: linear-gradient(
        180deg,
        var(--color-accent) 0%,
        var(--color-ylw) 120%
      );
    }

    // 修正ボタン 
    .form-fix__button {
      background:  linear-gradient(
      180deg,
        var(--color-secondary)  0%,
        var(--color-primary) 100%
      );
    }

    @media (any-hover: hover) {
      .form-submit__button:hover,
      .form-fix__button:hover {
        opacity: 0.9;
      }
    }

    @include mq-max(sm) {
      .form-submit {
        flex-direction: column;
        align-items: center;
      }

      .form-submit__button,
      .form-fix__button {
        max-width: 340px;
      }
    }

  }
}
 */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.header {
  background-color: var(--color-gray-200);
  padding: 0;
  z-index: 100;
  position: sticky;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.header__lead {
  background: #0000AE;
  width: 100%;
  overflow: hidden;
  padding: 6px 0;
}
.header__lead-inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.header__lead p {
  color: #fff;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  padding-right: 50px;
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .header__lead p {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    padding-right: 100px;
  }
}
.header__inner.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 72px 10px 20px;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .header__inner.container {
    padding: 15px 90px 15px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .header__inner.container {
    padding: 10px 40px 5px;
  }
}
@media screen and (min-width: 1280px) {
  .header__inner.container {
    padding: 10px 40px 5px;
  }
}
.header__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  gap: 5px;
  top: -5px;
  position: relative;
}
.header__logo-main {
  font-family: var(--ff-ttl, "Noto Sans JP", sans-serif);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  font-style: italic;
  color: rgb(45.5, 118.6021276596, 255);
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.8), -1px -1px 2px rgba(0, 0, 0, 0.8), -1px 1px 2px rgba(0, 0, 0, 0.8), -1px 1px 2px rgba(0, 0, 0, 0.8), -3px 3px 6px rgba(0, 0, 0, 0.8), 3px -3px 6px rgba(0, 0, 0, 0.8), -3px -3px 6px rgba(0, 0, 0, 0.8), 3px 3px 6px rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 1024px) {
  .header__logo-main {
    font-size: 40px;
    margin-bottom: 5px;
  }
}
.header__logo-sub {
  font-size: clamp(9px, 2.5vw, 13px);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .header__logo-sub {
    letter-spacing: 2px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo-sub {
    font-size: 18px;
  }
}
.header__logo-sub span {
  background-color: #cc0012;
  color: #fff;
  font-size: 0.9em;
  font-weight: 700;
  display: inline-block;
  margin-left: 5px;
  padding: 2px 4px 2px;
  line-height: 1;
}
.header__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1023px) {
  .header__info {
    width: 30vw;
    max-width: 200px;
  }
  .header__info .header__telarea,
  .header__info .header__mail {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .header__info {
    justify-content: flex-end;
    flex-grow: 1;
    gap: 20px;
  }
}
.header__card {
  padding: 0;
  margin: 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .header__card {
    max-width: 130px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__telarea {
    display: block;
    text-align: center;
    flex-shrink: 0;
  }
}
.header__telarea .catch {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--color-text);
  letter-spacing: -0.05em;
}
@media screen and (min-width: 1280px) {
  .header__telarea .catch {
    font-size: 14px;
  }
}
.header__telarea .catch span {
  color: var(--color-red1);
  margin-left: 3px;
}
.header__telarea .tel {
  font-family: var(--ff-en);
  font-size: clamp(26px, 1.8em, 35px);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1.1;
}
@media screen and (min-width: 1280px) {
  .header__telarea .tel {
    font-size: 40px;
  }
}
.header__telarea .tel a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header__telarea .tel a:hover {
  opacity: 0.8;
}
.header__telarea .tel .icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  position: relative;
  margin-right: -5px;
}
@media screen and (min-width: 1280px) {
  .header__telarea .tel .icon {
    width: 40px;
    height: 40px;
    top: 2px;
  }
}
.header__telarea .tel .icon svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}
.header__telarea .time {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0;
}
@media screen and (min-width: 1280px) {
  .header__telarea .time {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .header__mail {
    display: block;
    flex-shrink: 0;
  }
}
.header__mail .btn-mail {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #33B864;
  color: var(--color-ylw);
  font-family: var(--ff-ttl);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.3;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, filter 0.25s ease;
}
.header__mail .btn-mail .icon-mail {
  width: 28px;
  height: 28px;
  margin-bottom: -2px;
  display: inline-block;
}
.header__mail .btn-mail .icon-mail svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .header__mail .btn-mail:hover {
    transform: translateY(1px);
    filter: brightness(1.08);
  }
}
.header {
  /* =========================
    PCナビ（header内にネスト移動）
  ========================= */
}
.header .gnav {
  display: none;
  background: #00007b;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .header .gnav {
    display: block;
  }
  .header .gnav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
  }
  .header .gnav li {
    position: relative;
  }
  .header .gnav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .header .gnav li:hover > a {
    background: rgba(255, 255, 255, 0.15);
  }
  .header .gnav a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    font-size: clamp(12px, 1.2vw, 16px);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1;
    transition: all 0.25s ease;
  }
  .header .gnav .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 150px;
    background: #0000AE;
    display: block;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .header .gnav .sub-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .gnav .sub-menu li:last-child {
    border: none;
  }
  .header .gnav .sub-menu a {
    padding: 8px 20px;
  }
  .header .gnav .sub-menu a:hover {
    background: #1466ff;
    padding-left: 25px;
  }
}

/* =========================
  ハンバーガー
========================= */
.hamburger {
  position: fixed;
  top: 40px;
  right: 12px;
  width: 48px;
  height: 48px;
  background: rgb(0, 78.1617021277, 224);
  border-radius: 6px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  transform-origin: center;
}

/* =========================
  ドロワー
========================= */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85vw;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}
.drawer ul {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.drawer li {
  border-bottom: 1px solid #eee;
}
.drawer a {
  display: block;
  padding: 14px 20px;
  color: var(--color-link);
  font-weight: bold;
  text-decoration: none;
}
.drawer a:active {
  background: rgba(20, 102, 255, 0.2);
}
.drawer .sub-menu {
  background: #f9f9f9;
  padding: 0;
}
.drawer .sub-menu li {
  border-bottom: 1px solid #eee;
}
.drawer .sub-menu li a {
  padding-left: 40px;
  font-size: 0.9em;
  font-weight: bold;
}

/* =========================
  トグル制御
========================= */
#nav-toggle {
  display: none;
}
#nav-toggle:checked ~ .drawer {
  right: 0;
}
#nav-toggle:checked ~ .hamburger {
  background: #0000e1;
  right: 85vw;
}
@media screen and (min-width: 768px) {
  #nav-toggle:checked ~ .hamburger {
    right: 400px;
  }
}
#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);
}

/* =========================
  PC時のSP要素非表示
========================= */
@media (min-width: 1024px) {
  .hamburger,
  .drawer {
    display: none;
  }
}
/* =========================
  FOOTER
========================= */
.footer {
  background: #000048;
  color: #fff;
  padding: 60px 0 0px;
  border-top: 5px solid #ffee00;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer h2 {
  font-size: clamp(22px, 5vw, 36px);
  font-weight: 900;
  font-style: italic;
  color: #ffee00;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, 0px 2px 0 #000, 0px -2px 0 #000, -2px 0px 0 #000, 2px 0px 0 #000;
}
.footer h3 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  font-style: italic;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 0px #000;
}
.footer h4 {
  font-size: clamp(16px, 4.7vw, 22px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 auto 50px;
  background: rgba(0, 0, 0, 0.3);
  display: table;
  padding: 8px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  border-radius: 4px;
}
.footer h4 span {
  color: #ffee00;
  font-size: 1.6em;
  font-weight: 900;
  font-family: "Arial Black", sans-serif;
  margin: 0 4px;
  display: inline-block;
  transform: scale(1.1) translateY(1px);
  text-shadow: 2px 2px 0 #000;
}
.footer {
  /* 下部レイアウト（2カラム可変） */
}
.footer .lower {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .footer .lower {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
}
.footer {
  /* 左側：お問い合わせ・電話番号ボックス */
}
.footer .box {
  background-color: #fff;
  text-align: center;
  border-radius: 1em;
  padding: var(--space-sm);
}
@media screen and (min-width: 1024px) {
  .footer .box {
    width: 60%;
  }
}
.footer .box p {
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 700;
  margin-bottom: 5px;
  color: #3c3c3c;
}
@media screen and (min-width: 768px) {
  .footer .box p br {
    display: none;
  }
}
.footer .box .tel-num {
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 900;
  color: #FF6A1A;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1;
  margin: 12px 0;
  text-shadow: 2px 2px 0px #dee2e6;
  letter-spacing: 0.02em;
}
.footer .box .time {
  font-size: clamp(14px, 4vw, 21px);
  color: #3c3c3c;
  margin-bottom: 25px;
}
.footer .box .btn {
  margin: 0;
}
.footer .box .btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--color-accent) 40%, var(--color-ylw) 120%);
  color: #fff;
  margin-inline: auto;
  border-radius: 100vmax;
  padding: 10px 52px 10px 32px;
  font-family: var(--ff-ttl);
  font-weight: 700;
  font-size: var(--font-size-lg);
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 0 rgb(204.5, 71.4410480349, 0);
  transition: all 0.2s ease;
  position: relative;
  top: 0;
}
.footer .box .btn a::after {
  content: "▶";
  color: #fff;
  font-size: 0.5em;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
@media (any-hover: hover) {
  .footer .box .btn a:hover {
    top: 2px;
    box-shadow: 0 2px 0 rgb(204.5, 71.4410480349, 0);
  }
}
.footer .right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
  padding-left: 10vw;
}
@media screen and (max-width: 575px) {
  .footer .right {
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .footer .right {
    padding-left: 0;
  }
}
.footer .right ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .footer .right ul {
    align-items: center;
  }
}
.footer .right ul li {
  margin: 0;
  width: 100%;
}
.footer .right ul li a {
  color: #fff;
  font-weight: 700;
  font-family: var(--ff-ttl);
  font-size: 15px;
  display: inline-block;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .footer .right ul li a:hover {
    opacity: 0.7;
  }
}
.footer .right ul .has-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .right ul .has-child > a {
  cursor: default;
}
.footer .right ul .has-child .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 12px;
  margin: 4px 0 0 0;
}
@media screen and (max-width: 1023px) {
  .footer .right ul .has-child .sub-menu {
    padding-left: 0;
  }
}
.footer .right ul .has-child .sub-menu li a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.footer {
  /* コピーライト（最下部） */
}
.footer .footer-copy {
  background: rgb(0, 0, 148.5);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin: 60px 0 0;
  padding: 40px 0 120px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer .footer-copy {
    padding-bottom: 40px;
  }
}
.footer .footer-copy a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
  font-weight: 700;
}
@media (any-hover: hover) {
  .footer .footer-copy a:hover {
    color: #ffee00;
  }
}

/* =========================
  SP固定フッター
========================= */
.sp-fixed-tel {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .sp-fixed-tel {
    display: none;
  }
}
.sp-fixed-tel__link {
  display: block;
  position: relative;
  width: 100%;
  text-decoration: none;
  color: #fff;
  line-height: 1;
}
.sp-fixed-tel__link:active {
  filter: brightness(120%) saturate(120%);
}
.sp-fixed-tel img {
  width: 100%;
  height: auto;
  display: block;
}
.sp-fixed-tel__num {
  position: absolute;
  left: 49%;
  top: 44%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--ff-en);
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
}
.sp-fixed-tel__time {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.pc-fixed-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #e7e7e7;
  padding: 5px 0;
  z-index: 999;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 1024px) {
  .pc-fixed-banner {
    display: block;
    padding: 5px 0;
  }
}
@media screen and (min-width: 1280px) {
  .pc-fixed-banner {
    padding: 12px 0;
  }
}
.pc-fixed-banner__inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.pc-fixed-banner a {
  display: flex;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, filter 0.2s ease;
  font-family: var(--ff-ttl);
}
@media (any-hover: hover) {
  .pc-fixed-banner a:hover {
    transform: translateY(2px);
    filter: brightness(1.08);
  }
}
.pc-fixed-banner .btn-tel {
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #e37654 0%, #b3000b 100%);
  padding: 8px 24px 8px 16px;
  flex: 1;
  max-width: 580px;
}
.pc-fixed-banner .btn-tel__left {
  display: flex;
  align-items: center;
  gap: 0px;
}
.pc-fixed-banner .btn-tel__left .icon {
  width: 44px;
  height: 44px;
  display: inline-block;
  position: relative;
  top: 5px;
}
.pc-fixed-banner .btn-tel__left .icon svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}
.pc-fixed-banner .btn-tel__left .text-area {
  display: flex;
  flex-direction: column;
}
.pc-fixed-banner .btn-tel__left .text-area .main-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 2px;
}
.pc-fixed-banner .btn-tel__left .text-area .sub-text {
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}
.pc-fixed-banner .btn-tel__right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pc-fixed-banner .btn-tel__right .note {
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 2px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
.pc-fixed-banner .btn-tel__right .num {
  font-family: var(--ff-en);
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.pc-fixed-banner .btn-mail {
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #9fe65e 0%, #3a7a22 100%);
  padding: 8px 30px;
  flex: 1;
  max-width: 500px;
}
.pc-fixed-banner .btn-mail .icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
  top: 2px;
}
.pc-fixed-banner .btn-mail .icon svg {
  fill: currentColor;
  width: 100%;
  height: 100%;
}
.pc-fixed-banner .btn-mail .main-text {
  font-size: 26px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* =========================
  pagetop
========================= */
.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 */