@charset "UTF-8";
/*!***************
  Foundation
****************/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/**
 * Swiper 12.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 27, 2026
 */
:root {
  --swiper-theme-color:#007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-cube-shadow, .swiper-slide {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible, .swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  .swiper-wrapper:after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px;
  }
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  ::slotted(svg), svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom;
  }
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  ::slotted(svg), svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon, ::slotted(.swiper-navigation-icon) {
      transform: rotate(90deg);
    }
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  font-feature-settings: "palt";
  color: #222222;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
@media (max-width: 769px) {
  body {
    padding-bottom: 6.25rem;
  }
  body.is-open {
    overflow: hidden;
  }
  @supports (-webkit-touch-callout: none) {
    body.is-open {
      position: fixed;
      width: 100%;
      z-index: 0;
    }
  }
}
@media (min-width: 770px) {
  body {
    min-width: 980px;
  }
}

img,
svg {
  width: 100%;
  height: auto;
  object-fit: cover;
}

svg {
  fill: currentColor;
}

a {
  text-decoration: none;
  transition: opacity linear 0.7;
}
@media (min-width: 770px) {
  a.hover:hover {
    opacity: 0.7;
  }
}

@media (max-width: 769px) {
  .hide_sp {
    display: none !important;
  }
}
@media (min-width: 770px) {
  .hide_pc {
    display: none !important;
  }
}
.svg-strage {
  display: none;
}

.swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

.swiper-slide > .c-card-item {
  flex-grow: 1;
  height: 100%;
}

/*!***************
  Layout
****************/
.l-header {
  border-top: solid #0080CC 0.125rem;
  border-bottom: solid #D9E1E8 0.0625rem;
  background-color: #ffffff;
  height: 4.1875rem;
  width: 100%;
  position: relative;
  z-index: 999;
}
@media (min-width: 770px) {
  .l-header {
    height: 5rem;
  }
}
.l-header__inner {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 770px) {
  .l-header__inner {
    max-width: 1200px;
    margin: auto;
  }
}
.l-header__logo {
  max-width: 15.625rem;
  line-height: 0;
  margin: 0;
  z-index: 1000;
}
@media (min-width: 770px) {
  .l-header__logo {
    max-width: 21.0625rem;
    min-width: 18.75rem;
    flex: 1;
    margin-right: 0.9375rem;
  }
  .l-header__logo a {
    transition: opacity 0.3s ease;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header {
  /* ハンバーガーボタンのレスポンシブ制御 */
}
@media (max-width: 769px) {
  .l-header .c-hamburger {
    position: fixed;
    top: 0.75rem;
    right: 1rem;
    z-index: 1001;
  }
}
@media (min-width: 770px) {
  .l-header .c-hamburger {
    display: none; /* PC時は非表示 */
  }
}
.l-header {
  /* ==========================================
     ナビゲーション全体の制御（SP/PC切り替え）
     ========================================== */
}
@media (max-width: 769px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #ffffff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
  }
  body.is-open .l-header__nav {
    border-top: solid #0080CC 0.125rem;
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 770px) {
  .l-header__nav {
    display: block;
    height: 100%;
  }
}
.l-header__nav-logo {
  max-width: 15.625rem;
  line-height: 0;
  margin-bottom: 0.875rem;
}
@media (min-width: 770px) {
  .l-header__nav-logo {
    display: none;
  }
}
@media (max-width: 769px) {
  .l-header__nav-inner {
    padding: 0.9375rem 1rem 1.875rem;
  }
}
@media (min-width: 770px) {
  .l-header__nav-inner {
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
  }
}
.l-header {
  /* ==========================================
     PC版の等間隔横並びを実現するリスト
     ========================================== */
}
.l-header__list {
  list-style: none;
  margin: 0 0 1.875rem 0;
  padding: 0;
}
@media (min-width: 770px) {
  .l-header__list {
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem;
    width: auto !important;
    height: 100%;
    margin-bottom: 0;
  }
}
@media (min-width: 770px) {
  .l-header__item {
    gap: 1.875rem;
    border-bottom: none !important;
    padding: 0 !important;
  }
}
@media (min-width: 770px) {
  .l-header__item--noarrow a::after {
    display: none;
  }
}
.l-header {
  /* ==========================================
     PC/SP兼用：検索フォーム（デザイン完全再現）
     ========================================== */
}
.l-header__search {
  flex: 1 0 auto;
}
@media (max-width: 769px) {
  .l-header__search {
    padding-top: 1.25rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 770px) {
  .l-header__search {
    max-width: 220px;
    flex: 1;
  }
}
@media (max-width: 769px) {
  .l-header__nav-banners {
    margin-top: 1rem;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.875rem;
  }
}
@media (min-width: 770px) {
  .l-header .c-menu-list a {
    padding-right: 0.25rem;
  }
}

/* ---------------------------------------------------------
    Footer
--------------------------------------------------------- */
#footer {
  position: relative;
  /*  margin-top: 220px;*/
  background: url(/assets/img/common/bg_cover_02.png);
  font-size: 0.875rem;
  color: #fff;
  z-index: 0;
}
@media (min-width: 770px) {
  #footer {
    overflow: hidden;
  }
}
#footer .inner {
  padding: 0 0.625rem;
  max-width: 70rem;
  margin: auto;
}
#footer .box_00 .inner {
  border-bottom: solid #ffffff 1px;
  padding: 2.875rem 0 2.6875rem;
  text-align: center;
}
#footer .box_00 img {
  max-width: 21.0625rem;
}
@media (max-width: 769px) {
  #footer .box_00 {
    display: none;
  }
}
#footer .box_01 {
  padding: 60px 0;
}
@media (max-width: 750px) {
  #footer .box_01 {
    padding: 6% 0 12%;
  }
}
#footer .box_02 {
  position: relative;
  padding: 20px 40px;
  border-top: 1px solid #fff;
}
#footer .box_02 .chara {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translateX(-50%, -50%);
}
#footer .box_02 .logo_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
@media (max-width: 750px) {
  #footer .box_02 {
    padding: 12% 10px 3%;
  }
  #footer .box_02 .chara {
    max-width: 15.2%;
  }
  #footer .box_02 .logo_wrap {
    display: block;
  }
  #footer .box_02 .logo_wrap .logo {
    max-width: 49.3333333333%;
    margin: auto;
    margin-bottom: 4.5%;
  }
  #footer .box_02 .logo_wrap .label {
    max-width: 28.9333333333%;
    margin: auto;
  }
}
#footer .box_03 {
  padding: 5px 0;
  background-color: #21201d;
  color: #fff;
}
#footer .box_03 .copyright {
  text-align: center;
}
#footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.9375rem;
  gap: 3.125rem;
}
@media (max-width: 750px) {
  #footer .menu {
    display: block;
  }
}
@media (max-width: 750px) {
  #footer .menu > li:not(.contact) {
    display: none;
  }
}
#footer .menu ul li + li {
  margin-top: 5px;
}
#footer .menu ul li.--line {
  position: relative;
  width: fit-content;
}
#footer .menu ul li.--line .message {
  position: absolute;
  left: calc(100% + 25px);
  top: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  translate: 0 -50%;
}
#footer .menu ul li.--line .message::before, #footer .menu ul li.--line .message::after {
  display: block;
  content: "";
  position: absolute;
  left: -0.8em;
  height: 1px;
  width: 1.2em;
  background-color: currentColor;
  border-radius: 50vw;
}
#footer .menu ul li.--line .message::before {
  top: -15%;
  rotate: -22deg;
}
#footer .menu ul li.--line .message::after {
  bottom: -15%;
  rotate: 22deg;
}
#footer .menu ul li .__has-icon-pdf::after {
  display: inline-block;
  width: 11px;
  height: 13px;
  margin: 0 0 0 0.25em;
  background: transparent url("/assets/img/common/icon_footer_pdf_01.png") left top no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  content: "";
}
#footer .menu ul li small {
  margin-left: 1em;
  font-size: 0.75rem;
}
@media (max-width: 750px) {
  #footer .menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -10px;
  }
  #footer .menu ul li {
    margin: 5px 10px;
  }
}
#footer .menu .child {
  margin-top: 10px;
  font-size: 0.875rem;
}
#footer .menu .child > li::before {
  content: "ー";
}
#footer .menu .child + a {
  display: inline-block;
  margin-top: 2em;
}
#footer .menu a[target=_blank]::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(/assets/img/common/icn_external_link_01.png) center center no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 5px;
}
#footer #pagetop {
  display: none;
  position: absolute;
  right: 10px;
  z-index: 10;
}
@media (max-width: 750px) {
  #footer #pagetop {
    width: 40px;
  }
}
#footer .recaptcha {
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 1rem;
}
#footer .recaptcha a {
  display: inline-block;
  padding: 0 0.3125rem;
}
@media (min-width: 770px) {
  #footer .recaptcha br {
    display: none;
  }
}

.l-container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  max-width: 77.25rem;
  margin: 0 auto;
  padding: 1.25rem 1rem 3.75rem;
}
@media (min-width: 770px) {
  .l-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 5.25rem;
    padding-top: 4rem;
  }
}

.l-main {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 769px) {
  .l-main--article .l-container {
    padding-top: 0;
  }
}

.l-main-content {
  flex: 1;
  min-width: 0;
  margin-bottom: 1.25rem;
}
.l-main-content .c-breadcrumb {
  padding-left: 0;
  padding-bottom: 1rem;
}

.l-sidebar {
  width: 18.75rem;
  flex-shrink: 0;
}
@media (max-width: 769px) {
  .l-sidebar {
    width: 100%;
  }
}

.l-category-nav {
  width: 100%;
  background-color: #eef7ff;
  border-bottom: 1px solid #D9E1E8;
}
.l-category-nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 769px) {
  .l-category-nav__inner {
    padding: 0 0 0 1rem; /* SP時は右側のpaddingをリセットして端までスクロールさせる */
    height: 3.75rem; /* SP時の高さ調整 */
  }
}
@media (min-width: 770px) {
  .l-category-nav__inner {
    padding: 0 1.5rem;
    height: 4.25rem; /* PC時の高さ調整 */
    justify-content: center; /* PC時は中央寄せ（デザインの空気感に追従） */
  }
}
.l-category-nav {
  /* 「お悩みから探す：」のタイトルテキスト */
}
.l-category-nav__title {
  margin: 0;
  color: #222222;
  white-space: nowrap; /* 絶対に改行させない */
  font-size: 0.875rem;
  line-height: 1;
}
@media (max-width: 769px) {
  .l-category-nav__title {
    margin-right: 0.75rem;
  }
}
@media (min-width: 770px) {
  .l-category-nav__title {
    font-size: 0.9375rem;
    line-height: 1;
    margin-right: 1.25rem;
  }
}
@media (max-width: 769px) {
  .l-category-nav__scroll {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0.625rem 1rem 0.625rem 0;
  }
  .l-category-nav__scroll::-webkit-scrollbar {
    display: none;
  }
  .l-category-nav__scroll {
    scrollbar-width: none; /* Firefox用 */
  }
}
.l-category-nav {
  /* リストコンテナ */
}
.l-category-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1060px) {
  .l-category-nav__list {
    gap: 1rem;
  }
}
.l-category-nav {
  /* 各ナビアイテム（白丸カプセル型ボタン） */
}
@media (max-width: 769px) {
  .l-category-nav__item {
    flex-shrink: 0;
  }
}
.l-category-nav__item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  background-color: #ffffff;
  color: #222222;
  text-decoration: none;
  border: 1px solid #D9E1E8;
  box-sizing: border-box;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0 1.25rem;
  height: 2.5rem;
}
@media (min-width: 770px) {
  .l-category-nav__item a {
    border-color: #D9E1E8;
    height: 2.75rem;
    transition: all 0.3s ease;
  }
  .l-category-nav__item a:hover {
    border-color: #0080CC;
    color: #ffffff;
    background-color: #0080CC;
  }
}

.l-fixed-footer {
  border-top: solid #E6EDF3 1px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  z-index: 998;
}
@media (min-width: 770px) {
  .l-fixed-footer {
    display: none;
  }
}
.l-fixed-footer .c-btn-line {
  padding: 0.625rem 1.1875rem 0.625rem 1rem;
  min-height: 3.125rem;
}
.l-fixed-footer .c-btn-line__main {
  font-size: 0.8125rem;
  line-height: 1;
}
.l-fixed-footer .c-btn-shop {
  padding: 0.625rem 1.1875rem 0.625rem 1rem;
  min-height: 3.125rem;
}
.l-fixed-footer .c-btn-shop__main {
  font-size: 0.8125rem;
  line-height: 1;
  padding-right: 0.9375rem;
}

/*!***************
  Object - Component
****************/
.c-hamburger {
  appearance: none;
  background: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem; /* 外枠のサイズ（画像に合わせて調整） */
  height: 2.75rem;
  border: 0.0625rem solid #D9E1E8;
  border-radius: 50%;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-hamburger:hover {
    opacity: 0.8;
  }
}
.c-hamburger__line {
  display: block;
  width: 1.125rem; /* 線の長さ */
  height: 0.125rem; /* 線の太さ */
  background-color: #0080CC;
  border-radius: 0.125rem;
  position: relative;
  transition: all 0.3s ease; /* アニメーションの速度 */
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0080CC;
  border-radius: inherit;
  transition: all 0.3s ease;
}
.c-hamburger__line::before {
  top: -0.3125rem; /* 線と線の間隔 */
}
.c-hamburger__line::after {
  top: 0.3125rem;
}

/* ==========================================
JavaScriptで「.is-open」クラスがついた時の変形（×マーク）
========================================== */
.is-open .c-hamburger__line {
  background-color: transparent; /* 真ん中の線を透明にする */
}
.is-open .c-hamburger__line::before {
  top: 0;
  transform: rotate(45deg); /* 上の線を45度回転 */
}
.is-open .c-hamburger__line::after {
  top: 0;
  transform: rotate(-45deg); /* 下の線をマイナス45度回転 */
}

.c-btn-line {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem; /* 1行目と2行目の間の余白 */
  width: 100%;
  min-height: 3rem;
  max-width: 31.25rem; /* ボタンの最大横幅（画像の比率に合わせて調整） */
  margin: 0 auto; /* 中央配置用 */
  padding: 0.6875rem 1.25rem;
  background-color: #06C755; /* LINE公式ブランドカラー */
  color: #ffffff;
  text-decoration: none;
  border: solid #06C755 1px;
  border-radius: 100px; /* カプセル型 */
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media (min-width: 770px) {
  .c-btn-line {
    padding: 0.375rem 1rem;
    gap: 0.0625rem;
    min-height: 2.75rem;
  }
}
.c-btn-line {
  /* 1行目の小さな文字 */
}
.c-btn-line__sub {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media (min-width: 770px) {
  .c-btn-line__sub {
    font-size: 0.6875rem;
    line-height: 1.2;
  }
}
.c-btn-line {
  /* 2行目の大きな文字（アイコンを含む） */
}
.c-btn-line__main {
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-right: 1.125rem; /* アイコンが入るスペースを確保 */
}
@media (min-width: 770px) {
  .c-btn-line__main {
    font-size: 0.8125rem;
    line-height: 1.3;
  }
}
.c-btn-line__main::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.75rem;
  height: 0.75rem;
  background: url(../images/c-icn-add.svg) no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media (min-width: 770px) {
  .c-btn-line:hover {
    background-color: #ffffff;
    color: #06C755;
  }
  .c-btn-line:hover .c-btn-line__main::before {
    background-image: url(../images/c-icn-add-green.svg);
  }
}

.c-btn-shop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  background-color: #0080CC;
  color: #ffffff;
  text-decoration: none;
  border: solid #0080CC 1px;
  border-radius: 3.125rem;
  padding: 1.125rem 1.25rem;
  box-sizing: border-box;
  transition: background 0.3s ease, color 0.3s ease;
  width: 100%;
}
.c-btn-shop img {
  width: 1.875rem;
}
.c-btn-shop__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.c-btn-shop__sub {
  font-size: 0.6875rem;
  color: #FFEC00;
  letter-spacing: 0.05em;
}
.c-btn-shop__main {
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-right: 1.125rem;
  position: relative;
}
.c-btn-shop__main:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background: url(../images/c-icn-add.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 770px) {
  .c-btn-shop:hover {
    background-color: #ffffff;
  }
  .c-btn-shop:hover .c-btn-shop__sub {
    color: #0080CC;
  }
  .c-btn-shop:hover .c-btn-shop__main {
    color: #0080CC;
  }
  .c-btn-shop:hover .c-btn-shop__main:after {
    background-image: url(../images/c-icn-add-blue.svg);
  }
}

.c-btn-more {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  background-color: #EEF8FF;
  border: 1px solid #D9E1E8;
  border-radius: 100vh;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 500;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) {
  .c-btn-more:hover {
    background-color: #ffffff;
    border-color: #0080CC;
    color: #0080CC;
  }
}
.c-btn-more__icon {
  color: #0077c7;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.c-nav-line-box {
  border: 1px solid #D9E1E8;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}
.c-nav-line-box__text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.c-nav-line-box__text p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.2777777778;
}
.c-nav-line-box__text strong {
  color: #0080CC;
}
.c-nav-line-box img {
  width: 2.75rem;
  margin-right: 0.25rem;
}

.c-menu-list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 0.5rem;
}
.c-menu-list__item {
  border-bottom: 1px solid #D9E1E8;
}
.c-menu-list__item a {
  text-decoration: none;
  font-size: 0.9375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-menu-list__item a::after {
  content: "";
  aspect-ratio: 8/7;
  width: 0.625rem;
  background: url(../images/c-icn-arrow.svg) no-repeat;
  background-size: contain;
  margin-right: -1rem;
}
@media (max-width: 769px) {
  .c-menu-list__item a {
    justify-content: space-between;
    padding: 1rem 1rem 1rem 0.25rem;
    font-size: 1rem;
  }
}
@media (min-width: 770px) {
  .c-menu-list__item a {
    transition: color 0.2s ease;
    padding: 0.75rem 1.25rem 0.75rem 0.25rem;
    width: 100%;
  }
  .c-menu-list__item a:hover {
    color: #0080CC;
  }
}

.c-tag-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.c-tag-list__item a {
  color: #0080CC;
  border-radius: 3.125rem;
  background-color: #F8F8F8;
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  transition: background-color 0.3s ease;
}
@media (min-width: 770px) {
  .c-tag-list__item a:hover {
    background-color: #EEF8FF;
  }
}

.c-tag-box {
  border: solid #D9E1E8 1px;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
}
@media (min-width: 770px) {
  .c-tag-box {
    padding: 2rem 2.5rem;
  }
}
.c-tag-box__head {
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 770px) {
  .c-tag-box__head {
    font-size: 1.375rem;
    line-height: 1.5454545455;
    margin-bottom: calc(1.25rem / 1px);
  }
}
@media (min-width: 770px) {
  .c-tag-box .c-tag-list {
    justify-content: center;
  }
}

.c-search-form {
  position: relative;
  width: 100%;
}
.c-search-form__input {
  width: 100%;
  height: 2.625rem;
  background-color: #f4f6f9;
  border: 1px solid #dbe4ec;
  border-radius: 1.3125rem;
  padding: 0 2.5rem 0 1rem;
  font-size: 0.875rem;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease;
}
.c-search-form__input:focus {
  border-color: #0080CC;
}
.c-search-form__input::placeholder {
  color: #a0aec0;
}
@media (max-width: 769px) {
  .c-search-form__input {
    height: 3.125rem;
    border-radius: 1.5625rem;
    font-size: 0.9375rem;
  }
}
@media (min-width: 770px) {
  .c-search-form__input {
    min-height: 2.75rem;
  }
}
.c-search-form__submit {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/c-icn-search.svg) transparent no-repeat;
  background-size: contain;
  border: none;
  width: 0.875rem;
  height: 0.875rem;
  cursor: pointer;
  padding: 0;
}

.c-select-wp {
  position: relative;
  width: 100%;
}
.c-select-wp::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #007bc8;
  border-bottom: 2px solid #007bc8;
  pointer-events: none;
  transition: transform 0.3s;
}
.c-select-wp.is-open::after {
  transform: translateY(-25%) rotate(-135deg);
}

.c-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 2.75rem;
  padding: 0 2.75rem 0 1.375rem;
  background-color: #F5F7FA;
  color: #666666;
  border: 1px solid #D9E1E8;
  border-radius: 100vh;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
}
.c-select::-ms-expand {
  display: none;
}
.c-select:focus-visible {
  border-color: #007bc8;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 123, 200, 0.15);
}
@media (hover: hover) {
  .c-select:hover {
    background-color: #edf2f7;
    border-color: #cbd5e1;
  }
}

.c-breadcrumb {
  padding: 0.625rem 1rem;
}
@media (min-width: 770px) {
  .c-breadcrumb {
    max-width: 1236px;
    margin: 0 auto;
    padding: 0.625rem 1rem 1rem;
  }
}
.c-breadcrumb__list {
  font-size: 0.75rem;
  line-height: 1.5;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-breadcrumb__item {
  display: inline;
  color: #666666;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.1875rem;
  font-size: 0.75rem;
  line-height: 1;
}
.c-breadcrumb__link {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .c-breadcrumb__link:hover {
    text-decoration: underline;
  }
}
.c-breadcrumb__current {
  pointer-events: none;
}

.c-author-box {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  background-color: #f5f8fa;
  border: solid #D9E1E8 1px;
  border-radius: 1rem;
  width: 100%;
}
@media (min-width: 770px) {
  .c-author-box {
    gap: 1.5rem;
    padding: 2rem;
  }
}
.c-author-box__avatar {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 770px) {
  .c-author-box__avatar {
    width: 5rem;
    height: 5rem;
  }
}
.c-author-box__body {
  flex-grow: 1;
  min-width: 0;
}
.c-author-box__label {
  display: block;
  color: #0080CC;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .c-author-box__label {
    margin-bottom: 0.125rem;
  }
}
.c-author-box__name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .c-author-box__name {
    font-size: 1.125rem;
    line-height: 1.5555555556;
    margin-bottom: 0.125rem;
  }
}
.c-author-box__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
}
@media (min-width: 770px) {
  .c-author-box__text {
    font-size: 0.9375rem;
    line-height: 1.8666666667;
  }
}

.c-ttl-card {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* イラストと文字の間隔 */
  box-sizing: border-box;
  text-align: left;
}
.c-ttl-card__icon {
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.75rem;
  height: 2.75rem;
}
.c-ttl-card__icon.is-new {
  background-image: url("../images/c-icn-mascot01.svg");
}
.c-ttl-card__icon.is-category {
  background-image: url("../images/c-icn-mascot02.svg");
}
.c-ttl-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-ttl-card {
  /* 🇺🇸 上部の英語サブタイトル（CATEGORY / NEW ARTICLES） */
}
.c-ttl-card__en {
  color: #007bc8; /* ライオンケミカル様の鮮やかなブランドブルー */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-transform: uppercase; /* 小文字で入稿されても強制大文字化の防壁 */
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 769px) {
  .c-ttl-card__en {
    font-size: 0.6875rem;
    margin-bottom: 0.125rem;
  }
}
@media (min-width: 770px) {
  .c-ttl-card__en {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}
.c-ttl-card__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 769px) {
  .c-ttl-card__title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}
@media (min-width: 770px) {
  .c-ttl-card__title {
    font-size: 1.75rem;
    line-height: 1.2857142857;
  }
}
.c-ttl-card__title-em {
  color: #0080CC;
}
.c-ttl-card__title a {
  color: inherit;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}
.c-ttl-card__title a::after {
  content: "";
  display: inline-block;
  aspect-ratio: 10/12;
  width: 0.75rem;
  margin-top: 0.2em;
  margin-left: 0.625rem;
  background: url(../images/c-icn-arrow.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 770px) {
  .c-ttl-card__title a::after {
    margin-left: 0.875rem;
  }
}
@media (hover: hover) {
  .c-ttl-card__title a:hover {
    color: #007bc8;
  }
}
.c-ttl-card.is-detail .c-ttl-card__title a::after,
.c-ttl-card.is-detail .c-ttl-card__title span::after {
  display: none !important;
}
.c-ttl-card.is-detail .c-ttl-card__title a {
  pointer-events: none; /* クリック無効化 */
  color: inherit;
}

.c-ttl-sub {
  font-size: 1.125rem;
  font-weight: bold;
  padding-left: 1.3125rem;
  position: relative;
}
.c-ttl-sub small {
  font-size: 1rem;
}
.c-ttl-sub::before {
  content: "";
  aspect-ratio: 1/1;
  width: 0.8125rem;
  background: url(../images/c-icn-square.svg);
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.c-ttl-sub--search::before {
  width: 0.875rem;
  background-image: url(../images/c-icn-search.svg);
}
.c-ttl-sub--rank::before {
  aspect-ratio: 16/12;
  width: 1rem;
  background-image: url(../images/c-icn-rank.svg);
}

.c-card-item {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #D9E1E8;
  border-radius: 1.25rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: left;
}
@media (hover: hover) {
  .c-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.25rem 1rem rgba(31, 43, 61, 0.1);
  }
}
.c-card-item__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
}
.c-card-item__img-wp {
  width: 100%;
  aspect-ratio: 692/426; /* カンプの比率を完全に維持 */
  overflow: hidden;
  background-color: #f4f7fa;
  position: relative;
}
.c-card-item__img-wp img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 異なる比率の画像が入っても歪ませない防壁 */
  display: block;
  transition: transform 0.5s ease;
}
.c-card-item__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #FFEC00;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: bold;
  padding: 0.25rem 0.625rem;
  border-radius: 100vh;
  z-index: 2;
}
.c-card-item__rank {
  position: absolute;
  top: 0.5625rem;
  left: 0.625rem;
  width: 2rem;
  z-index: 2; /* 画像より前面に浮かす */
}
.c-card-item__body {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* タイトルの増減に関わらず高さを統一するための挙動 */
  box-sizing: border-box;
}
.c-card-item {
  /* ✏️ 記事タイトル（2行を超えたら自動で「…」にする） */
}
.c-card-item__title {
  margin: 0 0 0.75rem 0;
  color: #000000;
  font-size: 1.125rem;
  line-height: 1.4444444444;
  font-weight: bold;
  order: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.88em;
}
@media (min-width: 770px) {
  .c-card-item__title {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 3.2em;
  }
}
.c-card-item {
  /* 投稿日 */
}
.c-card-item__date {
  color: #666666;
  margin-bottom: 0.5rem;
  order: 2; /* タイトルの下に配置 */
}
@media (max-width: 769px) {
  .c-card-item__date {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}
@media (min-width: 770px) {
  .c-card-item__date {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
  }
}
.c-card-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  order: 3;
}
.c-card-item {
  /* 個々の丸座ハッシュタグ */
}
.c-card-item__tag-btn {
  display: inline-block;
  background-color: #F8F8F8; /* カンプの薄グレー */
  color: #666666;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 1.25rem; /* 綺麗なカプセル丸 */
  white-space: nowrap;
}
@media (max-width: 769px) {
  .c-card-item__tag-btn {
    font-size: 0.75rem;
    line-height: 1.3333333333;
    padding: 0.25rem 0.75rem;
  }
}
@media (min-width: 770px) {
  .c-card-item__tag-btn {
    font-size: 0.6875rem;
    line-height: 1.4545454545;
  }
}

.c-card-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
}
@media (min-width: 770px) {
  .c-card-list {
    flex-direction: inherit;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem 0;
  }
}
.c-card-list--archive {
  flex-wrap: wrap;
  gap: 1.5rem 0;
}
@media (min-width: 770px) {
  .c-card-list__item {
    width: 48.5365853659%;
  }
}

.c-product-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.875rem 0;
  width: 100%;
}
@media (min-width: 770px) {
  .c-product-card-wrapper {
    display: grid;
    gap: 1.5rem;
    margin: 2.5rem 0;
    justify-content: space-between;
    grid-template-columns: calc(50% - 0.75rem);
  }
  .c-product-card-wrapper:has(.c-product-card:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-product-card-wrapper__notice {
  width: 100%;
  color: #6B7280;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (min-width: 770px) {
  .c-product-card-wrapper__notice {
    grid-column: 1/-1;
  }
}

.c-product-card {
  width: 100%;
  margin: 0;
}
.c-product-card__link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  border: 1px solid #D9E1E8;
  border-radius: 1rem;
  background-color: #ffffff;
  text-decoration: none;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 770px) {
  .c-product-card__link {
    gap: 1.25rem;
    padding: 1.25rem;
  }
  .c-product-card__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.25rem 1rem rgba(31, 43, 61, 0.1);
  }
  .c-product-card__link:hover .c-product-card__button {
    text-decoration: underline;
  }
}
.c-product-card__image-wrapper {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 770px) {
  .c-product-card__image-wrapper {
    width: 6rem;
    height: 6rem;
    border-radius: 0.75rem;
  }
}
.c-product-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-product-card__body {
  flex-grow: 1;
  gap: 0.125rem;
  min-width: 0;
}
.c-product-card__title {
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.125rem 0;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
}
@media (min-width: 770px) {
  .c-product-card__title {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
    margin-bottom: 0.5rem;
  }
}
.c-product-card__button {
  display: block;
  color: #0080CC;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (min-width: 770px) {
  .c-product-card__button {
    font-size: 0.875rem;
    line-height: 1.5714285714;
  }
}

.c-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
  width: 100%;
}
@media (min-width: 770px) {
  .c-accordion-wrapper {
    gap: 1.5rem;
    margin: 2rem 0;
  }
}

.c-accordion {
  width: 100%;
  border: 1px solid #D9E1E8;
  border-radius: 1.25rem;
  background-color: #ffffff;
  overflow: hidden;
  transition: background-color 0.3s ease;
  letter-spacing: 0.02em;
}
.c-accordion summary::-webkit-details-marker {
  display: none;
}
@media (min-width: 770px) {
  .c-accordion:hover {
    background-color: #F5F7FA;
  }
}
.c-accordion__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}
@media (min-width: 770px) {
  .c-accordion__header {
    gap: 1rem;
    padding: 1.5rem 2rem;
  }
}
.c-accordion__header:focus {
  outline: none;
}
.c-accordion__q-icon {
  color: #0077c7;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  flex-shrink: 0;
}
.c-accordion__question {
  font-weight: 700;
  padding-right: 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.c-accordion__toggle-icon {
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.5rem);
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
@media (min-width: 770px) {
  .c-accordion__toggle-icon {
    right: 2rem;
  }
}
.c-accordion__toggle-icon::before, .c-accordion__toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #0080CC;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-accordion__toggle-icon::before {
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
}
.c-accordion__toggle-icon::after {
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
}
.c-accordion[open] .c-accordion__toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.c-accordion__body {
  animation: fadeIn 0.4s ease;
}
.c-accordion__body-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem 1.25rem;
  border-top: none;
}
@media (min-width: 770px) {
  .c-accordion__body-inner {
    gap: 1rem;
    padding: 0 2rem 1.5rem 2rem;
  }
}
.c-accordion__a-icon {
  color: #ED8000;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  flex-shrink: 0;
}
.c-accordion__answer {
  color: #333333;
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.0714285714;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-summary-box {
  background-color: #F5F9FC;
  border: solid #D9E1E8 1px;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin: 1.25rem 0;
  width: 100%;
}
@media (min-width: 770px) {
  .c-summary-box {
    margin: 4rem 0 3.125rem;
    padding: 1.375rem 2rem;
  }
}
.c-summary-box:first-child {
  margin-top: 0;
}
.c-summary-box__head {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #D9E1E8;
  margin-bottom: 1rem;
}
@media (min-width: 770px) {
  .c-summary-box__head {
    padding-bottom: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
.c-summary-box__title {
  color: #222222 !important;
  font-weight: bold !important;
  margin: 0 !important;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media (min-width: 770px) {
  .c-summary-box__title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}
.c-summary-box__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 770px) {
  .c-summary-box__list {
    gap: 0.625rem;
  }
}
.c-summary-box__item {
  position: relative;
  padding-left: 2.1875rem;
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
}
@media (min-width: 770px) {
  .c-summary-box__item {
    font-size: 1rem;
    line-height: 1.625;
    padding-left: 2.5625rem;
  }
}
.c-summary-box__item::before {
  content: "";
  position: absolute;
  left: 0.625rem;
  top: 50%;
  width: 0.875rem;
  height: 0.625rem;
  transform: translateY(-50%);
  background: url(../images/c-icn-check.svg) no-repeat;
  background-size: contain;
}
@media (min-width: 770px) {
  .c-summary-box__item::before {
    width: 1.125rem;
    height: 0.75rem;
  }
}

#toc_container {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin: 1.25rem 0;
  width: 100%;
  border: solid #D9E1E8 1px;
}
@media (min-width: 770px) {
  #toc_container {
    padding: 1.375rem 2rem;
    margin: 3.125rem 0;
  }
}
#toc_container p.toc_title {
  text-align: center;
  padding-bottom: 0.875rem;
  border-bottom: solid #D9E1E8 1px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media (min-width: 770px) {
  #toc_container p.toc_title {
    font-size: 1.25rem;
    line-height: 1.7;
    padding-bottom: 0.875rem;
    margin-bottom: 1.5rem;
  }
}
#toc_container ul.toc_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 770px) {
  #toc_container ul.toc_list {
    gap: 1rem;
  }
}
#toc_container ul.toc_list li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#toc_container ul.toc_list a {
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
}
@media (min-width: 770px) {
  #toc_container ul.toc_list a:hover {
    color: #0080CC;
  }
}
#toc_container span.toc_number {
  color: #0080CC;
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
#toc_container span.toc_number.toc_depth_1 {
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media (min-width: 770px) {
  #toc_container span.toc_number.toc_depth_1 {
    font-size: 1rem;
    line-height: 1.75;
  }
}
#toc_container span.toc_number.toc_depth_2 {
  display: none;
}
#toc_container ul.toc_list > li > a {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media (min-width: 770px) {
  #toc_container ul.toc_list > li > a {
    font-size: 1rem;
    line-height: 1.75;
  }
}
#toc_container ul.toc_list > li > ul {
  list-style: none;
  padding: 0;
  margin: 0.375rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-left: 1.75rem;
}
#toc_container ul.toc_list > li > ul li {
  position: relative;
  padding-left: 1rem;
}
#toc_container ul.toc_list > li > ul a {
  font-weight: normal;
  font-size: 0.8125rem;
  line-height: 1.6923076923;
}
@media (min-width: 770px) {
  #toc_container ul.toc_list > li > ul a {
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
#toc_container ul.toc_list > li > ul a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 0.5rem;
  height: 0.625rem;
  border-left: 1px solid #0077c7;
  border-bottom: 1px solid #0077c7;
}

/*!***************
  Object - Project
****************/
.p-fv {
  width: 100%;
  background-color: #0080CC;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 769px) {
  .p-fv {
    padding: 0.625rem 1rem 0.9375rem;
  }
}
@media (min-width: 770px) {
  .p-fv {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}
.p-fv__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-fv {
  /* ==========================================
     中央テキスト＋SP画像グループ
     ========================================== */
}
.p-fv__text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (min-width: 770px) {
  .p-fv__text-group {
    flex-shrink: 0;
    margin: 0 1.5rem;
  }
}
.p-fv__lead-wrapper {
  width: 100%;
  text-align: center;
}
.p-fv__desc-wrapper {
  width: 100%;
  text-align: center;
}
.p-fv {
  /* ==========================================
     🖼 各種イラストブロックの制御
     ========================================== */
}
.p-fv__block {
  box-sizing: border-box;
}
.p-fv__block--img-left {
  display: none;
}
@media (min-width: 1200px) {
  .p-fv__block--img-left {
    display: block;
    width: 24.5833333333%;
    max-width: 354px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 1;
  }
}
.p-fv__block--img-left img {
  width: 88.7005649718%;
  height: auto;
  display: block;
}
.p-fv__block--img-right {
  display: none;
}
@media (min-width: 1200px) {
  .p-fv__block--img-right {
    display: block;
    width: 24.5833333333%;
    max-width: 354px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 1;
  }
}
.p-fv__block--img-right img {
  width: 100%;
  height: auto;
  display: block;
}
.p-fv__block--img-sp {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 33.75rem;
}
@media (min-width: 1200px) {
  .p-fv__block--img-sp {
    display: none;
  }
}
.p-fv__block--img-sp img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.p-fv__lead {
  margin: 0;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 769px) {
  .p-fv__lead {
    font-size: 1.3125rem;
    line-height: 1.4285714286;
  }
}
@media (min-width: 770px) {
  .p-fv__lead {
    font-size: 2.375rem;
    line-height: 1.4210526316;
  }
}
.p-fv__lead-sub {
  letter-spacing: 0.04em;
}
.p-fv__lead-main {
  color: #fff200;
  letter-spacing: 0.04em;
}
.p-fv__text {
  margin: 0;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media (min-width: 770px) {
  .p-fv__text {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.p-side-nav__rank {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  counter-reset: step-counter;
}
.p-side-nav__rank-item {
  border-bottom: solid #D9E1E8 1px;
  padding: 1.125rem 0.625rem;
  counter-increment: step-counter;
}
.p-side-nav__rank-item .p-side-nav__rank-link:before {
  content: counter(step-counter);
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
  background-color: #0080CC;
  border-radius: 50%;
  font-size: 0.75rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-side-nav__rank-item:nth-child(1) .p-side-nav__rank-link:before {
  background-color: #F1CE20;
}
.p-side-nav__rank-item:nth-child(2) .p-side-nav__rank-link:before {
  background-color: #88ACBE;
}
.p-side-nav__rank-item:nth-child(3) .p-side-nav__rank-link:before {
  background-color: #D4A16A;
}
.p-side-nav__rank-link {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  padding-left: 2.25rem;
}
@media (hover: hover) {
  .p-side-nav__rank-link:hover .p-side-nav__rank-title {
    color: #0080CC;
  }
}
.p-side-nav__rank-thumb-wrap {
  display: block;
  flex-shrink: 0;
  width: 3.5rem;
  margin-right: 0.75rem;
}
.p-side-nav__rank-thumb {
  border-radius: 0.75rem;
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.p-side-nav__rank-text {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
}
.p-side-nav__rank-title {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  margin-bottom: 0.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.92em;
}
.p-side-nav__rank-date {
  font-size: 0.75rem;
  color: #666666;
}
.p-side-nav__line-box {
  margin: 2.125rem 0;
}
.p-side-nav__border-box {
  border-bottom: solid #E5EAF0 1px;
  padding: 1.25rem 0;
}
.p-side-nav__ttl {
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
.p-side-nav__ttl--search {
  margin-top: 1.25rem;
}
.p-side-nav__menu-list {
  margin-bottom: 2.125rem;
}
@media (min-width: 770px) {
  .p-side-nav__menu-list {
    margin-bottom: 2.1875rem;
  }
}
.p-side-nav__archive {
  padding-top: 1.25rem;
  margin-bottom: 2.1875rem;
}
@media (max-width: 769px) {
  .p-side-nav .c-tag-list__item a {
    font-size: 0.8125rem;
    padding: 0.5rem 1rem;
  }
}

.p-top-new {
  width: 100%;
  padding: 1.25rem 0 3.75rem;
}
@media (min-width: 770px) {
  .p-top-new {
    padding-top: 0;
  }
}
.p-top-new__inner {
  width: 100%;
  max-width: 77.5rem; /* サイト全体の共通幅に合わせてください */
  margin: 0 auto;
  box-sizing: border-box;
}
.p-top-new__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 下揃えにすることでラインを綺麗に見せる */
  margin-bottom: 1rem;
}
@media (min-width: 770px) {
  .p-top-new__header {
    margin-bottom: 1.25rem;
  }
}
.p-top-new {
  /* ナビゲーションコンテナ */
}
.p-top-new__nav {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 769px) {
  .p-top-new__nav {
    display: none; /* SP時は画面幅いっぱいにスワイプさせるためボタンは非表示 */
  }
}
.p-top-new {
  /* クリックボタン単体（白丸・青矢印） */
}
.p-top-new__btn {
  appearance: none;
  border: none;
  width: 3rem;
  height: 3rem;
  background-color: #ffffff;
  color: #007bc8; /* 矢印カラー */
  border: 1px solid #e1e7ed;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  flex-shrink: 0;
  overflow: hidden;
  text-indent: 400%;
  position: relative;
}
.p-top-new__btn.js-new-prev::after {
  transform: scaleX(-1) translate(50%, -50%);
}
@media (hover: hover) {
  .p-top-new__btn:hover {
    opacity: 0.7;
    border: solid #0080CC 1px;
  }
}
.p-top-new__btn::after {
  content: "";
  display: block;
  background: url(../images/c-icn-arrow.svg) no-repeat;
  background-size: contain;
  width: 0.6875rem;
  height: 0.8125rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top-new__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.p-top-new__slider {
  width: 100%;
}
@media (max-width: 769px) {
  .p-top-new__slider {
    overflow: visible !important;
  }
}
@media (min-width: 770px) {
  .p-top-new__slider {
    width: auto;
    margin-left: -1rem;
  }
}

@media (min-width: 770px) {
  .p-top-new-list__item {
    padding: 0.25rem 1rem 0.75rem;
  }
}

.p-top-cat {
  width: 100%;
  margin-bottom: 2.5rem;
}
@media (min-width: 770px) {
  .p-top-cat {
    margin-bottom: 3.75rem;
  }
}
.p-top-cat__header {
  margin-bottom: 1rem;
}
@media (min-width: 770px) {
  .p-top-cat__header {
    margin-bottom: 1.25rem;
  }
}
.p-top-cat__slider {
  width: 100%;
  overflow: visible;
}
@media (min-width: 770px) {
  .p-top-cat__slider {
    width: auto;
    overflow: hidden; /* PC版は普通の四角い枠に収める */
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
.p-top-cat-list {
  display: flex; /* Swiper本来の形。これだけでOK */
}
@media (min-width: 770px) {
  .p-top-cat-list {
    display: grid; /* flexからgridに切り替え */
    grid-template-columns: repeat(2, 1fr); /* 2カラム */
    gap: 0;
    transform: none !important; /* 【これだけ残す】PCでは絶対にスクロールさせない壁 */
  }
  .p-top-cat-list__item {
    width: 100% !important; /* 2カラムの幅に強制フィットさせる */
  }
}

@media (min-width: 770px) {
  .p-top-cat-list__item {
    padding: 0.25rem 1rem 0.75rem;
  }
}

.p-category-header {
  padding: 0.625rem 1rem;
}
@media (min-width: 770px) {
  .p-category-header {
    max-width: 1236px;
    margin: 0 auto -1.25rem;
    padding: 0.625rem 1rem 0;
  }
}
.p-category-header__title {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  font-weight: bold;
  color: #0080CC;
  letter-spacing: 0.02em;
  margin-bottom: 0.375rem;
}
@media (min-width: 770px) {
  .p-category-header__title {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }
}
.p-category-header__lead {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  color: #666666;
  letter-spacing: 0.05em;
}
@media (min-width: 770px) {
  .p-category-header__lead {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-cat-new {
  width: 100%;
  margin: 0 0 3.75rem;
}
.p-cat-new__inner {
  width: 100%;
  max-width: 77.5rem; /* サイト全体の共通幅に合わせてください */
  margin: 0 auto;
  box-sizing: border-box;
}
.p-cat-new__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* 下揃えにすることでラインを綺麗に見せる */
  margin-bottom: 1rem;
}
@media (min-width: 770px) {
  .p-cat-new__header {
    margin-bottom: 1.25rem;
  }
}
.p-cat-new__slider {
  width: 100%;
}
@media (min-width: 770px) {
  .p-cat-new__slider {
    width: auto;
    margin-right: -1rem;
    margin-left: -1rem;
  }
}
.p-cat-new .c-card-item__title {
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 500;
}
@media (min-width: 770px) {
  .p-cat-new .c-card-item__date {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
}

@media (min-width: 770px) {
  .p-cat-new-list__item {
    flex: 1;
    padding: 0.25rem 0.75rem 0.75rem;
    max-width: 33.33%;
  }
}

@media (min-width: 770px) {
  .p-cat-list__item {
    padding: 0.25rem 1rem 0.75rem;
  }
}

.p-cat-archive {
  margin-bottom: 1.25rem;
  text-align: center;
}
@media (min-width: 770px) {
  .p-cat-archive {
    margin-bottom: 3.75rem;
  }
}
.p-cat-archive__header {
  margin-bottom: 1rem;
}
@media (min-width: 770px) {
  .p-cat-archive__header {
    margin-bottom: 1.25rem;
  }
}
.p-cat-archive .c-btn-more {
  margin: 1.5rem 0 0;
}
@media (min-width: 770px) {
  .p-cat-archive .c-btn-more {
    margin: 2.5rem 0 0;
  }
}
.p-cat-archive .c-tag-box {
  margin-top: 1.5rem;
}
@media (min-width: 770px) {
  .p-cat-archive .c-tag-box {
    margin-top: 3.75rem;
  }
}

.p-article-header {
  margin-bottom: 1.25rem;
}
@media (min-width: 770px) {
  .p-article-header {
    margin-bottom: 4rem;
  }
}
.p-article-header__title {
  font-size: 1.625rem;
  line-height: 1.4615384615;
  font-weight: 700;
  margin: 0 0 0.625rem 0;
}
@media (min-width: 770px) {
  .p-article-header__title {
    font-size: 2.625rem;
    line-height: 1.5238095238;
  }
}
.p-article-header__meta {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  column-gap: 1rem;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  color: #6B7280;
  padding: 0.625rem 0;
}
@media (min-width: 770px) {
  .p-article-header__meta {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    padding: 1rem 0;
  }
}
.p-article-header__meta > *:not(:last-child) {
  position: relative;
  padding-right: 1rem;
}
.p-article-header__meta > *:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
  color: #6B7280;
}
.p-article-header__taxonomies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 770px) {
  .p-article-header__taxonomies {
    flex-direction: row;
    gap: 2.5rem;
  }
}
.p-article-header__group {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 770px) {
  .p-article-header__group:last-child {
    flex: 1;
    min-width: 0;
  }
}
.p-article-header__group:nth-child(2) {
  flex-wrap: nowrap;
}
.p-article-header__label {
  font-size: 0.75rem;
  line-height: 2.3333333333;
  font-weight: bold;
  flex-shrink: 0;
}
@media (min-width: 770px) {
  .p-article-header__label {
    font-size: 1rem;
    line-height: 1.75;
  }
}
.p-article-header__category {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  text-decoration: none;
  padding: 0.375rem 0.75rem;
  border: 1px solid #d1dbe5;
  border-radius: 100vh;
  background-color: #fff;
  transtion: all 0.3s ease;
}
@media (min-width: 770px) {
  .p-article-header__category {
    flex-shrink: 0;
    padding: 0.3125rem 0.875rem;
  }
  .p-article-header__category:hover {
    border-color: #0080CC;
    color: #ffffff;
    background-color: #0080CC;
  }
}

.p-article-body {
  padding-bottom: 1.875rem;
}
@media (min-width: 770px) {
  .p-article-body {
    padding-bottom: 4rem;
  }
}
.p-article-body > p {
  font-size: 1rem;
  line-height: 1.875;
  margin: 0.625rem 0 1.875rem;
  letter-spacing: 0.02em;
}
.p-article-body > p img {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  display: block;
  max-width: 100%;
}
@media (min-width: 770px) {
  .p-article-body > p img {
    max-width: 580px;
  }
}
.p-article-body > p a {
  color: #0080CC;
  text-decoration: underline;
}
@media (min-width: 770px) {
  .p-article-body > p a:hover {
    text-decoration: none;
  }
}
.p-article-body > p:first-child {
  margin: 0 0 1rem 0;
}
.p-article-body > p:first-child img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  border: solid #E6EDF3 1px;
}
@media (min-width: 770px) {
  .p-article-body > p:first-child img {
    max-width: 100%;
  }
}
.p-article-body > p:first-child + p {
  margin-top: 0 !important;
}
.p-article-body > ul {
  font-size: 1rem;
  line-height: 1.875;
  margin: 0.625rem 0 1.875rem 1.5em;
  list-style: disc;
}
.p-article-body .wp-caption {
  margin: 1.875rem 0;
  padding: 0 1.1875rem;
  width: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 770px) {
  .p-article-body .wp-caption {
    margin: 2.5rem auto;
    padding: 0;
    max-width: 580px;
  }
}
.p-article-body .wp-caption img {
  max-width: 100%;
  width: auto !important;
  height: auto;
  display: block;
  border-radius: 1rem;
}
.p-article-body .wp-caption .wp-caption-text {
  margin-top: 0.5rem;
  color: #6B7280;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.6666666667;
}
@media (min-width: 770px) {
  .p-article-body .wp-caption .wp-caption-text {
    margin-top: 1rem;
  }
}
.p-article-body h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-weight: bold;
  margin: 1.875rem 0 0.625rem 0;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (min-width: 770px) {
  .p-article-body h2 {
    font-size: 2rem;
    line-height: 1.625;
    margin-top: 4rem;
  }
}
.p-article-body h2 .toc_number {
  color: #0080CC;
  font-weight: bold;
  flex-shrink: 0;
}
.p-article-body h3 {
  font-weight: bold;
  padding-left: 0.9375rem;
  margin: 1.875rem 0 0.625rem 0;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (min-width: 770px) {
  .p-article-body h3 {
    margin-top: 1.875rem;
  }
}
.p-article-body h3::before {
  content: "";
  display: block;
  background-color: #0080CC;
  border-radius: 100vh;
  width: 0.1875rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.p-article-body .wp-block-table {
  margin: 1.875rem 0;
  width: 100%;
  border: 1px solid #D9E1E8;
  border-radius: 1rem;
  overflow: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 770px) {
  .p-article-body .wp-block-table {
    margin: 2.5rem 0;
    overflow-x: visible;
  }
}
.p-article-body .wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
}
.p-article-body .wp-block-table th {
  background-color: #F5F9FC;
  font-weight: 700;
  padding: 0.875rem 0.625rem;
  border-bottom: 1px solid #D9E1E8;
  border-right: 1px solid #D9E1E8;
  vertical-align: middle;
  text-align: center;
}
.p-article-body .wp-block-table th:nth-child(1) {
  min-width: 6.25rem;
}
.p-article-body .wp-block-table th:nth-child(2) {
  min-width: 15rem;
  white-space: normal;
}
.p-article-body .wp-block-table th:nth-child(n+3) {
  min-width: 7.5rem;
  text-align: center;
}
@media (min-width: 770px) {
  .p-article-body .wp-block-table th {
    min-width: 0 !important;
    white-space: normal;
  }
}
.p-article-body .wp-block-table th:last-child {
  border-right: none;
}
.p-article-body .wp-block-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #D9E1E8;
  border-right: 1px solid #D9E1E8;
  line-height: 1.5;
  vertical-align: middle;
}
.p-article-body .wp-block-table td:nth-child(1) {
  min-width: 6.25rem;
}
.p-article-body .wp-block-table td:nth-child(2) {
  min-width: 15rem;
  white-space: normal;
}
.p-article-body .wp-block-table td:nth-child(n+3) {
  min-width: 7.5rem;
  text-align: center;
}
@media (min-width: 770px) {
  .p-article-body .wp-block-table td {
    min-width: 0 !important;
    white-space: normal;
  }
}
@media (min-width: 770px) {
  .p-article-body .wp-block-table td:first-child {
    min-width: 100px !important;
    max-width: 150px;
    width: max-content;
    white-space: normal;
    word-break: break-all;
  }
}
.p-article-body .wp-block-table td:last-child {
  border-right: none;
}
.p-article-body .wp-block-table td a {
  text-decoration: underline;
  font-weight: 500;
}
@media (min-width: 770px) {
  .p-article-body .wp-block-table td a:hover {
    text-decoration: none;
  }
}
.p-article-body .wp-block-table tr:last-child th, .p-article-body .wp-block-table tr:last-child td {
  border-bottom: none;
}
.p-article-body iframe {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.p-article-pager {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.5rem 0;
  border-top: solid #D9E1E8 1px;
}
@media (min-width: 770px) {
  .p-article-pager {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
.p-article-pager__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 0.875rem;
  border: 0.0625rem solid #D9E1E8;
  border-radius: 1rem;
  background-color: #ffffff;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
@media (hover: hover) {
  .p-article-pager__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.25rem 1rem rgba(31, 43, 61, 0.1);
  }
}
@media (min-width: 770px) {
  .p-article-pager__item {
    width: calc(50% - 0.75rem);
  }
}
@media (min-width: 770px) {
  .p-article-pager__item--next {
    margin-left: auto;
  }
}
.p-article-pager__img {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.p-article-pager__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-article-pager__body {
  flex-grow: 1;
  min-width: 0;
}
.p-article-pager__label {
  display: block;
  color: #0080CC;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.1666666667;
}
@media (min-width: 770px) {
  .p-article-pager__label {
    margin-bottom: 0.375rem;
  }
}
.p-article-pager__item--prev .p-article-pager__label::before {
  content: "< ";
  margin-right: 0.25rem;
}
.p-article-pager__item--next .p-article-pager__label::after {
  content: " >";
  margin-left: 0.25rem;
}
.p-article-pager__title {
  font-weight: 500;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.06em;
}
@media (min-width: 770px) {
  .p-article-pager__title {
    font-size: 1rem;
    line-height: 1.625;
  }
}

@media (max-width: 769px) {
  .p-article-detail {
    margin-top: -1.25rem;
  }
}
.p-article-detail .c-author-box {
  margin-bottom: 1.875rem;
}
.p-article-detail .p-article-pager {
  margin-bottom: 2.5rem;
}
@media (min-width: 770px) {
  .p-article-detail .p-article-pager {
    margin-bottom: 4rem;
  }
}
.p-article-detail .p-cat-new {
  margin-bottom: 2.5rem;
}
.p-article-detail .p-cat-new + .p-cat-new {
  margin-top: 4rem;
}
.p-article-detail .c-tag-box {
  margin: 2.5rem 0;
}
@media (min-width: 770px) {
  .p-article-detail .c-tag-box {
    margin: 4rem 0;
  }
}

/*!***************
  Object - Utility
****************//*# sourceMappingURL=style.css.map */