@charset "utf-8";

/* ==========================================================
 series
========================================================== */
/* ttl
---------------------------------------------------------- */
#series .ttl-01 {
  line-height: 1.6;
  margin-bottom: 40px;
}
#series .ttl-02,
#series .ttl-03 {
  font-weight: 700;
  text-align: center;
}
#series .ttl-02 {
  margin-bottom: 15px;
  font-size: 16px;
}
#series .ttl-03 {
  margin-bottom: -20px;
  font-size: 20px;
}

/* aco
---------------------------------------------------------- */
#series .wrap-aco {
  margin-bottom: 60px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
#series .wrap-aco .ttl {
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background: #fff;
  transition: color 0.5s ease-out;
  cursor: pointer;
}
#series .wrap-aco .ttl::after {
  content: "";
  position: relative;
  top: 3px;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #ccc;
  border-bottom: 0;
  vertical-align: middle;
  transform: translateY(-50%);
  transition: border-top-color 0.5s ease-out;
}
#series .wrap-aco.is-open .ttl::after {
  border-top: 0;
  border-bottom: 10px solid #ccc;
}
#series .wrap-aco .detail {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
#series .wrap-aco.is-open .detail {
  max-height: 500px;
  opacity: 1;
}
#series .wrap-aco .list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
	justify-content: space-between;
  max-width: 1020px;
  margin: 20px auto 30px;
}
#series .wrap-aco .item {
  width: min(320px, calc(33.33% - 19px));
  line-height: 1.7;
}
#series .wrap-aco .item .img {
  margin-bottom: 15px;
}
#series .wrap-aco .item .img video {
  display: block;
  width: 100%;
}
/* #series .wrap-aco .item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
	justify-content: space-between;
  margin: 40px 60px;
}
#series .wrap-aco .item .img,
#series .wrap-aco .item .txt {
  width: calc(50% - 20px);
} */

/* main
---------------------------------------------------------- */
#series .img-main {
  position: relative;
  width: 100%;
}
#series .img-main h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 330px;
  height: 141px;
  z-index: 2;
  transform: translate(-50%, -50%);
}
#series .txt-main {
  margin: 80px 0;
  font-size: 18px;
}

#series .link-series {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
	justify-content: space-between;
  max-width: 1020px;
  margin: 0 auto;
}
#series .link-series .link {
  position: relative;
  display: block;
  width: calc(50% - 20px);
  padding: 40px 30px 56px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-pk);
  border-radius: 10px;
}
#series .link-series .link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid var(--color-pk);
  border-bottom: 0;
  transform: translateX(-50%);
  transition: border-top-color 0.5s ease-out;
}
#series .link-series h3 {
  font-size: 20px;
  font-weight: 700;
}
#series .link-series h3 .new {
  position: relative;
  top: -0.1em;
  display: inline-block;
  width: 3.5em;
  margin-right: 10px;
  padding-bottom: 0.1em;
  color: #fff;
  font-size: 12px;
  text-align: center;
  background: var(--color-pk);
  border-radius: 2px;
  vertical-align: middle;
}
#series .link-series p {
  margin: 10px 0 25px;
}
#series .link-series .wrap-ico {
  width: min(380px, 90%);
  margin: 0 auto;
}
#series .link-series .wrap-ico .ico {
  height: 34px;
  font-size: 12px;
}

#series .list-product .item{
  position: relative;
}

#series .list-product .item .limited{
  position: absolute;
  display: inline-block;
  color: #E3484A;
  border: 2px solid #E3484A;
  top:0%;
  left: 0%;
  padding: 2px 8px;
  font-size: 0.8em;
  font-weight: 500;
  z-index: 9;
}


/* ==========================================================
 min-width: 769px
========================================================== */
@media screen and (min-width: 769px) {
  #series .wrap-aco .ttl:hover {
    color: var(--color-pk);
  }
  #series .wrap-aco .ttl:hover::after {
    border-top-color: var(--color-pk);
  }
  #series .link-series .link:hover {
    color: #fff;
    background: var(--color-pk);
  }
  #series .link-series .link:hover::after {
    border-top-color: #fff;
  }
  #series .link-series .link:hover h3 .new {
    background: #fff;
    color: var(--color-pk);
  }
}

/* ==========================================================
 max-width: 768px
========================================================== */
@media screen and (min-width: 1px) and (max-width: 768px) {
  #series .img-main h1 {
    top: 60px;
    width: 290px;
    height: 116px;
    transform: translateX(-50%);
  }
  #series .txt-main {
    margin: 40px 0 60px;
    font-size: 14px;
  }
  #series .ttl-01 {
    margin: 0 -10px 30px;
    font-size: 18px;
  }
  #series .ttl-02 {
    margin-bottom: 8px;
    font-size: 14px;
  }
  #series .ttl-03 {
    font-size: 16px;
  }
  #series .link-series {
    display: block;
    margin: -10px 30px 0;
  }
  #series .link-series .link {
    width: auto;
    padding: 25px 0 40px;
  }
  #series .link-series .link + .link {
    margin-top: 10px;
  }
  #series .link-series .link::after {
    bottom: 15px;
  }
  #series .link-series h3 {
    font-size: 18px;
  }
  #series .link-series h3 .new {
    font-size: 12px;
  }
  #series .link-series p {
    margin-bottom: 20px;
    font-size: 13px;
  }
  #series .link-series .wrap-ico.center {
    -ms-flex-pack: center;
    justify-content: center;
  }
  #series .link-series .wrap-ico.center .ico + .ico {
    margin-left: 3px;
  }
  #series .wrap-aco {
    margin-bottom: 50px;
  }
  #series .wrap-aco .ttl {
    padding: 10px;
    font-size: 14px;
  }
  #series .wrap-aco .list {
    display: block;
    margin: 10px 20px 0;
  }
  #series .wrap-aco .item {
    width: auto;
    margin-bottom: 40px;
    font-size: 13px;
  }
  #series .wrap-aco.is-open .detail {
    max-height: 2000px;
  }
}