@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("inview.css");
:root {
  --primary-color: #333;
  --primary-inverse-color: #fff;

  --space-large: 7.5vw;
  --space-small: 2vw;
}
@keyframes opa1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body * {
  box-sizing: border-box;
}

html,
body {
  font-size: 13px;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  html,
  body {
    font-size: 14px;
  }
}
@media screen and (min-width: 1600px) {
  html,
  body {
    font-size: 1vw;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-text-size-adjust: none;
  background: #fff;
  color: var(--primary-color);
  line-height: 2;
}
figure {
  margin: 0;
}
dd {
  margin: 0;
}
nav ul {
  list-style: none;
}
nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}
section li {
  margin-left: 1rem;
}

section p {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  section p {
    font-size: 15px;
    text-align: left;
  }
}
table {
  border-collapse: collapse;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
video {
  max-width: 100%;
}
iframe {
  width: 100%;
}
input {
  font-size: 1rem;
}
section {
  overflow-x: hidden;
  padding: var(--space-large);
}
a {
  color: inherit;
  transition: 0.3s;
}
a:hover {
  text-decoration: none;
  opacity: 0.9;
}
#container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

body:not(.home) header {
  margin-bottom: var(--space-large);
}
#logo img {
  display: block;
}
#logo {
  margin: 0;
  padding: 0;
  width: 18vw;
  max-width: 250px;
  position: relative;
  z-index: 1;
  left: 3vw;
  top: 0vw;
}
@media screen and (max-width: 500px) {
  #logo {
    top: 0;
    width: 200px;
  }
}
header nav ul {
  display: none;
}
@media screen and (min-width: 900px) {
  header > nav > ul {
    margin-right: 10vw;
    display: flex;
  }
  header nav li a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
  header nav i {
    padding-right: 0.5rem;
  }
}
header nav ul ul,
.small-screen #menubar ul ul {
  animation: opa1 0.5s 0.1s both;
}
header nav ul ul {
  position: absolute;
  z-index: 100;
}
header nav ul ul a {
  background: rgba(255, 255, 255, 0.8);
  padding: 0.3em 1em;
  margin-top: 4px;
  border: 1px solid var(--primary-color);
}
#menubar {
  display: none;
}
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#menubar a {
  display: block;
  text-decoration: none;
}
.large-screen #menubar {
  display: block;
}
.small-screen #menubar.display-block {
  display: block;
}
#menubar_hdr.display-none {
  display: none;
}
.ddmenu_parent ul {
  display: none;
}
a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: bold;
  margin-right: 0.5em;
}
@keyframes animation1 {
  0% {
    right: -100vw;
  }
  100% {
    right: 0px;
  }
}
.small-screen #menubar.display-block {
  position: fixed;
  overflow: auto;
  z-index: 100;
  right: 0px;
  top: 0px;
  max-width: 800px;
  height: 100%;
  padding: 90px 10vw 50px;
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  animation: animation1 0.2s both;
}
.small-screen #menubar ul ul {
  margin: 2rem;
}
.small-screen #menubar nav ul li {
  border: 1px solid #fff;
  margin: 1rem 0;
  border-radius: 5px;
}
.small-screen #menubar a {
  color: inherit;
  padding: 1rem 2rem;
}
#menubar_hdr {
  animation: opa1 0.3s 0.5s both;
  position: fixed;
  z-index: 101;
  cursor: pointer;
  top: 0;
  right: calc(var(--space-small) + 5px);
  width: 60px;
  height: 60px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s;
  mix-blend-mode: exclusion;
}
#menubar_hdr.ham {
  mix-blend-mode: normal;
}
#menubar_hdr div span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  position: absolute;
}
#menubar_hdr div {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {
  top: 0;
}
#menubar_hdr div span:nth-child(2) {
  bottom: 0;
}
#menubar_hdr.ham div span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#menubar_hdr.ham div span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
#btn-special {
  padding: 0;
  margin: 0;
}
#btn-special a {
  display: block;
  text-decoration: none;
  position: fixed;
  z-index: 100;
  right: 0px;
  top: 12.5vw;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: linear-gradient(#ec9347, #d36b12);
  color: #f6ebd2;
  padding: 2rem 1rem;
  border-radius: 3px 0px 0px 3px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px) {
  #btn-special a {
    top: 80vw;
  }
}
#btn-special i {
  padding-bottom: 1rem;
}
main {
  flex: 1 0 auto;
  overflow-x: hidden;
  padding: 6vw 0 0;
}
main h2 {
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 5vw;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}
main h2.c {
  align-items: center;
}
main h2 span.sub-text {
  display: inline-block;
  border-top: 1px solid var(--primary-color);
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 0.1rem;
  padding-top: 2rem;
}
main .sub-bottom-text {
  display: inline-block;
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 0.1rem;
  padding-top: 0rem;
  font-weight: 600;
}
main h2.no-line span.sub-text {
  border: none;
  padding-top: 0;
}
main h3 {
  font-weight: 600;
  font-size: 1.4rem;
}
.iframe-box {
  width: 100%;
  height: 0;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}
.iframe-box iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer small {
  font-size: 100%;
}

footer {
  background: #fff;
  color: #111;
  font-size: 0.85rem;
  padding: 5vw;
}

@media screen and (max-width: 599px) {
  footer {
    margin: auto;
  }
}
@media screen and (min-width: 600px) {
  footer {
    display: flex;
    justify-content: space-between;
  }
}
footer .image {
  width: 200px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  footer .image {
    width: auto;
  }
  footer .image img {
    width: 80px;
  }
}
footer .logo {
  opacity: 0.5;
}
@media screen and (min-width: 600px) {
  footer .text {
    display: flex;
    gap: 5rem;
  }
}
footer h4 {
  font-weight: 600;
  font-size: 1.1rem;
}
footer .footer-logo {
  width: 10vw;
}
@media screen and (max-width: 599px) {
  footer .footer-logo {
    width: 30vw;
  }
}
.pr a {
  text-decoration: none;
  display: block;
  background: rgba(0, 0, 0, 0.9);
  text-align: right;
  padding: 0.5rem 1rem;
  color: #ccc;
}
.pr a::before {
  font-family: "Font Awesome 6 Free";
  content: "\e2ca";
  font-weight: bold;
  margin-right: 0.5em;
}
.icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-self: center;
  gap: 1rem;
}
.icons i {
  font-size: 30px;
}
.list-c2 > a {
  text-decoration: none;
  display: block;
}
@media screen and (min-width: 600px) {
  .list-c2 {
    display: flex;
  }
}
.list-c2 .list {
  text-align: center;
  position: relative;
  overflow-y: hidden;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
  padding: 5rem 2rem;
  margin: 1rem 0;
}
@media screen and (min-width: 600px) {
  .list-c2 > * {
    flex: 1;
  }
  .list-c2 .list {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .list-c2 > a .list {
    height: 100%;
  }
}
.list-c2 .list.image1 {
  background: url("../images/sample4.jpg") no-repeat center center / cover;
}
.list-c2 .list.image2 {
  background: url("../images/sample5.jpg") no-repeat center center / cover;
}
.list-c2 h4 {
  font-weight: 200;
  line-height: 1.2;
}
.list-c2 h4 .main-text {
  display: block;
  font-size: 3rem;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 600px) {
  .list-c2 h4 .main-text {
    font-size: 4rem;
  }
}
.list-c2 h4 .sub-text {
  position: relative;
  padding: 0 5rem;
}
.sub-text::before {
  left: 0;
}
.sub-text::after {
  right: 0;
}
.list-c2 h4 .sub-text::before,
.list-c2 h4 .sub-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  border-top: 1px solid #fff;
}
.list-c2 .list .text {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
}
.list-c2 .list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  transition: transform 0.3s 0.1s;
}
.list-c2 .list:hover::before {
  transform: translateY(100%);
}
.list-c2 .list .btn2 a {
  background: rgba(0, 0, 0, 0.7);
}
.list-c2 .list .btn1 a {
  text-shadow: none;
}
.new {
  display: grid;
  grid-template-columns: auto 1fr;
  max-width: 700px;
  margin: 0 auto;
}
.new dt,
.new dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.new dt {
  padding-right: 4rem;
}
.faq {
  background: #5e5c5a;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 600px) {
  .faq {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.faq h2 {
  margin: 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.4em;
}
@media screen and (min-width: 600px) {
  .faq h2 {
    writing-mode: vertical-lr;
    margin-right: 18vw;
  }
}
.faq h2 .kazari {
  line-height: 1;
  font-size: 0.9rem;
}
@media screen and (min-width: 600px) {
  .faq h2 .kazari {
    font-size: 20vw;
    position: absolute;
    right: 0px;
    top: var(--space-large);
    color: rgba(255, 255, 255, 0.05);
  }
}
.faq dt {
  font-size: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0 1rem 0;
}
@media screen and (min-width: 600px) {
  .faq dt {
    padding: 2rem 2rem 1rem 2rem;
  }
}
.faq dd {
  padding: 0 0 2rem 0;
  font-size: 0.9rem;
}
@media screen and (min-width: 600px) {
  .faq dd {
    padding: 0 2rem 2rem 2rem;
  }
}
@media screen and (min-width: 600px) {
  .faq .text {
    width: 50%;
  }
}
.list-yoko-scroll * {
  margin: 0;
  padding: 0;
}
.list-yoko-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  margin-right: calc(-1 * var(--space-large));
  padding-bottom: 3vw;
}
.list-yoko-scroll::-webkit-scrollbar {
  display: none;
}
.list-yoko-scroll .list {
  width: 60%;
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .list-yoko-scroll .list {
    width: 28%;
    padding: 2rem;
  }
}
.list-yoko-scroll .list .text {
  flex: 1;
}
.list-yoko-scroll .list::before,
.list-yoko-scroll .list::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 10px;
  border: 0.5px solid var(--primary-color);
}
.list-yoko-scroll .list::before {
  left: 0px;
  top: 0px;
  border-right: none;
  border-bottom: none;
}
.list-yoko-scroll .list::after {
  right: 0px;
  bottom: 0px;
  border-top: none;
  border-left: none;
}
.list-yoko-scroll h4 {
  margin-bottom: 1rem;
}
.list-yoko-scroll p {
  font-size: 0.9rem;
}
.list-yoko-scroll .name {
  text-align: right;
}
.list-yoko-scroll .name img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin-left: 20px;
}
.box1 {
  overflow-x: visible;
  position: relative;
  background: #e8eaee;
  padding: var(--space-large);
  margin-top: 10vw;
}
.box1 a {
  color: inherit;
}
.box1 .deco-text {
  position: absolute;
  right: 0;
  top: -13.5vw;
  color: #e8eaee;
  font-size: 7vw;
  line-height: 1;
}
.box1 .illust1 {
  position: absolute;
  right: 20vw;
  top: 9vw;
  width: 23vw;
  opacity: 0.2;
}
.box1 .illust2 {
  position: absolute;
  right: 4vw;
  top: 2vw;
  width: 13vw;
  opacity: 0.2;
}
.box1 .text {
  margin-bottom: 5rem;
}
@media screen and (min-width: 600px) {
  .box1 {
    display: flex;
    gap: 5vw;
    border-radius: 0 20vw 0 0;
  }

  .box1 > * {
    flex: 1;
  }
  .box1 .illust1 {
    rignt: auto;
    left: 3vw;
    top: -4vw;
    width: 8vw;
  }
  .box1 .illust2 {
    rignt: auto;
    left: 14vw;
    top: -8vw;
    width: 5vw;
  }
  .box1 h2 img {
    width: 5vw;
  }

  .box1 .text {
    margin-bottom: 0;
  }
}
.box1 .image {
  position: relative;
}

@media screen and (max-width: 599px) {
  .package-img {
    margin-left: 30px;
    margin-top: 50px;
  }
}
.box1 .image img {
  border-radius: 10px;
}
.box1 .image img:nth-of-type(1) {
  width: 80%;
}
.box1 .image img:nth-of-type(2) {
  width: 40%;
}
.box1 .image img:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 15vw;
}

.value-box {
  text-align: center;
  padding-top: 0px;
  padding-bottom: 0px;
}
.value-box p {
  font-size: 140% !important;
}
@media screen and (max-width: 599px) {
  .value-box p {
    text-align: left;
    font-size: 125%;
  }
}
.mt-center {
  text-align: center;
  margin: auto;
}

.package-bg {
  background: url("../images/bg_lypo-c.jpg") no-repeat center center / cover;
  border-radius: 10px;
}
.list1.image1 {
  background: url("../images/bg_informed-sports.jpg") no-repeat center center / cover;
  border-radius: ;
}
.list1.image2 {
  background: url("../images/bg-partner.jpg") no-repeat center center / cover;
}
.list1.image3 {
  background: url("../images/3.jpg") no-repeat center center / cover;
}
.list1.image4 {
  background: url("../images/4.jpg") no-repeat center center / cover;
}
.list1 {
  padding: var(--space-large);
  position: relative;
  overflow-x: hidden;
  margin-bottom: 1vw;
}
.list1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: transform 0.5s 0.1s;
}
.list1:hover::before {
}
.list1 .text {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: auto;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .list1 .text {
    width: 100%;
  }
}
.list1 .text.reverse {
  margin-left: auto;
  text-align: center;
}
.list1 h3 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}

@media screen and (max-width: 599px) {
  .list1 h3 {
    font-size: 1.65rem;
    margin: 30px auto;
  }
}
.list1 h3 .large {
  font-size: 7rem;
}
.list1 h3 span:not(.large) {
  font-size: 1rem;
  opacity: 0.5;
  position: absolute;
  right: 0px;
  top: 0px;
}
.list-grid1 .list * {
  margin: 0;
  padding: 0;
}
.list-grid1 .list {
  display: grid;
  margin-bottom: 2rem;
}
.list-grid1 .list p {
  font-size: 0.85rem;
  line-height: 1.5;
}
.list-grid1 .list {
  padding: 1rem;
  background: #fff;
  color: #111;
  grid-template-rows: auto 1fr auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}
.list-grid1 .list figure {
  margin: -1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 800px) {
  .list-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
  }
  .list-grid1 .list {
    margin-bottom: 0;
  }
}
.title-bg {
  display: flex;
  justify-content: center;
}
.title-bg h2 {
  font-weight: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 3vw;
}
.title-bg h2 .tate {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 2rem;
}
.title-bg h2 .yoko {
  font-size: 0.9rem;
  margin-bottom: 3vw;
  letter-spacing: 0.1rem;
  opacity: 0.5;
}
.btn1 a,
.btn2 a {
  display: block;
  text-decoration: none;
  padding: 0.8rem 2rem;
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0.1em;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  margin: auto;
}
.btn1 a:hover,
.btn2 a:hover {
  letter-spacing: 0.2rem;
  box-shadow: none;
}
.btn1 a {
  color: #fff;
  background: linear-gradient(#ec9347, #d36b12);
  font-weight: 600;
}
.btn2 a {
  color: #fff;
  border: 1px solid #fff;
}
.list1:hover .btn2 a {
  background: rgba(0, 0, 0, 0.8);
}
.btn3 {
  text-align: right;
  letter-spacing: 0.1em;
}
.btn3 a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-right: 5rem;
}
.btn3 a::after {
  content: "";
  background: url("../images/arrow1.svg") no-repeat right center / 100px;
  display: block;
  position: absolute;
  right: 0px;
  bottom: -1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
  border: 1px solid var(--primary-color);
}
.btn3 a:hover::after {
  background-color: var(--primary-color);
  background-position: left center;
}
.btn3.white {
  color: #fff;
}
.btn3.white a::after {
  background: url("../images/arrow1_white.svg") no-repeat right center / 100px;
  border: 1px solid #fff;
}
.btn3.white a:hover::after {
  background-color: #fff;
  background-position: left center;
}
.ta1 caption {
  font-weight: bold;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  margin-bottom: 1rem;
  border-radius: 5px;
}
.ta1 {
  table-layout: fixed;
  border-top: 1px solid var(--primary-color);
  width: 100%;
  margin-bottom: 5rem;
}
.ta1 tr {
  border-bottom: 1px solid var(--primary-color);
}
.ta1 th,
.ta1 td {
  padding: 1rem;
  word-break: break-all;
}
.ta1 th {
  width: 30%;
  text-align: left;
  background: #eee;
}
@media screen and (min-width: 900px) {
  .ta1 th {
    width: 20%;
  }
}
.order1 {
  order: 1;
}

.padding0 {
  padding: 0 !important;
}
.padding-bottom0 {
  padding-bottom: 0 !important;
}
.padding-lr0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
}
.space-small {
  padding-left: var(--space-small);
  padding-right: var(--space-small);
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.color-check,
.color-check a {
  color: #ff0000 !important;
}
.l {
  text-align: left !important;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.ws {
  width: 95%;
  display: block;
}
.wl {
  width: 95%;
  display: block;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.look {
  line-height: 1.5 !important;
  display: inline-block;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  margin: 5px 0;
  word-break: break-all;
}
.small {
  font-size: 0.75em;
}
.large {
  font-size: 2em;
  letter-spacing: 0.1em;
}
.pc {
  display: none;
}
.dn {
  display: none !important;
}
.block {
  display: block !important;
}
.bg1 {
  background: #565c66;
  color: #fff;
}
.bg1 a {
  color: inherit;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (min-width: 900px) {
  .ws {
    width: 48%;
    display: inline;
  }
  .sh {
    display: none;
  }
  .pc {
    display: block;
  }
}
.slide-type1 .slide {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  opacity: 100;
  transition: opacity 1s;
}

@media screen and (min-width: 599px) {
  .slide-type1 .slide {
    padding: 50px 30px;
  }
  .slide-type1 .slide img {
    border-radius: 0px 120px 0px 120px;
  }
}

div#svg-box {
  background-color: antiquewhite;
}
.slide-type1 .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-type1 .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-type1 .slide {
  pointer-events: none;
}

.slide-type1 .slide.active {
  pointer-events: auto;
}

.mb0 {
  margin-bottom: 0 !important;
}
.pd0 {
  padding: 0 !important;
}
.mb30 {
  margin-bottom: 30px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.flex {
  display: flex;
}
.informed-sports {
  width: 120px;
  margin: 20px auto;
}
