/* ===================================
   全画面スライダー001
 =================================== */

.ksc-fullscreen-slider01 {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* 固定テキスト */
.ksc-fullscreen-slider01-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 1s ease-in-out;
    pointer-events: none;
}

/* 横書き英語 */
.ksc-fullscreen-slider01-title h1 {
    font-family: "Libre Baskerville", serif;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

/* 縦書き日本語 */
.ksc-fullscreen-slider01-title .ksc-text-vertical {
    font-family: "Libre Baskerville", serif;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: 2rem;
    letter-spacing: 0.5em;
    margin-right: 2rem;
    font-weight: 400;
    display: block;
}

/* 文字色 */
.ksc-fullscreen-slider01-title.text-white {
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.ksc-fullscreen-slider01-title.text-black {
    color: #000000;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5);
}

/* 背景スライダー */
.ksc-fullscreen-slider01-swiper {
    width: 100%;
    height: 100%;
}

.ksc-fullscreen-slider01-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ksc-fullscreen-slider01-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .ksc-fullscreen-slider01-title h1 {
        font-size: 4rem;
    }
    
    .ksc-fullscreen-slider01-title .ksc-text-vertical {
        font-size: 1.2rem;
        margin-right: 1rem;
        letter-spacing: 0.3em;
    }
}

@media (max-width: 480px) {
    .ksc-fullscreen-slider01-title h1 {
        font-size: 3rem;
    }
    
    .ksc-fullscreen-slider01-title .ksc-text-vertical {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
}

/* ===================================
   情報ページトップ　NOスライダー
 =================================== */

.ksc-info01-kv-section {
    position: relative;
    width: 100%;
    height: calc(100vh + 300px);
    overflow: hidden;
    margin-bottom:100px;
}

.info01-kv-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.info01-kv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.ksc-info01-kv-wrap {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 10;
}

.info01-kv-text-area {
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.3s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info01-kv-title {
    writing-mode: vertical-rl;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.4em;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    margin-right: 30px;
}

.info01-kv-title span {
    writing-mode: vertical-rl;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.4em;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    margin-right: 30px;
}

.info01-kv-title-decoration {
    display: inline-block;
    width: 2px;
    height: 250px;
    background: linear-gradient(to bottom, transparent, white, transparent);
    opacity: 0;
    animation: lineGrow 1.2s ease-out 0.8s forwards;
    vertical-align: top;
    margin-right: 30px;
}

@keyframes lineGrow {
    from {
        opacity: 0;
        height: 0;
    }
    to {
        opacity: 0.6;
        height: 250px;
    }
}

.info01-kv-subtitle {
    display: inline-block;
    vertical-align: top;
}

.info01-region-label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.4em;
    font-weight: 300;
    text-transform: uppercase;
    opacity: 0.9;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
}

.info01-region-area {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    font-weight: 300;
    opacity: 0.85;
    text-transform: uppercase;
}

.ksc-info01-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 47%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.5s forwards;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}

.ksc-info01-scroll-indicator::before {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, white);
    margin: 0 auto 15px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ksc-info01-scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* レスポンシブ対応 */
@media (max-width: 620px) {
    .ksc-info01-kv-section {
        height: 75vh;
    }
    .info01-kv-title {
        font-size: 3.5rem;
        letter-spacing: 0.2em;
        margin-right: 20px;
    }

    .info01-kv-title span {
        font-size: 2rem;
        letter-spacing: 0.2em;
        margin-right: 20px;
    }

    .info01-kv-title-decoration {
        height: 180px;
        margin-right: 20px;
    }

    .info01-region-label {
        font-size: 0.75rem;
    }

    .info01-region-area {
        font-size: 0.9rem;
    }
}

@media (max-width: 427px) {
    .ksc-info01-kv-section {
        height: 65vh;
    }

    .info01-kv-title {
        font-size: 2.8rem;
        letter-spacing: 0.15em;
        margin-right: 15px;
    }

    .info01-kv-title span{
        font-size: 1.2rem;
        letter-spacing: 0.15em;
        margin-right: 15px;
    }

    .info01-kv-title-decoration {
        height: 140px;
        margin-right: 15px;
    }

    .info01-region-label {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .info01-region-area {
        font-size: 0.8rem;
    }

    .ksc-info01-scroll-indicator {
        bottom: 30px;
    }
}

/* ===================================
   ksc-access01-section スタイル
 =================================== */

    .ksc-access01-section {
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Header Line Container */
    .ksc-access01-line-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 60px;
      margin:0 auto;
    }

    .ksc-access01-line-container h2 {
    font-family: "Libre Baskerville", serif;
      font-size: 2.3rem;
      font-weight: 100;
      margin:0 auto;
    }

    .ksc-access01-line {
      flex: 1;
      margin: 0 5px;
      border-top: 2px solid #d1d5db;
      position: relative;
    }

    .ksc-access01-pin {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -100%);
      width: 24px;
      height: 32px;
    }

    .ksc-access01-pin img {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* Map Section */
    .ksc-access01-content-container {
      width: 100%;    
    }
    
    /* 01 */
    .ksc-access01-map {
      width: 100%;
      max-width: 850px;
      position: relative;
      margin-top:-40px;
      z-index: 0;
    }

    .ksc-access01-map img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 02 */
      .ksc-access01-map02 {
      width: 100%;
      max-width: 650px;
      position: relative;
      margin:40px auto 60px auto;
    }

    .ksc-access01-map02 img {
      width: 100%;
      height: 100%;
      display: block;
    }

@media (max-width: 619px) {
    .ksc-access01-map02 {
      width: 90%;
    }
}

    /* Travel Time Section */
    .ksc-access01-travel-time {
      position: absolute;
      top:20%;
      right:8%;
      display: flex;
      flex-direction: column;
    }

    .access01-label {
      font-size: 0.875rem;
      margin-bottom: 2rem;
      text-align: left;
    }

    /* Travel Time Wrap */
    .access01-travel-time-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px;
      border-bottom: 1px solid #e5e7eb;
    }

    .access01-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0px;
      text-align: center;
      margin: 0 auto;
    }

    .access01-item img {
      width: 34px;
      height: 34px;
      display: block;
    }

    .access01-item p {
      font-size: 0.75rem;
    }

    .access01-info p {
      font-size: 1.1rem;
      margin-left:20px;
    }

@media (max-width: 619px) {
  .ksc-access01-travel-time {
    top: 15%;
    right: 5%;
  }
    .ksc-access01-section {
      padding-left: 0px;
    }
    .ksc-access01-line-container h2 {
      font-size: 1.5rem;
    }
}


@media (max-width: 427px) {
  .ksc-access01-section {
    padding: 0;
  }

  /* ヘッダー部分 */
  .ksc-access01-line-container {
    margin-bottom: 2rem;
      padding: 0 20px;
  }

  .ksc-access01-line-container h2 {
    font-size: 1rem;
  }

  .ksc-access01-line {
    margin: 0 10px;
  }

  .ksc-access01-pin {
    width: 20px;
    height: 28px;
  }

  .ksc-access01-map {
    margin-top: -30px;
  }

  .ksc-access01-travel-time {
    position: absolute;
    top:9%;
    right: 2%;
    max-width: 180px;
  }

  .access01-label {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }

  .access01-travel-time-wrap {
    padding: 8px 4px;
  }

  .access01-item {
    gap: 2px;
  }

  .access01-item img {
    width: 30px;
    height: 30px;
  }

  .access01-item p {
    font-size: 0.65rem;
  }

  .access01-info p {
    font-size: 0.9rem;
    margin-left: 10px;
  }
}

/* ===================================
   ksc-region-contant01-section スタイル
 =================================== */

.ksc-region-contant01-section {
    max-width: 100%;
    max-width: 1200px;
    background: #fff;
    margin: 0 auto;
}

/* メインタイトル */
.ksc-region-contant01-section > h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    padding: 60px 40px 20px;
    letter-spacing: 0.05em;
}

/* メインイメージ - コンテナ */
.ksc-region-contant01-img-area {
    max-width: 800px;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px auto 10px auto;
}

/* メインイメージ - 画像本体 */
.ksc-region-contant01-img-area img {
    max-width: 100%;
    height: 350px;
    width: auto; /* アスペクト比を維持 */
}

/* メインテキスト */
.ksc-region-contant01-section > p {
    max-width: 800px;
    font-weight: 700;
    text-align: center;
    line-height: 2rem;
    padding: 20px 50px;
    letter-spacing: 0.05em;
    margin-bottom: 80px;
    margin: 0 auto;
}

/* スライダーエリア */
.ksc-contant-slider01 {
    width: 100%;
    height: 60%;
    min-height: 400px;
    max-height: 800px;
    position: relative;
    margin-bottom: 80px;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 8s ease-out;
}

/* アクティブスライドはゆっくりズームイン */
.swiper-slide-active img {
    transform: scale(1.1);
}

/* ページネーション */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

/* Swiperのカスタマイズ */
.swiper-button-next,
.swiper-button-prev {
    display: none;
}

/* コンテンツラップ */
.ksc-region-contant01-wrap {
    width: 100%;
    margin: 40px auto 80px auto;
}

/* スタイル01 - テキスト左、画像右 */
.ksc-region-contant01-style01 {
    display: flex;
    gap: 0;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
    min-height: 400px;
    max-height: 600px;
    justify-content: flex-start;
}

.ksc-region-contant01-style01 .region-contant01-text-area {
    flex: 40%;
    max-width: 560px;
    padding: 25px;
    margin-left: 35px;
}

.ksc-region-contant01-style01 .region-contant01-img-area {
    flex: 60%;
}

/* スタイル02 - 画像左、テキスト右 */
.ksc-region-contant01-style02 {
    display: flex;
    gap: 0;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
    min-height: 400px;
    max-height: 600px;
    justify-content: flex-start;
}

.ksc-region-contant01-style02 .region-contant01-img-area {
    flex: 60%;
}

.ksc-region-contant01-style02 .region-contant01-text-area {
    flex: 40%;
    max-width: 560px;
    padding: 25px;
}

/* テキストエリア */
.region-contant01-text-area h3 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.5;
    color: #2c3e50;
    letter-spacing: 0.03em;
}

.region-contant01-text-area p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 2;
    color: #555;
    letter-spacing: 0.05em;
    white-space: normal;
}

.region-contant01-text-area br {
    display: block;
}

/* 画像エリア */
.region-contant01-img-area {
    width: 100%;
    height: 500px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 2.5s ease-out;
}

/* 画面に入ったら表示 */
.region-contant01-img-area.fade-in {
    opacity: 1;
}

.region-contant01-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .ksc-slider-title h1 {
        font-size: 4rem;
    }
    
    .ksc-slider-title .ksc-text-vertical {
        font-size: 1.2rem;
        margin-right: 1rem;
        letter-spacing: 0.3em;
    }
}

@media (max-width: 900px) {
    /* スタイル01 - テキスト左、画像右 */
    .ksc-region-contant01-style01 .region-contant01-text-area {
        flex: 50%;
    }

    .ksc-region-contant01-style01 .region-contant01-img-area {
        flex: 50%;
    }

    /* スタイル02 - 画像左、テキスト右 */
    .ksc-region-contant01-style02 .region-contant01-img-area {
        flex: 50%;
    }

    .ksc-region-contant01-style02 .region-contant01-text-area {
        flex: 50%;
    }


}

/* レスポンシブ対応 - Mobile (619px以下) */
@media (max-width: 619px) {
    .ksc-region-contant01-style01 {
        flex-direction: column-reverse; /* 画像を上に */
    }
    
    .ksc-region-contant01-style02 {
        flex-direction: column; /* 画像を上に */
    }

    .ksc-region-contant01-style01,
    .ksc-region-contant01-style02 {
        gap: 0;
        margin-bottom: 60px;
        height: auto;
        max-height: none;
        min-height: auto;
        padding: 0;
    }

    .ksc-region-contant01-style01 .region-contant01-text-area {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        margin-left: 0px;        
    }
    
    .ksc-region-contant01-style01 .region-contant01-img-area,
    .ksc-region-contant01-style02 .region-contant01-text-area,
    .ksc-region-contant01-style02 .region-contant01-img-area {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .region-contant01-img-area {
        height: 400px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .region-contant01-img-area img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* テキストエリアのpaddingを調整 */
    .ksc-region-contant01-style01 .region-contant01-text-area,
    .ksc-region-contant01-style02 .region-contant01-text-area {
        padding: 20px;
    }

    .ksc-contant-slider01 {
        height: 50vh;
        min-height: 300px;
        margin-bottom: 60px;
    }

    .ksc-region-contant01-wrap {
        padding: 0;
        margin-bottom: 60px;
    }

    .ksc-region-contant01-section > h2 {
        padding: 40px 20px 30px;
    }
    
    .ksc-region-contant01-section > p {
        max-width: 550px;
        line-height: 1.7rem;
    }
}

@media (max-width: 480px) {
    .ksc-slider-title h1 {
        font-size: 3rem;
    }
    
    .ksc-slider-title .ksc-text-vertical {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 427px) {
    .region-contant01-img-area {
        height: 300px;
    }

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

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* サイクリング */
.ksc-cycling-area {
    width: 100%;
    max-width: 620px;
    margin:40px auto 80px auto;
}

.ksc-cycling-area__container {
    border: 1px solid #000;
    padding: 20px 50px;
}

.ksc-cycling-area__item {
    display: flex;
    align-items: flex-start;
    margin: 15px 0px;
}

.ksc-cycling-area__item:last-child {
    margin-bottom: 0;
}

.ksc-cycling-area__label {
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 80px;
    padding-right: 30px;
    border-right: 1px solid #000;
    margin-right: 30px;
    flex-shrink: 0;
}

.ksc-cycling-area__value {
    font-size: 1.2rem;
    line-height: 1.8;
    padding-top: 0;
}

@media (max-width: 780px) {
.ksc-cycling-area {
    width: 90%;
    margin:20px auto 40px auto;
}

.ksc-cycling-area__container {
    padding: 10px 20px;
}

.ksc-cycling-area__item {
    display: flex;
    align-items: flex-start;
    margin: 15px 0px;
}

.ksc-cycling-area__label {
    font-size: 1rem;
    padding-right: 15px;
    margin-right: 15px;
}

.ksc-cycling-area__value {
    font-size: 0.9rem;
    line-height: 1.2;
    padding-top: 0;
}
}

/* テーブル */
.ksc-table10-section {
    max-width: 750px;
    margin:120px auto 80px auto;
}

.ksc-table10-title {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.ksc-table10-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.ksc-table10-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.ksc-table10-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.ksc-table10-content {
    flex: 1;
}

.ksc-table10-item-title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.ksc-table10-text {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #000;
}

/* 620px以下 - タブレット */
@media (max-width: 620px) {
    body {
        padding: 30px 15px;
    }

    .ksc-table10-title {
        margin-bottom: 40px;
    }

    .ksc-table10-container {
        gap: 30px;
    }

    .ksc-table10-item {
        flex: 1 1 100%;
        min-width: auto;
    }

    .ksc-table10-image {
        height: 250px;
        margin-bottom: 16px;
    }
}

/* 427px以下 - スマートフォン */
@media (max-width: 427px) {
    body {
        padding: 20px 12px;
    }

    .ksc-table10-title {
        margin-bottom: 30px;
    }

    .ksc-table10-container {
        gap: 25px;
    }

    .ksc-table10-image {
        height: 200px;
        margin-bottom: 12px;
    }

    .ksc-table10-item-title {
        margin-bottom: 12px;
    }
}

/* 320px対応 - 最小サイズ */
@media (max-width: 320px) {
    body {
        padding: 15px 10px;
    }

    .ksc-table10-image {
        height: 180px;
    }

    .ksc-table10-container {
        gap: 20px;
    }
}

/* ===================================
   ksc-blt02-section スタイル
 =================================== */
 
/* 地図セクション */
#map {
    width: 100%;
    padding: 50px 0;
}

.map_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map_wrap iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #map {
        padding: 60px 0;
    }
    
    .map_wrap iframe {
        height: 350px;
    }
}

@media (max-width: 427px) {
    #map {
        padding: 40px 0;
    }
    
    .map_wrap {
        padding: 0 15px;
    }
    
    .map_wrap iframe {
        height: 300px;
        border-radius: 4px;
    }
}

/* ===================================
   ksc-blt02-section スタイル
 =================================== */

.ksc-blt02-section {
    width: 100%;
    background: #fff;
    padding: 60px 0 100px;
}

/* イントロエリア */
.ksc-blt02-intro {
    display: flex;
    gap: 0;
    width: 100%;
    margin: 0 auto 80px;
    padding: 0;
    align-items: flex-start;
}

.ksc-blt02-intro-left {
    flex: 0 0 50%;
}

.ksc-blt02-intro-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.ksc-blt02-intro-right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 40px 40px 40px;
}

.ksc-blt02-intro-right h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.4;
    color: #2c3e50;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.ksc-blt02-intro-images {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.ksc-blt02-intro-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* スライダー */
.ksc-blt02-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
    padding: 20px 0;
}

.ksc-blt02-slider-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 30s linear infinite;
}

.ksc-blt02-slider-track img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}

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


/* Pick Up タイトル（斜め） */

.ksc-blt02-pickup-title {
    font-size: clamp(48px, 6vw, 60px);
    font-weight: 400;
    margin-bottom: 20px;
    margin-left: -10px;
    padding-left: 30px;
    letter-spacing: 0.05em;
    color: #2c3e50;
    position: relative;
    display: block;
    width: 100%;
    transform: rotate(-10deg);
    transform-origin: left center;
}

/* Pick Up タイトルの線（下線・全幅） */
.ksc-blt02-pickup-line {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: #2c3e50;
    margin-top: 5px;
}        

/* Pick Up セクション */
.ksc-blt02-pickup-section {
    width: 100%;
    margin: 0 auto;
    padding: 0 0 100px;
}

/* Pick Up エリア */
.ksc-blt02-pickup {
    display: flex;
    gap: 0;
    align-items: flex-start;
}

.ksc-blt02-pickup-left {
    flex: 0 0 50%;
    position: relative;
}

/* 左側の画像上のラベル */
.ksc-blt02-pickup-label {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 24px;
    letter-spacing: 0.05em;
    z-index: 2;
    border-left: 4px solid #2c3e50;
}

.ksc-blt02-pickup-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ksc-blt02-pickup-right {
    flex: 0 0 50%;
    padding: 40px 40px 40px 40px;
}

.ksc-blt02-pickup-right h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 32px;
    color: #2c3e50;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.ksc-blt02-pickup-right p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 2;
    color: #555;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
}

/* ===================================
   ksc-ranking02 スタイル
 =================================== */

.ksc-ranking02-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.ksc-ranking02-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ksc-ranking02-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: transform 0.3s ease;
}

.ksc-ranking02-card:hover {
    transform: translateY(-5px);
}

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

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

.ksc-ranking02-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    z-index: 2;
}

.ksc-ranking02-content {
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ksc-ranking02-text {
    font-size: 14px;
    line-height: 2;
    color: #555;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    flex: 1;
}

/* レスポンシブ対応 - Mobile (619px以下) */
@media (max-width: 619px) {
    .ksc-blt02-intro,
    .ksc-blt02-pickup {
        flex-direction: column;
        gap: 0;
    }

    .ksc-blt02-intro-left,
    .ksc-blt02-intro-right,
    .ksc-blt02-pickup-left,
    .ksc-blt02-pickup-right {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .ksc-blt02-intro-left img,
    .ksc-blt02-pickup-left img {
        width: 100%;
        height: 400px;
    }

    .ksc-blt02-intro-right,
    .ksc-blt02-pickup-right {
        padding: 40px 20px;
    }

    .ksc-blt02-intro-images img {
        height: 250px;
    }

    .ksc-blt02-pickup-title {
        padding-left: 20px;
        margin-left:-10px;
    }
    .ksc-ranking02-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ksc-blt02-slider-track img {
        width: 200px;
        height: 150px;
    }
}

/* レスポンシブ対応 - Small Mobile (427px以下) */
@media (max-width: 427px) {
    .ksc-blt02-section {
        padding: 40px 0 60px;
    }

    .ksc-blt02-pickup-section {
        padding: 0 0 60px;
    }

    .ksc-blt02-intro {
        margin-bottom: 60px;
    }

    .ksc-blt02-intro-left img {
        height: 300px;
    }

    .ksc-blt02-intro-images img {
        height: 200px;
    }

    .ksc-blt02-intro-right,
    .ksc-blt02-pickup-right {
        padding: 30px 15px;
    }

    .ksc-blt02-slider {
        margin-bottom: 60px;
    }

    .ksc-blt02-slider-track img {
        width: 180px;
        height: 130px;
    }

    .ksc-blt02-pickup-title {
        font-size: 36px;
        margin-left: 15px;
        margin-bottom: 40px;
    }

    .ksc-blt02-pickup-line {
        width: 100px;
    }

    .ksc-blt02-pickup-left img {
        height: 350px;
    }

    .ksc-blt02-pickup-label {
        font-size: 14px;
        padding: 8px 16px;
        top: 15px;
        left: 15px;
    }

    .ksc-ranking02-container {
        padding: 0 15px 40px;
    }

    .ksc-ranking02-image {
        height: 300px;
    }

    .ksc-ranking02-content {
        padding: 20px 15px;
    }
}

 /* ===================================
   カテゴリ情報ページ
 =================================== */