@charset "utf-8";

/* ----------------------------------------------------
   フワフワアニメ
---------------------------------------------------- */
@keyframes cloverFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.u-clover-float {
  animation-name: cloverFloat;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: transform;
}

/* ----------------------------------------------------
   1文字ずつ登場 アニメ
---------------------------------------------------- */
.anm-txt-heading {
  font-weight: 400;
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

.anm-txt-target {
  display: block;
}

.anm-txt-inner {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding-top: 0.2em;
}

/* 文字サイズ
---------------------------- */
.anm-txt-sub .anm-txt-inner {
  font-size: 25px;
  line-height:50px;
  color: #5ba900;
  font-weight: bold;
  text-shadow:
    2px  2px 0 #fbf9f0,
   -2px  2px 0 #fbf9f0,
    2px -2px 0 #fbf9f0,
   -2px -2px 0 #fbf9f0,
    0px  2px 0 #fbf9f0,
    0px -2px 0 #fbf9f0,
   -2px  0px 0 #fbf9f0,
    2px  0px 0 #fbf9f0;
}

/* レスポンシブ
---------------------------- */
@media print, screen and (min-width: 768px) {
.anm-txt-heading {
  padding-bottom: 30px;
  }
.anm-txt-sub .anm-txt-inner {
  font-size: 40px;
  line-height:70px;
  letter-spacing: 3px;   
  }
}

@media print, screen and (min-width: 992px) {
.anm-txt-sub .anm-txt-inner {
  font-size: 45px;
  line-height:75px;
  }
}
@media print, screen and (min-width: 1800px) {
.anm-txt-sub .anm-txt-inner {
  font-size: 50px;
  line-height: 80px;
  }
}

/* アニメーション設定
---------------------------- */
.anm-txt-target span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.2em);
}

.anm-txt-heading.is-animated span {
  animation: customTextAnimation 1s forwards;
}

@keyframes customTextAnimation {
  0% {
    transform: translateY(1.2em);
    filter: blur(0px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    filter: blur(2px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    filter: blur(0px);
    opacity: 1;
  }
}

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

/* 左寄せ　背景画像あり　文字アニメーション
---------------------------------------------------- */
.h2_bg{background: url("../images/h2_bg.jpg") no-repeat 60% 55%;}
@media print, screen and (min-width: 768px) {.h2_bg{background: url("../images/h2_bg.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); /* ここで暗さを調整 */
  z-index: -1; /* 背景の後ろに来ないように注意 */
}
.h2_midasi_01{
	padding:30px 0 40px 0;
	text-align: center;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {.h2_midasi_01{padding:70px 0 100px 0; margin-bottom: 60px;}}
@media print, screen and (min-width: 992px) {.h2_midasi_01{padding:70px 0 110px 0; margin-bottom: 80px;}}
@media print, screen and (min-width:1200px) {.h2_midasi_01{padding:110px 0 140px 0; margin-bottom: 100px;}}

.h2_midasi_01 h1{
	color: #5d4a35;  
	font-size: 35px;
	line-height:40px;
	letter-spacing:5px;
	}
.h2_midasi_01 p{
	color: #82bd2d;    
	font-size: 22px;
}

@media print, screen and (min-width: 768px) {
.h2_midasi_01 h1{
	font-size: 45px;
	line-height:55px;  
	}
.h2_midasi_01 p{
	font-size: 23px;
	}
}

@media print, screen and (min-width: 992px) {
.h2_midasi_01 h1{
	font-size: 55px;
	line-height:65px;  
	}
.h2_midasi_01 p{
	font-size: 25px;
	}
}

@media print, screen and (min-width: 1200px) {
.h2_midasi_01 h1{
	font-size: 65px;
	line-height:75px;
	}
.h2_midasi_01 p{
	font-size: 30px;
	}
}

/* ----------------------------------------------------
  ぼかしから出現
---------------------------------------------------- */
.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);
  }
}

/* ----------------------------------------------------
	 カテゴリー（カタログ）
---------------------------------------------------- */
/* 共通余白　必須class
---------------------------------------------------- */
.tenkai_ctedeae4rg{
  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:#4aa657;/* 背景　メインカラー */
  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 #eee;
  transition:.3s;
  position:relative;
}

@media only screen and (max-width: 767px) {
.tenkai_ctrg .accordion dd li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  }
}

/* 縦メニュー　角丸
---------------------------------------------------- */
@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:#5d4a35;
  background:#fff;
}

.tenkai_ctrg .accordion dd li a:hover{
  color:#fff;
  background:#4aa657;  
}

/* アイコン
--------------------------- */
.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:#edeae4 !important;
  color:#5d4a35 !important;
  }
}

@media print, screen and (min-width: 768px) {
.tenkai_ctrg .navon{
  background:#4aa657 !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;
    max-width: 100%; 
  }

  .tenkai_ctrg--a .accordion dd li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 2px solid #5d4a35;
    background: #fff;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}