.category {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 65px;
  max-width: 1140px;
  width: 100%;
}

.product_box {
  position: relative;
  display: block;
  margin: 0 16px 40px;
}

.product_box:nth-child(3n+1) {
  margin-left: 0;
}

.product_box:nth-child(3n+3) {
  margin-right: 0;
}

.product_box.long_box {
  height: auto;
}

.product_box.long_box .box {
  height: 580px;
}

.product_box.long_box .box > img {
  top: 0;
  bottom: auto;
}

.product_box.long_box .box .more > img {
  top: -37px;
}

.product_box .box {
  position: relative;
  display: block;
  max-width: 358px;
  max-height: 224px;
  width: 100%;
  height: 100%;
  background-color: #f6f6f6;
}

.product_box .box .line {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product_box .box .more {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 51;
  overflow: hidden;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  -webkit-transform: translate3d(0, 0, 100px) scale(0.9);
  transform: translate3d(0, 0, 100px) scale(0.9);
  pointer-events: none;
}

.product_box .box .more span {
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 5;
  padding: 2px 30px;
  background-color: #ad5797;
  color: white;
  letter-spacing: 1px;
  font-size: 12px;
  opacity: 0;
  -webkit-transform: rotateX(90deg) rotateY(90deg);
  transform: rotateX(90deg) rotateY(90deg);
  -webkit-transform-origin: 18% 51%;
  -ms-transform-origin: 18% 51%;
  transform-origin: 18% 51%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.product_box .name {
  display: block;
  margin-top: 15px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
}

.product_box .box:hover .more .line {
  opacity: 1;
}

@media only screen and (max-width: 1150px) {
  .category {
    margin-bottom: 30px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .product_box .box .more .line {
    opacity: 1;
  }
  .product_box {
    margin: 0 12px 30px;
  }
  .product_box:nth-child(2n+1) {
    margin-right: 12px;
    margin-left: 0;
  }
  .product_box:nth-child(2n+2) {
    margin-right: 0;
    margin-left: 12px;
  }
  .product_box:nth-child(3n+3) {
    margin-right: 12px;
    margin-left: 0;
  }
  .product_box:last-child {
    margin-bottom: 0;
  }
  .product_box .box {
    width: 43vw;
    height: 27vw;
  }
}

@media only screen and (max-width: 650px) {
  .category {
    margin-bottom: 50px;
    padding-right: 33px;
    padding-left: 33px;
  }
  .product_box .box {
    width: 100%;
    height: calc(70vw - 66px);
  }
  .product_box .name {
    margin-top: 10px;
  }
  .product_box:nth-child(n) {
    margin-right: auto;
    margin-left: auto;
  }
}

.gotopage {
  display: none;
}

@media only screen and (max-width: 650px) {
  .gotopage {
    position: relative;
    width: calc(100% - 66px);
    display: block;
    margin: 0 auto 55px;
    padding-top: 50px;
    border-top: 1px solid #dedede;
  }
  .gotopage select {
    width: 100%;
    border: 0;
    font-size: 16px;
    color: #8d8d8d;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
    outline: 0;
    background-image: url("../images/selectsign.png");
    background-size: 13px;
    background-position: right center;
    background-repeat: no-repeat;
  }
  .gotopage option {
    outline: 0;
  }
}

.page_content > * {
  opacity: 0;
}

.t1 {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  margin-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.t1:after {
  content: '';
  right: 0;
  margin-left: 20px;
  background-color: #000;
  width: 1px;
  height: 22px;
}

.t2 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2em;
}

.page_title {
  position: relative;
  margin-bottom: 45px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page_title .t1 {
  margin-right: 30px;
}

.page_title .slash {
  width: 2px;
  height: 45px;
  background-color: #000;
  -webkit-transform: rotate(26deg);
  -ms-transform: rotate(26deg);
  transform: rotate(26deg);
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  margin-bottom: 20px;
}

p.note {
  width: 645px;
  font-size: 15px;
  line-height: 1.4em;
  letter-spacing: 0.05em;
  margin-bottom: 115px;
}

.li_title {
  font-size: 20px;
  font-weight: 700;
}

.teamblk {
  margin-bottom: 80px;
}

.teamblk .li_title {
  margin-bottom: 70px;
}

.teamblk .teamlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.teamblk .team_item {
  position: relative;
  max-width: 359px;
  width: 30%;
  margin-right: 31px;
  opacity: 0;
}

.teamblk .team_item img {
  display: block;
}

.teamblk .team_img {
  width: 100%;
}

.teamblk .team_man {
  position: relative;
  padding-top: 20px;
  padding-right: 140px;
}

.teamblk .name {
  margin-bottom: 17px;
  font-weight: 700;
  font-size: 20px;
}

.teamblk .team_position {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2em;
  height: 55px;
}

.teamblk .info_btn {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d5d5d5;
}

.teamblk .info_btn:after, .teamblk .info_btn:before {
  content: '';
  width: 11px;
  height: 1px;
  background-color: #3c3c3c;
  position: absolute;
  top: 70%;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.teamblk .info_btn:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 1;
}

.teamblk .info_btn.active:before {
  opacity: 0;
}

.teamblk .info_btn.active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.teamblk ul.info {
  color: #515151;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.33em;
  opacity: 0;
  height: 0;
}

.teamblk ul.info.active {
  opacity: 1;
  height: auto;
}

.teamblk ul.info li {
  padding-right: 65px;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #c8c8c8;
}

.teamblk ul.info li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.borad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 65px;
  padding-bottom: 50px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #b7b7b7;
  margin-bottom: 70px;
}

.borad .borad_content {
  width: 66%;
  font-size: 15px;
  color: #515151;
}

.borad .borad_content p {
  margin-bottom: 35px;
}

.borad .borad_content a {
  color: #000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  text-decoration: underline;
}

.team_group {
  margin-bottom: 110px;
}

.team_group .li_title {
  margin-bottom: 105px;
}

.team_group .group_img {
  text-align: center;
}

@media only screen and (max-width: 1150px) {
  .page_content {
    padding-left: 30px;
    padding-right: 50px;
  }
  p.note {
    width: 100%;
  }
  .teamblk .team_item {
    width: 47%;
  }
}

@media only screen and (max-width: 650px) {
  .page_content {
    padding-left: 33px;
    padding-right: 33px; margin-top: 35px;
  }
  .page_title {
    margin-bottom: 40px;
  }
  .page_title .t1 {
    width: 200px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .t1:after {
    width: 11px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-left: 0;
    background-color: rgba(0, 0, 0, 0.18);
  }
  p.note {
    padding-bottom: 45px;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }
  .teamblk {
    margin-bottom: 45px;
  }
  .teamblk .team_item {
    width: 100%;
    margin-bottom: 10px;
  }
  .teamblk .li_title {
    margin-bottom: 35px;
  }
  .teamblk .name {
    margin-bottom: 10px;
  }
  .teamblk .team_man {
    padding-right: 50px;
  }
  .borad {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 45px;
    margin-bottom: 50px;
  }
  .borad .borad_content {
    width: 100%;
  }
  .borad .li_title {
    width: 100%;
    margin-bottom: 40px;
  }
  .team_group .li_title {
    margin-bottom: 45px;
  }
  .team_group {
    margin-bottom: 50px;
  }
}

/*# sourceMappingURL=web_about_people.css.map */
