@charset "UTF-8";
/*
import global components
*/
/*
#  scss mixin
1. background-image-retina
*/
/* about */
/*
    必須引数として「拡張子を除く画像パス」と「拡張子」を指定することで、メディアクエリのRetina対応コードを出力。
    */
/* usage */
/*
    // --- scss code
    .section--index.section--01.loaded {
        @include background-image-retina('../img/index/desktop/section--01', 'jpg');
        background-size: 1308px 600px;
    }

    // --- output css
    .section--index.section--01.loaded {
        background-image:url("../img/index/desktop/section--01.jpg");
        background-size:1308px 600px;
    }
    @media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi){
        .section--index.section--01.loaded {
            background-image:url("../img/index/desktop/section--01@2x.jpg");
        }
    }
    ---
    */
/*
import page components
*/
.billboard {
  overflow: hidden;
  width: 100%;
  background-position: center;
  background-size: cover;
}
@media (max-width: 639px) {
  .billboard {
    height: 150px;
    margin-bottom: 60px;
  }
}
@media (min-width: 640px) {
  .billboard {
    height: 150px;
    margin-bottom: 80px;
  }
}
.billboard img {
  width: 100%;
  height: auto;
}

@media (max-width: 639px) {
  .content_class_products.bundles .billboard {
    background-image: url("/image/others/bundles/mobile-billboard.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .content_class_products.bundles .billboard {
    background-image: url("/image/others/bundles/mobile-billboard@2x.jpg");
  }
}
@media (min-width: 640px) {
  .content_class_products.bundles .billboard {
    background-image: url("/image/others/bundles/desktop-billboard.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .content_class_products.bundles .billboard {
    background-image: url("/image/others/bundles/desktop-billboard@2x.jpg");
  }
}
@media (max-width: 639px) {
  .content_class_products.plugins .billboard {
    background-image: url("/image/others/plugins/mobile-billboard.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .content_class_products.plugins .billboard {
    background-image: url("/image/others/plugins/mobile-billboard@2x.jpg");
  }
}
@media (min-width: 640px) {
  .content_class_products.plugins .billboard {
    background-image: url("/image/others/plugins/desktop-billboard.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .content_class_products.plugins .billboard {
    background-image: url("/image/others/plugins/desktop-billboard@2x.jpg");
  }
}
@media (max-width: 639px) {
  .content_class_products.hardware .billboard {
    background-image: url("/image/others/hardware/mobile-billboard.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .content_class_products.hardware .billboard {
    background-image: url("/image/others/hardware/mobile-billboard@2x.jpg");
  }
}
@media (min-width: 640px) {
  .content_class_products.hardware .billboard {
    background-image: url("/image/others/hardware/desktop-billboard.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .content_class_products.hardware .billboard {
    background-image: url("/image/others/hardware/desktop-billboard@2x.jpg");
  }
}
@media (max-width: 639px) {
  .content_class_products.articles .billboard {
    background-image: url("/image/others/articles/mobile-billboard.jpg");
  }
}
@media (max-width: 639px) and (-webkit-min-device-pixel-ratio: 1.5), (max-width: 639px) and (min-resolution: 144dpi) {
  .content_class_products.articles .billboard {
    background-image: url("/image/others/articles/mobile-billboard@2x.jpg");
  }
}
@media (min-width: 640px) {
  .content_class_products.articles .billboard {
    background-image: url("/image/others/articles/desktop-billboard.jpg");
  }
}
@media (min-width: 640px) and (-webkit-min-device-pixel-ratio: 1.5), (min-width: 640px) and (min-resolution: 144dpi) {
  .content_class_products.articles .billboard {
    background-image: url("/image/others/articles/desktop-billboard@2x.jpg");
  }
}

.overview {
  text-align: center;
}
@media (max-width: 639px) {
  .overview {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 40px;
  }
}
@media (min-width: 640px) {
  .overview {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    padding: 0 0 80px;
  }
}
.overview > .title {
  margin-bottom: 20px;
  font-family: "Montserrat";
  font-weight: bold;
  color: #000;
}
@media (max-width: 639px) {
  .overview > .title {
    font-size: 46px;
    line-height: 1;
  }
}
@media (min-width: 640px) {
  .overview > .title {
    font-size: 66px;
    line-height: 76px;
  }
}
@media (max-width: 639px) {
  .overview > .introduction {
    text-align: left;
  }
}
@media (min-width: 640px) {
  .overview > .introduction {
    text-align: center;
    font-size: 20px;
  }
}

.section__result {
  overflow: visible;
}
@media (max-width: 639px) {
  .section__result {
    padding: 0 0 40px;
  }
}
@media (min-width: 640px) {
  .section__result {
    padding: 0 0 60px;
  }
}
.section__result > .view-area {
  position: relative;
}
@media (max-width: 639px) {
  .section__result > .view-area {
    width: 100%;
    margin: 0 auto;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area {
    overflow: visible;
    width: 90%;
    max-width: 1118px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    grid-template-columns: 200px 1fr;
  }
}
@media (max-width: 639px) {
  .section__result > .view-area > .filter {
    position: absolute;
    top: 43px;
    width: 100vw;
    padding: 40px 0 20px;
    background-color: #222;
    opacity: 0;
    z-index: -1;
    transition-duration: 0.3s;
  }
  .section__result > .view-area > .filter::before {
    content: "";
    position: absolute;
    top: -6px;
    left: calc(100% - 10.5rem);
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    background-color: #222;
  }
  .section__result > .view-area > .filter.__active {
    height: auto;
    opacity: 1;
    z-index: 90;
  }
}
@media (max-width: 639px) {
  .section__result > .view-area > .filter > .group {
    width: 90%;
    margin: 0 auto 20px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .filter > .group {
    margin-bottom: 40px;
  }
}
.section__result > .view-area > .filter > .group .group_title {
  margin: 0 auto 10px 0;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 639px) {
  .section__result > .view-area > .filter > .group .group_title {
    color: #fff;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .filter > .group .group_title {
    color: #000;
  }
}
.section__result > .view-area > .filter > .group > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.section__result > .view-area > .filter > .group > ul > li {
  position: relative;
  margin: 0 0 4px 0;
  padding: 0 0 0 1.2rem;
  font-size: 0.9rem;
}
.section__result > .view-area > .filter > .group > ul > li a {
  text-decoration: none;
}
@media (max-width: 639px) {
  .section__result > .view-area > .filter > .group > ul > li a {
    color: #fff;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .filter > .group > ul > li a {
    color: #707070;
  }
}
.section__result > .view-area > .filter > .group > ul > li a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  border: 1px solid #000;
}
@media (max-width: 639px) {
  .section__result > .view-area > .filter > .group > ul > li a::before {
    border: 1px solid #fff;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .filter > .group > ul > li a::before {
    border: 1px solid #000;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .filter > .group > ul > li a:hover {
    color: #000;
  }
}
.section__result > .view-area > .filter > .group > ul > li a.current {
  cursor: default;
}
.section__result > .view-area > .filter > .group > ul > li a.current::before {
  border: none;
  background-color: #0DB5C6;
}
.section__result > .view-area > .result > .functions {
  position: relative;
  display: flex;
  text-align: right;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions {
    width: 90%;
    margin: 0 auto;
  }
}
.section__result > .view-area > .result > .functions > .search {
  flex: 1;
  text-align: left;
}
.section__result > .view-area > .result > .functions > .search > form {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 0 0;
}
.section__result > .view-area > .result > .functions > .search > form::before {
  content: "";
  position: absolute;
  display: block;
  top: 11px;
  left: 20px;
  width: 23px;
  height: 23px;
  background-size: 18px auto;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17.625" height="17.6" viewBox="0 0 17.625 17.6"><path fill="%23707070" d="M6,12.8A6.8,6.8,0,1,1,12.8,6,6.872,6.872,0,0,1,6,12.8ZM6,.8A5.164,5.164,0,0,0,.8,6,5.228,5.228,0,0,0,6,11.2,5.3,5.3,0,0,0,11.2,6,5.228,5.228,0,0,0,6,.8Z" transform="translate(0.8 0.8)"/><path fill="%23707070" d="M16,16.8a.764.764,0,0,1-.5-.2l-5-5a.778.778,0,0,1,1.1-1.1l5,5a.785.785,0,0,1,0,1.1A1.421,1.421,0,0,1,16,16.8Z" transform="translate(0.8 0.8)"/></svg>');
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .search > form::before {
    top: 11px;
    left: 15px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .search > form::before {
    top: 11px;
    left: 20px;
  }
}
.section__result > .view-area > .result > .functions > .search > form > .search-input {
  -webkit-appearance: none;
  height: 40px;
  border: 1px solid #707070;
  border-radius: 20px;
  cursor: text;
  outline: none;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .search > form > .search-input {
    width: 90%;
    padding: 0 20px 0 40px;
    font-size: 15px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .search > form > .search-input {
    width: 60%;
    padding: 0 20px 0 50px;
    font-size: 18px;
  }
}
.section__result > .view-area > .result > .functions > .sort_button {
  position: relative;
  font-size: 0.9rem;
  color: #000;
  cursor: pointer;
}
.section__result > .view-area > .result > .functions > .sort_button::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22.1" height="17.5" viewBox="0 0 22.1 17.5"><path d="M11.2,5.7a.908.908,0,0,0-.3-.7L6.3.3A.967.967,0,0,0,4.9.3L.3,5.1a.713.713,0,0,0-.3.6.908.908,0,0,0,.3.7.844.844,0,0,0,.7.2.6.6,0,0,0,.6-.3l1.9-2L4.8,2.8l-.1,2V16.5a.908.908,0,0,0,.3.7.967.967,0,0,0,1.4,0,.908.908,0,0,0,.3-.7V4.9l-.1-2L7.9,4.4l1.9,2a.864.864,0,0,0,.6.3,1.445,1.445,0,0,0,.7-.2C11.3,6.4,11.2,6,11.2,5.7Z"/><path d="M21.6,11.1a.844.844,0,0,0-.7-.2.713.713,0,0,0-.6.3l-1.9,2-1.3,1.6.1-2V.9a.6.6,0,0,0-.3-.6c-.2-.1-.4-.3-.6-.3a.908.908,0,0,0-.7.3.864.864,0,0,0-.3.6V12.6l.1,2L14.1,13l-1.9-2a.864.864,0,0,0-.6-.3.845.845,0,0,0-.6.2,1.072,1.072,0,0,0-.2.6.908.908,0,0,0,.3.7L15.7,17a.967.967,0,0,0,1.4,0l4.7-4.8a.908.908,0,0,0,.3-.7C21.9,11.5,21.8,11.3,21.6,11.1Z" fill="%230"/></svg>');
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .sort_button::before {
    top: 11px;
    width: 23px;
    height: 23px;
    background-size: 18px auto;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .sort_button::before {
    top: 11px;
    width: 27px;
    height: 27px;
  }
}
.section__result > .view-area > .result > .functions > .filter_button {
  position: relative;
  font-size: 0.9rem;
  color: #000;
  cursor: pointer;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .filter_button {
    margin-right: 10px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .filter_button {
    display: none;
  }
}
.section__result > .view-area > .result > .functions > .filter_button::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 3px;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="19" height="19" viewBox="0 0 19 19"><path d="M4.4,7.6a.735.735,0,0,1-.6-.2.551.551,0,0,1-.2-.5.764.764,0,0,1,.2-.5.845.845,0,0,1,.6-.2H14.6a1.421,1.421,0,0,1,.6.2c.2.1.2.3.2.5a.764.764,0,0,1-.2.5.845.845,0,0,1-.6.2Zm1.4,3.2a1.421,1.421,0,0,1-.6-.2c-.2-.1-.2-.3-.2-.5a.764.764,0,0,1,.2-.5.845.845,0,0,1,.6-.2h7.5a1.421,1.421,0,0,1,.6.2c.2.1.1.2.1.5a.764.764,0,0,1-.2.5.845.845,0,0,1-.6.2ZM7.2,14a1.421,1.421,0,0,1-.6-.2.725.725,0,0,1,0-1,.845.845,0,0,1,.6-.2h4.6a1.421,1.421,0,0,1,.6.2c.2.1.2.3.2.5a.764.764,0,0,1-.2.5,1.421,1.421,0,0,1-.6.2Zm2.3,5a9.366,9.366,0,0,0,3.7-.7,8.125,8.125,0,0,0,3-2.1,12.468,12.468,0,0,0,2.1-3A11.56,11.56,0,0,0,19,9.5a9.465,9.465,0,0,0-.8-3.7,9.038,9.038,0,0,0-2.1-3,12.468,12.468,0,0,0-3-2.1A8.571,8.571,0,0,0,9.5,0,9.366,9.366,0,0,0,5.8.7a8.125,8.125,0,0,0-3,2.1,12.468,12.468,0,0,0-2.1,3A9.04,9.04,0,0,0,0,9.5a9.366,9.366,0,0,0,.7,3.7,8.125,8.125,0,0,0,2.1,3,12.468,12.468,0,0,0,3,2.1A9.04,9.04,0,0,0,9.5,19Z" fill="%230"/></svg>');
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .filter_button::before {
    top: 9px;
    width: 23px;
    height: 23px;
    background-size: 18px auto;
  }
}
.section__result > .view-area > .result > .functions > .sort_dropdown {
  position: absolute;
  z-index: 80;
  right: 0;
  margin: 0;
  background-color: #0DB5C6;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 50px;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: left;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .sort_dropdown {
    top: 43px;
    padding: 15px 28px;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .sort_dropdown {
    top: 50px;
    padding: 20px 28px;
  }
}
.section__result > .view-area > .result > .functions > .sort_dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: calc(70% - 10px);
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  background-color: #0DB5C6;
}
.section__result > .view-area > .result > .functions > .sort_dropdown.__active {
  opacity: 1;
}
@media (max-width: 639px) {
  .section__result > .view-area > .result > .functions > .sort_dropdown > li {
    margin: 6px 0;
  }
}
@media (min-width: 640px) {
  .section__result > .view-area > .result > .functions > .sort_dropdown > li {
    margin: 0;
  }
}
.section__result > .view-area > .result > .functions > .sort_dropdown > li > a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #fff;
}
.section__result > .view-area > .result > .products {
  padding-top: 0;
}
.section__result > .view-area > .result > .products .ultimate {
  position: absolute;
  top: 0;
  background: #00ABBB;
  color: white;
  padding: 5px;
  margin: 5px;
  font-size: 0.5em;
  border-radius: 7px;
  font-weight: bold;
}
.section__result > .view-area > .result > .products .essential {
  position: absolute;
  top: 0px;
  left: 60px;
  background: gold;
  color: dimgrey;
  padding: 5px;
  margin: 5px;
  font-size: 0.5em;
  border-radius: 7px;
  font-weight: bold;
}
