@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
/*変数設定用*/
@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .vpc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .vsp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .vsp {
    display: block;
  }
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  font-size: 1.6rem;
  color: #000;
  font-family: "Inter", sans-serif;
  overflow-x: clip;
  letter-spacing: 0.05em;
}

.dib {
  display: inline-block;
}

.inner {
  max-width: 124rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) and (max-width: 1240px) {
  .inner {
    padding-right: 2%;
    padding-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}

section[class^=sec-] {
  padding-block: 10rem;
}
@media screen and (max-width: 768px) {
  section[class^=sec-] {
    padding-block: 6rem;
  }
}

.sec-wrapper {
  margin: 0 0 60px;
}

.sec-title {
  font-size: 3.6rem;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 768px) {
  .sec-title {
    margin: 0 0 20px;
    font-size: 2.8rem;
  }
}
.sec-title i {
  color: #4CAF50;
  font-size: 3rem;
  margin-right: 1rem;
}
.sec-title.txt-left {
  text-align: left;
}

.sec-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ea5318;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-text {
    font-size: 1.4rem;
  }
}

.sec-bg {
  background-color: #e8f5e9;
}

.template-btn {
  display: grid;
  place-items: center;
  max-width: 200px;
  width: 100%;
  height: 5rem;
  border: 2px solid #ea5318;
  color: #ea5318;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  background-image: linear-gradient(45deg, #ea5318 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: all 0.5s ease;
  margin: 10px 0 0;
  border-radius: 4rem;
}
.template-btn.center {
  margin: 10px auto 0;
}
.template-btn:hover {
  background-position: 0;
  color: white;
}
.template-btn::after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 20px;
  transition: all 0.2s;
}
.template-btn:hover::after {
  right: 15px;
}

.h3-1 {
  display: flex;
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1.55;
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 0.9rem;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .h3-1 {
    font-size: 2.8rem;
  }
}
.h3-1::before {
  content: "";
  flex: 0 0 1.2rem;
  background-color: #4CAF50;
  margin-block: calc((1lh - 1em) / 2);
  translate: 0 2px;
}

.detail-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.55;
  border-bottom: 2px solid #e4e4e4;
  padding-bottom: 0.9rem;
  color: #ea5318;
  margin-bottom: 2rem;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .detail-ttl {
    font-size: 2rem;
  }
}
.detail-ttl i {
  color: #4CAF50;
  padding-right: 1rem;
}

.bread-crumbs-area {
  margin: 0 0 20px;
}
.bread-crumbs-area .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 8px;
}
@media screen and (max-width: 768px) {
  .bread-crumbs-area .breadcrumbs {
    font-size: 1.4rem;
  }
}

#page-top {
  position: fixed;
  bottom: 32px;
  right: 1.6%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #page-top {
    bottom: 7rem;
  }
}
#page-top a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ea5318;
  padding: 13px 14.5px;
  border-radius: 3px;
}
#page-top a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
}
#page-top a::after {
  color: #fff;
  font-size: 1.2rem;
  content: "TOP";
}

.fixed-bar {
  position: fixed;
  right: 0;
  top: 75%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}
.fixed-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  color: #fff !important;
  text-decoration: none;
  font-size: 10px;
  font-weight: bold;
  gap: 6px;
  writing-mode: horizontal-tb;
}
.fixed-bar__btn i {
  font-size: 20px;
}
.fixed-bar__btn--tel {
  background: #ea5318;
  border-radius: 8px 0 0 0;
}
.fixed-bar__btn--wa {
  background: #25d366;
  border-radius: 0 0 0 8px;
}
@media screen and (max-width: 768px) {
  .fixed-bar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    border-top: 1px solid #e5e5e5;
  }
  .fixed-bar__btn {
    flex: 1;
    padding: 10px 0;
  }
  .fixed-bar__btn--tel {
    border-radius: 0;
  }
  .fixed-bar__btn--wa {
    border-radius: 0;
  }
}

@keyframes pulse-badge {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* ↓アコーディオン↓ */
.accordion-1 {
  margin-bottom: 3rem;
}

.accordion-1 [data-accordion=trigger] {
  position: relative;
  text-align: justify;
  display: flex;
  align-items: center;
  gap: 0 2rem;
  background-color: #fff;
  width: 100%;
  padding-block: 1rem;
  padding-inline: 2rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  border-radius: 1rem;
  border: 1px solid #cacaca;
  letter-spacing: 0.05em;
  background-color: #f3f3f3;
}

.accordion-1.open [data-accordion=trigger] {
  border-radius: 1rem 1rem 0 0;
}

.accordion-1 [data-accordion=trigger]::before,
.accordion-1 [data-accordion=trigger]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3rem;
  translate: 0 -50%;
  width: 1.4rem;
  height: 0.2rem;
  background-color: #ea5318;
  transition: rotate 0.3s;
}

.accordion-1 [data-accordion=trigger]::after {
  rotate: 90deg;
}

.accordion-1 [data-accordion=trigger] .number {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ea5318;
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: calc(infinity * 1px);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #3a3a3a;
}

.accordion-1 .accordion-container {
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
  border-left: 1px solid #cacaca;
  border-right: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.accordion-1 [data-accordion=trigger][aria-expanded=false] + .accordion-container {
  max-height: 0;
}

.accordion-1 [data-accordion=trigger][aria-expanded=true]::after {
  rotate: 0deg;
}

.accordion-1 .accordion-container .accordion-inner {
  padding: 1.8rem 2.7rem;
  overflow: hidden;
}

.accordion-1 .accordion-container .accordion-inner p {
  text-align: justify;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .accordion-1 .accordion-container .accordion-inner p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .accordion-1 [data-accordion=trigger] {
    padding-inline: 2.4rem 4.8rem;
    font-size: 1.6rem;
  }
  .accordion-1 [data-accordion=trigger]::before,
  .accordion-1 [data-accordion=trigger]::after {
    right: 2rem;
  }
  .accordion-1 [data-accordion=trigger] .number {
    font-size: 1.4rem;
  }
}
/* ↑アコーディオン↑ */
.error-404 {
  padding: 100px 0;
  text-align: center;
}
.error-404__code {
  font-size: 120px;
  font-weight: 700;
  color: #e5e5e5;
  line-height: 1;
  margin: 0 0 16px;
}
.error-404__title {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin: 0 0 16px;
}
.error-404__desc {
  font-size: 15px;
  color: #888;
  margin: 0 0 40px;
}
.error-404__btn {
  display: inline-block;
  padding: 12px 32px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}
.error-404__btn:hover {
  background: #333;
}

header .header-tel {
  padding: 2rem 0;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  header .header-tel {
    display: none;
  }
}
header .header-tel .tel {
  display: flex;
  justify-content: space-between;
}
header .header-tel .tel-left {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  font-size: 1.4rem;
}
header .header-tel .tel-left a i {
  color: #ea5318;
  padding-right: 0.5rem;
}
header .header-tel .tel-left a i.fa-envelope {
  font-size: 1.8rem;
  transform: translateY(2px);
}
header .header-tel .tel-left a i.fa-phone {
  font-size: 1.5rem;
}
header .header-tel .tel-right {
  display: flex;
  column-gap: 2rem;
  align-items: center;
}
header .header-tel .tel-right a i {
  color: #ea5318;
  font-size: 1.8rem;
}
header .header-tel .tel-right a.language-btn {
  transform: translateY(-4px);
  width: 24px;
  height: 16px;
}
header .header-inner {
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  position: relative;
  z-index: 111111;
}
@media screen and (max-width: 768px) {
  header .header-inner {
    z-index: 100;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .logo-wrap {
    width: 12rem;
  }
}
header .header-inner.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap {
    background-color: #000;
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100lvh - 60px);
    transition: all 0.4s;
    z-index: 90;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
header .header-inner .nav-wrap nav .header-list {
  display: flex;
  justify-content: flex-end;
  column-gap: 30px;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list {
    row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
header .header-inner .nav-wrap nav .header-list li {
  position: relative;
}
header .header-inner .nav-wrap nav .header-list li a {
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .header-list li a {
    font-size: 1.6rem;
    text-transform: uppercase;
  }
}
header .header-inner .nav-wrap nav .has-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  header .header-inner .nav-wrap nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
  }
}
header .header-inner .nav-wrap nav .dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .dropdown {
    position: relative;
    background-color: initial;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }
}
header .header-inner .nav-wrap nav .dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  white-space: nowrap;
  color: #333;
}
@media screen and (min-width: 768px) {
  header .header-inner .nav-wrap nav .dropdown li a:hover {
    background: #f5f5f5;
    color: #111;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap nav .dropdown li a {
    color: white;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .nav-wrap.open {
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  header .header-inner .hamburger-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .header-inner .hamburger-btn {
    display: block;
    background-color: #fff;
    height: 100%;
    width: 2.5rem;
    position: relative;
  }
}
header .header-inner .hamburger-btn span {
  display: inline-block;
  width: 2.5rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all 0.4s;
}
header .header-inner .hamburger-btn span:nth-of-type(1) {
  opacity: 1;
}
header .header-inner .hamburger-btn span:nth-of-type(2) {
  top: -8px;
}
header .header-inner .hamburger-btn span:nth-of-type(3) {
  top: 8px;
}
header .header-inner .hamburger-btn.open span:nth-of-type(1) {
  opacity: 0;
}
header .header-inner .hamburger-btn.open span:nth-of-type(2) {
  top: 50%;
  rotate: 45deg;
}
header .header-inner .hamburger-btn.open span:nth-of-type(3) {
  top: 50%;
  rotate: -45deg;
}

footer {
  width: 100%;
  background: #000;
  color: #fff;
}
footer a {
  color: #fff;
}
footer .ft-content {
  display: flex;
  padding: 50px 0;
  justify-content: space-between;
  column-gap: 50px;
}
@media screen and (max-width: 768px) {
  footer .ft-content {
    display: block;
  }
}
footer .ft-content .ft-left .add-txt {
  font-size: 1.6rem;
  margin-top: 15px;
  line-height: 1.6;
}
footer .ft-content .ft-right {
  display: flex;
  justify-content: flex-end;
  column-gap: 50px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right {
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: initial;
    margin: 25px 0 0;
    row-gap: 12px;
  }
}
footer .ft-content .ft-right .ft-link-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 768px) {
  footer .ft-content .ft-right .ft-link-list {
    width: 50%;
  }
}
footer .ft-content .ft-right .ft-link-list li {
  line-height: 1.9;
}
footer .copy-area {
  text-align: center;
  padding: 15px 0;
}
footer .copy-area p {
  font-size: 1.2rem;
}

body.home .top-swiper {
  position: relative;
  height: 700px;
}
@media screen and (max-width: 768px) {
  body.home .top-swiper {
    height: 400px;
  }
}
body.home .top-swiper .swiper-wrapper,
body.home .top-swiper .swiper-slide {
  height: 100%;
}
body.home .top-swiper picture {
  display: block;
  height: 100%;
}
body.home .top-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home .sec-act .act {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  body.home .sec-act .act {
    grid-template-columns: 1fr;
  }
}
body.home .sec-act .act li {
  overflow: hidden;
}
body.home .sec-act .act li a {
  display: block;
  position: relative;
}
body.home .sec-act .act li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  opacity: 1;
  transition: all 0.3s ease;
}
body.home .sec-act .act li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.6rem;
  background: #ea5318;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  body.home .sec-act .act li a::before {
    opacity: 1;
  }
}
body.home .sec-act .act li a img {
  object-fit: cover;
  aspect-ratio: 4/3;
  width: 100%;
}
body.home .sec-act .act li a .content {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: all 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.home .sec-act .act li a .content {
    top: 50%;
  }
}
body.home .sec-act .act li a .content h3 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
body.home .sec-act .act li a .content span {
  color: #ea5318;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  body.home .sec-act .act li a .content span {
    opacity: 1;
  }
}
body.home .sec-act .act li a:hover .content {
  top: 52%;
}
body.home .sec-act .act li a:hover .content span {
  opacity: 1;
}
body.home .sec-act .act li a:hover::after {
  background: rgba(0, 0, 0, 0.6);
  top: 0;
}
body.home .sec-act .act li a:hover::before {
  opacity: 1;
}
body.home .sec-must.sec-bg {
  background-color: #e8f5e9;
}
body.home .sec-must .swiper {
  width: 100%;
  padding: 50px 0;
}
body.home .sec-must .swiper-slide {
  position: relative;
  width: 32rem;
  aspect-ratio: 3/4;
  border-radius: 14px;
  border: 1px solid rgba(177, 177, 177, 0.4);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.home .sec-must .swiper-slide {
    width: 28rem;
  }
}
body.home .sec-must .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}
body.home .sec-must .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  user-select: none;
}
body.home .sec-must .swiper-slide .tag {
  position: absolute;
  left: 0;
  top: 55%;
  padding: 1rem 2rem 1rem 1rem;
  border-radius: 0 2rem 2rem 0;
  color: white;
  font-size: 1.2rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.home .sec-must .swiper-slide .tag {
    top: 50%;
  }
}
body.home .sec-must .swiper-slide .content {
  position: absolute;
  top: 70%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body.home .sec-must .swiper-slide .content {
    top: 65%;
  }
}
body.home .sec-must .swiper-slide .content h3 {
  font-weight: 700;
  font-size: 2rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  padding-right: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  body.home .sec-must .swiper-slide .content h3 {
    font-size: 1.6rem;
  }
}
body.home .sec-must .swiper-slide .content p {
  color: white;
  margin-top: 1.5rem;
  width: max-content;
  margin-inline: auto;
  background: rgba(234, 83, 24, 0.9);
  backdrop-filter: blur(0.7rem);
  border-radius: 4rem;
  color: #fff;
  padding: 1rem 3rem;
}
body.home .sec-must .swiper-slide .content p span {
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  body.home .sec-must .swiper-slide .content p span {
    font-size: 1.6rem;
  }
}
body.home .sec-must .activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 768px) {
  body.home .sec-must .activities {
    grid-template-columns: 1fr;
  }
}
body.home .sec-must .activities-left {
  aspect-ratio: 3/2;
  overflow: hidden;
}
body.home .sec-must .activities-left a {
  aspect-ratio: 3/2;
  width: 100%;
  display: block;
}
body.home .sec-must .activities-left a img {
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: all 0.3s ease;
  width: 100%;
}
body.home .sec-must .activities-left:hover a img {
  transform: scale(1.2);
  transition: all 0.3s ease;
}
body.home .sec-must .activities-right {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  line-height: 1.5;
}
body.home .sec-must .activities-right h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
}
body.home .sec-must .activities-right p {
  font-size: 1.5rem;
}
body.home .sec-must .activities-right p span {
  color: #ea5318;
  font-weight: bold;
}
body.home .sec-youtube .video-wrapper {
  position: relative;
  width: 90rem;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  body.home .sec-youtube .video-wrapper {
    width: 100%;
  }
}
body.home .sec-youtube .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.home .sec-maps .maps iframe {
  height: 50rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body.home .sec-maps .maps iframe {
    height: 30rem;
  }
}

.under-page .under-mv-area {
  height: 40rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 0 20px;
  position: relative;
}
.under-page .under-mv-area::after {
  content: "";
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .under-page .under-mv-area {
    height: 220px;
  }
}
.under-page .under-mv-area .inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.under-page .under-mv-area .inner .under-main-ttl {
  font-size: 4.8rem;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .under-page .under-mv-area .inner .under-main-ttl {
    font-size: 3.4rem;
  }
}
.under-page main {
  margin-block: 10rem;
}
.under-page main.mt0 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .under-page main {
    margin-block: 5rem;
  }
}

.under-page.about .intro {
  display: flex;
  gap: 5rem;
  margin-top: 6rem;
  align-items: center;
}
.under-page.about .intro-left, .under-page.about .intro-right {
  width: 50%;
}
.under-page.about .intro-left h4 {
  margin-bottom: 2rem;
  font-weight: bold;
}
.under-page.about .intro-left p {
  line-height: 1.6;
}
.under-page.about .intro-left p span {
  font-weight: bold;
}
.under-page.about .intro-right figure figcaption {
  text-align: center;
  margin-top: 2rem;
}
.under-page.about .intro.rev {
  flex-direction: row-reverse;
}
.under-page.about .licence {
  display: flex;
  gap: 3rem;
}
.under-page.about .licence img {
  width: 100%;
}
.under-page.about .licence-img {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.under-page.about .licence-img:hover {
  opacity: 0.8;
}
.under-page.about .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.under-page.about .modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.under-page.about .modal-img {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.modal-overlay.active .under-page.about .modal-img {
  transform: scale(1);
}
.under-page.about .modal-img img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
}
.under-page.about .modal-close {
  position: absolute;
  top: -5.5rem;
  right: -5.5rem;
  font-size: 5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}
.under-page.about .modal-close:hover {
  opacity: 0.7;
}
.under-page.about .sec-teams .team blockquote {
  position: relative;
  padding: 2rem 2rem 2rem 4rem;
  border-left: 4px solid #ea5318;
  background: #f1f8f1;
  border-radius: 0 0.5rem 0.5rem 0;
  text-align: center;
}
.under-page.about .sec-teams .team blockquote::before {
  content: "“";
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-size: 8rem;
  color: #ea5318;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.under-page.about .sec-teams .team blockquote p {
  font-size: 2.8rem;
  font-style: italic;
  color: #333;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: bold;
}
.under-page.about .sec-teams .team blockquote cite {
  font-size: 2.4rem;
  color: #ea5318;
  font-weight: 600;
  font-style: normal;
}
.under-page.about .sec-teams .team-group {
  margin-top: 6rem;
}
.under-page.about .sec-teams .team-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}
.under-page.about .sec-teams .team-list img {
  aspect-ratio: 1/1;
}
.under-page.about .sec-teams .team-list h3 {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.6rem;
  margin-top: 2rem;
}
.under-page.about .sec-teams .team-list p {
  font-size: 1.2rem;
  color: #888;
  text-transform: uppercase;
  text-align: center;
  margin-top: 1rem;
}
.under-page.about .sec-teams .team-thanks {
  margin-top: 6rem;
}
.under-page.about .sec-teams .team-thanks h5 {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.under-page.about .sec-teams .team-thanks h5.mt50 {
  margin-top: 5rem;
}
.under-page.about .sec-teams .team-thanks p {
  line-height: 1.6;
}
.under-page.about .sec-teams .team-thanks p a {
  color: #ea5318;
}
.under-page.about .sec-teams .team-thanks p.team-fix {
  font-style: italic;
}
.under-page.about .sec-teams .team-thanks p.team-fix a {
  font-weight: bold;
  font-style: normal;
}

.tours-wrapper {
  display: grid;
  grid-template-columns: 77rem minmax(20rem, 40rem);
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .tours-wrapper {
    grid-template-columns: minmax(60rem, 77rem) minmax(20rem, 40rem);
  }
}
@media screen and (max-width: 768px) {
  .tours-wrapper {
    grid-template-columns: 1fr;
  }
}
.tours-item {
  transition: transform 0.3s, box-shadow 0.3s;
}
.tours-item:not(:first-child) {
  margin-top: 5rem;
}
.tours-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.tours-item a {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .tours-item a {
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 2rem;
  }
}
.tours-img {
  width: 31%;
  display: block;
  height: auto;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .tours-img {
    width: 100%;
    height: 30rem;
  }
}
.tours-img img {
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .tours-img img {
    width: 100%;
    height: 100%;
  }
}
.tours-img .badge {
  position: absolute;
  top: -2.8rem;
  left: -3.2rem;
}
.tours-img .badge img {
  width: 8rem;
  height: auto;
  animation: pulse-badge 1s infinite;
}
.tours-content {
  padding-left: 2rem;
  padding-right: 2rem;
  border-right: 2px solid white;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .tours-content {
    border-right: none;
    margin-right: 0;
  }
}
.tours-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .tours-content h3 {
    margin-bottom: 1.5rem;
  }
}
.tours-content p {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .tours-content p {
    margin-bottom: 1rem;
  }
}
.tours-content p i {
  color: #ea5318;
}
.tours-price {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 20%;
  padding-right: 2rem;
}
@media screen and (max-width: 768px) {
  .tours-price {
    width: 100%;
    padding-inline: 2rem;
  }
}
.tours-price .from {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .tours-price .from {
    margin-bottom: 1rem;
  }
}
.tours-price .price {
  color: #ea5318;
  font-weight: bold;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .tours-price .price {
    margin-bottom: 2rem;
  }
}
.tours-price .btn-link {
  font-size: 1rem;
  padding: 1.5rem;
  background-color: #ea5318;
  color: white;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tours-price .btn-link {
    width: 100%;
    font-size: 1.4rem;
  }
}
.tours-right {
  position: sticky;
  top: 10rem;
  align-self: start;
}
.tours .sidebar-block {
  background-color: #f5f5f5;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}
.tours .sidebar-block h4 {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #ea5318;
  text-transform: uppercase;
}
.tours .sidebar-block input[type=text] {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  font-size: 1.4rem;
  outline: none;
}
.tours .sidebar-block input[type=text]:focus {
  border-color: #ea5318;
}
.tours .sidebar-block ul {
  list-style: none;
}
.tours .sidebar-block ul li {
  border-bottom: 1px solid #ddd;
}
.tours .sidebar-block ul li a {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #333;
  transition: color 0.2s;
}
.tours .sidebar-block ul li a:hover {
  color: #ea5318;
}
.tours .sidebar-block ul li a span {
  color: #999;
}

.single-tours .box-detail {
  display: grid;
  grid-template-columns: 86rem 37rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .single-tours .box-detail {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
.single-tours .price {
  width: 37rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 8rem;
  z-index: 1;
  background: white;
}
@media screen and (max-width: 1240px) {
  .single-tours .price {
    right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .single-tours .price {
    width: 100%;
  }
}
.single-tours .price h3 {
  background-color: #ea5318;
  font-size: 1.8rem;
  text-align: center;
  padding-block: 1.5rem;
  color: white;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
}
.single-tours .price-content {
  display: flex;
  justify-content: center;
  align-items: end;
  background: linear-gradient(to right, #ea5318, #ea6c18);
  color: white;
  padding-block: 3rem;
  gap: 1rem;
}
.single-tours .price-content .fa-tags {
  transform: rotate(90deg);
  font-size: 3rem;
  color: white;
}
.single-tours .price-content .num {
  font-size: 3rem;
  font-weight: bold;
}
.single-tours .price-list {
  display: grid;
  padding: 3rem 2rem 2rem 3rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
.single-tours .price-list li:first-child {
  grid-column: 1/3;
}
.single-tours .price-list li i {
  margin-right: 1rem;
  color: #ea5318;
}
.single-tours .price-code {
  padding: 2rem 3rem;
  background-color: #f5f5f5;
  line-height: 1.7;
}
.single-tours .price-code div {
  margin-bottom: 1rem;
}
.single-tours .price-code div i {
  margin-right: 1rem;
  color: #ea5318;
}
.single-tours .price-code div strong {
  font-weight: bold;
  display: inline-block;
  margin-right: 1rem;
  text-transform: uppercase;
}
.single-tours .details {
  padding-right: 3rem;
}
@media screen and (max-width: 768px) {
  .single-tours .details {
    padding-right: 0;
  }
}
.single-tours .details h2 {
  font-size: 3.2rem;
  margin-bottom: 5rem;
  font-weight: bold;
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .single-tours .details h2 {
    font-size: 2.4rem;
  }
}
.single-tours .details .overview {
  margin-bottom: 6rem;
}
.single-tours .details .overview p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .single-tours .details .overview p {
    font-size: 1.4rem;
  }
}
.single-tours .details .overview ul {
  display: grid;
  grid-template-columns: 20rem 1fr;
  line-height: 1.8;
  border: 1px solid #dfdfdf;
}
@media screen and (max-width: 768px) {
  .single-tours .details .overview ul {
    grid-template-columns: 10rem 1fr;
    font-size: 1.4rem;
  }
}
.single-tours .details .overview ul li:first-child {
  font-weight: 600;
  background: #ecf2f0;
}
.single-tours .details .overview ul li {
  padding: 1rem 2rem;
}
.single-tours .details .overview ul li p {
  margin-bottom: 0;
}
.single-tours .details .overview ul .table-content p {
  margin: 0 0 8px 0;
}
.single-tours .details .overview ul .table-content strong {
  font-weight: bold;
}
.single-tours .details .overview ul .table-content em {
  font-style: italic;
}
.single-tours .details .overview ul .table-content br {
  line-height: 1.6;
}
.single-tours .details .itinerary,
.single-tours .details .hightlight,
.single-tours .details .photo,
.single-tours .details .detail-price,
.single-tours .details .lunch {
  margin-bottom: 6rem;
  line-height: 1.8;
}
.single-tours .details .itinerary .accordion-1 [data-accordion=trigger] {
  font-family: "Josefin Sans", sans-serif;
}
.single-tours .details .itinerary .accordion-1 .accordion-container p {
  margin: 0 0 8px 0;
}
.single-tours .details .itinerary .accordion-1 .accordion-container strong {
  font-weight: bold;
}
.single-tours .details .itinerary .accordion-1 .accordion-container em {
  font-style: italic;
}
.single-tours .details .itinerary .accordion-1 .accordion-container br {
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .single-tours .details .hightlight p {
    font-size: 1.4rem;
  }
}
.single-tours .details .photo .main-swiper {
  position: relative;
  overflow-x: hidden;
}
.single-tours .details .photo .main-swiper .swiper-wrapper {
  height: 40rem;
}
.single-tours .details .photo .main-swiper .swiper-slide {
  max-height: 800px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-tours .details .photo .main-swiper .swiper-slide picture {
  width: 100%;
  height: 100%;
}
.single-tours .details .photo .main-swiper .swiper-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 800px;
}
.single-tours .details .photo .main-swiper .main-swiper-pagination {
  text-align: center;
}
.single-tours .details .photo .swiper-button-next,
.single-tours .details .photo .swiper-button-prev {
  width: 41px;
  height: 41px;
}
.single-tours .details .photo .swiper-button-next::after,
.single-tours .details .photo .swiper-button-prev::after {
  content: "";
  display: block;
  width: 41px;
  height: 41px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.single-tours .details .photo .swiper-button-next::after {
  background-image: url(../img/common/arrow-slider-right.png);
}
.single-tours .details .photo .swiper-button-prev::after {
  background-image: url(../img/common/arrow-slider-left.png);
}
.single-tours .details .photo .thumb-swiper {
  margin-top: 20px;
  height: 10rem;
}
@media screen and (max-width: 768px) {
  .single-tours .details .photo .thumb-swiper {
    margin-top: 15px;
    height: 5rem;
  }
}
.single-tours .details .photo .thumb-swiper .swiper-wrapper.center-thumbs {
  justify-content: center;
}
.single-tours .details .photo .thumb-swiper .swiper-slide {
  cursor: pointer;
  height: 100%;
}
.single-tours .details .photo .thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-tours .details .detail-price-list {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .single-tours .details .detail-price-list {
    font-size: 1.4rem;
  }
}
.single-tours .details .detail-price-list li {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.single-tours .details .detail-price-list .label {
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
  flex: 1;
  gap: 1rem;
}
.single-tours .details .detail-price-list .label::after {
  content: "";
  flex: 1;
  border-bottom: 2px dotted #ccc;
  margin-bottom: 0.3rem;
}
.single-tours .details .detail-price-num {
  white-space: nowrap;
}
.single-tours .details .detail-price-note p:first-child {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Josefin Sans";
}
@media screen and (max-width: 768px) {
  .single-tours .details .detail-price-note p:last-child {
    font-size: 1.4rem;
  }
}
.single-tours .details .lunch-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .single-tours .details .lunch-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.single-tours .details .lunch-list-menu {
  grid-row: span 2;
}
.single-tours .details .lunch-list-menu h5 {
  color: #ff9411;
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .single-tours .details .lunch-list-menu p {
    font-size: 1.4rem;
  }
}
.single-tours .details .lunch-list-price h5 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .single-tours .details .lunch-list-price p {
    font-size: 1.4rem;
  }
}
.single-tours .details .lunch-list-notice h5 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .single-tours .details .lunch-list-notice p {
    font-size: 1.4rem;
  }
}
.single-tours .related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  margin-bottom: 7rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .single-tours .related {
    grid-template-columns: 1fr;
  }
}
.single-tours .related-left {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.single-tours .related-left a {
  aspect-ratio: 3/2;
  width: 100%;
  display: block;
}
.single-tours .related-left a img {
  object-fit: cover;
  aspect-ratio: 3/2;
  transition: all 0.3s ease;
  width: 100%;
}
.single-tours .related-left:hover a img {
  transform: scale(1.2);
  transition: all 0.3s ease;
}
.single-tours .related-right {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
  line-height: 1.5;
}
.single-tours .related-right h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
}
.single-tours .related-right p {
  font-size: 1.5rem;
}
.single-tours .related-right p span {
  color: #ea5318;
  font-weight: bold;
}

.services-hero {
  text-align: center;
  padding: 0px 20px 80px;
}
.services-label {
  font-size: 13px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.services-title {
  font-size: 36px;
  font-weight: 500;
  margin: 0 0 16px;
}
.services-desc {
  font-size: 16px;
  color: #555;
  margin: 0 auto;
  line-height: 1.7;
}
.services-list {
  border-top: 1px solid #e5e5e5;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid #e5e5e5;
}
.service-row--reverse .service-row__image {
  order: 2;
}
.service-row--reverse .service-row__content {
  order: 1;
}
.service-row__image {
  overflow: hidden;
  background: #f5f5f5;
}
.service-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-row__image:hover img {
  transform: scale(1.03);
}
.service-row__image-placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
}
.service-row__content {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #e5e5e5;
}
.service-row--reverse .service-row__content {
  border-left: none;
  border-right: 1px solid #e5e5e5;
}
.service-row__number {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}
.service-row__title {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.3;
}
.service-row__text {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  margin: 0 0 28px;
}
.service-row__text .span01 {
  color: #40bd5f;
  font-weight: bold;
}
.service-row__text .span02 {
  color: #ea5318;
  font-weight: bold;
}
.service-row__text .span03 {
  color: #47a2b6;
  font-weight: bold;
}
.service-row__text strong {
  font-weight: bold;
}
.service-row__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  width: fit-content;
  transition: opacity 0.2s;
}
.service-row__link:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-row--reverse .service-row__image {
    order: 1;
  }
  .service-row--reverse .service-row__content {
    order: 2;
  }
  .service-row__image {
    height: 260px;
  }
  .service-row__content {
    padding: 36px 24px;
    border-left: none !important;
    border-right: none !important;
  }
  .travel-service__title {
    font-size: 26px;
  }
  .travel-service__hero {
    padding: 40px 20px 50px;
  }
}
.boats__body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.boats__desc {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin: 0 0 2.5rem;
}
.boats__section {
  margin-bottom: 2.5rem;
}
.boats__label {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.boats__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  margin-top: 1rem;
}
.boats__nav-back, .boats__nav-next {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.boats__nav-back:hover, .boats__nav-next:hover {
  color: #111;
}

.capacity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.capacity-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.capacity-card i {
  font-size: 28px;
  color: #333;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.capacity-card__num {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: #111;
}
.capacity-card__sub {
  font-size: 13px;
  color: #333;
  margin: 4px 0 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.feature-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}
.feature-card i {
  font-size: 28px;
  color: #333;
  margin: 0 0 14px;
  display: block;
}
.feature-card__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #111;
}
.feature-card__text {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}

.maintenance {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.maintenance i {
  font-size: 28px;
  color: #333;
  margin: 0 0 14px;
  display: block;
}
.maintenance__title {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #111;
}
.maintenance__text {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery-item {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__wrap {
  position: relative;
  display: inline-flex;
}
.lightbox__img {
  max-width: 60vw;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  background-color: white;
  width: 3rem;
  height: 3rem;
}
.lightbox__close i {
  font-size: 2.5rem;
}

.restaurants__body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.restaurants__desc {
  font-size: 16px;
  color: #333;
  line-height: 1.9;
  margin: 0 0 2.5rem;
}
.restaurants__section {
  margin-bottom: 2rem;
}
.restaurants__label {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.restaurants__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  margin-top: 1rem;
}
.restaurants__nav-back, .restaurants__nav-next {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.restaurants__nav-back:hover, .restaurants__nav-next:hover {
  color: #111;
}

.resto-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 28px 24px;
}
.resto-block__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resto-block__icon i {
  font-size: 20px;
  color: #888;
}
.resto-block__title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.resto-block__text {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .resto-block {
    flex-direction: column;
    gap: 16px;
  }
  .capacity-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .maintenance {
    flex-direction: column;
    gap: 12px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog {
  padding: 60px 0;
}
.blog .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: box-shadow 0.2s ease;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.blog-card__img-wrap {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card__img {
  transform: scale(1.04);
}
.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__date {
  font-size: 12px;
  color: #aaa;
  margin: 0 0 8px;
}
.blog-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.5;
}
.blog-card__title a {
  text-decoration: none;
  color: inherit;
}
.blog-card__title a:hover {
  color: #555;
}
.blog-card__excerpt {
  font-size: 13px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card__more {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  align-self: flex-start;
}
.blog-card__more:hover {
  color: #000;
}

.blog-pagination {
  margin-top: 48px;
  text-align: center;
}
.blog-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers.current {
  background: #111;
  color: #fff;
  border-color: #111;
}

.blog-empty {
  text-align: center;
  color: #aaa;
  font-size: 15px;
  padding: 60px 0;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.single-post__hero {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.single-post__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-post__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.single-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.single-post__date {
  font-size: 13px;
  color: #aaa;
}
.single-post__cat {
  font-size: 12px;
  color: #fff;
  background: #333;
  border-radius: 4px;
  padding: 2px 10px;
  text-decoration: none;
}
.single-post__cat a {
  color: inherit;
  text-decoration: none;
}
.single-post__title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin: 0 0 40px;
}
.single-post__content {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}
.single-post__content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e5e5;
}
.single-post__content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111;
  margin: 32px 0 12px;
}
.single-post__content p {
  margin: 0 0 20px;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
}
.single-post__content ul,
.single-post__content ol {
  padding-left: 24px;
  margin: 0 0 20px;
}
.single-post__content ul li,
.single-post__content ol li {
  margin-bottom: 8px;
}
.single-post__content strong {
  color: #111;
}
.single-post__content a {
  color: #333;
  text-decoration: underline;
}
.single-post__content a:hover {
  color: #000;
}
.single-post__content blockquote {
  border-left: 3px solid #e5e5e5;
  padding: 12px 20px;
  margin: 24px 0;
  color: #777;
  font-style: italic;
}
.single-post__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 48px;
}
.single-post__nav a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  max-width: 45%;
  line-height: 1.5;
}
.single-post__nav a:hover {
  color: #111;
}
.single-post__nav-next {
  text-align: right;
}
.single-post__back {
  margin-top: 24px;
}
.single-post__back a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
}
.single-post__back a:hover {
  color: #111;
}

@media (max-width: 768px) {
  .single-post__hero {
    max-height: 260px;
  }
  .single-post__title {
    font-size: 22px;
  }
  .single-post__nav {
    flex-direction: column;
    gap: 12px;
  }
  .single-post__nav a {
    max-width: 100%;
  }
  .single-post__nav-next {
    text-align: left;
  }
}
.contact .sec-submit {
  background-color: #e8f5e9;
}
.contact .sec-submit .submit h3 {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 768px) {
  .contact .sec-submit .submit h3 {
    font-size: 2.6rem;
  }
}
.contact .sec-submit .submit p {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  font-size: 1.9rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .contact .sec-submit .submit p {
    font-size: 1.4rem;
  }
}
.contact .contact-section {
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.contact .contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, rgba(180, 140, 80, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact .section-label {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #ea5318;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.contact .section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .contact .section-title {
    font-size: 2.6rem;
  }
}
.contact .section-subtitle {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .contact .section-subtitle {
    font-size: 1.4rem;
  }
}
.contact .divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ea5318, transparent);
  margin: 0 auto 55px;
}
.contact .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(234, 83, 24, 0.6);
  border-radius: 2px;
  overflow: hidden;
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact .contact-card {
  padding: 48px 36px;
  text-align: center;
  transition: background 0.3s ease;
}
.contact .contact-card:not(:last-child) {
  border-right: 1px solid #ea5318;
}
@media screen and (max-width: 768px) {
  .contact .contact-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #ea5318;
  }
}
.contact .contact-card:hover {
  background: #e8f5e9;
}
.contact .icon-wrap {
  width: 56px;
  height: 56px;
  border: 2px solid #ea5318;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: border-color 0.3s;
}
.contact .icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #ea5318;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact .card-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: #ea5318;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact .card-line {
  width: 24px;
  height: 1px;
  background: rgba(234, 83, 24, 0.4);
  margin: 0 auto 20px;
}
.contact .contact-item {
  margin-bottom: 12px;
}
.contact .contact-value {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.contact .contact-name {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact .contact-link {
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.contact .address-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.contact .map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ea5318;
  text-decoration: none;
  border-bottom: 1px solid #ea5318;
  padding-bottom: 2px;
}
.contact .sec-maps .maps iframe {
  height: 50rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact .sec-maps .maps iframe {
    height: 30rem;
  }
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
  font-weight: bold;
  margin: 1em 0 0.5em;
  line-height: 1.4;
}

.wysiwyg-content h1 {
  font-size: 2em;
}

.wysiwyg-content h2 {
  font-size: 1.75em;
}

.wysiwyg-content h3 {
  font-size: 1.5em;
}

.wysiwyg-content h4 {
  font-size: 1.25em;
}

.wysiwyg-content h5 {
  font-size: 1.1em;
}

.wysiwyg-content h6 {
  font-size: 1em;
}

.wysiwyg-content ul,
.wysiwyg-content ol {
  padding-left: 1.5em;
  margin: 0.75em 0;
}

.wysiwyg-content ul {
  list-style-type: disc;
}

.wysiwyg-content ol {
  list-style-type: decimal;
}

.wysiwyg-content ul li {
  list-style-type: disc;
}

.wysiwyg-content ol li {
  list-style-type: decimal;
}

.wysiwyg-content li {
  margin-bottom: 0.4em;
  line-height: 1.6;
  display: list-item;
}

.wysiwyg-content ul ul {
  list-style-type: circle;
  margin: 0.3em 0;
}

.wysiwyg-content ul ul li {
  list-style-type: circle;
}

.wysiwyg-content ul ul ul {
  list-style-type: square;
}

.wysiwyg-content ul ul ul li {
  list-style-type: square;
}

.wysiwyg-content a {
  color: inherit;
  text-decoration: underline;
}

.wysiwyg-content a:hover {
  opacity: 0.7;
}

.wysiwyg-content strong,
.wysiwyg-content b {
  font-weight: bold;
}

.wysiwyg-content em,
.wysiwyg-content i {
  font-style: italic;
}

.wysiwyg-content u {
  text-decoration: underline;
}

.wysiwyg-content s,
.wysiwyg-content del {
  text-decoration: line-through;
}

.wysiwyg-content blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding: 0.5em 1em;
  color: #666;
  font-style: italic;
}

.wysiwyg-content pre {
  background: #f4f4f4;
  padding: 1em;
  overflow-x: auto;
  border-radius: 4px;
  margin: 1em 0;
}

.wysiwyg-content code {
  background: #f4f4f4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

.wysiwyg-content pre code {
  background: none;
  padding: 0;
}

.wysiwyg-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.wysiwyg-content table th,
.wysiwyg-content table td {
  border: 1px solid #ddd;
  padding: 0.5em 0.75em;
  text-align: left;
}

.wysiwyg-content table th {
  background: #f4f4f4;
  font-weight: bold;
}

.wysiwyg-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
}

.wysiwyg-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5em 0;
}