@charset "utf-8";

.m-categorySearchList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.m-categorySearchList__button {
  width: 250px;
  border-radius: 55px;
  font-size: 18px;
  line-height: 3.055555555555555;
  margin-bottom: 15px;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .m-categorySearchList__button {
    width: 45.333333333333336vw;
    font-size: 4vw;
  }
}
.m-categorySearchList li {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}
.m-categorySearchList:before,
.m-categorySearchList:after {
  content: "";
  width: 250px;
  height: 0;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}
@media only screen and (max-width: 768px) {
  .m-categorySearchList:before,
  .m-categorySearchList:after {
    width: 45.333333333333336vw;
  }
}

.o-categorySearch {
  background-color: #f8f6e5;
}
@media only screen and (max-width: 768px) {
  .o-categorySearch {
    background-color: initial;
  }
}
.o-categorySearch__inner {
  width: 1080px;
  margin: 0 auto;
  padding: 50px 0 25px;
}
@media only screen and (max-width: 768px) {
  .o-categorySearch__inner {
    width: 100%;
    padding: 8vw 3.333333333333333vw 4vw;
    max-height: 20vw;
    overflow: hidden;
    -webkit-transition: 0.5s max-height;
    transition: 0.5s max-height;
  }
}
.o-categorySearch__title {
  color: #ff8400;
  text-align: center;
  width: 600px;
  margin: 0 auto 60px;
  background-color: #fff;
  line-height: 2.083333333333333;
  border-radius: 50px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .o-categorySearch__title {
    width: 100%;
    margin-bottom: 16vw;
    border-radius: 13.333333333333334vw;
    -webkit-box-shadow: 3px 4px 2px #b3aca3;
    box-shadow: 3px 4px 2px #b3aca3;
    -webkit-transition: 0.5s -webkit-box-shadow;
    transition: 0.5s -webkit-box-shadow;
    transition: 0.5s box-shadow;
    transition: 0.5s box-shadow, 0.5s -webkit-box-shadow;
  }
}
@media only screen and (max-width: 768px) {
  .o-categorySearch__title label {
    display: block;
    position: relative;
  }
  .o-categorySearch__title label:after {
    content: "";
    width: 3.2vw;
    height: 5.066666666666666vw;
    background: url("../img/common/arr_r_menubt.png") no-repeat;
    background-size: cover;
    display: block;
    position: absolute;
    right: 5.333333333333333vw;
    top: 50%;
    margin-top: -2.533333333333333vw;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.5s -webkit-transform;
    transition: 0.5s -webkit-transform;
    transition: 0.5s transform;
    transition: 0.5s transform, 0.5s -webkit-transform;
  }
}
.o-categorySearch__title:before {
  content: "";
  width: 100px;
  height: 3px;
  font-size: 0px;
  line-height: 0px;
  display: block;
  bottom: -28px;
  position: absolute;
  background: #468082;
  right: 50%;
}
@media only screen and (max-width: 768px) {
  .o-categorySearch__title:before {
    width: 26.666666666666668vw;
    bottom: -7.466666666666667vw;
  }
}
.o-categorySearch__title:after {
  content: "";
  width: 100px;
  height: 3px;
  font-size: 0px;
  line-height: 0px;
  display: block;
  bottom: -28px;
  position: absolute;
  background: #6dbabd;
  left: 50%;
}
@media only screen and (max-width: 768px) {
  .o-categorySearch__title:after {
    width: 26.666666666666668vw;
    bottom: -7.466666666666667vw;
  }
}
.o-categorySearch input#categoryCtrl {
  display: none;
}
.o-categorySearch input#categoryCtrl:checked + .o-categorySearch__inner {
  max-height: 133.33333333333334vw;
}
.o-categorySearch input#categoryCtrl:checked + .o-categorySearch__inner .o-categorySearch__title {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.o-categorySearch input#categoryCtrl:checked + .o-categorySearch__inner .o-categorySearch__title label:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}