@charset "utf-8";
/* フォントファミリー */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');
/* アイコンインポート */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@font-face {
  font-family: 'YuMinchoNumbers';
  src: local("游明朝体");
  unicode-range: U+30-39; /* 0〜9の数字だけ適用 */
}
.container-xxl {
  max-width: 1600px;
}
body {
  font-family: 'Noto Sans JP', 'BIZ UDPGothic', 'M PLUS 1p', 'LINE Seed JP', 'Yu Gothic', 'Meiryo', sans-serif;
}
a img {
  transition: filter 0.3s ease, opacity 0.3s ease;
}

a:hover img {
  filter: brightness(1.1); /* 明るさを20%アップ */
  opacity: 0.85;            /* 少し透明にして柔らかさを出す */
}
.fs-0 {
  font-size: 4rem; /* fs-0はオリジナル設定 */
}
.fs-7 {
  font-size: 0.875rem; /* 14px */
}

.fs-8 {
  font-size: 0.75rem; /* 12px */
}

.fs-9 {
  font-size: 0.6875rem; /* 11px */
}
.text-green{
	color: #738e47;
}
.text-orange{
	color: #fa7d02;
	color: #F07C0B;
}
.text-brown{
	color: #7C6F42;
}
.btn-orange,.btn-green{
  color: white;
  width:100%;
  border-radius: 1px;
  display: flex;
  justify-content: center;   /* テキストを中央に */
  position: relative;        /* 矢印の基準 */
  align-items: center;
  text-decoration: none;
  padding-right: 20px;       /* 矢印の分だけ余白 */
  margin-bottom: 3em;
}
.btn-orange,.bg-orange{
  background-color: #fa7d02;
  background-color: #F07C0B;
}
.btn-green,.bg-green{
  background-color: #b1d075;
	background-color: #738e47;
}
.bg-lightgreen{
  background-color: #D1E2B1;
}
.lh-md {
  line-height: 1.7;
}

/* 右端の矢印 */
.btn-orange::after,
.btn-green::after{
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;        /* ← これで中央揃えと干渉しない */
  right: 10px;               /* 右端に固定 */
}
.btn-orange:hover{
	background-color: #FDA248;
  color: white;
}
.btn-green:hover{
	background-color: #738e47;
  background-color: #b1d075;
  color: white;
}
hr.hr-orange {
  border: none;
  border-top: 3px solid #fa7d02; /* オレンジ色 */
  margin: 1.5rem 0;             /* 上下の余白はお好みで */
}
hr.hr-green {
  border: none;
  border-top: 3px solid #738e47;
  margin: 1.5rem 0; 
}
.mincho {
  font-family: 'Noto Serif JP', 'BIZ UDMincho', 'Zen Old Mincho', serif;
}
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 2s ease, transform 1s ease;
    }
    .fade-in.show {
      opacity: 1;
      transform: translateY(0);
    }

header{
	background-image: url(../css_img/header_bg.jpg);
	background-repeat: repeat-x;
	background-position: 0 0;
	background-size: 30px auto;
  transition: background-size 3s ease;
}
#header_rogo{
	max-width: 120px;
  transition: max-width 1s ease, transform 1s ease;
}
.navbar-toggler {
  border: none;   /* ハンバーガーの枠線を消す */
  box-shadow: none;    /* 押した時の影も消す */
}
#pcmenu .navbar-nav .nav-item,
#headmenu .navbar-nav .nav-item {
	background-color: #ebebeb; /* 通常時の背景 */
	font-weight: bold;
	border-bottom: 3px solid #FFFFFF;
	border-right: 3px solid #FFFFFF;
	transition: background-color 0.5s ease, border-color 0.5s ease;
}
#pcmenu .navbar-nav .nav-item .nav-link,
#headmenu .navbar-nav .nav-item .nav-link {
	padding-top: 15px;
	padding-bottom: 15px;
}

#pcmenu .navbar-nav .nav-item:hover,
#headmenu .navbar-nav .nav-item:hover {
	background-color: #f8bf3e; /* ホバーの背景 */
}
.navbar-nav .nav-item .active {
	background-color: #b1d075; /* ホバーの背景 */
}
.navbar-nav{
	clear: both;
}
#pcmenu-sub .nav-item {
  border-right: 1px solid #494949; /* 縦線を追加 */
}

#pcmenu-sub .nav-item:last-child {
  border-right: none; /* 最後の項目は線を消す */
}
#pcnavi {
	position: relative;
	margin-top: -20px; /* 上にずらす */
}
.bg-oshirase {
  position: relative;
  background-color: #fff; /* 本体の背景はお好みで */
}

/* 右端のグリーン帯 */
.bg-oshirase::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12px;
  width: 15px;          /* ここが指定の10px */
  height: 100%;
  background-color: #b1d075; /* グリーン */
}
/* 白い右向きの三角（▲） */
.bg-oshirase::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;           /* グリーン帯の中に配置 */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff; /* 白い三角形 */
  z-index: 2; /* ← 三角を前に */
}


#backToTop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #738e47;
}
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}


footer{
	background-color: #EFF6E3;
	background-image: url(../css_img/footer_bg.png);
	background-size: 100% auto;
	padding-top: 100px;
	background-repeat: no-repeat;
	padding-bottom: 100px;
}
ul.footer-list {
  list-style: none;
  padding-left: 0;
}

ul.footer-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.4em;
}

ul.footer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7em;   /* 丸の大きさ */
  height: 0.7em;
  background-color: orange;
  border-radius: 50%;
}
ul.footer-list-green li::before {
  background-color: #738e47;
}

.square-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
#documentpage h1{
  border-top: 4px solid #92A47F;
  border-bottom: 1px solid #D8D8D8;
  background: linear-gradient(to bottom, #F8F1EA, #FFFFFF);
  padding: 1em 1em;
  color: #222;
  margin: 0 0 1.5em;
}
#documentpage h2 {
  border-left: 4px solid transparent; /* 太さだけ確保 */
  border-image: linear-gradient(to bottom, #f8bf3e 50%, #a7ca63 50%) 1;
  padding: 0.8em 0.5em;
  margin: 1.5em 0;
}



@media (max-width: 992px) {
header{
	background-size: 20px auto;
}
#header_rogo{
	max-width: 100px;
}
  .navbar-mobile-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030; /* Bootstrap の navbar より上 */
	background-image: url(../css_img/header_bg.jpg);
	background-repeat: repeat-x;
	background-position: 0 0;
	background-size: 15px auto;
  }

  body {
    padding-top: 80px; /* navbar の高さ分だけ余白を足す */
  }
} /*# ここまで lgサイズ */

@media (max-width: 768px) {
#header_rogo{
	max-width: 90px;
}
.square-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  animation: slideLR 6.3s ease-out infinite alternate;
}
@keyframes slideLR {
  0%   { object-position: 0% center; }
  100% { object-position: 90% center; }
}

} /*# ここまで mdサイズ */

@media screen and (max-width: 580px) { 
#header_tel{
	max-width: 170px;	
}
} /*# ここまで max-width: 580px */
