@charset "utf-8";
/* CSS Document */
p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* ナビゲーションのホバー色変更 */
.navbar .nav-link {
   transition: color .2s ease, background-color .2s ease;
}
.navbar .nav-link:hover {
   color: #715E5F; /* 文字色 */
   background-color: white; /* 背景色（不要なら削除） */
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
   font-weight: 700;
   color: #715E5F !important;
}
#heroCarousel .carousel-item img {
   height: 90vh;
   object-fit: cover;
}
.carousel-caption {
   bottom: 10%;
}
navbar-brand {
   font-size: 1.9rem; /* 好きなサイズに調整 */
   font-weight: 800; /* 太字にしたい場合 */
}
/*
.container {
  max-width: 85% !important;
}
*/
/*movie setting*/
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: calc(100% / 2.475); /* 高さ = 幅 ÷ 比率 */
  overflow: hidden;
}
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Chrome / Safari / Edge 対策 */
video::-webkit-media-controls {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Firefox 対策 */
video::-moz-media-controls {
  display: none !important;
}
/*movie setting end*/
/*スクロール時にメニューを縮小*/
/* 通常ヘッダー */
.navbar {
  transition: all 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* スクロール後に縮む */
.navbar.shrink {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ロゴ縮小（必要なら） */
.navbar-brand img {
  transition: all 0.3s ease;
  height: 50px;
}

.navbar.shrink .navbar-brand img {
  height: 35px;
}
/*コンテンツのフェードイン*/
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}
/* スマホ（デフォルト）は90% */
.custom-width {
  width: 90%;
  margin: 0 auto; /* 中央寄せ */
}

/* PC（992px以上）は80% */
/*
@media (min-width: 992px) {
  .custom-width {
    width: 85% !important;
    max-width: none !important;
  }
}
*/
@media (min-width: 992px) {
  .custom-width {
    width: 85%;
  }
}

/*banner２列*/
.banner{
   width: 100%;
}
.fl-a{
   float: left;
   padding-right:  5px;
   width: 50%;
}
.fl-b{
   float: right;
   padding-left:  5px;
   width: 50%;
}
/*banner３列*/
.fl-3a{
   float: left;
   margin-right:   2%;
   width: 32%;
}
.fl-3b{
   float: left;
   margin-right:   2%;
   width: 32%;
}
.fl-3c{
   float: right;
   width: 32%;
}
/*float clear*/
.clear{
   clear: both;
   width: 50%;
}
table th {
   width: 20%;
   text-align-last: justify;
}
/*２行目以降を字下げ*/
.indent {
  padding-left: 1em;   /* 全体を1文字分右へ */
  text-indent: -1em;   /* 1行目だけ左へ戻す → 2行目以降が字下げされる */
}
.align-to-marker {
  padding-left: 2em;   /* 〇〇の終わり位置に合わせて調整 */
  text-indent: -2em;   /* 1行目だけ左に戻す */
}
/*上へ戻るボタン　右側固定 & デザイン調整*/
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
#top-button {
  display: none;
}
