/* ============================================
   TOP PAGE
   ============================================ */

/* Hero */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.top_image{
  object-fit: contain;
}
/* ============================================
   書道
   ============================================ */
.upper_layer{
  margin-bottom: 200px;
  position: relative;
}
.top_title{
  position: absolute;
  width: 25%;
  top: -190px;
  right: 70px;
}
.upper_layer .section_title{
  align-items: normal;
  margin: 50px;
  color: #C88D38;
}
.upper_layer .section_title img{
  left: -80px;
}
.top_reservation_btn{
  position: fixed;
  width: 255px;
  top: 0;
  right: 0;
  z-index: 999;
}
.top_reservation_btn:hover{
  filter: brightness(120%);
  transition: 0.2s;
}
.upper_layer_experience{
  margin: 0 50px 50px;
  color: #191919;
  font-size: 14px;
}
.upper_layer_experience h2{
  color: #C88D38;
  font-size: 57px;
  line-height: 3rem;
 
}
hr{
  background-color: #C88D38;
  height: 1px;
  width: 528px;
  border: unset;
  margin: 10px 0;
}
.upper_layer_experience h2 .sub_title{
  font-size: 22px;
}

/* スライダー  --------------------- */

.slider-container{
  width: calc(100% - 100px);
  max-width: 1000px;
  margin: 0 auto;
}

/* メイン画像 */
.slider-for img{
  width: 623px;
  max-width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ナビ画像 */
.slider-nav img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.slider-nav-item{
  padding: 10px;
}
/* ============================================
   Plan セクション
   ============================================ */

   .plan {
    display: flex;
    color: #4a3b3b;
    margin: 0 50px 100px;
  }
  
  .plan_label {
    flex-shrink: 0;
    width: 110px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: rgba(200, 141, 56, .27);
  }
  
  .plan_label span {
    writing-mode: vertical-rl;       
    font-size: 80px;
    font-weight: 400;
    color: #C88D38;                  
    letter-spacing: 0.05em;
    line-height: 1;
  }
  
  .plan_body {
    flex: 1;
    background: rgba(200, 141, 56, .2);
    padding: 50px 60px;
  }
  
  .plan_block {
    margin: 0;
  }
  
  .plan_title {
    font-size: 22px;
    font-weight: 500;
    color: #C88D38;
    margin: 0 0 24px;
    letter-spacing: 0.04em;
  }
  
  .plan_info {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 16px;
  }
  
  .plan_info_item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .plan_info_item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
  
  .plan_info_item span {
    font-size: 24px;
    color: #4a3b3b;
    letter-spacing: 0.02em;
  }
  
  .plan_note {
    font-size: 15px;
    color: #4a3b3b;
    margin: 0;
  }
  
  .plan_line {
    background-color: #C88D38;
    height: 1px;
    border: none;
    margin: 30px 0;
  }
  
  .plan_text {
    font-size: 16px;
    line-height: 1.9;
    color: #4a3b3b;
    margin: 0;
  }
  
  .plan_text_mt {
    margin-top: 24px;
  }

/* ============================================
   Flow セクション
   ============================================ */
    .flow{
      margin: 0 50px 200px;
    }
   .flow_inner {
    display: flex;
    color: #4A4A4A;
    padding-bottom: 60px;
    
  }
  
  /* 左側：縦書きの「Flow」 */
  .flow_label {
    flex-shrink: 0;
    width: 110px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: rgba(200, 141, 56, .27);
  }
  
  .flow_label span {
    writing-mode: vertical-rl;       /* 縦書き */
    font-size: 80px;
    font-weight: 400;
    color: #C88D38;                  /* 薄いピンク文字 */
    letter-spacing: 0.05em;
    line-height: 1;
    height: fit-content;
  }
  
  /* 右側：ステップ一覧 */
  .flow_body {
    flex: 1;
    position: relative;
    padding: 40px 60px;
    background: rgba(200, 141, 56, .2);
  }
  
  /* タイムラインの縦線 */
  .flow_body::before {
    content: "";
    position: absolute;
    top: 40px;
    bottom: 150px;
    /* 画像幅(45%)の中央あたりに線を置く */
    left: calc(50% / 2);
    width: 1px;
    background: #C88D38;
  }
  
  /* 各ステップ */
  .flow_step {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 70px;
    position: relative;
  }
  
  .flow_step:last-child {
    margin-bottom: 0;
  }
  
  /* 画像 */
  .flow_image {
    flex-shrink: 0;
    width: 45%;
    max-width: 460px;
    position: relative;
    z-index: 1;
  }
  
  .flow_image img {
    width: 100%;
    aspect-ratio: 552 / 374;
    object-fit: cover;
    display: block;
  }
  
  /* テキスト側 */
  .flow_text {
    flex: 1;
    padding-top: 10px;
  }
  
  /* step番号（白い角丸ピル） */
  .flow_num {
    display: inline-block;
    background: #fff;
    color: #C88D38;
    font-size: 19px;
    letter-spacing: 0.05em;
    padding: 6px 28px;
    border-radius: 999px;
    margin-bottom: 22px;
  }
  
  /* 見出し */
  .flow_title {
    font-size: 22px;
    font-weight: 500;
    color: #C88D38;
    margin: 0 0 20px;
    letter-spacing: 0.04em;
  }
  
  /* 説明文 */
  .flow_desc {
    font-size: 16px;
    line-height: 1.9;
    color: #4A4A4A;
    margin: 0;
  }
  .upper_layer_reservation_btn_aria{
    margin-left: 110px;
  }
  .upper_layer_reservation_btn{
    display: block;
    width: 255px;
    margin: 0 auto;
  }
  .upper_layer_reservation_btn:hover{
    filter: brightness(120%);
    transition: 0.2s;
  }
/* ============================================
   world map
   ============================================ */
.world_map_top_inner{
  color: #001E46;
  margin: 0 auto;
  background-image: url(../img/common/logo_gray.png);
  background-repeat: no-repeat;
  background-size: 339.4px;
  height: 331.42px;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.world_map_title{
  font-size: 22px;
}
.world_map_sub_title{
  font-size: 17px;
}
.world {
  width: 100%;
  overflow: hidden;
  margin-bottom: 100px;
}

/* ---- マーキー（流れる帯）共通 ---- */
.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee_track {
  display: flex;
  width: max-content;          /* 中身の幅に合わせる */
}

.marquee_track img {
  width: 117px;                /* 画像1枚の表示幅 */
  height: 117px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  margin: 0 5px;
}

/*
   画像10枚（5枚×2セット）で track が構成されているので、
   1セット分＝全体の50%だけ移動させると、複製とシームレスに繋がり
   無限ループに見える。
*/

/* 上段：右へ流れる */
.marquee_right {
  animation: scroll-right 90s linear infinite;
  margin-bottom: 10px;
}

/* 下段：左へ流れる */
.marquee_left {
  animation: scroll-left 90s linear infinite;
  margin-top: 10px;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* ---- 世界地図 ---- */
.world_map {
  width: 100%;
  line-height: 0;
}

.world_map img {
  width: 100%;
  height: auto;
  display: block;
}
   
