@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
* {
  box-sizing: border-box;
}

body,
a,
.table {
  color: #666;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.3rem;
}

.text-blue {
  color: #6b90db !important;
}

.bg-blue,
.thead-blue,
.badge-primary {
  background-color: #6b90db !important;
}

.bg-lightblue {
  background-color: #ecf7fb !important;
}

.bg-pink {
  background-color: #DB8F81 !important;
}

.border-blue {
  border-color: #B2C2E1 !important;
}

.border-top {
  border-width: 2px !important;
}

p {
  line-height: 1.6rem;
}

/* --------------------------------------------------
    ファーストビュー
-------------------------------------------------- */
.header {
  height: 100vh;
}

.header .jumbotron {
  background-image: url("../img/main-index.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  height: 80%;
  margin-bottom: 0;
}

header .jumbotron-fluid {
	background-image: url(../img/bg-top.jpg);
	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%;
}

/* nav
-------------------------------------------------- */
nav.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}

.navbar-nav {
  flex-wrap: nowrap; /* リストが1行に収まるようにする */
  width: 100%; /* ナビゲーション全体の幅を広げる */
  justify-content: space-around; /* 項目間のスペースを均等に配置 */
	font-weight: 600;
}

.nav-item .nav-link {
  white-space: nowrap; /* メニュー項目が折り返されないようにする */
  padding: 0.5rem 1.5rem; /* 余白を調整してアイテムを広げる */
}

.collapse {
  max-width: 100%; /* ナビゲーションメニューの幅を全体に広げる */
}

/* ====== BREADCRUMB LIST ====== */
.breadcrumb-list {
	margin-bottom: 10px;
}
.breadcrumb-list, .breadcrumb-list li {
	background-color: #21386E;
}

/*    キービジュアル
-------------------------------------------------- */
/*下層ページ*/
.under-layer .jumbotron {
  background-image: url("../img/main-img.jpg");
  background-size: cover;
  background-position: center top;
  margin-bottom: 0;
}

/* --------------------------------------------------
    メイン
-------------------------------------------------- */

/*    トップページ
-------------------------------------------------- */
.tokucho h3 span {
  font-family: 'Libre Caslon Text', serif;
  margin-right: 1rem;
  border-bottom: 5px solid #B2C2E1;
}

/*    その他ページ
-------------------------------------------------- */
figcaption {
  padding-left: 1rem;
  border-left: 3px solid #6b90db;
}

ol.description {
    list-style: none; /* デフォルトのリストスタイルを無効化 */
    counter-reset: custom-counter; /* カウンターをリセット */
    padding-left: 1.5en; /* 左の余白を削除 */
  }
  
ol.description li {
    counter-increment: custom-counter; /* カウンターをインクリメント */
    position: relative; /* 番号の位置を調整するために relative を使用 */
    margin: 10px 0; /* 各リストアイテムの間隔 */
    padding-left: 30px; /* 番号部分のスペースを確保 */
  }

ol.description li::before {
    content: counter(custom-counter) "."; /* カウンターの値とドットを表示 */
    font-size: 20px; /* 番号を大きく */
    font-weight: 600; 
    color: navy; /* ネイビー色 */
    position: absolute; /* 番号をアイテムの左側に配置 */
    left: 0; /* 左側に寄せる */
    top: 0; /* 垂直方向中央揃え */
	line-height: 1; /* 番号の高さを1行分に固定 */
  }

ul.news_list {
  padding:0.5em;
  list-style-type:none;
}
ul.news_list li {
  position:relative;
  padding: 0em 0.3em 0.3em 1.3em;
}
ul.news_list li:before {
  position:absolute;
  content:'';
  top: 0.5em;
  left: 0.2em;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #3F51B5;
}

/* ----------------------------------------------- */
.about-t {
  border-collapse: collapse;
  width: 80%;
  margin: 0 auto; /* テーブル全体を中央に配置 */
}
.about-t th, .about-t td {
  border-bottom: 2px solid #c1c7c6;
  padding-top: 2em;
	padding-bottom: 1em;
}
.about-t th {
  border-bottom: 2px solid navy;
  font-weight: bold;
  text-align: center;
  width: 30%;
  min-width: 4em;
}
.about-t ul{
  margin: 0 auto; /* テーブル全体を中央に配置 */
}
/*   チャート
-------------------------------------------------- */
.flow > li .flow-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 50px;
  width: 50px;
  color: #fff;
  background-color: #6b90db;
  margin: 0 auto 20px;
  display: block;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}

.flow > li .flow-icon::before {
  content: "";
  border: solid transparent;
  border-width: 8px;
  border-top-color: #6b90db;
  position: absolute;
  top: calc(100% - .2rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* --------------------------------------------------
    お問い合せページ
-------------------------------------------------- */

