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

@media screen and (max-width: 767px) {
  :root {
    --header-height: var(--header-height-mobile);
    --header-clip-right: var(--header-clip-right-mobile);
    --header-clip-right-scrolled: var(--header-clip-right-mobile-scrolled);
  }
}
.p-none {
  padding: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fB {
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

li {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.catch-breadcrumb {
  width: 100%;
  order: -1;
  margin: clamp(16px, 3vw, 24px) 0;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .catch-breadcrumb {
    padding: 0 40px;
    margin-top: 36px;
  }
}
.catch-breadcrumb nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.breadcrumb,
.breadcrumb-current {
  padding: 0;
  font-size: clamp(10px, 1.2rem, 13px);
}

.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: var(--color-link);
  text-decoration: none;
}
@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;
  color: var(--color-text);
}

/* =========================================================
  下層ページ共通 MV (Page First View)
========================================================= */
.page-first-view {
  position: relative;
  padding: clamp(60px, 10vw, 100px) 0;
  color: #333;
  text-align: center;
  overflow: hidden;
  order: -2;
}
@media screen and (min-width: 768px) {
  .page-first-view {
    padding: 100px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
  }
}
.page-first-view {
  /* 背景画像 (HTMLのpictureタグで配置した場合) */
}
.page-first-view__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.page-first-view__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-first-view {
  /* 背景を白っぽく明るくして黒文字を読みやすくするオーバーレイ */
}
.page-first-view::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: -1;
}
.page-first-view .container {
  position: relative;
  z-index: 1;
}
.page-first-view .sub-catch {
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.page-first-view .main-title {
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.page-first-view .lead {
  font-size: clamp(14px, 3.8vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
}
.page-first-view .features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  margin-inline: auto;
  width: 80vw;
  max-width: 680px;
}
@media screen and (min-width: 768px) {
  .page-first-view .features {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
}
.page-first-view .features li {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 24px;
  font-weight: 900;
  font-size: clamp(14px, 3.5vw, 18px);
}
.page-first-view .achievement {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 900;
  line-height: 1;
}
.page-first-view .achievement span {
  color: var(--color-primary);
  font-size: 1.5em;
  margin: 0 6px;
  font-family: var(--ff-en);
  line-height: 1;
}
.page-first-view {
  /* ▼ 共通化 ▼ */
}
.page-first-view .mv-price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}
.page-first-view .mv-price-box .label {
  color: #111;
  font-weight: 900;
  font-size: clamp(16px, 4.5vw, 20px);
}
.page-first-view .mv-price-box .price {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 5.5vw, 28px);
  padding: 12px 32px;
  font-family: var(--ff-en);
  line-height: 1;
}

.page-first-view.ver2, .page-first-view.ver3 {
  padding: clamp(60px, 10vw, 100px) 20px;
  background: url("../images/sub-mv-bg_sp.webp") no-repeat center center/cover;
  text-align: center;
  min-height: 260px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-first-view.ver2, .page-first-view.ver3 {
    background: url("../images/sub-mv-bg_pc.webp") no-repeat center center/cover;
  }
}
.page-first-view.ver2 .container, .page-first-view.ver3 .container {
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.page-first-view.ver2 .txt01, .page-first-view.ver3 .txt01 {
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .page-first-view.ver2 .txt01, .page-first-view.ver3 .txt01 {
    font-size: 36px;
  }
}
.page-first-view.ver2 .txt02, .page-first-view.ver3 .txt02 {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .page-first-view.ver2 .txt02, .page-first-view.ver3 .txt02 {
    font-size: 64px;
  }
}

.page-first-view.ver3 {
  background: url("../images/company-mv-bg_sp.webp") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .page-first-view.ver3 {
    background: url("../images/company-mv-bg_pc.webp") no-repeat center center/cover;
  }
}

/* =========================================================
  Beginner Page First View (初めての方へ MV)
========================================================= */
/* =========================================================
  Price Page (料金について)
========================================================= */
.price-page {
  /* 料金一覧セクション */
}
.price-page .page-price-list {
  padding: clamp(60px, 8vw, 100px) 0;
}
.price-page .page-price-list .page-price-title {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #111;
}
.price-page .page-price-list .page-price-title .en {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: clamp(14px, 3.5vw, 18px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  transform: rotate(-15deg);
}
@media screen and (min-width: 768px) {
  .price-page .page-price-list .page-price-title .en {
    font-size: 21px;
  }
}
.price-page .page-price-list .page-price-title .jp {
  display: block;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .price-page .page-price-list .page-price-title .jp {
    font-size: 45px;
  }
}
.price-page .page-price-list .price-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.price-page .page-price-list .price-col {
  background: #fff;
  border: 2px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  padding: 0;
  color: #111;
}
.price-page .page-price-list .price-col .price-title {
  background: var(--color-primary);
  color: #fff;
  padding: 16px;
  margin: 0;
  font-size: clamp(18px, 4vw, 22px);
  text-align: center;
}
.price-page .page-price-list .price-col img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.price-page .page-price-list .price-col .txt {
  border-bottom: 1px solid var(--color-primary);
  font-size: clamp(13px, 3.5vw, 15px);
  padding: 0 1em 1em;
  margin: 0 15px;
  line-height: 1.5;
  color: #111;
}
@media screen and (min-width: 768px) {
  .price-page .page-price-list .price-col .txt {
    min-height: 5.5em;
  }
}
.price-page .page-price-list .price-col .bottom-box {
  margin-top: auto;
  padding: 0 15px 15px;
}
.price-page .page-price-list .price-col .dl-box dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.price-page .page-price-list .price-col .dl-box dl dt {
  background: var(--color-success);
  color: #fff;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 900;
  border-radius: 4px;
}
.price-page .page-price-list .price-col .dl-box dl dd {
  display: flex;
  align-items: baseline;
  font-weight: 900;
  color: #111;
  font-size: 14px;
  padding-left: 0.5em;
  margin-left: auto;
  line-height: 1.3;
}
.price-page .page-price-list .price-col .num {
  font-size: 2.2em;
  margin-right: 4px;
  color: #111;
  font-family: var(--ff-en);
  line-height: 1;
  display: inline-block;
}

/* =========================================================
  Exterior Wall Painting (外壁塗装 特有の調整)
========================================================= */
.exterior-wall-painting .page-first-view {
  /* ※補足
    HTML側で <div class="page-first-view__bg"> <picture>... を使用している場合は、
    こちらのCSS背景指定は不要（重複）になります。CSSで背景を出す場合はHTMLの __bg を削除してください。
  */
  background: url(../images/painting_title_bg_sp.webp) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .exterior-wall-painting .page-first-view {
    background: url(../images/painting_title_bg_pc.webp) no-repeat center/cover;
  }
}

.area-section, .sos-section {
  padding-top: 40px;
}

/* =========================================================
  Magic Section (魔法の塗料はない)
========================================================= */
.magic-section {
  padding: 60px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(../images/magic_bg.webp) no-repeat center/cover;
}
.magic-section__lead {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 24px;
}
.magic-section {
  /* 強調のグレーボックス（半透過設定） */
}
.magic-section__highlight-box {
  border: 1px solid #333;
  background: rgba(0, 0, 0, 0.24);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 40px;
}
.magic-section__highlight-box p {
  margin-bottom: 0;
}
.magic-section__lead-strong {
  font-size: clamp(20px, 5vw, 33px);
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}
.magic-section__lead-strong .underline {
  display: inline-block;
  border-bottom: 3px double var(--color-primary);
}
.magic-section__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(15px, 3.5vw, 17px);
  line-height: 1.8;
  color: #333;
}
.magic-section__body p {
  margin-bottom: 1.5em;
}

/* =========================================================
  Flow Section (外壁塗装の流れ)
========================================================= */
.flow-section {
  padding: 80px 0;
  background-color: #fff;
}
.flow-section .flow-section-title {
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #111;
  /* 他のタイトルと同様の回転・サイズ指定 */
}
.flow-section .flow-section-title .en {
  position: absolute;
  top: -25px;
  left: -20px;
  font-size: clamp(16px, 4vw, 24px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  transform: rotate(-15deg);
  letter-spacing: 0.05em;
}
.flow-section .flow-section-title .jp {
  display: block;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.flow-section {
  /* グリッドレイアウト（既存） */
}
.flow-section .flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .flow-section .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .flow-section .flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.flow-section .flow-card {
  border: 2px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  position: relative;
}
.flow-section .flow-card__head {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  position: relative;
}
.flow-section .flow-card__head::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: var(--color-primary) transparent transparent transparent;
  z-index: 1;
}
.flow-section .flow-card__head .step {
  display: block;
  font-weight: 900;
  font-size: 14px;
}
.flow-section .flow-card__head .title {
  font-size: 20px;
  font-weight: 900;
  margin: 2px 0 0;
  line-height: 1.1;
}
.flow-section .flow-card__img {
  margin: 0;
}
.flow-section .flow-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
.flow-section .flow-card__text {
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  flex-grow: 1;
}

/* =========================================================
  Pickup Section (共通ピックアップセクション)
========================================================= */
.pickup-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background-color: #f8f9fa;
}
.pickup-section .pickup-section-title {
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  color: #111;
}
.pickup-section .pickup-section-title .en {
  position: absolute;
  top: -25px;
  left: -20px;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  transform: rotate(-15deg);
  letter-spacing: 0.05em;
}
.pickup-section .pickup-section-title .jp {
  display: block;
  font-size: clamp(20px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.pickup-section .pickup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .pickup-section .pickup-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pickup-section .pickup-card {
  background-color: #fff;
  border: 2px solid var(--color-primary);
  display: flex;
  flex-direction: column;
}
.pickup-section .pickup-card__title {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  padding: 15px 10px;
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 900;
  margin: 0;
}
.pickup-section .pickup-card__img {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--color-gray-200);
}
.pickup-section .pickup-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pickup-section .pickup-card__text {
  padding: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  flex-grow: 1;
  margin: 0;
}

/* =========================================================
  Roof Sheet Metal (屋根板金工事 特有スタイル)
========================================================= */
.roof-sheet-metal .page-first-view {
  padding: clamp(60px, 10vw, 100px) 20px;
  background: url("../images/roof-mv-bg_pc.webp") no-repeat center center/cover;
  text-align: center;
  min-height: 260px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .roof-sheet-metal .page-first-view {
    background: url("../images/roof-mv-bg_pc.webp") no-repeat center center/cover;
  }
}
.roof-sheet-metal .page-first-view {
  /* ★ここでページ固有の上書きを行う */
}
.roof-sheet-metal .page-first-view .achievement {
  display: block; /* flexを解除し、<br>による改行を有効化 */
  line-height: 1.4; /* 二行になった際の行間を確保 */
}
.roof-sheet-metal .page-first-view .achievement span {
  vertical-align: baseline; /* flex解除に伴うベースライン調整 */
  position: relative;
  top: 0.05em;
}
.roof-sheet-metal {
  /* ポイントセクションの追加見出し */
}
.roof-sheet-metal .point-section-title {
  margin-bottom: 15px;
}
.roof-sheet-metal .point-lead {
  text-align: center;
  font-size: clamp(18px, 5vw, 30px);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .roof-sheet-metal .point-lead {
    font-size: 44px;
  }
}
.roof-sheet-metal .point-lead span {
  color: var(--color-primary);
  font-size: 1.4em;
}
.roof-sheet-metal .diagnostic-section {
  background: #FAF7F2 url("../images/diagnostic-roof-bg_sp.webp") no-repeat center top/cover;
}
@media screen and (min-width: 768px) {
  .roof-sheet-metal .diagnostic-section {
    background: #FAF7F2 url("../images/diagnostic-roof-bg_pc.webp") no-repeat center center/cover;
    min-height: 600px;
  }
}

/* =========================================================
  Waterproofing Work (防水工事・雨漏り修理)
========================================================= */
.waterproofing-work .page-first-view {
  padding: clamp(60px, 10vw, 100px) 20px;
  /* 新規の背景画像を指定 */
  background: url("../images/waterproof-mv-bg_sp.webp") no-repeat center center/cover;
  text-align: center;
  min-height: 260px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .waterproofing-work .page-first-view {
    background: url("../images/waterproof-mv-bg_pc.webp") no-repeat center center/cover;
  }
}
.waterproofing-work .page-first-view {
  /* .achievement の改行調整 (屋根板金ページと同じ挙動) */
}
.waterproofing-work .page-first-view .achievement {
  display: block;
  line-height: 1.4;
}
.waterproofing-work .page-first-view .achievement span {
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
}
.waterproofing-work {
  /* -------------------------------------
    ポイントセクションの追加見出し
  -------------------------------------- */
}
.waterproofing-work .point-section-title {
  margin-bottom: 15px;
}
.waterproofing-work .point-lead {
  text-align: center;
  font-size: clamp(18px, 5vw, 30px);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .waterproofing-work .point-lead {
    font-size: 44px;
  }
}
.waterproofing-work .point-lead span {
  color: var(--color-primary);
  font-size: 1.4em;
}
.waterproofing-work {
  /* -------------------------------------
    ピックアップセクション（4要素のグリッド調整）
  -------------------------------------- */
}
.waterproofing-work .pickup-section {
  /* 共通で設定されているスタイルを継承し、グリッドの列数だけ上書き */
}
@media screen and (min-width: 768px) {
  .waterproofing-work .pickup-section .pickup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .waterproofing-work .pickup-section .pickup-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================================
  Gutter Repair (雨樋の修理・交換)
========================================================= */
.gutter-repair {
  /* -------------------------------------
     ファーストビューのページ固有オーバーライド
  -------------------------------------- */
}
.gutter-repair .page-first-view {
  padding: clamp(60px, 10vw, 100px) 20px;
  background: url("../images/gutter-mv-bg_sp.webp") no-repeat center center/cover;
  text-align: center;
  min-height: 260px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .gutter-repair .page-first-view {
    background: url("../images/gutter-mv-bg_pc.webp") no-repeat center center/cover;
  }
}
.gutter-repair .page-first-view {
  /* .achievement の改行・ベースライン調整 */
}
.gutter-repair .page-first-view .achievement {
  display: block;
  line-height: 1.4;
}
.gutter-repair .page-first-view .achievement span {
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
}
.gutter-repair {
  /* -------------------------------------
    ポイントセクションの追加見出し
  -------------------------------------- */
}
.gutter-repair .point-section-title {
  margin-bottom: 15px;
}
.gutter-repair .point-lead {
  text-align: center;
  font-size: clamp(18px, 5vw, 30px);
  font-weight: 900;
  color: #111;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .gutter-repair .point-lead {
    font-size: 44px;
  }
}
.gutter-repair .point-lead span {
  color: var(--color-primary);
  font-size: 1.4em;
}
.gutter-repair {
  /* -------------------------------------
    ポイントカード内のリストスタイル調整
  -------------------------------------- */
}
.gutter-repair .point-card .txt-list {
  margin-top: 15px;
}
.gutter-repair .point-card .txt-list li {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
}
.gutter-repair .point-card .txt-list li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .gutter-repair .point-card .txt-list li {
    font-size: 15px;
  }
}

/* =========================================================
  Insurance Section (火災保険)
========================================================= */
.insurance-section {
  padding: 60px 0 150px;
  /* 左右イラストの被りを防ぐための下部余白 */
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  /* =======================================
    左右装飾イラスト
  ======================================= */
}
.insurance-section .insurance-deco-left {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: clamp(140px, 20vw, 270px);
  z-index: 0;
  pointer-events: none;
}
.insurance-section .insurance-deco-right {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: clamp(140px, 20vw, 270px);
  z-index: 0;
  pointer-events: none;
}
.insurance-section .container {
  position: relative;
  z-index: 1;
}
.insurance-section {
  /* =======================================
    タイトル＆吹き出し
  ======================================= */
}
.insurance-section__title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.insurance-section__title .en {
  display: block;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-weight: 900;
  font-size: clamp(16px, 4vw, 20px);
  transform: rotate(-10deg);
  margin-bottom: 4px;
}
.insurance-section__title .jp {
  display: block;
  font-size: clamp(26px, 6vw, 45px);
  font-weight: 900;
}
.insurance-section__title {
  /* タイトル下の吹き出し（インラインSVGで波括弧を描画） */
}
.insurance-section__title::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(150px, 40vw, 200px);
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 50' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10,10 C50,10 80,15 95,40 C100,48 100,48 105,40 C120,15 150,10 190,10'/%3E%3C/svg%3E") no-repeat center/contain;
}
.insurance-section {
  /* =======================================
    キャラクター＆サブタイトル
  ======================================= */
}
.insurance-section__sub-title {
  display: flex;
  justify-content: center;
  align-items: center;
  /* 中央揃えで横に並べる */
  gap: 15px;
  margin-bottom: 0px;
  position: relative;
  z-index: 0;
}
.insurance-section__sub-title .insurance-deco-char {
  width: clamp(70px, 15vw, 100px);
  height: auto;
  display: block;
  position: relative;
  bottom: 0px;
}
.insurance-section__sub-title h3 {
  font-size: clamp(18px, 5.5vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}
.insurance-section {
  /* =======================================
    画像グリッド（隙間・角丸なし）
  ======================================= */
}
.insurance-section .insurance-grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.insurance-section .insurance-card {
  width: 50%;
  /* スマホは2列 */
  position: relative;
  /* キャプションの絶対配置基準 */
}
@media screen and (min-width: 768px) {
  .insurance-section .insurance-card {
    width: 25%;
    /* PCは4列 */
  }
}
.insurance-section .insurance-card__img {
  margin: 0;
}
.insurance-section .insurance-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
.insurance-section .insurance-card__label {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: clamp(12px, 3.5vw, 15px);
  font-weight: 900;
  color: #333;
}
.insurance-section {
  /* =======================================
    テキストボディ
  ======================================= */
}
.insurance-section .insurance-body {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  font-size: clamp(14px, 3.8vw, 18px);
}
@media screen and (min-width: 768px) {
  .insurance-section .insurance-body {
    font-size: 32px;
    line-height: 1.35;
  }
}
.insurance-section .insurance-body__text {
  font-size: clamp(14px, 4vw, 21px);
  font-weight: 700;
  margin-bottom: 2em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .insurance-section .insurance-body__text {
    font-size: 32px;
    line-height: 1.35;
  }
}
.insurance-section .insurance-body {
  /* 「火災保険があります。」の強調部分 */
}
.insurance-section .insurance-body__highlight {
  margin-bottom: 30px;
}
.insurance-section .insurance-body__highlight p {
  font-weight: 900;
  margin-bottom: 10px;
}
.insurance-section .insurance-body__highlight .highlight-wrap {
  display: flex;
  /* ★ テキストの大小にかかわらず下端で揃える設定 */
  align-items: flex-end;
  justify-content: center;
  font-weight: 900;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1; /* ベースラインのズレを防ぐため1に固定 */
}
.insurance-section .insurance-body__highlight .highlight-wrap .highlight-icon {
  width: clamp(30px, 8vw, 50px);
  margin-right: 10px;
  /* ★ アイコンはテキストの下揃えに引っ張られないよう、上下中央を維持 */
  align-self: center;
}
.insurance-section .insurance-body__highlight .highlight-wrap .highlight-main {
  font-size: 1.8em; /* 「火災保険」だけ大きく */
  color: var(--color-primary);
  line-height: 1;
}
.insurance-section .insurance-body {
  /* 詳細テキスト（囲み枠なし） */
}
.insurance-section .insurance-body__detail {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  text-align: left; /* 塊は中央、文字行頭は左揃えの1カラム */
}
.insurance-section .insurance-body__detail p {
  /* ★ ご要望通り、文字サイズをしっかりと大きく調整（最大20px） */
  font-size: clamp(15px, 4.5vw, 21px);
  color: #333;
  font-weight: 700;
  margin: 0;
  line-height: 1.8;
}
.insurance-section .insurance-body__detail .bouten {
  -webkit-text-emphasis: filled dot var(--color-primary);
  text-emphasis: filled dot var(--color-primary);
}
.insurance-section .insurance-body__note {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}
.insurance-section .insurance-body__note p {
  font-size: clamp(15px, 3.8vw, 18px);
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
  Voice Archive Page
========================================================= */
.voice-archive .voice-list-section {
  padding: clamp(40px, 8vw, 80px) 0;
}
.voice-archive .voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .voice-archive .voice-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.voice-archive .voice-card {
  border: 1px solid #d50033;
  padding: 10px;
  position: relative;
}
.voice-archive .voice-card .voice-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 24px;
  font-size: 14px;
  font-weight: 900;
  border-radius: 20px;
  /* ★完全なピル型（角丸） */
  z-index: 2;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  /* ほんの少し影を落として立体感を */
}
.voice-archive .voice-card__img {
  margin: 0 0 15px 0;
  width: 100%;
  aspect-ratio: 16/10;
}
.voice-archive .voice-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice-archive .voice-card__text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.voice-archive .voice-card__text p {
  margin: 0;
}

/* =========================================================
  Works Archive Page (施工実績一覧)
========================================================= */
.works-archive .works-section {
  padding: clamp(40px, 8vw, 80px) 0;
}
.works-archive .works-section .works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .works-archive .works-section .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .works-archive .works-section .works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

/* =========================================================
  Works Single Page (Swiper調整)
========================================================= */
.works-single .works-detail {
  max-width: 800px;
  margin: 0 auto;
}
.works-single .works-head {
  background-color: #537a5d;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.works-single .works-head .works-cat {
  background-color: #333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 30px;
  text-decoration: none;
}
.works-single .works-head .works-title {
  color: #fff;
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  margin: 0;
}
.works-single {
  /* 1枚表示時の画像 */
}
.works-single .works-single-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-single {
  /* スライダー全体 */
}
.works-single .works-slider-wrapper {
  margin-bottom: 30px;
}
.works-single .works-slider-wrapper .works-slider-main {
  width: 100%;
  margin-bottom: 10px;
}
.works-single .works-slider-wrapper .works-slider-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-single .works-slider-wrapper .works-slider-thumb {
  width: 100%;
  box-sizing: border-box;
}
.works-single .works-slider-wrapper .works-slider-thumb .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.works-single .works-slider-wrapper .works-slider-thumb .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.works-single .works-slider-wrapper .works-slider-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.works-single .works-text-area {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.works-single .works-text-area p {
  margin-bottom: 1.5em;
}

.works-nav {
  padding: 16px 0;
}
.works-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.works-nav__item a {
  display: inline-block;
  padding: 8px 16px;
  color: var(--color-text);
  font-weight: 700;
  font-size: clamp(14px, 3.5vw, 16px);
  text-decoration: none;
  transition: opacity 0.3s;
}
.works-nav__item a:hover {
  opacity: 0.7;
}
.works-nav__archive a {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-base);
}

/* =========================================================
  Company Page
========================================================= */
.company .company-features {
  padding: clamp(40px, 8vw, 80px) 0;
}
.company .company-features .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 20px;
}
@media screen and (min-width: 768px) {
  .company .company-features .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.company .company-features .feature-col .feature-img {
  background-color: rgb(255, 248.25, 216.75);
  position: relative;
  margin: 0 0 20px;
}
.company .company-features .feature-col .feature-img .upper {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--color-primary);
  color: #fff;
  width: clamp(60px, 15vw, 80px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.2;
  text-align: center;
  z-index: 2;
}
.company .company-features .feature-col .feature-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.company .company-features .feature-col .feature-img .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.4;
  margin: 0;
}
.company .company-features .feature-col .feature-img .bottom span {
  color: var(--color-ylw);
  font-size: 1.4em;
  margin: 0 2px;
}
.company .company-features .feature-col .feature-txt {
  font-size: clamp(14px, 3.5vw, 15px);
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}
.company {
  /* -------------------------------------
     Message (代表挨拶)
  -------------------------------------- */
}
.company .company-greeting {
  background: #f4f4f4;
  padding: clamp(60px, 8vw, 100px) 0;
}
.company .company-greeting .title {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}
.company .company-greeting .title .en {
  display: block;
  font-size: clamp(16px, 4vw, 22px);
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--ff-en);
  margin-bottom: 4px;
}
.company .company-greeting .title .jp {
  display: block;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  letter-spacing: 0.05em;
}
.company .company-greeting .greeting-block {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .company .company-greeting .greeting-block {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
}
.company .company-greeting .greeting-block .text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company .company-greeting .greeting-block .text {
    width: 60%;
  }
}
.company .company-greeting .greeting-block .text h3 {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.6;
  color: var(--color-primary);
}
.company .company-greeting .greeting-block .text p {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  margin-bottom: 1.5em;
}
.company .company-greeting .greeting-block .img {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .company .company-greeting .greeting-block .img {
    width: 40%;
  }
}
.company .company-greeting .greeting-block .img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5em;
}
.company {
  /* -------------------------------------
     Outline (会社概要詳細)
  -------------------------------------- */
}
.company .company-outline {
  padding: clamp(60px, 8vw, 100px) 0;
}
.company .company-outline .line-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(30px, 6vw, 50px);
  position: relative;
  padding-bottom: 16px;
}
.company .company-outline .line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 3px;
  background-color: var(--color-ylw);
}
.company .company-outline .outline-flex {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .company .company-outline .outline-flex {
    flex-direction: row;
    gap: 40px;
  }
}
.company .company-outline .outline-flex .text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .company .company-outline .outline-flex .text {
    width: 60%;
  }
}
.company .company-outline .outline-flex .text dl {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  margin: 0;
}
.company .company-outline .outline-flex .text dl:first-of-type {
  border-top: 1px solid var(--color-border);
}
.company .company-outline .outline-flex .text dl dt {
  width: 90px;
  font-weight: 900;
  color: var(--color-secondary);
  font-size: clamp(14px, 3.5vw, 16px);
  padding: 0;
}
@media screen and (min-width: 768px) {
  .company .company-outline .outline-flex .text dl dt {
    width: 120px;
  }
}
.company .company-outline .outline-flex .text dl dd {
  width: calc(100% - 90px);
  margin: 0;
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .company .company-outline .outline-flex .text dl dd {
    width: calc(100% - 120px);
  }
}
.company .company-outline .outline-flex .text dl dd small {
  font-size: 11px;
  color: var(--color-muted);
}
.company .company-outline .outline-flex .img {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .company .company-outline .outline-flex .img {
    width: 40%;
  }
}
.company .company-outline .outline-flex .img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5em;
}

/* =========================================================
  Contact Page & Forms (フォーム関連統合)
========================================================= */
/* フォーム系コンテナの共通幅設定 */
.contact-container,
.contact-privacy,
.privacy-container {
  max-width: 860px;
  margin-inline: auto;
}

.contact-privacy {
  background: #fff;
}

.contact .contact-tel, .thanks .contact-tel {
  padding: clamp(40px, 8vw, 80px) 20px;
  text-align: center;
  background: #f4f4f4;
}
.contact .contact-tel .large, .thanks .contact-tel .large {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
.contact .contact-tel .tel-link, .thanks .contact-tel .tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(28px, 7vw, 48px);
  font-weight: 900;
  color: var(--color-primary); /* 黒（#333）からプライマリーカラー（赤）に変更 */
  text-decoration: none;
  margin-bottom: 16px;
  font-family: serif;
}
.contact .contact-tel .tel-link svg, .thanks .contact-tel .tel-link svg {
  width: clamp(30px, 6vw, 45px);
  height: clamp(30px, 6vw, 45px); /* height: auto; を廃止し、アスペクト比崩れを防止 */
  flex-shrink: 0;
  fill: var(--color-primary); /* 念のためCSS側でも赤色を強制 */
}
.contact .contact-tel .small, .thanks .contact-tel .small {
  font-size: clamp(13px, 3.2vw, 15px);
  color: #333;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
}
.contact .contact-form,
.contact .contact-block, .thanks .contact-form,
.thanks .contact-block {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(40px, 8vw, 80px) 20px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .contact .contact-form,
  .contact .contact-block, .thanks .contact-form,
  .thanks .contact-block {
    width: 95vw;
    margin-bottom: 60px;
  }
}
.contact .contact-form .line-title,
.contact .contact-block .line-title, .thanks .contact-form .line-title,
.thanks .contact-block .line-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 16px;
}
.contact .contact-form .line-title::after,
.contact .contact-block .line-title::after, .thanks .contact-form .line-title::after,
.thanks .contact-block .line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 3px;
  background-color: var(--color-ylw);
}
.contact .contact-form .add,
.contact .contact-block .add, .thanks .contact-form .add,
.thanks .contact-block .add {
  text-align: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 32px;
}
.contact .contact-form .wpcf7 p,
.contact .contact-block .wpcf7 p, .thanks .contact-form .wpcf7 p,
.thanks .contact-block .wpcf7 p {
  display: block !important;
  margin: 0 !important;
}
.contact .contact-form .wpcf7 .form-row,
.contact .contact-block .wpcf7 .form-row, .thanks .contact-form .wpcf7 .form-row,
.thanks .contact-block .wpcf7 .form-row {
  padding: 16px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-sizing: border-box;
  margin-inline: -20px;
  border: none;
}
@media screen and (max-width: 575px) {
  .contact .contact-form .wpcf7 .form-row,
  .contact .contact-block .wpcf7 .form-row, .thanks .contact-form .wpcf7 .form-row,
  .thanks .contact-block .wpcf7 .form-row {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}
@media screen and (min-width: 768px) {
  .contact .contact-form .wpcf7 .form-row,
  .contact .contact-block .wpcf7 .form-row, .thanks .contact-form .wpcf7 .form-row,
  .thanks .contact-block .wpcf7 .form-row {
    margin-inline: -28px;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
  }
}
.contact .contact-form .wpcf7 .form-row:nth-child(odd),
.contact .contact-block .wpcf7 .form-row:nth-child(odd), .thanks .contact-form .wpcf7 .form-row:nth-child(odd),
.thanks .contact-block .wpcf7 .form-row:nth-child(odd) {
  background: var(--color-gray-1);
}
.contact .contact-form .wpcf7 .form-row__label,
.contact .contact-block .wpcf7 .form-row__label, .thanks .contact-form .wpcf7 .form-row__label,
.thanks .contact-block .wpcf7 .form-row__label {
  font-weight: 700;
  font-size: clamp(14px, 3.5vw, 16px);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .contact .contact-form .wpcf7 .form-row__label,
  .contact .contact-block .wpcf7 .form-row__label, .thanks .contact-form .wpcf7 .form-row__label,
  .thanks .contact-block .wpcf7 .form-row__label {
    flex: 0 0 220px;
  }
}
.contact .contact-form .wpcf7 .form-row__label span.required,
.contact .contact-block .wpcf7 .form-row__label span.required, .thanks .contact-form .wpcf7 .form-row__label span.required,
.thanks .contact-block .wpcf7 .form-row__label span.required {
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 100vmax;
  background-color: var(--color-primary);
  height: 1.6em;
  padding: 0 0.8em;
}
.contact .contact-form .wpcf7 .form-row__field,
.contact .contact-block .wpcf7 .form-row__field, .thanks .contact-form .wpcf7 .form-row__field,
.thanks .contact-block .wpcf7 .form-row__field {
  margin: 0;
  flex: 1;
  width: 100%;
}
.contact .contact-form .wpcf7 .form-row__field .wpcf7-form-control-wrap,
.contact .contact-block .wpcf7 .form-row__field .wpcf7-form-control-wrap, .thanks .contact-form .wpcf7 .form-row__field .wpcf7-form-control-wrap,
.thanks .contact-block .wpcf7 .form-row__field .wpcf7-form-control-wrap {
  display: block;
}
.contact .contact-form .wpcf7 .form-row__field--address,
.contact .contact-block .wpcf7 .form-row__field--address, .thanks .contact-form .wpcf7 .form-row__field--address,
.thanks .contact-block .wpcf7 .form-row__field--address {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact .contact-form .wpcf7 .form-row__field--address input,
.contact .contact-block .wpcf7 .form-row__field--address input, .thanks .contact-form .wpcf7 .form-row__field--address input,
.thanks .contact-block .wpcf7 .form-row__field--address input {
  margin-top: 0.6em;
}
.contact .contact-form .wpcf7 .form-row__field--address br,
.contact .contact-block .wpcf7 .form-row__field--address br, .thanks .contact-form .wpcf7 .form-row__field--address br,
.thanks .contact-block .wpcf7 .form-row__field--address br {
  display: none !important;
}
.contact .contact-form .wpcf7 .form-row__field--address .wpcf7-form-control-wrap,
.contact .contact-block .wpcf7 .form-row__field--address .wpcf7-form-control-wrap, .thanks .contact-form .wpcf7 .form-row__field--address .wpcf7-form-control-wrap,
.thanks .contact-block .wpcf7 .form-row__field--address .wpcf7-form-control-wrap {
  width: 100%;
}
.contact .contact-form .wpcf7 .form-row__field--address .wpcf7-form-control-wrap[data-name=zip],
.contact .contact-block .wpcf7 .form-row__field--address .wpcf7-form-control-wrap[data-name=zip], .thanks .contact-form .wpcf7 .form-row__field--address .wpcf7-form-control-wrap[data-name=zip],
.thanks .contact-block .wpcf7 .form-row__field--address .wpcf7-form-control-wrap[data-name=zip] {
  max-width: 240px;
}
.contact .contact-form .wpcf7 .privacy-acceptance,
.contact .contact-block .wpcf7 .privacy-acceptance, .thanks .contact-form .wpcf7 .privacy-acceptance,
.thanks .contact-block .wpcf7 .privacy-acceptance {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.contact .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item,
.contact .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item, .thanks .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item,
.thanks .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item {
  margin: 0;
  display: block;
}
.contact .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item label,
.contact .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item label, .thanks .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item label,
.thanks .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  cursor: pointer;
}
.contact .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item label input[type=checkbox],
.contact .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item label input[type=checkbox], .thanks .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item label input[type=checkbox],
.thanks .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item label input[type=checkbox] {
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.contact .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item label .wpcf7-list-item-label,
.contact .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item label .wpcf7-list-item-label, .thanks .contact-form .wpcf7 .privacy-acceptance .wpcf7-list-item label .wpcf7-list-item-label,
.thanks .contact-block .wpcf7 .privacy-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.5;
}
.contact .contact-form .wpcf7 .form-input,
.contact .contact-form .wpcf7 .form-textarea,
.contact .contact-form .wpcf7 .wpcf7-text,
.contact .contact-form .wpcf7 .wpcf7-textarea,
.contact .contact-form .wpcf7 .wpcf7-tel,
.contact .contact-form .wpcf7 .wpcf7-email,
.contact .contact-block .wpcf7 .form-input,
.contact .contact-block .wpcf7 .form-textarea,
.contact .contact-block .wpcf7 .wpcf7-text,
.contact .contact-block .wpcf7 .wpcf7-textarea,
.contact .contact-block .wpcf7 .wpcf7-tel,
.contact .contact-block .wpcf7 .wpcf7-email, .thanks .contact-form .wpcf7 .form-input,
.thanks .contact-form .wpcf7 .form-textarea,
.thanks .contact-form .wpcf7 .wpcf7-text,
.thanks .contact-form .wpcf7 .wpcf7-textarea,
.thanks .contact-form .wpcf7 .wpcf7-tel,
.thanks .contact-form .wpcf7 .wpcf7-email,
.thanks .contact-block .wpcf7 .form-input,
.thanks .contact-block .wpcf7 .form-textarea,
.thanks .contact-block .wpcf7 .wpcf7-text,
.thanks .contact-block .wpcf7 .wpcf7-textarea,
.thanks .contact-block .wpcf7 .wpcf7-tel,
.thanks .contact-block .wpcf7 .wpcf7-email {
  width: 100%;
  display: block;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #bdbdbd;
  border-radius: var(--border-radius-base);
  background: #fff;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.contact .contact-form .wpcf7 .form-input:focus,
.contact .contact-form .wpcf7 .form-textarea:focus,
.contact .contact-form .wpcf7 .wpcf7-text:focus,
.contact .contact-form .wpcf7 .wpcf7-textarea:focus,
.contact .contact-form .wpcf7 .wpcf7-tel:focus,
.contact .contact-form .wpcf7 .wpcf7-email:focus,
.contact .contact-block .wpcf7 .form-input:focus,
.contact .contact-block .wpcf7 .form-textarea:focus,
.contact .contact-block .wpcf7 .wpcf7-text:focus,
.contact .contact-block .wpcf7 .wpcf7-textarea:focus,
.contact .contact-block .wpcf7 .wpcf7-tel:focus,
.contact .contact-block .wpcf7 .wpcf7-email:focus, .thanks .contact-form .wpcf7 .form-input:focus,
.thanks .contact-form .wpcf7 .form-textarea:focus,
.thanks .contact-form .wpcf7 .wpcf7-text:focus,
.thanks .contact-form .wpcf7 .wpcf7-textarea:focus,
.thanks .contact-form .wpcf7 .wpcf7-tel:focus,
.thanks .contact-form .wpcf7 .wpcf7-email:focus,
.thanks .contact-block .wpcf7 .form-input:focus,
.thanks .contact-block .wpcf7 .form-textarea:focus,
.thanks .contact-block .wpcf7 .wpcf7-text:focus,
.thanks .contact-block .wpcf7 .wpcf7-textarea:focus,
.thanks .contact-block .wpcf7 .wpcf7-tel:focus,
.thanks .contact-block .wpcf7 .wpcf7-email:focus {
  border-color: var(--color-primary);
  outline: none;
}
.contact .contact-form .wpcf7 .form-input::-moz-placeholder, .contact .contact-form .wpcf7 .form-textarea::-moz-placeholder, .contact .contact-form .wpcf7 .wpcf7-text::-moz-placeholder, .contact .contact-form .wpcf7 .wpcf7-textarea::-moz-placeholder, .contact .contact-form .wpcf7 .wpcf7-tel::-moz-placeholder, .contact .contact-form .wpcf7 .wpcf7-email::-moz-placeholder, .contact .contact-block .wpcf7 .form-input::-moz-placeholder, .contact .contact-block .wpcf7 .form-textarea::-moz-placeholder, .contact .contact-block .wpcf7 .wpcf7-text::-moz-placeholder, .contact .contact-block .wpcf7 .wpcf7-textarea::-moz-placeholder, .contact .contact-block .wpcf7 .wpcf7-tel::-moz-placeholder, .contact .contact-block .wpcf7 .wpcf7-email::-moz-placeholder, .thanks .contact-form .wpcf7 .form-input::-moz-placeholder, .thanks .contact-form .wpcf7 .form-textarea::-moz-placeholder, .thanks .contact-form .wpcf7 .wpcf7-text::-moz-placeholder, .thanks .contact-form .wpcf7 .wpcf7-textarea::-moz-placeholder, .thanks .contact-form .wpcf7 .wpcf7-tel::-moz-placeholder, .thanks .contact-form .wpcf7 .wpcf7-email::-moz-placeholder, .thanks .contact-block .wpcf7 .form-input::-moz-placeholder, .thanks .contact-block .wpcf7 .form-textarea::-moz-placeholder, .thanks .contact-block .wpcf7 .wpcf7-text::-moz-placeholder, .thanks .contact-block .wpcf7 .wpcf7-textarea::-moz-placeholder, .thanks .contact-block .wpcf7 .wpcf7-tel::-moz-placeholder, .thanks .contact-block .wpcf7 .wpcf7-email::-moz-placeholder {
  color: #999;
  font-weight: normal;
  opacity: 1;
}
.contact .contact-form .wpcf7 .form-input::placeholder,
.contact .contact-form .wpcf7 .form-textarea::placeholder,
.contact .contact-form .wpcf7 .wpcf7-text::placeholder,
.contact .contact-form .wpcf7 .wpcf7-textarea::placeholder,
.contact .contact-form .wpcf7 .wpcf7-tel::placeholder,
.contact .contact-form .wpcf7 .wpcf7-email::placeholder,
.contact .contact-block .wpcf7 .form-input::placeholder,
.contact .contact-block .wpcf7 .form-textarea::placeholder,
.contact .contact-block .wpcf7 .wpcf7-text::placeholder,
.contact .contact-block .wpcf7 .wpcf7-textarea::placeholder,
.contact .contact-block .wpcf7 .wpcf7-tel::placeholder,
.contact .contact-block .wpcf7 .wpcf7-email::placeholder, .thanks .contact-form .wpcf7 .form-input::placeholder,
.thanks .contact-form .wpcf7 .form-textarea::placeholder,
.thanks .contact-form .wpcf7 .wpcf7-text::placeholder,
.thanks .contact-form .wpcf7 .wpcf7-textarea::placeholder,
.thanks .contact-form .wpcf7 .wpcf7-tel::placeholder,
.thanks .contact-form .wpcf7 .wpcf7-email::placeholder,
.thanks .contact-block .wpcf7 .form-input::placeholder,
.thanks .contact-block .wpcf7 .form-textarea::placeholder,
.thanks .contact-block .wpcf7 .wpcf7-text::placeholder,
.thanks .contact-block .wpcf7 .wpcf7-textarea::placeholder,
.thanks .contact-block .wpcf7 .wpcf7-tel::placeholder,
.thanks .contact-block .wpcf7 .wpcf7-email::placeholder {
  color: #999;
  font-weight: normal;
  opacity: 1;
}
.contact .contact-form .wpcf7 .wpcf7-textarea,
.contact .contact-block .wpcf7 .wpcf7-textarea, .thanks .contact-form .wpcf7 .wpcf7-textarea,
.thanks .contact-block .wpcf7 .wpcf7-textarea {
  min-height: 160px;
  resize: vertical;
}
.contact .contact-form .wpcf7 .form-submit,
.contact .contact-block .wpcf7 .form-submit, .thanks .contact-form .wpcf7 .form-submit,
.thanks .contact-block .wpcf7 .form-submit {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact .contact-form .wpcf7 .wpcf7-submit,
.contact .contact-block .wpcf7 .wpcf7-submit, .thanks .contact-form .wpcf7 .wpcf7-submit,
.thanks .contact-block .wpcf7 .wpcf7-submit {
  width: 100%;
  max-width: 260px;
  min-height: 56px;
  padding: 12px 28px;
  border: none;
  border-radius: 100vmax;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  -webkit-appearance: none;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-ylw) 120%);
}
@media (any-hover: hover) {
  .contact .contact-form .wpcf7 .wpcf7-submit:hover,
  .contact .contact-block .wpcf7 .wpcf7-submit:hover, .thanks .contact-form .wpcf7 .wpcf7-submit:hover,
  .thanks .contact-block .wpcf7 .wpcf7-submit:hover {
    opacity: 0.85;
    transform: translateY(-1px);
  }
}

.thanks {
  padding-bottom: 100px;
}
.thanks .contact-form {
  text-align: center;
  padding: clamp(40px, 5vw, 60px) 20px;
  border: none;
}
.thanks .contact-form p.thanks-text {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  font-weight: 700;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 0;
  margin-top: 3em;
}
.thanks .contact-form .btn {
  margin-top: 40px;
  margin-inline: auto;
}
.thanks .contact-form .btn a {
  display: inline-block;
  width: 300px;
  padding: 10px 1.6em;
  font-size: 16px;
  margin: 0 auto;
}

/* =========================================================
  Privacy Policy Page Style
========================================================= */
.privacy .section-privacy {
  padding: clamp(40px, 8vw, 80px) 0;
}
.privacy .section-privacy .container {
  max-width: 800px;
}
.privacy .section-privacy h3 {
  font-size: clamp(18px, 4.5vw, 22px);
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--color-primary);
}
.privacy .section-privacy p {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  margin-bottom: 20px;
}
.privacy .section-privacy ul {
  margin: 0 0 20px 20px;
}
.privacy .section-privacy ul li {
  font-size: clamp(14px, 3.5vw, 16px);
  line-height: 1.8;
  margin-bottom: 10px;
  list-style: disc;
}

.p-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding: var(--space-lg) 0;
}

.p-404__inner {
  width: 100%;
}

.p-404__box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.p-404__ttl {
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.p-404__lead {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.p-404__text {
  font-size: var(--font-size-sm);
  color: var(--color-gray-600);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.p-404__btns {
  display: flex;
  justify-content: center;
  background-color: rgb(255, 196.9523809524, 175.5);
  border-radius: 100vmax;
  font-weight: bold;
  font-size: var(--font-size-sm);
  height: 2em;
  line-height: 2em;
  width: 10em;
  margin-inline: auto;
}/*# sourceMappingURL=pages.css.map */