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

*, *::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;
}

.top #mv {
  position: relative;
  min-height: 50vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top #mv {
    min-height: unset;
  }
}
.top #mv .hero {
  width: 100%;
  height: auto;
  min-height: 480px;
  padding: 0;
  margin-inline: auto;
  overflow: visible;
  position: relative;
  z-index: 50;
  background: url(../images/top_mv_bg_sp.webp) center -20px no-repeat;
  background-size: 130% auto;
}
@media screen and (min-width: 768px) {
  .top #mv .hero {
    background-image: url(../images/top_mv_bg_pc.webp);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 450px;
  }
}
.top #mv .hero .hero-main {
  margin-inline: auto;
  padding: 15px 20px 0px;
}
@media screen and (min-width: 1024px) {
  .top #mv .hero .hero-main {
    padding: 0 20px 0px;
    max-width: 1024px;
  }
}
@media screen and (min-width: 1280px) {
  .top #mv .hero .hero-main {
    max-width: 1200px;
  }
}
.top #mv .hero .hero-main picture, .top #mv .hero .hero-main img {
  margin-inline: auto;
}
.top #mv .hero .hero-main .wide {
  position: relative;
}
.top #mv .hero .hero-main .wide::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.8);
  display: block;
  height: 26vw;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  z-index: -1;
  position: absolute;
  top: 7.5vw;
}
@media screen and (min-width: 1024px) {
  .top #mv .hero .hero-main .wide::before {
    top: 6vw;
    max-height: 350px;
  }
}
.top .no1 {
  padding: 56px 0;
}
@media screen and (min-width: 768px) {
  .top .no1 {
    padding: 80px 0;
  }
}
.top .no1 {
  background: linear-gradient(135deg, #1e77bb 0%, #45A5D8 100%);
  /* background: linear-gradient(180deg,
    #51a8cc 10%,
    $primary 80%
  ); */
}
.top .no1 h2.title {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  font-family: var(--ff-ttl);
  text-wrap: balance;
  font-size: 6vw;
  font-weight: 700;
  line-height: 1.4;
  color: #216bbd;
  text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}
@media screen and (min-width: 1024px) {
  .top .no1 h2.title {
    font-size: min(48px, 5vw);
  }
}
.top .no1 img {
  margin: 0 auto 20px;
}
.top section#concept {
  background-color: rgba(20, 102, 255, 0.2);
  padding-bottom: var(--space-md);
}
.top section#concept .container {
  position: relative;
  z-index: 2;
  margin: 0 auto 60px;
  padding: 0 var(--space-md);
}
.top section#concept .concept__content {
  position: relative;
  margin-inline: auto;
}
.top section#concept .concept__content .title {
  padding: 3em 3em 9em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top section#concept .concept__content .title {
    padding-bottom: 12em;
  }
}
.top section#concept .concept__content .title img {
  display: grid;
  width: 60vw;
  position: absolute;
  top: 1.5em;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .top section#concept .concept__content .title img {
    max-width: 320px;
    top: 3.5em;
  }
}
.top section#concept .concept__content .title h2 {
  text-align: center;
  font-family: var(--ff-ttl, "Noto Sans JP", sans-serif);
  color: var(--color-primary);
  line-height: 1;
  text-shadow: rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px, rgb(255, 240, 0) 0px 0px 5px;
  position: relative;
  z-index: 1;
}
.top section#concept .concept__content .concept-heading {
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-inline: auto;
  margin-top: -60px;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .top section#concept .concept__content .concept-heading {
    margin-top: -100px;
    max-width: 960px;
  }
}
.top section#concept .concept__content .concept-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top section#concept .concept__content .concept-list .concept-list__box {
  position: relative;
  min-height: 116px;
  margin-inline: auto;
  margin-bottom: 2em;
  container-type: inline-size;
}
@media screen and (min-width: 1024px) {
  .top section#concept .concept__content .concept-list .concept-list__box {
    max-width: 960px;
  }
}
.top section#concept .concept__content .concept-list .concept-list__catch {
  font-family: var(--ff-ttl);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.3;
  font-size: var(--font-size-sm);
  letter-spacing: 0.05em;
  width: 11.5em;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  margin-block: auto;
}
@container (min-width: 350px) {
  .top section#concept .concept__content .concept-list .concept-list__catch {
    left: 18px;
  }
}
@media screen and (min-width: 768px) {
  .top section#concept .concept__content .concept-list .concept-list__catch {
    width: 51%;
    left: 10px;
    letter-spacing: 1px;
    font-size: var(--font-size-lg);
  }
}
@media screen and (min-width: 1024px) {
  .top section#concept .concept__content .concept-list .concept-list__catch {
    font-size: var(--font-size-xl);
  }
}
.top section#concept .concept__content [class^=concept-txt] {
  margin-bottom: 2em;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .top section#concept .concept__content [class^=concept-txt] {
    text-align: center;
  }
}
.top section#concept .concept__content .concept-txt2 {
  margin-bottom: 0;
}
.top section#concept .concept__content .concept-txt2 strong {
  color: var(--color-primary);
  font-size: 1.2em;
  margin-bottom: 5px;
  display: block;
  text-align: center;
}
.top .cost {
  padding: 56px 0;
}
@media screen and (min-width: 768px) {
  .top .cost {
    padding: 80px 0;
  }
}
.top .top-price {
  background-color: #9dd8f7;
  background-image: repeating-linear-gradient(-45deg, rgb(4.7, 92.0387234043, 255), rgb(4.7, 92.0387234043, 255) 2px, rgb(35.3, 111.9612765957, 255) 2px, rgb(35.3, 111.9612765957, 255) 4px);
  padding: var(--space-xl) 0;
  margin: 0;
}
.top .top-price__title {
  margin: 0 0 40px 0;
  padding: 0;
  text-align: center;
  color: rgb(0, 0, 97.5);
  font-weight: 900;
  font-family: var(--ff-ttl);
  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 3px #fff, 3px -3px 3px #fff, -3px 3px 3px #fff, 3px 3px 3px #fff;
}
@media (min-width: 768px) {
  .top .top-price__title {
    text-shadow: 0 4px 0 #fff, 4px 0 0 #fff, 0 -4px 0 #fff, -4px 0 0 #fff, -4px -4px 0 #fff, 4px -4px 0 #fff, -4px 4px 0 #fff, 4px 4px 0 #fff, -6px -6px 6px #fff, 6px -6px 6px #fff, -6px 6px 6px #fff, 6px 6px 6px #fff;
  }
}
@media screen and (min-width: 768px) {
  .top .top-price__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .top .top-price__title {
    font-size: 36px;
  }
}
.top .top-price__block1 {
  margin: 0 0 40px 0;
  padding: 0;
}
.top .top-price__list-2col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-2col {
    flex-direction: row;
    align-items: stretch;
  }
}
.top .top-price__list-2col li {
  background-color: #ffffff;
  border: 3px solid rgb(0, 0, 97.5);
  margin: 0;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-2col li {
    border-width: 5px;
    padding: 40px;
  }
}
.top .top-price__list-2col li {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-2col li {
    width: 50%;
  }
}
.top .top-price__list-2col li h3 {
  font-family: var(--ff-ttl);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: #ffffff;
  background-color: rgb(0, 0, 97.5);
  text-align: center;
  margin: -30px -30px 20px -30px;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-2col li h3 {
    margin: -40px -40px 20px -40px;
    padding: 20px 10px;
  }
}
.top .top-price__list-2col li .img-wrap {
  margin: 0 0 20px 0;
  padding: 0;
}
.top .top-price__list-2col li .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
.top .top-price__list-2col li .desc {
  font-size: var(--font-size-text, 15px);
  color: #000000;
  line-height: 1.8;
  margin: 0 0 20px 0;
  padding: 0;
}
.top .top-price__list-2col li .price-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: auto 0 20px 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .top .top-price__list-2col li .price-area {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
}
.top .top-price__list-2col li .btn-wrap {
  text-align: center;
  margin: 0;
  padding: 0;
}
.top .top-price__block2 {
  margin: 0 0 40px 0;
  padding: 0;
}
.top .top-price__list-3col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-3col {
    flex-direction: row;
    align-items: stretch;
  }
}
.top .top-price__list-3col li {
  background-color: #ffffff;
  border: 3px solid rgb(0, 0, 97.5);
  margin: 0;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-3col li {
    border-width: 5px;
    padding: 40px;
  }
}
.top .top-price__list-3col li {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-3col li {
    width: 33.3333333333%;
    padding: 30px;
  }
}
.top .top-price__list-3col li h3 {
  font-family: var(--ff-ttl);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: rgb(0, 0, 97.5);
  text-align: center;
  margin: -30px -30px 20px -30px;
  padding: 15px 10px;
}
@media screen and (min-width: 768px) {
  .top .top-price__list-3col li h3 {
    margin: -30px -30px 20px -30px;
    padding: 15px 10px;
  }
}
.top .top-price__list-3col li .img-wrap {
  margin: 0 0 20px 0;
  padding: 0;
}
.top .top-price__list-3col li .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
.top .top-price__list-3col li .price-area {
  margin: auto 0 0 0;
  padding: 0;
}
.top .top-price .price-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
.top .top-price .price-text .icon {
  margin: 0 3px 0 0;
  padding: 0;
  width: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.top .top-price .price-text .icon img {
  height: 35px;
  width: auto;
  display: block;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .top .top-price .price-text .icon img {
    height: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .top .top-price .price-text .icon img {
    height: 40px;
  }
}
.top .top-price .price-text .num {
  font-family: var(--ff-en);
  font-size: clamp(25px, 10vw, 40px);
  font-weight: 900;
  color: var(--color-red1, #f50000);
  line-height: 1;
  letter-spacing: 0.02em;
  margin: 0 5px 0 0;
  padding: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .top .top-price .price-text .num {
    font-size: 40px;
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 1024px) {
  .top .top-price .price-text .num {
    font-size: 45px;
  }
}
.top .top-price .price-text .unit {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  display: inline-block;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .top .top-price .price-text .unit {
    font-size: 11px;
  }
}
@media screen and (min-width: 1024px) {
  .top .top-price .price-text .unit {
    font-size: 14px;
  }
}
.top .top-price .btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent, #FF6A1A);
  color: #ffffff;
  font-family: var(--ff-ttl);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  text-decoration: none;
  border: 3px solid #ffffff;
  border-radius: 100vmax;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  transition: opacity 0.2s ease;
}
.top .top-price .btn-more::after {
  content: "▲";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-left: 12px;
  transform: rotate(90deg);
  font-size: 9px;
  color: var(--color-accent, #FF6A1A);
  position: relative;
  right: -4.5em;
}
@media screen and (min-width: 768px) {
  .top .top-price .btn-more::after {
    right: -2.5em;
  }
}
@media screen and (min-width: 1024px) {
  .top .top-price .btn-more::after {
    right: -4.5em;
  }
}
@media (any-hover: hover) {
  .top .top-price .btn-more:hover {
    opacity: 0.8;
  }
}
.top .top-price__block3 {
  margin: 0 0 40px 0;
  padding: 0;
}
.top .top-price .investigation-box {
  background-color: #ffffff;
  border: 3px solid rgb(0, 0, 97.5);
  margin: 0;
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .top .top-price .investigation-box {
    border-width: 5px;
    padding: 40px;
  }
}
.top .top-price .investigation-box h3 {
  font-family: var(--ff-ttl);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: rgb(0, 0, 97.5);
  text-align: center;
  margin: 0 0 30px 0;
  padding: 0;
}
.top .top-price .investigation-box .investigation-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .top .top-price .investigation-box .investigation-content {
    flex-direction: row;
    align-items: flex-start;
  }
}
.top .top-price .investigation-box .investigation-content .img-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .top .top-price .investigation-box .investigation-content .img-wrap {
    width: 40%;
    flex-shrink: 0;
  }
}
.top .top-price .investigation-box .investigation-content .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
.top .top-price .investigation-box .investigation-content .text-wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .top .top-price .investigation-box .investigation-content .text-wrap {
    flex-grow: 1;
  }
}
.top .top-price .investigation-box .investigation-content .text-wrap p {
  font-size: var(--font-size-text, 15px);
  line-height: 1.8;
  color: #000000;
  margin: 0 0 1em 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .top .top-price .investigation-box .investigation-content .text-wrap p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.top .top-price .investigation-box .investigation-content .text-wrap p:last-child {
  margin-bottom: 0;
}
.top .top-price .investigation-box .free-badge {
  text-align: center;
  margin: 20px 0 0 0;
  padding: 0;
}
.top .top-price .investigation-box .free-badge img {
  max-width: 760px;
  width: 80vw;
  height: auto;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.top .top-price__block4 {
  margin: 0;
  padding: 0;
}
.top .top-price__banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .top .top-price__banners {
    flex-direction: row;
    align-items: stretch;
  }
}
.top .top-price__banners li {
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top .top-price__banners li {
    width: 33.3333333333%;
  }
}
.top .top-price__banners li a {
  display: block;
  margin: 0;
  padding: 0;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .top .top-price__banners li a:hover {
    opacity: 0.8;
  }
}
.top .top-price__banners li a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
.top {
  /* =========================================================
  SERVICE
  ========================================================= */
}
.top #service {
  background-color: rgba(0, 0, 174, 0.2);
  padding-bottom: 60px;
}
.top #service .service__content {
  max-width: 900px;
  margin-inline: auto;
}
.top #service .service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  /* タブレット以上は 2列 */
}
@media screen and (min-width: 768px) {
  .top #service .service-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.top #service .service-list {
  /* 各ボックス（ラッパー） */
}
.top #service .service-list li {
  display: flex;
}
@media screen and (min-width: 768px) {
  .top #service .service-list li {
    width: 48%;
  }
}
.top #service .service-list li {
  /* リンク（カード本体） */
}
.top #service .service-list li a {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-top: 8px solid var(--color-darkred1);
  padding: 1.2em 1.2em 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: visible;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
  /* CTA導線としてのホバーアクション */
}
.top #service .service-list li a:hover {
  opacity: 0.8;
}
.top #service .service-list li a h3 {
  font-family: var(--ff-ttl);
  font-size: 1.1rem;
  color: var(--color-darkred1);
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.top #service .service-list li a h3 img {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
}
.top #service .service-list li a p {
  line-height: 1.6;
  padding-bottom: 0.5em;
}
.top #service .service-list li a > img:last-child {
  display: block;
  margin-top: auto;
  align-self: flex-start;
  /* 幅を左右パディング分だけ広げる */
  width: calc(100% + 2.4em);
  margin-left: -1.2em;
  margin-right: -1.2em;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.top #service .service-list {
  /* --------------------------------------------
    2番目以降：色とアイコン切替
  -------------------------------------------- */
}
.top #service .service-list li:nth-of-type(2) a {
  border-top-color: var(--color-accent);
}
.top #service .service-list li:nth-of-type(2) a h3 {
  color: var(--color-accent);
}
.top #service .service-list li:nth-of-type(3) a {
  border-top-color: var(--color-primary);
}
.top #service .service-list li:nth-of-type(3) a h3 {
  color: var(--color-primary);
}
.top #service .service-list li:nth-of-type(4) a {
  border-top-color: var(--color-secondary);
  cursor: default; /* カーソルを矢印に戻す */
  pointer-events: none; /* クリック判定を完全に消去 */
}
.top #service .service-list li:nth-of-type(4) a:hover {
  opacity: 1; /* ホバー時の透過アニメーションを打ち消す */
}
.top #service .service-list li:nth-of-type(4) a h3 {
  color: var(--color-secondary);
}
.top .work {
  background: url(../images/diagonal-dots.svg) repeat;
  padding: 0 0 var(--space-xl);
  overflow: hidden;
}
.top .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) {
  .top .work__content .work-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .top .work__content .work-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.top .work__content .work-item {
  overflow: visible;
}
.top .work__content .work-item > a {
  display: block;
  color: inherit;
  transition: background-color 0.2s ease;
}
@media (any-hover: hover) {
  .top .work__content .work-item > a:hover {
    background-color: rgba(0, 0, 0, 0.03);
  }
  .top .work__content .work-item > a {
    /* ★ここが本体（枠ごとズーム） */
  }
  .top .work__content .work-item > a:hover .work-photo {
    transform: scale(1.05);
  }
}
.top .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);
}
.top .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) {
  .top .work__content .work-item .work-photo:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
}
.top .work__content .work-item .work-body strong {
  color: var(--color-accent);
}/*# sourceMappingURL=top.css.map */