*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  color: #333;
  background: #fff;
}

/* ========== HERO ========== */
@keyframes kenburns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.08) translate(-2%, 1%); }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to bottom, #fff 70%, transparent 70%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: #8fa4aa;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/noise.png') repeat;
  opacity: 0.1;
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  animation: kenburns 10s ease-in-out infinite alternate;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}

.sailboat-icon {
  width: 500px;
  height: auto;
}

.hero-menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(58,45,38,0.85);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 99;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-menu-btn.is-hidden {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

.hero-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.hero-reservation {
  position: fixed;
  right: 24px;
  bottom: 40px;
  z-index: 99;
  width: 140px;
  height: 140px;
  background: #3a2d26;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  cursor: pointer;
}

@keyframes fuyo {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.hero-reservation:hover {
  animation: fuyo 0.8s ease-in-out infinite;
}

.hero-reservation .en {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #c9b99a;
  font-family: 'Jost', sans-serif;
}

.hero-reservation .ja {
  font-size: 18px;
  font-weight: 700;
}
/***********20260602追加分***********/

.hero-notice-box{
  position:absolute;
  left:40%;
  top:62%;
  transform:translateX(-50%);
  background:rgba(255,255,255,.9);
  padding:20px 30px;
  text-align:center;
  border-radius:4px;
  color:#3a2d26;
  z-index:20;
}

.notice-title{
  font-size:30px;
  font-weight:700;
  margin-bottom:10px;
}

.notice-text{
  font-size:20px;
  line-height:1.8;
}

@media (max-width:767px){

.hero-notice-box{
    left:50%;
    top:70%;
    width:80%;
    padding:15px;
}

.notice-title{
    font-size:18px;
}

.notice-text{
    font-size:12px;
}
}



/* ========== NAV DRAWER ========== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 340px;
  height: 100vh;
  background: #3a2d26;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
  display: flex;
  flex-direction: column;
  padding: 40px 40px 48px;
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 32px;
}

.nav-close span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
}

.nav-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }

.nav-logo {
  margin-bottom: 40px;
  text-align: center;
}

.nav-logo-img {
  width: 100px;
  height: auto;
}

.nav-list {
  list-style: none;
  flex: 1;
}

.nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-link:hover { opacity: 0.7; }

.nav-en {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  font-family: 'Jost', sans-serif;
}

.nav-ja {
  font-size: 11px;
  color: #c9b99a;
  letter-spacing: 0.1em;
}

.nav-link--reservation .nav-en {
  color: #e8c84a;
}

.nav-info {
  margin-top: 40px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ========== SECTIONS COMMON ========== */
.section-bg {
  background-color: #8fa4aa;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.two-col .col-img {
  overflow: hidden;
}

.col-img img,
.col-img .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-text {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.section-label-en {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
  font-family: 'Jost', sans-serif;
}

.section-label-ja {
  font-size: 13px;
  color: #d0dde0;
  margin-top: 4px;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

/* ========== ABOUT ========== */
.about-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #8fa4aa;
  position: relative;
}

.about-section::before,
.menu-section::before,
.access-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/noise.png') repeat;
  opacity: 0.1;
  pointer-events: none;
}

.about-section .col-text {
  background: transparent;
}

.about-heading {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 24px;
}

.about-body {
  font-size: 14px;
  line-height: 2;
  color: #e8f0f2;
}

br.sp-br {
  display: none;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========== MENU ========== */
.menu-section {
  padding-bottom: 120px;
  background-color: #8fa4aa;
  position: relative;
}

.menu-section .col-text {
  background: transparent;
  order: -1;
}

.menu-section .col-img {
  order: 1;
}

.menu-body {
  font-size: 14px;
  line-height: 2;
  color: #e8f0f2;
  margin-bottom: 32px;
}

.btn-coming-soon {
  display: inline-block;
  padding: 12px 40px;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  width: fit-content;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn-map {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 32px;
  border: 1.5px solid #fff;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: transparent;
  width: fit-content;
  transition: background 0.2s, color 0.2s;
}

.btn-map:hover {
  background: #fff;
  color: #8fa4aa;
}

/* ========== ACCESS ========== */
.access-section {
  padding-bottom: 120px;
  background-color: #8fa4aa;
  position: relative;
}

.access-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #e8f0f2;
  line-height: 1.9;
}

.access-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.access-table tr:first-child {
  border-top: 1px solid rgba(255,255,255,0.15);
}

.access-table td {
  padding: 8px 0;
  vertical-align: top;
}

.access-table td:first-child {
  width: 80px;
  color: #c8d8dc;
}

/* ========== MAP ========== */
.map-section {
  background: #e8e0d0;
}

.map-embed {
  width: 100%;
  height: 480px;
  background: #c8d8c8;
  position: relative;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px) 0 0 / 40px 40px,
    #7aaa7a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.directions-section {
  background: #fff;
  padding: 64px 40px 80px;
}

.directions-inner {
  max-width: 860px;
  margin: 0 auto;
}

.directions-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.directions-title {
  font-size: 15px;
  letter-spacing: 0.15em;
  color: #333;
}

.directions-link {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.directions-link:hover { color: #333; }

.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}

.direction-step {
  background: none;
}

.step-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
}

.step-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.step-number {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 2px 8px;
}

.step-caption {
  font-size: 13px;
  color: #555;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/* ========== FOOTER ========== */
footer {
  background: #8fa4aa;
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #e0ecf0;
  letter-spacing: 0.1em;
}

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
  .sailboat-icon {
    width: 340px;
  }

  .col-text {
    padding: 48px 40px;
  }

  .directions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 767px) {

  br.sp-br {
    display: block;
  }

  /* HERO */
  .hero {
    background-image: linear-gradient(to bottom, #fff 70%, transparent 70%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: #8fa4aa;
  }

  .hero-bg-img {
    width: 100%;
    height: 100%;
    top: 0;
  }

  .hero-logo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: auto;
  }

  .sailboat-icon {
    width: 200px;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.4));
  }

  .hero-reservation {
    width: 110px;
    height: 110px;
    bottom: 24px;
    right: 16px;
  }

  .hero-reservation .en {
    font-size: 11px;
  }

  .hero-reservation .ja {
    font-size: 15px;
  }

  /* NAV DRAWER */
  .nav-drawer {
    width: 100%;
  }

  /* TWO-COL SECTIONS */
  .two-col {
    grid-template-columns: 1fr;
  }

  .two-col .col-img {
    min-height: 280px;
  }

  .menu-section .col-text {
    order: 1;
  }

  .menu-section .col-img {
    order: 0;
  }

  .col-text {
    padding: 48px 24px;
  }

  .section-label-en {
    font-size: 26px;
  }

  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .menu-section,
  .access-section {
    padding-bottom: 60px;
  }

  .about-heading {
    font-size: 22px;
  }

  /* MAP & DIRECTIONS */
  .map-embed {
    height: 300px;
  }

  .directions-section {
    padding: 48px 20px 60px;
  }

  .directions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .step-img {
    height: 120px;
  }
}

