@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Noto+Sans+JP:wght@100..900&display=swap"); /* ------------------------
  reset
------------------------ */
html {
  height: 100%;
}

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

* {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}

pre,
textarea {
  overflow: auto;
}

template {
  display: none;
}

details,
main,
summary {
  display: block;
}

input[type=number] {
  width: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

textarea {
  resize: vertical;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

audio:not([controls]) {
  display: none;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  min-height: 1.5em;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

input {
  line-height: normal;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  border-style: none;
  cursor: pointer;
  background-color: transparent;

  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

select {
     -moz-appearance: none;
  -webkit-appearance: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: 0;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #4d4d4d;
  --color-red: #e60012;
  --color-light-gray: #f2f2f2;
  --color-line-gray: #e5e5e5;
  --color-business-blue: #212e58;
  --color-footer-gray: #666;
  --color-lily: #faf6f0;
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-bold: 700;
}

/* ------------------------
  Base Settings
------------------------ */
html {
  font-size: inherit;
}
html.is-scrollLock {
  overflow: hidden;

  scrollbar-gutter: stable;
}

body {
  background-color: #fff;
  letter-spacing: 0;
  word-wrap: break-word;
  color: #000;
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.875;

  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
body *:focus {
  outline-color: var(--color-red);
}

a {
  text-decoration: none;
  color: #000;
}
a:visited {
  color: inherit;
}
a:active {
  color: inherit;
}

/* ------------------------
  Components
------------------------ */
.c-hero {
  margin-top: 20px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-line-gray);
}

.c-hero_inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
}
@media (min-width: 768px) {
  .c-hero_inner {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .c-hero_inner {
    padding: 0 80px;
  }
}

.c-hero_lead {
  margin: 60px auto 0;
  padding: 0 20px;
  max-width: 1440px;
}
@media (min-width: 768px) {
  .c-hero_lead {
    padding: 0 40px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .c-hero_lead {
    padding: 0 80px;
  }
}

.c-page_ttl {
  position: relative;
}

.c-page_ttl_txt {
  position: relative;
  padding-bottom: 32px;
  text-align: center;
  font-size: 2rem;
  font-weight: var(--weight-bold);
  line-height: 1.25;
}
.c-page_ttl_txt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background-color: var(--color-line-gray);
}
.c-page_ttl_02 .c-page_ttl_txt {
  position: relative;
  font-size: 1.75rem;
  line-height: 1.5;
}
.c-page_ttl_02 .c-page_ttl_txt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background-color: var(--color-line-gray);
}

.c-btn {
  width: -moz-fit-content;
  width: fit-content;
}
.c-btn > a,
.c-btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 0.9375rem;
  border: 1px solid var(--color-gray);
  border-radius: 0.3125rem;
  width: 100%;
  background-color: var(--color-white);

  -moz-column-gap: 0.625rem;

       column-gap: 0.625rem;
}
.c-btn._fill > a,
.c-btn._fill button {
  background-color: var(--color-gray);
  color: var(--color-white);
}
.c-btn._size-full {
  width: 100%;
}

.c-btn_txt {
  font-size: 1rem;
}

.c-btn_icon {
  display: block;
  width: 0.375rem;
  height: 0.625rem;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
._fill .c-btn_icon {
  background-color: var(--color-white);
}

[target=_blank] .c-btn_icon {
  margin-left: -0.3125rem;
  width: 1.25rem;
  height: 1.25rem;

  -webkit-mask-image: url("/assets/img/common/blank.svg");

          mask-image: url("/assets/img/common/blank.svg");
}
[href*=".pdf"] .c-btn_icon {
  margin-left: -0.3125rem;
  width: 2.5rem;
  height: 1.25rem;

  -webkit-mask-image: url("/assets/img/common/pdf.svg");

          mask-image: url("/assets/img/common/pdf.svg");
}
[href^="#"] .c-btn_icon {
  transform: rotate(90deg);
}
._icon-dl .c-btn_icon {
  margin-right: -0.3125rem;
  width: 1.5rem;
  height: 1.5rem;

  -webkit-mask-image: url("/assets/img/common/dl.svg");

          mask-image: url("/assets/img/common/dl.svg");
}
._icon-grid .c-btn_icon {
  margin-right: -0.3125rem;
  width: 1.5rem;
  height: 1.5rem;

  -webkit-mask-image: url("/assets/img/common/grid.svg");

          mask-image: url("/assets/img/common/grid.svg");
}

.c-breadcrumb_wrapper {
  background-color: var(--color-white);
}

@media (min-width: 768px) {
  .c-breadcrumb {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
  }
}
.c-breadcrumb.is-scrollable {
  overflow-x: scroll;
}

.c-breadcrumb_list {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px;
  width: 100%;

  -moz-column-gap: 20px;

       column-gap: 20px;
}
@media (min-width: 768px) {
  .c-breadcrumb_list {
    padding: 20px 40px;
  }
}
@media (min-width: 1024px) {
  .c-breadcrumb_list {
    padding: 20px 80px;
  }
}
.is-scrollable .c-breadcrumb_list {
  width: -moz-max-content;
  width: max-content;
}

.c-breadcrumb_item {
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1.667;
}
.c-breadcrumb_item:not(:last-child) {
  position: relative;
}
.c-breadcrumb_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -12px;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--color-line-gray);
}
.c-breadcrumb_item > a {
  text-decoration: underline;
  font-size: inherit;
  line-height: inherit;
}
.c-breadcrumb_item > a[aria-current=page] {
  text-decoration: none;
  pointer-events: none;
}

.c-fav {
  position: relative;
}
.p-search_result .c-fav {
  width: 24px;
  height: 24px;
}
.c-fav input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
}
.c-fav input[type=checkbox]:checked + label svg {
  fill: var(--color-red);
  stroke: none;
}
.c-fav label {
  display: block;
  position: relative;
  width: inherit;
  height: inherit;
  cursor: pointer;
}
.c-fav label svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: inherit;
  height: inherit;

  fill: var(--color-white);
  stroke: var(--color-gray);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.c-fav .c-fav_tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: -17px;
  right: -8px;
  padding: 5px 10px;
  border: 1px solid var(--color-gray);
  border-radius: 15px;
  width: -moz-max-content;
  width: max-content;
  transition: opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translateY(-100%);
  background-color: var(--color-white);
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.667;
}
.c-fav .c-fav_tooltip::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -8px;
  width: 10px;
  height: 10px;
  background-color: var(--color-white);

  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-fav .c-fav_tooltip::before {
  content: "";
  position: absolute;
  right: 15px;
  bottom: -10px;
  width: 10px;
  height: 10px;
  background-color: var(--color-gray);

  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-fav .c-fav_tooltip > p {
  display: block;
}
.c-fav .c-fav_tooltip > a {
  text-decoration: underline;
}
.c-fav .c-fav_tooltip.favactive {
  visibility: visible;
  /*opacity: 1;*/
  animation: tooltipin .2s ease-out forwards, tooltipout .4s ease 2s;
  animation-fill-mode: forwards;
}

@keyframes tooltipin {
  0%{
    opacity:0;
  }
  100% {
    /*transform: translateY(-10%);*/
    opacity:1;
  }
}
@keyframes tooltipout {
  0%{
    opacity:1;
  }
  100% {
    /*transform: translateY(0%);*/
    opacity:0;
  }
}

.c-fav input[type=checkbox] {
  transition: visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-fav input[type=checkbox]:focus + label + .c-fav_tooltip {
  transition: visibility 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-fav label + .c-fav_tooltip {
  transition: visibility 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), opacity 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-fav label:hover + .c-fav_tooltip {
  transition: visibility 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-modal {
  display: none;
}
.c-modal.is-open {
  display: block;
}

html:has(.c-modal.is-open) {
  scrollbar-gutter: stable;
}

body:has(.c-modal.is-open) {
  height: 100%;
}

.c-modal_anim[aria-hidden=true] {
  animation: modalClose 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-modal_anim[aria-hidden=true] .c-modal_dialog {
  animation: modalContentClose 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-modal_anim[aria-hidden=false] {
  animation: modalOpen 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-modal_anim[aria-hidden=false] .c-modal_dialog {
  animation: modalContentOpen 0.64s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.c-modal {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-modal_overlay {
  display: grid;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 102, 102, 0.7);

  place-content: center;
}

.c-modal_dialog {
  overflow-y: scroll;
  padding: 60px 20px;
  height: auto;
  max-height: calc(100dvh - 120px);
  background-color: var(--color-white);

  scrollbar-gutter: stable;
}
@media (min-width: 768px) {
  .c-modal_dialog {
    padding: 60px;
  }
}

.c-modal_content {
  position: relative;
}

.c-modal_close {
  position: absolute;
  top: -17px;
  right: 4px;
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .c-modal_close {
    top: -10px;
    right: -17px;
  }
}
.c-modal_close button {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-modal_close button span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  transform: rotate(45deg);
  background-color: var(--color-gray);
}
.c-modal_close button span:last-child {
  transform: rotate(-45deg);
}

.c-modal_close_link {
  margin: 40px auto 0;
}

@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modalContentOpen {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modalContentClose {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
.c-btn > a,
.c-btn button {
  transition: border-color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-btn > a .c-btn_icon,
.c-btn button .c-btn_icon {
  transition: background-color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-btn > a:hover,
.c-btn button:hover {
  border-color: var(--color-red);
  transition: border-color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--color-white);
  color: var(--color-red);
}
.c-btn > a:hover .c-btn_icon,
.c-btn button:hover .c-btn_icon {
  transition: background-color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: arw 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--color-red);
}
@keyframes arw {
  0% {
    -webkit-mask-position: 0px 0px;
            mask-position: 0px 0px;
  }
  49% {
    -webkit-mask-position: 0.375rem 0px;
            mask-position: 0.375rem 0px;
  }
  50% {
    -webkit-mask-position: -0.375rem 0px;
            mask-position: -0.375rem 0px;
  }
  100% {
    -webkit-mask-position: 0px 0px;
            mask-position: 0px 0px;
  }
}
.c-btn > a[target=_blank]:hover .c-btn_icon,
.c-btn > a[href*=".pdf"]:hover .c-btn_icon,
.c-btn button[target=_blank]:hover .c-btn_icon,
.c-btn button[href*=".pdf"]:hover .c-btn_icon {
  animation: none;
}
.c-btn._icon-dl > a:hover .c-btn_icon,
.c-btn._icon-dl button:hover .c-btn_icon,
.c-btn._icon-grid > a:hover .c-btn_icon,
.c-btn._icon-grid button:hover .c-btn_icon {
  animation: none;
}
.c-btn._fill > a:hover,
.c-btn._fill button:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}
.c-btn._fill > a:hover .c-btn_icon,
.c-btn._fill button:hover .c-btn_icon {
  background-color: var(--color-white);
}

.c-breadcrumb_item > a {
  transition: color 0.16s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-breadcrumb_item > a:hover {
  transition: color 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  color: var(--color-red);
}

/* ------------------------
  utilities Classes
------------------------ */
.u-hidden {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-sm {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-up-sm {
  display: none !important;
  visibility: hidden;
}

@media (max-width: 767.98px) {
  .u-hidden-down-sm {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .u-hidden-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 768px) {
  .u-hidden-up-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1023.98px) {
  .u-hidden-down-md {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) and (max-width: 1439.98px) {
  .u-hidden-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1024px) {
  .u-hidden-up-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (max-width: 1439.98px) {
  .u-hidden-down-lg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1440px) {
  .u-hidden-xlg {
    display: none !important;
    visibility: hidden;
  }
}

@media (min-width: 1440px) {
  .u-hidden-up-xlg {
    display: none !important;
    visibility: hidden;
  }
}

.u-hidden-down-xlg {
  display: none !important;
  visibility: hidden;
}

.u-visuallyhidden {
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}

.u-visuallyhidden.focusable:active,
.u-visuallyhidden.focusable:focus {
  overflow: visible;
  clip: auto;
  position: static;
  margin: 0;
  width: auto;
  height: auto;
}

.u-invisible {
  visibility: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ------------------------
  Layouts
------------------------ */
.l-section_inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1440px;
}
@media (min-width: 768px) {
  .l-section_inner {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .l-section_inner {
    padding: 0 80px;
  }
  .l-section_inner:has(.p-to-c_bg) {
    position: relative;
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  opacity: 0;
  z-index: 0;
  margin: 0 !important;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;

  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  list-style-type: none;
  pointer-events: auto;
  line-height: 1;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  list-style-type: none !important;

  backface-visibility: hidden;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: splide-loading 1s linear infinite;

  contain: strict;
}

.splide__sr {
  overflow: hidden;
  clip: rect(0 0 0 0);
  position: absolute;
  margin: -1px;
  padding: 0;
  border: 0;
  width: 1px;
  height: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.splide:not(.is-overflow) .splide__pagination {
  display: flex;
}

/*
* splide_custom.css
*
*/
/* --------------------------------
  splide custom
-------------------------------- */
@media (min-width: 768px) {
  .splide.is-disable-md {
    visibility: visible;
  }
}

.c-slide_controller {
  display: flex;
  align-items: center;
  position: relative;
  margin: 30px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
}
@media (min-width: 768px) {
  .is-disable-md .c-slide_controller {
    display: none;
  }
}

.splide__arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
}

.c-slide-arrow {
  position: absolute;
  border: 1px solid var(--color-line-gray);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  background-color: var(--color-white);
}
.c-slide-arrow svg {
  display: none;
}
.c-slide-arrow::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 6px;
  height: 10px;
  background-color: var(--color-gray);

  -webkit-mask-image: url("/assets/img/common/arw.svg");

          mask-image: url("/assets/img/common/arw.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.c-slide-prev {
  left: -50px;
  transform: scaleX(-1);
}

.c-slide-next {
  right: -50px;
}

.splide__pagination {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.splide__pagination li {
  position: relative;
  width: 10px;
  height: 10px;
}

.c-slide-page {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-gray);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  min-height: 0;
}
.c-slide-page.is-active {
  background-color: var(--color-gray);
}

.c-slide-arrow {
  transition: border-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-slide-arrow::after {
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-slide-arrow:hover {
  border-color: var(--color-red);
  transition: border-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-slide-arrow:hover::after {
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  animation: arw 0.34s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: var(--color-red);
}
@keyframes arw {
  0% {
    -webkit-mask-position: 0px 0px;
            mask-position: 0px 0px;
  }
  49% {
    -webkit-mask-position: 0.375rem 0px;
            mask-position: 0.375rem 0px;
  }
  50% {
    -webkit-mask-position: -0.375rem 0px;
            mask-position: -0.375rem 0px;
  }
  100% {
    -webkit-mask-position: 0px 0px;
            mask-position: 0px 0px;
  }
}

.c-slide-page {
  transition: border-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-slide-page:hover {
  border-color: var(--color-red);
  transition: border-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-slide-page.is-active {
  transition: border-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition: background-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75), border-color 0.16s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
.c-slide-page.is-active:hover {
  border-color: var(--color-red);
  transition: background-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75), border-color 0.24s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  background-color: var(--color-red);
}

/* ------------------------
  Print Styles
------------------------ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/*
* main.css
*
*/