@charset "UTF-8";
* {
  transition: all 0.3s;
}
* button:hover {
  filter: brightness(1.1);
}
* input[type=checkbox] {
  display: none;
}
* label {
  cursor: pointer;
}
* p {
  margin: 0;
}
* .center {
  text-align: center;
}
* .txt-caption {
  font-size: var(--size_txt_xs);
}
* h1,
* h2,
* h3,
* h4 {
  margin: 0;
}
* .bg__white {
  background-color: rgb(255, 255, 255);
}
* .bg__white__opacity--75 {
  background-color: rgba(255, 255, 255, 0.75);
}
* .bg__white__opacity--50 {
  background-color: rgba(255, 255, 255, 0.5);
}
* .bg__white__opacity--25 {
  background-color: rgba(255, 255, 255, 0.25);
}
* .bg__gray {
  background-color: #F6F7F8;
}
* .bg__light-blue {
  background-color: #f7fcff;
}

article section + section {
  margin: 4rem 0;
}
@media screen and (max-width: 768px ) {
  article section + section {
    width: 90vw;
    margin: 2rem auto !important;
  }
}
article section + section.bg_white {
  box-shadow: var(--shadow_dark);
}

body {
  background-color: #d8f1ff;
  z-index: -2;
  overflow-x: hidden;
}
body main {
  position: relative;
}
body main::before {
  content: "";
  background-image: url(/~/media/img/contents/biz-lineup/bg_crystal.svg);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
  background-size: 110vw;
  background-repeat: repeat-x;
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (max-width: 768px ) {
  body main::before {
    background-size: 400vw;
  }
}
body main #kv_outer_wrap {
  margin-bottom: 4rem;
}
body main #kv_outer_wrap::after {
  content: "";
  height: 14rem;
  background: linear-gradient(90deg, rgba(111, 178, 255, 0) 50%, rgb(111, 178, 255) 70%, rgb(111, 178, 255) 100%);
  position: absolute;
  right: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  top: 2rem;
  z-index: -1;
}
@media screen and (max-width: 768px ) {
  body main #kv_outer_wrap::after {
    top: 34vh;
    background: linear-gradient(90deg, rgba(111, 178, 255, 0) 10%, rgb(111, 178, 255) 70%, rgb(111, 178, 255) 100%);
  }
}
body main #kv_outer_wrap .kv_inner_wrap {
  padding: 2rem 0 0;
}
body main #kv_outer_wrap .kv_inner_wrap h1 {
  font-size: 3.5rem;
  margin: 0 0 1rem;
  line-height: 4.5rem;
  font-weight: lighter;
  color: #00277A;
}
body main #kv_outer_wrap .bg__white__opacity--50 {
  padding: 2rem 0;
  border-radius: var(--radius_l);
}
body main #kv_outer_wrap .pay_info .btn__link--bill {
  border: none;
  border-radius: var(--radius_max);
  padding: 1rem;
  margin: 1rem auto 0;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow_dark);
  font-weight: bold;
  text-decoration: none;
  background-color: #00277A;
  color: #fff;
}
body main #kv_outer_wrap .pay_info .btn__link--bill:hover {
  box-shadow: var(--shadow_dark);
  filter: brightness(1.2);
}
body main #kv_outer_wrap .pay_info__icon {
  position: relative;
}
@media screen and (min-width: 769px ) {
  body main #kv_outer_wrap .pay_info__icon::before {
    content: "";
    border-left: 1px solid #c1c1c1;
    left: 0;
    position: absolute;
    height: 100%;
    top: 0;
  }
  body main #kv_outer_wrap .pay_info__icon::after {
    content: "";
    border-right: 1px solid #c1c1c1;
    right: 0;
    position: absolute;
    height: 100%;
    top: 0;
  }
}
body main #kv_outer_wrap .pay_info__icon__img {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
body main #kv_outer_wrap .pay_info__icon__img img {
  margin: 0 1rem;
}
body main .content__index {
  color: #00277A;
  font-weight: lighter;
  margin: 1rem 0;
}
body main .content__box {
  background-color: #fff;
}
body main .content__box .display--contents {
  display: contents;
}
@media screen and (min-width: 769px ) {
  body main .content__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 0.7fr;
    grid-template-rows: 0.5fr 1fr;
    grid-gap: 0rem;
  }
  body main .content__box__area1 {
    grid-area: 1/1/2/3;
    padding: 3rem 0 2rem 3rem;
  }
  body main .content__box__area2 {
    grid-area: 2/1/4/3;
    padding: 0rem 0rem 3rem 3rem;
  }
  body main .content__box__area3 {
    grid-area: 1/3/4/4;
  }
}
@media screen and (max-width: 768px ) {
  body main .content__box__area1 {
    padding: 2rem 0 0;
  }
}
body main .content__box--p-name {
  margin-bottom: 1rem;
}
body main .content__box--p-explain {
  font-size: var(--size_txt_s);
  margin-bottom: 1rem;
}
body main .content__box--p-link {
  font-size: var(--size_txt_s);
}
body main .content__box__price {
  padding-bottom: 0;
}
body main .content__box__price > *:not(.price_box__btm-txt) {
  margin-bottom: 1.5rem;
}
body main .content__box__price__index {
  background-color: #b5d2ff;
  padding: 0.5rem 0;
}
body main .content__box__price__price {
  font-size: var(--size_txt_xl);
  font-weight: bold;
}
body main .content__box__price__price::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content__box__price__point {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .content__box__price__point::after {
  content: "ポイント";
  font-size: var(--size_txt_s);
}
body main .content__box__price__point__icon::before {
  content: "";
  background-image: url(/~/media/img/common/icon/icon_epoint.svg);
  height: 1.6rem;
  width: 1.6rem;
  display: block;
  background-size: contain;
}
body main .content__box__price__btm-txt.shipment::before {
  content: "送料：490円（ゴールド会員無料）";
  display: block;
}
body main .content__box__price__btm-txt.shipment::after {
  display: block;
  content: "15時までのご注文で即日発送";
}
body main .content__box__price__btm-txt.shipment-free::before {
  content: "送料無料";
  display: block;
}
body main .content__box__price__btm-txt.shipment-free::after {
  display: block;
  content: "15時までのご注文で即日発送";
}
body main .content__box__undertxt ul li {
  font-size: var(--size_txt_s);
}
body main .content__inner-wrap {
  padding: 2rem;
}
body main .content .table_ladder {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  grid-template-rows: repeat(9, 1fr);
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}
body main .content .table_ladder > * {
  background-color: #f5f5f5;
  text-align: center;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .content .table_ladder__row--1-1 {
  grid-area: 1/1/2/2;
}
body main .content .table_ladder__row--1-2 {
  grid-area: 1/2/2/3;
}
body main .content .table_ladder__row--2-1 {
  grid-area: 2/1/3/2;
}
body main .content .table_ladder__row--2-1::before {
  content: "1-2";
}
body main .content .table_ladder__row--2-2 {
  grid-area: 2/2/3/3;
}
body main .content .table_ladder__row--2-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder__row--3-1 {
  grid-area: 3/1/4/2;
}
body main .content .table_ladder__row--3-1::before {
  content: "3-4";
}
body main .content .table_ladder__row--3-2 {
  grid-area: 3/2/4/3;
}
body main .content .table_ladder__row--3-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder__row--4-1 {
  grid-area: 4/1/5/2;
}
body main .content .table_ladder__row--4-1::before {
  content: "5-9";
}
body main .content .table_ladder__row--4-2 {
  grid-area: 4/2/5/3;
}
body main .content .table_ladder__row--4-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder__row--5-1 {
  grid-area: 5/1/6/2;
}
body main .content .table_ladder__row--5-1::before {
  content: "10-49";
}
body main .content .table_ladder__row--5-2 {
  grid-area: 5/2/6/3;
}
body main .content .table_ladder__row--5-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder__row--6-1 {
  grid-area: 6/1/7/2;
}
body main .content .table_ladder__row--6-1::before {
  content: "50-99";
}
body main .content .table_ladder__row--6-2 {
  grid-area: 6/2/7/3;
}
body main .content .table_ladder__row--6-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder__row--7-1 {
  grid-area: 7/1/8/2;
}
body main .content .table_ladder__row--7-1::before {
  content: "100-499";
}
body main .content .table_ladder__row--7-2 {
  grid-area: 7/2/8/3;
}
body main .content .table_ladder__row--7-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder__row--8-1 {
  grid-area: 8/1/9/2;
}
body main .content .table_ladder__row--8-1::before {
  content: "500-999";
}
body main .content .table_ladder__row--8-2 {
  grid-area: 8/2/9/3;
}
body main .content .table_ladder__row--8-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder__row--9-1 {
  grid-area: 9/1/10/2;
}
body main .content .table_ladder__row--9-1::before {
  content: "1,000以上";
}
body main .content .table_ladder__row--9-2 {
  grid-area: 9/2/10/3;
}
body main .content .table_ladder .table-head {
  background-color: #b5d2ff;
}
body main .content .table_ladder_rough {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
}
body main .content .table_ladder_rough > * {
  background-color: #f5f5f5;
  text-align: center;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .content .table_ladder_rough__row--1-1 {
  grid-area: 1/1/2/2;
}
body main .content .table_ladder_rough__row--1-2 {
  grid-area: 1/2/2/3;
}
body main .content .table_ladder_rough__row--2-1 {
  grid-area: 2/1/3/2;
}
body main .content .table_ladder_rough__row--2-1::before {
  content: "1-9";
}
body main .content .table_ladder_rough__row--2-2 {
  grid-area: 2/2/3/3;
}
body main .content .table_ladder_rough__row--2-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder_rough__row--3-1 {
  grid-area: 3/1/4/2;
}
body main .content .table_ladder_rough__row--3-1::before {
  content: "10-49";
}
body main .content .table_ladder_rough__row--3-2 {
  grid-area: 3/2/4/3;
}
body main .content .table_ladder_rough__row--3-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder_rough__row--4-1 {
  grid-area: 4/1/5/2;
}
body main .content .table_ladder_rough__row--4-1::before {
  content: "50-99";
}
body main .content .table_ladder_rough__row--4-2 {
  grid-area: 4/2/5/3;
}
body main .content .table_ladder_rough__row--4-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder_rough__row--5-1 {
  grid-area: 5/1/6/2;
}
body main .content .table_ladder_rough__row--5-1::before {
  content: "100-499";
}
body main .content .table_ladder_rough__row--5-2 {
  grid-area: 5/2/6/3;
}
body main .content .table_ladder_rough__row--5-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder_rough__row--6-1 {
  grid-area: 6/1/7/2;
}
body main .content .table_ladder_rough__row--6-1::before {
  content: "500-999";
}
body main .content .table_ladder_rough__row--6-2 {
  grid-area: 6/2/7/3;
}
body main .content .table_ladder_rough__row--6-2::after {
  content: "円";
  margin-bottom: 0.25rem;
}
body main .content .table_ladder_rough__row--7-1 {
  grid-area: 7/1/8/2;
}
body main .content .table_ladder_rough__row--7-1::before {
  content: "1000台以上";
}
body main .content .table_ladder_rough__row--7-2 {
  grid-area: 7/2/8/3;
}
body main .content .table_ladder_rough .table-head {
  background-color: #b5d2ff;
}
body main .content .ref_license {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body main .content .ref_license__index {
  margin-right: 1rem;
}
body main .content .ref_license__index::before {
  content: "・";
}
body main .content .ref_license__amount {
  margin: 0;
}
@media screen and (min-width: 769px ) {
  body main .content .ref_license__amount {
    min-width: 45%;
  }
}
body main .content .ref_license__amount::after {
  content: "ライセンス";
}
@media screen and (min-width: 769px ) {
  body main .content .license-input {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 768px ) {
  body main .content .license-input {
    padding: 1rem 0;
  }
}
body main .content .license-input__amount {
  margin-top: 1rem;
}
body main .content .license-input__amount input {
  width: 10rem;
  border-radius: var(--radius_m);
  border: 2px solid #707070;
  box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  text-align: right;
}
body main .content .license-input__amount input::-webkit-inner-spin-button, body main .content .license-input__amount input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
body main .content .license-input__amount::after {
  content: "ライセンス";
}
body main .type__hw .ref_license__amount::after {
  content: "台";
}
body main .type__hw [class*=__area3] .license-input__amount::after {
  content: "台";
}
body main .type__set .ref_license__amount::after {
  content: "セット";
}
body main .type__set [class*=__area3] .license-input__amount::after {
  content: "セット";
}
body main .fix_cart {
  margin: 0 calc(50% - 50vw) !important;
  width: 100vw;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  box-shadow: 0 -1px 6px 0 rgba(0, 0, 0, 0.1);
}
body main .fix_cart__index {
  position: relative;
}
@media screen and (max-width: 768px ) {
  body main .fix_cart__index__index {
    font-size: var(--size_txt_s);
  }
}
body main .fix_cart__index a {
  font-size: var(--size_txt_s);
  margin: 1rem 0;
  display: block;
}
body main .fix_cart__upper {
  padding: 1.5rem 0;
  max-width: calc(var(--width_max_pc_m) - 2rem);
  margin: auto !important;
}
body main .fix_cart__mid {
  padding: 0rem 0;
  max-width: calc(var(--width_max_pc_m) - 2rem);
  margin: auto !important;
}
body main .fix_cart__mid label {
  background-color: #f6f7f8;
  padding: 0.75rem 3rem;
}
@media screen and (min-width: 769px ) {
  body main .fix_cart__mid label {
    margin-top: -3rem;
  }
}
body main .fix_cart__mid label::after {
  content: "";
  display: inline-block;
  height: 6px;
  width: 6px;
  border-right: solid 2px;
  border-bottom: solid 2px;
  transform: rotate(45deg) translateY(-10%);
  margin: 0px 0px 0.25rem 0.5rem;
}
body main .fix_cart__under {
  padding: 1.5rem 0;
}
body main .fix_cart__under [class*=grid-] {
  max-width: calc(var(--width_max_pc_m) - 2rem);
  margin: auto !important;
}
body main .fix_cart .cart_item__button {
  width: 22rem;
  margin: auto;
}
body main .fix_cart .cart_item__button::after {
  content: "この内容で決済へ進む";
}
body main .fix_cart__sum {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main .fix_cart__sum p {
  margin: 0.25rem 0;
}
body main .fix_cart__sum--amount {
  display: grid;
  grid-template-columns: 2fr 1fr 0.5fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 25rem;
  font-weight: bold;
  font-size: var(--size_txt_xl);
  text-align: right;
}
body main .fix_cart__sum--amount::before {
  content: "入力した数量";
  display: block;
  font-weight: normal;
  font-size: var(--size_txt_m);
  text-align: left;
}
body main .fix_cart__sum--amount::after {
  content: "点";
  margin-bottom: 0.25rem;
  font-weight: normal;
  font-size: var(--size_txt_m);
  margin: 0 0 0 0.5rem;
  text-align: left;
}
body main .fix_cart__sum--sum_price {
  display: grid;
  grid-template-columns: 2fr 1fr 0.5fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 25rem;
  font-weight: bold;
  font-size: var(--size_txt_xl);
  text-align: right;
}
body main .fix_cart__sum--sum_price::before {
  content: "合計金額";
  min-width: 11rem;
  display: block;
  font-weight: normal;
  font-size: var(--size_txt_m);
  text-align: left;
}
body main .fix_cart__sum--sum_price::after {
  content: "円";
  margin-bottom: 0.25rem;
  font-weight: normal;
  font-size: var(--size_txt_m);
  margin: 0 0 0 0.5rem;
  text-align: left;
}
body main .fix_cart__sum--point {
  display: flex;
  align-items: center;
}
body main .fix_cart__sum--point::before {
  content: "";
  background-image: url(/~/media/img/common/icon/icon_epoint.svg);
  height: 1.6rem;
  width: 1.6rem;
  display: block;
  background-size: contain;
}
body main .fix_cart__sum--point::after {
  content: "ポイント";
  font-size: var(--size_txt_s);
}
body main .fix_cart__sum--btm_txt.shipment {
  text-align: center;
  font-size: var(--size_txt_xs);
}
body main .fix_cart__sum--btm_txt.shipment::before {
  content: "送料：無料";
  display: block;
}
body main .fix_cart__sum--btm_txt.shipment::after {
  display: block;
  content: "15時までのご注文で即日発送";
}
body main .fix_cart__under .fix_cart__estimate__detail {
  margin: 1rem 0;
}
body main .fix_cart__under .fix_cart__estimate__detail--product {
  display: grid;
}
@media screen and (min-width: 769px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product {
    grid-template-columns: 1fr 0.3fr 0.5fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin: 0rem 2rem 1rem;
  }
}
@media screen and (max-width: 768px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media screen and (min-width: 769px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product .p-name {
    grid-area: 1/1/2/2;
  }
}
@media screen and (max-width: 768px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product .p-name {
    grid-area: 1/1/2/3;
  }
}
body main .fix_cart__under .fix_cart__estimate__detail--product .p-name::before {
  content: "・";
}
@media screen and (min-width: 769px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product .p-amount {
    grid-area: 1/2/2/3;
    text-align: center;
  }
}
@media screen and (max-width: 768px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product .p-amount {
    grid-area: 2/1/3/2;
    text-align: right;
  }
}
body main .fix_cart__under .fix_cart__estimate__detail--product .p-amount::after {
  content: "点";
  margin-bottom: 0.25rem;
}
body main .fix_cart__under .fix_cart__estimate__detail--product .p-price {
  text-align: center;
}
@media screen and (min-width: 769px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product .p-price {
    grid-area: 1/3/2/4;
  }
}
@media screen and (max-width: 768px ) {
  body main .fix_cart__under .fix_cart__estimate__detail--product .p-price {
    grid-area: 2/2/3/3;
  }
}
body main .fix_cart__under .fix_cart__estimate__detail--product .p-price::after {
  content: "円";
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 769px ) {
  body main .fix_cart__under .estimate_wrap {
    max-height: 0;
    padding: 0 1rem;
    transition: max-height 0.3s, padding 0.3s;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px ) {
  body main .fix_cart__under .estimate_wrap {
    max-height: 100vh;
    padding: 0 1rem;
  }
}
body main .fix_cart__under .estimate_wrap .estimate__button {
  background-color: #007dce;
  padding: 1rem 4rem;
  border-radius: var(--radius_m);
  border: none;
  color: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  display: block;
  margin: auto;
  width: 22rem;
}
@media screen and (min-width: 769px ) {
  body main .fix_cart__under #fix_cart__estimate:checked ~ .estimate_wrap {
    max-height: 100vh;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 768px ) {
  body main .fix_cart__under #fix_cart__estimate:checked ~ .estimate_wrap {
    max-height: 0;
    padding: 0 1rem;
    transition: max-height 0.3s, padding 0.3s;
    overflow: hidden;
  }
}