@charset "utf-8";

/*----------------------------------------------------
    共通css
----------------------------------------------------*/

.catch {
  text-align: left;
}

.catch2 {
  font-size: 20px;
  font-weight: bold;
  color: #4d795b;
}

.float-wrap .ct {
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}


.areaimage {
  width: 50%;
  height: 50%;
}

.blockCatch {
  font-size: 3.0rem;
}

.category_links {
  font-size: 2.8rem;
  color: #5B8D6B;
  font-weight: bold;
  margin: 98px auto 38px;
  line-height: 1.4;
  padding: 24px 20px;
  background: #EBEEF2;
  border-top: 1px solid #74B389;
  border-bottom: 1px solid #74B389;
  box-shadow: 0px -9px 0px #EBEEF2, 0px 9px 0px #EBEEF2;
  position: relative;
}

.acbox {
  width: auto;
  font-size: 0px;
  /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 10px;
  /* ボックス全体の位置調整 */
}

.acbox label {
  position: relative;
  display: block;
  cursor: pointer;
}

.acbox label:hover {
  background: #fff3f2;
}

.acbox input {
  display: none;
}

.acbox label:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #4d795b;
  transition: .2s;
  right: 30px;
  width: 2px;
  height: 30px;
  animation: rotate-anime 0.5s linear;
  transform: rotate(270deg);
  z-index: 1;
}

.acbox label:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #4d795b;
  transition: .2s;
  right: 30px;
  width: 2px;
  height: 30px;
  transform: rotate(180deg);
}

.acbox input:checked~label::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #4d795b;
  transition: .2s;
  right: 30px;
  width: 2px;
  height: 30px;
  animation: rotate-anime 0.5s linear;
  transform: rotate(270deg);

}

.acbox div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s;
  /* 開閉スピードの設定 */
}

.acbox input:checked~div {
  height: auto;
  opacity: 1;
}

.acbox-under {
  font-size: 1.6rem;
  /* 開いた部分の文字サイズ */
}

#contents #category .lower_bottom .addInner {
  width: auto;
}

#contents #category .lower_bottom .addInner .block_wrap {
  padding: 0 1rem;
}

.lower_bottom.new_select .catch {
    background-image: none !important;
    padding: 10px;
    font-size: 2.4rem;
    justify-content: center;
}
/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/

@media screen and (min-width: 600px) {
  /*/////////////PC用のCSSをここに作成してください。/////////////*/
  /*/////////////必ず中括弧の中に作成してください。/////////////*/


}



/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/

@media screen and (max-width: 480px) {

  /*/////////////SP用のCSSをここに作成してください。/////////////*/
  /*/////////////必ず中括弧の中に作成してください。/////////////*/
  .category_links {
    font-size: 1.8rem;
    margin: 5.5rem auto 2.5rem;
    line-height: 1.4;
    padding: 1.2rem 2rem;
  }

  .acbox input:checked~label::after,
  .acbox label:after,
  .acbox label:before {
    height: 20px;
  }











}
