/* CSS Document */

@charset "UTF-8";

.inventory .sec01 {
  padding: 0 0 60px;

}

.inventory .sec01 .wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.inventory .sec01 .sercharea {
  display: flex;
  justify-content: space-between;
}

.inventory .sec01 .sercharea .title {
  font-size: 20px;
  font-weight: bold;
  color: #14559E;
  align-self: center;
  margin-bottom: 0;
}

.inventory .sec01 .sercharea form {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  width: 865px;
  max-width: 100%;
  box-sizing: border-box;
}

.inventory .sec01 .sercharea input {
  font-size: 16px;
  line-height: 51px;
  width: calc(100% - 94px);
  padding: 0 20px;
  box-sizing: border-box;
  border: 2px solid #14559E;
  border-right:none;
  font-weight: 400;
  border-radius: 0;
}

.inventory .sec01 .sercharea button {
  font-size: 16px;
  line-height: 51px;
  width: 94px;
  box-sizing: border-box;
  text-align: center;
  color: #FFF;
  background: #14559E;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #14559E;
  border-left:none;
}

.inventory .sec01 .sercharea button .img {
  width: 15px;
  line-height: 100%;
  margin-right: 5px;
}

.inventory .sec02 .area01 {
  padding: 50px 0;
  background: #E6F2FF;
  position: relative;
  overflow: hidden;
}

.inventory .sec02 .area02 {
  padding: 50px 0;
  position: relative;
}

.inventory .sec02 .area02 .items .item {
  min-height: auto;
}

.inventory .sec02 .bg {
  width: 573px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.inventory .sec02 .wrap {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 15px;
  box-sizing: border-box;
}

.inventory .sec02 .title {
  font-size: 20px;
  line-height: 30px;
  color: #14559E;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .inventory .sec02 .title:not(:last-child) {
    margin-bottom: 30px;
  }
}

.inventory .sec02 .title span {
  margin-left: 20px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 767px) {
  .inventory .sec02 .title span {
    margin-left: 0;
    display: block;
  }
}

.inventory .sec02 .items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inventory .sec02 .items::after {
  content: "";
  width: 380px;
}

.inventory .sec02 .item {
  width: calc(100% / 3 - 10px);
  border-radius: 4px;
  padding: 10px 15px 20px;
  min-height: 170px;
  box-sizing: border-box;
  border-top: 4px solid #14559E;
  position: relative;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  background: #FFF;
}

@media screen and (min-width: 835px) {
  .inventory .sec02 .item:nth-child(n+4){
    margin-top: 40px;
  }
}

.inventory .sec02 .item .names {
  display: flex;
  width: 100%;
  border-radius: 4px;
  align-items: center;
  padding: 2px 15px 2px 5px;
  box-sizing: border-box;
  position: relative;
  transition: 0.5s;
}

.inventory .sec02 .item .names::before {
  content: "";
  width: 9px;
  height: 9px;
  background: url("/wp-content/themes/meijidori-theme/assets/images/common/Icon_material_chevron_right_blue.svg") no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}

.inventory .sec02 .item .names:hover {
  background: #E6F2FF;
}

.inventory .sec02 .item .names .img {
  width: 45px;
  height: 40px;
  margin-right: 5px;
}

.inventory .sec02 .item .names .name {
  font-size: 20px;
  line-height: 30px;
  ;
}

.inventory .sec02 .item .tags {
  width: calc(100% + 10px);
  margin-top: 10px;
  padding-top: 5px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media(max-width:834px) {
  .inventory .sec02 .item .tags {
    margin-top: 4px;
  }
}

.inventory .sec02 .item .tags::before {
  content: "";
  width: calc(100% - 10px);
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: #DCE0E2
}

.inventory .sec02 .item .tag {
  font-size: 14px;
  line-height: 28px;
  padding: 0 5px;
  color: #14559E;
  border: 1px solid #14559E;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 10px;
  transition: 0.5s;
}

.inventory .sec02 .item .tag:hover {
  color: #FFF;
  background: #14559E;
}

@media(max-width:1050px) {
  .inventory .sec01 {
    padding: 0 0 30px;
  }
  .inventory .sec01 .sercharea {
    display: block;
    width: 790px;
    max-width: 100%;
    margin: 0 auto;
  }
  .inventory .sec02 .wrap {
    width: inherit;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media(max-width:767px) {
  .inventory .sec01 .sercharea .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .inventory .sec01 .sercharea input {
    font-size: 12px;
    line-height: 36px;
    width: calc(100% - 80px);
    padding: 0 15px;
  }
  .inventory .sec01 .sercharea button {
    font-size: 16px;
    line-height: 36px;
    width: 80px;
  }
  .inventory .sec02 .area01 {
    padding: 25px 0 35px;
  }
  .inventory .sec02 .area02 {
    padding: 25px 0 35px;
  }
  .inventory .sec02 .bg {
    display: none;
  }
  .inventory .sec02 .title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .inventory .sec02 .item {
    width: calc(50% - 15px);
  }
  .inventory .sec02 .item {
    min-height: auto;
    margin-top: 20px;
    padding: 5px 15px 20px;
  }
  .inventory .sec02 .item .names .img {
    width: 35px;
    height: 30px;
  }
  .inventory .sec02 .item .names .name {
    font-size: 18px;
    line-height: 20px;
    ;
  }
}

@media(max-width: 414px) {
  .inventory .sec02 .items {
    width: 380px;
    max-width: 100%;
    margin: 0 auto;
  }
  .inventory .sec02 .item {
    width: 100%;
  }
  .inventory .sec02 .item:first-child {
    margin-top: 0;
  }
}