/*
 * common.css
 * JTB WEB フォーマット 共通スタイル
 * カラー変数・タイポグラフィ・ユーティリティクラス
 * ================================================ */

/* ------------------------------------------------
   外部リソース読み込み
   ※ @import は必ずファイルの最上部に記述すること
   ------------------------------------------------ */

/* JTB 国内共通フッターCSS（実パス: https://www.jtb.co.jp/kokunai/___common/css/footer_kokunai.css） */
@import url("/kokunai/___common/css/footer_kokunai.css");

/* Google Fonts — Noto Sans JP / Noto Serif JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@400;600;700&display=swap');

/* Material Icons / Material Symbols */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

/* ------------------------------------------------
   アイコンフォント（JTB共通サーバー）
   実パス: https://www.jtb.co.jp/kokunai/___common/fonts/
         https://www.jtb.co.jp/kokunai/_common/fonts/
   ------------------------------------------------ */
@font-face {
  font-family: 'kkrs-dp';
  src: url("/kokunai/___common/fonts/kkrs-dp.ttf") format("truetype"),
       url("/kokunai/___common/fonts/kkrs-dp.woff") format("woff"),
       url("/kokunai/___common/fonts/kkrs-dp.svg#kkrs-dp") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'jtb-dom';
  src: url("/kokunai/_common/fonts/jtb-dom.ttf") format("truetype"),
       url("/kokunai/_common/fonts/jtb-dom.woff") format("woff"),
       url("/kokunai/_common/fonts/jtb-dom.svg#jtb-dom") format("svg");
  font-weight: normal;
  font-style: normal;
}


/* ------------------------------------------------
   CSS カスタムプロパティ（カラー・サイズ）
   ------------------------------------------------ */
:root {
  /* JTBブランドカラー */
  --jtb-blue:        #003580;   /* JTBネイビー */
  --jtb-blue-mid:    #0050a0;   /* ミドルブルー */
  --jtb-blue-light:  #e8f0f8;   /* ライトブルー（背景など） */
  --jtb-red:         #cc0000;   /* アクセントレッド */
  --jtb-orange:      #e8570a;   /* オレンジ（CTA） */

  /* グレースケール */
  --color-text:      #333333;
  --color-text-sub:  #666666;
  --color-border:    #dddddd;
  --color-bg-gray:   #f5f5f5;
  --color-white:     #ffffff;

  /* フォント */
  --font-family-base: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --font-size-base:   16px;
  --line-height-base: 1.8;

  /* レイアウト */
  --inner-width:     1120px;
  --inner-padding:   20px;

  /* スペーシング */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  60px;
  --space-xl:  90px;

  /* ボーダーラジウス */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* トランジション */
  --transition-base: 0.2s ease;
}


/* ------------------------------------------------
   レイアウト / パンくず
   #flexbox_at はページ全体のコンテンツラッパー。
   .kkrs-breadcrumb-* は JTB 共通パンくずクラス。
   ------------------------------------------------ */
#flexbox_at {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-top: 0;
  font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  #flexbox_at {
    flex-direction: column-reverse; /* SP：パンくずを最下部へ */
  }
}

.kkrs-breadcrumb-bg {
  width: 100%;
  background-color: #f5f5f5;
  padding: 0;
  margin-top: 0;
}

.kkrs-breadcrumb {
  padding: 1rem 0;
  max-width: 1236px;
  margin-left: auto;
  margin-right: auto;
}

.kkrs-breadcrumb__fix {
  display: none;
}

.kkrs-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  color: #656972;
}

.kkrs-breadcrumb__list > li {
  margin-right: 2rem;
  position: relative;
  list-style: none;
}

.kkrs-breadcrumb__list > li a {
  color: #125687;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li a:hover {
  text-decoration: underline;
}

.kkrs-breadcrumb__list > li a.kkrs-breadcrumb__current-link {
  color: #656972;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li:not(:last-child)::before {
  content: ">";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -1.5rem;
  font-size: 0.8rem;
  color: #989ba1;
  margin-top: -0.5em;
}

.kkrs-breadcrumb__list > li:last-child {
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .kkrs-breadcrumb-bg {
    background-color: #fff;
  }

  .kkrs-breadcrumb {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 1px solid #d7d7d7;
    line-height: 3rem;
    padding: 0;
    background: #fff;
  }

  .kkrs-breadcrumb__fix {
    display: block;
    box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s;
  }

  .kkrs-breadcrumb__fix a {
    padding: 0 0.5rem 0 1rem;
    font-size: 1rem;
    color: #125687;
    text-decoration: none;
  }

  .kkrs-breadcrumb.kkrs-top .kkrs-breadcrumb__fix {
    box-shadow: none;
  }

  .kkrs-breadcrumb__scroll {
    flex: 1;
    overflow: hidden;
  }

  .kkrs-breadcrumb__list {
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 3rem;
    overflow-y: hidden;
    overflow-x: scroll;
  }

  .kkrs-breadcrumb__list > li {
    margin: 0;
    padding: 0 0.5rem 0 1.8rem;
  }

  .kkrs-breadcrumb__list > li:nth-child(1) {
    display: none;
  }

  .kkrs-breadcrumb__list > li:not(:last-child)::before {
    content: "";
    margin: 0;
    top: -0.5rem;
    right: -0.9rem;
  }

  .kkrs-breadcrumb__list > li:last-child {
    padding: 0 1rem 0 1.8rem;
    pointer-events: none;
  }

  .kkrs-breadcrumb__list > li:last-child::after,
  .kkrs-breadcrumb__list > li:last-child::before {
    display: none;
  }

  .kkrs-breadcrumb__fix a,
  .kkrs-breadcrumb__list > li {
    display: block;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
  }

  .kkrs-breadcrumb__fix a::before,
  .kkrs-breadcrumb__list > li::before {
    content: "";
    border-style: solid;
    border-width: 2rem 0 2rem 1rem;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: -0.5rem;
    right: -0.9rem;
    z-index: 2;
  }

  .kkrs-breadcrumb__fix a::after,
  .kkrs-breadcrumb__list > li::after {
    content: "";
    border-style: solid;
    border-width: 2rem 0 2rem 1rem;
    border-color: transparent transparent transparent #d7d7d7;
    position: absolute;
    top: -0.5rem;
    right: -1rem;
    z-index: 1;
  }
}


/* ------------------------------------------------
   ベーススタイル
   ------------------------------------------------ */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: var(--line-height-base);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}


/* ------------------------------------------------
   インナーラッパー
   ------------------------------------------------ */
.lp-inner {
  max-width: var(--inner-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--inner-padding);
  padding-left: var(--inner-padding);
}


/* ------------------------------------------------
   セクション共通
   ------------------------------------------------ */
.lp-section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.lp-section--gray {
  background-color: var(--color-bg-gray);
}

.lp-section--blue {
  background-color: var(--jtb-blue-light);
}

/* セクションタイトル */
.lp-section__ttl {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--jtb-blue);
  text-align: center;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: 16px;
}

.lp-section__ttl::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background-color: var(--jtb-orange);
  margin: 12px auto 0;
}

/* セクションリード文 */
.lp-section__lead {
  text-align: center;
  font-size: 15px;
  color: var(--color-text-sub);
  max-width: 720px;
  margin: 0 auto var(--space-md);
}


/* ------------------------------------------------
   ユーティリティ
   ------------------------------------------------ */

/* フォントウェイト（JTB共通クラスと合わせる） */
.fw-700 { font-weight: 700; }
.fw-400 { font-weight: 400; }

/* テキスト配置 */
.ta-c  { text-align: center; }
.ta-l  { text-align: left; }
.ta-r  { text-align: right; }

/* 表示・非表示（スマホ/PC） */
@media (max-width: 767px) {
  .sp-hide { display: none !important; }
}
@media (min-width: 768px) {
  .pc-hide { display: none !important; }
}

/* 注釈テキスト */
.lp-note {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: var(--space-xs);
  padding-left: 1em;
  text-indent: -1em;
}

.lp-note::before {
  content: '※';
}

/* 区切り線 */
.lp-hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-md) 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■パンくず
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

#flexbox_at{
    display: flex;
    flex-direction: column;
    padding: 0px;
    margin-top: 0px;
  font-feature-settings: "palt";
}
@media screen and (max-width:767px){
#flexbox_at{
	display: flex;
	flex-direction: column-reverse;
    padding: 0px;
    margin-top: 0px;
}	
}

.kkrs-breadcrumb-bg{
    width: 100%;
    background-color: #f5f5f5;
    padding: 0px;
    margin-top: 0px;
}
.kkrs-breadcrumb{
  padding: 1rem 0;
  max-width: 1236px;
  margin-left: auto;
  margin-right: auto;
}

.kkrs-breadcrumb__fix{
  display: none;
}

.kkrs-breadcrumb__list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #656972;
}

.kkrs-breadcrumb__list > li {
  margin-right: 2rem;
  position: relative;
    list-style: none;
}

.kkrs-breadcrumb__list > li a {
  color: #125687;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li a:hover {
  text-decoration: underline;
}

.kkrs-breadcrumb__list > li a.kkrs-breadcrumb__current-link {
  color: #656972;
  text-decoration: none;
}

.kkrs-breadcrumb__list > li:not(:last-child):before {
  display: inline-block;
  font-family: "Material Icons Round";
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  content: ">";
  position: absolute;
  top: 50%;
  right: -1.5rem;
  font-size: 1rem;
  color: #989ba1;
  margin-top: -0.5em;
}

.kkrs-breadcrumb__list > li:last-child {
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
	.kkrs-breadcrumb-bg{
	background-color: #fff;
}
  .kkrs-breadcrumb {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid #d7d7d7;
    line-height: 3rem;
    padding: 0;
    background: #fff;
    /*margin: 0 -1rem*/
  }
  .kkrs-breadcrumb__fix {
    display: block;
    -webkit-box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 6px 0 10px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    -webkit-transition: -webkit-box-shadow 0.3s;
    transition: -webkit-box-shadow 0.3s;
    transition: box-shadow 0.3s;
    transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  }
  .kkrs-breadcrumb__fix a {
    padding: 0 0.5rem 0 1rem;
    font-size: 1.2rem;
    color: #125687;
    -webkit-transition: none;
    transition: none;
    text-decoration: none;
  }
  .kkrs-breadcrumb.kkrs-top .kkrs-breadcrumb__fix {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .kkrs-breadcrumb__scroll {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
  }
  .kkrs-breadcrumb__list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    height: 3rem;
    overflow-y: hidden;
    overflow-x: scroll;
  }
  .kkrs-breadcrumb__list > li {
    margin: 0;
    padding: 0 0.5rem 0 1.8rem;
  }
  .kkrs-breadcrumb__list > li:nth-child(1) {
    display: none;
  }
  .kkrs-breadcrumb__list > li:not(:last-child):before {
    content: "";
    margin: 0;
    top: -0.5rem;
    right: -0.9rem;
  }
  .kkrs-breadcrumb__list > li:last-child {
    padding: 0 1rem 0 1.8rem;
  }
  .kkrs-breadcrumb__list > li:last-child:after,
  .kkrs-breadcrumb__list > li:last-child:before {
    display: none;
  }
  .kkrs-breadcrumb__fix a,
  .kkrs-breadcrumb__list > li {
    display: block;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    position: relative;
  }
  .kkrs-breadcrumb__fix a:after,
  .kkrs-breadcrumb__fix a:before,
  .kkrs-breadcrumb__list > li:after,
  .kkrs-breadcrumb__list > li:before {
    content: "";
    border-style: solid;
    border-width: 2rem 0 2rem 1rem;
    position: absolute;
    top: -0.5rem;
  }
  .kkrs-breadcrumb__fix a:before,
  .kkrs-breadcrumb__list > li:before {
    right: -0.9rem;
    border-color: transparent transparent transparent #fff;
    z-index: 2;
  }
  .kkrs-breadcrumb__fix a:after,
  .kkrs-breadcrumb__list > li:after {
    right: -1rem;
    border-color: transparent transparent transparent #d7d7d7;
    z-index: 1;
  }
}


/* ============================================================
   #coupon-plan
   ============================================================ */

/* KV背景帯 */
#coupon-plan .cp-kv {
  background-image: url(../images/plan/bg_photo.jpg);
  background-position: center top;
  background-size: cover;
}
#coupon-plan .cp-kv__inner {
  padding: 30px 0;
  text-align: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 65%);
}

/* タイトル画像 */
#coupon-plan .cp-ttl {
  width: 30%;
  margin: 25px auto 40px;
  padding: 0;
}
#coupon-plan .cp-ttl img { width: 100%; }

/* ボタンラッパー */
#coupon-plan .cp-box {
  max-width: 1230px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ボタン列（grid 2カラム） */
#coupon-plan .cp-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
}

/* ボタン共通 */
.cp-btn-plan {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px 20px 10px;
    text-align: center;
    text-decoration: none;
    background: #000;
    border: 2px solid #000;
    color: #fff;
    font-size: 20px;
    transition: color .2s ease;
    font-weight: bold;
}
/* 全幅ボタン */
.cp-btn-plan--full { grid-column: 1 / -1; }

/* ボタンテキスト */
.cp-btn-plan span {
  position: relative;
  z-index: 1;
  color: #fff;
  transition: color .2s ease;
}
.cp-btn-plan:hover span { color: #333; }
/* 矢印 */
.cp-btn-plan::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  width: .5em;
  height: .5em;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color .2s ease;
}
.cp-btn-plan:hover::after {
  border-color: #333;
}
/* 斜めアニメ背景 */
.cp-btn-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 120%;
  height: 100%;
  background: #ffcf00;
  transform: skewX(-25deg);
}
.cp-btn-plan:hover::before {
  animation: skewanime .5s forwards;
}
@keyframes skewanime {
  100% { left: -10%; }
}


.cp-btn-plan br{
    display: none;    
}
/* ============================================================
   レスポンシブ
   ============================================================ */
@media screen and (max-width: 1079px) {
  #coupon-plan .cp-ttl { width: 70%; }
  #coupon-plan .cp-box  { margin: 10px auto 30px; }
}

@media screen and (max-width: 680px) {
  #coupon-plan .cp-kv__inner { padding: 20px 0; }
  #coupon-plan .cp-ttl  { width: 100%; margin: 0 auto; }
  #coupon-plan .cp-box  { margin: 10px auto 30px; }
  #coupon-plan .cp-btns { grid-template-columns: 1fr; }
  .cp-btn-plan { font-size: 16px; }
  .cp-btn-plan br { display: block; }
}