@charset "UTF-8";
/* CSS Document */
/*COMMON*/
html {
  scroll-padding-top: 88px;
}


body {
  color: #2f2725;
  font-family: 'Noto Sans JP', sans-serif;
}
/*背景：白*/
.bg-white {
  background-color: #fff !important;
}

/*
メイン
#F7B977

#FFE5C9
#FFD1A1
#D3904A
#B16E28

Rメイン
#F78B77

#FFD1C9
#FFB0A1
#D35F4A
#B13D28
*/
/*ボタンカラー*/
.btn-clm {
  --bs-btn-color: #fff;
  --bs-btn-bg: #07294E;
  --bs-btn-border-color: #07294E;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #173E69;
  --bs-btn-hover-border-color: #173E69;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #173E69;
  --bs-btn-active-border-color: #173E69;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f5e6de;
  --bs-btn-disabled-border-color: #f5e6de;
}
a {
  color: #406792;
  text-decoration: none;
}
a:hover {
  color: #07294E;
}
p {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

p.p-indent{
  text-indent: 1em;
}


h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  margin-bottom: 2rem;
}
#topPage h1 {
  font-weight: normal;
  margin-bottom: 0;
  line-height: normal;
}
h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  border-bottom: solid 1px #6688AD;
  padding-bottom: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
h3 {
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  padding: 0.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  background-color: #6688AD;
}
h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  position: relative;
  padding: 1rem 0.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
h4:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #6688AD, #6688AD 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #6688AD, #6688AD 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
h5 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0rem 0.5rem 0.125rem 0.5rem;
  border-left: 10px solid #6688AD;
}
h6 {
  color: #6688AD;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.content-area a {
  text-decoration: underline;
}
.content-area a:hover {
  text-decoration: none;
  color: #07294E;
}
.aside-section a {
  text-decoration: none;
}
.aside-section a:hover {
  text-decoration: underline;
  color: #07294E;
}
.list-group-item {
  min-height: 50px;
  display: flex;
  align-items: center;
}
.list-group-item.p-0 {
  display: block;
}
.collapsible-item {
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-height: 50px;
  color: #07294E;
}
.collapsible-item:hover {
  /*background-color: #f8f9fa;*/
}
.collapse-arrow {
  transition: transform 0.2s ease;
}
.collapsible-item.collapsed .collapse-arrow {
  transform: rotate(0deg);
}
.collapsible-item:not(.collapsed) .collapse-arrow {
  transform: rotate(90deg);
}
.child-item {
  min-height: 50px;
}
.table-clm th {
  background-color: #f1f1f1;
}
.alert-clm {
  color: #07294E;
  background-color: #e6ecf0;
  border-color: #07294E;
}
.side-top {
  margin-top: 29px;
}
/*ロゴ*/
@media (max-width: 375px) {
  .navbar-brand img {
    max-width: 200px;
    height: auto;
  }
}
.nav-item a:hover {
  color: #6688AD;
}
.nav-item-button a:hover {
  color: #FFF !important;
}
.dropdown-item:hover {
  background-color: #e6ecf0;
}
/* navbar-brandのマージン調整 */
.navbar-brand {
  margin-right: 0 !important;
}
/* h1タグのマージンもリセット */
.navbar h1 {
  margin: 0;
}
/* コンテナ内の要素配置を調整 */
.navbar .container-fluid {
  justify-content: space-between;
}

.navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler:hover {
  background-color: #f0f0f0;
}


/*section*/
.eye-height {
  height: 200px; /* xs (最小): 576px未満 */
  transition: height 0.3s ease; /* 滑らかな変更のためのトランジション */
}
/* sm: 576px以上 */
@media (min-width: 576px) {
  .eye-height {
    height: 250px;
  }
}
/* md: 768px以上 */
@media (min-width: 768px) {
  .eye-height {
    height: 300px;
  }
}
/* lg: 992px以上 */
@media (min-width: 992px) {
  .eye-height {
    height: 352px;
  }
}
/* xl: 1200px以上 */
@media (min-width: 1200px) {
  .eye-height {
    height: 400px;
  }
}
/* xxl: 1400px以上 */
@media (min-width: 1400px) {
  .eye-height {
    height: 450px;
  }
}
.eye-background {
  position: relative;
  background-color: #e6ecf0;
}
.eye-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: rgba(0, 0, 0, 0.3);*/
  z-index: 1;
}
.eye-background .container {
  position: relative;
  z-index: 2;
}
.eye-background h1 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(10, 10, 10, 0.5);
  font-weight: bold;
  margin: 0;
}
.eye-001 {
  background-image: url("../images/eye-001.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* asideのスクロール追従スタイル */
@media (min-width: 992px) {
  .sticky-aside {
    position: sticky;
    top: 100px; /* ヘッダーの高さ分余裕を取る */
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}

/* スマートフォンでは通常の配置 */
@media (max-width: 991px) {
  .sticky-aside {
    position: static;
  }
}

/* スクロールバーのスタイリング（オプション） */
.sticky-aside::-webkit-scrollbar {
  width: 6px;
}

.sticky-aside::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.sticky-aside::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.sticky-aside::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}


/*News*/
.news-list dt {
  font-weight: 500;
  color: #6c757d;
}
.news-list dd {
  margin-bottom: 0;
}
.news-item {
  margin-bottom: 1.5rem;
}
.news-item:last-child {
  margin-bottom: 0;
}
.news-item-link {
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-item-link:hover {
  text-decoration: underline;
}
.badge-new {
  font-size: 0.7rem;
}

.img-right {
	margin: 0.5rem 1rem;
	float:right;
}

/*文字サイズ（テーブル）*/
/* スマホ（576px未満） */
@media (max-width: 575.98px) {
  .table-responsive-text {
    font-size: 0.875rem;
  }
}

/* タブレット（576px以上） */
@media (min-width: 576px) {
  .table-responsive-text {
    font-size: 0.925rem;
  }
}

/* デスクトップ（768px以上） */
@media (min-width: 768px) {
  .table-responsive-text {
    font-size: 1rem;
  }
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.footer-bottom-links a {
  color: var(--bs-nav-link-color);
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #07294E;
}
.ft-address {
  font-size: 0.9rem;
}
.ft-credit {
  font-size: 0.8rem;
}