@charset "UTF-8";
:root {
  --bg-opacity: 1;
}

/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  height: 100%;
  scroll-behavior: smooth;
  letter-spacing: 0.02rem;
  line-height: 1.7;
  font-size: 56.25%;
}

body {
  font-weight: 400;
  font-family: "Local Noto Sans JP", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  color: #000000;
  margin: 0 auto;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-break: strict; /* ←行頭禁則も有効に */
}

main {
  background-color: #ffffff;
  overflow: hidden;
}

a:hover {
  opacity: 0.7;
  transition: all 0.4s;
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

p {
  margin: 2rem 0;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ul:first-child,
ol:first-child,
li:first-child {
  margin-top: 0;
}

ul:last-child,
ol:last-child,
li:last-child {
  margin-bottom: 0;
}

i {
  font-style: italic;
}

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

mark {
  background: linear-gradient(transparent 20%, yellow 0%);
}
.u-sp {
  display: block !important;
}

.u-pc {
  display: none !important;
}

.u-txt-header {
  font-weight: 500;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  font-size: 2rem;
}

.u-txt-footer {
  font-weight: 700;
  line-height: 2;
  color: #ffffff;
  font-size: 1.8rem;
}

.u-btn {
  color: #ffffff;
  padding: 15px 20px;
  background: #004e94;
  border: 2px solid #004e94;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.u-btn:hover {
  background-color: #ffffff;
  color: #004e94;
  opacity: 1;
  border: 2px solid #004e94;
  text-decoration: none;
}

.u-copy-l {
  font-weight: 700;
  color: #ffffff;
  font-size: min(6.6vw, 3.7rem);
  line-height: 1.25;
}

.u-copy-m {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2;
  text-align: center;
}

.u-copy-s {
  line-height: 2;
  text-align: center;
  font-size: 1.6rem;
}
.u-copy-s span {
  display: block;
  color: #004e94;
  font-weight: 700;
}

.u-ttl-h2 {
  position: relative;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 80px;
}
.u-ttl-h2 .u-ttl-h2-bar {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
}
.u-ttl-h2 .u-ttl-h2-bar::before {
  content: "";
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  background: #004e94;
}
.u-ttl-h2 .u-ttl-h2-bar::after {
  content: "";
  position: absolute;
  left: 0%;
  right: 65%;
  top: 0%;
  bottom: 0%;
  background: #d9d9d9;
}

.u-ttl-h2-s {
  font-weight: 700;
  line-height: 2;
  font-size: 2.2rem;
}

.u-ttl-h3 {
  font-weight: 500;
  font-size: 2.4rem;
}

.u-txt-m {
  font-size: 2rem;
}

.u-txt-s {
  font-size: 1.6rem;
}

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

.u-anchor--tel {
  cursor: pointer;
  pointer-events: auto;
  text-decoration: underline;
}
.u-anchor--tel:hover {
  opacity: 0.7;
  transition: all 0.4s;
}

.u-hover-underline:hover {
  opacity: 0.7;
  transition: all 0.4s;
  text-decoration: underline;
}

.u-btn-more-wrap {
  display: flex;
  justify-content: flex-end;
}

.u-btn-more {
  color: #000000;
  text-decoration: none !important;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  width: 196px;
  height: 47px;
  text-align: center;
  display: block;
}

.fv {
  width: 100%;
  height: auto;
  aspect-ratio: 375/435;
  background: #ffffff;
  position: relative;
  margin-bottom: 80px;
  --after-width-sp: 0;
  --after-width-pc: 0;
}
.fv::before {
  content: "";
  display: block;
  width: var(--after-width-sp);
  height: calc(100% + 80px);
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.fv__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  --after-opacity: 0;
  --after-rotate: -5deg;
}
.fv__inner::after {
  content: "";
  background-image: unset;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  height: auto;
  opacity: var(--after-opacity);
  transform: rotate(var(--after-rotate));
}

.fv__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 375/395;
}

.fv__copy {
  position: absolute;
  top: unset;
  bottom: calc(min(6.6vw, 3.7rem) * 1.25 * -1);
  right: 0;
  left: 20px;
  padding: 10px;
  z-index: 10;
  text-align: center;
  background: linear-gradient(270deg, #8abdeb 0%, #004e94 52.4%);
}

.about {
  background: #ffffff;
}

.section__inner {
  width: 100%;
  margin: 0;
  padding: 80px 20px;
}

.service {
  position: relative;
  background-color: #f2f2f2;
  z-index: 0;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/service-bg-sp.svg);
  background-size: auto;
  background-repeat: no-repeat;
  width: 100px;
  height: 1000px;
  z-index: -1;
}
.service::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/service-bg-sp.svg);
  background-size: auto;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  width: 100px;
  height: 1000px;
  z-index: -1;
}

.service__list {
  background-color: #ffffff;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.service__item {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.service__item:nth-of-type(odd) .service__item-inner {
  flex-direction: column !important;
}

.service__item-inner {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.service__item-left,
.service__item-right {
  flex: 1;
}
.service__item-left img,
.service__item-right img {
  width: 100%;
  height: auto;
  max-width: 484px;
}

.works .swiper {
  width: 100%;
  height: auto;
}
.works .swiper-wrapper {
  width: 100%;
  height: auto;
}
.works .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 50px;
}
.works .swiper-button-prev,
.works .swiper-button-next {
  color: #ffffff;
  background-color: #004e94;
  border-radius: 50%;
}
.works .swiper-button-prev {
  left: 14px;
}
.works .swiper-button-prev svg {
  width: 40%;
  height: 40%;
}
.works .swiper-button-next {
  right: 14px;
}
.works .swiper-button-next svg {
  width: 40%;
  height: 40%;
}
.works .swiper-pagination-bullet-active {
  background: #004e94;
}

.works__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.works__list a {
  text-decoration: none;
}

.works__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border: 1px solid #a1a1a1;
  padding: 16px;
}

.works__item-img {
  aspect-ratio: 227/151;
  overflow: hidden;
  border: 1px solid #a1a1a1;
}
.works__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.works__item-txt {
  margin-top: 0;
  text-align: center;
  color: #000000;
}

.works .u-btn-more-wrap {
  margin-top: 20px;
}

.news__list-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.news__list {
  padding: 0 0 20px;
}

.news__item {
  list-style: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #a1a1a1;
}
.news__item + .news__item {
  margin-top: 20px;
}

.news__item-img {
  display: none;
}

.news__item-cat {
  border: 1px solid #616161;
  border-radius: 4px;
  padding: 6px 10px;
  display: inline-block;
  margin: 0;
}

.news__item-link {
  color: #000000;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  align-items: center;
  position: relative;
}
.news__item-link p {
  display: none;
}
.news__item-link::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

/*!
* The MIT License (MIT)
* Copyright (c) 2020 Tobias Ahlin
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* loader */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004e94;
  z-index: 2000;
  display: grid;
  place-items: center;
  pointer-events: none;
}

#loader.loaded {
  animation: fadeOut 1.5s forwards;
}

.spinner {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

#loader.loaded .spinner {
  animation: none;
  transform: none;
  transition: unset;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.header {
  background: #ffffff;
  position: relative;
  width: 100%;
  height: 60px;
}
.header.active {
  position: fixed;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  margin: 0 auto;
}

.header__logo {
  width: 250px;
  height: auto;
  z-index: 1000;
}
.header__logo .header__logo-item {
  margin: 0;
  line-height: 0;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: none;
}

.header__menu {
  width: 40px;
  height: 40px;
  padding: 10px;
  line-height: 0;
  z-index: 1000;
}

/*=============================
.header__menu--btn
=============================*/
.header__menu--btn {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.header__menu--btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  border-radius: 1px;
}

.header__menu--btn,
.header__menu--btn span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.header__menu--btn span:nth-of-type(1) {
  top: 2px;
}

.header__menu--btn span:nth-of-type(2) {
  top: 10px;
}

.header__menu--btn span:nth-of-type(3) {
  bottom: 0;
}

#menu_btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

#menu_btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

.header__menu-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  align-items: center;
}

#navArea {
  display: none;
}
#navArea.active {
  display: flex;
}

.header__menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 335px;
  height: 300px;
  margin: 0 auto;
  padding: 0;
}

.contact {
  background: right/100% auto no-repeat url(../images/nest.png), radial-gradient(50% 50% at 50% 50%, #e5edf4 0%, #cfdde9 60%, #a9c0d5 100%);
  padding: 100px 20px;
}

.contact__inner {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__ttl.u-ttl-h2 {
  margin-bottom: 0;
}

.contact__btn {
  margin: 0 auto;
  width: 200px;
  height: 80px;
}

.footer {
  position: relative;
  background: #004e94;
  width: 100%;
}

.footer__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1540px;
  padding: 10px 20px;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  gap: 40px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list-item--name a {
  text-decoration: none;
}
.footer__list-item--name a:hover {
  color: #ffffff;
}

.footer__sns {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer__sns a {
  display: block;
}
.footer__sns i {
  color: #ffffff;
  font-size: 43px;
}

.footer__copyright {
  margin-top: 40px;
}
.footer__copyright p {
  text-align: center;
}

.footer__link {
  text-align: center;
}
.footer__link:hover {
  color: #ffffff;
}

#page-top__btn {
  position: fixed;
  z-index: 900;
  padding: 0;
  margin: 0;
  transition: 1s;
  cursor: pointer;
  bottom: 100px;
  right: 40px;
  background-color: unset;
  border: none;
  opacity: 0;
  pointer-events: none;
}
#page-top__btn:hover {
  opacity: 0.7;
}
#page-top__btn img {
  width: 60px;
  height: 60px;
}

#page-top__btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

#page-top__btn.is-absolute {
  position: absolute;
  bottom: unset;
  right: 40px;
  top: -80px;
}

@media all and (min-width: 769px){
  html {
    font-size: 62.5%;
  }
  .u-sp {
    display: none !important;
  }
  .u-pc {
    display: block !important;
  }
  .u-txt-header {
    font-size: 1.6rem;
  }
  .u-txt-footer {
    font-size: 2rem;
  }
  .u-copy-l {
    font-size: 3.7rem;
  }
  .u-ttl-h2 {
    font-size: 4.8rem;
    margin: 0 0 7.1377587438vw;
  }
  .u-ttl-h2 .u-ttl-h2-bar {
    width: 200px;
  }
  .u-flex-reverse {
    flex-direction: row-reverse !important;
  }
  .u-anchor--tel {
    cursor: default;
    pointer-events: none;
    transition: all 0.4s;
    text-decoration: none;
  }
  .fv {
    background: linear-gradient(180deg, #ffffff 0%, #004e94 81.5%);
    aspect-ratio: 1920/800;
    margin-bottom: 0;
  }
  .fv::before {
    width: var(--after-width-pc);
    height: 100%;
  }
  .fv__inner::after {
    background-image: url(../images/nest.png);
    width: 41%;
    aspect-ratio: 794/1341;
  }
  .fv__image {
    width: 81.25%;
    height: auto;
    aspect-ratio: 1560/700;
  }
  .fv__copy {
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.7), 0 0 8px rgba(0, 0, 0, 0.5);
    top: 43.4%;
    bottom: unset;
    right: 8%;
    left: unset;
    padding: 0;
    background: unset;
  }
  .section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7.1377587438vw 20px;
  }
  .service::before {
    background-image: url(../images/service-bg-pc.svg);
    width: 34.4753747323vw;
    height: 85.6531049251vw;
  }
  .service::after {
    background-image: url(../images/service-bg-pc.svg);
    width: 34.4753747323vw;
    height: 85.6531049251vw;
  }
  .service__list {
    padding: 20px;
    width: 85.6531049251vw;
  }
  .service__item:nth-of-type(odd) .service__item-inner {
    flex-direction: row-reverse !important;
  }
  .service__item-inner {
    width: 72.6623840114vw;
    height: auto;
    flex-direction: row;
    gap: 3.5688793719vw;
  }
  .news__list-wrap {
    padding: 0 20px;
    width: 57.10206995vw;
    padding: 0;
  }
  .news__list {
    padding: 0 0 50px;
  }
  .header {
    height: 80px;
  }
  .header__inner {
    padding: 17px auto;
  }
  .header__nav {
    display: block;
    width: 440px;
  }
  .header__nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
  }
  .header__menu {
    display: none;
  }
  .header__menu-nav {
    display: none;
  }
  #navArea.active {
    display: none;
  }
  .contact {
    background: right/50% auto no-repeat url(../images/nest.png), radial-gradient(50% 50% at 50% 50%, #e5edf4 0%, #cfdde9 55%, #a9c0d5 100%);
    padding: 7.1377587438vw 0;
  }
  .contact__inner {
    width: 85.6531049251vw;
    margin: 0 auto;
    padding: 2.8551034975vw 0;
  }
  .contact__btn {
    width: 24.9821556031vw;
    height: 7.1377587438vw;
  }
  .footer__content {
    align-items: flex-end;
    flex-direction: row;
    gap: 0;
  }
  .footer__sns i {
    font-size: 3.0692362598vw;
  }
  .footer__copyright {
    margin-top: 0;
  }
  #page-top__btn {
    right: 100px;
  }
  #page-top__btn img {
    width: 5.710206995vw;
    height: 5.710206995vw;
  }
  #page-top__btn.is-absolute {
    right: 100px;
    top: -100px;
  }
}

@media all and (min-width: 1401px){
  body {
    max-width: 1920px;
  }
  .u-txt-header {
    font-size: 2rem;
  }
  .u-ttl-h2 {
    margin: 0 0 100px;
  }
  .section__inner {
    margin: 0 auto;
    padding: 100px 0;
  }
  .service::before {
    width: 483px;
    height: 1200px;
  }
  .service::after {
    width: 483px;
    height: 1200px;
  }
  .service__list {
    width: 1200px;
  }
  .service__item-inner {
    width: 1018px;
    height: 350px;
    gap: 50px;
  }
  .news__list-wrap {
    width: 800px;
  }
  .header__inner {
    max-width: 1540px;
    width: 100%;
  }
  .header__logo {
    width: 354px;
  }
  .contact {
    padding: 100px 0;
  }
  .contact__inner {
    width: 1200px;
    padding: 40px 0;
  }
  .contact__btn {
    width: 350px;
    height: 100px;
  }
  .footer__sns i {
    font-size: 43px;
  }
  #page-top__btn {
    right: calc(50% - 600px);
  }
  #page-top__btn img {
    width: 80px;
    height: 80px;
  }
  #page-top__btn.is-absolute {
    right: calc(50% - 600px);
  }
}

@media print{
  .header__menu {
    display: none;
  }
  .fade-up-el__t,
  .fade-left-el__t,
  .fade-right-el__t {
    translate: none !important;
    rotate: none !important;
    scale: none !important;
    opacity: 1 !important;
    visibility: inherit !important;
    transform: translate(0px, 0px) !important;
  }
  #fv-img,
  #fv-copy {
    opacity: 1;
  }
  .fv {
    --after-width: 18.75%;
  }
  .fv__inner {
    --after-opacity: 1;
    --after-rotate: 0deg;
  }
  .swiper .swiper-wrapper {
    justify-content: center;
    transform: none !important;
  }
  .swiper .swiper-slide {
    display: block;
  }
}/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.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 {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.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 {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

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

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

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