@charset "utf-8";

/* ----------------------------------------------------
  Loading
---------------------------------------------------- */
/* --- ロゴを包む画面全体の設定 --- */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* --- カーテンの基本設定 --- */
.curtain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  
  /* 最初から背景画像を敷き詰めておく設定 */
  background-image: url("../images/bg_img01.jpg");
  background-repeat: repeat;
  
  /* ロード中のベースの色（白） */
  background-color: #fff; 
  
  /* 画像と色を綺麗に混ぜ合わせる設定 */
  background-blend-mode: multiply; 
  
  z-index: -1;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1), 
              background-color 0.5s ease; 
}

/* --- ★幕が開く時（loadedクラスがついた時）、CSSの指示でこの色に変える --- */
.loaded .curtain {
  background-color: #6aca29;
}

.curtain.top {
  top: 0;
}

.curtain.bottom {
  bottom: 0;
}

/* ロゴコンテナの設定（ロゴが消える設定） */
#logo-container {
  transition: opacity 0.5s ease;
  padding-bottom: 20px;   
}

@media print, screen and (min-width: 992px) {
  #logo-container {
    padding-bottom: 0; 
  }
}

/* --- 幕アニメーション用のクラス --- */
.loaded .curtain.top {
  transform: translateY(-100%);
}

.loaded .curtain.bottom {
  transform: translateY(100%);
}

.loaded #logo-container {
  opacity: 0;
}

/* サイズ調整 */
#loading svg {
  width: 250px;  /* ロゴサイズ */
  height: auto;
  display: block;  
}

@media print, screen and (min-width: 768px) {
/* サイズ調整 */
#loading svg {
  width: 400px;  /* ロゴサイズ */
  }
}
  
/* --- 1. 線のアニメーション設定 --- */
#line-layer path,
#line-layer polyline {
  fill: none !important;
  stroke: #47b000 !important;
  stroke-width: 2 !important;
  stroke-linecap: round; 
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawLine 2.5s ease-in-out forwards;
}

/* --- 2. 塗りのアニメーション設定 --- */
#fill-layer {
  opacity: 0;
  animation: fillAppear 1s ease forwards;
  animation-delay: 1.5s;
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 2000;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes fillAppear {
  to { opacity: 1; }
}

/* ----------------------------------------------------
  ぼかしから出現
---------------------------------------------------- */
.blur{
	animation-name:blurAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}

/* ----------------------------------------------------
  h2
---------------------------------------------------- */
.h2_wide{ padding:0 3%;}
@media print, screen and (min-width: 768px) {.h2_wide{ padding:0 1.8%;}}

/* 左寄せ　背景画像あり　文字アニメーション
---------------------------------------------------- */
.h2_02{background: url("../images/h2_02.jpg") no-repeat scroll 50% 0% / cover;}
.h2_03{background: url("../images/h2_03.jpg") no-repeat scroll 50% 0% / cover;}
.h2_04{background: url("../images/h2_04.jpg") no-repeat scroll 50% 0% / cover;}
.h2_05{background: url("../images/h2_05.jpg") no-repeat scroll 50% 0% / cover;}
.h2_06{background: url("../images/h2_06.jpg") no-repeat scroll 50% 0% / cover;}

.h2_midasi_01_bgimg {
  position: relative;
  color: white;
  z-index: 0;
  overflow: hidden;
  border-radius: 20px;
}
.h2_midasi_01_bgimg::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* ここで暗さを調整 */
  z-index: -1; /* 背景の後ろに来ないように注意 */
}
.h2_midasi_01{
	padding:50px 0;
	text-align: center;
	color: #fff;
}
@media print, screen and (min-width: 768px) {.h2_midasi_01{padding:90px 0 100px 75px; text-align: left;}}
@media print, screen and (min-width: 992px) {.h2_midasi_01{padding:100px 0 110px 75px;}}
@media print, screen and (min-width:1200px) {.h2_midasi_01{padding:120px 0 130px 75px;}}

.h2_midasi_01 p{
	font-size: 40px;
	line-height:50px;
	letter-spacing:2px;
  font-weight: 600;
	}
.h2_midasi_01 h2{
	font-size: 18px;
	letter-spacing:2px;
}
@media print, screen and (min-width: 768px) {
.h2_midasi_01 p{
	font-size: 55px;
	line-height:65px;
	letter-spacing:3px;  
	}
.h2_midasi_01 h2{
	font-size: 22px;
	letter-spacing:5px;
	}
}
@media print, screen and (min-width: 992px) {
.h2_midasi_01 p{
	font-size: 65px;
	line-height:75px;
	}
.h2_midasi_01 h2{
	font-size: 25px;
	}
}
@media print, screen and (min-width: 1200px) {
.h2_midasi_01 p{
	font-size: 75px;
	line-height:90px;
	}
}
@media print, screen and (min-width: 1400px) {
.h2_midasi_01 p{
	font-size: 90px;
	line-height:100px;
	}
}

/* ----------------------------------------------------
  お知らせ
---------------------------------------------------- */
/* ニュースエリア
------------------------- */
.news_area{
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 2px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  position: relative;
  transition: box-shadow .3s ease;
}

@media print, screen and (min-width: 768px) {
.news_area{
  padding: 20px;
  }
}

/* リンクありの記事（aにつくクラス）
------------------------- */
.news_area_link{
  display: block;
  text-decoration: none;
  color: inherit;
}

/* リンクありの場合　右に余白
------------------------- */
.news_area_link .news_area {padding-right: 65px;}
@media print, screen and (min-width: 768px) {.news_area_link .news_area {padding-right: 130px;}}

.news_area_link:hover .news_area{box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);}

.news_link_arrow{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  background: #6aca29;/* 矢印の背景色 */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 10px 10px 0;
  transition: background .3s ease;
}

@media print, screen and (min-width: 768px) {
.news_link_arrow{
  width: 100px;
  }
}

.news_link_arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
  display: block;
  transition: transform .3s ease;
}

/* 矢印の背景色　ホバー時
------------------------- */
.news_area_link:hover .news_link_arrow{background: #388a01;}

/* 矢印の動き
------------------------- */
.news_area_link:hover .news_link_arrow::before{transform: translateX(5px) rotate(-45deg);}

/* デフォルトは非表示
------------------------- */
.news_link_arrow {display: none;}

/* リンクの場合　表示
------------------------- */
.news_area_link .news_link_arrow {display: flex;}

/* 記事 日付
------------------------- */
.news_day{
  display: inline-block;
  width: 100%;
}

/*  news_new
---------------------------------------------------- */
.news_new{
  font-size: 12px;
  vertical-align: middle;
  display: inline-block;
  font-family: 'Noto serif JP', sans-serif;  
  color: #ff9898;
  letter-spacing: 0;
  margin-left: 7px;
}

/* ----------------------------------------------------
  円を描くボタン
---------------------------------------------------- */
.maru_button_02 {
  font-size: 18px !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  color: #6aca29 !important; /* 文字の色 */  
}
.maru_icon_02 {
  width: 45px;
  height: 45px;
  position: relative;
  flex-shrink: 0;
}
.maru_icon_02 svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.maru_icon_02 circle.bg {
  stroke: #6aca29; /* 初期　丸の色 */
  stroke-width: 2;
  fill: none;
}
.maru_icon_02 circle.fg {
  stroke: #222; /* ホバー　丸の色 */
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 125.66;
  stroke-dashoffset: 125.66;
  transition: stroke-dashoffset 0.6s ease;
}
.maru_button_02:hover .maru_icon_02 circle.fg {
  stroke-dashoffset: 0;
}
.maru_icon_02 .arrow {
  position: absolute;
  top: 48%;
  left: 51%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  pointer-events: none;
  color: #6aca29; /* 初期　矢印の色 */  
}
.maru_button_02:hover .maru_icon_02 .arrow {
  color: #222; /* ホバー　矢印の色 */
}

/* ----------------------------------------------------
	 カテゴリー（カタログ）
---------------------------------------------------- */
/* 共通余白　必須class
---------------------------------------------------- */
.tenkai_ctrg{
  padding:0;
}

@media print, screen and (min-width: 1200px) {
.tenkai_ctrg{
    padding:0;
  }
}

/* アコーディオン基本
---------------------------------------------------- */
.tenkai_ctrg .accordion dt{
  display:block;
  width:100%;
  padding:15px 20px;
  font-weight:normal;
  color:#fff;
  background:#222;/* 背景　メインカラー */
  cursor:pointer;
}

.tenkai_ctrg .accordion dd{
  display:none;
}

.tenkai_ctrg .accordion dd ul{
  list-style:none;
  padding:0;
  margin:0;
}

.tenkai_ctrg .accordion dd li a{
  display:block;
  padding:15px 40px 15px 20px;
  border-top:1px solid #f2ebe8;
  transition:.3s;
  position:relative;
}

/* 縦メニュー　角丸
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
.tenkai_ctrg .accordion dt{
  border-radius: 10px 10px 0 0;
  }
.tenkai_ctrg .accordion dd li:last-child a{
  border-radius:0 0 10px 10px;
  border-bottom:none;
  }
}

/* リンク
---------------------------------------------------- */
.tenkai_ctrg .accordion dd li a:link,
.tenkai_ctrg .accordion dd li a:visited{
  color:#fff;
/*  background:#fff;*/
}

.tenkai_ctrg .accordion dd li a:hover{
  color:#fff;
  background:#6aca29;  
}

/* アイコン
---------------------------------------------------- */
.tenkai_ctrg .accordionIcon{
  position:relative;
  float:right;
  top:2px;
  width:30px;
  height:25px;
}
.tenkai_ctrg .accordionIcon span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#fff;
  transition:.4s;
}
.tenkai_ctrg .accordionIcon span:nth-of-type(1){top:0;}
.tenkai_ctrg .accordionIcon span:nth-of-type(2){top:11px;}
.tenkai_ctrg .accordionIcon span:nth-of-type(3){bottom:0;}
.tenkai_ctrg .active .accordionIcon span:nth-of-type(1){
  transform:translateY(11px) rotate(-315deg);
}
.tenkai_ctrg .active .accordionIcon span:nth-of-type(2){
  opacity:0;
}
.tenkai_ctrg .active .accordionIcon span:nth-of-type(3){
  transform:translateY(-11px) rotate(315deg);
}

/* 現在選択中のカテゴリ
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
.tenkai_ctrg .navon{
  background:#6aca29 !important;
  color:#fff !important;
  }
}

@media print, screen and (min-width: 768px) {
.tenkai_ctrg .navon{
  background:#6aca29 !important; /* 選択中　背景色 */
  color:#fff !important;
  }
}

/* ----------------------------------------------------
   カテゴリ（横並び）
---------------------------------------------------- */
@media print, screen and (min-width: 768px) {
.tenkai_ctrg--a .accordion dd{
  display:block;
  }

.tenkai_ctrg--a .accordion dd ul{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  }

.tenkai_ctrg--a .accordion dd li{
  width:auto;
  }

.tenkai_ctrg--a .accordion dd li a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 20px;
  border-radius:10px;
  border:1px solid #222;
  background:#C8B5A7;
  white-space:nowrap;
  }
}

@media print, screen and (min-width: 992px) {
.tenkai_ctrg--a .accordion dd ul{
  gap:20px;
  }
}

/* ----------------------------------------------------
	   ページング
---------------------------------------------------- */
.part_paging{padding:30px 0 0 0}
@media print, screen and (min-width: 992px) {.part_paging{padding:40px 0 0 0}}

.paging { text-align: center; font-size: 90%;}
.paging span.current,
.paging span.paging-text{
	margin:0px 0.5px;
	color:#333;
	border:1px solid #333;
	zoom:1;
	display:inline-block;
	overflow:hidden;
	text-decoration:none;
	background: #fff;
  border-radius: 5px;  
}
.paging span.paging-text a{
	padding:5px 8.5px;
	display:block;
	color: #333;
}
.paging span.current{
	background: #6aca29;
	border:1px solid #333;
	color:#fff;
	zoom:1;
	padding:5px 8.5px;
	text-decoration:none;
	display:inline-block;
	cursor:pointer;
  border-radius: 5px;
}
.paging span.paging-text a:hover{
	background: #6aca29;
	color:#fff;
	text-decoration:none;
	cursor:pointer;
	opacity: 1;
}

@media print, screen and (min-width: 768px) {
	.paging { font-size: 100%;}
	.paging span.current,
	.paging span.paging-text{margin:0px 2px;}
	.paging span.paging-text a{padding:10px 15px;}
	.paging span.current{padding:10px 15px;}
}

/* ----------------------------------------------------
  カタログ　 詳細ページ
---------------------------------------------------- */
.detail_area {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  gap: 6px;
  margin-bottom: 5px;
}

@media print, screen and (min-width: 768px) {
.detail_area {
  margin-bottom: 10px;
  }
}

/*  detail_info
---------------------------------------------------- */
.detail_info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3px;
}

/*  detail_date
---------------------------------------------------- */
.detail_date{
  font-size: 18px; 
}
@media print, screen and (min-width: 768px) {
.detail_date{
  font-size: 20px; 
  }
}
@media print, screen and (min-width: 992px) {
.detail_date{
  font-size: 22px;
  }
}

/*  detail_ctgr
---------------------------------------------------- */
.detail_ctgr {
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  border-radius: 5px;
  padding: 7px 10px 8px 10px;
  letter-spacing: 0;
}

/* 記事 カテゴリー
------------------------- */
.news_ctgr{
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  border-radius: 5px;
  padding:5px 10px 7px 10px;
  letter-spacing: 0;
  margin-bottom:3px;
}

.color_001{
  color: #fff;
  background: #6aca29;
}

.color_002{
  color: #fff;
  background: #73b0ca;
}

.color_003{
  color: #fff;
  background: #b99dc9;
}

.color_004{
  color: #fff;
  background: #ff9696;
}

.color_005{
  color: #fff;
  background: #fcb843;
}


/*  detail_area
---------------------------------------------------- */
@media (min-width: 768px) {
.detail_area {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
}

/*  detail_text_01
---------------------------------------------------- */
.detail_text_01{
  font-size: 18px;  
  margin-bottom: 10px;  
}
@media print, screen and (min-width: 768px) {
.detail_text_01{
  font-size: 20px;
  line-height: 32px;  
  margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 992px) {
.detail_text_01{
  font-size: 20px;
  line-height: 32px;  
  margin-bottom: 20px;
  }
}

/*  detail_text_02
---------------------------------------------------- */
.detail_text_02{
  font-size: 18px;
  margin-bottom: 10px;  
}
@media print, screen and (min-width: 768px) {
.detail_text_02{
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 15px;  
  }
}
@media print, screen and (min-width: 992px) {
.detail_text_02{
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;  
  }
}

/*  btn_file
---------------------------------------------------- */
.flie_01{
  background-image: url("../images/icon_pdf.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 20px auto;
}
.flie_02{
  background-image: url("../images/icon_word.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 20px auto;
}
.flie_03{
  background-image: url("../images/icon_excel.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  background-size: 20px auto;
}

.btn_file {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 15px 50px 15px 15px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #222 !important;
  background-color: #fff;
  border: 1px solid #222;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
.btn_file {
  display: inline-block;
  width: 200px;
  margin:0 4px 20px 4px;
  }
}
@media print, screen and (min-width: 992px) {
.btn_file {
  display: inline-block;
  width: 200px;
  margin:0 4px 20px 4px;
  }
}
@media print, screen and (min-width: 1200px) {
.btn_file {
  width: 200px;
  margin:0 5px 25px 5px;
  }
}
@media print, screen and (min-width: 1800px) {
.btn_file {
  width: 260px;
  margin:0 6px 25px 6px;
  }
}

.btn_file:visited {
  color: #222 !important;
}
.btn_file:hover,
.btn_file:active {
  background-color: #f7f5f4;
  color: #222 !important;
  text-decoration: none !important;
}

/*  btn_back
---------------------------------------------------- */
.btn_back {
  color: #fff !important;
  background: #6aca29;  
  display: inline-block;
  width: 250px;
  padding: 15px 2px;
  letter-spacing: 2px;
  border: 0;
  text-align: center;  
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}

@media only screen and (max-width: 767px) {
.btn_back {
    margin-top: 15px;
  }
}

.btn_back:visited {
  color: #fff !important;
}
.btn_back:hover,
.btn_back:active {
  color: #fff !important;  
  background: #317b00 !important;
  text-decoration: none !important;
}
.btn_back i {
  font-size: 16px;
  margin-right:10px;
  color: #fff;
}

/* ----------------------------------------------------
  ギャラリー
---------------------------------------------------- */
.slider_container {
  box-sizing: border-box;
}
.slider_container img {
  max-width: 100%;
}

#slider {
  margin-bottom: 20px; 
}
@media print, screen and (min-width: 768px) {
#slider {
  margin-bottom: 20px; 
  }
}

#slider .slick-slide {
  margin: 0 5px;
}

#thumbs {
  max-width:100%;
  margin:0 auto;
}

#thumbs .slick-slide {
  margin: 0 5px;
}

#thumbs .slick-current img {
  border: 3px solid #bcd3aa;
}

.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 30px !important;
  line-height: 1;
  color: #fff;
}

#slider .slick-slide img {
transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

#slider .slick-center img {
  opacity: 1;
}

#slider .slide-caption{
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
#slider .slide-caption{
  text-align: left;
  height: 40px;
  padding:20px;
  }
#slider .slide-caption h3 {
  font-size: 16px;
  margin-bottom: 3px;
  text-align: center;
  }
#slider .slide-caption p {
  font-size: 13px;
  line-height: 18px;
  }
}

@media print, screen and (min-width: 768px) {
#slider .slide-caption{
  height: 50px;
  text-align: center;
  }
#slider .slide-caption h3 {
  font-size: 18px;
  margin-bottom: 10px;
  }
#slider .slide-caption p {
  font-size: 15px;
  line-height: 25px;
  }
}