@charset "UTF-8";

/* =============================================
 Products CSS
============================================= */

/* ================ page main image ================ */

.page_main_img{
    background-color: #EEE;
    background-image: url(../img/main_img.jpg);
}

/* ================  ================ */

h1.contents_title {
  color: #886b3d;
  font-size: 24px;
  margin-bottom: 20px;
}

.costume{
  width: 100%;
}

input[type="radio"]{
  display: none;
}
.tab_item{
  width: calc(100%/2);
  height: 60px;
  border-top: #8EE1D3 10px solid;
  background-color: #f2f2f2;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  float: left;
}
.tab_boy{
  border-top: #8EE1D3 10px solid;
}
.tab_girl{
  border-top: #FBA8A8 10px solid;
}
input:checked + .tab_item{
  background-color: #fff;
}

.list_wrap{
  width: 100%;
  padding: 70px 30px 20px;
  background-color: #fff;
  display: none;
  clear: both;
}
.costume_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.costume_list li{
  width: 23%;
  margin-bottom: 50px;
}
.costume_list li p{
  width: fit-content;
  margin-top: 15px;
  padding: 5px 15px;
  background-color: #8EE1D3;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
}
#girl_list .costume_list li p{
  background-color: #FBA8A8;
}

#BOY:checked ~ #boy_list,
#GIRL:checked ~ #girl_list{
  display: block;
}


/* ============================ SP ============================ */

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

  .list_wrap{
    padding: 40px 0 20px;
  }

  .costume_list li{
    width: 48%;
    margin-bottom: 30px;
  }

}

/* ============================ MD ============================ */

@media only screen and (min-width: 768px) {

  h1.contents_title {
    font-size: 30px;
    margin-top: 60px;
  }

  /* ================  ================ */

}
/* ============================ PC ============================ */

@media only screen and (min-width: 1024px) {

    /* ================  ================ */

}
