@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  15% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  30% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
@keyframes menuCloseEnd {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(10px);
    opacity: 0;
  }
}
@keyframes menuOpenEnd {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.text-white {
  color: #fff;
}

.text-caption {
  color: #888888;
}

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

.font-roboto {
  font-family: "Roboto", sans-serif;
}

.font-noto-serif {
  font-family: "Noto Serif JP", serif;
}

.uppercase {
  text-transform: uppercase;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

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

.justify-end {
  justify-content: flex-end;
}

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

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.relative {
  position: relative;
}

.w-full {
  width: 100%;
}

.link-arrow::after {
  display: inline-block;
  aspect-ratio: 1/1;
  height: 1.2em;
  content: "";
  -webkit-mask-image: url("../../assets/images/common/icon_arrow_circle.svg");
  mask-image: url("../../assets/images/common/icon_arrow_circle.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  margin-left: 0.5em;
  background-color: currentColor;
  vertical-align: sub;
  mask-repeat: no-repeat;
}
.link-arrow.outerlink::after {
  -webkit-mask-image: url("../../assets/images/common/icon_link_outer.svg");
  background-color: #005BAC;
  mask-image: url("../../assets/images/common/icon_link_outer.svg");
}

.box-indexlink {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: min(9.3333333333vw, 70px);
}

.page--navi {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: 1fr;
  margin-bottom: min(9.6vw, 72px);
  color: #005BAC;
}
.page--navi .navi-item {
  display: grid;
  grid-template-columns: 1fr auto;
  font-weight: 500;
  font-size: min(2rem, 5.8666666667vw);
}
.page--navi .navi-item::after {
  content: "";
  -webkit-mask-image: url("../../assets/images/common/icon_arrow_down.svg");
  mask-image: url("../../assets/images/common/icon_arrow_down.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  align-self: center;
  aspect-ratio: 35/20;
  width: min(2rem, 4.8vw);
  margin-bottom: 0.56em;
  background-color: currentColor;
  mask-repeat: no-repeat;
}

a, button {
  transition: all ease-in-out 0.16s;
}

.hover-img {
  display: block;
  overflow: hidden;
  transition: all ease-in-out 0.16s;
}
.hover-img img {
  transition: all ease-in-out 0.16s;
}
[class^=btn-] {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vmax;
}
[class^=btn-]:has(i[class^=icon-]) {
  gap: 0.75em;
}
[class^=btn-] i[class^=icon-] {
  height: 1.2em;
}

.btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 0.5em;
  gap: 0.5rem;
  border: min(0.2666666667vw, 1.5px) solid currentColor;
  background-color: #fff;
  color: #005BAC;
  line-height: 1;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85em 0.5em;
  gap: 0.5rem;
  background-color: #005BAC;
  color: #fff;
  line-height: 1;
}

.btn-arrow {
  position: relative;
  padding: 0.85em 2em 0.85em 1.64em;
  border: min(0.2666666667vw, 1.5px) solid currentColor;
  background-color: #fff;
  color: #005BAC;
  text-align: center;
}
.btn-arrow::after {
  position: absolute;
  top: 50%;
  right: 1.2em;
  aspect-ratio: 24/42.67;
  height: 1em;
  transform: translateY(-0.6em);
  content: "";
  -webkit-mask-image: url("../../assets/images/common/icon_arrow.svg");
  mask-image: url("../../assets/images/common/icon_arrow.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  background-color: currentColor;
  mask-repeat: no-repeat;
}
.btn-arrow.primary {
  border: none;
  background-color: #005BAC;
  color: #fff;
}
.btn-arrow.pdf {
  padding-right: 2.6em;
}
.btn-arrow.pdf::after {
  right: 0.8em;
  aspect-ratio: 26/22;
  height: 1.2em;
  transform: translateY(-0.6em);
  -webkit-mask-image: url("../../assets/images/common/icon_pdf.svg");
  mask-image: url("../../assets/images/common/icon_pdf.svg");
}
.btn-arrow.outerlink {
  padding-right: 2.6em;
}
.btn-arrow.outerlink::after {
  right: 0.81em;
  aspect-ratio: 1/1;
  height: 1.2em;
  transform: translateY(-0.6em);
  -webkit-mask-image: url("../../assets/images/common/icon_link_outer.svg");
  mask-image: url("../../assets/images/common/icon_link_outer.svg");
}

[class^=icon-] {
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.icon-mail {
  -webkit-mask-image: url("../../assets/images/common/icon_mail.svg");
  aspect-ratio: 23.75/18.5;
  mask-image: url("../../assets/images/common/icon_mail.svg");
}

.icon-youtube {
  -webkit-mask-image: url("../../assets/images/common/icon_youtube.svg");
  aspect-ratio: 24/18;
  mask-image: url("../../assets/images/common/icon_youtube.svg");
}

.icon-x {
  -webkit-mask-image: url("../../assets/images/common/icon_x.svg");
  aspect-ratio: 24/24;
  mask-image: url("../../assets/images/common/icon_x.svg");
}

.icon-arrow {
  -webkit-mask-image: url("../../assets/images/common/icon_arrow.svg");
  aspect-ratio: 24/42.67;
  mask-image: url("../../assets/images/common/icon_arrow.svg");
}

.icon-arrow_circle {
  -webkit-mask-image: url("../../assets/images/common/icon_arrow_circle.svg");
  aspect-ratio: 1/1;
  mask-image: url("../../assets/images/common/icon_arrow_circle.svg");
}

.icon-3dot {
  -webkit-mask-image: url("../../assets/images/common/icon_3dot.svg");
  aspect-ratio: 1/1;
  mask-image: url("../../assets/images/common/icon_3dot.svg");
}

.icon-outerlink {
  -webkit-mask-image: url("../../assets/images/common/icon_link_outer.svg");
  aspect-ratio: 1/1;
  mask-image: url("../../assets/images/common/icon_link_outer.svg");
}

.icon-pdf {
  -webkit-mask-image: url("../../assets/images/common/icon_pdf.svg");
  aspect-ratio: 26/22;
  mask-image: url("../../assets/images/common/icon_pdf.svg");
}

.icon-tel {
  -webkit-mask-image: url("../../assets/images/common/icon_tel.svg");
  aspect-ratio: 19/25;
  mask-image: url("../../assets/images/common/icon_tel.svg");
}

.icon-fax {
  -webkit-mask-image: url("../../assets/images/common/icon_fax.svg");
  aspect-ratio: 1/1;
  mask-image: url("../../assets/images/common/icon_fax.svg");
}

#header {
  display: flex;
  z-index: 10;
  position: sticky;
  top: 0;
  left: 0;
  align-items: center;
  width: 100cqw;
  transition: all ease-in-out 0.16s;
}
#header .site-logo a {
  display: block;
  padding: min(2vw, 20px) min(5.3333333333vw, 40px);
  background-color: #fff;
}
#header .site-logo img {
  width: 26.6666666667vw;
  height: auto;
}
#header .global-navi {
  font-weight: 500;
}
#header .nav-menu {
  display: flex;
  flex-direction: column;
}
#header .submenu {
  position: relative;
}
#header .submenu-title {
  box-sizing: content-box;
  display: flex;
  position: relative;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding-right: min(3.2vw, 24px);
}
#header .submenu-title::before, #header .submenu-title::after {
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 0;
  width: min(4.8vw, 24px);
  height: 0.2rem;
  transform-origin: center;
  background-color: currentColor;
  content: "";
  transition: all ease-in-out 0.16s;
}
#header .submenu-title::after {
  transform: rotate(90deg);
}
#header .submenu-title.open::before {
  transform: rotate(90deg);
  opacity: 0;
}
#header .submenu-title.open::after {
  transform: rotate(180deg);
}
#header .submenu-item {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all ease-in-out 0.16s;
}
#header .nav-submenu {
  flex-shrink: 0;
}
#header .nav-submenu:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
#header .btn-primary {
  font-weight: 500;
}
#header .btn-primary .icon-mail {
  height: 1em;
}
#header.scrolled {
  background-color: #fff;
}

.page--top #header {
  position: fixed;
  color: #fff;
}

.footer-contents, footer.footer {
  /* the max-width */
  /* the small-size-width */
  margin-inline: max(0px, 50cqw - 810px);
}

.footer-contents {
  -o-border-image: conic-gradient(#F9F9F9 0 0) 0//0 100vw;
  border-image: conic-gradient(#F9F9F9 0 0) fill 0//0 100vw;
}
.footer-contents .btp {
  display: flex;
  z-index: 2;
  position: absolute;
  top: 0;
  right: min(4.2666666667vw, 16px);
  align-items: center;
  justify-content: center;
  width: min(8.5333333333vw, 72px);
  height: min(8.5333333333vw, 72px);
  transform: translateY(-50%);
  border: 2px solid #005BAC;
  border-radius: 50%;
  background-color: #fff;
}
.footer-contents .btp .icon-arrow {
  width: min(1.6vw, 10px);
  transform: rotate(-90deg);
  transform-origin: center;
}
.footer-contents .contact-area {
  display: flex;
  z-index: 2;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: min(10.6666666667vw, 60px) min(4.2666666667vw, 16px);
  background-color: #005BAC;
}
.footer-contents .contact-area::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/common/bg_contact_sp.png") no-repeat center center;
  background-size: cover;
  content: "";
  opacity: 0.68;
}
.footer-contents .contact-area .inner {
  display: grid;
  width: 100%;
  background-color: #005BAC;
}
.footer-contents .contact-area .inner > * {
  position: relative;
}
.footer-contents .contact-area .title {
  margin-bottom: 4.2666666667vw;
  font-weight: 700;
  font-size: min(3.6rem, 9.6vw);
  line-height: 1;
}
.footer-contents .contact-area .caption {
  width: 90%;
  margin-bottom: min(3.6rem, 7.4666666667vw);
  margin-inline: auto;
  font-weight: 500;
  font-size: 1.6rem;
  text-align: center;
}
.footer-contents .contact-area .btn-arrow {
  width: 80%;
  margin-inline: auto;
  font-weight: 500;
  font-size: min(1.8rem, 4.2666666667vw);
}

footer.footer {
  z-index: 1;
  position: relative;
  -o-border-image: conic-gradient(#005BAC 0 0) 0//0 100vw;
  display: flex;
  flex-direction: column;
  padding: min(10.6666666667vw, 60px) min(4.2666666667vw, 24px) min(7.4666666667vw, 40px);
  border-image: conic-gradient(#005BAC 0 0) fill 0//0 100vw;
  color: #fff;
}
footer.footer .title {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4.2666666667vw;
  font-size: min(6.9333333333vw, 48px);
  line-height: 1.57;
}
footer.footer .foonter-link {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  -moz-column-gap: min(7.4666666667vw, 32px);
  column-gap: min(7.4666666667vw, 32px);
  font-size: min(3.7333333333vw, 16px);
}
footer.footer .social-link {
  display: flex;
  align-items: center;
  gap: min(4.2666666667vw, 24px);
}
footer.footer .social-link i {
  display: block;
}
footer.footer .social-link .icon-youtube {
  width: min(4rem, 10.6666666667vw);
}
footer.footer .social-link .icon-x {
  width: min(2.5rem, 6.6666666667vw);
}
footer.footer .first {
  display: flex;
  line-height: 1.75;
  -moz-column-gap: min(4.8vw, 18px);
  column-gap: min(4.8vw, 18px);
  flex-flow: column nowrap;
}
footer.footer .second {
  font-weight: 500;
}
footer.footer .second .company-name {
  margin-bottom: min(3.2vw, 10px);
  font-size: min(2.2rem, 5.8666666667vw);
}
footer.footer .second .address, footer.footer .second .tel {
  font-size: 1.6rem;
  line-height: 1.75;
}
footer.footer .second .tel {
  display: flex;
  gap: min(4.8vw, 18px);
}
footer.footer .second .copy {
  font-weight: 400;
  font-size: 1.2rem;
}

.splide .splide__arrow {
  background-color: transparent;
  color: #fff;
  transition: all ease-in-out 0.16s;
}

.splide.full-visible .navigation {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.splide.full-visible .navigation .splide__arrow--prev {
  left: 0;
}
.splide.full-visible .navigation .splide__arrow--next {
  right: 0;
}
.splide.full-visible .splide__pagination {
  position: relative;
  right: initial;
  bottom: initial;
  margin-inline: auto;
  padding: 3.6rem 5.6rem;
  gap: 1.2rem;
}
.splide.full-visible .splide__pagination .splide__pagination__page {
  width: min(4.5333333333vw, 16px);
  height: min(4.5333333333vw, 16px);
}
.splide.full-visible .splide__pagination .splide__pagination__page.is-active {
  transform: scale(1);
  background-color: #A2C2E6;
}
.splide.full-visible .icon-arrow {
  height: min(6.4vw, 32px);
  color: #005BAC;
}
.splide.full-visible .icon-arrow.prev {
  transform: scaleX(-1);
}

#splide--hero .splide__slide {
  position: relative;
  height: 100%;
}
#splide--hero .splide__slide img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#splide--hero .splide--title {
  display: flex;
  position: absolute;
  bottom: min(7.4666666667vw, 32px);
  left: 0;
  flex-flow: column nowrap;
  align-items: flex-start;
  width: 100%;
  padding-left: 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 16vw;
  text-align: center;
}
#splide--hero .splide--title .sub {
  font-size: 0.4em;
}
#splide--hero .splide--title .main {
  line-height: 1;
}
#splide--hero .icon-arrow {
  height: min(7.4666666667vw, 45px);
}
#splide--hero .icon-arrow.prev {
  transform: scaleX(-1);
}

#splide--business .splide__track {
  width: min(80vw, 420px);
  overflow: visible;
}
#splide--business .item {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr 1fr;
  aspect-ratio: 420/550;
  width: min(80vw, 420px);
}
#splide--business .thumbnail {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#splide--business .cat-name {
  z-index: 1;
  position: relative;
  grid-row: 1;
  padding: min(7.4666666667vw, 28px);
  color: #fff;
  font-weight: 600;
  font-size: min(3.8rem, 10.1333333333vw);
  opacity: 0.5;
}
#splide--business .info {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-rows: subgrid;
  grid-auto-flow: row;
  row-gap: 1rem;
  grid-row: 2/4;
  padding: min(12.8vw, 48px) min(7.4666666667vw, 28px);
  background: linear-gradient(rgba(0, 91, 171, 0) 0%, rgba(0, 91, 171, 0.5) 36%, rgba(0, 91, 171, 0.64) 100%);
  color: #fff;
  font-weight: 500;
}
#splide--business .info .title {
  display: flex;
  grid-row: 1;
  align-items: center;
  align-self: flex-end;
  gap: 0.36em;
  font-size: min(2.2rem, 5.8666666667vw);
}
#splide--business .info .title:after {
  display: block;
  content: "";
  -webkit-mask-image: url("../../assets/images/common/icon_arrow.svg");
  mask-image: url("../../assets/images/common/icon_arrow.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  aspect-ratio: 24/42.67;
  height: 0.8em;
  background-color: currentColor;
  mask-repeat: no-repeat;
}
#splide--business .info p {
  grid-row: 2;
  line-height: 1.75;
}

#splide--pickup .splide__track {
  width: min(69.3333333333vw, 340px);
  margin: 0 auto;
  overflow: visible;
}
#splide--pickup .pickup-item {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr;
  width: min(69.3333333333vw, 340px);
  gap: 0.75em;
  font-size: min(1.6rem, 4.2666666667vw);
}
#splide--pickup .pickup-item i[class^=icon-] {
  display: inline-block;
  background-color: #005BAC;
  vertical-align: sub;
}
#splide--pickup .pickup-item .icon-arrow_circle {
  width: min(5.3333333333vw, 22px);
}
#splide--pickup .pickup-item .icon-outerlink {
  width: min(5.0666666667vw, 20px);
}

.cms-contents {
  margin-bottom: min(9.3333333333vw, 70px);
  line-height: 2;
}
.cms-contents h2:not([class]), .cms-contents .h2,
.cms-contents h3:not([class]), .cms-contents .h3,
.cms-contents h4:not([class]), .cms-contents .h4,
.cms-contents h5:not([class]), .cms-contents .h5 {
  color: #333;
  font-weight: 600;
}
.cms-contents h2:not([class]), .cms-contents .h2 {
  position: relative;
  margin-bottom: min(6vw, 45px);
  padding-bottom: 0.5em;
  border-bottom: min(1.0666666667vw, 4px) solid #E1E1E1;
  font-size: min(3.2rem, 6.6666666667vw);
}
.cms-contents h2:not([class])::after, .cms-contents .h2::after {
  position: absolute;
  bottom: calc(-1 * min(1.0666666667vw, 4px));
  left: 0;
  width: 19.0476190476%;
  height: min(1.0666666667vw, 4px);
  background-color: #005BAC;
  content: "";
}
.cms-contents h3:not([class]), .cms-contents .h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: min(4vw, 30px);
  padding-bottom: min(4vw, 20px);
  gap: 0.5em;
  border-bottom: 1px solid #E1E1E1;
  font-size: min(2.8rem, 5.8666666667vw);
  line-height: 1.5;
}
.cms-contents h3:not([class])::before, .cms-contents .h3::before {
  width: min(1.6vw, 6px);
  height: 100%;
  background-color: #005BAC;
  content: "";
}
.cms-contents h4:not([class]), .cms-contents .h4 {
  margin-bottom: min(4vw, 30px);
  padding: 0.5em;
  background-color: #F2F6FB;
  font-size: min(2.4rem, 5.3333333333vw);
  line-height: 1.5;
}
.cms-contents h5:not([class]), .cms-contents .h5 {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: min(3.2vw, 24px);
  gap: 0.5em;
  font-size: min(1.8rem, 4.2666666667vw);
  line-height: 1.5;
}
.cms-contents h5:not([class])::before, .cms-contents .h5::before {
  aspect-ratio: 15/18;
  height: 1.36em;
  background: url("../../assets/images/common/decoration_logo.svg") center center no-repeat;
  background-size: contain;
  content: "";
}
.cms-contents .h-normal {
  margin-bottom: min(4.8vw, 40px);
  font-weight: 500;
  font-size: min(2.2rem, 5.8666666667vw);
}
.cms-contents section:not([class]) {
  margin-bottom: min(9.6vw, 48px);
}
.cms-contents section:not([class]) > *:not(:last-child) {
  margin-bottom: 1.5em;
}
.cms-contents p:not([class]) {
  margin-bottom: 1em;
}
.cms-contents a:not([class]) {
  text-decoration: underline;
}
.cms-contents a[class^=btn-] {
  line-height: 1.75;
  text-align: left;
}
.cms-contents ul:not([class]), .cms-contents ul.list-normal {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.5em;
}
.cms-contents ul:not([class]) li, .cms-contents ul.list-normal li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.5em;
}
.cms-contents ul:not([class]) li::before, .cms-contents ul.list-normal li::before {
  aspect-ratio: 1/1;
  height: 1em;
  margin-top: 0.36em;
  border: 0.4rem solid #005BAC;
  border-radius: 50%;
  content: "";
}
.cms-contents ol:not([class]), .cms-contents ol.list-number {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.5em;
  counter-reset: list-counter;
}
.cms-contents ol:not([class]) li, .cms-contents ol.list-number li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5em;
}
.cms-contents ol:not([class]) li::before, .cms-contents ol.list-number li::before {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  height: 1.5em;
  margin-top: 0.24em;
  border-radius: 50%;
  background-color: #E1E1E1;
  content: counter(list-counter);
  line-height: 1;
  counter-increment: list-counter;
}
.cms-contents .table-contents {
  padding-bottom: min(3.2vw, 16px);
  overflow-x: auto;
  scrollbar-color: #E1E1E1 #CDD0D6;
  scrollbar-width: thin;
}
.cms-contents .table-contents:has(+ .text-caption) {
  margin-bottom: 0 !important;
}
.cms-contents .table-contents::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.cms-contents .table-contents::-webkit-scrollbar-track {
  border-radius: 4px;
  background: #CDD0D6;
}
.cms-contents .table-contents::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #005BAC;
}
.cms-contents .table {
  min-width: 100%;
  border-collapse: collapse;
}
.cms-contents .table.layout-fixed {
  table-layout: fixed;
}
.cms-contents .table th, .cms-contents .table td {
  padding: min(3.7333333333vw, 14px) min(3.2vw, 12px);
  border: 1px solid #E1E1E1;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.cms-contents .table th.text-left, .cms-contents .table td.text-left {
  text-align: left;
}
.cms-contents .table td {
  font-weight: 500;
}
.cms-contents .table .table-header th {
  background-color: #005BAC;
  color: #fff;
}
.cms-contents .table th {
  min-width: min(32vw, 160px);
  background-color: #F8FAFC;
}
.cms-contents .btn-arrow {
  border: 1.5px solid currentColor;
  border-radius: 5rem;
}
.cms-contents .text-small, .cms-contents .caption {
  font-size: 0.875em;
}
.cms-contents .text-large {
  font-size: 1.125em;
}
.cms-contents .caption {
  line-height: 1.5;
}
.cms-contents .box-grid {
  display: grid;
}
.cms-contents .box-grid > * {
  display: flex;
  flex-flow: column nowrap;
  gap: 0.6em;
}
.cms-contents .box-grid > * img {
  margin-inline: auto;
}
.cms-contents .box-grid > * .thumbnail {
  overflow: hidden;
}
.cms-contents .box-grid > *:has(.video-contents) {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}
.cms-contents .box-grid > * .video-contents {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
.cms-contents .box-grid > * .video-contents iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cms-contents .box-grid.place-center {
  place-content: center;
}
.cms-contents .box-flex {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.25em 0.75em;
}
.cms-contents .box-quote {
  padding: min(8vw, 50px);
  border: min(0.2666666667vw, 1px) solid #E1E1E1;
}
.cms-contents .box-quote.bg {
  border: none;
  background-color: #F9F9F9;
}
.cms-contents .box-quote .quote-title {
  margin-bottom: 0.75em;
  font-weight: 500;
  font-size: min(2.4rem, 5.8666666667vw);
  line-height: 1.36;
}
.cms-contents dl.information-table {
  display: grid;
  border: 2px solid #E1E1E1;
  font-size: min(2rem, 4.2666666667vw);
}
.cms-contents dl.information-table dt, .cms-contents dl.information-table dd {
  padding: min(4vw, 30px) min(3.2vw, 20px) min(3.2vw, 24px);
  border-bottom: 2px solid #E1E1E1;
}
.cms-contents dl.information-table dt {
  background-color: #F2F6FB;
  font-weight: 500;
}
.cms-contents dl.information-table dt:has(.label) {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 0.5em;
}
.cms-contents dl.information-table dt .label {
  margin-top: 0.36em;
  padding: 0.25em 0.5em;
  border-radius: 100dvh;
  color: #fff;
  font-size: 0.875em;
  line-height: 1;
}
.cms-contents dl.information-table dt .label.required {
  background-color: #C52F2F;
}
.cms-contents dl.information-table dd:last-child {
  border-bottom: none;
}
.cms-contents dl.information-table dd:has(input[type=text] + input[type=text]), .cms-contents dl.information-table dd:has(.floating-label + .floating-label) {
  display: grid;
  gap: 1em;
}
.cms-contents .map {
  position: relative;
  aspect-ratio: 748/387;
  width: 100%;
  margin-top: 1em;
}
.cms-contents .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.accordion summary {
  position: relative;
  padding: min(2.6666666667vw, 16px) min(9.3333333333vw, 54px) min(2.6666666667vw, 16px) min(3.2vw, 24px);
  background-color: #F9F9F9;
  cursor: pointer;
}
.accordion summary::before, .accordion summary::after {
  position: absolute;
  top: calc(50% - 0.2rem);
  right: min(3.2vw, 20px);
  width: min(5.3333333333vw, 20px);
  height: 0.2rem;
  transform-origin: center;
  background-color: currentColor;
  content: "";
  transition: all ease-in-out 0.16s;
}
.accordion summary::after {
  transform: rotate(90deg);
}
.accordion .faq-title {
  display: grid;
  grid-template-columns: min(9.3333333333vw, 40px) 1fr;
  gap: min(2.6666666667vw, 10px);
  font-weight: 500;
  font-size: min(4.2666666667vw, 2rem);
}
.accordion .faq-title::before {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  width: min(9.3333333333vw, 40px);
  border-radius: 50%;
  background-color: #005BAC;
  content: "Q";
  color: #fff;
  font-weight: 600;
  font-size: min(2.1rem, 5.6vw);
  line-height: 1;
}
.accordion[open] summary::before {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion[open] summary::after {
  transform: rotate(180deg);
}

form.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: min(8.5333333333vw, 48px);
  /*
  select:has(option:checked[value=""]) {
      color: global.$color_lightgrey3;
  } */
}
form.form ::-webkit-input-placeholder {
  color: #E1E1E1;
}
form.form input[type=text], form.form input[type=email], form.form input[type=tel], form.form textarea, form.form select {
  width: 100%;
  padding: 0.5em 1em;
  border: 1px solid #E1E1E1;
  border-radius: min(1.3333333333vw, 5px);
  outline: none !important;
  box-shadow: none;
}
form.form select,
form.form ::picker(select) {
  -webkit-appearance: base-select;
  -moz-appearance: base-select;
  appearance: base-select;
}
form.form ::picker(select) {
  padding: 0.25em 0.75em;
}
form.form button[type=submit]:disabled, form.form button[type=submit].disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
form.form .confirm-message {
  display: grid;
  gap: 0.25em;
}
form.form .confirm-message .title {
  font-weight: 500;
}
form.form .error-message {
  display: none;
  margin-block: 0.25em 0;
  color: #e74c3c;
  font-size: 0.875em;
}
form.form .error-message.show {
  display: block;
}
form.form .field-error input, form.form .field-error select, form.form .field-error textarea {
  border-color: #e74c3c !important;
  background-color: #fdf2f2;
}
form.form .field-error .floating-label label {
  background-color: #fdf2f2;
}
form.form .floating-label {
  display: inline-block;
  position: relative;
  width: 100%;
}
form.form .floating-label input[type=text]:not(:-moz-placeholder) ~ label {
  top: -1em;
  left: 0.5em;
  transform: translateY(0);
  color: #000;
  font-size: 0.75em;
}
form.form .floating-label input[type=text]:focus ~ label, form.form .floating-label input[type=text]:not(:placeholder-shown) ~ label {
  top: -1em;
  left: 0.5em;
  transform: translateY(0);
  color: #000;
  font-size: 0.75em;
}
form.form .floating-label input[type=text]::-moz-placeholder {
  color: transparent;
}
form.form .floating-label input[type=text]::placeholder {
  color: transparent;
}
form.form .floating-label label {
  position: absolute;
  top: 50%;
  left: 0.2em;
  padding: 0 1em;
  transform: translateY(-50%);
  background-color: #fff;
  color: #999;
  font-size: 1em;
  pointer-events: none;
  transition: all 0.3s ease;
}

html {
  container-type: inline-size;
  font-size: 10px;
}

:where(h1, h2, h3) {
  line-height: initial;
  text-wrap: initial;
}

body {
  margin: 0;
  overflow-x: clip;
  background-color: #fff;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
}

a {
  text-decoration: none;
}

main {
  /* the max-width */
  /* the small-size-width */
  margin-inline: max(min(4.2666666667vw, 24px), 50cqw - 550px);
}
main .full-bleed {
  margin-inline: calc(-1 * max(min(4.2666666667vw, 24px), 50cqw - 550px));
}
main.size-small {
  margin-inline: max(min(4.2666666667vw, 24px), 50cqw - 554px);
}
main.size-small .full-bleed {
  margin-inline: calc(-1 * max(min(4.2666666667vw, 24px), 50cqw - 554px));
}
main .container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}
main .header--section {
  position: relative;
  margin-top: min(4vw, 30px);
  padding: min(5.3333333333vw, 50px) min(4.2666666667vw, 24px) min(13.3333333333vw, 100px);
  overflow-x: clip;
  background-color: #005BAC;
  color: #fff;
}
main .header--section::before {
  z-index: 0;
  position: absolute;
  top: calc(-1 * min(4vw, 30px));
  left: 0;
  width: min(185.6vw, 1392px);
  height: calc(100% + min(4vw, 30px));
  transform: translateX(-20%);
  background: url("../../assets/images/common/bg_line_header_top.png") no-repeat center top;
  background-size: 90% auto;
  content: "";
}
main .header--section.deco-bottom {
  margin-bottom: min(24vw, 140px);
}
main .header--section.deco-bottom::after {
  z-index: 1;
  position: absolute;
  top: 100%;
  left: 50%;
  aspect-ratio: 1013/318;
  width: min(135.0666666667vw, 1013px);
  transform: translateX(-50%);
  background: url("../../assets/images/top/bg_line2.png") no-repeat center;
  background-size: cover;
  content: "";
}
main .header--section .main-title {
  display: flex;
  flex-flow: column nowrap;
  font-weight: 700;
  font-size: min(3rem, 8vw);
}
main .header--section .main-title .sub {
  font-size: min(1.2rem, 3.2vw);
  line-height: 2.4;
}
main .header--section .title_en {
  display: flex;
  position: absolute;
  top: calc(100% + min(13.3333333333vw, 100px));
  left: 50%;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  gap: 0 0.25em;
  transform: translate(-50%, -0.5em);
  color: #F2F6FB;
  font-weight: 700;
  font-size: min(9rem, 14.6666666667vw);
  line-height: 1;
}
main .header--section .title_en span {
  justify-self: center;
}
main .breadcrumbs {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-bottom: 2em;
  gap: 0.5em 1em;
  font-weight: 500;
  font-size: min(1.2rem, 3.2vw);
  line-height: 1;
}
main .breadcrumbs li:not(:last-child) {
  padding-right: 1em;
  border-right: 1px solid currentColor;
}
main .news--category {
  display: flex;
  gap: 0.5em;
}
main .news--category li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em 0.75em;
  border-radius: 100dvh;
  color: #fff;
  font-size: 0.7777777778em;
  line-height: 1;
}
main .news--category li.release {
  background-color: #A2C2E6;
}
main .news--category li.new {
  background-color: #DC6969;
}
main .news--category li.info {
  background-color: #005BAC;
}
main .news--category li.pickup {
  background-color: #5B5B5B;
}
main .bottom-navi {
  margin-inline: auto;
  -o-border-image: conic-gradient(#F9F9F9 0 0) 0//0 100vw;
  max-width: 1620px;
  padding: min(6.6666666667vw, 56px) min(4.2666666667vw, 24px);
  border-image: conic-gradient(#F9F9F9 0 0) fill 0//0 100vw;
}
main .bottom-navi .navi-title {
  margin-bottom: 0.5em;
  font-weight: 500;
  font-size: min(2.8rem, 5.8666666667vw);
}
main .bottom-navi .navi-link {
  display: flex;
  flex-flow: row wrap;
  width: 85%;
  margin-inline: auto;
  gap: 1em;
  font-weight: 500;
  font-size: min(2rem, 4.2666666667vw);
}
main .bottom-navi .navi-link li {
  width: 100%;
}
main .bottom-navi .navi-link .btn-arrow {
  display: block;
  padding-inline: 4em;
}

.page--top .section-heading {
  display: flex;
  flex-flow: column nowrap;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  row-gap: min(2.4vw, 8px);
  margin-bottom: min(6.4vw, 24px);
}
.page--top .section-heading .lead {
  font-weight: 500;
  font-size: min(1.6rem, 4.2666666667vw);
  line-height: 1.75;
}
.page--top .section-title {
  display: flex;
  flex-flow: column nowrap;
  font-weight: 700;
  font-size: min(3.2rem, 8.5333333333vw);
}
.page--top .section-title .sub {
  color: #005BAC;
  font-size: min(1.2rem, 3.2vw);
  line-height: 2;
}
.page--top .company-message {
  display: grid;
  position: relative;
  justify-items: center;
  margin-bottom: min(24vw, 180px);
  padding: min(8.5333333333vw, 80px) 0 min(17.0666666667vw, 148px);
  overflow-x: clip;
  background-image: url("../../assets/images/top/bg_message.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #005BAC;
  color: #fff;
}
.page--top .company-message::after {
  z-index: 1;
  position: absolute;
  top: 100%;
  left: 50%;
  aspect-ratio: 1013/318;
  width: min(135.0666666667vw, 1013px);
  transform: translateX(-50%);
  background: url("../../assets/images/top/bg_line2.png") no-repeat center;
  background-size: cover;
  content: "";
}
.page--top .company-message .message-title {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  width: 8.2em;
  font-weight: 600;
  font-size: min(6.4rem, 8.5333333333vw);
  line-height: 1.56;
}
.page--top .company-message .message-main {
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  align-items: center;
  width: 86%;
  margin-top: min(8.5333333333vw, 48px);
}
.page--top .company-message .message-main .logo {
  width: min(26.6666666667vw, 145px);
  height: auto;
}
.page--top .company-message .message-text {
  margin-top: min(8.5333333333vw, 48px);
  font-size: min(1.8rem, 4.2666666667vw);
  line-height: 2.4;
}
.page--top .company-message .btn-arrow {
  position: relative;
  width: 80%;
  max-width: 360px;
  margin-top: min(7.4666666667vw, 36px);
  font-weight: 500;
  font-size: 1.8rem;
}
.page--top .company-message .section-logo {
  position: absolute;
  top: calc(100% - min(5.6rem, 7.4666666667vw));
  left: 0;
  color: #F2F6FB;
  font-weight: 700;
  font-size: min(11rem, 14.6666666667vw);
  line-height: 1;
  text-align: center;
}
.page--top .business {
  margin-bottom: min(16vw, 96px);
  padding-inline: min(4.2666666667vw, 24px);
  overflow: hidden;
}
.page--top .business .btn-arrow {
  display: block;
  width: 100%;
  max-width: 290px;
  margin-inline: auto;
}
.page--top .performance {
  display: flex;
  position: relative;
  align-items: flex-end;
  height: 81.7333333333vw;
  padding: 1.6vw;
  background: url("../../assets/images/top/img_performance.png") no-repeat center center;
  background-size: cover;
}
.page--top .performance .title {
  color: #fff;
  font-weight: 700;
  font-size: min(10rem, 13.3333333333vw);
  line-height: 1;
}
.page--top .product {
  -o-border-image: conic-gradient(#F9F9F9 0 0) 0//0 100vw;
  position: relative;
  padding: min(5.6rem, 9.6vw) 0;
  overflow: hidden;
  border-image: conic-gradient(#F9F9F9 0 0) fill 0//0 100vw;
}
.page--top .product::before {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 50%;
  aspect-ratio: 1013/318;
  width: min(135.0666666667vw, 1013px);
  transform: translateX(-50%);
  background: url("../../assets/images/top/bg_line2.png") no-repeat center;
  background-size: cover;
  content: "";
}
.page--top .product .product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  margin-bottom: min(4.8vw, 24px);
  gap: min(7.4666666667vw, 32px) min(4.2666666667vw, 16px);
}
.page--top .product .product-list--item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
.page--top .product .product-list--item .thumb {
  position: relative;
  margin-bottom: min(4.2666666667vw, 16px);
  overflow: hidden;
}
.page--top .product .product-list--item .thumb .label {
  position: absolute;
  top: 0;
  left: 0;
  width: 29.3650793651%;
  padding: 0.5em;
  color: #fff;
  font-weight: 500;
  font-size: min(2.2rem, 5.8666666667vw);
  line-height: 1;
  text-align: center;
}
.page--top .product .product-list--item .thumb .label.case {
  background-color: #A2C2E6;
}
.page--top .product .product-list--item .thumb .label.item {
  background-color: #005BAC;
}
.page--top .product .product-list--item .thumb img {
  width: 100%;
  height: auto;
}
.page--top .product .product-list--item .title {
  margin-bottom: min(4.2666666667vw, 16px);
}
.page--top .product .product-list--item .tags {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
}
.page--top .product .product-list--item .tags li {
  padding: 0.5em 1em;
  border: 1px solid #E8E8E8;
  border-radius: 100vmax;
  background-color: #fff;
  font-weight: 500;
  line-height: 1;
}
.page--top .product .product-list--item .keywords {
  display: flex;
  flex-flow: row wrap;
  height: -moz-fit-content;
  height: fit-content;
  gap: 0.5em;
}
.page--top .product .product-list--item .keywords li {
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.5em 0.36em;
  border: 1px solid #888888;
  background-color: #fff;
  color: #888888;
  font-weight: 500;
  line-height: 1;
}
.page--top .product .product-list--item .date {
  color: #888888;
}
.page--top .product .btn-arrow {
  display: block;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}
.page--top .news {
  display: grid;
  padding-block: min(8.5333333333vw, 96px);
}
.page--top .news .news-item {
  display: flex;
  position: relative;
  flex-flow: row wrap;
  padding: 2em 2em 1.75em 0;
  gap: 0.5em 1em;
  border-bottom: 1px solid #E1E1E1;
  font-weight: 500;
  font-size: min(1.6rem, 4.2666666667vw);
}
.page--top .news .news-item::after {
  content: "";
  -webkit-mask-image: url("../../assets/images/common/icon_arrow.svg");
  mask-image: url("../../assets/images/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center;
  position: absolute;
  top: 50%;
  right: 0;
  aspect-ratio: 10/18;
  width: min(2.6666666667vw, 10px);
  transform: translateY(-50%);
  background-color: #005BAC;
  mask-position: center;
}
.page--top .news .news-title {
  width: 100%;
  font-weight: 400;
}
.page--top .news .link-index {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2.4em;
  gap: 0.75em;
  color: #005BAC;
  font-weight: 500;
  font-size: min(1.6rem, 4.2666666667vw);
  line-height: 1;
}
.page--top .news .link-index .icon-3dot {
  width: min(8.5333333333vw, 40px);
}
.page--top .information .title {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: -0.36em;
  gap: 0 0.25em;
  color: #F2F6FB;
  font-weight: 800;
  font-size: min(10rem, 13.3333333333vw);
  line-height: 1;
}
.page--top .information .img-holder {
  display: flex;
  position: relative;
  align-items: flex-end;
  height: 80.1333333333vw;
  background: url("../../assets/images/top/img_pickup.png") no-repeat center center;
  background-size: cover;
}
.page--top .pickup-contents {
  position: relative;
  padding-inline: min(4.2666666667vw, 24px);
  padding-block: min(13.3333333333vw, 100px) min(13.3333333333vw, 100px);
  overflow: hidden;
}
.page--top .pickup-contents::after {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1013/318;
  width: min(135.0666666667vw, 1013px);
  transform: translateX(-15%);
  background: url("../../assets/images/top/bg_line.png") no-repeat center;
  background-size: cover;
  content: "";
}
.page--top .parter-banners {
  -o-border-image: conic-gradient(#F9F9F9 0 0) 0//0 100vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(160px, 53.3333333333vw), 1fr));
  max-width: 53.3333333333vw;
  margin-inline: auto;
  padding-block: min(10.6666666667vw, 60px);
  gap: min(4.2666666667vw, 16px);
  border-image: conic-gradient(#F9F9F9 0 0) fill 0//0 100vw;
}
.page--top .parter-banners a img {
  width: 100%;
}

.page--company .ceo-message {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding-bottom: min(12vw, 110px);
  gap: 2.5rem;
}
.page--company .ceo-message .message-title {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  font-size: min(5.8rem, 8.5333333333vw);
  line-height: 1.68;
}
.page--company .ceo-message .message-title span:first-child {
  width: 100%;
}
.page--company .ceo-message .message {
  font-weight: 500;
  font-size: min(2rem, 4.2666666667vw);
  line-height: 2;
}
.page--company .ceo-message .message p {
  margin-bottom: 1em;
}
.page--company .ceo-message .signature {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  font-weight: 500;
  font-size: min(2rem, 4.2666666667vw);
  line-height: 1.75;
}
.page--company .overview-contents {
  margin-bottom: min(9.6vw, 100px);
}
.page--company .about-logo {
  margin-bottom: min(13.3333333333vw, 100px);
}
.page--company .about-logo--h3 {
  margin-bottom: 0.5em;
  font-weight: 500;
  font-size: min(2.4rem, 5.8666666667vw);
}
.page--company .about-logo--holder {
  width: 90.1639344262%;
  margin-inline: auto;
  padding: min(7.4666666667vw, 56px) min(14vw, 105px);
  border: 1px solid #E1E1E1;
}

.page--news .header--section.top {
  background: url("../../assets/images/news/img_header.png") center center no-repeat;
  background-size: cover;
}
.page--news .news--header {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: min(10.6666666667vw, 80px);
  gap: 1em 0.5em;
  font-weight: 500;
}
.page--news .news--title {
  width: 100%;
  font-weight: 500;
  font-size: min(4rem, 7.4666666667vw);
}

.page--business main {
  padding-bottom: min(9.6vw, 72px);
}
.page--business .cms-contents section:not([class]) > .box-grid {
  margin-bottom: 3em;
}
.page--business .cms-contents .box-grid > *:not(:has(.caption)) {
  gap: 1.2em;
}
.page--business .header--section {
  background: url("../../assets/images/business/img_header.png") center center no-repeat;
  background-size: cover;
}
.page--business .section-title {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: min(6.4vw, 48px);
  font-weight: 700;
  font-size: min(8.5333333333vw, 40px);
}
.page--business .section-title span {
  color: #005BAC;
  font-size: 0.375em;
  line-height: 2.4;
}
.page--business .item-title {
  font-size: min(6.4vw, 32px);
}
.page--business .item-title_sub {
  font-size: min(5.8666666667vw, 20px);
}
.page--business .box-grid.business {
  margin-bottom: min(8.5333333333vw, 64px);
}

.page--contact .header--section {
  background: url("../../assets/images/contact/img_header.png") center center no-repeat;
  background-size: cover;
}
.page--contact .section {
  margin-bottom: min(13.3333333333vw, 96px);
}
.page--contact .faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: min(0.5333333333vw, 4px);
}
.page--contact .info-tel {
  display: flex;
  flex-flow: column nowrap;
}
.page--contact .info-tel > * {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.page--contact .number-info {
  display: grid;
  grid-template-columns: auto min(7.4666666667vw, 48px) 1fr;
  align-items: center;
  color: #005BAC;
}
.page--contact .number-info .label {
  padding: 0.5em 1em;
  border-radius: 100dvh;
  background-color: #005BAC;
  color: #fff;
  font-size: min(4.2666666667vw, 1.6rem);
  line-height: 1;
}
.page--contact .number-info .number {
  font-size: min(8.2666666667vw, 3.4rem);
  line-height: 1.35;
}
.page--contact .number-info i {
  justify-self: center;
}
.page--contact .number-info .icon-tel {
  height: min(7.2vw, 25px);
}
.page--contact .number-info .icon-fax {
  height: min(6vw, 23px);
}

.page--product main {
  padding-bottom: min(9.6vw, 72px);
}
.page--product .cms-contents section:not([class]) > .box-grid {
  margin-bottom: 3em;
}
.page--product.case_studies .header--section {
  background-color: #A2C2E6;
}
.page--product.case_studies .product--header {
  border-left-color: #A2C2E6;
}
.page--product.case_studies .product--header .label {
  background-color: #A2C2E6;
}
.page--product .product--header {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  margin-bottom: min(9.6vw, 64px);
  padding-left: min(6.4vw, 40px);
  border-left: min(1.6vw, 6px) solid #005BAC;
}
.page--product .product--header .label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 2em;
  background-color: #005BAC;
  color: #fff;
  font-weight: 500;
  font-size: min(2rem, 4.2666666667vw);
}
.page--product .product--header .title-main {
  font-weight: 700;
  font-size: min(3.2rem, 8.5333333333vw);
  line-height: 1.75;
}
.page--product .product--header .title-sub {
  font-weight: 500;
  font-size: min(1.8rem, 4.8vw);
}
.page--product .information-table {
  font-size: 1.125em;
}
.page--product .box-indexlink {
  margin-block: min(12.8vw, 72px);
}
.page--product .box-indexlink [class^=btn-] {
  padding: 1.25em 2.5em;
  gap: 0.25em;
  font-size: min(4.8vw, 2rem);
}
@media (min-width: 769px) {
  .flex-pc {
    display: flex;
  }
  .box-indexlink .btn-arrow {
    padding-inline: 7.5em;
  }
  .page--navi {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background-image: linear-gradient(to bottom, #E1E1E1 0.2rem, transparent 0.2rem);
    background-position: top left;
    background-size: 0.2rem 0.4rem;
    background-repeat: repeat-y;
  }
  .page--navi .navi-item {
    grid-template-rows: subgrid;
    grid-template-columns: 1fr;
    grid-row: span 2;
    place-content: center;
    place-items: center;
    padding: 0.5em;
    gap: 0.5em;
    background-image: linear-gradient(to bottom, #E1E1E1 0.2rem, transparent 0.2rem);
    background-position: top right;
    background-size: 0.2rem 0.4rem;
    background-repeat: repeat-y;
    text-align: center;
    /*
    &:first-of-type {
        background-image:
            linear-gradient(to bottom, global.$color_lightgrey3 0.2rem, transparent 0.2rem),
            linear-gradient(to bottom, global.$color_lightgrey3 0.2rem, transparent 0.2rem);
        background-position: top right, top left;
        background-repeat: repeat-y, repeat-y;
        background-size: 0.2rem 0.4rem, 0.2rem 0.4rem;
    } */
  }
  .page--navi .navi-item::after {
    aspect-ratio: 18/10;
    width: 1.8rem;
    margin-bottom: 0;
  }
  #header .site-logo a {
    padding-inline: min(40px, 2.0833333333vw);
  }
  #header .site-logo img {
    width: min(168px, 14.5833333333vw);
  }
  #header .global-navi {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-left: auto;
    padding: 18px min(40px, 2.0833333333%);
  }
  #header .global-navi.open {
    height: -moz-max-content !important;
    height: max-content !important;
  }
  #header .nav-menu {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: min(40px, 2.380952381vw);
  }
  #header .nav-menu .navi-link {
    font-size: clamp(1.2rem, 1.3541666667vw, 1.6rem);
  }
  #header .submenu-title::before, #header .submenu-title::after {
    width: 1.2rem;
    height: 0.2rem;
  }
  #header .submenu-item {
    position: absolute;
    top: 100%;
    left: 50%;
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    transform: translateX(-50%);
    color: #000;
  }
  #header .submenu-title.open + .submenu-item {
    top: calc(100% + 1.6rem);
    width: -moz-max-content;
    width: max-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 1rem;
    overflow: visible;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
  }
  #header .submenu-title.open + .submenu-item::before {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-width: 0 0.8rem 0.8rem 0.8rem;
    border-style: solid;
    border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
    content: "";
  }
  #header .nav-submenu {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
  }
  #header .btn-primary {
    align-self: center;
    width: clamp(14rem, 8.3333333333cqw, 19.5rem);
    margin-left: min(40px, 2.0833333333vw);
    font-size: clamp(1.2rem, 1.09375vw, 1.5rem);
  }
  #header .btn-menu {
    display: none;
  }
  #header.scrolled {
    color: #000;
  }
  #header.scrolled .submenu-title.open + .submenu-item {
    top: calc(100% + 3rem);
  }
  .footer-contents {
    margin-bottom: -8rem;
  }
  .footer-contents .contact-area {
    height: 434px;
  }
  .footer-contents .contact-area::before {
    background-image: url("../../assets/images/common/bg_contact.png");
  }
  .footer-contents .contact-area .inner {
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    max-width: 1100px;
  }
  .footer-contents .contact-area .title {
    margin-bottom: 2rem;
    font-size: 6.4rem;
  }
  .footer-contents .contact-area .caption {
    margin-bottom: 0;
    margin-inline: 0;
    font-size: 1.8rem;
    text-align: left;
  }
  .footer-contents .contact-area .btn-arrow {
    grid-row: span 2;
    align-self: center;
    width: 100%;
    max-width: 363px;
    font-size: 1.8rem;
  }
  footer.footer {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16rem 2.4rem 8rem;
    gap: 1.5em;
  }
  footer.footer .title {
    flex-direction: column;
  }
  footer.footer .foonter-link {
    row-gap: 1em;
    -moz-column-gap: min(48px, 6vw);
    column-gap: min(48px, 6vw);
  }
  footer.footer .social-link {
    margin-bottom: 1.6rem;
  }
  footer.footer .social-link .icon-youtube {
    width: 5rem;
  }
  footer.footer .social-link .icon-x {
    width: 3rem;
  }
  footer.footer .first {
    flex-flow: row nowrap;
    margin-bottom: 0;
    -moz-column-gap: min(64px, 2vw);
    column-gap: min(64px, 2vw);
  }
  footer.footer .second .company-name {
    font-size: 2.4rem;
  }
  .splide.full-visible .icon-arrow {
    height: 3.2rem;
  }
  #splide--hero .splide--title {
    padding-left: 10%;
    font-size: min(18rem, 10dvw);
  }
  #splide--hero .splide--title .sub {
    font-size: 3.9rem;
  }
  #splide--business .cat-name {
    font-size: 4.8rem;
  }
  #splide--business .info .title {
    font-size: 2.4rem;
  }
  #splide--pickup .pickup-item {
    font-size: 1.6rem;
  }
  .cms-contents .h-normal {
    font-size: 2.4rem;
  }
  .cms-contents a[class^=btn-] {
    padding-inline: 7.5rem;
  }
  .cms-contents .table {
    width: 100%;
    max-width: 100%;
  }
  .cms-contents .table th, .cms-contents .table td {
    max-width: -moz-fit-content;
    max-width: fit-content;
    white-space: normal;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: 1fr 1fr;
    gap: min(5rem, 4.5454545455%);
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child):has(> [class^=col-]) {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child):has(> [class^=col-]) > .col-1 {
    grid-column: span 1;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child):has(> [class^=col-]) > .col-2 {
    grid-column: span 2;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child):has(> [class^=col-]).business {
    grid-template-columns: repeat(5, 1fr);
    grid-column: 2;
    gap: 4.5454545455%;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child):has(> [class^=col-]).business > .col-1 {
    grid-column: span 2;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child):has(> [class^=col-]).business > .col-2 {
    grid-column: span 3;
  }
  .cms-contents .box-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr 1fr;
    gap: min(4.4rem, 4%);
  }
  .cms-contents .box-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: min(4rem, 3.6363636364%);
  }
  .cms-contents .box-grid:has(> :nth-child(n+5)) {
    grid-template-columns: repeat(3, 1fr);
    gap: min(4.4rem, 4%);
  }
  .cms-contents .box-flex {
    flex-flow: row wrap;
  }
  .cms-contents dl.information-table {
    grid-template-columns: min(292px, 26.5454545455%) 1fr;
    font-size: 1.6rem;
  }
  .cms-contents dl.information-table dt, .cms-contents dl.information-table dd {
    padding-top: 2.4rem;
  }
  .cms-contents dl.information-table dt:last-of-type {
    border-bottom: none;
  }
  .cms-contents dl.information-table dd:has(input[type=text] + input[type=text]), .cms-contents dl.information-table dd:has(.floating-label + .floating-label) {
    grid-template-columns: minmax(0, calc((520px - 1em) / 2)) minmax(0, calc((520px - 1em) / 2));
  }
  .cms-contents dl.information-table dd:has(input[type=text] + input[type=text]) input, .cms-contents dl.information-table dd:has(.floating-label + .floating-label) input {
    max-width: calc((520px - 1em) / 2);
  }
  .accordion summary::before, .accordion summary::after {
    width: 2rem;
    height: 0.2rem;
  }
  .accordion .faq-title {
    font-size: 2.4rem;
  }
  form.form input[type=text], form.form input[type=email], form.form input[type=tel], form.form textarea, form.form select {
    max-width: 520px;
  }
  form.form textarea {
    max-width: 100%;
  }
  form.form .confirm-message {
    grid-template-columns: auto 1fr;
    gap: 2em;
  }
  main .header--section::before {
    left: 50%;
    transform: translateX(-30%);
    background-size: 100% auto;
  }
  main .header--section.deco-bottom::after {
    transform: translateX(-25%);
  }
  main .header--section .main-title {
    font-size: 4.8rem;
  }
  main .header--section .main-title .sub {
    font-size: 1.8rem;
  }
  main .header--section .title_en {
    font-size: min(14.5rem, 12cqw);
  }
  main .breadcrumbs {
    font-size: 1.6rem;
  }
  main .bottom-navi .navi-title {
    font-size: 2.4rem;
  }
  main .bottom-navi .navi-link {
    width: 100%;
    font-size: 1.8rem;
  }
  main .bottom-navi .navi-link li {
    width: -moz-fit-content;
    width: fit-content;
  }
  .page--top .section-heading {
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .page--top .section-heading .lead {
    align-self: flex-end;
    margin-bottom: 0.75em;
    font-size: 1.8rem;
  }
  .page--top .section-title {
    font-size: 4rem;
  }
  .page--top .section-title .sub {
    font-size: 1.8rem;
  }
  .page--top .company-message::after {
    transform: translateX(-25%);
  }
  .page--top .company-message {
    grid-template-rows: repeat(2, auto);
    grid-template-columns: auto;
    grid-auto-flow: column;
    -moz-column-gap: min(4.8rem, 8dvw);
    column-gap: min(4.8rem, 8dvw);
  }
  .page--top .company-message .message-title {
    align-self: flex-end;
    justify-self: flex-end;
    width: 360px;
    font-size: 5.8rem;
  }
  .page--top .company-message .message-main {
    grid-row: span 2;
    justify-self: flex-start;
    max-width: 520px;
    margin-top: 0;
  }
  .page--top .company-message .btn-arrow {
    grid-row: 2/3;
    grid-column: 1/2;
    align-self: center;
    justify-self: flex-end;
    width: 100%;
  }
  .page--top .company-message .message-text {
    font-size: 1.8rem;
    line-height: 2;
  }
  .page--top .company-message .section-logo {
    top: 100%;
    width: 100%;
    transform: translateY(-50%);
    font-size: min(16rem, 8.3333333333dvw);
  }
  .page--top .performance {
    height: 670px;
    padding: 24px;
  }
  .page--top .performance .title {
    font-size: min(15rem, 10dvw);
  }
  .page--top .product::before {
    transform: translateX(-25%);
  }
  .page--top .product {
    padding: 9.6rem 0;
  }
  .page--top .product .product-list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .page--top .product .product-list--item {
    max-width: 340px;
  }
  .page--top .product .product-list--item .thumb .label {
    width: 100px;
    font-size: 1.8rem;
  }
  .page--top .news {
    grid-template-columns: auto 1fr;
    gap: min(4.2666666667vw, 18px);
  }
  .page--top .news .news-item {
    font-size: 1.8rem;
  }
  .page--top .news .link-index {
    font-size: 1.8rem;
  }
  .page--top .information .title {
    font-size: min(15rem, 9.5238095238dvw);
  }
  .page--top .information .img-holder {
    height: 650px;
  }
  .page--top .pickup-contents::after {
    transform: translateX(-20%);
  }
  .page--top .parter-banners {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    justify-content: center;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 1100px;
  }
  .page--top .parter-banners li {
    max-width: 250px;
  }
  .page--company .ceo-message .message-title {
    font-size: 5.8rem;
  }
  .page--company .ceo-message .message {
    font-size: 1.8rem;
  }
  .page--company .ceo-message .signature {
    font-size: 1.8rem;
  }
  .page--business .section-title {
    font-size: 4rem;
  }
  .page--business .section-title span {
    font-size: 0.45em;
  }
  .page--business .item-title {
    margin-bottom: 1em !important;
    font-size: 3.2rem;
  }
  .page--business .item-title_sub {
    font-size: 1.8rem;
  }
  .page--contact .info-tel {
    flex-flow: row wrap;
  }
  .page--contact .info-tel > *:first-child {
    margin-right: 2.4rem;
    padding-right: 2.4rem;
    background-image: linear-gradient(to bottom, #E1E1E1 0.2rem, transparent 0.2rem);
    background-position: top right;
    background-size: 0.2rem 0.4rem;
    background-repeat: repeat-y;
  }
  .page--contact .number-info .label {
    font-size: 1.4rem;
  }
  .page--contact .number-info .number {
    font-size: 3.2rem;
  }
  .page--product .product--header .label {
    font-size: 1.8rem;
  }
  .page--product .product--header .title-main {
    font-size: 4.6rem;
  }
  .page--product .product--header .title-sub {
    font-size: 1.8rem;
  }
  .page--product .information-table [class^=btn-] {
    width: -moz-fit-content;
    width: fit-content;
  }
  .page--product .box-indexlink [class^=btn-] {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .box-indexlink .btn-arrow {
    width: min(48rem, 87.3015873016%);
    text-align: center;
  }
  .page--navi .navi-item {
    padding-block: min(8.5333333333vw, 32px);
    background-image: linear-gradient(to right, #E1E1E1 min(0.2rem, 0.5333333333vw), transparent min(0.2rem, 0.5333333333vw));
    background-position: bottom right;
    background-size: min(0.4rem, 1.0666666667vw) min(0.2rem, 0.5333333333vw);
    background-repeat: repeat-x;
  }
  .page--navi .navi-item:first-of-type {
    padding-top: 0;
  }
  #header {
    transition: all ease-in-out 0.16s;
  }
  #header:has(.global-navi.open) {
    background-color: #005BAC;
    color: #fff;
  }
  #header .global-navi {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    max-height: 100dvh;
    padding: 0 min(3.6rem, 5.6vw);
    overflow-y: auto;
    background-color: #005BAC;
    transition: all ease-in-out 0.16s;
  }
  #header .global-navi.open {
    height: auto;
    padding-block: min(3.6rem, 4.8vw);
  }
  #header .nav-menu .navi-link {
    padding-block: 3.7333333333vw;
    border-bottom: 2px solid #1471C4;
    font-size: min(2.4rem, 4.8vw);
  }
  #header .submenu-item {
    font-weight: 400;
  }
  #header .submenu-title.open + .submenu-item {
    margin-top: 2.6666666667vw;
    gap: 2.6666666667vw;
  }
  #header .btn-primary {
    width: 87.3015873016%;
    margin: 8.5333333333vw auto 0;
    background-color: #fff;
    color: #005BAC;
    font-size: 4.2666666667vw;
  }
  #header .btn-menu {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    margin-right: 3.2vw;
    margin-left: auto;
    gap: 1.3333333333vw;
    border: none;
    border-radius: 0;
    background-color: transparent;
    transition: all ease-in-out 0.16s;
  }
  #header .btn-menu span {
    width: 100%;
    height: 0.8vw;
    background-color: currentColor;
    transition: all ease-in-out 0.16s;
  }
  #header .btn-menu span:nth-child(1), #header .btn-menu span:nth-child(3) {
    transform-origin: left center;
  }
  #header .btn-menu.open span:nth-child(1) {
    transform: translateY(-0.1333333333vw) rotate(45deg);
  }
  #header .btn-menu.open span:nth-child(2) {
    transform: translateX(0.25rem);
    opacity: 0;
  }
  #header .btn-menu.open span:nth-child(3) {
    top: 0;
    transform: translateY(0.2666666667vw) rotate(-45deg);
  }
  #header.scrolled .btn-menu:not(.open) {
    color: #005BAC;
  }
  .footer-contents .contact-area .title {
    text-align: center;
  }
  footer.footer .title {
    width: 10em;
  }
  footer.footer .foonter-link {
    grid-template-rows: repeat(4, auto);
    margin-bottom: 9.6vw;
  }
  footer.footer .foonter-link li {
    padding-block: 4.2666666667vw;
    border-bottom: 2px solid #1471C4;
  }
  footer.footer .social-link {
    margin-bottom: 4.2666666667vw;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child) {
    grid-template-columns: 1fr;
    gap: min(4.2666666667vw, 32px);
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child) > div:has(img) {
    order: 1;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child) > div:not(:has(img)) {
    order: 2;
  }
  .cms-contents .box-grid:has(> :nth-child(2):last-child).business {
    gap: min(7.4666666667vw, 56px);
  }
  .cms-contents .box-grid:has(> :nth-child(3):last-child) {
    grid-template-columns: 1fr;
    gap: min(1.6rem, 4.2666666667vw);
  }
  .cms-contents .box-grid:has(> :nth-child(3):last-child) > div:has(img) {
    order: 1;
  }
  .cms-contents .box-grid:has(> :nth-child(3):last-child) > div:not(:has(img)) {
    order: 2;
  }
  .cms-contents .box-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: 1fr 1fr;
    gap: min(1.8rem, 4.8vw);
  }
  .cms-contents .box-grid:has(> :nth-child(4):last-child) > div:has(img) {
    order: 1;
  }
  .cms-contents .box-grid:has(> :nth-child(4):last-child) > div:not(:has(img)) {
    order: 2;
  }
  .cms-contents .box-grid:has(> :nth-child(n+5)) {
    grid-template-columns: 1fr;
    gap: min(1.6rem, 4.2666666667vw);
  }
  .cms-contents .box-grid:has(> :nth-child(n+5)) > div:has(img) {
    order: 1;
  }
  .cms-contents .box-grid:has(> :nth-child(n+5)) > div:not(:has(img)) {
    order: 2;
  }
  .cms-contents .box-flex.link-box {
    width: 87.3015873016%;
    margin-inline: auto;
  }
  .page--top .company-message {
    background-image: url("../../assets/images/top/bg_message_sp.png");
  }
  .page--contact .info-tel {
    gap: 1rem;
  }
  .page--product .box-indexlink {
    width: 85%;
    margin-inline: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  a:hover, button:hover {
    opacity: 0.8;
  }
  .hover-img:hover img {
    transform: scale(1.05);
  }
}.splide__container{box-sizing:border-box;position:relative}.splide__list{display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important;backface-visibility:hidden}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;display:-ms-flexbox;display:flex;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;margin:0;line-height:1;list-style-type:none;pointer-events:auto}.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{box-sizing:border-box;backface-visibility:hidden;-ms-flex-negative:0;position:relative;flex-shrink:0;margin:0;list-style-type:none!important}.splide__slide img{vertical-align:bottom}.splide__spinner{contain:strict;display:inline-block;position:absolute;top:0;right:0;bottom:0;left:0;width:20px;height:20px;margin:auto;border:2px solid #999;border-radius:50%;border-left-color:transparent;animation:splide-loading 1s linear infinite}.splide__sr{clip:rect(0 0 0 0);position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;border:0}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{z-index:0;position:relative;overflow:hidden}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{z-index:0;margin:0!important;opacity:0}.splide__track--fade>.splide__list>.splide__slide.is-active{z-index:1;opacity:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;display:-ms-flexbox;display:flex;align-items:center;height:2em;border:0;border-radius:50%;background:#ccc;cursor:pointer;-ms-flex-pack:center;z-index:1;position:absolute;top:50%;justify-content:center;width:2em;padding:0;transform:translateY(-50%);opacity:.7}.splide__arrow svg{fill:#000;width:1.2em;height:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{z-index:1;position:absolute;right:0;bottom:.5em;left:0;padding:0 1em}.splide__pagination__page{display:inline-block;position:relative;width:8px;height:8px;margin:3px;padding:0;border:0;border-radius:50%;background:#ccc;opacity:.7;transition:transform .2s linear}.splide__pagination__page.is-active{z-index:1;transform:scale(1.4);background:#fff}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{height:3px;background:#ccc}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{right:1em;left:auto}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{right:auto;left:1em}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{top:auto;bottom:1em}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{display:-ms-flexbox;display:flex;bottom:0;-ms-flex-direction:column;top:0;right:.5em;left:auto;flex-direction:column;padding:1em 0}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}