@charset "UTF-8";
@layer base, layouts, components, pages, utilities;
:root {
  --page-gutter: 40px;
  --leading-trim: calc((1em - 1lh) / 2);
  --bleed: min(
  	calc((((100vw - var(--scrollbar, 0)) - 1290px) / 2) * -1),
  	calc(var(--page-gutter) * -1)
  );
  --radius: 10px;
}
@media (width <= 960px) {
  :root {
    --page-gutter: 16px;
    --radius: 4px;
  }
}

@layer base {
  /*
  /* Reset
  /*
  ----------------------------------------------------------------- */
  *,
  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  tt,
  var,
  b,
  u,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
  }
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  menu,
  nav,
  section {
    display: block;
  }
  ol,
  ul {
    list-style: none;
  }
  blockquote,
  q {
    quotes: none;
  }
  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: "";
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  img {
    line-height: 0;
    vertical-align: bottom;
  }
  input,
  button,
  textarea {
    font: inherit;
  }
}
@layer base {
  body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    font-size: 1rem;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  @media (any-hover: hover) {
    a:hover {
      text-decoration: none;
    }
  }
  strong {
    font-weight: 700;
  }
  [id] {
    scroll-margin-top: calc(var(--header-height, 105px) + 40px);
  }
}
.os-scrollbar {
  --os-size: 5px;
  --os-track-bg: linear-gradient(
  	to bottom,
  	transparent calc(50% - 0.5px),
  	#ccc calc(50% - 0.5px),
  	#ccc calc(50% + 0.5px),
  	transparent calc(50% + 0.5px)
  );
  --os-handle-bg: #c8dcfa;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
}

@layer layouts {
  .l-container {
    padding-top: 220px;
  }
  @media (width <= 960px) {
    .l-container {
      padding-top: 154px;
    }
  }
}
@layer layouts {
  @media (width >= 961px) {
    .l-fixed-nav {
      display: none;
    }
  }
  .l-fixed-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1253b2;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .l-fixed-nav__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 5px;
  }
  .l-fixed-nav__checkup-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 11px 20px 3px;
    width: 162px;
    height: 46px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#ea9621), to(#df4336));
    background: linear-gradient(90deg, #ea9621 0%, #df4336 100%);
    border-radius: var(--radius);
    -webkit-box-shadow: 0 2px 0 0 #1253b2;
    box-shadow: 0 2px 0 0 #1253b2;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .l-fixed-nav__checkup-link:hover {
      opacity: 0.6;
    }
  }
  .l-fixed-nav__checkup-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  @media (width <= 960px) {
    .l-fixed-nav__checkup-body {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
    }
  }
  .l-fixed-nav__checkup-lead {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 60px;
    padding: 10px 20px;
    color: #1253b2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  @container (width <= 750px) {
    .l-fixed-nav__checkup-lead {
      padding: 5px 10px;
    }
  }
  @media (width <= 960px) {
    .l-fixed-nav__checkup-lead {
      position: absolute;
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      top: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      gap: 2px;
      padding: 2px 9px;
      border: 1px solid #ea9621;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  }
  .l-fixed-nav__checkup-lead__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    line-height: 0;
  }
  .l-fixed-nav__checkup-lead__number {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1;
  }
  @container (width <= 750px) {
    .l-fixed-nav__checkup-lead__number {
      font-size: 1.25rem;
    }
  }
  @media (width <= 960px) {
    .l-fixed-nav__checkup-lead__number {
      font-size: 0.9375rem;
    }
  }
  .l-fixed-nav__checkup-lead__number {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
  }
  @media (width <= 960px) {
    .l-fixed-nav__checkup-lead__number {
      font-size: 0.6875rem;
    }
  }
  .l-fixed-nav__checkup-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
  }
  @media (width <= 960px) {
    .l-fixed-nav__checkup-icon {
      display: none;
    }
  }
  .l-fixed-nav__phone-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px;
    width: 162px;
    height: 48px;
    background-color: #1253b2;
    border-radius: var(--radius);
    color: #fff;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .l-fixed-nav__phone-link:hover {
      opacity: 0.6;
    }
  }
  .l-fixed-nav__phone-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: grid;
  }
  .l-fixed-nav__phone-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-fixed-nav__phone-number__icon {
    line-height: 0;
  }
  .l-fixed-nav__phone-number__number {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .l-fixed-nav__phone-hour {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  @media (width <= 960px) {
    .l-fixed-nav__phone-hour {
      gap: 4px;
    }
  }
  .l-fixed-nav__phone-hour__label {
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 4px 6px;
    color: #fff;
    font-size: 0.625rem;
    line-height: 1;
  }
  @media (width <= 960px) {
    .l-fixed-nav__phone-hour__label {
      font-size: 0.5625rem;
      border: none;
      padding: 0;
    }
  }
  .l-fixed-nav__phone-hour__desc {
    font-size: 0.875rem;
  }
  @media (width <= 960px) {
    .l-fixed-nav__phone-hour__desc {
      font-size: 0.5625rem;
    }
  }
}
@layer layouts {}
@layer layouts {
  .l-site-cv {
    position: relative;
    z-index: 1;
    padding-top: 96px;
  }
  @media (width >= 769px) {
    .l-site-cv {
      padding-inline: 30px;
    }
  }
  @media (width <= 768px) {
    .l-site-cv {
      padding-top: 40px;
    }
  }
  .l-site-cv::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 85px;
    z-index: -1;
    background-color: #f9f8fb;
  }
  .l-site-cv__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    border-radius: 10px;
    background: 50% 50% no-repeat;
    background-size: cover;
    color: #fff;
    -webkit-box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.25);
    padding: 0 var(--page-gutter);
  }
  @media (width >= 769px) {
    .l-site-cv__inner {
      aspect-ratio: 1476/553;
      background-image: url(../images/common/cv_bg_cover.webp);
    }
  }
  @media (width <= 768px) {
    .l-site-cv__inner {
      aspect-ratio: 375/427;
      padding: 16.2666666667vw 24px 0;
      background-image: url(../images/common/cv_bg_cover_sp.webp);
    }
  }
  .l-site-cv__body {
    max-width: 1290px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6.9010416667vw;
  }
  @media (width <= 768px) {
    .l-site-cv__body {
      padding-bottom: 50.9333333333vw;
    }
  }
  .l-site-cv__title {
    font-weight: 700;
    line-height: 1;
    font-size: max(2.34375vw, 1rem);
  }
  @media (width <= 768px) {
    .l-site-cv__title {
      font-size: 1.25rem;
      text-align: center;
    }
  }
  .l-site-cv__desc {
    margin-top: 22px;
    font-weight: 500;
    line-height: 2;
  }
  @media (width <= 768px) {
    .l-site-cv__desc {
      margin-top: 12px;
      font-size: 0.8125rem;
      line-height: 1.75;
    }
  }
  .l-site-cv__button {
    margin-top: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }
  @media (width <= 768px) {
    .l-site-cv__button {
      gap: 12px;
      margin: 12px auto 0;
      display: grid;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  }
  @media (width <= 768px) {
    .l-site-cv__contact {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 8px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  .l-site-cv__contact-phone__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
  }
  .l-site-cv__contact-phone__label {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    font-family: "Poppins", sans-serif;
  }
  .l-site-cv__contact-hour {
    font-size: 0.6875rem;
    line-height: normal;
  }
  @media (width >= 769px) {
    .l-site-cv__contact-hour {
      margin-top: 4px;
    }
  }
}
@layer layouts {}
/** Show icons only. */
/** Displayed with square background. */
/** Shown with circular background. */
/** Style settings for the box. */
/** style settings for the background. */
/** style settings related to borders. */
/**
 * Calculate the size of the svg.
 *
 * If $priority-size is specified, it takes precedence.
 * If $priority-size is not specified, the size of the SVG is a fixed percentage of $element-size.
 */
@layer layouts {
  .l-site-header {
    position: fixed;
    left: 0;
    top: 115px;
    z-index: 10;
    width: 100%;
    -webkit-transition: -webkit-transform 300ms ease;
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease, -webkit-transform 300ms ease;
  }
  body.is-scroll-down .l-site-header {
    -webkit-transform: translateY(-115px);
    transform: translateY(-115px);
  }
  @media (width <= 960px) {
    body.is-scroll-down .l-site-header {
      -webkit-transform: translateY(-48px);
      transform: translateY(-48px);
    }
  }
  @media (width <= 960px) {
    .l-site-header {
      top: 48px;
    }
  }
  .l-site-header-keywords {
    background-color: #f2f5f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 28px;
    padding: 0 var(--page-gutter);
    height: 40px;
  }
  @media (width <= 960px) {
    .l-site-header-keywords {
      gap: 16px;
    }
  }
  .l-site-header-keywords__title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 6px 10px;
    background-color: #1253b2;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 1;
  }
  @media (width <= 960px) {
    .l-site-header-keywords__title {
      font-size: 0.75rem;
    }
  }
  .l-site-header-keywords__list:has([data-overlayscrollbars-viewport*=overflowXScroll]) {
    padding-bottom: 8px;
  }
  .l-site-header-keywords__list [data-overlayscrollbars-viewport] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
  }
  @media (width <= 960px) {
    .l-site-header-keywords__list [data-overlayscrollbars-viewport] {
      gap: 16px;
    }
  }
  .l-site-header-keywords__item {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .l-site-header-keywords__link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: underline;
    color: #333;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
  }
  @media (width <= 960px) {
    .l-site-header-keywords__link {
      font-size: 0.875rem;
      font-weight: 400;
    }
  }
  @media (any-hover: hover) {
    .l-site-header-keywords__link:hover {
      color: #1253b2;
    }
  }
  .l-site-header-keywords__link::before {
    content: "#";
  }
  .l-site-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #1253b2;
    color: #fff;
    padding: 5px var(--page-gutter);
  }
  @media (width <= 960px) {
    .l-site-header__inner {
      padding: 10px var(--page-gutter);
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 4px;
    }
  }
  .l-site-header__header {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .l-site-header__logo-link {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    height: 55px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .l-site-header__logo-link:hover {
      opacity: 0.6;
    }
  }
  @media (width <= 960px) {
    .l-site-header__logo-link {
      height: auto;
    }
  }
  @media (width <= 374px) {
    .l-site-header__logo-link {
      gap: 4px;
    }
  }
  .l-site-header__logo-sub {
    font-size: 0.8125rem;
    line-height: 1;
    font-weight: 500;
  }
  @media (width <= 960px) {
    .l-site-header__logo-sub {
      font-size: 0.625rem;
    }
  }
  .l-site-header__logo-main {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: 1.225px;
    line-height: 1;
  }
  @media (width <= 1280px) {
    .l-site-header__logo-main {
      font-size: 1.5rem;
    }
  }
  @media (width <= 960px) {
    .l-site-header__logo-main {
      font-size: 1.25rem;
    }
  }
  @media (width <= 374px) {
    .l-site-header__logo-main {
      font-size: 0.75rem;
    }
  }
  .l-site-header__logo-lead {
    line-height: 1;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  @media (width <= 960px) {
    .l-site-header__logo-lead {
      font-size: 0.75rem;
    }
  }
  @media (width <= 374px) {
    .l-site-header__logo-lead {
      font-size: 0.625rem;
    }
  }
}
@layer layouts {
  .l-site-menu-button {
    position: relative;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
  }
  body.is-scrolled .l-site-menu-button:not(.is-open) {
    -webkit-filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.25));
    filter: drop-shadow(0px 4px 16px rgba(0, 0, 0, 0.25));
  }
  .l-site-menu-button.is-open {
    background: none;
  }
  .l-site-menu-button.is-open .l-site-menu-button__top {
    -webkit-transform: translate(-50%, -1px) rotate(45deg);
    transform: translate(-50%, -1px) rotate(45deg);
  }
  .l-site-menu-button.is-open .l-site-menu-button__middle {
    opacity: 0;
  }
  .l-site-menu-button.is-open .l-site-menu-button__bottom {
    -webkit-transform: translate(-50%, -1px) rotate(-45deg);
    transform: translate(-50%, -1px) rotate(-45deg);
  }
  .l-site-menu-button__top, .l-site-menu-button__middle, .l-site-menu-button__bottom {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 33px;
    height: 3px;
    background-color: #ff6600;
    -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease, -webkit-filter 300ms ease;
    transition: opacity 300ms ease, -webkit-transform 300ms ease, -webkit-filter 300ms ease;
    transition: opacity 300ms ease, transform 300ms ease, filter 300ms ease;
    transition: opacity 300ms ease, transform 300ms ease, filter 300ms ease, -webkit-transform 300ms ease, -webkit-filter 300ms ease;
  }
  .l-site-menu-button__top {
    -webkit-transform: translate(-50%, 9px);
    transform: translate(-50%, 9px);
  }
  .l-site-menu-button__middle {
    -webkit-transform: translate(-50%, -1px);
    transform: translate(-50%, -1px);
  }
  .l-site-menu-button__bottom {
    -webkit-transform: translate(-50%, -11px);
    transform: translate(-50%, -11px);
  }
}
@layer layouts {
  @media (width >= 1025px) {
    .l-site-menu {
      display: none;
    }
  }
  @media (width <= 1024px) {
    .l-site-menu {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 2;
      width: 100%;
      height: 100dvh;
      overflow: auto;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      opacity: 0;
      padding: 96px 0 0;
      background: rgba(249, 248, 251, 0.9);
      backdrop-filter: blur(7px);
      -ms-scroll-chaining: none;
      overscroll-behavior: contain;
      -webkit-transition: opacity 300ms ease, -webkit-transform 300ms ease 300ms;
      transition: opacity 300ms ease, -webkit-transform 300ms ease 300ms;
      transition: opacity 300ms ease, transform 300ms ease 300ms;
      transition: opacity 300ms ease, transform 300ms ease 300ms, -webkit-transform 300ms ease 300ms;
    }
  }
  @media (width <= 1024px) {
    .l-site-menu.is-open {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
      -webkit-transition: opacity 300ms ease;
      transition: opacity 300ms ease;
    }
  }
  .l-site-menu__body {
    padding: 0 48px 56px;
  }
  .l-site-menu-category__label {
    font-size: 1.25rem;
    line-height: 1;
    font-family: "Syncopate", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .l-site-menu-category__title {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 4px;
  }
  .l-site-menu-category__list {
    margin-top: 16px;
    display: grid;
    gap: 8px;
  }
  .l-site-menu-category__list-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.3);
  }
  .l-site-menu-category__list-link::after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .l-site-menu__list {
    margin-top: 40px;
    display: grid;
    gap: 24px;
  }
  .l-site-menu__list-link {
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
    color: #222;
  }
  .l-site-menu-search {
    background: url("../images/common/footer_bg_noise.webp") 0% 0%/60px 60px, radial-gradient(100% 100% at 0% 0%, #31287a 0%, #110b3e 100%);
    background-blend-mode: darken, normal;
    color: #fff;
    padding: 32px 48px;
  }
  .l-site-menu-search__label {
    font-family: "Syncopate", sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .l-site-menu-search__title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 8px;
  }
  .l-site-menu-search__input {
    margin-top: 32px;
  }
}
@layer layouts {
  .l-site-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-site-nav__list-item {
    border-left: 1px solid rgba(237, 237, 237, 0.5);
  }
  @media (width <= 960px) {
    .l-site-nav__list-item {
      width: 130px;
    }
    .l-site-nav__list-item:first-child {
      border-left: none;
    }
  }
  @media (width >= 1281px) {
    .l-site-nav__list-item.-search-menu {
      display: none;
    }
  }
  @media (width <= 1280px) {
    .l-site-nav__list-item.-search-menu {
      width: auto;
    }
  }
  @media (width <= 960px) {
    .l-site-nav__list-item.-search-menu {
      -ms-flex-negative: 2;
      flex-shrink: 2;
    }
  }
  @media (width <= 1280px) {
    .l-site-nav__list-item.-search-field {
      display: none;
    }
  }
  .l-site-nav__list-link, .l-site-nav__list-button {
    --scale: 0;
    position: relative;
    width: 240px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0 23px;
    margin: 0;
    color: #fff;
    line-height: 1.75;
    font-weight: 700;
    text-align: left;
    -webkit-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
    cursor: pointer;
  }
  @media (width <= 1380px) {
    .l-site-nav__list-link, .l-site-nav__list-button {
      width: auto;
    }
  }
  @media (width <= 960px) {
    .l-site-nav__list-link, .l-site-nav__list-button {
      height: 22px;
      padding: 0 13px;
      font-size: 0.75rem;
      width: 100%;
    }
  }
  .l-site-nav__list-link.is-open .l-site-nav__list-icon, .l-site-nav__list-button.is-open .l-site-nav__list-icon {
    rotate: 90deg;
  }
  .l-site-nav__list:has(.is-open) .l-site-nav__list-button:not(.is-open) {
    opacity: 0.3;
  }
  @media (width <= 960px) {
    .l-site-nav__list-link {
      padding: 0 20px;
    }
  }
  .l-site-nav__list-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .l-site-nav__list-icon {
    line-height: 0;
    -webkit-transition: rotate 300ms ease;
    transition: rotate 300ms ease;
    color: rgba(237, 237, 237, 0.5019607843);
  }
  .l-site-nav__child {
    width: 100%;
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 300ms ease;
    transition: grid-template-rows 300ms ease;
    transition: grid-template-rows 300ms ease, -ms-grid-rows 300ms ease;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .l-site-nav__child-inner {
    overflow: hidden;
  }
  .l-site-nav__child.is-open {
    grid-template-rows: 1fr;
  }
  .l-site-nav-child {
    padding: 24px var(--page-gutter);
    background-color: rgba(237, 243, 250, 0.8);
    backdrop-filter: blur(7px);
    border-bottom: 1px solid #1253b2;
    max-height: calc(100dvh - 220px);
    overflow-y: auto;
  }
  @media (width <= 960px) {
    .l-site-nav-child {
      padding: 16px var(--page-gutter) 24px;
      max-height: calc(100dvh - 227px);
    }
  }
  .l-site-nav-child__inner {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
  }
  @media (width <= 960px) {
    .l-site-nav-child__inner {
      display: block;
    }
  }
  @media (width <= 960px) {
    .l-site-nav-child__body {
      margin-top: 16px;
    }
  }
  .l-site-nav-child__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
  @media (width <= 960px) {
    .l-site-nav-child__list {
      gap: 12px;
    }
  }
  .l-site-nav-child__list-item {
    position: relative;
  }
  .l-site-nav-child__list-link {
    display: block;
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 0.9375rem;
    background-color: #fff;
    font-weight: 700;
    padding: 5px 20px;
    line-height: 1.75;
    border-radius: 4px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .l-site-nav-child__list-link:hover {
      opacity: 0.6;
    }
  }
}
.c-skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: #1253b2;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
}
.c-skip-link:where(:not(:focus)) {
  position: absolute;
  clip-path: inset(50%);
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

@layer components {
  .c-archive-tab.-archive {
    margin-top: -62px;
  }
  @media (width <= 960px) {
    .c-archive-tab.-archive {
      margin-top: -50px;
    }
  }
  .c-archive-tab__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }
  @media (width <= 960px) {
    .c-archive-tab__header {
      gap: 8px;
    }
  }
  .c-archive-tab__button {
    padding: 16px 10px;
    border-radius: var(--radius) var(--radius) 0 0;
    color: rgba(18, 83, 178, 0.4);
    background-color: #fff;
    border: none;
    width: min(30%, 360px);
    font-weight: 700;
    line-height: 1.75;
    cursor: pointer;
    border: 1px solid #edf3fa;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-archive-tab__button:hover {
      opacity: 0.6;
    }
  }
  @media (width <= 960px) {
    .c-archive-tab__button {
      font-size: 0.875rem;
      width: auto;
      padding: 12px 16px;
      font-weight: 500;
    }
  }
  @media (width <= 374px) {
    .c-archive-tab__button {
      font-size: 0.625rem;
    }
  }
  .c-archive-tab__button.is-selected {
    background-color: #f2f5f7;
    color: #1253b2;
  }
  .c-archive-tab__body {
    background-color: #f2f5f7;
    padding: 40px var(--page-gutter);
  }
  @media (width <= 960px) {
    .c-archive-tab__body {
      padding-top: 18px;
      padding-bottom: 18px;
    }
  }
  .c-archive-tab__panel {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
  }
}
@layer components {
  .c-breadcrumb {
    padding: 20px 0;
  }
  @media (width <= 960px) {
    .c-breadcrumb {
      padding: 12px 0;
    }
  }
  .c-breadcrumb__list:has([data-overlayscrollbars-viewport*=overflowXScroll]) {
    padding-bottom: 8px;
  }
  .c-breadcrumb__list [data-overlayscrollbars-viewport] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-breadcrumb__list-item {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-breadcrumb__list-item:not(:last-child)::after {
    content: "";
    pointer-events: none;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #1253b2;
    mask-image: url("/column/assets/icons/cret_right.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("/column/assets/icons/cret_right.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    margin-inline: 14px;
  }
  @media (width <= 960px) {
    .c-breadcrumb__list-item:not(:last-child)::after {
      margin-inline: 8px;
    }
  }
  .c-breadcrumb__list-link {
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.75;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
  }
  @media (any-hover: hover) {
    .c-breadcrumb__list-link:hover {
      color: #1253b2;
    }
  }
}
@layer components {
  .c-button {
    --background-color: #1253b2;
    --color: #fff;
  }
  .c-button.-liquid .c-button__link {
    width: 100%;
    min-width: 0;
  }
  @media (width <= 960px) {
    .c-button.-sp-liquid .c-button__link {
      width: 100%;
      min-width: 0;
    }
  }
  .c-button.-c .c-button__link {
    margin-inline: auto;
  }
  .c-button.-white {
    --background-color: #fff;
    --color: #1253b2;
  }
  .c-button.-white .c-button__link {
    border: 1px solid currentColor;
    -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
  }
  .c-button__link {
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 8px;
    min-height: 42px;
    min-width: 180px;
    font-size: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 1.5;
    padding: 12px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    -webkit-transition: opacity 300ms ease;
    transition: opacity 300ms ease;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-button__link:hover {
      opacity: 0.6;
    }
  }
  .c-button__label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .c-button__icon {
    line-height: 0;
  }
}
@layer components {
  .c-card-side-ranking__link {
    text-decoration: none;
    color: #333;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-card-side-ranking__link:hover {
      opacity: 0.6;
    }
  }
  .c-card-side-ranking__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
  .c-card-side-ranking__body {
    margin-top: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 22px;
  }
  .c-card-side-ranking__thumb {
    width: 40%;
  }
  .c-card-side-ranking__thumb img {
    border-radius: 4px;
    aspect-ratio: 395 / 222;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .c-card-side-ranking__desc {
    width: 60%;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@layer components {
  .c-card {
    --scale: 1;
    --color: #222;
    --background-rank: #fff;
    --color-rank: #222;
  }
  @media (width <= 960px) {
    .c-card.-sp-row .c-card__link {
      grid-template-rows: auto;
      grid-template-columns: 120px 1fr;
    }
    .c-card.-sp-row .c-card__thumb {
      height: 100%;
    }
    .c-card.-sp-row .c-card__thumb img {
      height: 100%;
    }
  }
  @media (width <= 374px) {
    .c-card.-sp-row .c-card__link {
      grid-template-columns: 80px 1fr;
    }
  }
  .c-card.-row .c-card__link {
    grid-template-rows: auto;
    grid-template-columns: 260px 1fr;
  }
  @media (width <= 1280px) {
    .c-card.-row .c-card__link {
      grid-template-columns: 140px 1fr;
    }
  }
  @media (width <= 960px) {
    .c-card.-row .c-card__link {
      grid-template-columns: 120px 1fr;
    }
  }
  @media (width <= 374px) {
    .c-card.-row .c-card__link {
      grid-template-columns: 80px 1fr;
    }
  }
  .c-card.-row .c-card__body {
    padding: 20px 30px;
  }
  @media (width <= 960px) {
    .c-card.-row .c-card__body {
      padding: 16px;
    }
  }
  .c-card.-row .c-card__thumb {
    height: 100%;
  }
  .c-card.-row .c-card__thumb img {
    height: 100%;
  }
  .c-card.-lg .c-card__body {
    padding: 36px 30px;
  }
  @media (width <= 960px) {
    .c-card.-lg .c-card__body {
      padding: 16px 20px;
    }
  }
  .c-card.-lg .c-card__title {
    font-size: 1.25rem;
  }
  @media (width <= 960px) {
    .c-card.-lg .c-card__title {
      font-size: 0.875rem;
    }
  }
  .c-card__link {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
    box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
    background-color: #fff;
    color: #333;
    text-decoration: none;
    height: 100%;
  }
  @media (any-hover: hover) {
    .c-card__link:hover {
      --scale: 1.04;
      --color: #1253b2;
    }
  }
  .c-card__rank {
    position: absolute;
    left: 10px;
    top: 10px;
  }
  .c-card__header {
    overflow: hidden;
  }
  .c-card__thumb img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    scale: var(--scale);
    -webkit-transition: scale 300ms;
    transition: scale 300ms;
    aspect-ratio: 395 / 222;
  }
  .c-card__body {
    padding: 24px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  @media (width <= 960px) {
    .c-card__body {
      padding: 16px;
    }
  }
  .c-card__title {
    color: var(--color);
    font-size: 1.125rem;
    margin-top: 16px;
    font-weight: 700;
    line-height: 1.5;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  @media (width <= 960px) {
    .c-card__title {
      font-size: 0.875rem;
      margin-top: 8px;
    }
  }
  .c-card__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px 14px;
  }
  .c-card__date {
    font-size: 0.875rem;
    line-height: 1;
    font-family: "Lato", sans-serif;
    color: #666;
  }
}
@layer components {
  .c-carousel-horizontal__slide > * {
    height: 100%;
  }
  .c-carousel-horizontal__navigation {
    position: absolute;
    right: 0;
    top: -80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
  }
  @media (width <= 768px) {
    .c-carousel-horizontal__navigation {
      position: static;
      gap: 32px;
      margin-top: 24px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
  }
  .c-carousel-horizontal__prev, .c-carousel-horizontal__next {
    padding: 0;
    background: none;
    border: none;
    margin: 0;
    color: #121d59;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-carousel-horizontal__prev:hover, .c-carousel-horizontal__next:hover {
      opacity: 0.7;
    }
  }
}
.c-carousel-horizontal.swiper {
  overflow: visible;
}
.c-carousel-horizontal__slide.swiper-slide {
  width: 226px;
  height: auto;
}
@media (width <= 768px) {
  .c-carousel-horizontal__slide.swiper-slide {
    width: auto;
  }
}

@layer components {
  .c-category-label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 2px 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #0a59cc;
    background-color: rgba(200, 220, 250, 0.8);
    line-height: 1.5;
    border-radius: 4px;
  }
}
@layer components {
  .c-category-list {
    display: grid;
    gap: 14px 24px;
  }
  @media (width <= 960px) {
    .c-category-list {
      gap: 6px;
    }
  }
  .c-category-list.-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  @media (width <= 960px) {
    .c-category-list.-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .c-category-list.-azure .c-category-list__link {
    background-color: #1253b2;
    color: #fff;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-category-list.-azure .c-category-list__link:hover {
      opacity: 0.6;
    }
  }
  .c-category-list__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 4px;
    border: 1px solid #1253b2;
    background: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(18, 83, 178, 0.4);
    text-align: center;
    line-height: 1.5;
    -webkit-transition: color 300ms ease, background-color 300ms ease;
    transition: color 300ms ease, background-color 300ms ease;
  }
  @media (any-hover: hover) {
    .c-category-list__link:hover {
      background-color: #1253b2;
      color: #fff;
    }
  }
  @media (width <= 960px) {
    .c-category-list__link {
      padding: 6px 16px;
      font-size: 0.875rem;
      min-height: 54px;
    }
  }
  .c-category-list__link.-current {
    background-color: #1253b2;
    color: #fff;
  }
}
@layer components {
  .c-compact {
    position: relative;
  }
  @media (width <= 960px) {
    .c-compact.is-compact {
      height: 120px;
      overflow: hidden;
    }
    .c-compact.is-compact::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 70%;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 245, 247, 0)), to(#f2f5f7));
      background: linear-gradient(180deg, rgba(242, 245, 247, 0) 0%, #f2f5f7 100%);
    }
  }
  .c-compact.is-compact .c-compact__open {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 64px;
    margin-left: auto;
    margin-right: auto;
    background: none;
    border: none;
    font-size: 1rem;
    color: #1253b2;
    font-weight: 700;
  }
  .c-compact.is-compact .c-compact__open::after {
    content: "";
    pointer-events: none;
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: currentColor;
    mask-image: url("/column/assets/icons/cret_down_bold.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("/column/assets/icons/cret_down_bold.svg");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }
  .c-compact__open {
    display: none;
  }
}
@layer components {
  .c-editor p:not([class]),
  .c-editor p.wp-block-paragraph {
    line-height: 1.75;
  }
  @media (width <= 960px) {
    .c-editor p:not([class]),
    .c-editor p.wp-block-paragraph {
      font-size: 0.8125rem;
    }
  }
  .c-editor p:not([class]):not(:first-child),
  .c-editor p.wp-block-paragraph:not(:first-child) {
    margin-top: 24px;
  }
  @media (width <= 960px) {
    .c-editor p:not([class]):not(:first-child),
    .c-editor p.wp-block-paragraph:not(:first-child) {
      margin-top: 12px;
    }
  }
  .c-editor p:not([class]):not(:last-child),
  .c-editor p.wp-block-paragraph:not(:last-child) {
    margin-bottom: 24px;
  }
  @media (width <= 960px) {
    .c-editor p:not([class]):not(:last-child),
    .c-editor p.wp-block-paragraph:not(:last-child) {
      margin-bottom: 12px;
    }
  }
  .c-editor h2.wp-block-heading {
    line-height: 1.5;
    font-size: 2rem;
    color: #1253b2;
    font-weight: 700;
    border-left: 6px solid currentColor;
    padding-left: 14px;
  }
  @media (width <= 960px) {
    .c-editor h2.wp-block-heading {
      font-size: 1.25rem;
      border-left-width: 4px;
      padding-left: 12px;
    }
  }
  .c-editor h2.wp-block-heading:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 960px) {
    .c-editor h2.wp-block-heading:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-editor h2.wp-block-heading:not(:last-child) {
    margin-bottom: 24px;
  }
  @media (width <= 960px) {
    .c-editor h2.wp-block-heading:not(:last-child) {
      margin-bottom: 12px;
    }
  }
  .c-editor h3.wp-block-heading {
    line-height: 1.5;
    font-size: 1.5rem;
    color: #1253b2;
    font-weight: 700;
    border-left: 6px solid currentColor;
    padding-left: 14px;
  }
  @media (width <= 960px) {
    .c-editor h3.wp-block-heading {
      font-size: 1rem;
      padding-left: 12px;
      border-left-width: 4px;
    }
  }
  .c-editor h3.wp-block-heading:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 960px) {
    .c-editor h3.wp-block-heading:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-editor h3.wp-block-heading:not(:last-child) {
    margin-bottom: 24px;
  }
  @media (width <= 960px) {
    .c-editor h3.wp-block-heading:not(:last-child) {
      margin-bottom: 12px;
    }
  }
  .c-editor h4.wp-block-heading {
    line-height: 1.5;
    font-size: 1.5rem;
    color: #1253b2;
    font-weight: 700;
  }
  @media (width <= 960px) {
    .c-editor h4.wp-block-heading {
      font-size: 1rem;
    }
  }
  .c-editor h4.wp-block-heading:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 960px) {
    .c-editor h4.wp-block-heading:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-editor h4.wp-block-heading:not(:last-child) {
    margin-bottom: 24px;
  }
  @media (width <= 960px) {
    .c-editor h4.wp-block-heading:not(:last-child) {
      margin-bottom: 12px;
    }
  }
  .c-editor .wp-block-image {
    text-align: center;
  }
  .c-editor .wp-block-image:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-image:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-editor .wp-block-image:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-image:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-editor .wp-block-image img {
    border-radius: 10px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-image img {
      border-radius: 4px;
    }
  }
  .c-editor ul.wp-block-list,
  .c-editor ul:not([class]) {
    list-style: disc;
    padding-left: 20px;
  }
  @media (width <= 960px) {
    .c-editor ul.wp-block-list,
    .c-editor ul:not([class]) {
      font-size: 0.875rem;
    }
  }
  .c-editor ul.wp-block-list:not(:first-child),
  .c-editor ul:not([class]):not(:first-child) {
    margin-top: 24px;
  }
  .c-editor ul.wp-block-list:not(:last-child),
  .c-editor ul:not([class]):not(:last-child) {
    margin-bottom: 24px;
  }
  .c-editor ul.wp-block-list li,
  .c-editor ul:not([class]) li {
    padding-left: 8px;
    line-height: 1.75;
  }
  .c-editor ul.wp-block-list li:not(:last-child),
  .c-editor ul:not([class]) li:not(:last-child) {
    margin-bottom: 10px;
  }
  .c-editor ul.wp-block-list ul,
  .c-editor ul:not([class]) ul {
    margin-top: 10px;
  }
  .c-editor ol.wp-block-list,
  .c-editor ol:not([class]) {
    list-style: decimal;
    padding-left: 20px;
  }
  @media (width <= 960px) {
    .c-editor ol.wp-block-list,
    .c-editor ol:not([class]) {
      font-size: 0.875rem;
    }
  }
  .c-editor ol.wp-block-list:not(:last-child),
  .c-editor ol:not([class]):not(:last-child) {
    margin-bottom: 24px;
  }
  .c-editor ol.wp-block-list li,
  .c-editor ol:not([class]) li {
    padding-left: 8px;
    line-height: 1.75;
  }
  .c-editor ol.wp-block-list li:not(:last-child),
  .c-editor ol:not([class]) li:not(:last-child) {
    margin-bottom: 10px;
  }
  .c-editor .wp-block-quote {
    padding: 20px 20px 20px 26px;
    border-left: 6px solid #1253b2;
    background-color: rgba(237, 243, 250, 0.8);
  }
  @media (width <= 960px) {
    .c-editor .wp-block-quote {
      font-size: 0.8125rem;
      padding: 16px 16px 16px 20px;
      border-left-width: 4px;
    }
  }
  .c-editor .wp-block-quote:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-quote:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-editor .wp-block-quote:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-quote:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-editor .wp-block-quote__cite {
    color: #999;
    margin-top: 20px;
  }
  .c-editor .wp-block-table {
    overflow: auto;
    width: 100%;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-table {
      font-size: 0.875rem;
    }
  }
  .c-editor .wp-block-table:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-table:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-editor .wp-block-table:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-table:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-editor .wp-block-table table {
    width: 100%;
    min-width: 820px;
    border-top: 1px solid #1253b2;
  }
  .c-editor .wp-block-table table.has-fixed-layout {
    table-layout: fixed;
  }
  .c-editor .wp-block-table table th,
  .c-editor .wp-block-table table td {
    border-bottom: 1px solid #1253b2;
    padding: 20px;
    text-align: left;
    vertical-align: top;
    line-height: 1.75;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-table table th,
    .c-editor .wp-block-table table td {
      padding: 16px;
    }
  }
  .c-editor .wp-block-table table th.has-text-align-center,
  .c-editor .wp-block-table table td.has-text-align-center {
    text-align: center;
  }
  .c-editor .wp-block-table table th.has-text-align-right,
  .c-editor .wp-block-table table td.has-text-align-right {
    text-align: right;
  }
  .c-editor .wp-block-table table th.has-text-align-left,
  .c-editor .wp-block-table table td.has-text-align-left {
    text-align: left;
  }
  .c-editor .wp-block-table table th.has-text-align-top,
  .c-editor .wp-block-table table td.has-text-align-top {
    vertical-align: top;
  }
  .c-editor .wp-block-table table th.has-text-align-middle,
  .c-editor .wp-block-table table td.has-text-align-middle {
    vertical-align: middle;
  }
  .c-editor .wp-block-table table th.has-text-align-bottom,
  .c-editor .wp-block-table table td.has-text-align-bottom {
    vertical-align: bottom;
  }
  .c-editor .wp-block-table table th.theme-lightblue,
  .c-editor .wp-block-table table td.theme-lightblue {
    background-color: #ebf8ff;
    color: #058ff2;
  }
  .c-editor .wp-block-table table th.theme-red,
  .c-editor .wp-block-table table td.theme-red {
    background-color: #fff2f4;
    color: #ff6666;
  }
  .c-editor .wp-block-table table th.theme-blue,
  .c-editor .wp-block-table table td.theme-blue {
    background-color: #edf3fa;
    color: #1253b2;
  }
  .c-editor .wp-block-table table th.bg-lightblue,
  .c-editor .wp-block-table table td.bg-lightblue {
    background-color: #f7fafc;
  }
  .c-editor .wp-block-table table th {
    background-color: rgba(237, 243, 250, 0.8);
    width: 300px;
  }
  @media (width <= 960px) {
    .c-editor .wp-block-table table th {
      width: 240px;
    }
  }
  .c-editor .wp-block-table table th:not(:has(+ td)):not(:last-child) {
    border-right: 1px solid #1253b2;
  }
  .c-editor .wp-block-table table th {
    width: auto;
    color: #fff;
    background: #1253b2;
  }
  .c-editor .wp-block-table table th:not(:last-child) {
    border-right: 1px solid #fff;
  }
  .c-editor .wp-block-table table td {
    background-color: #fff;
  }
  .c-editor .wp-block-table table td:not(:last-child) {
    border-right: 1px solid #1253b2;
  }
  .c-editor .wp-block-embed video,
  .c-editor .wp-block-embed iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .c-editor .c-funding:where(:not(:first-child)) {
    margin-top: 40px;
  }
  .c-editor .c-funding:where(:not(:last-child)) {
    margin-bottom: 40px;
  }
  .c-editor .alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }
  .c-editor .alignright {
    float: right;
    margin: 0 0 1em 1em;
  }
  .c-editor .aligncenter {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    clear: both;
  }
  .c-editor .alignnone {
    margin: 0;
  }
  .c-editor .has-text-align-center {
    text-align: center;
  }
  .c-editor .has-text-align-right {
    text-align: right;
  }
  .c-editor .has-text-align-left {
    text-align: left;
  }
}
@layer components {
  #ez-toc-container,
  .ez-toc-counter {
    background-color: #f2f5f7;
    border-radius: var(--radius);
    padding: 40px 48px;
  }
  @media (width <= 960px) {
    #ez-toc-container,
    .ez-toc-counter {
      padding: 30px;
    }
  }
  #ez-toc-container:not(:first-child),
  .ez-toc-counter:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 960px) {
    #ez-toc-container:not(:first-child),
    .ez-toc-counter:not(:first-child) {
      margin-top: 24px;
    }
  }
  #ez-toc-container:not(:last-child),
  .ez-toc-counter:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 960px) {
    #ez-toc-container:not(:last-child),
    .ez-toc-counter:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .ez-toc-title {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 700;
    color: #1253b2;
  }
  @media (width <= 960px) {
    .ez-toc-title {
      font-size: 1.25rem;
    }
  }
  .ez-toc-icon-toggle-span {
    display: none;
  }
  .ez-toc-heading-level-2 {
    position: relative;
    margin-top: 20px;
    padding-left: 24px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media (width <= 960px) {
    .ez-toc-heading-level-2 {
      padding-left: 20px;
      font-size: 0.875rem;
      margin-top: 12px;
    }
  }
  .ez-toc-heading-level-2::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
  }
  @media (width <= 960px) {
    .ez-toc-heading-level-2::before {
      width: 4px;
      height: 4px;
      left: 6px;
      top: 9px;
    }
  }
  .ez-toc-heading-level-3,
  .ez-toc-heading-level-4,
  .ez-toc-heading-level-5 {
    position: relative;
    margin-top: 8px;
  }
  .ez-toc-heading-level-3::before,
  .ez-toc-heading-level-4::before,
  .ez-toc-heading-level-5::before {
    content: "∟";
  }
  .ez-toc-link {
    color: #333;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .ez-toc-link:hover {
      opacity: 0.6;
    }
  }
}
@layer components {
  .c-funding {
    container-type: inline-size;
    padding: 60px var(--page-gutter) 60px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6))), url(../images/common/cta_bg_cover.webp) lightgray 50%/cover no-repeat;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%), url(../images/common/cta_bg_cover.webp) lightgray 50%/cover no-repeat;
  }
  @media (width <= 960px) {
    .c-funding {
      padding: 0 0 30px;
    }
  }
  @media (width >= 961px) {
    .c-funding.-row {
      -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
      box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
      border-radius: 10px;
    }
  }
  @media (width >= 1281px) {
    .c-funding.-row .c-funding__row {
      display: grid;
      grid-template-columns: 1fr auto;
      margin-top: 24px;
      gap: 40px;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: start;
    }
  }
  @media (width >= 1281px) {
    .c-funding.-row .c-funding__desc {
      text-align: left;
    }
    .c-funding.-row .c-funding__desc br {
      display: initial;
    }
  }
  @media (width >= 1281px) {
    .c-funding.-row .c-list-features {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
  }
  .c-funding.-top {
    border-radius: var(--radius);
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
    padding: 0 0 50px;
  }
  @media (width <= 960px) {
    .c-funding.-top {
      padding-bottom: 30px;
    }
  }
  .c-funding.-top .c-funding__header {
    border: none;
    background-color: #1253b2;
    width: auto;
    border-radius: var(--radius) var(--radius) 0 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  @media (width <= 960px) {
    .c-funding.-top .c-funding__header {
      padding: 5px var(--page-gutter);
      border-radius: 0 0 var(--radius) var(--radius);
    }
  }
  .c-funding.-top .c-funding__header::after {
    width: 48px;
    height: 20px;
    top: 99%;
  }
  @media (width <= 960px) {
    .c-funding.-top .c-funding__header::after {
      width: 16px;
      height: 8px;
    }
  }
  .c-funding.-top .c-funding__title {
    color: #fff;
    font-size: 2rem;
  }
  @media (width <= 960px) {
    .c-funding.-top .c-funding__title {
      font-size: 1.125rem;
    }
  }
  .c-funding.-top .c-funding__body {
    margin-top: 44px;
    padding: 0 var(--page-gutter);
  }
  @media (width <= 960px) {
    .c-funding.-top .c-funding__body {
      margin-top: 20px;
    }
  }
  .c-funding.-top .c-funding__desc {
    font-size: 1.25rem;
  }
  @media (width <= 960px) {
    .c-funding.-top .c-funding__desc {
      font-size: 0.875rem;
    }
  }
  .c-funding.-top .c-funding__features {
    display: none;
  }
  .c-funding.-top .c-funding__footer {
    gap: 30px;
    padding: 36px 45px;
    margin-top: 40px;
    grid-template-columns: repeat(2, minmax(460px, 1fr));
  }
  @media (width <= 1280px) {
    .c-funding.-top .c-funding__footer {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (width <= 960px) {
    .c-funding.-top .c-funding__footer {
      gap: 5px;
      margin-top: 32px;
      padding: 0 var(--page-gutter);
    }
  }
  @media (width >= 961px) {
    .c-funding.-top .c-funding__checkup {
      grid-column: span 1;
    }
    .c-funding.-top .c-funding__checkup-link {
      padding: 19px 12px 12px;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
    }
    .c-funding.-top .c-funding__checkup-lead {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      margin-left: auto;
      margin-right: auto;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      border: 2px solid #ea9621;
      padding: 0 16px;
      height: 40px;
    }
    .c-funding.-top .c-funding__checkup-lead__number {
      font-size: 1.25rem;
    }
    .c-funding.-top .c-funding__checkup-label {
      font-size: 2.4375rem;
      line-height: 1.5;
    }
    .c-funding.-top .c-funding__checkup-icon {
      display: none;
    }
  }
  @media (width >= 961px) {
    .c-funding.-top .c-funding__line {
      display: block;
    }
    .c-funding.-top .c-funding__line-lead {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 148px;
      height: 40px;
    }
    .c-funding.-top .c-funding__line-lead__label {
      font-size: 1.25rem;
    }
    .c-funding.-top .c-funding__line-label {
      font-size: 2.4375rem;
    }
  }
  @media (width >= 961px) {
    .c-funding.-top .c-funding__phone-link {
      padding: 11px 20px;
    }
    .c-funding.-top .c-funding__phone-number__icon .c-icon {
      width: 40px;
      height: 40px;
    }
    .c-funding.-top .c-funding__phone-number__number {
      font-size: 2.5rem;
    }
    .c-funding.-top .c-funding__phone-hour__label {
      padding: 5px 16px;
      font-size: 0.8125rem;
      border-radius: 4px;
    }
    .c-funding.-top .c-funding__phone-hour__desc {
      font-size: 0.9375rem;
    }
  }
  @media (width >= 961px) {
    .c-funding.-top .c-funding__inquiry-link {
      padding: 16px 16px 16px 28px;
    }
    .c-funding.-top .c-funding__inquiry-label {
      font-size: 1.5rem;
    }
  }
  .c-funding.-button {
    position: relative;
    container-type: inline-size;
    padding: 40px 24px 24px;
    border: 3px solid #1253b2;
    background: rgba(237, 243, 250, 0.8);
    border-radius: 10px;
  }
  @media (width <= 960px) {
    .c-funding.-button {
      padding: 40px 0 20px;
      margin-left: 0;
      margin-right: 0;
    }
  }
  .c-funding.-button .c-funding__button-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 3px 15px;
    background-color: #1253b2;
    color: #fff;
    border-radius: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .c-funding.-button .c-funding__button-header::after {
    content: "";
    position: absolute;
    top: 90%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    height: 12px;
    background-color: #1253b2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .c-funding.-button .c-funding__button-title {
    font-size: 1.4375rem;
    font-weight: 700;
  }
  @media (width <= 960px) {
    .c-funding.-button .c-funding__button-title {
      font-size: 1.125rem;
    }
  }
  .c-funding.-button .c-funding__footer {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
  }
  @media (width <= 960px) {
    .c-funding.-button .c-funding__footer {
      margin-top: 0;
      padding: 0;
      background: none;
    }
  }
  @media (width <= 960px) {
    :where(.c-editor .c-funding) {
      margin-left: var(--bleed);
      margin-right: var(--bleed);
    }
  }
  .c-funding__inner {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .c-funding__header {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 5px solid #1253b2;
  }
  @media (width <= 960px) {
    .c-funding__header {
      border: none;
      background-color: #1253b2;
      width: auto;
      padding: 5px 0 6px;
      border-radius: 0 0 4px 4px;
    }
  }
  .c-funding__header::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    height: 12px;
    background-color: #1253b2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  @media (width <= 960px) {
    .c-funding__header::after {
      width: 14px;
      height: 6px;
    }
  }
  .c-funding__title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1253b2;
  }
  @container (width <= 750px) {
    .c-funding__title {
      font-size: 1.875rem;
    }
  }
  @media (width <= 960px) {
    .c-funding__title {
      font-size: 1.125rem;
      color: #fff;
    }
  }
  .c-funding__body {
    margin-top: 32px;
  }
  @media (width <= 960px) {
    .c-funding__body {
      margin-top: 24px;
      padding: 0 var(--page-gutter);
    }
  }
  .c-funding__desc {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.75;
  }
  @media (width <= 960px) {
    .c-funding__desc {
      text-align: left;
    }
  }
  .c-funding__br {
    display: none;
  }
  .c-funding__features {
    margin-top: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (width <= 960px) {
    .c-funding__features {
      display: none;
    }
  }
  .c-funding__footer {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 26px 45px;
  }
  @container (width <= 750px) {
    .c-funding__footer {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  @media (width <= 960px) {
    .c-funding__footer {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 32px;
      padding: 0 var(--page-gutter);
      background: none;
      gap: 5px;
    }
  }
  .c-funding__checkup {
    grid-column: span 2;
  }
  @container (width <= 750px) {
    .c-funding__checkup {
      grid-column: span 1;
    }
  }
  @media (width <= 960px) {
    .c-funding__checkup {
      grid-column: span 1;
    }
  }
  .c-funding__checkup-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 26px 32px 22px 50px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#ea9621), to(#df4336));
    background: linear-gradient(90deg, #ea9621 0%, #df4336 100%);
    border-radius: 8px;
    -webkit-box-shadow: 0 6px 0 0 #1253b2;
    box-shadow: 0 6px 0 0 #1253b2;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-funding__checkup-link:hover {
      opacity: 0.6;
    }
  }
  @container (width <= 750px) {
    .c-funding__checkup-link {
      padding: 20px 24px;
    }
  }
  @media (width <= 960px) {
    .c-funding__checkup-link {
      -webkit-box-shadow: 0 2px 0 0 #1253b2;
      box-shadow: 0 2px 0 0 #1253b2;
      padding: 11px 0 3px;
      border-radius: 4px;
    }
  }
  .c-funding__checkup-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  @media (width <= 960px) {
    .c-funding__checkup-body {
      -webkit-box-flex: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
    }
  }
  .c-funding__checkup-lead {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 60px;
    padding: 10px 20px;
    color: #1253b2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  @container (width <= 750px) {
    .c-funding__checkup-lead {
      padding: 5px 10px;
    }
  }
  @media (width <= 960px) {
    .c-funding__checkup-lead {
      position: absolute;
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      top: 0;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      gap: 2px;
      padding: 2px 9px;
      border: 1px solid #ea9621;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
    }
  }
  .c-funding__checkup-lead__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    line-height: 0;
  }
  .c-funding__checkup-lead__number {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
  }
  @media (width <= 960px) {
    .c-funding__checkup-lead__number {
      font-size: 0.6875rem;
    }
  }
  .c-funding__checkup-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 2.6875rem;
    font-weight: 700;
  }
  @container (width <= 750px) {
    .c-funding__checkup-label {
      font-size: 2rem;
    }
  }
  @media (width <= 960px) {
    .c-funding__checkup-label {
      font-size: 1rem;
      text-align: center;
      line-height: 2;
    }
  }
  @media (width <= 960px) {
    .c-funding__checkup-icon {
      display: none;
    }
  }
  @media (width >= 961px) {
    .c-funding__line {
      display: none;
    }
  }
  .c-funding__line-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 19px 12px 12px;
    border-radius: 8px;
    background: #07b53b;
    -webkit-box-shadow: 0 6px 0 0 #1253b2;
    box-shadow: 0 6px 0 0 #1253b2;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-funding__line-link:hover {
      opacity: 0.6;
    }
  }
  @media (width <= 960px) {
    .c-funding__line-link {
      -webkit-box-shadow: 0 2px 0 0 #1253b2;
      box-shadow: 0 2px 0 0 #1253b2;
      border-radius: 4px;
      padding: 11px 0 2px;
    }
  }
  .c-funding__line-lead {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 60px;
    border: 2px solid #07b53b;
    width: fit-content;
    text-align: center;
    padding: 0 0 2px;
  }
  @media (width <= 960px) {
    .c-funding__line-lead {
      border-width: 1px;
      padding: 2px 13px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  .c-funding__line-lead__label {
    font-size: 0.875rem;
    font-weight: 900;
    color: #505151;
  }
  @media (width <= 960px) {
    .c-funding__line-lead__label {
      font-size: 0.6875rem;
    }
  }
  .c-funding__line-label {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media (width <= 960px) {
    .c-funding__line-label {
      font-size: 1rem;
      line-height: 2;
    }
  }
  .c-funding__phone-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 16px 9px;
    background-color: #1253b2;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-funding__phone-link:hover {
      opacity: 0.6;
    }
  }
  @media (width <= 960px) {
    .c-funding__phone-link {
      border-radius: 4px;
      padding: 8px;
    }
  }
  .c-funding__phone-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: grid;
  }
  .c-funding__phone-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-funding__phone-number__number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @container (width <= 750px) {
    .c-funding__phone-number__number {
      font-size: 1.5rem;
    }
  }
  @media (width <= 960px) {
    .c-funding__phone-number__number {
      font-size: 1rem;
    }
  }
  @media (width <= 374px) {
    .c-funding__phone-number__number {
      font-size: 0.75rem;
    }
  }
  .c-funding__phone-hour {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  @media (width <= 960px) {
    .c-funding__phone-hour {
      gap: 4px;
    }
  }
  .c-funding__phone-hour__label {
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 4px 6px;
    color: #fff;
    font-size: 0.625rem;
    line-height: 1;
  }
  @media (width <= 960px) {
    .c-funding__phone-hour__label {
      font-size: 0.5625rem;
      border: none;
      padding: 0;
    }
  }
  .c-funding__phone-hour__desc {
    font-size: 0.875rem;
  }
  @media (width <= 960px) {
    .c-funding__phone-hour__desc {
      font-size: 0.5625rem;
    }
  }
  .c-funding__inquiry-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 14px 12px 22px;
    -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #1253b2;
    color: #1253b2;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-funding__inquiry-link:hover {
      opacity: 0.6;
    }
  }
  @media (width <= 960px) {
    .c-funding__inquiry-link {
      padding: 8px;
      border-radius: 4px;
    }
  }
  .c-funding__inquiry-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media (width <= 960px) {
    .c-funding__inquiry-label {
      font-size: 0.75rem;
    }
  }
  @media (width <= 374px) {
    .c-funding__inquiry-label {
      font-size: 0.625rem;
    }
  }
}
@layer components {
  .c-icon {
    display: inline-block;
    fill: currentColor;
    vertical-align: middle;
    -webkit-transition: fill 300ms ease;
    transition: fill 300ms ease;
  }
  .c-icon.-azure-38 {
    color: #1253b2;
  }
  .c-icon.-white {
    color: #fff;
  }
  .c-icon.-transparent {
    color: rgba(237, 237, 237, 0.5);
  }
}
@layer components {
  .c-list-features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
  }
  .c-list-features__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #1253b2;
    padding: 6px 26px;
    background-color: #fff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1253b2;
    line-height: 1.5;
  }
}
@layer components {
  :root.is-modal-open {
    overflow: hidden;
    scrollbar-gutter: stable;
  }
  .c-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
  }
  .c-modal.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-modal__backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: rgba(4, 4, 4, 0.3);
  }
  .c-modal__inner {
    position: relative;
  }
  .c-modal__body {
    overflow: auto;
    background-color: white;
    margin-inline: auto;
    padding: 40px;
    width: 880px;
    max-width: calc(100% - 40px);
    max-height: 80vh;
  }
  @media (width <= 768px) {
    .c-modal__body {
      width: auto;
      max-height: 80vh;
      padding: 24px;
    }
  }
  .c-modal__close {
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 58px;
    height: 58px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: white;
    border-radius: 58px;
    color: black;
    cursor: pointer;
    -webkit-transition: background-color 300ms ease, color 300ms ease;
    transition: background-color 300ms ease, color 300ms ease;
  }
  @media (width <= 768px) {
    .c-modal__close {
      width: 40px;
      height: 40px;
    }
  }
  @media (any-hover: hover) {
    .c-modal__close:hover {
      background-color: gray;
    }
  }
}
@layer components {
  .c-page-header {
    position: relative;
    margin-top: calc(var(--height-header) * -1);
    margin-bottom: 72px;
    padding: 217px var(--page-gutter) 64px;
    color: #fff;
    background-color: #ff6600;
  }
  @media (width <= 768px) {
    .c-page-header {
      padding-top: 135px;
      padding-bottom: 40px;
      margin-bottom: 36px;
    }
  }
  @media (width <= 768px) {
    .c-page-header.-single {
      display: none;
    }
  }
  .c-page-header__inner {
    position: relative;
    z-index: 1;
    max-width: 1290px;
    margin-inline: auto;
  }
  .c-page-header__body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
  }
  .c-page-header.-single .c-page-header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .c-page-header__label {
    font-family: "Syncopate", sans-serif;
    font-size: 4.625rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  @media (width <= 768px) {
    .c-page-header__label {
      font-size: 2.25rem;
    }
  }
  .c-page-header__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 16px;
  }
  @media (width <= 768px) {
    .c-page-header__title {
      margin-top: 8px;
      font-size: 1rem;
    }
  }
  .c-page-header__title-keyword {
    font-size: 2.25rem;
    margin-right: 20px;
  }
  @media (width <= 768px) {
    .c-page-header__breadcrumb {
      display: none;
    }
  }
  .c-page-header__category {
    position: relative;
    z-index: 1;
    margin-top: 48px;
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
  }
  @media (width <= 768px) {
    .c-page-header__category {
      margin-top: 32px;
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }
  .c-page-header__category-title {
    position: relative;
    top: 2px;
    font-size: 1.25rem;
    font-family: "Syncopate", sans-serif;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
  }
  .c-page-header__category-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
  }
  .c-page-header__category-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 6px 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    -webkit-transition: background-color 300ms ease, color 300ms ease;
    transition: background-color 300ms ease, color 300ms ease;
  }
  @media (any-hover: hover) {
    .c-page-header__category-link:hover {
      color: #222;
      background-color: #fff;
    }
  }
  @media (width <= 768px) {
    .c-page-header__category-link {
      font-size: 0.75rem;
    }
  }
  .c-page-header__category-link.-current {
    color: #222;
    background-color: #fff;
  }
  .c-page-header__search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    margin-top: 32px;
  }
  @media (width <= 768px) {
    .c-page-header__search {
      margin-top: 12px;
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }
  .c-page-header__search-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
  }
  @media (width <= 768px) {
    .c-page-header__search-title {
      font-size: 1rem;
    }
  }
  .c-page-header__search-keyword {
    font-size: 2.25rem;
    margin-right: 20px;
  }
  @media (width <= 768px) {
    .c-page-header__search-keyword {
      font-size: 1.5rem;
    }
  }
  .c-page-header__search-result {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
  }
  .c-page-header__search-number {
    font-size: 2rem;
    margin-right: 10px;
  }
  @media (width <= 768px) {
    .c-page-header__search-number {
      font-size: 1.75rem;
    }
  }
  .c-page-header__cover {
    position: absolute;
    inset: 0;
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
  }
  body.is-loaded .c-page-header__cover {
    opacity: 1;
  }
  .c-page-header__cover-video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@layer components {
  .c-pagination {
    margin-top: 60px;
  }
  @media (width <= 768px) {
    .c-pagination {
      margin-top: 30px;
    }
  }
  .c-pagination__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
  }
  @media (width <= 960px) {
    .c-pagination__inner {
      gap: 24px;
    }
  }
  .c-pagination__prev-link, .c-pagination__next-link {
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #1253b2;
    border-radius: 50%;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-pagination__prev-link:hover, .c-pagination__next-link:hover {
      opacity: 0.6;
    }
  }
  @media (width <= 960px) {
    .c-pagination__prev-link, .c-pagination__next-link {
      width: 31px;
      height: 31px;
    }
  }
  .c-pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
  @media (width <= 960px) {
    .c-pagination__list {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      gap: 16px;
    }
  }
  .c-pagination__page-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 1.375rem;
    border-bottom: 2px solid transparent;
    -webkit-transition: border-color 300ms ease, color 300ms ease;
    transition: border-color 300ms ease, color 300ms ease;
  }
  @media (any-hover: hover) {
    .c-pagination__page-link:hover {
      color: #1253b2;
      border-bottom-color: #1253b2;
    }
  }
  @media (width <= 960px) {
    .c-pagination__page-link {
      font-size: 1rem;
    }
  }
  .c-pagination__page-link.-current {
    font-weight: 900;
    color: #1253b2;
    border-bottom-color: #1253b2;
  }
  .c-pagination__page-dots {
    font-size: 1.375rem;
    position: relative;
    top: 4px;
  }
  @media (width <= 960px) {
    .c-pagination__page-dots {
      font-size: 1rem;
      top: 8px;
    }
  }
}
@layer components {
  body.is-laptop .c-phone {
    pointer-events: none;
  }
}
@layer components {
  .c-rank {
    width: 38px;
    height: auto;
    aspect-ratio: 1/1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.125rem;
    color: #fff;
    font-family: "Lato", sans-serif;
    line-height: 1;
    border: 1.5px solid #176be6;
    background: #1253b2;
    font-weight: 900;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .c-rank.-first {
    color: #da8207;
    border: 1.5px solid rgba(254, 251, 239, 0.59);
    background: linear-gradient(0deg, rgba(255, 237, 189, 0.55) 0%, rgba(255, 237, 189, 0.55) 100%), linear-gradient(95deg, #da8207 -0.22%, #dd9318 10.66%, #ffcb3c 26.65%, #ffcb3c 78.95%, #e39c1e 93%, #fbc63a 97.24%);
  }
  .c-rank.-second {
    color: #666;
    border: 1.5px solid rgba(255, 255, 255, 0.59);
    background: linear-gradient(0deg, rgba(231, 230, 230, 0.55) 0%, rgba(231, 230, 230, 0.55) 100%), linear-gradient(95deg, #717171 -0.22%, #7b7b7b 10.66%, #cbcbcb 26.65%, #d1d1d1 78.95%, #808080 93%, #9a9a9a 97.24%);
  }
  .c-rank.-third {
    color: #cc5f10;
    border: 1.5px solid rgba(255, 255, 255, 0.59);
    background: linear-gradient(0deg, rgba(253, 227, 209, 0.52) 0%, rgba(253, 227, 209, 0.52) 100%), linear-gradient(95deg, #d66d0b -0.22%, #e9770c 17.32%, #fac39c 53.92%, #facaa8 71.98%, #f26e0f 86.86%, #f58b40 97.24%);
  }
}
.c-ranking-carousel {
  position: relative;
}
.c-ranking-carousel.swiper {
  overflow: visible;
}
.c-ranking-carousel__slide {
  height: auto;
}
.c-ranking-carousel__slide .c-card {
  height: 100%;
}
.c-ranking-carousel__prev, .c-ranking-carousel__next {
  position: absolute;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1253b2;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-ranking-carousel__prev:hover, .c-ranking-carousel__next:hover {
    opacity: 0.7;
  }
}
.c-ranking-carousel__prev.swiper-button-disabled, .c-ranking-carousel__next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
@media (width <= 960px) {
  .c-ranking-carousel__nav {
    display: none;
  }
}
.c-ranking-carousel__prev {
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-ranking-carousel__next {
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

@layer components {
  .c-ranking-entries {
    overflow: hidden;
    background: rgba(237, 243, 250, 0.8);
    padding: 64px var(--page-gutter) 80px;
  }
  @media (width <= 960px) {
    .c-ranking-entries {
      padding-top: 24px;
      padding-bottom: 40px;
    }
  }
  .c-ranking-entries__inner {
    max-width: 1290px;
    margin-inline: auto;
  }
  .c-ranking-entries__header {
    grid-area: header;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-ranking-entries__desc {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  @media (width <= 960px) {
    .c-ranking-entries__desc {
      display: none;
    }
  }
  .c-ranking-entries__body {
    margin-top: 50px;
  }
  @media (width <= 960px) {
    .c-ranking-entries__body {
      margin-top: 16px;
    }
  }
}
@layer components {
  .c-related-entries {
    background: rgba(237, 237, 237, 0.6);
    padding: 64px var(--page-gutter) 80px;
  }
  @media (width <= 960px) {
    .c-related-entries {
      padding-top: 24px;
      padding-bottom: 40px;
    }
  }
  .c-related-entries.-overline {
    border-top: 3px solid #1253b2;
  }
  .c-related-entries.-white {
    background-color: #fff;
  }
  .c-related-entries.-logo {
    background: #fff url(../images/common/img_logo_symbol_azure.svg) 0 50% no-repeat;
  }
  @media (width <= 960px) {
    .c-related-entries.-logo {
      background-position: right -25% top 0;
      background-size: 75% auto;
    }
  }
  .c-related-entries.-logo .c-related-entries__body {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  @media (width <= 1280px) {
    .c-related-entries.-logo .c-related-entries__body {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (width <= 960px) {
    .c-related-entries.-logo .c-related-entries__body {
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }
  }
  @media (width <= 960px) {
    .c-related-entries.-top .c-related-entries__footer {
      margin-top: 40px;
      justify-self: unset;
    }
  }
  .c-related-entries__inner {
    display: grid;
    grid-template-areas: "header footer" "body body";
    grid-template-columns: 1fr auto;
    max-width: 1290px;
    margin-inline: auto;
  }
  @media (width <= 960px) {
    .c-related-entries__inner {
      grid-template-areas: "header" "body" "footer";
      grid-template-columns: 1fr;
    }
  }
  .c-related-entries__header {
    grid-area: header;
  }
  .c-related-entries__body {
    grid-area: body;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  @media (width <= 960px) {
    .c-related-entries__body {
      margin-top: 20px;
      gap: 16px;
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .c-related-entries__footer {
    grid-area: footer;
    align-self: center;
  }
  @media (width <= 960px) {
    .c-related-entries__footer {
      justify-self: center;
      margin-top: 20px;
    }
  }
}
.scroll-hint-icon-wrap {
  overflow: hidden;
}
.scroll-hint-icon::before {
  width: 24px;
  height: 24px;
}
.scroll-hint-icon::after {
  width: 30px;
  height: 10px;
  margin-left: -17px;
  background-size: contain;
}

@layer components {
  .c-search-nav.-archive {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-search-nav.-archive .c-search-nav__form {
    width: auto;
  }
  .c-search-nav__form {
    position: relative;
    width: 278px;
  }
  @media (width <= 960px) {
    .c-search-nav__form {
      width: auto;
    }
  }
  .c-search-nav__input {
    padding: 10px 40px 10px 10px;
    -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25) inset;
    border-radius: 5px;
    background-color: #fff;
    border: none;
    width: 100%;
    font-size: 0.875rem;
  }
  @media (width <= 960px) {
    .c-search-nav__input {
      -webkit-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25) inset;
      box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.25) inset;
      font-size: 1rem;
    }
  }
  .c-search-nav__input::-webkit-input-placeholder {
    color: #9a9a9a;
  }
  .c-search-nav__input::-moz-placeholder {
    color: #9a9a9a;
  }
  .c-search-nav__input:-ms-input-placeholder {
    color: #9a9a9a;
  }
  .c-search-nav__input::-ms-input-placeholder {
    color: #9a9a9a;
  }
  .c-search-nav__input::placeholder {
    color: #9a9a9a;
  }
  .c-search-nav__submit {
    position: absolute;
    right: 10px;
    top: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-search-nav__submit:hover {
      opacity: 0.6;
    }
  }
  .c-search-nav__keywords {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
  }
  @media (width <= 960px) {
    .c-search-nav__keywords {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      gap: 10px;
    }
  }
  .c-search-nav__keywords-title {
    position: relative;
    top: 2px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 6px 10px;
    background-color: #1253b2;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 1;
  }
  @media (width <= 960px) {
    .c-search-nav__keywords-title {
      font-size: 0.75rem;
      top: 0;
    }
  }
  .c-search-nav__keywords-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 32px;
  }
  @media (width <= 960px) {
    .c-search-nav__keywords-list {
      gap: 8px 24px;
    }
  }
  .c-search-nav__keywords-link {
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: underline;
    color: #333;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
  }
  @media (any-hover: hover) {
    .c-search-nav__keywords-link:hover {
      color: #1253b2;
    }
  }
  .c-search-nav__keywords-link::before {
    content: "#";
  }
}
@layer components {
  @media (width <= 768px) {
    .swipe {
      overflow: auto;
    }
  }
  @media (width <= 768px) {
    .swipe__inner {
      width: 1290px;
    }
  }
}
@layer components {
  .c-text-marquee {
    --width: 2700px;
    --duration: 20s;
    position: relative;
    overflow: hidden;
    line-height: 1;
    font-size: 7.5rem;
    font-family: "Syncopate", sans-serif;
    color: rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    letter-spacing: 0.04em;
    pointer-events: none;
  }
  @media (width <= 768px) {
    .c-text-marquee {
      --duration: 15s;
      --width: 1700px;
      font-size: 4.6875rem;
    }
  }
  .c-text-marquee__label {
    display: inline-block;
    text-shadow: var(--width) 0 0 currentColor, calc(var(--width) * 2) 0 0 currentColor;
    -webkit-animation-name: scrollingText;
    animation-name: scrollingText;
    -webkit-animation-duration: var(--duration);
    animation-duration: var(--duration);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  @-webkit-keyframes scrollingText {
    0% {
      translate: 0 0;
    }
    100% {
      translate: calc(var(--width) * -1) 0;
    }
  }
  @keyframes scrollingText {
    0% {
      translate: 0 0;
    }
    100% {
      translate: calc(var(--width) * -1) 0;
    }
  }
}
@layer components {
  .c-title-label__label {
    color: #1253b2;
    font-family: "Lato", sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media (width <= 960px) {
    .c-title-label__label {
      font-size: 0.75rem;
    }
  }
  .c-title-label__title {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
    color: #333;
  }
  @media (width <= 960px) {
    .c-title-label__title {
      font-size: 1.25rem;
    }
  }
}
@layer components {
  .c-two-column {
    padding-inline: var(--page-gutter);
  }
  .c-two-column__inner {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (width >= 1025px) {
    .c-two-column__inner {
      display: grid;
      grid-template-areas: "main sub" "bottom bottom";
      grid-template-columns: 1fr 350px;
      gap: 0 60px;
    }
  }
  .c-two-column__main {
    container-type: inline-size;
  }
  @media (width >= 1025px) {
    .c-two-column__main {
      grid-area: main;
    }
  }
  .c-two-column__sub {
    container-type: inline-size;
  }
  @media (width >= 1025px) {
    .c-two-column__sub {
      grid-area: sub;
    }
  }
  @media (width <= 768px) {
    .c-two-column__sub {
      margin-top: 40px;
    }
  }
  .c-two-column__bottom {
    margin-left: var(--bleed);
    margin-right: var(--bleed);
  }
  @media (width >= 1025px) {
    .c-two-column__bottom {
      grid-area: bottom;
    }
  }
}
@layer components {
  .c-blocks-banner:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-banner:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-blocks-banner:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-banner:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-blocks-banner a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .c-blocks-banner a:hover {
      opacity: 0.6;
    }
  }
}
@layer components {
  .c-blocks-button:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-button:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-blocks-button:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-button:not(:last-child) {
      margin-bottom: 24px;
    }
  }
}
@layer components {
  .c-blocks-checklist__item {
    position: relative;
    padding-left: 36px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75;
  }
  @media (width <= 960px) {
    .c-blocks-checklist__item {
      font-size: 1rem;
    }
  }
  .c-blocks-checklist__item:not(:first-child) {
    margin-top: 20px;
  }
  @media (width <= 768px) {
    .c-blocks-checklist__item:not(:first-child) {
      margin-top: 10px;
    }
  }
  .c-blocks-checklist__item::after {
    content: "";
    pointer-events: none;
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("/column/assets/icons/check_circle.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 6px;
  }
  @media (width <= 768px) {
    .c-blocks-checklist__item::after {
      top: 4px;
    }
  }
  .-red .c-blocks-checklist__item::after {
    content: "";
    pointer-events: none;
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("/column/assets/icons/check_circle_red.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@layer components {
  .c-blocks-comment {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 48px 50px 40px;
    -webkit-box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
    box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
  }
  @media (width <= 960px) {
    .c-blocks-comment {
      border-radius: 4px;
      padding: 36px 20px 28px;
    }
  }
  .c-blocks-comment:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-comment:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-blocks-comment:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-comment:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-blocks-comment__title {
    position: absolute;
    left: 30px;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 8px 24px;
    color: #fff;
    background-color: #1253b2;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 64px;
  }
  @media (width <= 960px) {
    .c-blocks-comment__title {
      left: 0;
      right: 0;
      margin-left: auto;
      margin-right: auto;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      padding: 6px 24px;
      font-size: 1.25rem;
    }
  }
  .c-blocks-comment__lead {
    font-size: 1.125rem;
  }
  @media (width <= 960px) {
    .c-blocks-comment__lead {
      font-size: 0.875rem;
    }
  }
  .c-blocks-comment__thumb {
    width: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  @media (width <= 960px) {
    .c-blocks-comment__thumb {
      width: 88px;
    }
  }
  .c-blocks-comment__thumb img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .c-blocks-comment__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
  }
  @media (width <= 960px) {
    .c-blocks-comment__body {
      gap: 12px;
    }
  }
  .c-blocks-comment__desc {
    font-size: 0.875rem;
    line-height: 1.75;
    font-weight: 500;
  }
  @media (width <= 960px) {
    .c-blocks-comment__desc {
      font-size: 0.8125rem;
    }
  }
}
@layer components {
  .c-blocks-faq {
    -webkit-box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
    box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
    border-radius: var(--radius);
  }
  .c-blocks-faq:where(:not(:first-child)) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-faq:where(:not(:first-child)) {
      margin-top: 24px;
    }
  }
  .c-blocks-faq:where(:not(:last-child)) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-faq:where(:not(:last-child)) {
      margin-bottom: 24px;
    }
  }
  .c-blocks-faq__header {
    position: relative;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    line-height: 1.75;
    padding: 24px 56px 24px 56px;
    cursor: pointer;
  }
  @media (width <= 768px) {
    .c-blocks-faq__header {
      padding: 16px 56px 16px 56px;
      font-size: 0.8125rem;
    }
  }
  .c-blocks-faq__header::before {
    content: "Q";
    color: #1253b2;
    font-family: "Lato", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    position: absolute;
    left: 24px;
    top: 24px;
  }
  @media (width <= 768px) {
    .c-blocks-faq__header::before {
      top: 13px;
    }
  }
  .c-blocks-faq__icon {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .c-blocks-faq__icon::before, .c-blocks-faq__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% 0;
    width: 15px;
    height: 1px;
    background-color: #1253b2;
    -webkit-transition: rotate 300ms ease;
    transition: rotate 300ms ease;
  }
  .c-blocks-faq__header.is-expanded .c-blocks-faq__icon::before, .c-blocks-faq__header.is-expanded .c-blocks-faq__icon::after {
    rotate: 180deg;
  }
  .c-blocks-faq__icon::before {
    rotate: 90deg;
  }
  .c-blocks-faq__body {
    position: relative;
    padding: 24px 24px 24px 56px;
    border-top: 1px solid #ededed;
  }
  .c-blocks-faq__body::before {
    content: "A";
    color: #1253b2;
    font-family: "Lato", sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    position: absolute;
    left: 24px;
    top: 30px;
  }
  @media (width <= 768px) {
    .c-blocks-faq__body::before {
      top: 24px;
    }
  }
}
@layer components {
  .c-blocks-fill {
    --bg-color: rgba(18, 83, 178, 0.05);
    --color: #1253b2;
    border-radius: 10px;
    background: var(--bg-color);
    padding: 40px 48px;
  }
  @media (width <= 960px) {
    .c-blocks-fill {
      border-radius: 4px;
      padding: 24px 28px;
    }
  }
  .c-blocks-fill:where(:not(:first-child)) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-fill:where(:not(:first-child)) {
      margin-top: 24px;
    }
  }
  .c-blocks-fill:where(:not(:last-child)) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-fill:where(:not(:last-child)) {
      margin-bottom: 24px;
    }
  }
  .c-blocks-fill.-red {
    --bg-color: #fff2f4;
    --color: #ff6666;
  }
  .c-blocks-fill.-border {
    border: 1px solid var(--color);
  }
  .c-blocks-fill.-dashed {
    border: 1px dashed var(--color);
  }
  .c-blocks-fill__title {
    text-align: center;
    color: var(--color);
    margin-bottom: 24px;
    font-size: 1.125rem;
    font-weight: 700;
  }
  @media (width <= 768px) {
    .c-blocks-fill__title {
      font-size: 1rem;
      margin-bottom: 16px;
    }
  }
}
@layer components {
  .c-blocks-image-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
  }
  @media (width <= 768px) {
    .c-blocks-image-text {
      grid-template-areas: "header" "body";
      grid-template-columns: repeat(1, 1fr);
      gap: 16px;
    }
  }
  @media (width >= 769px) {
    .c-blocks-image-text.-left {
      grid-template-areas: "header body";
    }
  }
  @media (width >= 769px) {
    .c-blocks-image-text.-right {
      grid-template-areas: "body header";
    }
  }
  .c-blocks-image-text > * {
    margin-top: 0;
    margin-bottom: 0;
  }
  .c-blocks-image-text:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-image-text:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-blocks-image-text:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-image-text:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-blocks-image-text__header {
    grid-area: header;
  }
  .c-blocks-image-text__body {
    grid-area: body;
  }
  .c-blocks-image-text img {
    border-radius: var(--radius);
  }
}
@layer components {
  .c-blocks-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (width <= 768px) {
    .c-blocks-row {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .c-blocks-row > * {
    margin-top: 0;
    margin-bottom: 0;
  }
  @media (width >= 769px) {
    .c-blocks-row > *:only-child {
      grid-column: 1/-1;
    }
  }
  .c-blocks-row:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-row:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-blocks-row:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-row:not(:last-child) {
      margin-bottom: 24px;
    }
  }
}
@layer components {
  .c-blocks-summary {
    padding: 40px 48px;
    border-radius: 10px;
    background: rgba(18, 83, 178, 0.05);
  }
  @media (width <= 960px) {
    .c-blocks-summary {
      border-radius: 4px;
      padding: 32px 28px;
    }
  }
  .c-blocks-summary:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-summary:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-blocks-summary:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-summary:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-blocks-summary__title {
    color: #1253b2;
    font-size: 2rem;
    font-weight: 700;
  }
  @media (width <= 960px) {
    .c-blocks-summary__title {
      font-size: 1.25rem;
    }
  }
}
@layer components {
  .c-blocks-supervision {
    padding-top: 20px;
  }
  .c-blocks-supervision:not(:first-child) {
    margin-top: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-supervision:not(:first-child) {
      margin-top: 24px;
    }
  }
  .c-blocks-supervision:not(:last-child) {
    margin-bottom: 40px;
  }
  @media (width <= 768px) {
    .c-blocks-supervision:not(:last-child) {
      margin-bottom: 24px;
    }
  }
  .c-blocks-supervision__inner {
    position: relative;
    background-color: #fff;
    border-radius: var(--radius);
    padding: 48px 50px 40px;
    -webkit-box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
    box-shadow: 0 0 32px 0 rgba(10, 48, 102, 0.1);
  }
  @media (width <= 960px) {
    .c-blocks-supervision__inner {
      padding: 36px 20px 28px;
    }
  }
  .c-blocks-supervision__title {
    position: absolute;
    left: 30px;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 8px 24px;
    color: #fff;
    background-color: #1253b2;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 64px;
  }
  @media (width <= 960px) {
    .c-blocks-supervision__title {
      left: 0;
      right: 0;
      margin-right: auto;
      margin-left: auto;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      font-size: 1rem;
    }
  }
  .c-blocks-supervision__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
  }
  @media (width <= 960px) {
    .c-blocks-supervision__header {
      gap: 12px;
    }
  }
  .c-blocks-supervision__thumb {
    width: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  @media (width <= 960px) {
    .c-blocks-supervision__thumb {
      width: 88px;
    }
  }
  .c-blocks-supervision__thumb img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .c-blocks-supervision__name {
    font-size: 1.75rem;
    font-weight: 700;
  }
  .c-blocks-supervision__position {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .c-blocks-supervision__data {
    margin-top: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px 40px;
  }
  .c-blocks-supervision__data dt {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: #ededed;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-blocks-supervision__data dd {
    margin-top: 8px;
    font-size: 0.875rem;
  }
  .c-blocks-supervision__data dd a {
    color: #666;
  }
  .c-blocks-supervision__body {
    margin-top: 16px;
  }
  .c-blocks-supervision__desc {
    font-size: 0.875rem;
    line-height: 1.75;
    font-weight: 500;
  }
  @media (width <= 960px) {
    .c-blocks-supervision__desc {
      font-size: 0.8125rem;
    }
  }
}
@layer components {
  .c-input-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }
  .c-input-checkbox__label {
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .c-input-checkbox__group {
    display: grid;
    gap: 4px;
  }
}
@layer components {
  .c-input-privacy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
  }
  .c-input-privacy__label {
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 500;
  }
  .c-input-privacy__group {
    display: grid;
    gap: 4px;
  }
}
@layer components {
  /*
  /* Input Radio

  	<label class="input-radio">
  		<input type="radio" class="input-radio__input" name="sample">
  		<span class="input-radio__label">ラジオボタンのサンプル</span>
  	</label>

  /*
  ----------------------------------------------------------------- */
  .input-radio {
    display: inline-block;
  }
  .input-radio__input {
    display: none;
  }
  .input-radio__input:checked + .input-radio__label {
    border-color: #6cc;
  }
  .input-radio__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px #000 solid;
    padding: 20px;
    cursor: pointer;
  }
}
@layer components {
  /*
  /* Input select

  	<div class="input-select">
  		<select name="" class="input-select__field">
  			<option value="">foo</option>
  		</select>
  	</div>

  /*
  ----------------------------------------------------------------- */
  .input-select {
    position: relative;
    display: inline-block;
  }
  .input-select::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto 0;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #333 transparent transparent transparent;
    pointer-events: none;
  }
  .input-select__field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    position: relative;
    z-index: 0;
    height: 48px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px 0 10px;
    background: transparent;
    border: none;
    border: 1px #eee solid;
    font-size: 1.4rem;
    width: 100%;
  }
  .input-select__field::-ms-expand {
    display: none;
  }
  .input-select__field:focus {
    outline: none;
  }
}
@layer components {
  .c-input-text__field {
    width: 100%;
    border-radius: 4px;
    background-color: #ebebeb;
    border: none;
    font-size: 0.875rem;
    padding: 6px 10px;
  }
  @media (width <= 768px) {
    .c-input-text__field {
      font-size: 1rem;
    }
  }
}
@layer components {
  .c-input-textarea__field {
    width: 100%;
    min-height: 240px;
    border-radius: 4px;
    background-color: #ebebeb;
    border: none;
    font-size: 0.875rem;
    padding: 6px 10px;
  }
  @media (width <= 768px) {
    .c-input-textarea__field {
      font-size: 1rem;
      min-height: 220px;
    }
  }
}
@layer pages {
  .p-archive-header {
    padding: 0 var(--page-gutter) 120px;
    background: #ededed url(../images/common/img_logo_symbol.svg) 100% 100% no-repeat;
  }
  @media (width <= 960px) {
    .p-archive-header {
      padding-bottom: 80px;
    }
  }
  .p-archive-header__inner {
    max-width: 1290px;
    margin-inline: auto;
  }
  .p-archive-header__heading {
    margin-top: 16px;
  }
  @media (width <= 960px) {
    .p-archive-header__heading {
      margin-top: 0;
    }
  }
  .p-archive-header__title {
    color: #333;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media (width <= 960px) {
    .p-archive-header__title {
      font-size: 1.75rem;
    }
  }
  .p-archive-header__label {
    font-family: "Lato", sans-serif;
    font-size: 1.25rem;
    color: #1253b2;
    font-weight: 700;
    line-height: 1.75;
  }
  @media (width <= 960px) {
    .p-archive-header__label {
      font-size: 0.75rem;
    }
  }
  .p-archive-body {
    padding: 80px var(--page-gutter) 60px;
  }
  @media (width <= 960px) {
    .p-archive-body {
      padding-top: 28px;
      padding-bottom: 30px;
    }
  }
  .p-archive-body__inner {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
  }
  .p-archive-body__entries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 53px;
  }
  @media (width <= 960px) {
    .p-archive-body__entries {
      grid-template-columns: repeat(1, 1fr);
      gap: 24px;
    }
  }
}
@layer pages {
  .p-single-header {
    padding: 0 var(--page-gutter);
    background: #ededed url(../images/common/img_logo_symbol.svg) 100% 100% no-repeat;
  }
  .p-single-header__inner {
    max-width: 1290px;
    margin-inline: auto;
  }
  .p-single-header__heading {
    margin-top: 16px;
  }
  @media (width <= 960px) {
    .p-single-header__heading {
      margin-top: 8px;
    }
  }
  .p-single-header__title {
    color: #333;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.5;
  }
  @media (width <= 960px) {
    .p-single-header__title {
      font-size: 1.5rem;
    }
  }
  .p-single-header__content {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px 64px;
  }
  @media (width <= 960px) {
    .p-single-header__content {
      margin-top: 16px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
  }
  @media (width >= 961px) {
    .p-single-header__thumb {
      width: 44%;
    }
  }
  .p-single-header__thumb img {
    border-radius: 10px;
  }
  @media (width >= 961px) {
    .p-single-header__body {
      width: calc(56% - 64px);
    }
    .p-single-header__content:not(.p-single-header__content:has(.p-single-header__thumb)) .p-single-header__body {
      width: 100%;
    }
  }
  .p-single-header__data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-single-header__date {
    font-size: 1rem;
    color: #666;
    line-height: 1;
  }
  .p-single-header__desc {
    margin-top: 24px;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75;
  }
  @media (width <= 960px) {
    .p-single-header__desc {
      margin-top: 14px;
      font-size: 0.875rem;
    }
  }
  .p-single-header__cta {
    position: relative;
  }
  @media (width >= 961px) {
    .p-single-header__cta {
      top: 167px;
      margin-top: -107px;
    }
  }
  @media (width <= 960px) {
    .p-single-header__cta {
      margin-top: 40px;
      margin-left: var(--bleed);
      margin-right: var(--bleed);
    }
  }
  .p-single-body {
    margin-top: 231px;
    padding: 0 var(--page-gutter) 60px;
  }
  @media (width <= 960px) {
    .p-single-body {
      margin-top: 40px;
      padding-bottom: 0;
    }
  }
  .p-single-body__inner {
    display: grid;
    grid-template-columns: 1fr 394px;
    gap: 36px;
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (width <= 960px) {
    .p-single-body__inner {
      grid-template-columns: 1fr;
    }
  }
  .p-single-body__main {
    min-width: 0;
  }
  .p-single-body__side {
    min-width: 0;
    padding-left: 36px;
    border-left: 1px solid #ededed;
  }
  @media (width <= 960px) {
    .p-single-body__side {
      display: none;
    }
  }
  .p-single-body__side-content:not(:first-child) {
    margin-top: 80px;
  }
  .p-single-side-ranking {
    display: grid;
    gap: 24px;
    margin-top: 24px;
  }
  .p-single-side-cta {
    position: sticky;
    top: 180px;
    margin-top: 80px;
    padding: 0 17px 27px;
    border-radius: 10px;
    border: 3px solid #1253b2;
    background: rgba(237, 243, 250, 0.8);
  }
  .p-single-side-cta__header {
    position: relative;
    top: -10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 3px 15px;
    background-color: #1253b2;
    color: #fff;
    border-radius: 4px;
  }
  .p-single-side-cta__header::after {
    content: "";
    position: absolute;
    top: 90%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 25px;
    height: 12px;
    background-color: #1253b2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .p-single-side-cta__title {
    font-size: 1.4375rem;
    font-weight: 700;
  }
  .p-single-side-cta__body {
    margin-top: 32px;
  }
  .p-single-side-cta__checkup-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    padding: 19px 12px 12px;
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, from(#ea9621), to(#df4336));
    background: linear-gradient(90deg, #ea9621 0%, #df4336 100%);
    border-radius: 8px;
    -webkit-box-shadow: 0 6px 0 0 #1253b2;
    box-shadow: 0 6px 0 0 #1253b2;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .p-single-side-cta__checkup-link:hover {
      opacity: 0.6;
    }
  }
  .p-single-side-cta__checkup-lead {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-radius: 60px;
    padding: 2px 8px;
    color: #1253b2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 2px solid #ea9621;
  }
  .p-single-side-cta__checkup-lead__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    line-height: 0;
  }
  .p-single-side-cta__checkup-lead__number {
    font-size: 0.875rem;
    font-weight: 900;
    line-height: 1;
  }
  @media (width <= 960px) {
    .p-single-side-cta__checkup-lead__number {
      font-size: 0.6875rem;
    }
  }
  .p-single-side-cta__checkup-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
  }
  .p-single-side-cta__line {
    margin-top: 29px;
  }
  .p-single-side-cta__line-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 19px 12px 12px;
    border-radius: 8px;
    background: #07b53b;
    -webkit-box-shadow: 0 6px 0 0 #1253b2;
    box-shadow: 0 6px 0 0 #1253b2;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .p-single-side-cta__line-link:hover {
      opacity: 0.6;
    }
  }
  .p-single-side-cta__line-lead {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    border-radius: 60px;
    border: 2px solid #07b53b;
    width: 114px;
    text-align: center;
    padding: 0 0 2px;
  }
  .p-single-side-cta__line-lead__label {
    font-size: 0.875rem;
    font-weight: 900;
    color: #505151;
  }
  .p-single-side-cta__line-label {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .p-single-side-cta__phone {
    margin-top: 29px;
  }
  .p-single-side-cta__phone-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 16px 9px;
    background-color: #1253b2;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .p-single-side-cta__phone-link:hover {
      opacity: 0.6;
    }
  }
  .p-single-side-cta__phone-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: grid;
  }
  .p-single-side-cta__phone-number {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .p-single-side-cta__phone-number__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .p-single-side-cta__phone-number__number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
  }
  .p-single-side-cta__phone-hour {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  .p-single-side-cta__phone-hour__label {
    border: 1px solid #fff;
    border-radius: 3px;
    padding: 4px 6px;
    color: #fff;
    font-size: 0.625rem;
    line-height: 1;
  }
  .p-single-side-cta__phone-hour__desc {
    font-size: 0.875rem;
  }
  .p-single-side-cta__inquiry {
    margin-top: 16px;
  }
  .p-single-side-cta__inquiry-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 14px 12px 22px;
    -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #1253b2;
    color: #1253b2;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  @media (any-hover: hover) {
    .p-single-side-cta__inquiry-link:hover {
      opacity: 0.6;
    }
  }
  .p-single-side-cta__inquiry-label {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
  }
}
@layer pages {
  .p-top__breadcrumb {
    padding: 0 var(--page-gutter);
  }
  .p-top__mv {
    padding: 0 var(--page-gutter);
  }
  @media (width <= 960px) {
    .p-top__mv {
      margin-top: 16px;
    }
  }
  .p-top-mv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  @media (width <= 960px) {
    .p-top-mv {
      grid-template-columns: repeat(1, 1fr);
      gap: 22px;
    }
  }
  .p-top-mv__body {
    display: grid;
    gap: 30px;
  }
  @media (width <= 960px) {
    .p-top-mv__body {
      gap: 16px;
    }
  }
  .p-top__category {
    margin-top: 40px;
  }
  .p-top__cta {
    max-width: 1290px;
    margin: 40px auto;
    padding-inline: var(--page-gutter);
  }
  @media (width <= 960px) {
    .p-top__cta {
      margin: 0;
      padding: 0;
    }
  }
}
/*! tailwindcss v4.3.1 | MIT License | https://tailwindcss.com */
@layer properties;
:root, :host {
  --spacing: 1px;
  --breakpoint-sm: 641px;
  --breakpoint-md: 769px;
  --breakpoint-sp: 961px;
  --breakpoint-lg: 1025px;
  --breakpoint-xl: 1281px;
  --breakpoint-2xl: 1537px;
  --color-gray-800: oklch(27.8% 0.033 256.848);
  --color-white: #fff;
  --text-sm: 0.875rem;
  --text-sm--line-height: calc(1.25 / 0.875);
  --default-transition-duration: 150ms;
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.bottom-6 {
  bottom: calc(var(--spacing) * 6);
}

.left-1\/2 {
  left: 50%;
}

.z-50 {
  z-index: 50;
}

.container {
  width: 100%;
}
@media (width >= 641px) {
  .container {
    max-width: 641px;
  }
}
@media (width >= 769px) {
  .container {
    max-width: 769px;
  }
}
@media (width >= 961px) {
  .container {
    max-width: 961px;
  }
}
@media (width >= 1025px) {
  .container {
    max-width: 1025px;
  }
}
@media (width >= 1281px) {
  .container {
    max-width: 1281px;
  }
}
@media (width >= 1537px) {
  .container {
    max-width: 1537px;
  }
}

.mt-24 {
  margin-top: calc(var(--spacing) * 24);
}

.block {
  display: block;
}

.contents {
  display: contents;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.table {
  display: table;
}

.-translate-x-1\/2 {
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.transform {
  -webkit-transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
}

.resize {
  resize: both;
}

.rounded {
  border-radius: 0.25rem;
}

.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}

.bg-gray-800 {
  background-color: var(--color-gray-800);
}

.px-4 {
  padding-inline: calc(var(--spacing) * 4);
}

.py-2 {
  padding-block: calc(var(--spacing) * 2);
}

.pl-40 {
  padding-left: calc(var(--spacing) * 40);
}

.text-sm {
  font-size: var(--text-sm);
  line-height: var(--tw-leading, var(--text-sm--line-height));
}

.text-white {
  color: var(--color-white);
}

.opacity-0 {
  opacity: 0%;
}

.opacity-100 {
  opacity: 100%;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
  -webkit-box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
  -webkit-box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.blur {
  --tw-blur: blur(8px);
  -webkit-filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}

.filter {
  -webkit-filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}

.transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  -webkit-transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  -webkit-transition-duration: var(--tw-duration, var(--default-transition-duration));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}

.transition-opacity {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
  -webkit-transition-duration: var(--tw-duration, var(--default-transition-duration));
  transition-duration: var(--tw-duration, var(--default-transition-duration));
}

.duration-300 {
  --tw-duration: 300ms;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.backface-hidden {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (width < 961px) {
  .max-sp\:h-14 {
    height: calc(var(--spacing) * 14);
  }
}

@media (width < 961px) {
  .max-sp\:h-15 {
    height: calc(var(--spacing) * 15);
  }
}

@media (width < 961px) {
  .max-sp\:w-8 {
    width: calc(var(--spacing) * 8);
  }
}

@media (width < 961px) {
  .max-sp\:w-14 {
    width: calc(var(--spacing) * 14);
  }
}

@media (width < 961px) {
  .max-sp\:w-15 {
    width: calc(var(--spacing) * 15);
  }
}

@media (width < 769px) {
  .max-md\:hidden {
    display: none;
  }
}

@media (width >= 961px) {
  .sp\:mt-64 {
    margin-top: calc(var(--spacing) * 64);
  }
}

@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 rgba(0, 0, 0, 0);
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 rgba(0, 0, 0, 0);
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 rgba(0, 0, 0, 0);
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 rgba(0, 0, 0, 0);
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 rgba(0, 0, 0, 0);
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    ::-ms-backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-duration: initial;
    }
    *, ::before, ::after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-duration: initial;
    }
  }
}