@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "Murecho";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/murecho-Bold.woff2") format("woff2");
}
:root {
  --ff-jp: Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  --ff-ttl: Murecho, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  --ff-en: Helvetica Neue, Helvetica, Arial, sans-serif;
  --ff-serif: serif;
  --color-primary: #3AAAEF;
  --color-secondary: #0056cc;
  --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: #e5e5e5;
  --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(58, 170, 239, 0.9);
  --color-header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --color-header-bg-mobile: linear-gradient(0deg, #3AAAEF 50%, rgb(97.4, 187, 242.2) 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-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  --header-border: 1px solid var(--color-border);
  --header-clip-right: 40px;
  --header-clip-right-scrolled: 30px;
  --header-clip-right-mobile: 30px;
  --header-clip-right-mobile-scrolled: 25px;
  --header-transition-duration: 0.3s;
  --header-transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --header-gradient: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
  --z-index-header: map-get($z-index, header);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

li {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: #3AAAEF !important;
}

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

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

.bg-secondary {
  background-color: #0056cc !important;
}

.text-secondary {
  color: #0056cc !important;
}

.border-secondary {
  border-color: #0056cc !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: #e5e5e5 !important;
}

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

.border-gray-200 {
  border-color: #e5e5e5 !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(58, 170, 239, 0.9) !important;
}

.text-header-bg {
  color: rgba(58, 170, 239, 0.9) !important;
}

.border-header-bg {
  border-color: rgba(58, 170, 239, 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, #3AAAEF 50%, rgb(97.4, 187, 242.2) 90%, #ffffff 100%) !important;
}

.text-header-bg-mobile {
  color: linear-gradient(0deg, #3AAAEF 50%, rgb(97.4, 187, 242.2) 90%, #ffffff 100%) !important;
}

.border-header-bg-mobile {
  border-color: linear-gradient(0deg, #3AAAEF 50%, rgb(97.4, 187, 242.2) 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: #3AAAEF;
  border-color: #3AAAEF;
  color: white;
}
.btn-primary:hover {
  filter: brightness(0.9);
  background-color: rgb(18.4788732394, 147.8309859155, 227.5211267606);
  border-color: rgb(18.4788732394, 147.8309859155, 227.5211267606);
}
.btn-primary:active {
  filter: brightness(0.85);
  background-color: rgb(16.5633802817, 132.5070422535, 203.9366197183);
}

.btn-secondary {
  background-color: #0056cc;
  border-color: #0056cc;
  color: white;
}
.btn-secondary:hover {
  filter: brightness(0.9);
  background-color: rgb(0, 64.5, 153);
  border-color: rgb(0, 64.5, 153);
}
.btn-secondary:active {
  filter: brightness(0.85);
  background-color: rgb(0, 53.75, 127.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) {
  .u-hidden-sp {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.fB {
  font-weight: bold;
}

.bk {
  color: #000;
}

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

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

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

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

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

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

/* =========================
  catch breadcrumb (wpプラグイン)
========================= */
div.breadcrumb {
  background: rgba(0, 86, 204, 0.1);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  position: relative;
  top: -40px;
}
@media screen and (min-width: 1024px) {
  div.breadcrumb {
    background: transparent;
  }
}

.breadcrumb, .breadcrumb-current {
  padding: 0;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .breadcrumb, .breadcrumb-current {
    font-size: 13px;
  }
}

.catch-breadcrumb {
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (min-width: 1024px) {
  .catch-breadcrumb {
    max-width: 900px;
  }
}
@media screen and (min-width: 1024px) {
  .catch-breadcrumb {
    max-width: 1100px;
  }
}

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

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

/* リンク */
.entry-breadcrumbs a {
  color: rgb(18.4788732394, 147.8309859155, 227.5211267606);
  text-decoration: none;
}

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

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

.section-title {
  position: relative;
  overflow: hidden;
  z-index: 0;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  color: #fff;
  text-align: center;
  padding: 24px 20px;
  margin-bottom: var(--space-40);
}
.section-title::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -100px;
  left: -100px;
  border-radius: 50%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 768px) {
  .section-title::before {
    width: 50vw;
    height: 50vw;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: -70px;
  right: -140px;
  border-radius: 50%;
  z-index: 1;
  background: rgba(0, 86, 204, 0.2);
}
.section-title p {
  color: rgb(128.7535211268, 200.5281690141, 244.7464788732);
  margin-bottom: 0;
  font-family: var(--ff-ttl);
  font-weight: 700;
}
.section-title h2 {
  font-family: var(--ff-ttl);
  text-shadow: 2px 2px 0 var(--color-secondary);
}

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

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: 100vmax;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--header-transition-duration);
}
@media (any-hover: hover) {
  .m-btn:hover {
    transform: translateY(-1px);
  }
}
.m-btn:active {
  transform: translateY(0);
}
.m-btn {
  font-family: var(--ff-jp);
  transition: opacity 0.3s;
}
.m-btn:hover {
  opacity: 0.8;
}
.m-btn--primary {
  background-color: #3AAAEF;
  border-color: #3AAAEF;
  color: white;
}
@media (any-hover: hover) {
  .m-btn--primary:hover {
    filter: brightness(0.9);
    background-color: rgb(18.4788732394, 147.8309859155, 227.5211267606);
  }
}
.m-btn--secondary {
  background-color: #0056cc;
  border-color: #0056cc;
  color: white;
}
@media (any-hover: hover) {
  .m-btn--secondary:hover {
    filter: brightness(0.9);
    background-color: rgb(0, 64.5, 153);
  }
}
.m-btn--accent {
  background-color: #FF6A1A;
  border-color: #FF6A1A;
  color: white;
}
@media (any-hover: hover) {
  .m-btn--accent:hover {
    filter: brightness(0.9);
    background-color: rgb(230, 80.3493449782, 0);
  }
}

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

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

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

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

/* =========================
  HEADER（ベース）
========================= */
.l-header {
  color: #fff;
  position: relative;
  z-index: 100;
}
.l-header h1 {
  font-size: 10px;
  font-family: var(--ff-jp);
  font-weight: normal;
  letter-spacing: 0px;
  padding: 4px;
  background: var(--color-secondary);
}
@media screen and (min-width: 768px) {
  .l-header h1 {
    padding: 8px;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .l-header h1 {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
.l-header .header-inner {
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-header .header-inner {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header .header-inner {
    padding: 15px 15px;
    justify-content: space-between;
  }
}

/* =========================
  ロゴ
========================= */
.logo {
  max-width: 260px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1024px) {
  .logo {
    max-width: 400px;
  }
}
@media screen and (min-width: 1280px) {
  .logo {
    max-width: 470px;
  }
}
.logo a {
  display: inline-block;
  color: rgb(255, 244.8, 102);
  font-weight: 700;
  font-size: clamp(14px, 3vw, 22px);
  line-height: 1.3;
  text-decoration: none;
  max-width: 50vw;
}

.card {
  width: 25vw;
}
@media screen and (min-width: 768px) {
  .card {
    width: 140px;
  }
}
@media screen and (min-width: 1024px) {
  .card {
    width: 200px;
  }
}
@media screen and (min-width: 1280px) {
  .card {
    width: 220px;
  }
}

.info {
  display: none;
}
@media screen and (min-width: 768px) {
  .info {
    width: 180px;
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .info {
    width: 290px;
  }
}
@media screen and (min-width: 1280px) {
  .info {
    width: 330px;
  }
}

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

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

/* =========================
  トグル制御
========================= */
#nav-toggle {
  display: none;
}
#nav-toggle:checked ~ .drawer {
  right: 0;
}
#nav-toggle:checked ~ .hamburger {
  background: rgb(0, 107.5, 255);
  right: 85vw;
}
@media screen and (min-width: 768px) {
  #nav-toggle:checked ~ .hamburger {
    right: 400px;
  }
}
#nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}
#nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
  PCナビ
========================= */
.gnav {
  display: none;
  background: rgb(0, 64.5, 153);
}
@media (min-width: 1024px) {
  .gnav {
    display: block;
  }
  .gnav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
  }
  .gnav li {
    margin: 0;
  }
  .gnav a {
    display: block;
    padding: 14px 8px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.25s ease;
  }
  .gnav a:hover {
    background: rgba(255, 255, 255, 0.15);
  }
}

/* =========================
  PC時のSP要素非表示
========================= */
@media (min-width: 1024px) {
  .hamburger,
  .drawer {
    display: none;
  }
}
/* =========================
  FOOTER
========================= */
.l-footer {
  background: var(--color-primary);
  text-align: center;
  padding: 40px 20px 120px;
}

/* ナビ */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: var(--font-size-xs);
  }
}
.footer-nav ul li {
  margin-bottom: 10px;
}
.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
}
@media (any-hover: hover) {
  .footer-nav ul li a:hover {
    color: var(--color-link);
  }
}
.footer-nav ul li a:active {
  color: var(--color-link);
}

/* コピー */
.footer-copy {
  font-size: 12px;
  color: var(--color-gray-1);
}
.footer-copy a {
  color: inherit;
  text-decoration: none;
}

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

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

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

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

section {
  position: relative;
}

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