@charset "utf-8";

/* カート */

.block-order-flow ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.block-order-flow .list-no {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 38px;
  height: 38px;
  margin: 0 auto;
  border-radius: 38px;
  background-color: #eaf3ea;
  color: #999999;
  font-size: 1.4rem;
  font-family: var(--ff-num);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.block-order-flow .is-active .list-no {
  background-color: var(--cl-gn);
  color: #ffffff;
}

.block-order-flow li + li .list-no::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: var(--cl-gr-1);
}

.block-order-flow .list-ttl {
  color: #999999;
  text-align: center;
}

.block-order-flow .is-active .list-ttl {
  color: var(--cl-bk);
}

.blck-order h1 {
  padding: 0;
  font-family: var(--ff-serif);
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}

.ttl-h2-confirm {
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.block-order-top-message {
  font-size: 1.6rem;
}

.block-order-top-message .error {
  color: var(--cl-rd);
}

.block-order-top-message-coupon {
  color: var(--cl-rd);
  font-weight: 700;
}

@media all and (min-width: 768px) {
  .blck-order {
    width: 1140px;
    margin: 0 auto;
  }

  .block-order-flow {
    margin-top: 40px;
  }

  .block-order-flow li {
    width: 160px;
  }

  .block-order-flow li + li {
    margin-left: 78px;
  }

  .block-order-flow li + li .list-no::before {
    left: -190px;
    width: 180px;
  }

  .block-order-flow .list-ttl {
    margin-top: 18px;
    font-size: 1.6rem;
  }

  .blck-order h1 {
    margin: 64px 0;
    font-size: 3.4rem;
  }

  .ttl-h2-confirm {
    font-size: 2.8rem;
  }

  .block-order-top-message {
    margin-top: 46px;
    line-height: 1.875;
  }

  .block-order-top-message p + p.error {
    margin-top: 5px;
  }

  .block-order-top-message-coupon {
    margin: 43px 0 -16px;
  }
}

@media all and (max-width: 767px) {
  .block-order-flow {
    margin-top: 40px;
  }

  .block-order-flow li {
    width: 87px;
  }

  .block-order-flow li + li .list-no::before {
    left: -44px;
    width: 39px;
  }

  .block-order-flow .list-ttl {
    margin-top: 11px;
    font-size: 1.5rem;
    line-height: 1.466;
  }

  .blck-order h1 {
    margin: 32px 0 40px;
    font-size: 2.8rem;
  }

  .ttl-h2-confirm {
    font-size: 2.2rem;
  }

  .block-order-top-message {
    margin-top: 38px;
    line-height: 1.5;
  }

  .block-order-top-message p + p.error {
    margin-top: 4px;
  }

  .block-order-top-message-coupon {
    margin: 16px 0 0;
  }
}

.block-order-cart-tbl .item-prod_name .item-icon {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -5px 0 0;
}

.block-order-cart-tbl .item-prod_name .item-icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin: 5px 5px 0 0;
  padding: 0 5px 0 6px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.block-order-cart-tbl .item-prod_name .item-icon span.cl-rd {
  border: 1px solid var(--cl-rd);
  color: var(--cl-rd);
}

.block-order-cart-tbl .item-prod_name .item-icon span.cl-gn {
  border: 1px solid var(--cl-gn);
  color: var(--cl-gn);
}

.block-order-cart-tbl .tbl-delete button {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #999999;
  font-size: 1.3rem;
  cursor: pointer;
}

.block-order-cart-tbl .tbl-delete button::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 17px;
  height: 17px;
  margin-right: 5px;
  background-image: url(../../img/common/icon_delete.png);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .block-order-cart-tbl {
    width: 1100px;
    margin: 38px auto 0;
  }

  .block-order-cart-tbl table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
  }

  .block-order-cart-tbl thead th {
    height: 56px;
    font-size: 1.6rem;
    font-weight: 700;
    border-bottom: 1px solid var(--cl-gr-1);
    background-color: var(--cl-gn-bg);
    vertical-align: middle;
  }

  .block-order-cart-tbl tbody td {
    padding: 24px 0;
    border-bottom: 1px solid var(--cl-gr-1);
  }

  .block-order-cart-tbl thead th:nth-child(1),
  .block-order-cart-tbl tbody td:nth-child(1) {
    width: 556px;
    padding-right: 26px;
    padding-left: 20px;
  }

  .block-order-cart-tbl.tbl-confirm thead th:nth-child(1),
  .block-order-cart-tbl.tbl-confirm tbody td:nth-child(1) {
    width: 497px;
  }

  .block-order-cart-tbl thead th:nth-child(2),
  .block-order-cart-tbl tbody td:nth-child(2),
  .block-order-cart-tbl thead th:nth-child(3),
  .block-order-cart-tbl tbody td:nth-child(3) {
    width: 130px;
    padding-right: 30px;
  }

  .block-order-cart-tbl thead th:nth-child(4),
  .block-order-cart-tbl tbody td:nth-child(4) {
    width: 170px;
    padding-right: 50px;
  }

  .block-order-cart-tbl.tbl-confirm thead th:nth-child(4),
  .block-order-cart-tbl.tbl-confirm tbody td:nth-child(4) {
    width: 190px;
  }

  .block-order-cart-tbl thead th:nth-child(5),
  .block-order-cart-tbl tbody td:nth-child(5) {
    width: 114px;
  }

  .block-order-cart-tbl.tbl-confirm thead th:nth-child(5),
  .block-order-cart-tbl.tbl-confirm tbody td:nth-child(5) {
    width: 153px;
  }

  .block-order-cart-tbl thead th:nth-child(6),
  .block-order-cart-tbl tbody td:nth-child(6) {
    width: 65px;
  }

  .block-order-cart-tbl thead th .tax {
    font-size: 1.2rem;
  }

  .block-order-cart-tbl .item-prod_name {
    display: flex;
  }

  .block-order-cart-tbl .item-prod_name .item-img {
    width: 120px;
  }

  .block-order-cart-tbl .item-prod_name .item-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .block-order-cart-tbl .item-prod_name .item-icon_name {
    width: calc(100% - 120px);
    padding-left: 24px;
  }

  .block-order-cart-tbl .item-prod_name .item-name {
    font-size: 1.6rem;
    line-height: 1.625;
  }

  .block-order-cart-tbl .item-prod_name .item-icon + .item-name {
    margin-top: 14px;
  }

  .block-order-cart-tbl .item-prod_name .item-second_price {
    margin-top: 8px;
    color: var(--cl-rd);
    font-size: 1.6rem;
    font-family: var(--ff-num);
    font-weight: 500;

    .tax {
      font-size: 1.2rem;
    }
  }

  .block-order-cart-tbl .item-price {
    display: flex;
  }

  .block-order-cart-tbl .item-qty-num {
    display: flex;
    justify-content: center;
    width: 2em;
    font-family: var(--ff-num);
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.04em;
  }

  .block-order-cart-tbl .item-cycle-num {
    font-family: var(--ff-num);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.04em;
  }

  .block-order-cart-tbl .item-price-body {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.6rem;
    font-family: var(--ff-num);
    font-weight: 500;
    text-align: right;
    letter-spacing: 0.04em;
  }

  .block-order-cart-tbl .item-price-default {
    position: relative;
  }

  .block-order-cart-tbl .item-price-default::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--cl-rd);
  }

  .block-order-cart-tbl .item-price-sale {
    position: relative;
    color: var(--cl-rd);
  }

  .block-order-cart-tbl .item-price-sale::before {
    content: "→";
    margin-right: 5px;
  }

  .block-order-cart-tbl .item-qty select,
  .block-order-cart-tbl .item-cycle select {
    width: 100px;
    height: 40px;
    padding: 0 29px 0 0;
    border: 1px solid var(--cl-gr-1);
    border-radius: 0;
    background-image: url(../../img/common/arw_select.png);
    background-position: center right 18px;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    font-size: 1.4rem;
    font-family: var(--ff-num);
    font-weight: 300;
    text-align: center;
  }

  .block-order-cart-tbl .item-cycle select {
    width: 120px;
  }

  .block-order-cart-tbl .item-cycle-empty {
    position: relative;
    text-indent: -999999px;
  }

  .block-order-cart-tbl .item-cycle-empty::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 1px;
    background-color: var(--cl-bk);
  }

  .block-order-cart-tbl .item-subtotal {
    font-size: 1.6rem;
    font-family: var(--ff-num);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .block-order-cart-tbl .tbl-delete button {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    color: #999999;
    font-size: 1.3rem;
    cursor: pointer;
  }

  .block-order-cart-tbl .tbl-delete button::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 17px;
    height: 17px;
    margin-right: 5px;
    background-image: url(../../img/common/icon_delete.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media all and (max-width: 767px) {
  .block-order-cart-tbl {
    margin: 40px -20px 0;
    border-top: 1px solid var(--cl-gr-1);
  }

  .block-order-cart-tbl table,
  .block-order-cart-tbl tbody,
  .block-order-cart-tbl tr,
  .block-order-cart-tbl td {
    display: block;
  }

  .block-order-cart-tbl .item-prod_name {
    display: flex;
    padding: 16px 20px 0;
  }

  .block-order-cart-tbl .item-img {
    width: 70px;
  }

  .block-order-cart-tbl .item-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .block-order-cart-tbl .item-icon_name {
    width: calc(100% - 70px);
    padding-left: 16px;
  }

  .block-order-cart-tbl .item-name {
    font-size: 1.6rem;
    font-weight: 500;
  }

  .block-order-cart-tbl .item-icon + .item-name {
    margin-top: 8px;
  }

  .block-order-cart-tbl .item-prod_name .item-second_price {
    margin-top: 6px;
    color: var(--cl-rd);
    font-size: 1.6rem;
    font-family: var(--ff-num);
    font-weight: 500;

    .tax {
      font-size: 1.2rem;
    }
  }

  .block-order-cart-tbl .item-price-body {
    display: flex;
    align-items: center;
    margin-top: 5px;
    font-family: var(--ff-num);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .block-order-cart-tbl .item-price-default {
    position: relative;
  }

  .block-order-cart-tbl .item-price-default::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--cl-rd);
  }

  .block-order-cart-tbl .item-price-sale {
    position: relative;
    margin-left: 5px;
    color: var(--cl-rd);
  }

  .block-order-cart-tbl .item-price-sale::before {
    content: "→";
    margin-right: 5px;
  }

  .block-order-cart-tbl .tbl-qty {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-start;
    padding: 7px 20px 0 20px;
  }

  .block-order-cart-tbl.tbl-confirm .tbl-qty {
    padding: 9px 20px 0 20px;
  }

  .block-order-cart-tbl .item-qty,
  .block-order-cart-tbl .item-cycle {
    display: flex;
    align-items: center;
    height: 35px;
  }

  .block-order-cart-tbl .item-qty {
    margin-left: 10px;
  }

  .block-order-cart-tbl.tbl-confirm .item-qty,
  .block-order-cart-tbl.tbl-confirm .item-cycle {
    height: auto;
  }

  .block-order-cart-tbl .tbl-cycle {
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
  }

  .block-order-cart-tbl.tbl-confirm .tbl-cycle {
    margin-left: 20px;
  }

  .block-order-cart-tbl .item-qty dt,
  .block-order-cart-tbl .item-cycle dt {
    margin-right: 3px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .block-order-cart-tbl .item-qty select,
  .block-order-cart-tbl .item-cycle select {
    width: 50px;
    height: 35px;
    padding: 0 17px 0 0;
    border: 1px solid var(--cl-gr-1);
    border-radius: 0;
    background-image: url(../../img/common/arw_select.png);
    background-position: center right 9px;
    background-repeat: no-repeat;
    background-size: 7px 4px;
    font-size: 1.3rem;
    font-family: var(--ff-num);
    font-weight: 300;
    text-align: center;
  }

  .block-order-cart-tbl .item-cycle select {
    width: 90px;
  }

  .block-order-cart-tbl.tbl-confirm .item-qty .item-qty-num,
  .block-order-cart-tbl.tbl-confirm .item-cycle .item-cycle-num {
    font-size: 1.4rem;
    font-family: var(--ff-num);
    font-weight: 300;
    letter-spacing: 0.04em;
  }

  .block-order-cart-tbl .tbl-delete {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 42px;
    padding: 7px 20px 0 0;
  }

  .block-order-cart-tbl .tbl-subtotal {
    margin-top: 10px;
    border-bottom: 1px solid var(--cl-gr-1);
    background-color: var(--cl-gn-bg);
  }

  .block-order-cart-tbl .item-subtotal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40px;
    padding: 2px 20px 0;
  }

  .block-order-cart-tbl .item-subtotal dt {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .block-order-cart-tbl .item-subtotal dt .tax {
    font-size: 1rem;
    font-weight: 500;
  }

  .block-order-cart-tbl .item-subtotal dd {
    margin-left: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: var(--ff-num);
    letter-spacing: 0.04em;
  }
}

/* ログイン */

.block-login-content-item {
  border: 1px solid var(--cl-gr-1);
}

.block-login-content-item h2 {
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.block-login-onlinestore-form .form-item dt {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}

.block-login-onlinestore-form .form-item dt::after {
  content: "必須";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 34px;
  height: 20px;
  margin-top: -10px;
  background-color: var(--cl-rd);
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.block-login-onlinestore-form .form-item dd input[type="text"],
.block-login-onlinestore-form .form-item dd input[type="password"] {
  width: 100%;
}

.block-login-onlinestore-form .item-show_password input[type="checkbox"] + label {
  font-weight: 400;
}

.block-login-forget_password {
  text-align: center;
}

.block-login-forget_password a {
  text-decoration: underline;
}

.block-login-btn a {
  font-size: 2rem;
}

@media all and (min-width: 768px) {
  .block-login {
    margin-top: 120px;
  }

  .block-login-content {
    display: flex;
    justify-content: space-between;
  }

  .block-login-content-item {
    width: 620px;
    padding: 60px 40px;
  }

  .block-login-content-item h2 {
    font-size: 2.4rem;
    text-align: center;
    line-height: 1.2;
  }

  .block-login-onlinestore-form {
    margin-top: 50px;
  }

  .block-login-onlinestore-form .form-item {
    display: flex;
  }

  .block-login-onlinestore-form .form-item + .form-item {
    margin-top: 16px;
  }

  .block-login-onlinestore-form .form-item dt {
    display: flex;
    align-items: center;
    width: 250px;
    height: 50px;
  }

  .block-login-onlinestore-form .form-item dd {
    width: calc(100% - 250px);
    padding-left: 16px;
  }

  .block-login-onlinestore-form .form-item dd input[type="text"],
  .block-login-onlinestore-form .form-item dd input[type="password"] {
    height: 50px;
    padding: 0 20px;
  }

  .block-login-onlinestore-form .item-show_password {
    margin-top: 16px;
  }

  .block-login-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .block-login-forget_password {
    margin-top: 16px;
  }

  .block-login-firsttime-message {
    margin-top: 40px;
    line-height: 1.625;
  }
}

@media all and (max-width: 767px) {
  .block-login {
    margin-top: 48px;
  }

  .block-login-content-item {
    padding: 23px 15px;
  }

  .block-login-content-item + .block-login-content-item {
    margin-top: 24px;
  }

  .block-login-content-item h2 {
    font-size: 2.2rem;
    line-height: 1.454;
  }

  .block-login-onlinestore-form {
    margin-top: 24px;
  }

  .block-login-onlinestore-form .form-item + .form-item {
    margin-top: 24px;
  }

  .block-login-onlinestore-form .form-item dd {
    margin-top: 12px;
  }

  .block-login-onlinestore-form .form-item dd input[type="text"],
  .block-login-onlinestore-form .form-item dd input[type="password"] {
    height: 48px;
    padding: 0 16px;
  }

  .block-login-onlinestore-form .item-show_password {
    margin-top: 10px;
  }

  .block-login-btn {
    margin-top: 24px;
  }

  .block-login-forget_password {
    margin-top: 20px;
  }

  .block-login-firsttime-message {
    margin-top: 32px;
  }
}

/* LP */

.block-lp_login-mv-1 {
  position: relative;

  .item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .item-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;

    .item-comment {
      font-size: 1.8rem;
      line-height: 1.666;
    }

    .item-btns {
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}

.block-lp_login-mv-2 {
  .item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .item-detail {
    .item-subttl {
      font-size: 2rem;
    }

    h1 {
      font-family: var(--ff-serif);
      font-weight: 400;
    }
  }
}

.block-lp_login-mv-3 {
  position: relative;

  .item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .item-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    h1 {
      font-family: var(--ff-serif);
      font-weight: 400;
    }

    .item-comment {
      font-size: 1.8rem;
      line-height: 1.666;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-mv-1,
  .block-lp_login-mv-2,
  .block-lp_login-mv-3 {
    margin-top: 94px;
  }

  .block-lp_login-mv-1 {
    .item-detail {
      .ttl-h1 {
        margin-bottom: 38px;
      }

      .item-btns {
        margin-top: 58px;

        li + li {
          margin-left: 24px;
        }

        a {
          width: 240px;
        }
      }
    }
  }

  .block-lp_login-mv-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .item-img {
      width: 600px;
    }

    .item-detail {
      width: 570px;

      h1 {
        margin: 20px 0 0;
        padding: 0;
        font-size: 6rem;
        line-height: 1.166;
      }

      .item-btn {
        margin-top: 60px;

        a {
          width: 240px;
          font-size: 1.8rem;
        }
      }
    }
  }

  .block-lp_login-mv-3 {
    .item-detail {
      width: 500px;
      padding: 0 0 0 100px;

      h1 {
        font-size: 4rem;
      }

      .item-comment {
        margin-top: 28px;
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-mv-1,
  .block-lp_login-mv-2,
  .block-lp_login-mv-3 {
    margin: 0 -20px;
  }

  .block-lp_login-mv-1:not(:first-child),
  .block-lp_login-mv-2:not(:first-child),
  .block-lp_login-mv-3:not(:first-child) {
    margin-top: 80px;
  }

  .block-lp_login-mv-1 {
    .item-detail {
      padding: 0 20px;

      .ttl-h1 {
        margin-bottom: 22px;
      }

      .item-btns {
        width: 100%;
        margin-top: 34px;

        li {
          width: calc((100% - 10px) / 2);
        }

        li + li {
          margin-left: 10px;
        }

        a {
          height: 50px;
          font-size: 1.8rem;
        }
      }
    }
  }

  .block-lp_login-mv-2 {
    .item-detail {
      margin-top: 26px;
      padding: 0 20px;

      h1 {
        margin: 9px 0 0;
        padding: 0;
        font-size: 3.6rem;
        line-height: 1.388;
        letter-spacing: 0.04em;
      }

      .item-btn {
        margin-top: 26px;

        a {
          height: 56px;
          font-size: 1.8rem;
        }
      }
    }
  }

  .block-lp_login-mv-3 {
    align-items: center;
    text-align: center;

    .item-detail {
      h1 {
        font-size: 2.8rem;
        line-height: 1.571;
      }

      .item-comment {
        margin-top: 12px;
        padding: 0 20px;
      }
    }
  }
}

.block-lp_login-vrt-box-1 {
  .item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }

  .item-detail {
    .item-ttl {
      font-weight: 700;
    }

    .item-comment {
      font-size: 1.8rem;
      line-height: 1.6666;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-vrt-box-1 {
    display: flex;
    justify-content: space-between;

    .item-img {
      width: 400px;
    }

    .item-detail {
      width: calc(100% - 464px);

      .item-ttl {
        font-size: 2.8rem;

        .txt-s {
          font-size: 1.8rem;
        }
      }

      .item-comment {
        margin-top: 25px;
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-vrt-box-1 {
    .item-detail {
      margin-top: 20px;

      .item-ttl {
        font-size: 2.4rem;

        .txt-s {
          font-size: 1.8rem;
        }
      }

      .item-comment {
        margin-top: 13px;
      }
    }
  }
}

.block-lp_login-circle-list-3 {
  .list-img {
    width: 300px;
    margin: 0 auto;

    img {
      display: block;
      height: 300px;
      border-radius: 300px;
    }
  }

  .list-ttl {
    margin-top: 33px;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
  }

  .list-comment {
    margin-top: 18px;
    font-size: 1.8rem;
    line-height: 1.666;
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-circle-list-3 {
    ul {
      display: flex;
      justify-content: center;

      li {
        width: calc((100% / 128px) / 3);

        &:not(:nth-child(3n)) {
          margin-right: 64px;
        }
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-circle-list-3 {
    li + li {
      margin-top: 60px;
    }
  }
}

.block-lp_login-circle-list-4,
.block-lp_login-circle-list-5 {
  ul {
    display: flex;
    justify-content: center;

    li {
      position: relative;

      .list-img {
        img {
          display: block;
        }
      }

      .list-ttl {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-weight: 700;
        text-align: center;
      }
    }
  }
}

.block-lp_login-circle-list-4,
.block-lp_login-circle-list-5 {
  h2 {
    font-weight: 400;
    text-align: center;
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-circle-list-4,
  .block-lp_login-circle-list-5 {
    h2 {
      margin-bottom: 46px;
      font-size: 2.8rem;
    }
  }

  .block-lp_login-circle-list-4 {
    ul {
      li {
        width: 290px;

        &:not(:nth-child(4n)) {
          margin-right: 40px;
        }

        .list-img {
          img {
            width: 290px;
            height: 290px;
            border-radius: 290px;
          }
        }

        .list-ttl {
          font-size: 2.4rem;
        }
      }
    }
  }

  .block-lp_login-circle-list-5 {
    ul {
      li {
        width: 216px;

        &:not(:nth-child(5n)) {
          margin-right: 50px;
        }

        .list-img {
          img {
            width: 216px;
            height: 216px;
            border-radius: 216px;
          }
        }

        .list-ttl {
          font-size: 2rem;
        }
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-circle-list-4,
  .block-lp_login-circle-list-5 {
    h2 {
      margin-bottom: 30px;
      font-size: 2.6rem;
    }

    ul {
      flex-wrap: wrap;

      li {
        width: calc((100vw - 56px) / 2);

        &:not(:nth-child(2n)) {
          margin-right: 16px;
        }

        &:not(:nth-child(-n + 2)) {
          margin-top: 16px;
        }

        .list-img {
          img {
            width: calc((100vw - 56px) / 2);
            height: calc((100vw - 56px) / 2);
            border-radius: calc((100vw - 56px) / 2);
          }
        }

        .list-ttl {
          font-size: 2rem;
        }
      }
    }
  }
}

.block-lp_login-img-ttl {
  display: flex;

  .item-detail {
    text-align: center;

    .item-ttl {
      font-family: var(--ff-serif);
    }
  }

  .item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-img-ttl {
    align-items: center;
    justify-content: center;

    .item-detail {
      width: 580px;

      .item-subttl {
        font-size: 2rem;
      }

      .item-ttl {
        margin-top: 13px;
        font-size: 5rem;
      }
    }

    .item-img {
      width: 700px;
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-img-ttl {
    flex-direction: column-reverse;

    .item-detail {
      margin-top: 16px;

      .item-subttl {
        font-size: 1.8rem;
      }

      .item-ttl {
        margin-top: 4px;
        font-size: 3.4rem;
      }
    }
  }
}

.block-lp_login-point-box-list-items {
  > li {
    position: relative;
    border: 1px solid var(--cl-gr-1);

    .list-point {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -1px;
      left: -1px;
      background-color: var(--cl-gn);
      color: #ffffff;
      font-weight: 700;

      span {
        font-family: var(--ff-num);
        font-weight: 600;
        letter-spacing: 0.04em;
      }
    }

    .list-ttl {
      font-weight: 700;
      text-align: center;

      sup {
        font-size: 60%;
        vertical-align: super;
      }
    }

    .list-img img {
      display: block;
      width: 100%;
      height: auto;
    }

    .list-note {
      margin-top: 10px;
      color: var(--cl-gr-txt);
      font-size: 1.4rem;
      line-height: 1.571;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-point-box-list-items {
    display: flex;

    > li {
      width: calc((100% - 32px) / 3);
      padding: 64px 23px 23px;

      &:not(:nth-child(3n)) {
        margin-right: 16px;
      }

      &:not(:nth-child(-n + 3)) {
        margin-top: 16px;
      }

      .list-point {
        width: 130px;
        height: 40px;
        font-size: 1.4rem;

        span {
          margin-left: 10px;
          font-size: 1.8rem;
        }
      }

      .list-ttl {
        padding: 0 16px;
        font-size: 2.4rem;
        line-height: 1.416;
      }

      .list-comment {
        margin-top: 18px;
        padding: 0 16px;
        font-size: 1.8rem;
        line-height: 1.666;
      }

      .list-img {
        margin-top: 20px;
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-point-box-list-items {
    > li {
      padding: 50px 15px 15px;

      &:not(:nth-child(-n + 1)) {
        margin-top: 24px;
      }

      .list-point {
        width: 100px;
        height: 34px;
        font-size: 1.3rem;

        span {
          margin-left: 8px;
          font-size: 1.6rem;
        }
      }

      .list-ttl {
        font-size: 2rem;
        line-height: 1.444;
      }

      .list-comment {
        margin-top: 16px;
        font-size: 1.6rem;
      }

      .list-img {
        margin-top: 16px;
      }
    }
  }
}

.block-lp_login-vrt-box-2 {
  .item-ttl {
    font-weight: 700;
  }

  .item-img {
    figure {
      display: block;
      margin: 0;
      padding: 0;

      img {
        display: block;
        width: 100%;
        height: auto;
      }
    }

    figcaption {
      margin-top: 12px;
      font-size: 1.4rem;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-vrt-box-2 {
    display: flex;
    justify-content: space-between;

    .item-detail {
      width: 816px;

      .item-ttl {
        font-size: 2.8rem;
      }

      .item-comment {
        margin-top: 20px;
        font-size: 1.8rem;
        line-height: 1.666;
      }
    }

    .item-img {
      width: 400px;
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-vrt-box-2 {
    .item-detail {
      .item-ttl {
        font-size: 2.4rem;
      }

      .item-comment {
        margin-top: 14px;
        font-size: 1.6rem;
        line-height: 1.5;
      }
    }

    .item-img {
      margin-top: 20px;
    }
  }
}

.block-lp_login-catch-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  p {
    color: var(--cl-rd);
    font-size: 1.8rem;
    font-weight: 700;
  }

  a {
    height: 60px;
    font-size: 2rem;
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-catch-btn {
    p {
      margin-bottom: 14px;
    }

    a {
      width: 440px;
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-catch-btn {
    p {
      margin-bottom: 10px;
    }
  }
}

.block-lp_login-vrt-box-3 {
  display: flex;

  .item-img {
    img {
      display: block;
      width: 100%;
      height: auto;
    }

    .item-annotation {
      color: var(--cl-gr-txt);
      font-size: 1.4rem;
    }
  }

  .item-detail {
    .item-subttl {
      text-align: center;
    }

    .item-ttl {
      font-family: var(--ff-serif);
      font-weight: 400;
      text-align: center;
    }

    .item-circle {
      display: flex;
      justify-content: center;

      li {
        figure {
          position: relative;
          margin: 0;
          padding: 0;

          img {
            display: block;
          }

          figcaption {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            font-weight: 700;
            text-align: center;
          }
        }
      }
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-vrt-box-3 {
    justify-content: space-between;

    .item-img {
      width: 700px;

      .item-annotation {
        margin-top: 12px;
      }
    }

    .item-detail {
      width: 524px;

      .item-subttl {
        font-size: 2rem;
      }

      .item-ttl {
        margin-top: 12px;
        font-size: 5rem;
      }

      .item-circle {
        margin-top: 28px;

        li {
          width: 156px;

          &:not(:nth-child(3n)) {
            margin-right: 28px;
          }

          figure {
            img {
              width: 156px;
              height: 156px;
              border-radius: 156px;
            }

            figcaption {
              font-size: 1.6rem;
            }
          }
        }
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-vrt-box-3 {
    flex-direction: column-reverse;

    .item-img {
      margin-top: 24px;
      .item-annotation {
        margin-top: 10px;
      }
    }

    .item-detail {
      .item-subttl {
        font-size: 1.8rem;
      }

      .item-ttl {
        margin-top: 6px;
        font-size: 3.4rem;
      }

      .item-circle {
        flex-wrap: wrap;
        margin-top: 18px;

        li {
          &:not(:nth-child(2n)) {
            margin-right: 16px;
          }

          &:not(:nth-child(-n + 2)) {
            margin-top: 16px;
          }

          figure {
            img {
              width: calc((100vw - 56px) / 2);
              height: calc((100vw - 56px) / 2);
              border-radius: calc((100vw - 56px) / 2);
            }

            figcaption {
              font-size: 1.8rem;
            }
          }
        }
      }
    }
  }
}

.block-lp_login-goods_set-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--cl-gn);
  color: #ffffff;

  &::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 37px;
    height: 32px;
    margin-left: -18px;
    background-color: var(--cl-gn);
    clip-path: polygon(50% 32px, 0% 0%, 37px 0%);
  }

  dl {
    display: flex;
    align-items: center;

    dt {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background-color: #ffffff;
      color: var(--cl-gn);
      font-weight: 700;
      text-align: center;
      line-height: 1.375;
      letter-spacing: 0.04em;

      &::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: -7px;
        width: 15px;
        height: 20px;
        margin-top: -10px;
        background-color: #ffffff;
        clip-path: polygon(15px 50%, 0% 0%, 0% 20px);
      }

      span {
        font-family: var(--ff-num);
        font-weight: 600;
      }
    }

    dd.ff-ja {
      font-family: var(--ff-serif);
      font-weight: 600;
    }

    dd.ff-en {
      font-family: var(--ff-num);
      font-weight: 600;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-goods_set-ttl {
    min-height: 110px;
    padding: 25px 0;

    dl {
      height: 60px;

      dt {
        height: 60px;
        font-size: 1.6rem;

        &.balloon-s {
          width: 157px;
          margin-right: 17px;
        }

        &.balloon-l {
          width: 200px;
          margin-right: 38px;
          font-size: 2rem;

          &::before {
            right: -14px;
          }
        }

        span {
          font-size: 1.8rem;
        }
      }

      dd {
        &.ff-ja {
          font-size: 6rem;

          .txt-s {
            font-size: 5rem;
          }
        }

        &.ff-en {
          .num {
            font-size: 7.2rem;
            letter-spacing: 0;
          }

          .percent {
            font-size: 4rem;
            letter-spacing: 0;
          }

          .off {
            margin-left: 4px;
            font-size: 5rem;
            letter-spacing: 0.04em;
          }
        }
      }
    }

    dl + dl {
      margin-left: 80px;
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-goods_set-ttl {
    flex-direction: column;
    padding: 16px 0;

    dl {
      height: 48px;

      dt {
        position: relative;
        width: 122px;
        height: 48px;
        margin-right: 17px;
        font-size: 1.3rem;
        line-height: 1.2;

        &.balloon-l {
          width: 84px;
        }

        span {
          font-size: 1.5rem;
        }
      }

      dd {
        line-height: 1.2;

        &.ff-ja {
          font-size: 4.2rem;

          .txt-s {
            font-size: 3rem;
          }
        }

        &.ff-ja.long-word {
          font-size: 3rem;
          letter-spacing: 0.04em;

          .txt-s {
            font-size: 2.2rem;
          }
        }

        &.ff-en {
          .num {
            font-size: 5rem;
            letter-spacing: 0;
          }

          .percent {
            font-size: 2.6rem;
            letter-spacing: 0;
          }

          .off {
            margin-left: 2px;
            font-size: 3.4rem;
            letter-spacing: 0.04em;
          }
        }
      }
    }

    dl + dl {
      margin-top: 16px;
    }
  }
}

.block-lp_login-goods_set-box {
  border: 1px solid var(--cl-gr-1);
  background-color: #ffffff;
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.1));

  .item-goods {
    .item-img img {
      display: block;
      width: 100%;
      height: auto;
    }

    .item-icon {
      display: flex;
      flex-wrap: wrap;
      margin: -5px -5px 0 0;

      li {
        margin: 5px 5px 0 0;

        span {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 22px;
          padding: 0 6px;
          border: 1px solid #6c7a56;
          color: var(--cl-gn);
          font-size: 1.3rem;
          line-height: 1;
          letter-spacing: 0.04em;
        }
      }
    }

    .item-name {
      font-weight: 700;
    }

    .item-contents,
    .item-caution {
      color: var(--cl-gr-txt);
    }

    .item-contents {
      font-family: var(--ff-num);
    }

    .item-price {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      color: var(--cl-rd);
      font-family: var(--ff-num);
      letter-spacing: 0.04em;

      dt {
        font-weight: 700;
      }

      dd {
        font-weight: 500;

        .tax {
          font-weight: 700;
          letter-spacing: 0.1em;
        }
      }
    }

    .item-default-price {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      font-family: var(--ff-num);
      line-height: 1.33;
      letter-spacing: 0.04em;

      dd {
        position: relative;

        &::before {
          content: "";
          display: block;
          position: absolute;
          top: 50%;
          left: 0;
          width: 100%;
          height: 1px;
          background-color: var(--cl-bk);
        }

        .tax {
          letter-spacing: 0.1em;
        }
      }
    }
  }

  .item-present {
    position: relative;
    background-color: var(--cl-gn-bg);

    .item-present-icon {
      position: absolute;

      &::before,
      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        background-color: var(--cl-gn);
      }

      &::after {
        transform: rotate(90deg);
      }
    }

    .item-present-ttl {
      font-family: var(--ff-serif);
      font-weight: 400;
      text-align: center;
    }

    .item-present-list {
      .item-present-list-img img {
        display: block;
      }

      .item-present-list-ttl {
        font-weight: 700;
        text-align: center;
      }
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-goods_set-box {
    margin-top: 32px;
    padding: 39px;

    .item-goods {
      display: flex;
      justify-content: space-between;
      padding: 0 23px 0 23px;

      .item-img {
        width: 420px;
      }

      .item-detail {
        width: 652px;
        padding-top: 24px;

        .item-name {
          margin-top: 17px;
          font-size: 3rem;
        }

        .item-contents {
          margin-top: 14px;
        }
      }

      .item-price {
        dt {
          font-size: 2rem;
        }

        dd {
          margin-left: 20px;
          font-size: 3.4rem;

          .tax {
            margin-left: -3px;
            font-size: 1.2rem;
          }
        }
      }

      .item-default-price {
        dt {
          font-size: 1.8rem;
        }

        dd {
          margin-left: 10px;
          font-size: 1.8rem;

          .tax {
            margin-left: -2px;
            font-size: 1rem;
          }
        }
      }

      .item-comment {
        margin-top: 32px;
        font-size: 1.8rem;
        line-height: 1.444;
      }

      .item-caution {
        margin-top: 28px;
        font-size: 1.4rem;
      }
    }

    .item-present {
      margin-top: 40px;
      padding: 54px 80px 60px;

      .item-present-icon {
        position: absolute;
        top: -18px;
        left: 50%;
        width: 36px;
        height: 36px;
        margin-left: -18px;

        &::before,
        &::after {
          top: 50%;
          width: 36px;
          height: 6px;
          margin-top: -3px;
          background-color: var(--cl-gn);
        }
      }

      .item-present-ttl {
        font-size: 3rem;
      }

      .item-present-list {
        display: flex;
        justify-content: space-between;
        margin-top: 38px;

        > li {
          width: 320px;

          .item-present-list-img {
            width: 200px;
            margin: 0 auto;

            img {
              width: 200px;
              height: 200px;
              border-radius: 200px;
            }
          }

          .item-present-list-detail {
            margin-top: 28px;
          }

          .item-present-list-ttl {
            font-size: 2.2rem;
            line-height: 1.363;
          }

          .item-present-list-comment {
            margin-top: 10px;
            font-size: 1.8rem;
            line-height: 1.666;
          }
        }
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-goods_set-box {
    margin-top: 32px;
    padding: 15px;

    .item-goods {
      .list-img {
        padding: 0 20px;
      }

      .item-detail {
        margin-top: 16px;
      }

      .item-name {
        margin-top: 10px;
        font-size: 2.4rem;
      }

      .item-contents {
        margin-top: 6px;
        font-size: 1.4rem;
      }

      .item-price {
        dt {
          font-size: 1.5rem;
        }

        dd {
          margin-left: 10px;
          font-size: 3rem;

          .tax {
            margin-left: -3px;
            font-size: 1rem;
          }
        }
      }

      .item-default-price {
        dt {
          font-size: 1.4rem;
        }

        dd {
          margin-left: 10px;
          font-size: 1.6rem;

          .tax {
            margin-left: -2px;
            font-size: 1rem;
          }
        }
      }

      .item-comment {
        margin-top: 16px;
        line-height: 1.444;
      }

      .item-caution {
        margin-top: 10px;
        font-size: 1.3rem;
      }
    }

    .item-present {
      margin-top: 30px;
      padding: 30px 16px 24px;

      .item-present-icon {
        position: absolute;
        top: -13px;
        left: 50%;
        width: 26px;
        height: 26px;
        margin-left: -13px;

        &::before,
        &::after {
          top: 50%;
          width: 26px;
          height: 4px;
          margin-top: -2px;
          background-color: var(--cl-gn);
        }
      }

      .item-present-ttl {
        font-size: 2.2rem;
      }

      .item-present-list {
        margin-top: 20px;

        > li {
          .item-present-list-img {
            width: 200px;
            margin: 0 auto;

            img {
              width: 200px;
              height: 200px;
              border-radius: 200px;
            }
          }

          .item-present-list-detail {
            margin-top: 16px;
          }

          .item-present-list-ttl {
            font-size: 2rem;
            line-height: 1.363;
          }

          .item-present-list-comment {
            margin-top: 6px;
            font-size: 1.6rem;
            line-height: 1.5;
          }
        }

        > li + li {
          margin-top: 24px;
        }
      }
    }
  }
}

.block-lp_login-vrt-box-4 {
  .item-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .item-detail {
    .item-ttl {
      span {
        display: block;

        &:last-child {
          font-family: var(--ff-serif);
        }
      }
    }

    .item-annotation {
      color: var(--cl-gr-txt);
      font-size: 1.4rem;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-vrt-box-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .item-img {
      width: 700px;
    }

    .item-detail {
      width: 524px;

      .item-ttl {
        span {
          &:first-child {
            font-size: 2rem;
          }

          &:last-child {
            margin-top: 10px;
            font-size: 5rem;
          }
        }
      }

      .item-annotation {
        margin-top: 35px;
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-vrt-box-4 {
    .item-detail {
      margin-top: 16px;

      .item-ttl {
        span {
          &:first-child {
            font-size: 1.8rem;
          }

          &:last-child {
            margin-top: 8px;
            font-size: 3.4rem;
          }
        }
      }

      .item-annotation {
        margin-top: 18px;
      }
    }
  }
}

.block-lp_login-vrt-box-5 {
  .item-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .item-ttl {
    font-weight: 700;
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-vrt-box-5 {
    display: flex;
    justify-content: space-between;
    width: 625px;
    margin: 0 auto;

    .item-img {
      width: 300px;
    }

    .item-detail {
      width: 285px;

      .item-ttl {
        font-size: 2.2rem;
      }

      .item-comment {
        margin-top: 16px;
        font-size: 1.8rem;
        line-height: 1.444;
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-vrt-box-5 {
    .item-detail {
      margin-top: 16px;

      .item-ttl {
        font-size: 2.2rem;
      }

      .item-comment {
        margin-top: 12px;
        font-size: 1.6rem;
      }
    }
  }
}

.block-lp_login-freedial {
  background-color: var(--cl-gn-bg);
  text-align: center;

  .item-catch {
    color: var(--cl-gn);
    font-weight: 700;
  }

  .item-tel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--cl-gn);
    font-family: var(--ff-num);
    font-weight: 600;
    letter-spacing: 0.04em;
  }

  .item-tel::before {
    content: "";
    display: inline-block;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-freedial {
    width: 600px;
    margin: 0 auto;
    padding: 40px;

    .item-catch {
      font-size: 1.8rem;
    }

    .item-tel {
      margin-top: 10px;
      font-size: 4rem;
    }

    .item-tel::before {
      width: 43px;
      height: 24px;
      margin-right: 12px;
      background-image: url(../../img/common/icon_footer_freedial.png);
    }

    .item-tel [data-ruby]::before {
      top: -0.4em;
      font-size: 1.2rem;
    }

    .item-annotation {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 8px;
      font-size: 1.8rem;
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-freedial {
    padding: 24px;

    .item-catch {
      font-size: 1.6rem;
    }

    .item-tel {
      margin-top: 10px;
      font-size: 3.3rem;
    }

    .item-tel::before {
      width: 47px;
      height: 27px;
      margin-right: 12px;
      background-image: url(../../img/common/sp/icon_footer_freedial.png);
    }

    .item-tel [data-ruby]::before {
      top: -0.5em;
      font-size: 1rem;
    }

    .item-annotation {
      margin-top: 6px;
      font-size: 1.4rem;
    }

    .item-tel_link {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 16px;
    }

    .item-tel_link a {
      width: 200px;
      height: 50px;
      font-size: 1.8rem;
      font-weight: 700;
    }
  }
}

.block-lp_login-gn_bg {
  background-color: var(--cl-gn-bg);
}

@media all and (min-width: 768px) {
  .block-lp_login-gn_bg {
    padding: 80px 0;
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-gn_bg {
    padding: 40px 0;
  }
}

.block-lp_login-voice-list {
  background-color: #ffffff;

  > ul > li {
    .list-img img {
      display: block;
      width: 100%;
      height: auto;
    }

    .list-ttl,
    .list-user {
      font-weight: 700;
    }
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-voice .ttl-h2 {
    font-size: 3.4rem;
  }

  .block-lp_login-voice-list {
    padding: 80px;

    > ul > li {
      display: flex;
      justify-content: space-between;

      &:nth-child(even) {
        flex-direction: row-reverse;
      }

      .list-img {
        width: 340px;
      }

      .list-detail {
        width: 715px;
      }

      .list-ttl {
        font-size: 2.4rem;
      }

      .list-user {
        margin-top: 10px;
        font-size: 1.8rem;
      }

      .list-comment {
        margin-top: 14px;
        font-size: 1.8rem;
        line-height: 1.444;
      }
    }

    > ul > li + li {
      margin-top: 80px;
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-voice .ttl-h2 {
    margin-bottom: 32px;
  }

  .block-lp_login-voice-list {
    padding: 24px;

    > ul > li {
      .list-detail {
        margin-top: 16px;
      }

      .list-ttl {
        font-size: 2rem;
      }

      .list-user {
        margin-top: 10px;
        font-size: 1.6rem;
      }

      .list-comment {
        margin-top: 12px;
        font-size: 1.6rem;
        line-height: 1.5;
      }
    }

    > ul > li + li {
      margin-top: 32px;
    }
  }
}

.block-lp_login-goods_select {
  background-color: #ffffff;

  .item-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .item-name {
    font-weight: 700;
  }

  .item-contents {
    color: var(--cl-gr-txt);
    font-family: var(--ff-num);
  }

  .item-icon {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px 0 0;

    li {
      margin: 5px 5px 0 0;

      span {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 22px;
        padding: 0 6px;
        border: 1px solid #6c7a56;
        color: var(--cl-gn);
        font-size: 1.3rem;
        line-height: 1;
        letter-spacing: 0.04em;
      }
    }
  }

  .item-desc {
    border: 1px solid var(--cl-gr-1);

    &.item-desc-set {
      border-color: #fdf0f0;
      background-color: #fdf0f0;
    }
  }

  .item-desc-ttl {
    font-weight: 700;
  }

  .item-desc-price {
    font-family: var(--ff-num);
  }

  .item-desc-price-default,
  .item-desc-price-current {
    display: flex;
    align-items: center;
    line-height: 1.333;
    letter-spacing: 0.04em;
  }

  .item-desc-price-default .price {
    position: relative;

    &::before {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: var(--cl-bk);
    }
  }

  .item-desc-price-current {
    color: var(--cl-rd);

    dt {
      font-weight: 700;
    }

    dd {
      font-weight: 500;
    }
  }

  .item-desc-price-right {
    position: relative;

    > p {
      position: absolute;
      top: -2em;
      left: 0;
      width: 100%;
      font-size: 1.5rem;
      font-weight: 700;
      text-align: center;
    }

    ul {
      display: flex;
      justify-content: center;
    }

    li {
      width: 90px;

      div {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90px;
        height: 90px;
        border: 2px solid var(--cl-gn);
        border-radius: 90px;
        background-color: #f0f7e2;
        color: var(--cl-gn);
        font-size: 1.4rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.333;

        .fs-14 {
          font-size: 1.4rem;
        }

        .fs-24 {
          font-size: 2.4rem;
        }

        .fs-20 {
          font-size: 2rem;
        }
      }
    }

    li + li {
      margin-left: 10px;
    }
  }

  .item-desc.item-desc-set {
    .item-desc-price-right li div {
      border-color: var(--cl-rd);
      background-color: #ffffff;
      color: var(--cl-rd);
    }

    .item-desc-price-right li:nth-child(2) div {
      line-height: 1;
      letter-spacing: 0;
    }
  }

  .item-desc-caution {
    color: var(--cl-gr-txt);
    font-size: 1.4rem;
  }
}

@media all and (min-width: 768px) {
  .block-lp_login-goods_select {
    display: flex;
    justify-content: space-between;
    padding: 80px;

    .item-left {
      width: 420px;
    }

    .item-right {
      width: calc(100% - 476px);
    }

    .item-icon {
      margin-top: 19px;
    }

    .item-name {
      margin-top: 16px;
      font-size: 3rem;
    }

    .item-contents {
      margin-top: 5px;
      font-size: 1.6rem;
    }

    .item-desc {
      padding: 23px;
    }

    .item-desc + .item-desc {
      margin-top: 24px;
    }

    .item-desc-ttl {
      font-size: 2.8rem;
    }

    .item-desc-price {
      display: flex;
      align-items: center;
      padding-top: 15px;
    }

    .item-desc-price-left {
      width: calc(100% - 290px);
    }

    .item-desc-price-right {
      width: 290px;
    }

    .item-desc-price-default {
      dt {
        font-size: 1.4rem;
      }

      dd {
        margin-left: 10px;
        font-size: 2.4rem;

        .tax {
          font-size: 1rem;
        }

        .txt {
          font-size: 1.4rem;
        }
      }
    }

    .item-desc-price-current {
      margin-top: 4px;

      dt {
        font-size: 1.4rem;
      }

      dd {
        margin-left: 10px;
        font-size: 3rem;

        .tax {
          font-size: 1.2rem;
        }
      }
    }

    .item-desc-caution {
      margin-top: 16px;
    }

    .item-desc-btn {
      margin-top: 26px;

      a {
        width: 100%;
        height: 60px;
        font-size: 2rem;
      }
    }
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-goods_select {
    padding: 16px;

    .item-right {
      margin-top: 16px;
    }

    .item-icon {
      margin-top: 19px;
    }

    .item-name {
      margin-top: 12px;
      font-size: 2.4rem;
    }

    .item-contents {
      margin-top: 5px;
      font-size: 1.4rem;
    }

    .item-desc {
      padding: 15px;
    }

    .item-desc + .item-desc {
      margin-top: 16px;
    }

    .item-desc-ttl {
      font-size: 2rem;
      line-height: 1.333;
    }

    .item-desc-price {
      margin-top: 12px;
    }

    .item-desc-price-default {
      font-size: 1.4rem;

      dd {
        margin-left: 10px;
        font-size: 1.8rem;

        .tax {
          font-size: 1rem;
        }

        .txt {
          font-size: 1.4rem;
        }
      }
    }

    .item-desc-price-current {
      margin-top: 4px;

      dt {
        font-size: 1.4rem;
        line-height: 1.333;
      }

      dd {
        margin-left: 6px;
        font-size: 3rem;

        .tax {
          font-size: 1.2rem;
        }
      }
    }

    .item-desc-price-right {
      margin: 14px -16px 0;

      > p {
        position: relative;
        top: auto;
        margin-bottom: 5px;
        font-size: 1.4rem;
      }
    }

    .item-desc-caution {
      margin-top: 16px;
      font-size: 1.3rem;
      line-height: 1.333;
    }

    .item-desc-btn {
      margin-top: 20px;

      a {
        width: 100%;
        height: 60px;
        font-size: 2rem;
      }
    }
  }
}

.block-lp_login-regist-message {
  text-align: center;
}

.block-method-radio_btn-list p {
  margin-top: 10px;
  padding-left: 30px;
  font-size: 1.4rem;
}

.block-method-radio_btn-list p.annotation {
  margin-top: 4px;
  color: var(--cl-gr-txt);
  font-size: 1.2rem;
}

.block-method-radio_btn-list li + li {
  margin-top: 20px;
}

.block-regist-form-item .block-method-shipping_date-item dd:nth-child(2),
.block-method-shipping_date-item input[type="text"],
.block-method-shipping_date-item select {
  width: 100%;
}

.block-method-shipping_date-annotation {
  color: var(--cl-gr-txt);
  font-size: 1.2rem;
  line-height: 1.333;
}

@media all and (min-width: 768px) {
  .block-lp_login-regist-message {
    margin: 30px 0 35px;
    font-size: 1.8rem;
  }

  .block-method-radio_btn-list {
    padding: 12px 0;
  }

  .block-method-shipping_date {
    display: flex;
  }

  .block-method-shipping_date-item {
    width: 360px;
  }

  .block-method-shipping_date-item + .block-method-shipping_date-item {
    margin-left: 20px;
  }

  .block-method-shipping_date-annotation {
    margin-top: 20px;
  }
}

@media all and (max-width: 767px) {
  .block-lp_login-regist-message {
    margin: 20px 0 24px;
  }

  .block-method-shipping_date-annotation {
    margin-top: 16px;
  }
}

@media all and (min-width: 768px) {
}

@media all and (max-width: 767px) {
}

.block-order-cart-bot-comment {
  font-size: 1.4rem;
}

.block-order-cart-bot-comment p.caution {
  color: var(--cl-rd);
  font-weight: 700;
}

.block-order-cart-bot-comment p + p {
  margin-top: 1.2em;
}

.block-order-cart-bot-comment .tax {
  font-size: 1.2rem;
}

.block-order-cart-bot-comment a {
  text-decoration: underline;
}

.block-order-cart-bot-total {
  background-color: var(--cl-gn-bg);
}

.block-order-cart-bot-total-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  font-family: var(--ff-num);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.block-order-cart-bot-total-item + .block-order-cart-bot-total-item {
  margin-top: 5px;
}

.block-order-cart-bot-total-item.item-subtotal {
  margin-bottom: 23px;
}

.block-order-cart-bot-total-item.item-discount {
  margin-top: 12px;
  color: var(--cl-rd);
}

.block-order-cart-bot-total-item.item-discount + .block-order-cart-bot-total-item.item-discount {
  margin-top: 5px;
}

.block-order-cart-bot-total-item.item-total {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--cl-gr-1);
}

.block-order-cart-bot-total-item.item-point {
  margin-top: 12px;
}

.block-order-cart-bot-total-item.item-subtotal dt,
.block-order-cart-bot-total-item.item-total dt {
  font-size: 1.8rem;
  font-weight: 700;
}

.block-order-cart-bot-total-item.item-point dt {
  font-weight: 700;
}

.block-order-cart-bot-total-item dt .tax {
  font-size: 1.2rem;
}

.block-order-cart-bot-total-item.item-subtotal dd,
.block-order-cart-bot-total-item.item-point dd {
  font-weight: 700;
}

.block-order-cart-bot-total-item.item-total dd {
  font-size: 2.4rem;
}

.block-order-cart-bot-cart_box {
  margin-top: 24px;
}

.block-order-cart_box-coupon {
  display: flex;
  align-items: center;
}

.block-order-cart_box-coupon dt {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.block-order-cart_box-coupon dd {
  display: flex;
  margin-left: auto;
}

.block-order-cart_box-coupon dd input[type="text"] {
  width: calc(100% - 100px);
  height: 44px;
  padding: 0 10px;
}

.block-order-cart_box-coupon dd button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 44px;
  margin-left: 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: var(--cl-gr-txt);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

.block-order-cart_box-btn {
  margin-top: 24px;
}

.block-order-cart_box-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 64px;
  padding: 0;
  border: none;
  background-color: var(--cl-rd);
  color: #ffffff;
  cursor: pointer;
}

.block-order-cart_box-btn a span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
}

.block-order-cart_box-btn a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d12726;
  transform: scale(0.7);
  opacity: 0;
}

.block-order-cart_box-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  letter-spacing: 0.04em;
}

.block-order-cart_box-total:not(:first-child) {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--cl-gr-1);
}

.block-order-cart_box-total dt {
  font-size: 1.8rem;
  font-weight: 700;
}

.block-order-cart_box-total dt .tax {
  font-size: 1.2rem;
}

.block-order-cart_box-total dd {
  font-size: 2.4rem;
  font-family: var(--ff-num);
  font-weight: 500;
}

.block-order-cart-top-cart_box .block-order-cart_box-btn {
  margin-top: 12px;
}

.block-order-cart-top-cart_box .block-order-cart_box-btn a {
  height: 50px;
  font-size: 1.8rem;
}

.block-order-cart-bot-continue {
  display: flex;
  justify-content: center;
}

.block-order-cart-bot-continue a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .block-order-cart-bot {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
  }

  .block-order-cart-bot-comment {
    width: 636px;
    line-height: 1.714;
  }

  .block-order-cart-bot-comment p.caution {
    font-size: 1.6rem;
  }

  .block-order-cart-bot-submit {
    width: 400px;
  }

  .block-order-cart-bot-total {
    padding: 36px 40px 30px;
  }

  .block-order-cart-bot-total-item.item-subtotal {
    margin-bottom: 23px;
  }

  .block-order-cart-bot-total-item.item-total {
    margin-top: 22px;
    padding-top: 20px;
  }

  .block-order-cart_box-coupon dt {
    width: 122px;
  }

  .block-order-cart_box-coupon dd {
    width: calc(100% - 122px);
  }

  .block-order-cart_box-btn {
    margin-top: 24px;
  }

  .block-order-cart_box-btn a::before {
    transition: transform 0.3s, opacity 0.2s;
  }

  .block-order-cart_box-btn a:hover::before {
    transform: scale(1);
    opacity: 1;
  }

  .block-order-cart-bot-continue {
    margin-top: 40px;
  }

  .block-order-cart-bot-continue a {
    height: 24px;
  }

  .block-order-cart-bot-continue a .txt {
    display: block;
    position: relative;
    color: var(--cl-bk);
    font-size: 2rem;
  }

  .block-order-cart-bot-continue a .txt::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--cl-bk);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .block-order-cart-bot-continue a:hover .txt::after {
    opacity: 1;
  }

  .block-order-cart-bot-continue a .arw {
    display: block;
    position: relative;
    margin-right: 12px;
    width: 24px;
    height: 24px;
  }

  .block-order-cart-bot-continue a .arw::before,
  .block-order-cart-bot-continue a .arw::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 24px;
  }

  .block-order-cart-bot-continue a .arw::before {
    background-color: var(--cl-gn);
    transition: transform 0.3s;
  }

  .block-order-cart-bot-continue a:hover .arw::before {
    transform: scale(1.416);
  }

  .block-order-cart-bot-continue a .arw::after {
    background-image: url(../../img/common/arw_link_right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
}

@media all and (max-width: 767px) {
  .block-order-cart-top-cart_box {
    margin-top: 36px;
    padding: 16px;
    background-color: var(--cl-gn-bg);
  }

  .block-order-cart-bot {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 40px;
  }

  .block-order-cart-bot-comment {
    margin-top: 40px;
    line-height: 1.571;
  }

  .block-order-cart-bot-comment p.caution {
    font-size: 1.5rem;
  }

  .block-order-cart-bot-total {
    margin: 0 -20px;
    padding: 26px 40px 22px;
  }

  .block-order-cart_box-coupon dt {
    width: 100px;
  }

  .block-order-cart_box-coupon dd {
    width: calc(100% - 100px);
  }

  .block-order-cart_box-btn {
    margin-top: 16px;
  }

  .block-order-cart-bot-continue {
    margin-top: 24px;
  }

  .block-order-cart-bot-continue a::before {
    content: "";
    display: inline-block;
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    background-image: url(../../img/common/arw_link_right.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(180deg);
  }
}
