@charset "utf-8";

/*
body * {
  border: solid 1px #000;
}
*/

/* ========================================================
    共有 情報セクション
======================================================== */

.ksc-infomation01-section {
    width: 100%;
    background: var(--white);
    margin-bottom: clamp(40px, 8vw, 120px);
}

.ksc-infomation01-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ksc-infomation01-right,
.ksc-infomation01-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: clamp(300px, 8vw, 420px);
    align-items: stretch;
    margin: 0;
}

/* 右画像：テキスト左・画像右 */
.ksc-infomation01-right {
    grid-template-areas: "text image";
}
.ksc-infomation01-right-text { grid-area: text; }
.ksc-infomation01-right-image { grid-area: image; }

/* 左画像：画像左・テキスト右 */
.ksc-infomation01-left {
    grid-template-areas: "image text";
}
.ksc-infomation01-left-text { grid-area: text; }
.ksc-infomation01-left-image { grid-area: image; }

.ksc-infomation01-right-image,
.ksc-infomation01-left-image {
    height: 100%;
    overflow: hidden;
}

.ksc-infomation01-right-image img,
.ksc-infomation01-left-image img {
    width: 100%;
    height: 100%;
    block-size: 100%;
    object-fit: cover;
}

.ksc-infomation01-right-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: clamp(40px, 8vw, 120px) clamp(20px, 8vw, 120px) clamp(40px, 8vw, 120px) clamp(40px, 8vw, 80px);
    background: var(--white);
    width: 100%;
}

.ksc-infomation01-left-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(40px, 8vw, 120px) clamp(20px, 8vw, 80px) clamp(40px, 8vw, 120px) clamp(40px, 8vw, 120px);
    background: var(--white);
    width: 100%;
}

.ksc-infomation01-right-text h3,
.ksc-infomation01-left-text h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem)!important;
    line-height: 3.2rem;
    font-weight: 400;
    text-align: left;
    margin-bottom: 36px;
    width: min(350px, 100%);
}

.ksc-infomation01-right-text p,
.ksc-infomation01-left-text p {
    width: min(350px, 100%);
    text-align: left;
}

@media (max-width: 768px) {
  .ksc-infomation01-right,
  .ksc-infomation01-left {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image";
    height: auto;
  }
  .ksc-infomation01-right-image,
  .ksc-infomation01-left-image {
    height: 300px;
    overflow: hidden;
  }
  .ksc-infomation01-right-image img,
  .ksc-infomation01-left-image img {
    width: 100%;
    block-size: 100%;
  }
  .ksc-infomation01-right-text,
  .ksc-infomation01-left-text {
    width: 100%;
    padding: 40px 5%;
    box-sizing: border-box;
    align-items: flex-start;
  }
  .ksc-infomation01-right-text h3,
  .ksc-infomation01-left-text h3,
  .ksc-infomation01-right-text p,
  .ksc-infomation01-left-text p {
    width: 100%;
  }
}


/* ========================================================
   タブ切替　スタイル01　自治体/ツアーページ
======================================================== */

.ksc-tab-dsn01-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-bottom: 1px solid var(--gray-05);
    margin-bottom: clamp(0px, 4vw, 120px);
}

.ksc-tab-dsn01-nav {
    display: contents;
}

.ksc-tab-dsn01-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 12px 0;
    gap: 16px;
}

.ksc-tab-dsn01-item {
    flex-shrink: 0;
}

.ksc-tab-dsn01-arrow {
    flex-shrink: 0;
    width: 80px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}
.ksc-tab-dsn01-arrow:hover { opacity: 0.5; }

.ksc-tab-dsn01-prev::before,
.ksc-tab-dsn01-next::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--black);
    border-right: 1.5px solid var(--black);
}
.ksc-tab-dsn01-prev::before { transform: rotate(-135deg) translateY(-2px); }
.ksc-tab-dsn01-next::before { transform: rotate(45deg) translateY(-2px); }

.ksc-tab-dsn01-btn {
    display: block;
    padding: 10px 36px;
    color: var(--black);
    background: var(--gray-03);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.ksc-tab-dsn01-btn:hover { background: var(--gray-05); }
.ksc-tab-dsn01-btn.is-active {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 768px) {
    .ksc-tab-dsn01-section { padding: 0 5%; }
    .ksc-tab-dsn01-list {
        flex-wrap: wrap;
        width: 100%;
        padding: 12px 0;
    }
    .ksc-tab-dsn01-item { flex: 1; }
    .ksc-tab-dsn01-btn {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
}

/* ========================================================
    自治体ページ　KV
======================================================== */
.ksc-areainfo-kv-top {
    position: relative;
    width: 100%;
    min-height: clamp(60vh, 60vw, 100vh);
    overflow: hidden;
}

.ksc-areainfo-kv-container{
      position: relative;
    width: 100%;
    margin-bottom: clamp(40px, 4vw, 120px);
}

/* 動画背景 */
.ksc-areainfo-kv-top .ksc-movie01__video {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.ksc-areainfo-kv-top .ksc-movie01__video::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0.3;
}

.ksc-areainfo-kv-top .ksc-movie01__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    max-width: none;
    height: 56.25vw;
    width: 230.77777778vh;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
    .ksc-areainfo-kv-top {
        height: 112vw;
    }
}

/* 画像背景 */
.ksc-areainfo-kv-top img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.ksc-areainfo-kv-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: 0.3;
}

.ksc-areainfo-kv-top h1 {
    position: absolute;
    top: 30%;
    left: 10%;
    z-index: 1;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 12px var(--black);
}

/* ---- SUB KV ---- */
.ksc-areainfo-kv-sub {
    position: relative;
    width: 100%;
    min-height: clamp(80vh, 50vw, 100vh);
    padding: clamp(120px, 20%, 160px) 10% 120px;
    overflow: hidden;
}

.ksc-areainfo-kv-sub-wrap {
    position: relative;
    width: auto;
    margin-left: auto; 
    z-index: 2;
    color: var(--white);
}

.ksc-areainfo-kv-sub img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ksc-areainfo-kv-sub::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.ksc-areainfo-kv-sub-catch {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
    margin: 0 0 32px;
    letter-spacing: 0.02em;
    text-align: right;
}

.ksc-areainfo-kv-sub-title {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    padding: 0 0 52px;
    letter-spacing: 0.05em;
    text-align: right;
}

.ksc-areainfo-kv-sub-text {
    color: var(--white);
    max-width: 400px;
    margin-left: auto;
}

@media (max-width: 768px) {
  .ksc-areainfo-kv-top h1 {
    left: 5%;
    right: 5%;
    width: 90%;
    box-sizing: border-box;
  }
  .ksc-areainfo-kv-sub {
    padding: 80px 0 60px;
  }
  .ksc-areainfo-kv-sub-wrap {
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
    margin-left: 0;
  }
  .ksc-areainfo-kv-sub-text {
    max-width: 100%;
  }
  .ksc-areainfo-kv-sub-catch,
  .ksc-areainfo-kv-sub-title {
    text-align: left;
  }
}

/* ========================================================
    自治体ページアクセス
======================================================== */

.ksc-access01-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  margin-bottom: clamp(40px, 5vw, 120px);
}

.ksc-access01-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
  margin-bottom: clamp(40px, 8vw, 100px);
}

.ksc-access01-container > h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 2.5rem;
  margin: clamp(30px, 3.8vw, 60px) auto clamp(30px, 3.8vw, 60px);
}

.ksc-access01-route {
  height: auto;
  overflow: visible;
}

.ksc-access01-map {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.ksc-access01-map iframe {
  width: 100%;
  height: calc(100% + 160px);
  block-size: calc(100% + 160px);
  position: absolute;
  top: -68px;
  left: 0;
  display: block;
}

.ksc-access-route01-title-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  top: -2px;
}

/* ── 2ルート以上 ── */
.ksc-access01-wrap.is-multi {
  grid-template-columns: 1fr;
}

.ksc-access01-wrap.is-multi .ksc-access01-map {
  height: 400px;
}

.ksc-access01-wrap.is-multi .ksc-access01-route {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: start;
}

.ksc-access01-wrap.is-multi .ksc-access-route01-container {
  flex: 1;
  min-width: 200px;
}

.ksc-access-route01-container {
  --icon-size: 32px;
  --line-pos:  40%;
  --line-pad:  10%;

  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.ksc-access-route01-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  min-width: 120px;
  position: relative;
}

.ksc-access-route01-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.ksc-access-route01-title-from {
  display: flex;
  align-items: center;
  flex: 1;
  white-space: nowrap;
}
.ksc-access-route01-title-from::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--black);
  margin-left: 8px;
  min-width: 8px;
}

.ksc-access-route01-title-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  object-fit: contain;
  position: relative;
  top: -2px;
}

.ksc-access-route01-title-icon {
  fill: var(--red) !important;
  stroke: none;
}

.ksc-access-route01-title-to {
  display: flex;
  align-items: center;
  flex: 1;
  white-space: nowrap;
  font-size: .95rem;
  letter-spacing: .12em;
}
.ksc-access-route01-title-to::before {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--black);
  margin-right: 8px;
  min-width: 8px;
}

.ksc-access-route01-inner {
  position: relative;
  width: 100%;
}

.ksc-access-route01-inner::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--line-pos);
  transform: translateX(-50%);
  width: 1.5px;
  background: var(--black);
  z-index: 0;
}

.ksc-access-route01-node-start,
.ksc-access-route01-node-end {
  position: relative;
  z-index: 1;
  background: var(--black);
  color: var(--white);
  font-weight: 500;
  text-align: center;
  padding: 6px 10px;
  width: 100%;
}

.ksc-access-route01-depart,
.ksc-access-route01-node-arrive {
  position: relative;
  z-index: 1;
  border: 1px solid var(--black);
  padding: 6px 10px;
  background: var(--white);
  text-align: center;
  width: 100%;
}

.ksc-access-route01-depart-station,
.ksc-access-route01-arrive-station {
  line-height: 1.4;
  font-weight: 500;
  display: block;
}

.ksc-access-route01-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--line-pos) 1fr;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}

.ksc-access-route01-step-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  flex-shrink: 0;
  object-fit: contain;
  justify-self: end;
  margin-right: var(--line-pad);
}

.ksc-access-route01-step-type {
  line-height: 1.4;
  padding-left: var(--line-pad);
}

.ksc-access-route01-node-station {
  position: relative;
  z-index: 1;
  border: 1px solid var(--black);
  text-align: center;
  padding: 2px 10px;
  font-weight: 500;
  background: var(--white);
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ksc-access01-container {
    margin: 0 auto 20px auto;
    padding: 0;
  }
  .ksc-access01-container > h3 {
    margin-left: 5%;
  }
  .ksc-access01-wrap {
    display: block;
  }
  .ksc-access01-map {
    height: 250px;
  }
  .ksc-access01-route {
    width: 80%;
    margin: 20px auto 0;
  }
  .ksc-access01-wrap.is-multi .ksc-access01-route {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .ksc-access01-wrap.is-multi .ksc-access-route01-container {
    width: 80%;
    min-width: unset;
  }
  .ksc-access-route01-wrap {
    width: 100%;
    max-width: 240px;
  }


}

@media (max-width: 370px) {
  .ksc-access01-route {
    width: 100%;
    padding: 0 clamp(12px, 5%, 20px);
    margin-top: 20px;
  }
  .ksc-access-route01-wrap {
    max-width: 100%;
  }
  .ksc-access01-wrap.is-multi .ksc-access-route01-container {
    width: 100%;
    padding: 0 clamp(12px, 5%, 20px);
  }
}

/* ========================================================
   自治体ページ　タブ切替　スタイル01デザイン　スポット情報
======================================================== */

.ksc-spot01-section {
    width: 100%;
    background: var(--white);
    margin-bottom: clamp(40px, 8vw, 120px);
}

.ksc-spot01-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ksc-spot01-kv-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image";
    min-height: clamp(300px, 50vw, 420px);
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.ksc-spot01-kv-text { grid-area: text; }
.ksc-spot01-kv-image { grid-area: image; }

.ksc-spot01-gold-line {
    align-self: stretch;
    width: 200%;
    height: 1.5px;
    background: var(--gold);
    margin: 8px 0 32px -50px;
}

.ksc-spot01-kv-image {
    height: 100%;
    overflow: hidden;
    position: relative;
}
.ksc-spot01-kv-image img {
    width: 100%;
    height: 100%;
    block-size: 100%;
    object-fit: cover;
}

.ksc-spot01-kv-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: clamp(40px, 8%, 100px) clamp(40px, 10%, 120px) clamp(40px, 8%, 100px) clamp(20px, 5%, 60px);
    background: var(--white);
    width: 100%;
}

.ksc-spot01-kv-catch {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    width: 350px;
}

.ksc-spot01-kv-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
    margin-bottom: clamp(60px, 8vw, 120px);
    width: 350px;
}

.ksc-spot01-kv-text-p {
    width: 300px;
    text-align: left;
}

@media (max-width: 768px) {
    .ksc-spot01-kv-wrap {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "image";
        height: auto;
    }
    .ksc-spot01-kv-image { height: 300px; }
    .ksc-spot01-kv-image img {
        width: 100%;
        block-size: 100%;
    }
    .ksc-spot01-kv-text {
        width: 100%;
        padding: 40px 5%;
        box-sizing: border-box;
        align-items: flex-start;
    }
    .ksc-spot01-kv-catch,
    .ksc-spot01-kv-text h2,
    .ksc-spot01-kv-text-p {
        width: 100%;
    }
}

/* ========================================================
    自治体ページ ツアーリス
======================================================== */

.ksc-tour-list01-section {
  width: 100%;
  margin: 0 auto;
}

.ksc-tour-list01-images {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.ksc-tour-list01-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ksc-tour-list01-img-sub {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.ksc-tour-list01-img-sub div {
  overflow: hidden;
}

.ksc-tour-list01-img-sub img {
  width: 100%;
  height: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .ksc-tour-list01-images {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .ksc-tour-list01-img-main img {
    aspect-ratio: 4 / 3;
  }
  .ksc-tour-list01-img-sub {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
  }
  .ksc-tour-list01-img-sub img {
    aspect-ratio: 1 / 1;
  }
}

.ksc-tour-list01-header {
  position: relative;
  height: 160px;
  margin-bottom: 10px;
  overflow: hidden;
}

.ksc-tour-list01-pickup {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 400;
  position: absolute;
  bottom: 40px;
  left: 10px;
  transform: rotate(-8deg);
  transform-origin: left bottom;
  white-space: nowrap;
  z-index: 1;
  padding-left: 10%;
}

.ksc-tour-list01-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -120px;
  width: 130%;
  height: 0.5px;
  background: var(--black);
  transform: rotate(-8deg);
  transform-origin: left center;
}

.ksc-tour-list01-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1100px;
  gap: 60px;
  margin: 0 auto;
}

.ksc-tour-list01-item {
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 40px;
  align-items: center;
  margin:  0 auto;
}

.ksc-tour-list01-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}


.ksc-tour-list01-content {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  max-width: 400px;
  align-items: flex-start;
  margin-bottom: 40px;
}


.ksc-tour-list01-title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}

.ksc-tour-list01-text {
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .ksc-tour-list01-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
.ksc-tour-list01-header {
  position: relative;
  height: 160px;
  margin-top:-40px;
  margin-bottom: 10px;
  overflow: hidden;
}
  .ksc-tour-list01-content {
    padding: 0 5%;
    margin: 0 auto;
}
}

/* ========================================================
    ツアーページ　KV
======================================================== */
.ksc-tour-kv01-section {
  position: relative;
  width: 100%;
  min-height: 240vh;
}

.ksc-tour-kv01-bg {
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background: url('http://ksc.local/wp-content/uploads/2026/03/beppu-yukemuri.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  box-shadow: inset 0 -50vh 50vh rgba(0,0,0,0.75);
}

.ksc-tour-kv01-content {
  position: absolute;
  top: 15%;
  left: 8%;
  z-index: 2;
  color: var(--white);
}

.ksc-tour-kv01-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,1);
}

.ksc-tour-kv01-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 2;
  text-shadow: 0 2px 6px rgba(0,0,0,1);
}

.ksc-tour-kv01-concept {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80vh;
  z-index: 2;
  pointer-events: none;
}

.ksc-tour-kv01-concept-label {
  position: absolute;
  bottom: clamp(80px, 20vw, 400px);
  left: 8%;
  font-size: clamp(1.8rem, 6vw, 4.8rem);
  color: var(--white);
  opacity: 0.3;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  pointer-events: none;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,1);
}

.ksc-tour-kv01-concept-text {
  position: absolute;
  bottom: clamp(80px, 20vw, 400px);
  right: 15%;
  max-width: 400px;
  pointer-events: auto;
}

.ksc-tour-kv01-concept-text h2 {
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,1);
}

.ksc-tour-kv01-concept-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 2.6;
  text-shadow: 0 2px 8px rgba(0,0,0,1);
}


@media (max-width: 768px) {
  .ksc-tour-kv01-section {
    min-height: 140vh;
  }
  .ksc-tour-kv01-bg {
    background-attachment: scroll;
  }
  .ksc-tour-kv01-content {
    left: 5%;
  }
  .ksc-tour-kv01-concept-label {
    left: 5%;
    font-size: 1.8rem;
    bottom: 80px;
  }
  .ksc-tour-kv01-concept-text {
    left: 18%;
    bottom: 24px;
  }
}

/* ========================================================
    ツアーページ　特徴
======================================================== */

.ksc-tour-feature01-section {
  --feature-height-lg:    600px;
  --feature-height-md:    500px;
  --feature-height-sm:    300px;

  --feature-height-sp-lg: 260px;
  --feature-height-sp-md: 220px;
  --feature-height-sp-sm: 160px;

  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(40px, 6vw, 120px);
}

.ksc-tour-feature-img01 {
  width: 100%;
  height: var(--feature-height-lg);
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}

.ksc-tour-feature01-label {
  position: absolute;
  top: 10%;
  left: 8%;
  font-size: clamp(1.8rem, 6vw, 4.8rem);
  color: var(--white);
  opacity: 0.3;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  pointer-events: none;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,1);
  margin: 0 auto;
}

.ksc-tour-feature-img01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- ブロック1 ---- */
.ksc-tour-feature01-block01 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8px;
  align-items: end;
}

.ksc-tour-feature01-block01-small img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ksc-tour-feature01-block01-large {
  position: relative;
}

.ksc-tour-feature01-block01-large img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

/* ---- ブロック2 ---- */
.ksc-tour-feature01-block02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}

.ksc-tour-feature01-block02-image {
  overflow: hidden;
  min-height: 400px;
}

.ksc-tour-feature01-block02-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ksc-tour-feature01-block02-text {
  padding: 25%;
}

.ksc-tour-feature01-block02-text h2 {
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ---- ブロック3 ---- */
.ksc-tour-feature01-block03 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  align-items: stretch;
  height: var(--feature-height-sm);
}

.ksc-tour-feature01-block03-large,
.ksc-tour-feature01-block03-small {
  overflow: hidden;
}

.ksc-tour-feature01-block03-large img,
.ksc-tour-feature01-block03-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- ブロック4 ---- */
.ksc-tour-feature01-block04 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: stretch;
}

.ksc-tour-feature01-block04-image {
  overflow: hidden;
  min-height: 400px;
}

.ksc-tour-feature01-block04-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ksc-tour-feature01-block04-text {
  padding: 25%;
}

.ksc-tour-feature01-block04-text h2 {
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}


@media (max-width: 768px) {
  .ksc-tour-feature01-section {
    gap: 4px;
  }

  .ksc-tour-feature-img01 {
    height: var(--feature-height-sp-lg);
    margin-bottom: 8px;
  }

  .ksc-tour-feature01-label {
    left: 5%;
    font-size: 1.8rem;
  }

  /* ブロック1 */
  .ksc-tour-feature01-block01 {
    grid-template-columns: 35% 1fr;
    align-items: end;
    gap: 4px;
  }
  .ksc-tour-feature01-block01-small img {
    aspect-ratio: 1 / 1;
  }
  .ksc-tour-feature01-block01-large img {
    aspect-ratio: 4 / 3;
  }

  /* ブロック2 */
  .ksc-tour-feature01-block02 {
    grid-template-columns: 1fr 2fr;
    gap: 4px;
  }
  .ksc-tour-feature01-block02-image {
    min-height: 200px;
  }
  .ksc-tour-feature01-block02-text {
    padding: 20% 6%;
  }

  /* ブロック3 */
  .ksc-tour-feature01-block03 {
    grid-template-columns: 1fr 1fr;
    height: var(--feature-height-sp-sm);
    gap: 4px;
  }

  /* ブロック4 */
  .ksc-tour-feature01-block04 {
    grid-template-columns: 2fr 1fr;
    gap: 4px;
  }
  .ksc-tour-feature01-block04-image {
    min-height: 200px;
  }
  .ksc-tour-feature01-block04-text {
    padding: 20% 6%;
  }
}

/* ========================================================
    ツアーページ 予約セクション
======================================================== */

.ksc-tour-reserve01-section {
  position: relative;
  width: 100%;
  height: clamp(150px, 50vw, 400px);
  overflow: hidden;
  margin-bottom: clamp(40px, 8vw, 120px);
}

.ksc-tour-reserve01-section img {
  position: absolute;
  margin-top:30px;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ksc-tour-reserve01-content {
  position: absolute;
  top: 0;
  left: 20%;
  height: 65%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  background: var(--black);
  color: var(--white);
}

.ksc-tour-reserve01-content:hover{
  background: var(--gold);
}

.ksc-tour-reserve01-content p {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  line-height: 1.8;
}

.ksc-tour-reserve01-content p::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 20px auto 20px auto;
}

.ksc-tour-reserve01-btn {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}


@media (max-width: 768px) {
  .ksc-tour-reserve01-content {
    width: 60%;
    height: 60%;
    padding: 0 5%;
  }
}

/* ========================================================
    ツアーページ ハイライト
======================================================== */

.ksc-tour-highlight01-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.ksc-tour-highlight01-label {
  position: absolute;
  top: 5%;
  left: 0%;
  font-size: clamp(1.8rem, 6vw, 4.8rem);
  color: var(--black);
  opacity: 0.08;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  pointer-events: none;
  line-height: 1;
  margin: 0;
}

.ksc-tour-highlight01-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-left:90px;
}

.ksc-tour-highlight01-item {
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-template-rows: auto 1fr;
  gap: 0 40px;
  overflow: hidden;
}

.ksc-tour-highlight01-header {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 24px;
  padding: 0 clamp(5%, 4vw, 90px) 0 0;
}

.ksc-tour-highlight01-day {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.ksc-tour-highlight01-day::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-02);
  margin-bottom: 0;
}

.ksc-tour-highlight01-day span {
  color: var(--gold);
  margin-left: 8px;
}

.ksc-tour-highlight01-body {
  display: contents;
}

.ksc-tour-highlight01-text {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding: 16px clamp(5%, 4vw, 90px) 0 clamp(5%, 5vw, 40px);
}

.ksc-tour-highlight01-text h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 24px;
}

.ksc-tour-highlight01-image {
  grid-column: 2;
  grid-row: 1 / 3;
  overflow: hidden;
  height: 400px;
  position: relative;
  z-index: 2;
}

.ksc-tour-highlight01-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ksc-slider-tour01-slide {
  transform: scale(0.9);
}


@media (max-width: 768px) {
.ksc-tour-highlight01-container {
  margin-left:60px;
}
  .ksc-tour-highlight01-label {
    left: 5%;
    font-size: 1.8rem;
  }
  .ksc-tour-highlight01-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .ksc-tour-highlight01-header {
    grid-column: 1;
    grid-row: 1;
    padding-right: 0;
  }
  .ksc-tour-highlight01-text {
    grid-column: 1;
    grid-row: 2;
    padding-right: 5%;
  }
  .ksc-tour-highlight01-image {
    grid-column: 1;
    grid-row: 3;
    margin-top: 20px;
  }
  .ksc-tour-highlight01-image img {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* ========================================================
   ツアーページ　タブ切替　タイムラインデザイン
======================================================== */
.ksc-timeline01-root-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.ksc-timeline01-root-label {
  position: absolute;
  top: 10%;
  left: 8%;
  font-size: clamp(1.8rem, 6vw, 4.8rem);
  color: var(--black);
  opacity: 0.08;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  pointer-events: none;
  line-height: 1;
  margin: 0;
}

.ksc-timeline01-section {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px) clamp(60px, 20vw, 15%);
}

.ksc-timeline01-container {
  margin: 0 auto;
}

.ksc-timeline01-items {
  display: flex;
  flex-direction: column;
  position: relative;
}

.ksc-timeline01-items::before {
  content: '';
  position: absolute;
  top: calc(clamp(48px, 7vw, 72px) / 2);
  bottom: calc(clamp(48px, 7vw, 72px) / 2);
  left: calc(clamp(48px, 7vw, 72px) / 2);
  width: 1px;
  background: var(--gray-08);
}

.ksc-timeline01-item-wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.ksc-timeline01-item {
  display: flex;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
  padding-bottom: clamp(32px, 5vw, 56px);
}

.ksc-timeline01-clock-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: clamp(48px, 7vw, 72px);
}

.ksc-timeline01-clock {
  width: clamp(48px, 7vw, 72px);
  height: clamp(48px, 7vw, 72px);
  border: 1px solid var(--gray-08);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  background: var(--white);
}

.ksc-timeline01-clock::after {
  content: '';
  display: block;
  width: 2px;
  height: 2px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.ksc-timeline01-clock-hour,
.ksc-timeline01-clock-min {
  display: block;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  background: var(--gray-08);
  transform: translateX(-50%) rotate(0deg);
}

.ksc-timeline01-clock-hour {
  width: 1px;
  height: 28%;
}

.ksc-timeline01-clock-min {
  width: 1px;
  height: 38%;
}

.ksc-timeline01-content {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.ksc-timeline01-time {
  font-size: clamp(16px, 5vw, 22px);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  color: var(--black);
}

.ksc-timeline01-title {
  margin: 0 0 16px;
  color: var(--black);
  font-weight: 400;
}

.ksc-timeline01-right {
  flex: 1.15;
  flex-shrink: 0;
  min-width: 0;
}

.ksc-timeline01-right img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ========================================================
   ツアーページ　タブ切替 スタイル01デザイン　施設情報
======================================================== */
.ksc-timeline01-facility {
  display: flex;
  align-items: flex-start;
  margin-left: calc(clamp(48px, 7vw, 72px) / 2);
  margin-bottom: 0;
}

.ksc-timeline01-facility-line {
  flex: 1;
  align-self: stretch;
  border-bottom: 1px solid var(--gray-05);
  min-height: 80px;
}

.ksc-timeline01-facility-label {
  flex: 0.7;
  align-self: flex-end;
  font-size: clamp(13px, 1.5vw, 16px);
  letter-spacing: 0.15em;
  margin: 0;
  padding: 10px 0 10px 16px;
  border-left: 1px solid var(--gray-05);
  border-top: 1px solid var(--gray-05);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.ksc-timeline01-facility-arrow {
  display: inline-block;
  width: 40px;
  height: 10px;
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  transform: skew(45deg);
  transition: width 0.3s ease;
}

.ksc-timeline01-facility-label:hover .ksc-timeline01-facility-arrow {
  width: 60px;
}

.ksc-facility-panel {
  position: relative;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.ksc-facility-panel.is-open {
  max-height: 1000px;
}

.ksc-facility-panel-inner-wrap {
  position: relative;
  background: var(--gray-02);
  margin: 30px 0 30px clamp(48px, 7vw, 72px);
  padding: 30px;
}

.ksc-facility-panel-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-05);
  margin: 40px 0  clamp(5px, 2vw, 20px) 0;
  gap: 10px;
}

.ksc-facility-panel-tab {
  padding: 10px 24px;
  background: var(--gray-03);
  border: none;
  cursor: pointer;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}

.ksc-facility-panel-tab.is-active {
  background: var(--black);
  color: var(--white);
}

.ksc-facility-panel-content {
  display: none;
}

.ksc-facility-panel-content.is-active {
  display: block;
}

.ksc-facility-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.ksc-facility-panel-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ksc-facility-panel-text {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  gap: 16px;
  color: var(--black);
  align-items: flex-start;
}

.ksc-facility-panel-text-wrap{
  padding-top:24px;
  margin-bottom:20px;
}

.ksc-facility-panel-text-wrap p:first-child{
  margin-bottom: clamp(10px, 5vw, 40px);
}

.ksc-facility-panel-tabs:has(.ksc-facility-panel-tab:only-child) {
  display: none;
}
@media (max-width: 768px) {
  .ksc-timeline01-root-label {
    writing-mode: horizontal-tb;
    font-size: clamp(1.2rem, 5vw, 2rem);
    position: static;
    display: block;
    padding: 24px 5% 0;
    opacity: 0.15;
  }

  .ksc-timeline01-section {
    padding: clamp(24px, 4vw, 40px) 5%;
  }

  .ksc-timeline01-items::before {
    left: 20px;
    top: 20px;
    bottom: 20px;
  }

  .ksc-timeline01-clock-col {
    width: 40px;
    flex-shrink: 0;
  }
  .ksc-timeline01-clock {
    width: 40px;
    height: 40px;
  }

  .ksc-timeline01-item {
    flex-wrap: wrap;
    gap: 12px;
  }
  .ksc-timeline01-clock-col { order: 1; }
  .ksc-timeline01-content {
    order: 2;
    flex: 1;
    min-width: 0;
  }
  .ksc-timeline01-right {
    order: 3;
    flex: none;
    width: 100%;
  }

  .ksc-timeline01-facility {
    margin-left: 20px;
  }

  .ksc-facility-panel {
    padding-left: 0;
  }
  .ksc-facility-panel-inner {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  .ksc-facility-panel-tab {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

