@charset "UTF-8";
/*----------------------------
  共通
-----------------------------*/

.h5 {
    line-height: 1.8rem;
}
.border-w3 { 
    border-left-width: 3px !important;
    border-left-color: #262626 !important;
}

/* ====== カラー指定 ====== */
.brand-color {
	color: #21386E !important;
}
.bg-brand-color {
	background-color: #009144 !important;
}
/* ====== GLOVAL NAV ====== */
.gloval-nav {
	height: 10%;
}
.navbar-white a {
	color: #fff;
}
/* ====== FOOTER ====== */
.footer-logo {
	width: 20%;
}
.social img {
	width: 36px;
	height: 36px;
}
footer {
	padding-bottom: 5%;
}
.time-border {
   border-top: 3px solid #262626;
    border-right: 3px solid #262626;
    margin-left: 24px;
    padding-bottom: 3rem;
    padding-right: 5rem;
    width: 43%;
}
/* ====== BREADCRUMB LIST ====== */
.breadcrumb-list, .breadcrumb-list li {
	background-color: #21386E;
}
/*----------------------------
  SP TOGGLE NAV
-----------------------------*/
.nav-scroller {
	position: relative;
	z-index: 2;
	height: 2.75rem;
	overflow-y: hidden;
}
.nav-scroller .nav {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	padding-bottom: 1rem;
	margin-top: -1px;
	overflow-x: auto;
	color: rgba(255, 255, 255, 0.75);
	text-align: center;
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
}
.nav-underline .nav-link {
	padding-top: .75rem;
	padding-bottom: .75rem;
	font-size: .875rem;
	color: #6c757d;
}
.nav-underline .nav-link:hover {
	color: #007bff;
}
.nav-underline .active {
	font-weight: 500;
	color: #343a40;
}

/*----------------------------
  TOP ページ
-----------------------------*/
/* ====== TOP IMAGE ====== */
header .jumbotron-fluid {
	background-image: url(../img/2q_bg.png);
	background-size: cover;
	background-position: center;
	min-height: 100%;
}
header .catch {
	width: 90%;
	bottom: 20%;
	left: 50%;
	margin-left: -45%;
}
header .g-navi {
	min-height: 100%;
}

/* ====== PROCESS ====== */
#sec5 .square {
	width: 60px;
	height: 60px;
	background: #21386E;
	color: #ffffff;
	text-align: center;
	font-size: 2.4rem;
}
#sec5 .arrow {
	width: 60px;
	height: 40px;
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 25px solid #333;
}
/* --------------------------------------------- */
#sec6 .circle-q, #sec6 .circle-a {
	width: 50px;
	height: 50px;
	font-size: 2.2rem;
	border-radius: 50%;
	text-align: center;
}
#sec6 .circle-q {
	background: #21386E;
	color: #ffffff;
	padding-top: 2px;
}
#sec6 .circle-a {
	background: #ffffff;
	color: #21386E;
	border: 3px solid #21386E;
}
.schedule-img {
    width: 75%;
}
/* ==============================================*/
/* 中デバイス（タブレット, 992px 未満）
==============================================*/
@media screen and (max-width: 991.98px) {
#glovalNavbar ul li {
	border-left: none;
}
#glovalNavbar ul li:last-child {
	border-right: none;
}
.footer-nav ul li {
	border-left: none;
}
.footer-nav ul li:last-child {
	border-right: none;
}
/* ====== SP TOGGLE NAV ====== */
.offcanvas-collapse {
	position: fixed;
	z-index: 9999;
	top: 0;
	/* ナビバーの高さ */
	bottom: 10%;
	left: 100%;
	width: 100%;
	padding-right: 1rem;
	padding-left: 1rem;
	overflow-y: auto;
	background-color: #fff;
	transition-timing-function: ease-in-out;
	transition-duration: .3s;
	transition-property: left, visibility;
}
.offcanvas-collapse.open {
	left: 0;
	visibility: visible;
}
}

/* END */
/* 小デバイス（横向きモバイル, 768px 未満）
==============================================*/
@media screen and (max-width: 767.98px) {
.logo {
	width: 80%;
}
.display-3 {
	font-size: 3rem;
}
.footer-logo {
	width: 80%;
}
.navbar-nav .border-left {
	border-left: none !important;
}
.navbar-nav .border-right {
	border-right: none !important;
}
}

/* END */
/* 極小デバイス（縦向きモバイル, 576px 未満）
==============================================*/
@media screen and (max-width: 575.98px) {
header .catch {
	bottom: 10%;
}
header .catch .h1 {
	font-size: 2rem;
}
header .catch h2 {
	font-size: 1rem;
}
.schedule-img {
    width: 100%;
}
form .border-top,
    form .border-bottom {
        border: none !important;
    }    
}
/* END */

/* 各セクションの見出しスタイル */
.section-title {
    background-color: #21386E; /* ブランドカラー */
    color: #ffffff;            /* 白抜き文字 */
    font-size: 2rem;           /* 大きめのフォントサイズ */
    font-weight: bold;         /* 太字 */
    padding: 15px 20px;        /* 上下の余白 */
    text-align: center;        /* 中央揃え */
    margin-bottom: 30px;       /* セクションと本文の間隔 */
    border-radius: 8px;        /* 角の丸み */
}

/* セクション全体の共通スタイル */
section {
    background-color: #ffffff; /* 白背景 */
    padding: 40px 20px;
    border-bottom: 1px solid #ddd; /* セクション間の薄い境界線 */
}

/* ナビゲーションリンク */
.section-nav a {
    color: #21386E;
    font-weight: bold;
    text-decoration: none;
    padding: 8px 12px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.section-nav a:hover {
    background-color: #009144; /* ブランドグリーン */
    color: white;
    border-radius: 4px;
}

/* スマートフォン対応 */
@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;     /* 小さい画面ではフォントサイズを調整 */
        padding: 10px 15px;
    }
    .section-nav a {
        display: block;        /* ナビゲーションを縦並びにする */
        margin: 5px 0;
    }
}

/* 解説動画セクションのボタンスタイル（目立つカラーへ変更） */
#video .btn-primary {
    background-color: #FF6B00;  /* 明るいオレンジ色 */
    border: none;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);  /* 軽いシャドウで立体感 */
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

/* ホバー時のカラーとエフェクト */
#video .btn-primary:hover {
    background-color: #FF8500;  /* より鮮やかなオレンジ */
    transform: scale(1.08);     /* ホバー時の拡大 */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* シャドウを強化 */
}

#video p {
    font-size: 1rem;
    line-height: 1.8;
}

/* スマホ対応 */
@media (max-width: 576px) {
    #video .btn-primary {
        width: 90%;
        font-size: 1rem;
    }
}

/* アイコン付き見出しのスタイル */
.section-title i {
    margin-right: 10px;       /* アイコンとテキストの間の余白 */
    font-size: 1.5em;         /* アイコンのサイズ調整 */
    vertical-align: middle;   /* テキストとの縦位置を揃える */
    color: #ffffff;           /* アイコンのカラー（アクセントカラー） */
}

/* スマホ対応 */
@media (max-width: 576px) {
    .section-title i {
        font-size: 1.2em;     /* モバイルでのアイコンサイズ調整 */
        margin-right: 8px;
    }
}

/* ✅ 動画ギャラリーのレイアウト修正 */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 最小300pxで自動調整 */
    gap: 20px;  /* アイテム間の余白 */
    justify-content: center;  /* 中央揃え */
    padding: 20px 0;
}

/* 動画アイテムのスタイル */
.video-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px); /* ホバー時の軽い浮き上がり効果 */
}

.video-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #21386E;
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 4px;
}

.video-item p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #555;
}

/* ✅ リクエストフォームのボタン改善 */
.btn-request {
    background-color: #009144;  /* 目立つグリーン */
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-request:hover {
    background-color: #007A36;  /* ホバー時に少し濃い色 */
    transform: scale(1.05);
}

/* ✅ スマホ対応 */
@media (max-width: 767px) {
    .video-gallery {
        grid-template-columns: 1fr;  /* スマホでは1列表示 */
    }

    .btn-request {
        width: 90%;       /* スマホではボタンを幅広に */
        font-size: 1rem;
    }
}

/* ✅ ダウンロードボタンの共通スタイル（背景色追加 & 中央揃え） */
.download-buttons {
    display: flex;
    justify-content: center;   /* 中央揃え */
    flex-wrap: wrap;           /* 狭い画面では折り返し */
    gap: 20px;                 /* ボタン間の余白 */
    margin-top: 20px;
}

/* ✅ ボタンデザインの調整 */
.btn-download {
    background-color: #FF6B00;   /* 目立つオレンジ色 */
    color: #FFFFFF;              /* 白い文字で視認性アップ */
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);  /* 立体感をプラス */
    min-width: 280px;                         /* 最小幅を設定してバランス良く */
}

.btn-download i {
    margin-right: 8px;
}

/* ✅ ホバー時のエフェクト */
.btn-download:hover {
    background-color: #FF8500;   /* ホバー時に少し明るいオレンジに */
    transform: scale(1.05);      /* 少し拡大してアクション感を演出 */
    box-shadow: 0 6px 10px rgba(255, 253, 253, 0.3); /* シャドウを強化 */
}

/* ✅ スマホ対応 */
@media (max-width: 767px) {
    .btn-download {
        width: 90%;              /* スマホでは幅広に表示 */
        font-size: 1rem;
    }

    .download-buttons {
        flex-direction: column;  /* 縦並びに調整 */
        align-items: center;     /* 中央揃え */
    }
}

/* =========================
   本書を使う前に…（注意＋動画導線）
========================= */
#before-use {
    background: #fff7ef;              /* うっすら暖色で“注意”感 */
    border-bottom: 1px solid #ddd;
  }
  
  .preuse-callout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    background: #ffffff;
    border: 2px solid #FF6B00;        /* 目立つ縁 */
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }
  
  .preuse-lead {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 12px;
  }
  
  .preuse-list {
    margin: 0 0 14px;
    padding-left: 1.2rem;
  }
  .preuse-list li {
    margin-bottom: 8px;
  }
  
  .preuse-cta {
    margin-top: 6px;
  }
  
  .preuse-btn {
    background-color: #FF6B00;
    color: #fff;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
  }
  .preuse-btn:hover {
    color: #fff;
    background-color: #FF8500;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 14px rgba(0,0,0,0.22);
  }
  
  .preuse-note {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: #555;
  }
  
  .preuse-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #000;
  }
  .preuse-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  
  /* モバイル最適化 */
  @media (max-width: 767.98px) {
    .preuse-callout {
      grid-template-columns: 1fr;
      padding: 14px;
    }
    .preuse-lead {
      font-size: 1rem;
    }
    .preuse-btn {
      width: 100%;
      text-align: center;
    }
  }
  /* ナビ全体：折り返しても綺麗に並ぶ */
.section-nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;            /* リンク同士の余白 */
    padding-left: 12px;
    padding-right: 12px;
  }
  /* ナビのリンク：改行させず、ボタン風に */
.section-nav a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;     /* 途中で改行しない */
    border-radius: 999px;    /* ピル型 */
    background: #21386e;     /* bg-lightの上で見やすく */
    border: 1px solid #d9d9d9;
    color:#fff;
  }
  
  /* hover時の既存挙動はそのままでOK（既存の:hoverが効く） */
  @media (max-width: 576px){
    .section-nav{
      gap: 8px;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .section-nav a{
      padding: 10px 12px;   /* 既存より少しタップしやすく */
      font-size: 0.95rem;
    }
  }