@charset "UTF-8";
:root {
  --hamburger-menu-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --container-max-width: 1200px;
  --section-gap: 2rem;
  --min-body-width: 360px;
  --breakpoint-sm: 768px;
  --font-size-h1: calc(1.375rem + 1.5vw);
  --font-size-h5: 1.25rem;
  --font-color-dark: rgb(33, 37, 41);
  --font-color-light: rgb(224, 224, 224);
  --font-color-white: rgb(255, 255, 255);
  --font-color-gray: rgb(102, 102, 102);
  --font-color-muted: rgb(192, 192, 192);
  --font-color-faint: rgb(169, 169, 169);
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  min-width: var(--min-body-width);
}

h1, .h1 {
  font-size: var(--font-size-h1);
}

h5, .h5 {
  font-size: var(--font-size-h5);
  margin: 0;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  box-sizing: border-box;
}

.w60 {
  min-width: 60%;
}

.w40 {
  min-width: 40%;
}

.section-layout {
  display: flex;
  flex-direction: column;
  padding-inline: 2rem;
  margin-bottom: var(--section-gap);
}
.section-layout .title {
  text-align: left;
}
.section-layout .title.center {
  text-align: center;
}
.section-layout .columns {
  display: flex;
  flex-wrap: wrap;
}
.section-layout .columns .left,
.section-layout .columns .right {
  flex: 1 1 0;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .section-layout {
    text-align: center;
  }
  .section-layout .columns {
    flex-direction: column;
  }
  .section-layout .title {
    text-align: center;
  }
}

.outline-text-area {
  position: absolute !important;
  left: 50%;
  transform: translateX(-50%) translateY(-25%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 900;
  font-size: 10vw;
  color: transparent;
  -webkit-text-stroke: 2px rgba(64, 64, 64, 0.08);
  text-stroke: 2px rgba(64, 64, 64, 0.08);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .outline-text-area {
    align-items: flex-start;
    justify-content: flex-start;
    transform: translate(-45%, -40%);
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #212529;
  vertical-align: middle;
  user-select: none;
  background-color: transparent;
  border: 1px solid #212529;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}
.btn:hover {
  text-decoration: none;
  background-color: #212529;
  color: #fff;
}
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.navbar {
  position: fixed;
  height: 56px;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  background-color: rgba(33, 37, 41, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.navbar .navbar-brand img {
  margin-left: 0.75rem;
  margin-right: 0.5rem;
}
.navbar .navbar-brand .navbar-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(224, 224, 224);
}
.navbar .navbar-brand .navbar-brand-name:hover, .navbar .navbar-brand .navbar-brand-name:focus {
  color: rgb(255, 255, 255);
}
.navbar .navbar-nav-link {
  justify-content: flex-end;
  margin-right: 1rem;
}
.navbar .navbar-nav-link ul {
  margin: 0;
}
.navbar .navbar-nav-link ul li {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.navbar .navbar-nav-link .nav-item-list {
  display: flex;
  text-align: center;
  list-style: none;
}
.navbar .navbar-nav-link .nav-item-list .nav-link-base {
  transition: color 0.5s ease-in-out;
  padding: 0.5rem;
  color: rgb(224, 224, 224);
}
.navbar .navbar-nav-link .nav-item-list .nav-link-base:hover, .navbar .navbar-nav-link .nav-item-list .nav-link-base:focus {
  color: rgb(255, 255, 255);
}
.navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-title {
  font-size: 0.8rem;
  line-height: 1.25;
}
.navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-sub {
  font-size: 0.6rem;
  line-height: 1;
}
.navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-sub::before, .navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-sub::after {
  content: "ー";
  top: 50%;
  transform: translateY(-50%);
}
.navbar .navbar-toggler {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.navbar .navbar-toggler .hamburger-menu {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: var(--hamburger-menu-icon);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }
  .navbar .navbar-nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
  }
  .navbar .navbar-nav-link.show {
    max-height: 500px;
    opacity: 0.8;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navbar .navbar-nav-link .nav-item-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0;
    list-style: none;
  }
  .navbar .navbar-nav-link .nav-item-list li {
    width: 100%;
    margin: 0.2rem 0;
  }
  .navbar .navbar-nav-link .nav-item-list .nav-link-base {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    color: rgb(224, 224, 224);
    font-size: 1.2rem;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
  }
  .navbar .navbar-nav-link .nav-item-list .nav-link-base:hover, .navbar .navbar-nav-link .nav-item-list .nav-link-base:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
  }
  .navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-title {
    font-size: 0.8rem;
  }
  .navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-sub {
    font-size: 0.6rem;
  }
  .navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-sub::before, .navbar .navbar-nav-link .nav-item-list .nav-link-base .nav-item-sub::after {
    content: "ー";
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar .navbar-toggler {
    display: inline-block;
  }
}

.tobitora {
  position: relative;
  overflow: hidden;
}
.tobitora::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  filter: grayscale(100%);
  background-image: url("/assets/images/tobitora.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
}
.tobitora > *:not(.bg-image) {
  position: relative;
  z-index: 1;
}
.tobitora .tobitora-detail p {
  font-size: 0.875em;
  color: rgb(102, 102, 102);
}
.tobitora .tobitora-card-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  gap: 0.5rem;
}
.tobitora .tobitora-card-list .tobitora-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 240px;
  min-width: 210px;
  min-height: 120px;
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  font-size: 0.875em;
  font-weight: 600;
  color: rgb(255, 255, 255);
  padding-top: 0.5rem;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9), -1px -1px 2px rgba(0, 0, 0, 0.9);
}
.tobitora .tobitora-card-list .tobitora-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 0;
}
.tobitora .tobitora-card-list .tobitora-card * {
  position: relative;
  z-index: 2;
}
.tobitora .tobitora-card-list .tobitora-card:hover, .tobitora .tobitora-card-list .tobitora-card:focus-visible {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}
.tobitora .tobitora-card-list .tobitora-card:hover::after, .tobitora .tobitora-card-list .tobitora-card:focus-visible::after {
  z-index: 0;
  background: rgba(0, 0, 0, 0.25);
}
.tobitora .tobitora-card-list .card-breaktv {
  background-image: url("/assets/images/tobitora-yt.webp");
}
.tobitora .tobitora-card-list .card-practice {
  background-image: url("/assets/images/tobitora-practice.webp");
}
.tobitora .tobitora-card-list .card-goods {
  background-image: url("/assets/images/tobitora-revlera.webp");
}

.footer-section {
  background-color: rgb(33, 37, 41);
  padding: 1rem;
  margin: 0 auto;
  box-sizing: border-box;
}
.footer-section .footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-section .footer-top .footer-col {
  flex: 1 1;
}
.footer-section .footer-bottom {
  padding-top: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-section .footer-top {
    flex-direction: column;
    text-align: center;
  }
}
.footer-section .footer-brand {
  text-align: center;
}
.footer-section .footer-brand > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.footer-section .footer-brand > a > img {
  margin-right: 0.5rem;
}
.footer-section .footer-media {
  text-align: center;
}
.footer-section .footer-media > a {
  text-decoration: none;
  margin: 0 0.25rem;
  display: inline-block;
}
.footer-section .footer-media img {
  vertical-align: middle;
}
.footer-section .simple-contact {
  text-align: center;
  font-size: 0.8rem;
  color: rgb(224, 224, 224);
}
.footer-section .simple-contact ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer-section .simple-contact a {
  color: rgb(224, 224, 224);
  transition: color 0.5s ease-in-out;
}
.footer-section .simple-contact a:hover, .footer-section .simple-contact a:focus {
  color: rgb(255, 255, 255);
}
.footer-section .sitemap {
  text-align: center;
  font-size: 0.75rem;
}
.footer-section .sitemap > a {
  color: rgb(192, 192, 192);
  transition: color 0.5s ease-in-out;
}
.footer-section .sitemap > a:hover, .footer-section .sitemap > a:focus {
  color: rgb(255, 255, 255);
}
.footer-section .sitemap > a::before {
  content: "|";
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.footer-section .sitemap > a:first-child::before {
  content: "";
  margin: 0;
}
.footer-section .copyright {
  color: rgb(169, 169, 169);
  font-size: 0.75rem;
  text-align: center;
}
.footer-section .copyright::before {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto 0;
}

.hero-section {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #212529;
}
.hero-section .slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-section .slideshow .hero-01 {
  background-image: url("/assets/images/hero-01.webp");
}
.hero-section .slideshow .hero-02 {
  background-image: url("/assets/images/hero-02.webp");
}
.hero-section .slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-section .slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-section .slideshow .slide.fade-out {
  opacity: 0;
  z-index: 2;
}
.hero-section .slideshow .slide.next {
  opacity: 1;
  z-index: 1;
}
.hero-section .hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero-section .hero-overlay .hero-contents {
  height: 100%;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  user-select: none;
  color: var(--font-color-white);
}
.hero-section .hero-overlay .hero-contents h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.hero-section .hero-overlay .hero-contents p {
  font-size: 1rem;
  font-weight: bold;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hero-section .hero-overlay .hero-contents {
    padding-left: 2rem;
  }
}

.about {
  text-align: center;
}

.instructor .instructor-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.instructor .instructor-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.instructor .instructor-scroll::-webkit-scrollbar {
  display: none;
}
.instructor .instructor-card {
  flex: 0 0 auto;
  width: 260px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.instructor .instructor-card:hover {
  transform: scale(1.03);
}
.instructor .instructor-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.instructor .instructor-card h5 {
  font-weight: bold;
  margin-bottom: 0;
}
.instructor .instructor-card .license {
  font-size: 0.85rem;
  color: rgb(102, 102, 102);
  margin-top: 0;
  margin-bottom: 0;
}
.instructor .instructor-card .license::before, .instructor .instructor-card .license::after {
  content: "ー";
  margin: 0 0.25rem;
  color: #999;
}
.instructor .instructor-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}
.instructor .instructor-card ul li {
  font-size: 0.85rem;
  color: rgb(102, 102, 102);
  margin-bottom: 0;
}
.instructor .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  user-select: none;
  z-index: 2;
  transition: background 0.5s ease;
}
.instructor .scroll-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
.instructor .scroll-btn.prev {
  left: -0.5rem;
}
.instructor .scroll-btn.next {
  right: -0.5rem;
}

.lesson {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}
.lesson .lesson-detail {
  margin-bottom: 1.5rem;
}
.lesson .lesson-detail h5 {
  font-weight: 700;
}
.lesson .lesson-detail p {
  font-size: 0.875em;
  color: rgb(102, 102, 102);
  margin-bottom: 1.5rem;
}
.lesson .lesson-schedule {
  padding-left: 0;
  list-style: none;
}
.lesson .lesson-schedule > li {
  font-weight: 700;
  border-bottom: 1px solid #ddd;
  padding-left: 1.2rem;
  margin-bottom: 0.25rem;
}
.lesson .lesson-schedule > li:first-child {
  border-top: 1px solid #ddd;
  margin-top: 0.25rem;
}
.lesson .lesson-schedule > li::before {
  content: "▶";
  left: 0;
  top: 0;
  color: var(--font-color-dark);
  line-height: 1.5;
}
.lesson .lesson-schedule > li ul {
  list-style: none;
  padding-left: 0;
  margin: 0.25rem 0 0.25rem 1rem;
  font-weight: 400;
}
.lesson .lesson-schedule > li ul li {
  font-size: 0.8rem;
  color: var(--font-color-gray);
}

.contact {
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  width: 460px;
  height: 330px;
  background-image: url("/assets/images/contact-bg.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .contact::before {
    opacity: 0.2;
  }
}
.contact > *:not(.bg-image) {
  position: relative;
  z-index: 1;
}
.contact .contact-detail {
  margin-bottom: 1.5rem;
}
.contact .contact-detail h5 {
  font-weight: 700;
}
.contact .contact-detail p {
  font-size: 0.875em;
  color: rgb(102, 102, 102);
  margin-bottom: 1.5rem;
}
.contact .contact-detail .contact-info {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.contact .contact-detail .contact-info a, .contact .contact-detail .contact-info span {
  color: rgb(102, 102, 102);
}
.contact .contact-detail .contact-info .contact-link {
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}
.contact .contact-detail .contact-info .contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #404040;
  transition: width 0.3s ease;
}
.contact .contact-detail .contact-info .contact-link:hover::after {
  width: 100%;
}
.contact .contact-detail .contact-info .contact-link .contact-label {
  font-weight: 600;
}

.access {
  position: relative;
  overflow: hidden;
}
.access .access-detail {
  margin-bottom: 1.5rem;
}
.access .access-detail h5 {
  font-weight: 700;
}
.access .access-detail p {
  font-size: 0.875em;
  color: rgb(102, 102, 102);
  margin-bottom: 0.5rem;
}
.access .access-detail .zip-code {
  font-weight: 600;
}
.access .photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  font-size: 0.875em;
  padding-right: 1rem;
}
.access .photo-gallery .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.access .photo-gallery .gallery-item img {
  width: 100%;
  max-width: 200px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 0.25rem;
  transition: transform 0.5s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.access .photo-gallery .gallery-item img:hover {
  transform: scale(1.03);
}
.access .photo-gallery .gallery-item h5 {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(33, 37, 41);
  text-align: left;
  margin: 0;
}
.access .photo-gallery .gallery-item p {
  font-size: 0.85rem;
  color: rgb(102, 102, 102);
  text-align: left;
  padding-left: 1em;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.facility-top {
  position: relative;
  height: 50dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #212529;
}
.facility-top .facility-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("/assets/images/facilities/top.webp");
}
.facility-top .facility-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
}
.facility-top .facility-overlay .facility-contents {
  height: 100%;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  user-select: none;
  color: var(--font-color-white);
}
.facility-top .facility-overlay .facility-contents h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .facility-top .facility-overlay .facility-contents {
    padding-left: 2rem;
  }
}

.facility-about {
  text-align: center;
}
.facility-about h2 {
  text-align: center;
  color: var(--font-color-dark);
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.facility-about h3 {
  color: var(--font-color-dark);
  margin-top: 0rem;
  margin-bottom: 1rem;
}
.facility-about p {
  color: var(--font-color-gray);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.facility-about .note {
  text-align: right;
  font-size: x-small !important;
}

.facility-section {
  align-items: center;
  justify-content: center;
}
.facility-section .facility-content {
  margin-bottom: 2rem;
}
.facility-section .facility-content h2 {
  color: var(--font-color-dark);
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.facility-section .facility-content h4 {
  color: var(--font-color-dark);
  margin-top: 0rem;
  margin-bottom: 1rem;
}
.facility-section .facility-content p {
  color: var(--font-color-gray);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.facility-section .facility-content .image-area {
  text-align: center;
}
.facility-section .facility-content img {
  width: 90%;
  height: auto;
  max-width: 1080px;
  object-fit: cover;
  border: 5px solid #FFF;
  box-shadow: 0 0 5px #999;
}
@media (max-width: 768px) {
  .facility-section .facility-content img {
    max-height: none;
  }
}
@media (max-width: 768px) {
  .facility-section .facility-content {
    flex-direction: column;
  }
  .facility-section .facility-content h2 {
    color: var(--font-color-dark);
    margin-top: 0.25rem;
    margin-bottom: 0rem;
  }
  .facility-section .facility-content .left {
    order: 0;
  }
  .facility-section .facility-content .right {
    order: 1;
  }
  .facility-section .facility-content.reverse .left {
    order: 1;
  }
  .facility-section .facility-content.reverse .right {
    order: 0;
  }
}