@charset "UTF-8";

/* ===============================
   Fonts
   =============================== */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans JP Regular"), url("/2024renew_assets/fonts/NotoSansJP-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500; /* 中太が無い場合はRegularを割当て（実体は同一） */
  src: local("Noto Sans JP Medium"), url("/2024renew_assets/fonts/NotoSansJP-Regular.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans JP Bold"), url("/2024renew_assets/fonts/NotoSansJP-Bold.otf") format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto Regular"), url("/2024renew_assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), url("/2024renew_assets/fonts/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), url("/2024renew_assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}

/* ===============================
   Base / Reset
   =============================== */
:root {
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Roboto", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo UI", Meiryo, "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.red {
  color: #e60000;
}

/* アンカーリンクずれ防止 */
:target {
  scroll-margin-top: 50px;
}

section,
div {
  scroll-margin-top: 50px;
}

/* 表示切替（モバイル） */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
/* 表示切替（PC） */
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
  body {
    background: #fff url("/company/lp/globalpoint/lp01/img/bg.png") center / cover fixed no-repeat !important; /* PC専用背景 */
  }
  a:hover {
    opacity: 0.7;
  }
}

/* 共通余白 */
section {
  padding: 40px 0;
}

/* 内容ラッパー */
.content-wrapper {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(120%) blur(0.5px);
  box-shadow: var(--shadow);
}
@media screen and (max-width: 768px) {
  .content-wrapper {
    width: 100%;
    overflow-x: hidden;
  }
}

/* アクセシビリティ: 非表示・フォーカス */
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 2px solid #2684ff;
  outline-offset: 2px;
}

/* ===============================
   キラッ演出
   =============================== */
.flash {
  position: relative;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
  border-radius: 40px;
}
.flash::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 60%;
  height: 200%;
  transform: rotate(20deg);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.65) 35%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0) 100%);
  filter: blur(0.5px);
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
}
@keyframes shine {
  0% {
    left: -150%;
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  40% {
    left: 150%;
    opacity: 1;
  }
  41% {
    opacity: 0;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flash::after {
    animation: none;
  }
}

/* ===============================
   アコーディオン（JS連携）
   =============================== */
.acc-item {
  overflow: hidden;
}

.acc-btn {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background-color: #ffffff;
  color: #333333;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  text-align: left;
}

.acc-title {
  flex: 1 1 auto;
  min-width: 0;
}

/* 高さトランジションはJSがheight値を制御 */
.acc-panel {
  background-color: #ffffff;
  height: auto;
  overflow: hidden;
  opacity: 1;
  transition: height 0.36s var(--ease-soft), opacity 0.28s ease;
}

.acc-icon {
  position: relative;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #e60000;
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #e60000;
}
.acc-icon::before {
  width: 60%;
  height: 2px;
}
.acc-icon::after {
  width: 2px;
  height: 60%;
  transition: opacity 0.2s ease;
}
.acc-btn[aria-expanded="true"] .acc-icon::after {
  opacity: 0;
}

/* 続きを読む */
.chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #e60000;
  border-bottom: 2px solid #e60000;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-left: 8px;
}
.readmore-btn[aria-expanded="true"] .chevron {
  transform: rotate(-135deg);
}

/* ===============================
   サイドウィング（PCのみ）
   =============================== */
@media (min-width: 769px) {
  .wing {
    position: fixed;
    top: 50%;
    z-index: 800;
    transform: translateY(-50%);
    display: block;
  }
  .wing-left {
    left: calc(50% - 250px - (100vw - 500px - 360px * 2) / 4);
    transform: translate(-100%, -50%);
    width: 360px;
  }
  .wing-left .cta-wrap {
    margin-top: 40px;
    padding: 0;
    text-align: center;
  }
  .wing-left .cta-btn {
    width: 300px;
    height: 94px;
    margin: 0 auto;
  }

  .wing-right {
    left: calc(50% + 250px + (100vw - 500px - 360px * 2) / 4);
    width: 360px;
  }

  .anchor-list {
    list-style: none;
    margin: 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    border-radius: 20px;
    border: 3px solid #e60000;
    background-color: #ffffff;
    box-shadow: var(--shadow);
  }
  .anchor-list a {
    display: block;
  }
  .anchor-list a:hover {
    background-color: #ffffff;
    transform: translateX(2px);
  }
}
/* 横1280px以下はwingを非表示対応 */
/* 高さ550px以下はwingを非表示対応 */
@media (max-width: 1280px), (max-height: 650px) {
  .wing {
    display: none;
  }
}

/* ===============================
   モーダル
   =============================== */
.modal-trigger {
  display: block;
  width: 100%;
  max-width: 335px;
  margin: 0 auto;
  height: auto;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}
.modal-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.open {
  display: flex;
}
.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(1.5px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 1000px;
  max-width: 92vw;
  max-height: 90vh;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-content ul.note li {
  padding-left: 1.4rem;
  font-size: 1.4rem;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  border: none;
  background-color: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #333333;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}

.modal-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1;
}
.modal-body {
  padding: 80px 40px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* モーダル開時のスクロールロック */
body.modal-open {
  overflow: hidden;
  touch-action: none;
}

/* モーダル内のUI */
.modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal-heading-pop {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #e60000;
  padding-top: 20px;
}
.modal-heading-rd {
  background-color: #e60000;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}
.modal-heading-gr {
  background-color: #5a5a5a;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-height: 90vh;
  }
  .modal-body {
    padding: 40px 20px 20px;
  }
  .modal-heading-rd,
  .modal-heading-gr {
    font-size: 1.6rem;
  }
  .modal-close {
    top: 10px;
    right: 10px;
  }
}
/* 表組 */
.responsive-table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table th,
.responsive-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}
.responsive-table th {
  width: 240px;
  background-color: #eeeeee;
}
@media screen and (max-width: 768px) {
  .responsive-table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table th,
  .responsive-table td {
    display: block;
    width: 100%;
  }
  .responsive-table tbody {
    border-bottom: 1px solid #ccc;
  }
  .responsive-table td {
    border-top: none;
    border-bottom: none;
  }
  .responsive-table .sp-scroll {
    margin: 16px auto;
    padding-bottom: 16px;
    overflow-x: auto;
    position: relative;
  }
  .responsive-table .sp-scroll::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url("/2024renew_assets/imgs/common/icon_scroll_hint.png");
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  .responsive-table .sp-scroll img {
    max-width: none;
  }
}

/* ===============================
   横スクロール（ドラッグ対応の見た目）
   JSは .js-scrollable をターゲット
   =============================== */
.scroll-container {
  width: 100%;
  overflow: hidden;
}
.js-scrollable,
.scroll-body {
  /* 互換のため両方対応 */
  overflow-x: auto;
  display: flex;
  gap: 10px;
  padding-bottom: 10px; /* スクロールバーのスペース */
  scrollbar-width: auto; /* Firefox用 */
  scrollbar-color: #e60000 #ddd; /* Firefox用 */
}
/* スクロールバー全体 */
.js-scrollable::-webkit-scrollbar,
.scroll-body::-webkit-scrollbar {
  width: 12px; /* 縦スクロールバーの幅 */
  height: 12px; /* 横スクロールバーの高さ */
}
/* スクロールバーのつまみ（ドラッグ可能な部分） */
.js-scrollable::-webkit-scrollbar-thumb,
.scroll-body::-webkit-scrollbar-thumb {
  background-color: #e60000;
  border-radius: 6px;
  background-clip: content-box;
}

/* スクロールトラック（つまみの背後部分） */
.js-scrollable::-webkit-scrollbar-track,
.scroll-body::-webkit-scrollbar-track {
  background-color: #ddd;
  border-radius: 6px;
}
.scroll-item {
  width: 200px;
  font-size: 1.4rem;
  background-color: #ffffff;
  border-radius: 16px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 16px;
  justify-content: flex-start;
  align-items: center;
  user-select: none; /* ドラッグ時のテキスト選択防止 */
}
.scroll-item .number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #e60000;
}
.scroll-item p.label {
  font-size: 2rem;
  font-weight: 700;
}

/* ===============================
   注記
   =============================== */
ul.note {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
ul.note li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 1.2rem;
}
ul.note li::before {
  content: "※";
  position: absolute;
  left: 0;
}
ul.note a {
  color: #0000ff;
  text-decoration: underline;
}

/* ===============================
   個別レイアウト調整
   =============================== */
h2 img,
h3 img,
h4 img {
  width: 100%;
}

.fs-s {
  font-size: 1.4rem;
}

/* .cta-btn-wrap */
.cta-btn-wrap {
  width: 400px;
}
.cta-btn-wrap .cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-btn-wrap .cta-btn .pop {
  margin-bottom: -15px;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .cta-btn-wrap {
    width: calc(335 * (100vw / 375));
  }
}

/* #btm-fixed */
@media screen and (max-width: 768px) {
  #btm-fixed {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.3);
    padding: calc(10 * (100vw / 375)) 0;
    display: flex;
    justify-content: center;
  }
  #btm-fixed.visible {
    opacity: 1;
    pointer-events: auto;
  }
  #btm-fixed .cta-btn-wrap {
    width: calc(300 * (100vw / 375));
    margin: 0 auto;
  }
}

/* #hero */
#hero {
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 525;
  background: url("../img/kv.png");
  background-size: contain;
  position: relative;
  margin-top: 53px;
}
#hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}
#hero .cta-btn-wrap {
  position: absolute;
  left: 50px;
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  #hero .cta-btn-wrap {
    left: calc(20 * (100vw / 375));
    bottom: calc(20 * (100vw / 375));
  }
}

/* #campaign */
#campaign {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#campaign .campaign-title {
  font-weight: 700;
  text-align: center;
}

/* #debut */
#debut {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0;
  background-color: #f4f4f4;
  border-radius: 0 40px 0 0;
}
#debut .debut-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#debut .debut-block .debut-cnt {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  padding: 40px 16px;
  margin-top: -20px;
}
#acc-debut-1 .debut-cnt,
#acc-debut-3 .debut-cnt {
  margin-left: 20px;
}
#acc-debut-2 .debut-cnt {
  margin-right: 20px;
}

#debut .readmore-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 15px;
  border: 2px solid #e60000;
  background-color: #ffffff;
  color: #e60000;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
}
#debut .readmore-label {
  flex: 1 1 auto;
}
#debut .acc-debut .strong {
  font-weight: 700;
}
#debut .acc-debut .more {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* #reco */
#reco {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 80px 0;
  background-color: #e60000;
  border-radius: 40px 0 0 0;
  margin-top: -40px;
}
#reco .icon {
  width: 60px;
  height: 60px;
}
#reco .theme-reco {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: #ffffff;
  padding: 2px 0;
}
#reco .theme-reco .acc-title {
  font-weight: 700;
  font-size: 2rem;
}
#reco .theme-reco .acc-btn {
  background-color: #e60000;
  color: #ffffff;
}
#reco .theme-reco .acc-panel {
  background-color: #ffffff;
  padding: 40px 16px;
}
#reco .theme-reco .acc-icon {
  border: 2px solid #ffffff;
}
#reco .theme-reco .acc-icon::before,
#reco .theme-reco .acc-icon::after {
  background-color: #ffffff;
}

/* #merit */
#merit {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0;
  background-color: #f4f4f4;
  border-radius: 0 40px 0 0;
  margin-top: -40px;
}
#merit .merit-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#merit .merit-block .merit-cnt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 16px;
}
#merit .merit-anchor {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}
#merit .merit-anchor .merit-anchor-item {
  box-shadow: var(--shadow);
  padding: 16px;
  border-radius: 16px;
}
#merit .merit-anchor .merit-anchor-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-decoration: none !important;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
#merit .merit-anchor .merit-anchor-item .small {
  font-size: 1.5rem !important;
}
#merit .merit-anchor .merit-anchor-item .ex {
  color: #5a5a5a;
  font-size: 1.2rem;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  #merit .merit-anchor .merit-anchor-item a {
    text-align: left;
  }
}

/* #point */
#point .theme-point .acc-title {
  font-weight: 700;
}
#point .theme-point .acc-panel {
  background-color: #ffffff;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#point .theme-point .acc-panel .label {
  font-weight: 700;
  background-color: #eeeeee;
  padding: 10px 0;
  text-align: center;
}
#point .theme-point .acc-panel .copy {
  font-weight: 700;
  color: #e60000;
  text-align: center;
  font-size: 2.4rem;
}
#point .theme-point .acc-panel p {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  #point .theme-point .acc-panel .label {
    font-size: 1.4rem;
  }
  #point .theme-point .acc-panel .copy {
    font-size: 2rem;
  }
}

/* #company */
#company {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 80px 0 40px;
  background-color: #e60000;
  border-radius: 40px 0 0 0;
  margin-top: -40px;
}
#company .company-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#company .company-block .company-cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  margin: 0 20px;
  border-radius: 20px;
  background-color: #ffffff;
}

/* #security */
#security {
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}
#security .lead {
  padding: 0 16px;
}
#security .icon {
  width: 60px;
  height: 60px;
}
#security .theme-security.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color: #ffffff;
  padding: 2px 0;
}
#security .theme-security .acc-title {
  font-weight: 700;
  font-size: 1.6rem;
}
#security .theme-security .acc-btn {
  background-color: #f4f4f4;
  color: #333333;
}
#security .theme-security .acc-panel {
  background-color: #ffffff;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* #debut */
#debut .debut-cnt {
  background-color: #ffffff;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#debut .debut-cnt.center {
  align-items: center !important;
}

/* #step */
#step {
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}
#step .scroll-container,
#step .note {
  padding: 0 16px;
}
#step .scroll-item p {
  text-align: center;
}

/* .footer */
.footer {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
}
.footer-top {
  background-color: #5a5a5a;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-top h2 {
  font-size: 1.6rem;
}
.footer-top ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-top ul.dotted {
  gap: 0;
}
.footer-top ul.dotted li {
  position: relative;
  padding-left: 1.4rem;
}
.footer-top ul.dotted li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.footer-top a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-btm {
  background-color: #333333;
  font-size: 1rem;
  text-align: center;
  padding: 16px;
}

@media screen and (max-width: 768px) {
  .footer {
    margin-bottom: calc(115 * (100vw / 375));
  }
}

/* .page-top */
.page-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 56px;
  height: 56px;
  background-color: #000000;
  background-image: url("/2024renew_assets/imgs/common/icon_arrow_wh_01.svg");
  background-size: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  border-radius: 8px;
  border: none;
  display: none;
  z-index: 100;
  opacity: 0.25;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 40px;
    height: 40px;
    bottom: 125px;
    right: 10px;
    background-size: 14px;
  }
}
.page-top:hover {
  cursor: pointer;
}

/* .swiper */
.swiper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 40px;
  overflow: hidden;
  position: relative;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}

.swiper-pagination-bullet {
  background: #e60000;
}
