/* =====================================================
1. Reset / Global
===================================================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  background-image:url(img/bg.svg) ;
  
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
 layout : 3 column（center scroll / side fixed）
===================================================== */

/* 全体ラッパー */
.layout-3col {
  position: relative;
}

/* 中央コンテンツ */
.center {
  width: 40vw;              /* 中央カラム幅 */
  margin: 0 auto;
  position: relative;
  z-index: 2;               /* 左右より前面 */
}

/* 左右サイド */
.side {
  position: fixed;
  top: 0;
  width: 30vw;
  height: 100vh;
  background: #f5f5f5;
  z-index: 1;
}

/* 左サイド */
.side.left {
  left: 0;
}

/* 右サイド */
.side.right {
  right: 0;
}

/* =====================================================
 Mobile
===================================================== */
@media (max-width: 768px) {

  /* 左右は非表示 */
  .side {
    display: none;
  }

  /* 中央は全幅 */
  .center {
    width: 100%;
    margin: 0;
  }
}

/* =====================================================
2. Section / Spacing
===================================================== */
.section {
  padding: 6rem 1.2rem;
  
}

.spacer {
  height: 2rem;
}

/* =====================================================
3. HERO
===================================================== */
.hero {
  height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 1.5rem;
  
}

.hero-inner img {
  margin-bottom: 1.5rem;
}

.hero-inner h1 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
}

.hero-inner p {
  font-size: 1rem;
  margin-top: 1rem;
}

/* =====================================================
4. Text Block
===================================================== */
.text-block {
  max-width: 90%;
  margin: 0 auto;
  line-height: 2.2;
}

.text-block.wide {
  max-width: 90%;
}

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

.place {
  margin-top: 3rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.note {
  font-size: 0.85rem;
  margin-top: 2rem;
}

.link {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  color: #444;
}

/* =====================================================
5. Experience
===================================================== */
.experience {
  position: relative;
  background: #f5f5f5;
}

.exp-label {
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
}

/* =====================================================
6. Insert Photos（途中写真）
===================================================== */
.insert-photo {
  margin: 6rem auto;
  max-width: 320px;
}

.insert-photo img {
  width: 100%;
  
  filter: brightness(0.82) contrast(1.05);
}



/* =====================================================
7. Event
===================================================== */
.event {
  margin: 6rem auto;
}

.event-list {
  max-width: 90%;
  margin: 3rem auto 0;
}

.event-card {
  display: block;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ddd;
  color: #111;
  text-decoration: none;
}

.event-date {
  font-size: 0.85rem;
  color: #777;
}

.event-title {
  font-size: 1.05rem;
  margin: 0.4rem 0;
}

.event-note {
  font-size: 0.9rem;
  color: #555;
}

/* =====================================================
8. Stay / CTA
===================================================== */
.stay {
  background: #f5f5f5;
}

.cta{
  background: #f5f5f5;
}

.cta-lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-list {
  list-style: none;
  padding: 0;
}

.cta-list li {
  margin: 0.5rem 0;
}

.cta-list a {
  display: block;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  color: #222;
}

/* =====================================================
9. Utility
===================================================== */
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =====================================================
10. PC Enhancement
===================================================== */
@media (min-width: 769px) {

  body {
    font-size: 16px;
  }

  .section {
    padding: 8rem 1.5rem;
  }

  .hero {
    height: 80vh;
    padding: 4rem;
  }

  .hero-inner h1 {
    font-size: 2.4rem;
  }

  .text-block {
    max-width: 520px;
    margin-left: 0.5vw;
  }

  .text-block.wide {
    max-width: 640px;
  }

  .experience.alt .text-block {
    margin-left: auto;
    margin-right: 10vw;
  }

  .exp-label {
    position: absolute;
    top: 0;
    right: 10vw;
    font-size: 0.9rem;
  }
}

.footer{
  position: relative;
  text-align: center;
}


.left-line-up{
  align-content: center; 
}

.card-container {
  display: flex;
  gap: 5px;
  margin-left: 10px;
  margin-right: 10px;
  
}