@charset "UTF-8";
html {
  color: #ffffff;
  background: #041d29;
  font-size: 62.5%;
}

@media screen and (max-width: 1280px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 1000px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 60%;
  }
}

@media screen and (max-width: 400px) {
  html {
    font-size: 52%;
  }
}

body {
  position: relative;
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.12em;
  background: center/cover fixed no-repeat url(../images/back_main.svg);
}

body.fixed {
  position: fixed;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.inner-lg {
  width: 1760px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1280px) {
  .inner-lg {
    padding: 0 2rem;
  }
}

.inner-md {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1280px) {
  .inner-md {
    padding: 0 2rem;
  }
}

.inner-sm {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1280px) {
  .inner-sm {
    padding: 0 2rem;
  }
}

.wrapper-section {
  margin: 16rem auto 0;
}

@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  br.sp {
    display: block;
  }
}

p {
  line-height: 1.6;
}

p.txt-read {
  line-height: 2.4;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 768px) {
  p.txt-read {
    line-height: 2;
  }
}

p.txt {
  line-height: 2;
}

p.txt + .txt {
  margin-top: 0.5em;
}

@media screen and (max-width: 768px) {
  p.txt {
    line-height: 1.6;
  }
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex .col-1 {
  width: 8.33%;
}

.flex .col-2 {
  width: 16.66%;
}

.flex .col-3 {
  width: 25%;
}

.flex .col-4 {
  width: 33.33%;
}

.flex .col-5 {
  width: 41.66%;
}

.flex .col-6 {
  width: 50%;
}

.flex .col-7 {
  width: 58.33%;
}

.flex .col-8 {
  width: 66.66%;
}

.flex .col-9 {
  width: 75%;
}

.flex .col-10 {
  width: 83.33%;
}

.flex .col-11 {
  width: 91.66%;
}

.flex .col-12 {
  width: 100%;
}

.flex .w50 {
  width: 49%;
  margin: 0 2% 0 0;
}

.flex .w50:nth-child(n + 3) {
  margin-top: 2%;
}

.flex .w50:nth-child(even) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .flex .w50 {
    width: 100%;
    margin: 0 auto;
  }
  .flex .w50:nth-child(n + 2) {
    margin: 2.4rem auto 0;
  }
  .flex .w50:nth-child(3n) {
    margin: 2rem 2% 0 0;
  }
  .flex .w50:nth-child(even) {
    margin-right: 0;
  }
  .flex .w50:nth-child(n + 3) {
    margin-top: 2rem;
  }
}

.flex .w33 {
  width: 32%;
}

@media screen and (max-width: 768px) {
  .flex .w33 {
    width: 49%;
  }
}

a {
  display: inline-block;
  color: #ffffff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

a:hover {
  color: white;
}

span {
  display: inline-block;
}

.ttl-base {
  position: relative;
  display: block;
  max-width: 100%;
  width: 426px;
  margin: 0 auto 4rem;
  text-align: center;
  background: center 0/contain no-repeat url(../images/back-ttl.png);
}

.ttl-base .txt-en {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  font-size: 5.2rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.ttl-base .txt-jp {
  margin: 2rem 0 0;
  font-size: 2rem;
  font-weight: bold;
}

.ttl-lg {
  font-size: 3.2rem;
  font-weight: 700;
}

.ttl-md {
  font-size: 2.4rem;
  font-weight: 700;
}

.ttl-sm {
  font-size: 2rem;
  font-weight: 700;
}

.btn-base {
  background: #0df2d7;
  background: -webkit-gradient(linear, left top, right top, from(#0df2d7), to(#1ca9ee));
  background: linear-gradient(90deg, #0df2d7 0%, #1ca9ee 100%);
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 26rem;
  padding: 0.5em 1em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  border-radius: 4em;
  overflow: hidden;
  border: 1px solid transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 10;
}

.btn-base:hover {
  letter-spacing: 0.2em;
  border: 1px solid #ffffff;
}

.btn-wrap {
  width: 100%;
  margin: 4rem auto 0;
}

@media screen and (max-width: 1000px) {
  .btn-wrap {
    margin: 2.4rem auto 0;
  }
}

a[href^='tel:'] {
  pointer-events: none;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  a[href^='tel:'] {
    pointer-events: auto;
    color: #ffffff;
  }
}

.gmap iframe {
  max-width: 100%;
}

.box-youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.box-youtube iframe {
  width: 100%;
  height: 100%;
}

.fw-b {
  font-weight: 700;
}

.fw-n {
  font-weight: 400;
}

.ta-l {
  text-align: left;
}

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

.ta-r {
  text-align: right;
}

.c-red {
  color: #ff0000;
}

.btn-modal-open {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  width: 4rem;
  height: 4rem;
  z-index: 10;
  cursor: pointer;
}

.open-modal {
  cursor: pointer;
}

.box-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: 2000;
}

.box-modal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 29, 41, 0.9);
  z-index: -1;
}

.box-modal .contents-modal {
  position: relative;
  top: 50%;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  max-width: 960px;
  margin: auto;
  padding: 1vw;
  background: #041d29;
  border: 1px solid #d6d6d6;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.box-modal .close-modal {
  position: absolute;
  top: 0;
  bottom: auto;
  right: 0;
  left: auto;
  width: 4rem;
  height: 4rem;
  background: #041d29;
  border: 1px solid #ffffff;
  border-radius: 6rem;
  z-index: 10;
  cursor: pointer;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.box-modal .close-modal::before,
.box-modal .close-modal::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  margin: auto;
  background: #ffffff;
  z-index: 11;
}

.box-modal .close-modal::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.box-modal .close-modal::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*===========================================================================
animation
===========================================================================*/
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*===========================================================================
masthead
===========================================================================*/
#masthead .box-logo {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto 0;
  max-width: 100%;
  z-index: 9999;
}

#masthead .box-logo .back-logo {
  max-width: 68vw;
}

#masthead .box-logo .logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 32%;
  margin: auto;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  z-index: 10;
}

#masthead .tel-link {
  background: #0df2d7;
  background: -webkit-gradient(linear, left top, right top, from(#0df2d7), to(#1ca9ee));
  background: linear-gradient(90deg, #0df2d7 0%, #1ca9ee 100%);
  position: fixed;
  top: 6rem;
  right: 0;
  width: 268px;
  margin: auto 0;
  padding: 0.6em 2em 0.6em 0;
  font-weight: 700;
  text-align: right;
  line-height: 1.4;
  color: #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 7rem 0 0 7rem;
  z-index: 9999;
}

#masthead .tel-link .txt-num {
  font-style: italic;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0;
}

#masthead .instagram-link {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  width: 12rem;
  height: 12rem;
  z-index: 9999;
}

#masthead .instagram-link .icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

#masthead .instagram-link .txt {
  animation: 10s linear infinite reverse both running rotate;
}

/*===========================================================================
main footer
===========================================================================*/
#main-footer {
  padding: 12rem 4% 0;
}

#main-footer .logo {
  max-width: 60%;
  margin: 0 auto 1rem;
}

#main-footer .tel-link {
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 900;
}

#main-footer dt {
  margin: 0 0 0.5em;
}

#main-footer .txt-register dd {
  font-size: 1.4rem;
}

#main-footer #copyright {
  display: block;
  padding: 4rem 2rem 2rem;
  font-style: italic;
  font-weight: 700;
}

/*===========================================================================
home
===========================================================================*/
body.home #mv {
  position: relative;
  z-index: 1;
}

body.home #mv .video-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  z-index: -100;
}

body.home #mv .youtube-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  min-width: 1920px;
  min-height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -100;
}

body.home #mv .overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

body.home #about {
  position: relative;
  margin-top: 20rem;
}

body.home #about::after {
  content: '';
  position: absolute;
  top: -44%;
  left: 0;
  width: 100%;
  height: 100%;
  background: top left/48% no-repeat url(../images/illust_rod.svg);
  z-index: -1;
}

body.home #about .ttl-en {
  margin: 0 0 1.6rem;
  font-size: 6rem;
  font-style: italic;
  line-height: 1.4;
}

body.home #about .box-message {
  display: inline-block;
}

body.home #about .txt-message {
  margin: auto;
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

body.home #about .name {
  text-align: right;
  font-weight: 700;
}

body.home #about .name .txt-name {
  margin: 0 0 0 0.5em;
  font-size: 2.4rem;
}

body.home #plan {
  overflow: hidden;
}

body.home #plan #slider-plan {
  overflow: hidden;
  max-width: 1080px !important;
  margin: 0 auto !important;
  overflow: visible !important;
}

body.home #plan .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

body.home #plan .swiper-slide {
  position: relative;
  height: auto;
  padding: 3.2rem;
  background: #ffffff;
  color: #0b0b0b;
  border-radius: 0.8rem;
}

body.home #plan .swiper-button-next,
body.home #plan .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: center/contain no-repeat url(../images/icon_arrow01.svg);
}

body.home #plan .swiper-button-next::after,
body.home #plan .swiper-button-prev::after {
  content: '';
}

body.home #plan .swiper-button-next,
body.home #plan .swiper-container-rtl .swiper-button-prev {
  right: -70px;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

body.home #plan .swiper-button-prev,
body.home #plan .swiper-container-rtl .swiper-button-next {
  left: -70px;
}

body.home #plan .ttl-md {
  text-align: center;
}

body.home #plan .tbl-plan {
  width: 100%;
  max-width: 1000px;
  margin: 3.2rem auto;
  border-top: 1px solid #d6d6d6;
}

body.home #plan .tbl-plan tr {
  border-bottom: 1px solid #d6d6d6;
}

body.home #plan .tbl-plan th {
  padding: 0.6em 1em;
  font-size: 2rem;
}

body.home #plan .tbl-plan th,
body.home #plan .tbl-plan td {
  padding: 1em;
  vertical-align: middle;
  line-height: 1.2;
  text-align: center;
  border-left: 1px solid #d6d6d6;
}

body.home #plan .tbl-plan th:first-child,
body.home #plan .tbl-plan td:first-child {
  border-left: none;
}

body.home #plan .tbl-plan .txt-note {
  font-size: 1.4rem;
}

body.home #plan .tbl-plan .box-price + .box-price {
  margin: 1.6rem auto 0;
}

body.home #plan .tbl-plan .txt-price {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  font-style: italic;
}

body.home #plan .tbl-plan .txt-price::before {
  content: '¥';
  font-size: 2.4rem;
  margin: 0 4px 0 0;
}

body.home #plan .tbl-plan .txt-free {
  font-size: 2.4rem;
  font-weight: 700;
}

body.home #plan .tbl-plan .txt-week {
  margin: 0 1em 0 0;
  font-weight: bold;
}

body.home #plan .wrapper-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body.home #plan .wrapper-list .list-plan {
  display: inline-block;
  margin: auto;
  padding-left: 2em;
  list-style-type: disc;
}

body.home #plan .wrapper-list .list-plan li + li {
  margin: 8px 0 0;
}

body.home #plan .icon-service {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
}

body.home #facilities .wrapper-faclities {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

body.home #facilities .wrapper-faclities .box-facilities {
  width: 31%;
  padding: 2rem;
  background: #ffffff;
  color: #0b0b0b;
}

body.home #facilities .wrapper-faclities .box-facilities:nth-child(n + 4) {
  margin-top: 3%;
}

body.home #facilities .wrapper-faclities .img-facilities {
  margin: auto auto 1rem;
}

body.home #facilities .wrapper-faclities p {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

body.home #back {
  position: relative;
  width: 100%;
  height: 48rem;
  background: center/cover fixed no-repeat url(../images/back_sea.jpg);
}

body.home #back::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  width: 360px;
  max-width: 22vw;
  height: 278px;
  background: right bottom/contain no-repeat url(../images/illust_people.svg);
  z-index: 1;
}

body.home #pointcard .box-img {
  margin: auto;
}

body.home #pointcard .box-txt {
  position: relative;
  max-width: 48%;
  margin: auto;
  padding: 6rem 6rem 4rem;
  text-align: center;
  background: #ffffff;
  color: #0b0b0b;
}

body.home #pointcard .box-txt .txt-point {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-58%);
          transform: translateY(-58%);
}

body.home #pointcard .box-txt .list-point {
  margin: 2rem auto 0;
  padding-left: 2em;
  list-style: disc;
  text-align: left;
}

body.home #youtube {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.2);
}

body.home #youtube .wrapper-youtube .box-youtube {
  max-width: 47%;
  width: 560px;
  height: auto;
  margin: 0 auto 1em;
}

body.home #youtube .wrapper-youtube .box-youtube iframe {
  margin: 0 0 1.6rem;
  border: 2px solid #ffffff;
}

body.home #youtube .wrapper-youtube .box-youtube p {
  font-size: 1.8rem;
}

body.home #access .ttl-base {
  margin: 0 0 1rem;
}

body.home #access .ttl-base .txt-jp {
  -webkit-transform: translateX(-3em);
          transform: translateX(-3em);
}

body.home #access .box-txt {
  margin: auto;
}

body.home #access .box-txt .txt-add {
  padding: 0 11rem;
}

body.home #access .box-txt .fw-b {
  margin: 0 0 1rem;
}

body.home #access .gmap {
  max-width: 60%;
}

/*===========================================================================
sp
===========================================================================*/
@media screen and (max-width: 768px) {
  .wrapper-section {
    margin: 8rem auto 0;
  }
  .ttl-base {
    width: 100%;
    margin: 0 auto 2.4rem;
  }
  .ttl-base .txt-en {
    padding-top: 1.6rem;
    font-size: 4rem;
  }
  .ttl-base .txt-jp {
    margin: 0;
  }
  .ttl-lg {
    font-size: 2.4rem;
  }
  .ttl-md {
    font-size: 1.8rem;
  }
  .ttl-sm {
    font-size: 1.6rem;
  }
  #masthead .box-logo {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
  #masthead .tel-link {
    top: 2.8vw;
    width: auto;
    padding: 1em 0.5em 0.5em 2em;
    font-size: 1.4rem;
  }
  #masthead .tel-link .txt-num {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  #masthead .instagram-link {
    right: 2%;
    bottom: 2%;
    width: 10rem;
    height: 10rem;
  }
  #masthead .instagram-link .icon {
    width: 4.8rem;
    height: auto;
  }
  body.home #mv .video-box {
    padding-top: 128%;
  }
  body.home #about {
    margin-top: 20vw;
  }
  body.home #about::after {
    top: -18vw;
    width: 100%;
    background-size: 92%;
  }
  body.home #about .ttl-en {
    font-size: 4rem;
  }
  body.home #about .box-message {
    display: block;
  }
  body.home #about .txt-message {
    font-size: 6.4vw;
    line-height: 1.6;
  }
  body.home #about .name {
    font-size: 1.4rem;
  }
  body.home #about .name .txt-name {
    font-size: 1.6rem;
  }
  body.home #plan #slider-plan {
    max-width: 90% !important;
  }
  body.home #plan .swiper-slide {
    padding: 1.2rem;
  }
  body.home #plan .swiper-button-prev,
  body.home #plan .swiper-container-rtl .swiper-button-next {
    left: -15px;
    width: 30px;
    height: 30px;
  }
  body.home #plan .swiper-button-next,
  body.home #plan .swiper-container-rtl .swiper-button-prev {
    right: -15px;
    width: 30px;
    height: 30px;
  }
  body.home #plan .tbl-plan {
    width: 100%;
    margin: 1.2rem auto;
  }
  body.home #plan .tbl-plan th,
  body.home #plan .tbl-plan td {
    padding: 0.5em;
    font-size: 1.4rem;
  }
  body.home #plan .tbl-plan th.fw-b,
  body.home #plan .tbl-plan td.fw-b {
    min-width: 7em;
  }
  body.home #plan .tbl-plan .txt-price,
  body.home #plan .tbl-plan .txt-free {
    font-size: 2rem;
  }
  body.home #plan .tbl-plan .txt-price::before,
  body.home #plan .tbl-plan .txt-free::before {
    font-size: 12px;
  }
  body.home #plan .tbl-plan .txt-note {
    font-size: 12px;
    line-height: 1.2;
  }
  body.home #plan .tbl-plan .txt-note.fw-b {
    font-weight: 400;
  }
  body.home #plan .wrapper-list {
    margin: 2rem auto;
  }
  body.home #plan .wrapper-list .list-plan {
    font-size: 1.4rem;
  }
  body.home #plan .icon-service {
    top: -2rem;
    right: 0;
    bottom: auto;
    left: auto;
    width: 8rem;
    height: auto;
  }
  body.home #facilities .wrapper-faclities {
    gap: 2rem;
  }
  body.home #facilities .wrapper-faclities .box-facilities {
    width: calc(50% - 1rem);
    padding: 1.2rem;
  }
  body.home #facilities .wrapper-faclities .box-facilities:nth-child(n + 4) {
    margin-top: 0;
  }
  body.home #back {
    height: 24rem;
    background: center/cover no-repeat url(../images/back_sea.jpg);
  }
  body.home #pointcard .box-txt {
    max-width: none;
    width: 100%;
    margin: 4rem auto 0;
    padding: 2rem;
  }
  body.home #pointcard .box-txt .logo-card {
    max-width: 50%;
  }
  body.home #pointcard .box-txt .txt-point {
    -webkit-transform: translateY(-68%);
            transform: translateY(-68%);
  }
  body.home #pointcard .box-txt .list-point {
    font-size: 14px;
  }
  body.home #youtube .wrapper-youtube .box-youtube {
    max-width: none;
    width: 100%;
  }
  body.home #youtube .wrapper-youtube .box-youtube iframe {
    margin: 0 auto 8px;
  }
  body.home #access .ttl-base .txt-jp {
    -webkit-transform: none;
            transform: none;
  }
  body.home #access .box-txt {
    width: 100%;
    text-align: center;
  }
  body.home #access .box-txt .txt-add {
    padding: 0;
  }
  body.home #access .gmap {
    max-width: 100%;
    margin: 4rem auto 0;
  }
  body.home #access .gmap iframe {
    height: 32rem;
  }
  #main-footer {
    padding: 8rem 0 0;
  }
  #main-footer .logo {
    max-width: 100%;
  }
  #main-footer .wrapper-txt {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.4;
  }
  #main-footer .txt-tel {
    margin: 2rem auto;
  }
}

@media screen and (max-width: 400px) {
  body.home #facilities .wrapper-faclities .box-facilities {
    width: 100%;
  }
}
