@charset "UTF-8";

/* ==========================================================
   PC用のヘッダー調整（既存のヘッダー幅 1200px に完全に適合させる）
   ========================================================== */

/* 親のヘッダー枠をFlexboxにして左右端に寄せる */
.cmn-header__body {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 90px !important; /* ヘッダーの高さを固定 */
  position: relative !important;
}

/* 既存のロゴ位置の絶対配置干渉をリセット */
.cmn-header-logo {
  position: static !important; 
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* PCナビをFlexboxで一列にし、高さを中央揃えにする */
.pc-nav {
  position: static !important; /* 絶対配置を完全に解除 */
  display: block !important;
  margin-left: auto !important; /* ロゴの右側に無理やり寄せる */
}

.pc-nav ul {
  display: flex !important;
  align-items: center !important; /* 上下の高さを中央揃えに */
  gap: 25px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 既存の共通設定（liへの自動「-」付与など）をPC側でも徹底リセット */
.pc-nav ul li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: inline-block !important; /* 横並びを保証 */
}

.pc-nav ul li:before {
  display: none !important; /* PC表示での「-」を完全に消去 */
  content: none !important;
}

/* ナビゲーションの文字リンク */
.pc-nav ul li a {
  color: #333 !important;
  font-size: 15px !important;
  display: block !important;
  line-height: 1 !important; /* 行高による上下のズレ（キャンペーン特典の浮き）を解消 */
  text-decoration: none !important;
}
.pc-nav ul li a:hover {
  text-decoration: underline !important;
}

/* PC用 ログインボタン */
.pc-nav ul li a.btn-open-account {
  background-color: #ee7d00 !important; /* オレンジ */
  color: #fff !important;
    text-align: center;
  padding: 10px 25px !important;
  border-radius: 50px !important;
  transition: opacity 0.3s !important;
  line-height: 1.1 !important;
}
.pc-nav ul li a.btn-open-account span{
    font-size: 11px;
}
.pc-nav ul li a.btn-open-account:hover {
  opacity: 0.8 !important;
  text-decoration: none !important;
}

/* PC時はスマホ用コンポーネントを完全に隠す */
.burger-btn, 
.sp-menu-overlay {
  display: none !important;
}

/* ==========================================================
   「お手続はこちらから」セクション（エンドレス配置）
   ========================================================== */
.process-section {
    background-color: #d8ecff;
    background-repeat: repeat;
}

/* ==================
   リボン風見出し
   ================== */
.ribbon-wrap {
  text-align: center;
  margin-bottom: 35px; /* リボンの影を考慮した余白 */
}

/* リボン全体を包むコンテナ */
.ribbon-heading {
  position: relative;
  display: inline-block;
}

/* リボンの本体（中央の四角） */
.ribbon-heading h2 {
  position: relative;
  display: inline-block;
  background-color: #ee7d00;
  color: #fff !important;
  font-size: 24px;
  font-weight: normal;
  padding: 12px 60px;
  margin: 0 !important;
  border-bottom: none !important;
  z-index: 2; /* リボンの端や影より上に配置 */
}

/* 左右の影（折り返し部分の暗い三角） */
.ribbon-heading h2::before,
.ribbon-heading h2::after {
  content: "";
  position: absolute;
  top: 100%;
  border-style: solid;
  border-color: transparent;
}
.ribbon-heading h2::before {
  left: 0;
  border-width: 0 10px 10px 0;
  border-right-color: #ac4f00; /* 暗いオレンジ */
}
.ribbon-heading h2::after {
  right: 0;
  border-width: 0 0 10px 10px;
  border-left-color: #ac4f00; /* 暗いオレンジ */
}

/* 左右に飛び出るリボンの端（V字カット） */
.ribbon-heading::before,
.ribbon-heading::after {
  content: "";
  position: absolute;
  top: 10px; /* 本体より少し下から始まる */
  bottom: -10px; /* 本体の下にはみ出す */
  width: 40px; /* 飛び出す幅 */
  background-color: #e46e00;
  z-index: 1; /* 本体の後ろに配置 */
}
.ribbon-heading::before {
  left: -30px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 15px 50%, 0 0);
}
.ribbon-heading::after {
  right: -30px;
  clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 15px) 50%, 100% 0);
}


/* ==================
   キャッチリード
   ================== */
.process-lead {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

/* ==================
   大きな一つの白枠（コンテンツ幅1200px対応）
   ================== */
.process-box {
  display: flex;
  justify-content: center;
  align-items: stretch; /* 左右の高さを完全に揃える */
  width: 100%;
  max-width: 1200px; /* 親の幅に従って最大1200px */
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  padding: 50px 0; /* 白枠の内側の余白 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* 左右のカラム */
.process-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 50px; /* 区切り線との余白 */
}

/* 中央のグレー区切り線 */
.process-divider {
  width: 1px;
  background-color: #d9d9d9;
  flex-shrink: 0;
}

/* 吹き出しタブ（白枠の中） */
.speech-tab {
  position: relative;
  background-color: #074ca5;
  color: #fff;
  font-size: 20px;
  padding: 16px 20px;
  border-radius: 5px;
  margin-bottom: 25px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* 吹き出しのツノ（左下） */
.speech-tab::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: calc(50% - 5px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #074ca5 transparent transparent transparent;
}


/* オレンジ立体ボタン */
.orange-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  background-color: #ee7d00;
  color: #fff !important;
  font-size: 22px;
  text-decoration: none !important;
  border-radius: 40px;
  padding: 0 18px 0 48px;
  box-shadow: 0 4px 0 #bd5300, 0 5px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin: 0 auto;
  margin-top: auto; /* ボタンを常に一番下に配置 */
  box-sizing: border-box;
}

.orange-btn span:first-child {
  flex: 1;
  text-align: center;
}

.orange-btn .btn-sub {
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  margin-left: 4px;
}

/* ボタン右側の白い円 & 飛行機アイコン */
.orange-btn .icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orange-btn .icon-wrap::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/icon_plane.svg") no-repeat center / contain;
}

/* ホバー時の押し込み効果 */
.orange-btn:hover {
  transform: translateY(4px);
  box-shadow: 0 0 0 #bd5300, 0 2px 4px rgba(0, 0, 0, 0.15);
}


/* ==========================================================
   スマホ対応（767px以下）
   ========================================================== */
@media screen and (max-width: 767px) {
  
  /* スマホ用リボン調整 */
.ribbon-wrap {
  margin-bottom: 24px; 
}
  .ribbon-heading h2 {
    font-size: 14px;
    padding: 8px 24px;
  }
  .ribbon-heading::before,
  .ribbon-heading::after {
    width: 26px;
  }
  .ribbon-heading::before {
    left: -16px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 10px 50%, 0 0);
  }
  .ribbon-heading::after {
    right: -16px;
    clip-path: polygon(0 0, 0 100%, 100% 100%, calc(100% - 10px) 50%, 100% 0);
  }

  .process-lead {
    font-size: 18px;
    margin-bottom: 25px;
  }

  /* 白枠のスマホ対応（縦並びに変更） */
  .process-box {
    flex-direction: column;
    padding: 25px 20px 30px;
  }

  .process-col {
    padding: 0;
  }

  /* スマホ時は縦の区切り線を「横線」に変更 */
  .process-divider {
    width: 100%;
    height: 1px;
    margin: 30px 0 25px;
  }

  .speech-tab {
    font-size: 14px;
    padding: 10px 15px;
    margin-bottom: 20px;
  }

  .orange-btn {
    height: 52px;
    font-size: 15px;
    padding: 0 8px 0 25px;
      line-height: 1.1;
  }
    
.orange-btn .btn-sub {
  font-size: 11px;
  margin-left: 4px;
}

  .orange-btn .icon-wrap {
    width: 34px;
    height: 34px;
  }

  .orange-btn .icon-wrap::after {
    width: 17px;
    height: 17px;
  }
}


/* ==========================================================
   キャンペーン内容セクションの全幅背景（エンドレス配置）
   ========================================================== */
.camp-section {
    background-color: #2d82d2;
}


/* ==========================================================
   camp_section
   ========================================================== */
.camp_section_box {
    position: relative;
    margin: 0 auto;
    padding: 80px 60px;
    border-radius: 10px;
    background-color: #FFFFFF;
    filter: drop-shadow(6px 6px 3px rgba(0, 0, 0, 0.15));
}
.img_coin_r{
    position: absolute;
    top: -26px;
    right: 60px;
}
.img_coin_l{
    position: absolute;
    top: -26px;
    left: 60px;
}
/* ==========================================================
   右上の折り曲げ（ドッグイヤー）エフェクト
   ========================================================== */
.c-mail-box {
    margin: 50px auto 0;
    width: 840px;
    padding: 32px 40px 16px;
    background-color: #fff7db;
    border-radius: 8px;
    position: relative; /* ★追記：折り曲げパーツを右上に固定するための基準点 */
    line-height: 1.6em !important;
}
.c-mail-box p{
    line-height: 1.6em !important;
}
.c-mail-box::before {
    content: "";
    position: absolute;
    top: -1px;     /* ブラウザのバグで一瞬グレーの隙間が見えるのを防ぐプロの微調整 */
    right: -1px;
    width: 28px;   /* 折り曲げる三角形のサイズ（大きさを変えたいときはここを調整） */
    height: 28px;
    
    /* 225deg（右上から左下）に向けて、右上半分を背景と同じ白（#fff）で塗りつぶし、
       左下半分を折り返した紙の裏側（少し濃いグレー）にする魔法のグラデーション */
    background: linear-gradient(225deg, #ffffff 50%, #fae187 50%);
    
    /* 折り曲げた内側の角（左下）にほんの少しだけ丸みをつけて「参考.png」の質感を再現 */
    border-bottom-left-radius: 4px;
}

.u-lh-15{
    line-height: 1.5em!important;
}
.u-lh-16{
    line-height: 1.6em!important;
}
.u-lh-17{
    line-height: 1.7em!important;
}
.u-lh-18{
    line-height: 1.8em!important;
}
.u-lh-19{
    line-height: 1.9em!important;
}
.u-lh-20{
    line-height: 2.0em!important;
}





@media screen and (max-width: 767px) {
  
  /* PCナビを非表示 */
  .pc-nav {
    display: none !important;
  }

  /* スマホヘッダーの枠設定 */
  .cmn-header__body {
    display: flex !important;
    width: 100% !important;
    padding: 0 15px !important;
    height: 75px !important; /* 既存のスマホヘッダー高 */
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* スマホロゴのサイズ調整 */
  .cmn-header-logo {
    margin: 0 !important;
    width: 100px !important;
  }

  /* ハンバーガーボタン（ピンクの丸） */
  .burger-btn {
    display: flex !important; 
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 38px !important;
    height: 38px !important;
    background-color: #ee7d00 !important;
    border: none !important;
    border-radius: 50% !important;
    position: absolute !important;
    right: 18px !important;
    top: 18px !important;
    cursor: pointer !important;
    z-index: 2000 !important;
    padding: 0 !important;
  }
  
  /* ボタンの中の三本線 */
  .burger-btn .bar {
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    background-color: #fff !important;
    transition: all 0.3s !important;
  }

  /* 「✕」アニメーション */
  .burger-btn.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .burger-btn.active .bar:nth-child(2) {
    opacity: 0 !important;
  }
  .burger-btn.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* スマホ用メニューの背景マスク */
  .sp-menu-overlay {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    z-index: 1500 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .sp-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* 白いメニューボックス */
  .sp-menu-inner {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px) !important;
    max-width: 320px !important;
    background-color: #fff !important;
    border-radius: 5px !important;
    padding: 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  }

  /* メニュー内のリンク */
  .sp-nav-list {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .sp-nav-list li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .sp-nav-list li:before {
    display: none !important; /* スマホ側でも「-」を消去 */
    content: none !important;
  }
  .sp-nav-list li a {
    color: #0054a6 !important;
    font-size: 16px !important;
    padding: 12px 0 !important;
    display: block !important;
    text-align: center !important;
    line-height: 1 !important;
  }
  
  /* メニュー内の口座開設ボタン */
  .sp-menu-btn-wrap {
    margin-top: 20px !important;
    display: block !important;
  }
  .sp-menu-btn-wrap .btn-open-account {
    background-color: #ee7d00 !important;
    color: #fff !important;
    padding: 10px 0 !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    display: block !important;
    text-align: center !important;
      text-decoration: none;
    line-height: 1.2 !important;
  }
  .sp-menu-btn-wrap .btn-open-account span{
    font-size: 11px !important;
  }
  .sp-menu-btn-wrap .btn-open-account:hover {
    text-decoration: none !important;
  }
    
/* ==========================================================
   キャンペーン内容セクションの全幅背景（エンドレス配置）
   ========================================================== */
.camp-section {
    background-size: 10%;
    padding-bottom: 10px;
}
    
/* ==========================================================
   camp_section
   ========================================================== */
.camp_section_box {
    position: relative;
    margin: 0 auto;
    padding: 30px 20px;
    border-radius: 5px;
    background-color: #FFFFFF;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.15));
}
.img_coin_r{
    position: absolute;
    width: 70px;
    top: -12px;
    right: -6px;
}
.img_coin_l{
    position: absolute;
    width: 70px;
    top: -32px;
    left: -14px;
}
/* ==========================================================
   右上の折り曲げ（ドッグイヤー）エフェクト
   ========================================================== */
.c-mail-box {
    margin: 20px auto 0;
    width: 100%;
    padding: 20px 20px 10px;
    background-color: #fff7db;
    border-radius: 5px;
    position: relative; /* ★追記：折り曲げパーツを右上に固定するための基準点 */
    line-height: 1.6em !important;
}
.c-mail-box::before {
    content: "";
    position: absolute;
    top: -1px;     /* ブラウザのバグで一瞬グレーの隙間が見えるのを防ぐプロの微調整 */
    right: -1px;
    width: 20px;   /* 折り曲げる三角形のサイズ（大きさを変えたいときはここを調整） */
    height: 20px;
    
    /* 225deg（右上から左下）に向けて、右上半分を背景と同じ白（#fff）で塗りつぶし、
       左下半分を折り返した紙の裏側（少し濃いグレー）にする魔法のグラデーション */
    background: linear-gradient(225deg, #ffffff 50%, #fae187 50%);
    
    /* 折り曲げた内側の角（左下）にほんの少しだけ丸みをつけて「参考.png」の質感を再現 */
    border-bottom-left-radius: 4px;
}
    
    
    
    
.u-sp-lh-10{
    line-height: 1.0em!important;
}    
.u-sp-lh-11{
    line-height: 1.1em!important;
}
.u-sp-lh-12{
    line-height: 1.2em!important;
}
.u-sp-lh-13{
    line-height: 1.3em!important;
}
.u-sp-lh-14{
    line-height: 1.4em!important;
}
.u-sp-lh-15{
    line-height: 1.5em!important;
}
.u-sp-lh-16{
    line-height: 1.6em!important;
}
.u-sp-lh-17{
    line-height: 1.7em!important;
}
.u-sp-lh-18{
    line-height: 1.8em!important;
}
.u-sp-lh-19{
    line-height: 1.9em!important;
}
.u-sp-lh-20{
    line-height: 2.0em!important;
}
    
}
    
