@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

body {
  font-family: "Shippori Mincho", serif;
  width: 100%;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  font-size: 15px;
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-weight: normal;
}
body .small {
  font-size: 0.85em;
}
body .d-block {
  display: block;
}
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  pointer-events: none;
}
body header {
  width: 100%;
  margin: 0 auto;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: #fff;
}
body header .header-content {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body header .header-content img {
  width: 241px;
  height: 71px;
  -o-object-fit: cover;
     object-fit: cover;
}
body header .header-content .hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  align-items: flex-end;
}
body header .header-content .hamburger-menu span {
  height: 1px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
}
body header .header-content .hamburger-menu span:nth-child(1) {
  width: 30px;
}
body header .header-content .hamburger-menu span:nth-child(2) {
  width: 25px;
}
body header .header-content .hamburger-menu span:nth-child(3) {
  display: none;
}
body header .header-content .hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(-0.5px, 5px);
  background-color: #fff;
  width: 25px;
}
body header .header-content .hamburger-menu.active span:nth-child(2) {
  transform: rotate(-45deg) translate(0px, -6px);
  background-color: #fff;
  width: 25px;
}
body header .header-content .hamburger-menu.active span:nth-child(3) {
  display: none;
}
body header .header-content .g-navi {
  display: flex;
}
body header .header-content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
body header .header-content ul li {
  list-style: none;
}
body header .header-content ul li a {
  color: #000;
}
body header .header-content .reserve {
  background: black;
  margin-left: 2em;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  width: 160px;
  height: 45px;
}
body header .header-content .reserve .reserve-en {
  font-size: 12px;
  display: block;
}
body header .header-content .reserve .reserve-ja {
  display: block;
}
body main {
  margin-top: 150px;
}
body main .main-area {
  width: 90%;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
body main .main-area img {
  width: 100%;
  height: 742px;
  -o-object-fit: cover;
     object-fit: cover;
}
body main .main-area .title {
  position: absolute;
  bottom: 8%;
  left: 5%;
  color: #fff;
  font-weight: 100 !important;
}
body main .main-area .title h1 {
  font-weight: 100 !important;
  font-size: 26px;
}
body main .main-area .title .small-text {
  font-size: 19px;
}
body main #concept {
  width: 80%;
  height: 100%;
  margin: 150px auto;
}
body main #concept .concept-area-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main #concept .concept-area-flex .concept-area-flex-left {
  width: 50%;
  position: relative;
}
body main #concept .concept-area-flex .concept-area-flex-left .concept-bg-image {
  position: absolute;
  top: 0;
  left: -180px;
  width: 800px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  transform: rotate(224deg);
  opacity: 0.8;
}
body main #concept .concept-area-flex .concept-area-flex-left .concept-title-flex {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  margin-top: -150px;
}
body main #concept .concept-area-flex .concept-area-flex-left .concept-title-flex .concept-title {
  font-size: 24px;
  color: #09666b;
}
body main #concept .concept-area-flex .concept-area-flex-left .concept-title-flex .concept-line {
  width: 68px;
  height: 1px;
  margin-top: 10px;
  background: #09666b;
}
body main #concept .concept-area-flex .concept-area-flex-left .concept-area-flex-left-text {
  width: auto;
  margin-left: 50px;
  margin-top: 100px;
}
body main #concept .concept-area-flex .concept-area-flex-left .concept-area-flex-left-text .main-text {
  font-size: 21px;
  margin-bottom: 50px;
  line-height: 2.5;
}
body main #concept .concept-area-flex .concept-area-flex-left .concept-area-flex-left-text .sub-text {
  font-size: 14px;
}
body main #concept .concept-area-flex .concept-area-flex-right {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
body main #concept .concept-area-flex .concept-area-flex-right img {
  width: 100%;
  height: 100%;
  max-height: 322px;
  -o-object-fit: cover;
     object-fit: cover;
}
body main #about {
  width: 100%;
  margin: 50px auto;
  position: relative;
  overflow: visible;
}
body main #about .parallax-img {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  margin-bottom: 0;
}
body main #about img {
  width: 100%;
  height: 543px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  z-index: -1;
}
body main #about .about-content {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #ffffff;
  padding: 50px 0;
  margin-bottom: 100px;
}
body main #about .about-content::before {
  content: "";
  position: absolute;
  z-index: -10;
  top: -500px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath d='M0,25 Q25,20 50,25 T100,25 L100,50 L0,50 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
}
body main #about .about-content .about-content-title {
  margin-bottom: 100px;
}
body main #about .about-content .about-content-title h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 5px;
}
body main #about .about-content .about-content-title .wave-image {
  width: 76px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto 5px auto;
  z-index: 10;
}
body main #about .about-content .about-content-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
body main #about .about-content .about-content-flex .about-content-flex-left {
  width: 15%;
  height: 300px;
  text-align: center;
  position: relative;
}
body main #about .about-content .about-content-flex .about-content-flex-left .margin-top-facility {
  margin-top: 55px !important;
  position: relative;
  z-index: 10;
}
body main #about .about-content .about-content-flex .about-content-flex-left .rotate-text {
  transform: rotate(-270deg);
  font-size: 26px;
  margin: 35px 0 50px 0;
  color: #09666b;
}
body main #about .about-content .about-content-flex .about-content-flex-left .transform-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  color: #d1d1d1;
}
body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-facility {
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-54%);
}
body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-space, body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-spend {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-54%);
}
body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-meal, body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-bath {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-54%);
}
body main #about .about-content .about-content-flex .about-content-flex-right {
  width: 85%;
}
body main #about .about-content .about-content-flex .about-content-flex-right .text-content p {
  margin: 25px 0;
  font-size: 14px;
}
body main #about .about-content .about-content-flex .about-content-flex-right .text-content .large-text {
  font-size: 20px;
  margin: 50px 0;
}
body main .even-margin {
  margin-left: 15%;
}
body main .even-margin-text {
  margin-left: 18%;
}
body main .even-margin-table {
  margin-left: 13%;
}
body main .table-container table {
  width: 758px;
  border-collapse: collapse;
  border: 1px solid #000;
  margin: 75px 0;
  font-size: 14px;
}
body main .table-container table .table-title {
  font-size: 16px;
}
body main .table-container table tr:first-child td {
  background-color: #04343f;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 15px;
  height: 63px;
  border-bottom: 1px solid #fff;
}
body main .table-container table tr:not(:first-child) td:first-child {
  background-color: #808080;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  border-bottom: none;
  width: 214px;
  text-align: center;
  height: 65px;
}
body main .table-container table tr:not(:first-child) td:last-child {
  padding: 10px;
  border-left: 1px solid #fff;
  height: 65px;
}
body main .table-container table td {
  border: 1px solid #000;
}
body main #neighbor-info {
  width: 100%;
  background-color: #f7f7f7;
  position: relative;
  padding-bottom: 100px;
  letter-spacing: 1px;
}
body main #neighbor-info .neighbor-info-title {
  font-size: 41px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 10px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
body main #neighbor-info .neighbor-info-title::before {
  content: "Neighborhood";
}
body main #neighbor-info .neighbor-info-subtitle {
  font-size: 14px;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 10px;
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}
body main #neighbor-info .neighbor-info-content {
  width: 90%;
  margin: 0 auto;
  padding: 150px 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-left {
  width: 20%;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-left h3 {
  font-size: 20px;
  color: #000;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right {
  width: 75%;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #000;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item:first-child {
  border-top: 1px solid #000;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .neighbor-info-content-right-item-title {
  font-size: 17px;
  color: #000;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .neighbor-info-content-right-item-middle {
  width: 75%;
  text-align: left;
  font-size: 14px;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .neighbor-info-content-right-item-middle .gray-text {
  color: #9c9b9b;
  margin-top: 5px;
}
body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item a {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  text-decoration: none;
  width: 168px;
  height: 39px;
  font-size: 15px;
}
body main #access {
  width: 80%;
  max-width: 1000px;
  margin: 150px auto;
  letter-spacing: 1px;
}
body main #access .margin-10px {
  margin: 10px 0;
}
body main #access iframe {
  width: 100%;
  max-width: 1000px;
  height: 373px;
  margin: 0 auto;
  display: block;
}
body main #access .access-content {
  width: 90%;
  max-width: 1000px;
  margin: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
}
body main #access .access-content .access-title h2 {
  font-size: 41px;
  font-weight: 100 !important;
}
body main #access .access-content .access-content-left {
  border-left: 2px solid rgb(172, 172, 172);
  padding-left: 10px;
}
body main #access .access-content .access-content-left .access-content-left-title {
  font-size: 24px;
  font-weight: 100 !important;
  color: #09666b;
}
body main #access .access-content .access-content-middle {
  border-left: 2px solid rgb(172, 172, 172);
  padding-left: 10px;
}
body main #access .access-content .access-content-middle .access-content-middle-title {
  font-size: 20px;
  font-weight: 100 !important;
  color: #09666b;
}
body main #access .access-content .access-content-right {
  border-left: 2px solid rgb(172, 172, 172);
  padding-left: 10px;
}
body main #access .access-content .access-content-right .access-content-right-title {
  font-size: 24px;
  font-weight: 100 !important;
  color: #006f75;
}
body main #access .access-description {
  margin-left: 19%;
}
body .footer {
  width: 100%;
  position: relative;
}
body .footer .footer-content {
  width: 100%;
  margin: 0 auto;
}
body .footer .footer-content .footer-logo-mobile {
  width: 35px !important;
  height: 35px !important;
  display: block;
  margin: 0 auto 25px auto;
}
body .footer .footer-content .footer-img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .footer .footer-content .footer-img .footer-img-item {
  position: relative;
  width: 100%;
  height: 351px;
}
body .footer .footer-content .footer-img .footer-img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}
body .footer .footer-content .footer-img .footer-img-item .footer-img-text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
body .footer .footer-content .footer-img .footer-img-item .footer-img-text-container .footer-img-text {
  color: #fff;
  font-size: 41px;
  margin: 0 0 10px 0;
}
body .footer .footer-content .footer-img .footer-img-item .footer-img-text-container .footer-img-text-sub {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
body .footer .footer-content .footer-img .footer-img-item .reception_time {
  margin-top: 1em;
}
body .footer .footer-content .footer-logo {
  width: 241px;
  height: 71;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 50px auto 10px auto;
}
body .footer .footer-copyright {
  text-align: center;
  font-size: 12px;
  width: 100%;
  background-color: #043431;
  color: #fff;
  padding: 5px 0;
}

.footer-reserve-button {
  display: none;
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  body header {
    width: 100%;
    height: 80px;
  }
  body header .header-content {
    width: 90%;
  }
  body header .header-content img {
    width: 145px;
    height: 43px;
  }
  body header .header-content .hamburger-menu {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002;
  }
  body header .header-content .g-navi {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    top: 0;
    right: 0;
    width: 60%;
    max-width: 201px;
    height: 100vh;
    background-color: #04343f;
    z-index: 1000;
    padding: 80px 20px 20px 20px;
    font-size: 14px;
  }
  body header .header-content .g-navi ul {
    flex-direction: column;
    gap: 7px;
    margin-left: 10px;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
  }
  body header .header-content .g-navi ul li {
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    text-align: left;
    width: 100%;
  }
  body header .header-content .g-navi ul li a {
    color: #fff;
    letter-spacing: 1px;
  }
  body header .header-content .reserve {
    display: none;
    z-index: 1001;
    text-decoration: none;
    margin-left: 0;
    margin-top: 2em;
    color: #fff;
  }
  body header .header-content .reserve .reserve-ja {
    font-size: 12px !important;
  }
  body main {
    margin: 0 auto;
    margin-top: 80px;
  }
  body main .main-area {
    width: 90%;
  }
  body main .main-area img {
    height: 424px !important;
  }
  body main .main-area .title h1 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 100 !important;
  }
  body main .main-area .title h1 .small-text {
    font-size: 13px;
  }
  body main #concept {
    margin: 50px auto;
    width: 90%;
  }
  body main #concept .concept-area-flex {
    flex-direction: column;
    gap: 50px;
  }
  body main #concept .concept-area-flex .concept-area-flex-left {
    width: 100%;
  }
  body main #concept .concept-area-flex .concept-area-flex-left .concept-bg-image {
    height: 335px !important;
    width: 305px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  body main #concept .concept-area-flex .concept-area-flex-left .concept-title-flex {
    margin-top: 0;
  }
  body main #concept .concept-area-flex .concept-area-flex-left .concept-title-flex .concept-title {
    font-size: 18px;
  }
  body main #concept .concept-area-flex .concept-area-flex-left .concept-title-flex .concept-line {
    width: 68px;
  }
  body main #concept .concept-area-flex .concept-area-flex-left .concept-area-flex-left-text {
    margin-left: 0;
    margin-top: 50px;
  }
  body main #concept .concept-area-flex .concept-area-flex-left .concept-area-flex-left-text .main-text {
    font-size: 17px;
  }
  body main #concept .concept-area-flex .concept-area-flex-left .concept-area-flex-left-text .sub-text {
    font-size: 13px;
  }
  body main #concept .concept-area-flex-right {
    width: 100% !important;
    margin-top: 50px;
  }
  body main #concept .concept-area-flex-right img {
    display: block;
    width: 65% !important;
    max-width: 220px !important;
    max-height: 139px !important;
    margin-left: 0 !important;
  }
  body main #concept .concept-area-flex-right .img-left {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  body main #concept .concept-area-flex-right .img-right {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
  body main #about {
    margin: 150px auto 0 auto;
    position: relative;
  }
  body main #about .parallax-img {
    height: 300px;
    position: sticky;
    top: 0;
  }
  body main #about img {
    height: 211px;
  }
  body main #about .about-content {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    background: transparent;
  }
  body main #about .about-content::before {
    top: -150px;
  }
  body main #about .about-content .about-content-title h2 {
    font-size: 23px;
    letter-spacing: 3px;
  }
  body main #about .about-content .about-content-title .wave-image {
    width: 76px;
    margin: 0 auto 5px auto;
  }
  body main #about .about-content .about-content-flex {
    flex-direction: column;
    gap: 25px;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left {
    width: 90%;
    height: auto;
    text-align: left;
    position: relative;
    margin: 0 auto;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left h3 {
    font-size: 12px;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .margin-top-facility {
    margin-top: 18px !important;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .rotate-text {
    transform: none !important;
    writing-mode: horizontal-tb !important;
    text-orientation: initial !important;
    margin: 10px 0;
    font-size: 20px;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .transform-text {
    font-size: 30px !important;
    writing-mode: horizontal-tb !important;
    position: absolute;
    top: 15px;
    left: 88px;
    color: #d6d6d6;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-facility {
    left: 139px !important;
    top: 28px !important;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-space {
    left: 105px !important;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-spend {
    left: 122px !important;
    top: 19px !important;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-meal {
    left: 99px !important;
    top: 20px !important;
  }
  body main #about .about-content .about-content-flex .about-content-flex-left .margin-left-bath {
    left: 112px !important;
    top: 20px !important;
  }
  body main #about .about-content .about-content-flex .about-content-flex-right {
    width: 100%;
  }
  body main #about .about-content .about-content-flex .about-content-flex-right .text-content {
    width: 90%;
    margin: 0 auto;
  }
  body main #about .about-content .about-content-flex .about-content-flex-right .text-content .large-text {
    font-size: 17px;
    margin: 25px 0;
  }
  body main #about .about-content .about-content-flex .about-content-flex-right .text-content .large-text .sp-br::after {
    content: "\a";
    white-space: pre;
  }
  body main #about .about-content .about-content-flex .about-content-flex-right .text-content p {
    font-size: 13px;
    line-height: 2;
  }
  body main #about .about-content .about-content-flex .about-content-flex-right img {
    width: 100%;
  }
  body main #about .about-content .about-content-flex:nth-child(even) .about-content-flex-left {
    order: 1;
  }
  body main #about .about-content .about-content-flex:nth-child(even) .about-content-flex-right {
    order: 2;
  }
  body main #about .about-content .table-container {
    width: 90%;
    margin: 30px auto !important;
  }
  body main #about .about-content .table-container table {
    width: 100%;
    margin: 30px auto !important;
  }
  body main #about .about-content .table-container table tr .table-title {
    height: 50px !important;
    padding: 0;
    width: 86px !important;
    font-size: 14px !important;
  }
  body main #about .about-content .table-container table tr td {
    font-size: 13px !important;
  }
  body main #neighbor-info {
    margin: 50px auto;
    padding-bottom: 80px;
  }
  body main #neighbor-info .neighbor-info-title {
    font-size: 32px;
    letter-spacing: 3px;
    top: -25px;
  }
  body main #neighbor-info .neighbor-info-subtitle {
    font-size: 12px;
  }
  body main #neighbor-info .neighbor-info-content {
    flex-direction: column;
    gap: 50px;
    padding: 80px 0 0 0;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-left {
    width: 100%;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-left h3 {
    text-align: center;
    font-size: 17px;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-right {
    width: 100%;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .neighbor-info-content-right-item-title {
    font-size: 15px;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .flex {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .flex .neighbor-info-content-right-item-middle {
    width: 100%;
    font-size: 13px;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .flex .neighbor-info-content-right-item-middle p {
    margin-bottom: 5px;
  }
  body main #neighbor-info .neighbor-info-content .neighbor-info-content-right .neighbor-info-content-right-item .flex a {
    margin: 0 auto;
    width: 152px !important;
    height: 33px !important;
    font-size: 14px !important;
    padding: 6px 0 !important;
  }
  body main #access {
    margin: 50px auto;
    width: 90%;
  }
  body main #access iframe {
    width: 100% !important;
    height: 229px !important;
  }
  body main #access .access-content {
    flex-direction: column;
    gap: 20px;
  }
  body main #access .access-content .access-title {
    text-align: left;
  }
  body main #access .access-content .access-title h2 {
    font-size: 32px !important;
  }
  body main #access .access-content .access-title p {
    font-size: 12px !important;
  }
  body main #access .access-content .access-content-left {
    letter-spacing: 1px;
  }
  body main #access .access-content .access-content-left .access-content-left-title {
    font-size: 17px !important;
  }
  body main #access .access-content .access-content-left p {
    font-size: 13px !important;
  }
  body main #access .access-content .access-content-middle {
    letter-spacing: 1px;
  }
  body main #access .access-content .access-content-right {
    letter-spacing: 1px;
  }
  body main #access .access-description {
    margin-left: 0;
    font-size: 13px;
  }
  body .footer {
    padding-bottom: 75px;
  }
  body .footer .footer-content .footer-logo {
    width: 178px !important;
    height: 53px !important;
  }
  body .footer .footer-content img {
    width: 200px;
  }
  body .footer .footer-content .footer-img {
    flex-direction: column;
  }
  body .footer .footer-content .footer-img img {
    margin: 0 auto;
  }
  body .footer .footer-content .footer-img .footer-img-item {
    width: 100%;
    height: 251px;
    border-bottom: 0.8px solid white;
  }
  body .footer .footer-content .footer-img .footer-img-item .footer-img-text-container {
    letter-spacing: 1px;
  }
  body .footer .footer-content .footer-img .footer-img-item .footer-img-text-container .footer-img-text {
    font-size: 25px;
  }
  body .footer .footer-content .footer-img .footer-img-item .footer-img-text-container .footer-img-text-sub {
    font-size: 12px;
  }
  body .footer .footer-copyright {
    font-size: 10px;
    padding: 8px 0;
  }
  body .footer-reserve-button {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 17px 20px;
    font-size: 15px;
    z-index: 1000;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    text-decoration: none;
  }
  .slider {
    margin: 50px auto !important;
  }
  .slider .swiper {
    height: 225px !important;
  }
  .slider .swiper .swiper-slide {
    width: 292px !important;
    height: 193px !important;
  }
}
.slider {
  margin: 50px 0 150px auto;
  width: 85%;
}

.swiper {
  width: 100%;
  height: 250px;
  overflow: visible;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 320px !important;
  height: 212px;
  margin: auto 12.5px !important;
}
.swiper-slide img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-slide .slide-title {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #04343f;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  z-index: 10;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333;
}

.swiper-pagination-bullet {
  background: #333;
}

.swiper-pagination-bullet-active {
  background: #007aff;
}

@media (max-width: 768px) {
  .swiper {
    height: 250px;
  }
}/*# sourceMappingURL=styles.css.map */