@charset "UTF-8";

/* ========================================
   Base / Reset 継承
   ======================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f8f6f1;
  color: #2c2c2c;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ========================================
   Layout
   ======================================== */
.container {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 5%;
}

.pc-only {
  display: none;
}

/* ========================================
   Navigation（モバイルファースト）
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.6rem 5%;
  background: transparent;
  transition: background 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
}

.header.is-scrolled .nav-logo {
  color: #2c2c2c;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header.is-scrolled .nav-toggle span {
  background: #2c2c2c;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-list {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  background: rgba(44, 44, 44, 0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-list.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-list a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}

/* ========================================
   Hero Section（画像固定＋キャッチコピー）
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5a6c7d 0%, #3d4f5c 50%, #2d3748 100%);
}

.hero-image img {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-coupon {
  position: absolute;
  top: 2rem;
  right: 5%;
  z-index: 3;
  display: block;
}

.hero-coupon img {
  height: auto;
  display: block;
}

.hero-quote {
  position: absolute;
  bottom: 12rem;
  left: 5%;
  z-index: 2;
  max-width:400px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  transform: translateY(-8vh); /* テキストを上に移動 */
}

.hero-catch {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 1.2rem;
  opacity: 0.95;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 10vw, 5.6rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  margin: 0 0 1.6rem;
  line-height: 1.2;
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-scroll span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ========================================
   Features Section（特徴・コンテンツ紹介）
   ======================================== */
/* セクションごとの背景画像 */
.has-section-bg {
  position: relative;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.section-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 246, 241, 0.88);
}

.has-section-bg .container {
  position: relative;
  z-index: 1;
}

.section-bg--features {
  background-image: url("../img/kiyomizu.jpg");
}

.section-bg--spots {
  background-image: url("../img/kifune.JPG");
}

.section-bg--eat {
  background-image: url("../img/elove.png");
}

.section-bg--content {
  background-image: url("../img/top.png");
}

.section-bg--travel {
  background-image: url("../img/coordinator.webp");
}

/* LP訴求エリア全体の背景（lp-travel-intro + lp-intro） */
.lp-travel-intro-wrap {
  padding: 20px;
}

.lp-travel-intro-wrap .lp-travel-intro,
.lp-travel-intro-wrap .lp-intro {
  position: relative;
  z-index: 1;
}

.features {
  padding: clamp(6rem, 15vw, 10rem) 0;
}

.section-title-visual {
  margin-bottom: 2rem;
  border-radius: 4px;
  overflow: hidden;
}

.section-title-visual img {
  width: 100%;
  display: block;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.6rem;
  line-height: 1.6;
  color: #2c2c2c;
}

.section-lead {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  color: #555;
  margin: 0 0 60px 0;
  line-height: 1.9;
}

/* LP訴求：旅行らしさ・カスタムトラベル紹介 */
.lp-travel-intro {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin: 100px auto;
  padding: 0 2px;
 
}

.lp-travel-visual {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.lp-travel-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.lp-travel-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.lp-travel-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-travel-catch {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #8b7355;
}

.lp-travel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.5;
  color: #2c2c2c;
  margin: 0 0 1.2rem;
}

.lp-travel-text {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.9;
  margin: 0;
}

@media (min-width: 600px) {
  .lp-travel-intro {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .lp-travel-visual {
    flex: 0 0 48%;
    min-width: 0;
  }

  .lp-travel-images {
    display: block;
  }

  .lp-travel-images img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .lp-travel-copy {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
}

/* LP訴求エリア（会社紹介・プラン・ポイント） */
.lp-intro {
  margin-bottom: clamp(4rem, 10vw, 6rem);
  padding: clamp(2.4rem, 5vw, 3.2rem);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.lp-intro-about {
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #eee;
}

.lp-intro-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #2c2c2c;
}

.lp-intro-image {
  margin-bottom: 1.6rem;
}

.lp-intro-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.lp-intro-text {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.9;
  margin: 0;
}

.lp-plans-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.2rem;
  color: #2c2c2c;
}

.plan-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.plan-card {
  flex: 1 1 140px;
  position: relative;
  padding: 1.6rem;
  background: #f8f6f1;
  border-radius: 6px;
  text-align: center;
}

.plan-card .plan-badge {
  position: absolute;
  top: -6px;
  right: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #c45c26;
}

.plan-card .plan-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 0.4rem;
}

.plan-card .plan-desc {
  display: block;
  font-size: 1.1rem;
  color: #666;
}

.lp-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  list-style: none;
}

.lp-points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: #444;
}

.lp-point-icon {
  color: #8b7355;
  font-size: 1rem;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 5rem);
}

.feature-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.feature-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 画像がない場合のフォールバック背景 */
.feature-card-image {
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
}

.feature-card-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.feature-card-body {
  padding: 2rem 5%;
}

.feature-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 0.8rem;
  color: #2c2c2c;
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.7s ease;
}

.feature-card.is-visible h3 {
  transform: translateX(0);
  opacity: 1;
}

.feature-card-lead {
  font-size: 1.6rem;
  font-weight: 500;
  color: #444;
  margin: 0 0 1.2rem;
  line-height: 1.7;
}

.feature-card-desc {
  font-size: 1.4rem;
  color: #666;
  margin: 0 0 1.6rem;
  line-height: 1.8;
}

.feature-card-link {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #2c2c2c;
  border-bottom: 1px solid #2c2c2c;
  transition: opacity 0.3s ease;
}

.feature-card-link:hover {
  opacity: 0.7;
}

/* ========================================
   Kyoto Spots Section（京都の有名観光地）
   ======================================== */
.kyoto-spots {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: transparent;
}

.spots-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.spot-item {
  display: flex;
  flex-direction: column;
  background: #f8f6f1;
  border-radius: 4px;
  overflow: hidden;
}

.spot-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.spot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-body {
  padding: 2rem;
}

.spot-body h3 {
  position: relative;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
  padding-bottom: 0.6rem;
  color: #2c2c2c;
  transform: translateX(-24px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.6s ease;
}

.spot-body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b7355 0%, transparent 100%);
  transition: width 0.5s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.spot-item.is-visible .spot-body h3 {
  transform: translateX(0);
  opacity: 1;
}

.spot-item.is-visible .spot-body h3::after {
  width: 100%;
}

/* 偶数カードは右からスライド */
.spot-item:nth-child(even) .spot-body h3 {
  transform: translateX(24px);
}

.spot-item:nth-child(even).is-visible .spot-body h3 {
  transform: translateX(0);
}

.spot-body p {
  font-size: 1.6rem;
  color: #555;
  margin: 0;
  line-height: 1.8;
}

/* Kyoto Eat Section（こだわりの食を味わう） */
.kyoto-eat {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: transparent;
}

.kyoto-eat .spots-list {
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .spot-item {
    flex-direction: row;
    align-items: stretch;
  }

  .spot-item:nth-child(even) {
    flex-direction: row-reverse;
  }

  .spot-image {
    width: 45%;
    aspect-ratio: auto;
    min-height: 180px;
  }

  .spot-body {
    width: 55%;
    padding: 2.4rem;
  }
}

/* ========================================
   Content Detail Section（哲学・メッセージ）
   ======================================== */
.content-detail {
  padding: clamp(5rem, 12vw, 8rem) 0;
  background: transparent;
}

.content-philosophy {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 400;
  text-align: center;
  line-height: 2.2;
  color: #444;
  margin: 0 0 2rem;
}

.content-philosophy-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  font-style: italic;
  text-align: center;
  color: #2c2c2c;
  margin: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
  position: relative;
  padding: clamp(6rem, 15vw, 10rem) 5%;
  overflow: hidden;
}

/* 旅行予約特典・お問い合わせ */
.contact-benefit {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: #fff;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-item p {
  margin: 0;
  font-size: 1.6rem;
  color: #444;
}

@media (min-width: 600px) {
  .contact-info {
    justify-content: flex-start;
  }
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3d4f5c 0%, #2c3e50 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.2rem;
  line-height: 1.5;
}

.cta-lead {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2.4rem;
}

.cta-btn {
  display: inline-block;
  padding: 1.4rem 3.2rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #2c3e50;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1a252f;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 3rem 5%;
  background: #1a1a1a;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.6rem;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}

.footer-nav a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ========================================
   スクロールアニメーション用
   ======================================== */
.inview {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.inview.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.inview[data-animate="fadeUp"] {
  transition-delay: 0s;
}

.feature-card.inview {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2).inview {
  transition-delay: 0.2s;
}

.feature-card:nth-child(3).inview {
  transition-delay: 0.3s;
}

/* ========================================
   Tablet（600px〜）
   ======================================== */
@media (min-width: 600px) {
  .pc-only {
    display: inline;
  }

  .nav-list {
    position: static;
    flex-direction: row;
    background: transparent;
    opacity: 1;
    visibility: visible;
    gap: 2.4rem;
  }

  .nav-list a {
    font-size: 1.3rem;
    color: #fff;
  }

  .header.is-scrolled .nav-list a {
    color: #2c2c2c;
  }

  .nav-toggle {
    display: none;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .feature-card:nth-child(even) .feature-card-image {
    order: 2;
  }

  .feature-card-image {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .feature-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5%;
  }
}

/* ========================================
   Desktop（900px〜）
   ======================================== */
@media (min-width: 900px) {
  .container {
    padding: 0 4%;
  }

  .section-lead {
    font-size: 1.5rem;
  }

  .feature-card-body {
    padding: 4rem 6%;
  }

  .cta {
    padding: clamp(8rem, 18vw, 12rem) 5%;
  }
}
