@charset "UTF-8";
/* ===== @use ===== */
/* ===== common.scss ===== */
/* -- 変数 -- */
/* font */
/* color */
/* switching */
/* ===== @mixin ===== */
/* -- crm -- */
/* -- btn -- */
/* -- 画像をトリミング -- */
/* ===== news.css ===== */
/* -- productsBox01 -- */
.productsBox01 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 2.6rem;
}
.productsBox01-lbox {
  position: sticky;
  top: 0;
  padding-top: 2rem;
  width: 320px;
}
@media screen and (min-width: 901px) {
  .productsBox01-lbox > .h3Box > span:last-child {
    transition: font-size 0.3s;
  }
  .productsBox01-lbox > .h3Box:not(.act) > span:last-child {
    font-size: 40px;
  }
}
.productsBox01-lbox h5:not(:first-child) {
  margin-top: 3.6rem;
}
.productsBox01-lbox .checkbox label {
  margin: 0 0 7px;
  width: 100%;
}
.productsBox01-lbox .checkbox input {
  top: 3px;
  width: 24px;
  height: 24px;
  border-radius: 0;
}
.productsBox01-lbox .formBtn {
  margin-top: 4.6rem;
}
.productsBox01-lbox .formBtn button {
  font-size: 14px;
  font-weight: 700;
  height: 54px;
}
.productsBox01-lbox-select > *:not(.act) {
  opacity: 0.5;
}
.productsBox01-lbox-select > *:not(.act) .select::after {
  background: #D0D0D0;
}
.productsBox01-rbox {
  margin-top: 12.5rem;
  width: calc(100% - 420px);
}
@media screen and (min-width: 901px) {
  .productsBox01-lbox dl dd {
    display: block !important;
  }
}
@media screen and (max-width: 900px) {
  .productsBox01 {
    display: block;
    margin-top: 42px;
  }
  .productsBox01-lbox {
    position: static;
    padding-top: 0;
    width: auto;
  }
  .productsBox01-lbox dl {
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
  }
  .productsBox01-lbox dl dt a {
    font-weight: bold;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.02em;
    display: block;
    position: relative;
    padding: 27px 40px 27px 0;
  }
  .productsBox01-lbox dl dt a::before, .productsBox01-lbox dl dt a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 14px;
    height: 2px;
    background: #B50033;
    content: "";
  }
  .productsBox01-lbox dl dt a::after {
    transform: rotate(90deg);
    transition: transform 0.3s;
  }
  .productsBox01-lbox dl dt.open a::after {
    transform: rotate(0);
  }
  .productsBox01-lbox dl dd {
    display: none;
    margin: 13px 0 36px;
  }
  .productsBox01-lbox dl dd h5 {
    font-size: 14px;
    margin-top: 30px;
  }
  .productsBox01-lbox .checkbox {
    margin-top: 15px;
  }
  .productsBox01-lbox .checkbox label {
    margin: 0 0 6px;
  }
  .productsBox01-lbox .checkbox input {
    top: 1px;
  }
  .productsBox01-lbox .formBtn {
    margin-top: 30px;
  }
  .productsBox01-rbox {
    margin-top: 35px;
    width: auto;
  }
}

/* -- productsListBox -- */
.productsListBox {
  display: flex;
  flex-wrap: wrap;
}
.productsListBox-img {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.productsListBox-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  object-position: center;
  transition: width 0.3s;
}
.productsListBox-tit {
  font-family: "archivo-expanded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.01em;
  position: relative;
  margin-top: 16px;
  padding-right: 30px;
}
.productsListBox-tit::after {
  position: absolute;
  top: -3px;
  bottom: 0;
  right: -1px;
  margin: auto;
  width: 20px;
  height: 5px;
  background: url(../img/common/arrow_red.svg) no-repeat center/100% auto;
  content: "";
  transition: right 0.15s;
}
.productsListBox-txt {
  font-size: 14px;
  line-height: 1.78;
  margin: 11px 0 -7px;
}
.productsListBox-tag {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
}
.productsListBox-tag span {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  color: #585858;
  position: relative;
  margin-bottom: 4px;
  padding: 0 5px;
  height: 20px;
  background: #FFF;
  border: 1px solid #D0D0D0;
}
.productsListBox-tag span:not(:last-child) {
  margin-right: 4px;
}
@media screen and (min-width: 901px) {
  .productsListBox > * {
    width: 30.77%;
    /* - hover - */
  }
  .productsListBox > *:not(:nth-child(3n)) {
    margin-right: 3.845%;
  }
  .productsListBox > *:not(:nth-last-child(-n+3)) {
    margin-bottom: 7.9rem;
  }
  .productsListBox > *:hover {
    opacity: 1;
  }
  .productsListBox > *:hover .productsListBox-img img {
    width: 120%;
  }
  .productsListBox > *:hover .productsListBox-tit::after {
    right: -10px;
  }
  .productsListBox.mb > *:not(:nth-last-child(-n+3)) {
    margin-bottom: 4.6rem;
  }
}
@media screen and (max-width: 900px) {
  .productsListBox > * {
    width: 47.762%;
  }
  .productsListBox > *:not(:nth-child(2n)) {
    margin-right: 4.476%;
  }
  .productsListBox > *:not(:nth-last-child(-n+2)) {
    margin-bottom: 36px;
  }
}

/* -- productsBox02 -- */
.productsBox02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.productsBox02-lbox {
  width: 50%;
}
.productsBox02-lbox-category {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}
.productsBox02-lbox-category::before {
  display: inline-block;
  position: relative;
  top: 1px;
  margin-right: 4px;
  width: 13px;
  height: 13px;
  background: url(../img/common/icon_akartag.svg) no-repeat 0 0/100% auto;
  content: "";
}
.productsBox02-lbox-category span {
  color: #585858;
}
.productsBox02-lbox-category span::before, .productsBox02-lbox-category span::after {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  width: 4px;
  height: 15px;
  border: 1px solid rgba(39, 39, 39, 0.5);
  content: "";
}
.productsBox02-lbox-category span::before {
  margin: 0 2px 0 15px;
  border-right: none;
}
.productsBox02-lbox-category span::after {
  margin-left: 2px;
  border-left: none;
}
.productsBox02-lbox-tit {
  font-family: "archivo-expanded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: 1.6rem;
}
.productsBox02-lbox-tag {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.78;
  margin-top: 1.9rem;
}
.productsBox02-lbox-tag span {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  color: #585858;
  position: relative;
  margin-right: 1.6rem;
  padding: 5px 8px 6px 8px;
  min-width: 56px;
  height: 23px;
  background: #FFF;
  border: 1px solid #D0D0D0;
}
.productsBox02-lbox-txt {
  margin-top: 2rem;
}
.productsBox02-lbox-keyword {
  font-size: 14px;
  margin-top: 1.5rem;
}
.productsBox02-lbox-keyword span {
  opacity: 0.9;
}
.productsBox02-lbox-keyword span:not(:last-child)::after {
  font-family: "archivo-expanded", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  color: #D0D0D0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
  content: "/";
}
.productsBox02-lbox-link {
  display: flex;
  flex-wrap: wrap;
  margin-top: 4.4rem;
}
.productsBox02-lbox-link a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
  line-height: 1.68;
  letter-spacing: 0.025em;
  position: relative;
  padding: 0 50px 0 20px;
  width: 50%;
  height: 8rem;
  border: 1px solid #D0D0D0;
  border-right: none;
  transition: border 0.15s;
}
.productsBox02-lbox-link a:nth-child(2n+1) {
  border-left: none;
}
.productsBox02-lbox-link a:not(:nth-last-child(-n+2)) {
  border-bottom: none;
}
.productsBox02-lbox-link a::after {
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 19px;
  margin: auto;
  width: 20px;
  height: 5px;
  background: url(../img/common/arrow_red.svg) no-repeat center/100% auto;
  content: "";
  transition: right 0.15s;
}
@media screen and (min-width: 901px) {
  .productsBox02-lbox-link a:hover {
    opacity: 1;
    border-top-color: #B50033;
    border-bottom-color: #B50033;
  }
  .productsBox02-lbox-link a:hover, .productsBox02-lbox-link a:hover + * {
    border-left-color: transparent;
  }
  .productsBox02-lbox-link a:hover::after {
    right: 10px;
  }
}
.productsBox02-rbox {
  width: 43.4%;
}
.productsBox02-rbox-link {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
  text-align: right;
  margin-top: 2.9rem;
  transition: opacity 0.3s;
}
.productsBox02-rbox-link::before {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_copylink.svg) no-repeat 0 0/100% auto;
  content: "";
}
@media screen and (min-width: 901px) {
  .productsBox02-rbox-link:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 900px) {
  .productsBox02 {
    display: block;
  }
  .productsBox02-lbox {
    width: auto;
  }
  .productsBox02-lbox-keyword {
    font-size: 12px;
  }
  .productsBox02-lbox-keyword span:not(:last-child)::after {
    margin: 0 0.5rem;
  }
  .productsBox02-rbox {
    margin-top: 30px;
    width: auto;
  }
  .productsBox02-rbox-link {
    text-align: left;
  }
}

/* -- productsBox03 -- */
.productsBox03 > :not(:last-child) {
  margin-bottom: 15px;
}
.productsBox03 span {
  font-weight: bold;
  display: inline-block;
  margin-right: 1rem;
}

/* -- productsBox04 -- */
.productsBox04 {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 1000;
}
.productsBox04 > * {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.35px;
  color: #FFF;
  width: 50%;
  height: 54px;
  background: #B50033;
  transition: background 0.15s;
}
.productsBox04 > *:nth-child(2) {
  background: #000;
}
@media screen and (min-width: 901px) {
  .productsBox04 > *:hover {
    opacity: 1;
    background: #000;
  }
  .productsBox04 > *:hover:nth-child(2) {
    background: #B50033;
  }
}

/* -- success-msg -- */
.success-msg {
  text-align: center;
  line-height: 40px;
  color: #fff;
  display: none;
  position: fixed;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  max-width: 300px;
  height: 40px;
  background: #272727;
  border-radius: 5px;
  transform: translateY(-50%);
  z-index: 100;
}/*# sourceMappingURL=products.css.map */