@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* header, footer, main */
#private .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#private header a {
  text-decoration: none;
}
#private header .tel-box {
  right: calc(var(---recruit-button-size) + 16px);
}
#private header .tel-box a {
  display: block;
  color: #1C2A52;
}
#private header .contact-box a {
  line-height: 1.6;
}
#private header .tel-box.mail .txt {
  margin: -8px 0 0 0;
  text-align: center;
  font-size: 11px;
}
#private .navbar-nav > li > a {
  line-height: 20px;
}
#private .language-nav {
  right: 100px;
}
#private .language-nav ul li span {
  padding: 0.4rem 0.4rem;
}

#private footer {
  padding: 30px 0 0;
}

@media (max-width: 991px) {
  #private header .tel-box.mail {
    right: 195px;
  }
  #private .language-nav {
    right: 80px;
  }
}
@media (max-width: 767px) {
  #private header .tel-box.mail {
    right: 144px;
  }
  #private .language-nav {
    right: 44px;
  }
  #private .language-nav ul li {
    padding: 0 0.2rem;
  }
  #private .language-nav ul li span {
    padding: 0.3rem 0.3rem;
  }
}

#private main {
  padding-top: 110px;
}

/* Base Styles */
html {
  scroll-padding-top: 110px;
}

.private-cruise-page {
  /* Reset any inherited styles */
  all: initial;
  display: block;
  letter-spacing: 0.15em;
  font-family: 'Noto Sans JP', sans-serif;
}

.private-cruise-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.private-cruise-page,
.floating-menu {
  /* --primary: #0a3255; */
  --primary: #EF857D;
  /* --accent: #e2b13c; */
  --accent: #9d894a;
  /* --light: #f5f5f5; */
  --navy: #1C2A52;
  --light: #F9F7F3;
  --dark: #333;
  --dark-02: #6A676B;
  --text: #555;
  --transition-slow: 1s;
  --transition-medium: 0.6s;
  --transition-fast: 0.3s;

  --font-size-small: clamp(0.6rem, 0.6rem + 0.2 * (100vw - 480px) / 1440, 0.8rem);
  --font-size-medium: clamp(1rem, 1rem + 0.2 * (100vw - 480px) / 1440, 1.2rem);
  --font-size-large: clamp(1.2rem, 1.2rem + 0.3 * (100vw - 480px) / 1440, 1.5rem);
  --section-title-size: clamp(2.2rem, 2.2rem + 0.4 * (100vw - 480px) / 1440, 2.6rem);
}

.private-cruise-page {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
}

.private-cruise-page section {
  padding: clamp(2.5rem, 2.5rem + 2.5 * (100vw - 480px) / 1440, 5rem) 0;
  position: relative;
}

.private-cruise-page .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.private-cruise-page h1,
.private-cruise-page h2,
.private-cruise-page h3,
.private-cruise-page h4 {
  font-family: 'Noto Serif JP', serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.8rem;
  font-weight: 300;
}

h2,
h3 {
  font-size: var(--section-title-size);
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
}

/* h3のサブセクションタイトル */
#pier h3 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--dark-02);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
}

#pier h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  border-radius: 0.5px;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 20px 48px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}
#private .btn::before {
  border: none;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-accent:hover {
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.2rem;
  }
}

/* 1. Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Hero Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 2s ease, transform 8s ease;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.1);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-1 {
  background-image: url('../img/hero-01.jpg');
}

.hero-slide-2 {
  background-image: url('../img/hero-02.jpg');
}

.hero-slide-3 {
  background-image: url('../img/hero-03.jpg');
}

.hero-slide-4 {
  background-image: url('../img/hero-04.jpg');
}

/* スマホ用の背景画像 */
@media (max-width: 639px) {
  .hero-slide-1 {
    background-image: url('../img/hero-01-sp.jpg');
  }
  
  .hero-slide-3 {
    background-image: url('../img/hero-03-sp.jpg');
  }
  
}


@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero h1 {
  color: white;
  font-size: 3.7rem;
  margin-bottom: 2rem;
}

#hero p {
  font-size: var(--font-size-large);
  max-width: 880px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-medium) ease, transform var(--transition-medium) ease;
}

.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  width: 300px;
  height: auto;
}

.hero-title img {
  max-width: 100%;
}

.hero-btn {
  font-size: 1.6rem;
  padding: 16px 56px;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-title {
    width: 70%;
  }
  .hero-content.visible {
    transform: translateY(-120px);
  }
}


/* 2. Intro Section */
#intro {
  background-color: var(--light);
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 2rem + 6 * (100vw - 480px) / 1440, 8rem) 0;
}

.intro-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: 2rem;
}

.private-cruise-page .intro-text {
  grid-column: 2 / 8;
  grid-row: 1 / 2;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-medium) ease, transform var(--transition-medium) ease;
  z-index: 2;
}

.intro-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.private-cruise-page .intro-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: clamp(1rem, 1rem + 1 * (100vw - 480px) / 1440, 2rem);
  max-width: 100%;
  white-space: nowrap;
}

.private-cruise-page .intro-text-p {
  font-weight: 300;
  font-size: var(--font-size-medium);
}

.private-cruise-page .intro-img-1 {
  grid-column: 8 / 12;
  grid-row: 1 / 2;
  height: 450px;
  background-image: url('../img/intro-01.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition: opacity 2.5s ease, transform 2.5s ease, filter 3s ease;
  transition-delay: 0.5s;
}

.intro-img-2 {
  grid-column: 2 / 8;
  grid-row: 2 / 3;
  height: 400px;
  background-image: url('../img/intro-02.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition: opacity 2.5s ease, transform 2.5s ease, filter 3s ease;
  transition-delay: 1s;
  margin-top: 2rem;
}

.intro-img-3 {
  grid-column: 3 / 10;
  grid-row: 3 / 4;
  height: 450px;
  background-image: url('../img/intro-03.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition: opacity 2.5s ease, transform 2.5s ease, filter 3s ease;
  transition-delay: 1.5s;
  margin-top: 2rem;
  z-index: 2;
}

.intro-img-4 {
  grid-column: 8 / 12;
  grid-row: 2 / 3;
  height: 350px;
  margin-top: 4rem;
  background-image: url('../img/intro-04.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition: opacity 2.5s ease, transform 2.5s ease, filter 3s ease;
  transition-delay: 2s;
}

.intro-text-2 {
  grid-column: 3 / 11;
  grid-row: 4 / 5;
  text-align: center;
  padding: 3rem 0 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-medium) ease, transform var(--transition-medium) ease;
  transition-delay: 1.5s;
  font-size: var(--font-size-medium);
}

.intro-text-2-p {
  font-weight: 300;
  font-size: var(--font-size-medium);
}

.intro-text-2.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-img-1.visible,
.intro-img-2.visible,
.intro-img-3.visible,
.intro-img-4.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ~ 2XL */
@media (max-width: 1535px) {
  /* スタイル */
}

/* ~ Extra large */
@media (max-width: 1279px) {
  .private-cruise-page .intro-text {
    grid-column: 2 / 9;
  }

  .private-cruise-page .intro-img-1 {
    grid-column: 9 / 13;
  }
}

/* Large */
@media (max-width: 1023px) {
  .private-cruise-page .intro-text {
    grid-column: 2 / 12;
    grid-row: 1;
  }

  .private-cruise-page .intro-img-1 {
    grid-column: 2 / 7;
    grid-row: 2;
    height: 360px;
  }

  .intro-img-2 {
    grid-column: 2 / 12;
    grid-row: 3;
    height: 400px;
  }

  .intro-img-3 {
    grid-column: 6 / 12;
    grid-row: 4;
    height: 400px;
  }

  .intro-img-4 {
    grid-column: 2 / 12;
    grid-row: 5;
    height: 400px;
    margin-top: 2rem;
  }

  .intro-text-2 {
    grid-column: 2 / 12;
    grid-row: 6;
  }

}

@media (max-width: 767px) {
  .intro-container {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .private-cruise-page .intro-text,
  .private-cruise-page .intro-img-1,
  .intro-img-2,
  .intro-img-3,
  .intro-img-4,
  .intro-text-2 {
    grid-column: 1 / 13;
  }

  .private-cruise-page .intro-img-1,
  .intro-img-2,
  .intro-img-3,
  .intro-img-4 {
    height: 300px;
    margin-top: 0;
    border-radius: 8px;
  }

  .intro-quote {
    font-size: 1.8rem;
    white-space: normal;
    line-height: 1.6;
  }

  .intro-text-p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .intro-text-2-p {
    font-size: 1rem;
    line-height: 1.7;
  }

}

@media (max-width: 639px) {
  .private-cruise-page .intro-text {
    padding: 1rem 0;
  }

  .private-cruise-page .intro-quote {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .private-cruise-page .intro-quote {
    font-size: 1.3rem;
  }
}

/* 3. Story Timeline Section */
#story {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(3rem, 3rem + 3 * (100vw - 480px) / 1440, 6rem);
  background: linear-gradient(to bottom, #f5f5f5, #0a3255);
  transition: background 0.3s ease;
}

#story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero-01.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.1;
  z-index: 0;
}

#story .container {
  position: relative;
  z-index: 1;
}

.story-header {
  text-align: center;
  margin-bottom: 3rem;
}

.story-header-p {
  font-weight: 300;
  font-size: var(--font-size-medium);
}

/* Tabs */
.story-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.story-tab {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  background: white;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.story-tab.active {
  border-bottom: 2px solid var(--accent);
  color: var(--primary);
}

.story-tab:hover {
  color: var(--primary);
}

.timeline-container {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.timeline-container.active {
  display: block;
  opacity: 1;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--accent);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  position: relative;
  margin-bottom: 6rem;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(even) {
  align-self: flex-end;
  justify-content: flex-start;
  padding-left: 30px;
  padding-right: 0;
  left: 50%;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 25px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 2;
}

.timeline-item:nth-child(even)::before {
  right: auto;
  left: -10px;
}

.timeline-content {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
}

.timeline-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: blur(3px);
  transition: transform 1.2s ease, filter 1.5s ease;
}

.timeline-item.visible .timeline-img {
  transform: scale(1);
  filter: blur(0);
}

.timeline-text {
  padding: 2rem;
}

.timeline-text h3 {
  margin-top: 0;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.timeline-text p {
  font-size: clamp(14px, 14px + 2 * (100vw - 480px) / 1440, 16px);
}

.timeline-time {
  display: inline-block;
  padding: 5px 15px;
  background: var(--primary);
  color: white;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .timeline::before {
    display: none;
  }

  .timeline-item {
    width: 100%;
    left: 0;
    margin-bottom: clamp(2rem, 2rem + 4 * (100vw - 480px) / 1440, 6rem);
  }

  .timeline-item:nth-child(odd) {
    padding-right: clamp(24px, 24px + 46 * (100vw - 480px) / 1440, 70px);
  }

  .timeline-item:nth-child(even) {
    left: 0;
    padding-left: clamp(24px, 24px + 46 * (100vw - 480px) / 1440, 70px);
  }

  .timeline-item::before,
  .timeline-item:nth-child(even)::before {
    display: none;
  }

  .timeline-img {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .story-header {
    margin-bottom: 1.4rem;
  }

  .story-tabs {
    margin-bottom: 2rem;
  }

  .timeline-text h3 {
    font-size: 1.4rem;
  }
}

/* Small */
@media (max-width: 639px) {
  .timeline {
    padding: 0;
  }

  .timeline-img {
    height: 260px;
  }

  .timeline-text h3 {
    margin-bottom: 0.4rem;
  }

  .timeline-text {
    padding: 1.4rem;
  }

  .timeline-time {
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 480px) {
  .timeline-img {
    height: 220px;
  }
}

.description-text {
  margin-bottom: 3rem;
  font-weight: 300;
  font-size: var(--font-size-medium);
  text-align: center;
}

.description-text:not(:last-child) {
  margin-bottom: 1rem;
}

.description-text strong {
  font-weight: bold;
  font-size: 1.14em;
}

.commitment-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 2rem;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commitment-title span {
  font-style: italic;
  font-size: 0.9rem;
}

.commitment-title h3 {
  margin-bottom: 1rem;
  text-align: left;
}

h3.cruiser-sub-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--accent);
}

.cruiser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.cruiser-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 16px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    background 0.2s;
  background: #fff;
}

.cruiser-card:hover {
  box-shadow: 0 8px 24px rgba(34, 48, 90, 0.18);
  transform: translateY(-4px) scale(1.03);
  background: #f5f8fa;
}

.cruiser-card:active {
  opacity: 0.8;
}

.cruiser-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.cruise-main-img {
  display: block;
  max-width: 100%;
  margin: auto;
  margin-bottom: 3rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(34, 48, 90, 0.18);
}

.cruiser-card-body {
  padding: 16px 12px 0 12px;
  text-align: center;
}

.cruiser-card-title-en {
  color: #22305a;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 8px;
}

.cruiser-card-title-ja {
  color: #22305a;
  font-size: 1em;
  margin-bottom: 8px;
}

.cruiser-card-desc {
  font-size: 0.95em;
  color: #222;
  margin-top: 8px;
  border-top: 1px dashed #888;
  padding-top: 12px;
  line-height: 1.6;
}

.cruiser-card:hover .cruiser-card-title-en,
.cruiser-card:hover .cruiser-card-title-ja {
  color: #005bac;
  text-decoration: underline;
}

.cruiser-card:hover .cruiser-img {
  filter: brightness(0.92) saturate(1.1);
  transition: filter 0.2s;
}

@media (min-width: 1024px) {
  .cruiser-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cruiser-img {
    height: 200px;
  }

  .cruise-main-img {
    max-width: 900px;
  }
}

/* 5. Plans Section */
.plans-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.plan-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.plan-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.plan-content {
  padding: 2rem;
}

.private-cruise-page h3.plan-title {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  text-align: center;
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.plan-table {
  margin: 2rem 0 1.5rem 0;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  background: #fff;
}

.plan-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 400px;
  font-size: 1rem;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.plan-table th,
.plan-table td {
  padding: 0.7rem 0.5rem;
  text-align: center;
}

.plan-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--accent);
}

.plan-table tr:nth-child(even) td {
  background: #f9f7f3;
}

.plan-table tr:nth-child(odd) td {
  background: #fff;
}

.plan-table td {
  border-bottom: 1px solid #eee;
  color: var(--dark-02);
}

.plan-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 992px) {
  .plans-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .plan-content {
    padding: 1.4rem;
  }

  .private-cruise-page h3.plan-title {
    font-size: 1.3rem;
  }

  .plan-table {
    margin: 1rem 0 1.5rem 0;
  }

  .plan-table th {
    font-size: 1rem;
  }
}

/* オプション */
.private-cruise-option {
  margin-top: clamp(2rem, 2rem + 1.5 * (100vw - 480px) / 1440, 3.5rem);
  margin-bottom: clamp(2.5rem, 2.5rem + 2.5 * (100vw - 480px) / 1440, 5rem);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;

}

.option-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.option-title {
  margin-top: 8px !important;
  margin-bottom: 16px !important;
  font-family: 'Noto Sans JP', sans-serif!important;
  font-weight: 300!important;
  font-size: var(--font-size-medium);
  text-align: center;
  color: var(--text)!important;
}

@media (max-width: 1024px) {
  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .option-grid {
    gap: 1rem
  }

  .option-title {
    font-size: 1rem;
  }
}

.pier-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: #fff;
}

/* 桟橋カード */
.pier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.pier-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: row;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    background 0.2s;
  height: 120px;
}

.pier-card:active {
  opacity: 0.8;
}

.pier-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  flex-shrink: 0;
}

.pier-card-body {
  padding: 16px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.pier-card-title {
  color: #22305a;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pier-card-desc {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.4;
  flex: 1;
}

.pier-card-link {
  color: #EF857D;
  font-size: 0.85em;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  margin-bottom: 4px;
  padding-bottom: 8px;
}

.pier-card:hover .pier-card-title {
  color: #005bac;
}

.pier-card:hover .pier-img {
  filter: brightness(0.92) saturate(1.1);
  transition: filter 0.2s;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .pier-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pier-card {
    height: 100px;
  }

  .pier-img {
    width: 100px;
    height: 100px;
  }

  .pier-card-body {
    padding: 12px 12px 16px 12px;
  }

  .pier-card-title {
    font-size: 1em;
    margin-bottom: 6px;
  }

  .pier-card-desc {
    font-size: 0.85em;
    margin-bottom: 6px;
  }

  .pier-card-link {
    font-size: 0.8em;
  }
}

.pier-3-cards {
  margin: 4rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pier-3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  min-width: 0;
}

.pier-3-card {
  position: relative;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.pier-3-img-wrap {
  position: relative;
}

.pier-3-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pier-3-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-block;
  background: var(--dark-02);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.86rem;
  color: white;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pier-3-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
}

.pier-3-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.pier-3-desc {
  font-size: 0.95rem;
  color: var(--dark-02);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pier-3-btn {
  display: block;
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
  margin-top: auto;
  width: 160px;
  text-align: center;
}

.pier-3-btn:hover {
  background: transparent;
  color: var(--accent);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .pier-3-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pier-3-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .pier-3-img {
    height: 200px;
  }

  .pier-3-content {
    padding: 1.2rem;
  }

  .pier-3-title {
    margin-bottom: 1.3rem;
    font-size: 1.3rem;
  }

  .pier-3-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .pier-3-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .pier-3-title {
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
  }
}

/* 6. Customize Section */
#customize {
  background-image: url('../img/hero-04.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  position: relative;
}

#customize::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.7);
  z-index: 1;
}

#customize .container {
  position: relative;
  z-index: 2;
}

#customize h2 {
  color: white;
}

.customize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.customize-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
  transition: all var(--transition-medium) ease, opacity var(--transition-medium) ease, transform var(--transition-medium) ease;
}

.customize-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

#customize .customize-title {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--light) !important;
}

.customize-title+p {
  margin-bottom: 2rem;
}

.customize-item.visible {
  opacity: 1;
  transform: scale(1);
}

.customize-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

@media (max-width: 1023px) {
  .customize-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  h2.customize-section-title {
    font-size: 1.8rem;
  }

  .customize-title+p {
    text-align: left;
    font-size: 15px;
  }
}

@media (max-width: 639px) {
  .customize-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* Journal Section */
.journal-section {
  margin-top: 6rem;
  padding-top: 2rem;
  position: relative;
}

.journal-title {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #ffffff !important;
}

.journal-title-p {
  font-weight: 300;
  font-size: var(--font-size-medium);
}

.journal-section p {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.journal-cards {
  position: relative;
  padding: 2rem 0;
}

.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  width: auto;
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: #EF857D;
  width: 40px;
  height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: #EF857D;
  font-size: 1.2rem;
}

.swiper-pagination-bullet {
  background: #EF857D !important;
}

.swiper-pagination-bullet-active {
  background: #EF857D !important;
}

.journal-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.journal-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.journal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.journal-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.journal-content {
  padding: 1.5rem;
}

.journal-content h4 {
  margin-top: 0;
  font-size: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.journal-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(10, 50, 85, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.read-more::after {
  content: '→';
  margin-left: 5px;
  transition: all 0.3s ease;
}

.read-more:hover::after {
  margin-left: 10px;
}

@media (max-width: 767px) {
  h3.journal-title {
    font-size: 1.8rem;
  }

  .journal-content h4 {
    font-size: 1rem;
  }

  .read-more {
    font-size: 0.8rem;
  }
}

/* 4. Steps Section */
#steps {
  background-color: var(--light);
}

.steps-container {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-right: 2rem;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: left;
}

.step-content p {
  margin-bottom: 1rem;
  font-size: var(--font-size-medium);
}

@media (max-width: 992px) {
  .step-number {
    flex: 0 0 48px;
    height: 48px;
    margin-right: 1.6rem;
    padding-left: 6px;
    padding-bottom: 6px;
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .step {
    margin-bottom: 1.8rem;
  }

  .step-number {
    flex: 0 0 38px;
    height: 38px;
    font-size: 1.4rem;
    line-height: 1.8;
    padding-left: 2px;
    padding-bottom: 3px;
  }

  .step-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }

}

.private-cruise-page .private-cruise-concierge {
  margin: 4rem auto;
  padding: 3rem;
  max-width: 800px;
  /* background: white; */
  background: var(--dark-02);
  border: 1px solid var(--dark-02);
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.private-cruise-page .private-cruise-concierge h3 {
  text-align: center;
  /* color: var(--primary); */
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.private-cruise-page .private-cruise-concierge p {
  text-align: center;
  line-height: 1.8;
  /* color: var(--text); */
  color: white;
  margin-bottom: 0;
}

.private-cruise-page .private-cruise-concierge .btn,
.private-cruise-page .btn {
  margin-top: 2rem;
  display: inline-block;
  max-width: 100%;
  background: var(--accent);
  border-color: var(--accent);
  transition: all 0.5s ease;
}
.private-cruise-page .private-cruise-concierge .btn:hover {
  background-color: transparent;
  color: white;
}

@media (max-width: 767px) {
  .private-cruise-page .private-cruise-concierge {
    padding: 1.6rem;
  }

  .private-cruise-page .private-cruise-concierge h3 {
    font-size: 1.4rem;
  }

  .private-cruise-page .private-cruise-concierge .btn,
  .private-cruise-page .btn {
    width: 100%;
    font-size: 1.2rem;
  }
}

/* 7. FAQ Section */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-label {
  display: inline-block;
  margin-right: 0.7em;
  font-weight: bold;
  color: var(--primary);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1em;
}

.faq-label-a {
  color: var(--accent);
}

.faq-question,
.faq-answer {
  text-align: left;
}

.faq-question {
  font-weight: 600;
  font-size: var(--font-size-medium);
  color: var(--primary);
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  justify-content: start;
}

.faq-answer {
  padding-top: 0.5rem;
}

/* 8. Contact Section */
#contact {
  background-color: var(--dark-02);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* height: 100vh; */
}

#contact h2 {
  color: white;
}

.contact-tagline {
  font-size: var(--font-size-medium);
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.contact-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-medium) ease, transform var(--transition-medium) ease;
}

.contact-content.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .story-tabs {
    flex-direction: column;
    align-items: center;
  }

  .story-tab {
    width: 80%;
    margin: 0.5rem 0;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons a {
    display: block;
    width: 100%!important;
  }
}

@media (max-width: 480px) {
  .intro-container {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .intro-img-1,
  .intro-img-2,
  .intro-img-3,
  .intro-img-4 {
    height: 250px;
  }

  .intro-quote {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .intro-text-p,
  .intro-text-2-p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .intro-text,
  .intro-text-2 {
    padding: 1.5rem 1rem;
  }
}

/* Photo Gallery */
.photo-gallery {
  margin: 4rem 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1600px;
}

.gallery-container {
  width: 100%;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  animation: scroll 150s linear infinite;
  width: max-content;
}

.gallery-item {
  flex: 0 0 400px;
  height: 300px;
  margin-right: 20px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* タイトル装飾 */
.title-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.title-section-border {
  width: 120px;
  height: 1px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 0.5rem auto;
}

.title-section-en {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: 400;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.sub-title-section {
  font-size: 2rem;
}

.journal-title.title-section .title-section-en,
.customize-section-title.title-section .title-section-en,
.contact-title.title-section .title-section-en {
  color: #eee;
}

/* フォーティングメニュー */
.floating-menu {
  position: fixed;
  bottom: 20px;
  right: 66px;
  z-index: 1000;
}

.floating-menu-btn {
  background: linear-gradient(135deg, #9D894D, #9D894D);
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.3);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.4);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

.floating-menu-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(31, 41, 55, 0.6);
}

#floating-menu-text {
  transition: all 0.3s ease;
}

/* 回転アニメーション */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(31, 41, 55, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(31, 41, 55, 0.4);
  }
}

@keyframes periodic-rotate {
  0% {
    transform: scale(1) rotate(0deg);
  }

  25% {
    transform: scale(1.05) rotate(90deg);
  }

  50% {
    transform: scale(1.1) rotate(180deg);
  }

  75% {
    transform: scale(1.05) rotate(270deg);
  }

  100% {
    transform: scale(1) rotate(360deg);
  }
}

@keyframes glow {
  0% {
    border-color: rgba(255, 255, 255, 0.3);
  }

  50% {
    border-color: rgba(239, 133, 125, 0.6);
  }

  100% {
    border-color: rgba(255, 255, 255, 0.3);
  }
}

.floating-menu-btn {
  /* アニメーションなし */
}

.floating-menu-btn:hover {
  /* ホバー時のアニメーションなし */
}

.f-menu {
  position: absolute;
  bottom: 140px;
  right: 0;
  min-width: 220px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.f-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.f-menu-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.f-menu-item:last-child {
  border-bottom: none;
}

.f-menu-item:hover {
  background: #f8fafc;
  transform: translateX(5px);
  ;
}

.f-menu-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.f-menu-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.f-menu-desc {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--dark);
  line-height: 1.5;
}

@media (max-width: 767px) {
  .floating-menu-btn {
    width: 100px;
    height: 100px;
    font-size: 0.8rem;
  }
}

.menu-1 {
  background: var(--light);
}

.menu-2 {
  background: var(--light);
}

/* セクションナビゲーター */
.section-nav {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 99999;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f8c5c1;
  margin: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: #EF857D;
  transform: scale(1.5);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .floating-menu {
    bottom: 88px;
    right: 8px;
  }

  .floating-button {
    width: 70px;
    height: 70px;
    font-size: 0.6rem;
  }

  .debug-panel {
    position: relative;
    margin: 1rem;
    top: auto;
    left: auto;
  }

  .section-nav {
    display: none;
  }

  .section h2 {
    font-size: 2rem;
  }
}

/* ユーティリティークラス */
/* 改行制御 */
.br-pc {
  display: inline;
}

.br-sp {
  display: none;
}

/* 表示制御 */
.hidden-pc {
  display: none;
}

.hidden-sp {
  display: block;
}

.hidden-tablet {
  display: block;
}

/* レイアウト調整 */
.text-left-pc {
  text-align: left;
}

.text-center-pc {
  text-align: center;
}

.text-right-pc {
  text-align: right;
}

/* メディアクエリ対応 */
@media (max-width: 1023px) {
  .hidden-tablet {
    display: none;
  }
  
  .text-center-tablet {
    text-align: center;
  }
  
  .text-left-tablet {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
  
  .br-sp {
    display: inline;
  }
  
  .hidden-sp {
    display: none;
  }
  
  .text-center-sp {
    text-align: center;
  }
  
  .text-left-sp {
    text-align: left;
  }
  
  .text-right-sp {
    text-align: right;
  }
}

@media (max-width: 480px) {
  .hidden-xs {
    display: none;
  }
  
  .text-center-xs {
    text-align: center;
  }
}
