@charset "utf-8";

// font
@font-face {
  font-family: "notoserif";
  src: url(../fonts/NotoSerif_Condensed-Regular.ttf);
}

@font-face {
  font-family: "notoserif-500";
  src: url(../fonts/NotoSerif_Condensed-Medium.ttf);
}

@font-face {
  font-family: "notoserif-700";
  src: url(../fonts/NotoSerif_Condensed-Bold.ttf);
}

// color
$color-bk: #15161F;
$color-wh: #F7F4F3;
$color-rd: #AD2C31;
$color-drd: #8E0C11;
$color-l-pk: #F7F3F3;
$color-gr: #706D65;
$color-d-bl: #272D56;

// common
* {
  box-sizing: border-box;
}

main {
  background-color: $color-l-pk;

  &.child {
    background-color: #FFF;
  }
}

h1, h2, h3 {
  margin: 0;
}

#wrap.sp {
  padding-top: 62px;

  #header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    box-shadow: 0px 5px 9px 1px rgba(148,148,148,0.8);
    -webkit-box-shadow: 0px 5px 9px 1px rgba(148,148,148,0.8);
    -moz-box-shadow: 0px 5px 9px 1px rgba(148,148,148,0.8);
  }
}

@media screen and (max-width: 2800px) {
  html {
    font-size: 14px;
  }
  body {
    margin: 0;
    font-family: "notoserif", serif;
    color: $color-bk;
    line-height: 1.6;
    font-weight: 500;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  // header
  #header {
    height: 180px;
    background: url(../images/header/header.jpg) no-repeat center center/cover;
    padding: 28px 24px 24px 80px;

    .header-top {
      height: 50px;
      display: flex;
      justify-content: space-between;

      .header-right {
        .ul-top {
          text-align: right;
          margin-bottom: 21px;
        }

        .ul-bottom {
          display: flex;
          gap: 44px;
          align-items: center;
        }
      }
    }

    .header-bottom {
      display: flex;
      justify-content: space-between;
      padding-left: 23px;
      align-items: center;
      margin-top: 50px;

      .header-bottom-left {
        ul {
          display: flex;
          gap: 73px;
          font-size: 1.3rem;
        }
      }

      .header-bottom-right {
        ul {
          display: flex;
          gap: 42px;
        }
      }
    }

    ul {
      li {
        a {
          color: $color-wh;

          &.has-icon-mail {
            position: relative;
            padding-left: 26px;

            &::before {
              content: '';
              width: 20px;
              height: 20px;
              background: url(../images/header/icon-mail.svg) no-repeat center center/contain;
              position: absolute;
              top: 0;
              left: 0;
            }
          }

          &.has-icon-arrow-right {
            position: relative;
            padding-right: 21px;

            &::before {
              content: '';
              width: 13px;
              height: 10px;
              background: url(../images/header/icon-arrow-right.svg) no-repeat center center/contain;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              right: 0;
            }
          }

          &.has-icon-tel {
            position: relative;
            padding-left: 22px;

            &::before {
              content: '';
              width: 18px;
              height: 17px;
              background: url(../images/header/icon-tel.svg) no-repeat center center/contain;
              position: absolute;
              top: 0;
              left: 0;
            }
          }

          &.has-icon-cart {
            position: relative;
            padding-left: 26px;

            &::before {
              content: '';
              width: 22px;
              height: 22px;
              background: url(../images/header/icon-cart.svg) no-repeat center center/contain;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 0;
            }
          }

          &.has-icon-heart {
            position: relative;
            padding-left: 26px;

            &::before {
              content: '';
              width: 24px;
              height: 20px;
              background: url(../images/header/icon-heart.svg) no-repeat center center/contain;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 0;
            }
          }
        }
      }
    }
  }

  .child {
    padding-top: 72px;
    padding-bottom: 72px;

    h2 {
      font-size: 2.5714285714286rem;
      font-weight: 400;
      margin-bottom: 40px;
    }

    h3 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 10px;
    }

    p {
      font-size: 16px;

      &.sub-ttl-p {
        font-size: 1.7142857142857rem;
      }
    }

    .page-ttl {
      font-size: 24px;
    }
  }

  // fv
  .fv {
    height: 627px;
    background: url(../images/about/fv.jpg) no-repeat center center/cover;
    position: relative;

    .fv-text {
      background-color: rgba(255, 255, 255, .6);
      width: fit-content;
      padding: 60px 57px 80px;
      position: absolute;
      right: 120px;
      top: 144px;
    }

    p {
      color: $color-rd;
      line-height: 1.66666667;
    }

    .p1 {
      font-size: 3.4285714285714rem;
    }

    .p2 {
      font-size: 1.7142857142857rem;
      width: fit-content;
      margin: 0 auto;
    }
  }

  // title
  section {
    .section-ttl {
      text-align: center;
      position: relative;
      font-size: 1.7142857142857rem;
      padding-top: 72px;
      margin-bottom: 18px;
    }
  }

  // about-service
  .about-service {
    .section-ttl {
      &::before,
      &::after {
        content: '';
        position: absolute;
        top: 0;
      }

      &::before {
        width: 299px;
        height: 154px;
        background: url(../images/about/deco1.png) no-repeat center center/contain;
        left: 0;
      }

      &::after {
        width: 276px;
        height: 154px;
        background: url(../images/about/deco2.png) no-repeat center center/contain;
        right: 0;
      }
    }

    .about-service-cont {
      position: relative;
      z-index: 2;
    }

    .about-service-item {
      display: flex;

      .item-left {
        width: 34%;
        padding: 52px 0;

        &.deposit {
          background: url(../images/about/deposit.jpg) no-repeat center center/cover;
        }

        &.try {
          background: url(../images/about/try.jpg) no-repeat center center/cover;
        }

        &.borrow {
          background: url(../images/about/borrow.jpg) no-repeat center center/cover;
        }

        p {
          color: $color-wh;
          text-align: center;
        }

        .p1 {
          font-size: 3.4285714285714rem;
        }

        .p2 {
          font-size: 1.7142857142857rem;
        }
      }

      .item-right {
        width: 66%;
        background-color: $color-drd;
        color: $color-wh;
        padding: 40px 103px 40px 40px;
        position: relative;
        display: flex;
        align-items: center;

        &::before {
          content: '';
          width: 18px;
          height: 13px;
          background: url(../images/header/icon-arrow-right.svg) no-repeat center center/contain;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 42px;
        }

        p {
          line-height: calc(24 / 14);
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 7;
          overflow: hidden;
        }
      }
    }
  }

  // new-kimono
  .new-kimono {
    position: relative;

    &::before {
      content: '';
      width: 334px;
      height: 91px;
      background: url(../images/about/deco3.png) no-repeat center center/contain;
      position: absolute;
      top: 0;
      right: 209px;
    }

    .section-ttl {
      position: relative;
      width: fit-content;
      margin: 0 auto 18px;

      &::before {
        content: '';
        width: 58px;
        height: 49px;
        background: url(../images/about/new.svg) no-repeat center center/contain;
        position: absolute;
        top: 39px;
        left: -43px;
        transform: rotate(-3deg);
      }
    }
  }

  .product-item-slider {
    padding-bottom: 100px;
    padding-top: 20px;

    &::before {
      content: '';
      width: 334px;
      height: 91px;
      background: url(../images/about/deco3.png) no-repeat center center/contain;
      position: absolute;
      left: 80px;
      transform: scaleY(-1);
      bottom: 0;
    }
  }

  // footer
  #footer {
    background: url(../images/footer/footer.jpg) no-repeat center center/cover;
    color: $color-wh;
    padding: 58px 0 58px 120px;

    a {
      color: $color-wh;
    }

    .footer-inner {
      display: flex;
      gap: 58px;

      .footer-left {
        width: 23%;
        font-size: 1.0428571428571rem;

        .img {
          margin-bottom: 30px;
        }

        dl {
          display: flex;

          dt {
            width: 97px;
          }

          dd {
            width: calc(100% - 97px);
            padding-left: 43px;
          }
        }

        .p-tel {
          margin-bottom: 16px;
        }

        .p-time {
          margin-bottom: 6px;
        }

        .about-company {
          border-top: 1px solid #E2565C;
          margin-top: 24px;
          padding-top: 24px;

          .company-name {
            font-size: 1.7142857142857rem;
            margin-bottom: 16px;
          }

          dl {
            &:not(:last-of-type) {
              margin-bottom: 4px;
            }
          }
        }
      }

      .footer-right {
        width: 77%;
        max-width: 688px;

        ul {
          li {
            a {
              position: relative;
              padding-right: 20px;
              display: block;
              font-size: .95714285714286rem;

              &::before {
                content: '';
                width: 13px;
                height: 10px;
                background: url(../images/header/icon-arrow-right.svg) no-repeat center center/contain;
                position: absolute;
                top: 47%;
                transform: translateY(-50%);
                right: 0;
              }
            }
          }
        }

        .footer-right-top {
          max-width: 142px;
          margin-bottom: 22px;
        }

        .footer-right-bottom {
          display: flex;
          gap: 50px;

          &-item {
            p {
              font-size: 0.85714285714286rem;
              background-color: #C94245;
              border-radius: 4px;
              width: 132px;
              text-align: center;
              height: 40px;
              display: flex;
              align-items: center;
              justify-content: center;
              margin-bottom: 10px;
            }
          }
        }
      }
    }
  }

  // container
  .container-1200 {
    padding: 0 15px;
    max-width: 1230px;
    margin: 0 auto;
  }

  /* login.html */
  .login {
    padding-bottom: 500px;

    h2 {
      margin-bottom: 32px;
    }

    .login-inner {
      margin-top: 42px;
      display: flex;
      margin-left: -26px;
      margin-right: -26px;

      .login-item {
        width: 50%;
        padding: 0 26px;

        .login-item-inner {
          background-color: #fff;
          padding: 72px 60px 34px;
          min-height: 520px;

          .p1 {
            margin-bottom: 48px;
          }

          .p2 {
            margin-bottom: 48px;
          }

          .p3 {
            margin-top: 40px;
            margin-bottom: 64px;
          }

          .p3, .p4 {
            font-size: 1rem;
          }

          dl {
            font-size: 10px;

            dt {
              color: $color-gr;
              margin-bottom: 8px;
            }

            &.login-id {
              margin-bottom: 10px;
            }
          }

          input[type="text"] {
            width: 428px;
            font-size: 1.1428571428571rem;
          }

          .forget-pwd {
            margin-bottom: 16px;
          }

          .check-ul {
            margin-top: 24px;
            margin-bottom: 32px;

            li {
              position: relative;
              padding-left: 25px;

              &::before {
                content: '';
                width: 17px;
                height: 17px;
                background: url(../images/login/check.svg) no-repeat center center/contain;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
              }
            }
          }

          .about-register {
            border: 1px solid $color-rd;
            padding: 23px 25px 31px 29px;

            p {
              font-size: 1.7142857142857rem;
            }

            ul {
              font-size: 0.85714285714286rem;

              li {
                position: relative;
                padding-left: 10px;

                &::before {
                  content: '';
                  width: 2px;
                  height: 2px;
                  background-color: $color-bk;
                  border-radius: 50%;
                  position: absolute;
                  top: 9px;
                  left: 0;
                }
              }
            }
          }
        }
      }
    }

    .el-checkbox__label {
      display: inline-block;
      padding-left: 10px;
      line-height: 19px;
      font-size: 14px;
    }

    // btn link
    .btn-standard {
      background-color: $color-rd;
      max-width: 100%;
      color: $color-wh;
      width: 100%;
      display: inline-block;
      text-align: center;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;

      &::before {
        content: '';
        width: 20px;
        height: 16px;
        background: url(../images/btn/arrow-right.svg) no-repeat center center/contain;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
      }

      &:hover {
        color: $color-wh;
      }
    }
  }
  /* //login.html */

  /* register.html */
  .register {
    .terms-of-use {
      height: 420px;
      background-color: #fff;
      padding: 50px;
      margin-top: 112px;
      margin-bottom: 56px;

      p {
        height: 420px;
        overflow-y: auto;

        &::-webkit-scrollbar {
          width: 14px;
        }

        &::-webkit-scrollbar-track {
          background-color: #FFFFFF;
        }

        &::-webkit-scrollbar-thumb {
          background-color: $color-rd;
          border-radius: 100vw;
        }
      }

    }

    .p-agree {
      margin-bottom: 32px;
    }

    .back {
      margin-top: 89px;
    }
  }

  /* //register.html */

  /* register2.html */
  .register2 {
    .authenticate {
      background-color: #fff;
      padding: 56px;
      margin-top: 32px;
      margin-bottom: 56px;

      dl {
        display: flex;
        font-size: 1.1428571428571rem;

        dt {
          color: $color-gr;
          width: 192px;
        }

        > div {
          width: calc(100% - 192px);
          padding-left: 57px;
          max-width: 635px;
        }

        dd {
          input {
            max-width: 428px;

            &#mail,
            &#mail_confirm,
            &#tel {
              margin-bottom: 16px;
            }
          }

          &.caution {
            margin-bottom: 8px;
          }
        }

        &.mail {
          margin-bottom: 64px;
        }
      }
    }
  }

  /* //register2.html */

  /* register3.html */
  .register3 {
    p {
      font-size: 1rem;
    }

    .has-email {
      margin-top: 126px;

      span {
        padding-right: 24px;
      }
    }

    .p1 {
      margin-top: 36px;
    }
  }

  /* //register3.html */

  /* register4.html */
  .register4 {
    .form-wrap {
      margin-top: 105px;
    }

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

      &:not(:last-of-type) {
        margin-bottom: 50px;
      }

      dt {
        color: $color-gr;
        width: 241px;
      }

      dd {
        width: calc(100% - 241px);
        padding-left: 72px;
        display: flex;
        align-items: center;
        gap: 16px;

        input {
          max-width: 535px;
        }

        & > span {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.71428571428571rem;
          background-color: #fff;
          padding: 0 16px;
          height: 28px;
        }
      }
    }

    .btn-wrap {
      margin-top: 281px;

      .back {
        margin-right: 52px;
      }
    }

  }

  /* //register4.html */

  /* register_confirm.html */
  .register_confirm,
  .contact_confirm {
    .form-wrap {
      margin-top: 73px;
    }

    dl {
      color: $color-gr;
      display: flex;
      align-items: center;

      &:not(:last-of-type) {
        margin-bottom: 32px;
      }

      dt {
        width: 240px;
      }

      dd {
        width: calc(100% - 240px);
        padding-left: 96px;
      }
    }
  }

  /* //register_confirm.html */

  /* register_complete.html */
  .register_complete {
    .to-top-link {
      margin-top: 107px;
    }
  }

  /* //register_complete.html */

  .btn-pattern_2 {
    width: 224px;
    display: inline-block;
    max-width: 100%;
    border: 1px solid $color-rd;
    text-align: center;
    color: $color-rd;
    padding: 14px 0;
    font-size: 1.1428571428571rem;
    background-color: transparent;

    &:hover {
      color: $color-rd;
    }
  }
}

@media screen and (max-width: 576px) {
  html {
    font-size: 10px;
  }

  body {
    margin: 0;
    font-family: "notoserif", serif;
    color: $color-bk;
    line-height: 1;
    font-weight: 400;
  }

  img {
    max-width: 60%;
    height: auto;
  }

  // header
  #header {
    height: 65px;
    background: url(../images/header/header.jpg) no-repeat center center / cover;
    padding: 18px 10px 14px 10px;

    &__title {
      margin: 0;
      padding: 0.5rem;
      font-size: 1.8rem;
    }

    .menu-button {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: fixed;
      top: 22px;
      right: 15px;
      display: inline-block;
      width: 30px;
      height: 35px;
      background: none;
      border: none;
      z-index: 10;
      cursor: pointer;

      &__bar {
        position: absolute;
        top: 0;
        left: 10%;
        display: inline-block;
        width: 80%;
        height: 3px;
        border-radius: 4px;
        background: #fefefc;
        transition: all 0.4s;

        &--top {
          top: 6px;
        }

        &--center {
          top: 15px;
        }

        &--bottom {
          top: 25px;
        }
      }

      &.open & {
        &__bar {
          &--top {
            top: 20px;
            transform: rotate(-45deg);
          }

          &--center {
            left: 50%;
            opacity: 0;
            transform: rotate(135deg);
          }

          &--bottom {
            top: 20px;
            transform: rotate(45deg);
          }
        }
      }
    }

    .nav {
      &__list {
        list-style: none;
        text-transform: uppercase;
      }

      &.sp-menu {
        position: fixed;
        top: 0;
        right: 0;
        padding: 30px;
        width: 50%;
        height: 200px;
        background: #F7F3F3;
        text-align: right;
        margin-top: 55px;
      }

      &.sp-menu & {
        &__list {
          display: flex;
          flex-direction: column;

          & > * + * {
            margin-top: 1rem;
          }
        }
      }

      &__link {
        position: relative;
        color: inherit;
        font-size: 1.2rem;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
      }

      &__link--current {
        pointer-events: none;

        &::after {
          content: "";
          position: absolute;
          top: calc(50% - 2px);
          left: 0;
          width: 100%;
          height: 2px;
          background: currentColor;
        }
      }
    }

    .fade-enter-active,
    .fade-leave-active {
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .fade-enter-from,
    .fade-leave-to {
      opacity: 1;
      transform: translateX(100%);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .header-top {
      height: 35px;
      display: block;
      justify-content: space-between;

      .header-right {
        .ul-top {
          text-align: right;
          margin-bottom: 20px;
        }

        .ul-bottom {
          display: flex;
          gap: 14px;
          align-items: center;
          float: right;
        }
      }
    }


    .header-bottom {
      display: flex;
      justify-content: space-between;
      padding: 0;
      align-items: center;
      width: 100%;

      .header-bottom-left {
        ul {
          display: flex;
          gap: 3%;
          font-size: .9rem;
        }
      }

      .header-bottom-right {
        ul {
          display: flex;
          gap: 5px;
        }
      }
    }

    ul {
      li {
        a {
          color: $color-wh;

          &.has-icon-mail {
            position: relative;
            padding-left: 20px;

            &::before {
              content: '';
              width: 15px;
              height: 15px;
              background: url(../images/header/icon-mail.svg) no-repeat center center/contain;
              position: absolute;
              top: 0;
              left: 0;
            }
          }

          &.has-icon-arrow-right {
            position: relative;
            padding-right: 20px;

            &::before {
              content: '';
              width: 13px;
              height: 10px;
              background: url(../images/header/icon-arrow-right.svg) no-repeat center center/contain;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              right: 0;
            }
          }

          &.has-icon-user {
            position: relative;
            padding-left: 20px;

            &::before {
              content: '';
              width: 20px;
              height: 20px;
              background: url(../images/header/icon-user.svg) no-repeat center center/contain;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 0;
            }
          }

          &.has-icon-tel {
            position: relative;
            padding-left: 20px;

            &::before {
              content: '';
              width: 15px;
              height: 13px;
              background: url(../images/header/icon-tel.svg) no-repeat center center/contain;
              position: absolute;
              top: 0;
              left: 0;
            }
          }

          &.has-icon-cart {
            position: relative;
            padding-left: 20px;

            &::before {
              content: '';
              width: 20px;
              height: 20px;
              background: url(../images/header/icon-cart.svg) no-repeat center center/contain;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 0;
            }
          }

          &.has-icon-heart {
            position: relative;
            padding-left: 20px;

            &::before {
              content: '';
              width: 20px;
              height: 18px;
              background: url(../images/header/icon-heart.svg) no-repeat center center/contain;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 0;
            }
          }
        }
      }
    }
  }

  .child {
    padding-top: 22px;
    padding-bottom: 22px;

    h2 {
      font-size: 2.5714285714286rem;
      font-weight: 400;
      margin-bottom: 20px;
    }

    h3 {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 10px;
    }

    p {
      font-size: 1.15rem;

      &.sub-ttl-p {
        font-size: 1.7142857142857rem;
      }
    }

    .page-ttl {
      font-size: 24px;
    }
  }

  // fv
  .fv {
    height: 220px;
    background: url(../images/about/fv.jpg) no-repeat center center/cover;
    position: relative;

    .fv-text {
      background-color: rgba(255, 255, 255, 0.6);
      padding: 0;
      width: 60%;
      height: 60%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
    }

    p {
      color: $color-rd;
      line-height: 1.66666667;
    }

    .p1 {
      font-size: 2.6rem;
    }

    .p2 {
      font-size: 1.4rem;
      width: fit-content;
      margin: 0 auto;
    }
  }

  // title
  section {
    .section-ttl {
      text-align: center;
      position: relative;
      font-size: 1.2rem;
      padding-top: 15px;
      margin-bottom: 15px;
    }
  }

  // about-service
  .about-service {
    .section-ttl {
      &::before,
      &::after {
        content: '';
        position: absolute;
        top: 0;
      }

      &::before {
        width: 90px;
        height: 50px;
        background: url(../images/about/deco1.png) no-repeat center center/contain;
        left: 0;
      }

      &::after {
        width: 90px;
        height: 50px;
        background: url(../images/about/deco2.png) no-repeat center center/contain;
        right: 0;
      }
    }

    .about-service-cont {
      position: relative;
      z-index: 2;
    }

    .about-service-item {
      display: block;

      .item-left {
        width: 100%;
        padding: 20px 0;

        &.deposit {
          background: url(../images/about/deposit.jpg) no-repeat center center/cover;
        }

        &.try {
          background: url(../images/about/try.jpg) no-repeat center center/cover;
        }

        &.borrow {
          background: url(../images/about/borrow.jpg) no-repeat center center/cover;
        }

        p {
          color: $color-wh;
          text-align: center;
        }

        .p1 {
          font-size: 3rem;
        }

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

      .item-right {
        width: 100%;
        background-color: $color-drd;
        color: $color-wh;
        padding: 10px 40px 10px 10px;
        position: relative;
        display: flex;
        align-items: center;

        &::before {
          content: '';
          width: 18px;
          height: 13px;
          background: url(../images/header/icon-arrow-right.svg) no-repeat center center/contain;
          position: absolute;
          transform: translateY(-50%);
          right: 12px;
        }

        p {
          line-height: calc(24 / 14);
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 4;
          overflow: hidden;
        }
      }
    }
  }

  // new-kimono
  .new-kimono {
    position: relative;

    &::before {
      content: '';
      width: 120px;
      height: 30px;
      background: url(../images/about/deco3.png) no-repeat center center / contain;
      position: absolute;
      top: 0;
      right: 20px;
    }

    .section-ttl {
      position: relative;
      height: 10px;
      width: 100%;

      &::before {
        content: '';
        width: 35px;
        height: 40px;
        background: url(../images/about/new.svg) no-repeat center center / contain;
        position: absolute;
        left: 35%;
        top: 0px;
      }
    }
  }

  .product-item-slider {
    padding-top: 15px;
    padding-bottom: 18px;

    &::before {
      content: '';
      width: 120px;
      height: 30px;
      background: url(../images/about/deco3.png) no-repeat center center/contain;
      position: absolute;
      left: 5%;
      transform: scaleY(-1);
      bottom: 0;
    }
  }

  // footer
  #footer {
    background: url(../images/footer/footer.jpg) no-repeat center center/cover;
    color: $color-wh;
    padding: 0px;

    a {
      color: $color-wh;
    }

    .footer-inner {
      display: block;

      .footer-left {
        width: 100%;
        font-size: 1rem;
        text-align: center;
        padding-top: 20px;

        .img {
          width: 100%;
          margin-bottom: 10px;
        }

        .lift-img {
          max-width: 25%;
          height: auto;
          width: 70px;
        }

        dl {
          display: flex;

          dt {
            width: 97px;
          }

          dd {
            width: calc(100% - 97px);
            padding-left: 43px;
          }
        }

        .f-info {
          height: 60px;
          margin-bottom: 10px;

          .p-tel {
            margin-bottom: 8px;
            padding-top: 12px;
            font-size: 1.4rem;
          }

          .p-time {
            margin-bottom: 6px;
            font-size: 1.4rem;
          }
        }

        .copyright {
          height: 50px;
          background-color: #9f241b;

          .p-verify {
            border-top: solid 1px #8b8b8b;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 49px;
          }
        }

        .about-company {
          border-top: 1px solid #E2565C;
          margin-top: 10px;
          padding-top: 10px;

          .company-name {
            font-size: 1rem;
            margin-bottom: 6px;
          }

          dl {
            &:not(:last-of-type) {
              margin-bottom: 4px;
            }
          }
        }
      }

      .footer-right {
        width: 100%;
        max-width: 100%;
        background-color: #efefef;
        padding: 0;

        ul {
          li {
            width: 100%;
            height: 40px;
            margin-bottom: 5px;
            align-items: center;
            display: -webkit-flex;

            a {
              position: relative;
              padding-right: 20px;
              display: block;
              font-size: 1.2rem;
              width: 100%;

              &::before {
                content: '';
                width: 13px;
                height: 10px;
                background: url(../images/header/icon-arrow-right.svg) no-repeat center center/contain;
                position: absolute;
                top: 10%;
                transform: translateY(-10%);
                right: 15px;
              }
            }
          }
        }

        .footer-right-top {
          max-width: 100%;
          margin-bottom: 12px;
        }

        .footer-right-bottom {
          display: block;
          padding-left: 5%;

          &-item {
            p {
              font-size: 0.85714285714286rem;
              background-color: #C94245;
              border-radius: 4px;
              width: 80px;
              text-align: center;
              height: 20px;
              display: flex;
              align-items: center;
              justify-content: center;
              margin-bottom: 10px;
            }
          }
        }

        ul {
          li {
            height: auto;
            margin-bottom: 0;
            border-top: solid 1px red;

            a {
              color: #000;
              line-height: 40px;
              padding-left: 20px;
              padding-right: 20px;
              font-size: 11px;

              &:before {
                top: 40%;
                right: 20px;
              }
            }
          }
        }

        .footer-right-top {
          margin-bottom: 0;
        }
      }
    }
  }

  //Custom Slider
  .product-top-slider {
    .el-card {
      .el-card__body {
        .p-info-link {
          padding-top: 15px;
          font-size: 11px;
        }
      }
    }
  }

  // container
  .container-1200 {
    padding: 0 15px;
    margin: 0 auto;
  }

  /* login.html */
  .login {
    padding-bottom: 80px;
    font-size: 1.15rem;

    h2 {
      margin-bottom: 12px;
    }

    .login-inner {
      margin-top: 12px;
      display: block;
      margin-left: -26px;
      margin-right: -26px;

      .login-item {
        width: 100%;
        padding: 0 26px;

        .login-item-inner {
          background-color: #fff;
          padding: 12px;
          min-height: 300px;

          .p1 {
            margin-bottom: 12px;
          }

          .p2 {
            margin-bottom: 12px;
          }

          .p3 {
            margin-top: 40px;
            margin-bottom: 64px;
          }

          .p3, .p4 {
            font-size: 1.15rem;
          }

          dl {
            font-size: 1.15rem;

            dt {
              color: $color-gr;
              margin-bottom: 8px;
            }

            &.login-id {
              margin-bottom: 10px;
            }
          }

          input[type="text"] {
            width: 100%;
            font-size: 1rem;
          }

          .el-input__inner {
            font-size: 1rem;
          }

          .forget-pwd {
            margin-bottom: 16px;
          }

          .check-ul {
            margin-top: 12px;
            margin-bottom: 12px;

            li {
              position: relative;
              padding-left: 25px;

              &::before {
                content: '';
                width: 17px;
                height: 17px;
                background: url(../images/login/check.svg) no-repeat center center/contain;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: 0;
              }
            }
          }

          .about-register {
            border: 1px solid $color-rd;
            padding: 20px;

            p {
              font-size: 1.5rem;
            }

            ul {
              font-size: 1.1rem;

              li {
                position: relative;
                padding: 6px 0 0 10px;

                &::before {
                  content: '';
                  width: 2px;
                  height: 2px;
                  background-color: $color-bk;
                  border-radius: 50%;
                  position: absolute;
                  top: 9px;
                  left: 0;
                }
              }
            }
          }
        }
      }
    }

    .el-checkbox__label {
      display: inline-block;
      padding-left: 10px;
      line-height: 19px;
      font-size: 1.1rem;
    }

    .el-form-item {
      margin-bottom: 5px;
    }

    // btn link
    .btn-standard {
      background-color: $color-rd;
      max-width: 100%;
      color: $color-wh;
      width: 100%;
      display: inline-block;
      text-align: center;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      font-size: 1.4rem;

      &::before {
        content: '';
        width: 20px;
        height: 16px;
        background: url(../images/btn/arrow-right.svg) no-repeat center center/contain;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
      }

      &:hover {
        color: $color-wh;
      }
    }
  }
  /* //login.html */
  /* register.html */
  .register {
    .terms-of-use {
      height: 420px;
      background-color: #fff;
      padding: 10px;
      margin-top: 10px;
      margin-bottom: 56px;

      p {
        height: 330px;
        overflow-y: auto;

        &::-webkit-scrollbar {
          width: 14px;
        }

        &::-webkit-scrollbar-track {
          background-color: #FFFFFF;
        }

        &::-webkit-scrollbar-thumb {
          background-color: $color-rd;
          border-radius: 100vw;
        }
      }

    }

    .p-agree {
      margin-bottom: 0;
    }

    .back {
      margin-top: 28px;
    }
  }

  /* //register.html */

  /* register2.html */
  .register2 {
    .authenticate {
      background-color: #fff;
      padding: 10px;
      margin-top: 12px;
      margin-bottom: 16px;

      dl {
        display: block;
        font-size: 1.1428571428571rem;

        dt {
          color: $color-gr;
          width: 100%;
          padding-bottom: 8px;
        }

        > div {
          width: calc(100%);
          padding-left: 0px;
          max-width: 100%;
        }

        dd {
          input {
            max-width: 428px;

            &#mail,
            &#mail_confirm,
            &#tel {
              margin-bottom: 16px;
            }
          }

          &.caution {
            margin-bottom: 8px;
          }
        }

        &.mail {
          margin-bottom: 12px;
        }
      }
    }
  }

  /* //register2.html */

  /* register3.html */
  .register3 {
    p {
      font-size: 1rem;
    }

    .has-email {
      margin-top: 126px;

      span {
        padding-right: 24px;
      }
    }

    .p1 {
      margin-top: 36px;
    }
  }

  /* //register3.html */

  /* register4.html */
  .register4 {
    .form-wrap {
      margin-top: 15px;
    }

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

      &:not(:last-of-type) {
        margin-bottom: 50px;
      }

      dt {
        color: $color-gr;
        width: 100%;
      }

      dd {
        width: 100%;
        padding-left: 0px;
        display: flex;
        align-items: center;
        gap: 2px;

        input {
          max-width: 100%;
          font-size: 1.1rem;
        }

        & > span {
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 0.71428571428571rem;
          background-color: #fff;
          padding: 0 6px;
          height: 28px;
        }
      }
    }
  }

  /* //register4.html */

  /* register_confirm.html */
  .register_confirm,
  .contact_confirm {
    .form-wrap {
      margin-top: 25px;
    }

    dl {
      color: $color-gr;
      display: flex;
      align-items: center;

      &:not(:last-of-type) {
        margin-bottom: 15px;
      }

      dt {
        width: 50%;
      }

      dd {
        width: 50%;
        padding-left: 10%;
      }
    }
  }

  /* //register_confirm.html */

  /* register_complete.html */
  .register_complete {
    .to-top-link {
      margin-top: 107px;
    }
  }

  /* //register_complete.html */

  .btn-pattern_2 {
    width: 100px;
    display: inline-block;
    max-width: 100%;
    border: 1px solid $color-rd;
    text-align: center;
    color: $color-rd;
    padding: 14px 0;
    font-size: 1.1428571428571rem;
    background-color: transparent;
    margin-right: 5%;

    &:hover {
      color: $color-rd;
    }
  }

  //Custom
  #header {
    height: 61px;
    padding: 13px 10px;

    .header-top {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-content: center;
      flex-wrap: nowrap;
      align-items: center;

      h1 img {
        max-width: 50%;
      }

      .header-right {
        display: flex;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;

        .ul-bottom {
          display: flex;
          flex-direction: row-reverse;
          flex-wrap: nowrap;
          align-content: center;
          justify-content: flex-start;
          align-items: center;

          li {
            margin-left: 8px;

            a {
              i {
                font-size: 25px;
              }
            }

            button.show-menu {
              border-radius: 0;
              padding: 0;
              color: #FFF;
              background-color: transparent;
              border: solid 0px transparent;
              font-size: 30px;
            }
          }
        }
      }

      .header-left {
        h1 {
          a {
            display: block;
            text-decoration: none;

            img {
              display: block;
            }
          }
        }
      }
    }

    .menu-drawer {
      border-left: 5px solid #ff5804;

      .el-drawer__header {
        margin-bottom: 0;
        background-color: #ebebeb;
        padding: 12px 20px;

        & > span:first-child {
          font-size: 16px;
          color: #000;
        }

        .el-drawer__close-btn {
          background-color: #ada9a9;
          color: #FFF;
          padding: 2px 3px;
        }
      }

      .h-drawer-box-nav {
        background-color: #ccc;
        background-image: url(http://127.0.0.1:8000/images/header/header.jpg);

        &_list {
          margin: 0;
          list-style: none;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          padding: 10px 10px;
        }

        &_listItem {
          padding-right: 10px;
          background: transparent;
          font-size: 1rem;
          line-height: 1;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1;

          a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            padding: 11px 0;
            text-decoration: none;
            color: inherit;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            background-color: #FFF;

            p {
              color: #000;
            }

            i {
              font-size: 30px;
              color: #000;
            }
          }

          &_ico {
            position: relative;
            width: 30px;
            height: 30px;
            background-repeat: no-repeat;
            background-size: cover;
            margin-bottom: 6px;
          }

          &:last-child {
            padding-right: 0;
          }
        }
      }

      .l-drawer_nav {
        display: block;

        ul {
          list-style: none;

          li {
            font-size: 1.3rem;
            line-height: 1.5;

            a {
              border: 0;
              text-align: left;
              -webkit-appearance: none;
              padding: 14px 20px 14px 20px;
              border-bottom: 1px solid #c7c2bf;
              width: 100%;
              text-decoration: none;
              color: #000;
              letter-spacing: 1px;
              font-size: 14px;
              display: flex;
              flex-direction: row;
              flex-wrap: nowrap;
              justify-content: space-between;
              align-items: center;
            }
          }
        }
      }

      p.h-note {
        padding: 30px 30px 30px 40px;
        color: #ea4e09;
        font-size: 13px;
        letter-spacing: 2px;
        line-height: 1.5;
        font-weight: bold;
        position: relative;
        margin-top: 20px;

        &:before {
          content: "※";
          position: absolute;
          left: 28px;
          top: 28px;
          font-weight: normal;
          font-size: 15px;
        }
      }

      .c-btnGroup {
        margin-top: 20px;
        margin-bottom: 0;

        ul {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          margin-top: -5px;
          margin-bottom: -5px;

          li {
            text-align: center;
            margin-top: 5px;
            margin-bottom: 5px;
            width: 100%;

            a.c-btn {
              display: inline-block;
              width: 90%;
              max-width: 90%;
              min-width: 48px;
              min-height: 0;
              -webkit-transition: background .3s, color .3s;
              transition: background .3s, color .3s;
              text-align: center;
              text-decoration: none;
              line-height: 1.2;
              -webkit-appearance: none;
              position: relative;
              padding: 12px 20px;
              border: 1px solid #ff5804;
              background-color: #ffffff;
              color: #ff5804;
              font-size: 1.3rem;

              i {
                &.el-icon--right {
                  float: right;
                  font-size: 14px;
                }

                &.fa {
                  font-size: 15px;
                  margin-right: 5px;
                }
              }
            }
          }
        }
      }
    }
  }
}

a {
  text-decoration: none;
  color: $color-bk;
  transition: .3s;
}

a:hover {
  opacity: .7;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

dl, dd {
  margin: 0;
}

input[type="checkbox"] {
  border: 1px solid $color-d-bl;
  border-radius: 2px;
  margin: 0;
  margin-right: 11px;
  width: 16px;
  height: 16px;
}

.p-has-checkbox {
  display: flex;
  align-items: center;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="password"],
select {
  border: 1px solid #D6D3D0;
  border-radius: 6px;
  max-width: 100%;
  width: 100%;
  height: 48px;
  padding: 0 9px;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.has-bg-gr {
  background-color: #DBDBDB;
}

.btn-pattern_3 {
  height: 52px;
  background-color: transparent;
  border: 1px solid #A9A9A9;
  width: 172px;
  padding: 0;
}

.btn-pattern_4 {
  height: 52px;
  border: none;
  background-color: #C8C8C8;
  width: 158px;
  padding: 0;
}

.btn-pattern_5 {
  border: 1px solid #DA7990;
  color: #DA7990;
  // height: 36px;
  padding: 7.5px 25px;
  display: inline-block;
  background-color: transparent;
}

.has-arrow-left,
.has-arrow-right {
  position: relative;
  padding-left: 24px;
  display: inline-block;

  &::before {
    content: "";
    width: 17px;
    height: 10px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}

.has-arrow-left {
  &::before {
    background: url(../images/btn/arrow-left-bk.svg) no-repeat center center/contain;
  }
}

.has-arrow-right {
  &::before {
    background: url(../images/btn/arrow-right-bk.svg) no-repeat center center/contain;
  }
}

.text-link {
  color: $color-rd;
  font-size: 1.1428571428571rem;

  &:hover {
    color: $color-rd;
  }
}

.has-icon-sakura {
  a {
    position: relative;

    &:before {
      content: '';
      width: 20px;
      height: 19px;
      background: url(../images/icon/sakura.png) no-repeat center center/contain;
      position: absolute;
      top: 0;
      left: 0;
    }
  }

}

// sidemenu
.has-side {
  display: flex;

  .side {
    width: 20%;
  }

  .content {
    width: 80%;
  }
}

.side-link {
  ul {
    &:not(:last-of-type) {
      margin-bottom: 28px;
    }

    li {
      &:not(:last-of-type) {
        margin-bottom: 28px;
      }

      a {
        padding-left: 30px;
      }
    }
  }
}

// form
.radio-dl {
  label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;

    &::before,
    &::after {
      content: "";
      display: block;
      border-radius: 50%;
      position: absolute;
      transform: translateY(-50%);
      top: 50%;
    }

    &::before {
      background-color: transparent;
      border: 1.33px solid #BCBCBC;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      left: 5px;
    }

    &::after {
      background-color: #BCBCBC;
      border-radius: 50%;
      opacity: 0;
      width: 8px;
      height: 8px;
      left: 10px
    }
  }

  input:checked + label::after {
    opacity: 1;
  }

  .radio-btn {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
  }
}

// font-color
.text-rd {
  color: $color-rd;
}

// font-size
.fs-pc-16 {
  font-size: 1.1428571428571rem;
}

/* mypage common */
.mypage_keep,
.mypage,
.mypage_virtual,
.keep,
.product_detail {
  .about-service-item {
    display: flex;

    .item-left {
      width: 34%;
      padding: 52px 0;

      &.deposit {
        background: url(../images/about/deposit.jpg) no-repeat center center/cover;
      }

      &.try {
        background: url(../images/about/try.jpg) no-repeat center center/cover;
      }

      &.borrow {
        background: url(../images/about/borrow.jpg) no-repeat center center/cover;
      }

      p {
        color: $color-wh;
        text-align: center;
      }

      .p1 {
        font-size: 3.4285714285714rem;
      }

      .p2 {
        font-size: 1.7142857142857rem;
      }
    }

    .item-right {
      width: 66%;
      background-color: $color-drd;
      color: $color-wh;
      padding: 26px 68px 26px 26px;
      position: relative;
      display: flex;
      align-items: center;

      p {
        line-height: calc(24 / 14);
        // font-size: 0.66142857142857rem;
      }
    }
  }
}

/* //mypage common */

/* mypage_keep.html keep.html */
.mypage_keep,
.keep {

  .content-inner {
    margin-top: 48px;
  }

  .form-wrap {
    .form-item:not(:last-of-type) {
      margin-bottom: 24px;
    }

    .name-item {
      display: flex;
      gap: 23px;

      dd {
        input[type="text"] {
          width: 257px;
        }
      }
    }

    .address-item {
      dd {
        input[type="text"] {
          width: 537px;
        }
      }
    }

    dl {
      dt {
        margin-bottom: 8px;
      }
    }

    button {
      border: none;
      background-color: transparent;
    }
  }
}

/* //mypage_keep.html */

/* mypage.html */
.mypage {
  .p1 {
    margin-bottom: 34px;
  }

  .filter-wrap {
    background: url(../images/mypage/filter-bg.jpg) no-repeat center center/cover;
    padding: 26px 57px 16px 161px;
  }

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

    dt {
      width: calc(100% - 631px);
      text-align: right;
      padding-right: 32px;
    }

    dd {
      padding: 12px 16px;
      background-color: #fff;
      width: 631px;

      .type-ul,
      .color-ul {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        font-size: 0.85714285714286rem;

        button {
          border: 1px solid #A2A2A2;
          border-radius: 4px;
          background-color: #fff;
        }
      }

      .type-ul {
        button {
          padding: 3px 18px;
        }
      }

      .color-ul {
        button {
          padding: 3.5px 16px 2.5px 31px;
          position: relative;

          &::before {
            content: '';
            width: 16px;
            height: 16px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 12px;
          }

          &.red {
            &::before {
              background-color: #F56767;
            }
          }

          &.blue {
            &::before {
              background-color: #3186C3;
            }
          }

          &.green {
            &::before {
              background-color: #4DA54B;
            }
          }

          &.yellow {
            &::before {
              background-color: #F5D667;
            }
          }

          &.purple {
            &::before {
              background-color: #674CB5;
            }
          }

          &.brown {
            &::before {
              background-color: #82553C;
            }
          }

          &.pink {
            &::before {
              background-color: #FFBBBB;
            }
          }
        }
      }

      .price-input {
        position: relative;
        display: inline-block;

        &::before {
          content: '¥';
          font-size: 1rem;
          position: absolute;
          top: 49%;
          transform: translateY(-50%);
          left: 12px;
        }

        input {
          width: 120px;
          padding-left: 32px;
        }
      }
    }

    &.price-dl {
      span {
        padding: 0 16px;
      }
    }
  }

  .btn-wrap {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
  }

  .product-inner {
    padding-top: 68px;

    .product-list {
      margin-top: 67px;
      display: flex;
      flex-wrap: wrap;
      row-gap: 49px;
      margin-left: -46px;
      margin-right: -46px;

      &-li {
        padding-left: 46px;
        padding-right: 46px;
        width: 33.33333333%;
      }
    }

    .tab-list {
      display: flex;
      margin-left: -5.79px;
      margin-right: -5.79px;
      margin-bottom: 33px;

      li {
        padding: 0 5.79px;
        width: 25%;
        font-size: 12px;
        text-align: center;

        .li-inner {
          background-color: #D7D7D7;
          border-radius: 3.44px;
          padding: 2px 0;
        }
      }
    }

    .has-disc {
      position: relative;
      padding-left: 18px;

      &::before {
        content: '';
        width: 10px;
        height: 10px;
        background-color: #D9D9D9;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        border-radius: 50%;
      }
    }

    .link-wrap {
      margin-top: 33px;

      .to-detail {
        margin-right: 29px;
      }
    }
  }

  .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    padding-right: 25px;
  }
}

/* //mypage.html */

/* mypage_virtual.html */
.mypage_virtual {
  .p1 {
    margin-top: 31px;
  }

  .qr-img {
    margin-top: 35px;
  }

  .flow-wrap {
    background-color: #F7F3F3;
    padding: 48px 36px 100px;

    ul {
      display: flex;
      margin-left: -15.5px;
      margin-right: -15.5px;
      margin-top: 36px;

      li {
        width: 25%;
        height: 286px;
        padding: 0 15.5px;

        .li-inner {
          background-color: #fff;
          height: 100%;
        }

        p {
          margin-top: 9px;
        }
      }
    }
  }

  .to-virtual {
    background-color: #E3E3E3;
    text-align: center;
    font-size: 24px;
    display: block;
    margin-top: 32px;
    padding: 24px 0;
  }

  .filter-wrap {
    margin-top: 88px;

    .p3 {
      margin-top: 66px;
    }

    dl {
      display: flex;
      align-items: center;
      height: 64px;

      &.type-dl,
      &.color-dl {
        height: 108px;
      }

      dt {
        width: calc(100% - 631px);
        text-align: right;
        padding-right: 32px;
        background-color: #DEDEDE;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
      }

      dd {
        padding: 12px 16px;
        background-color: #fff;
        width: 631px;

        .type-ul,
        .color-ul {
          display: flex;
          flex-wrap: wrap;
          gap: 14px;
          font-size: 0.85714285714286rem;

          button {
            border: 1px solid #A2A2A2;
            border-radius: 4px;
            background-color: #fff;
          }
        }

        .type-ul {
          button {
            padding: 3px 18px;
          }
        }

        .color-ul {
          button {
            padding: 3.5px 16px 2.5px 31px;
            position: relative;

            &::before {
              content: '';
              width: 16px;
              height: 16px;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 12px;
            }

            &.red {
              &::before {
                background-color: #F56767;
              }
            }

            &.blue {
              &::before {
                background-color: #3186C3;
              }
            }

            &.green {
              &::before {
                background-color: #4DA54B;
              }
            }

            &.yellow {
              &::before {
                background-color: #F5D667;
              }
            }

            &.purple {
              &::before {
                background-color: #674CB5;
              }
            }

            &.brown {
              &::before {
                background-color: #82553C;
              }
            }

            &.pink {
              &::before {
                background-color: #FFBBBB;
              }
            }
          }
        }

        .price-input {
          position: relative;
          display: inline-block;

          &::before {
            content: '¥';
            font-size: 1rem;
            position: absolute;
            top: 49%;
            transform: translateY(-50%);
            left: 12px;
          }

          input {
            width: 120px;
            padding-left: 32px;
          }
        }
      }

      &.price-dl {
        span {
          padding: 0 16px;
        }
      }
    }

    .btn-wrap {
      display: flex;
      gap: 24px;
      justify-content: center;
      margin-top: 40px;
    }

  }

  .product-inner {
    padding-top: 68px;

    .product-list {
      margin-top: 67px;
      display: flex;
      flex-wrap: wrap;
      row-gap: 49px;
      margin-left: -46px;
      margin-right: -46px;

      &-li {
        padding-left: 46px;
        padding-right: 46px;
        width: 33.33333333%;
      }
    }

    .tab-list {
      display: flex;
      margin-left: -5.79px;
      margin-right: -5.79px;
      margin-bottom: 33px;

      li {
        padding: 0 5.79px;
        width: 25%;
        font-size: 12px;
        text-align: center;

        .li-inner {
          background-color: #D7D7D7;
          border-radius: 3.44px;
          padding: 2px 0;
        }
      }
    }

    .has-disc {
      position: relative;
      padding-left: 18px;

      &::before {
        content: '';
        width: 10px;
        height: 10px;
        background-color: #D9D9D9;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        border-radius: 50%;
      }
    }

    .link-wrap {
      margin-top: 33px;

      .to-detail {
        margin-right: 29px;
      }
    }
  }

  .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
    padding: 8px 16px;
    background-color: #CFCFCF;

    .sort1,
    .sort2 {
      background-color: #FFF;
      border-radius: 4px;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}

/* //mypage_virtual.html */

/* rental_history.html */
.rental_history {
  .type-ul {
    padding-top: 10px;
    font-size: 16px;
    display: flex;
    gap: 63px;
  }

  .table-wrap {
    table {
      width: 100%;
    }

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

      .product {
        width: 35%;
      }

      .category {
        width: 12%;
      }

      .date {
        width: 15%;
      }

      .address {
        width: 19%;
      }

      .status {
        width: 16%;

        span {
          background-color: #F7F3F3;
          padding: 4px 10px 4px 28px;
          position: relative;
          border-radius: 2px;

          &::before {
            content: '';
            width: 8px;
            height: 8px;
            background-color: #F17575;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 10px;
          }
        }
      }

      &:not(:last-of-type) {
        margin-bottom: 56px;
      }
    }

    th {
      text-align: left;
      font-size: 16px;
    }

    td {
      display: flex;
      gap: 26px;
      align-items: center;
    }
  }

  .icon-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-right: 0;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 20px;

    .btn-view {
      cursor: pointer;
      background-color: #fff;
      border: solid 1px #fff;
      padding: 5px;
      border-radius: 2px;
      display: flex;
      height: 28px;
      width: 28px;

      &.active, &:hover {
        background-color: #f7f7f7;
        border: solid 1px #dcdcdc;
      }
    }
  }
}

/* //rental_history.html */

/* registration_information.html */
.registration_information {
  .content-inner {
    margin-top: 116px;
  }

  .info-wrap {
    display: flex;
    align-items: center;
    margin-left: -27.5px;
    margin-right: -27.5px;

    .info-left {
      width: 83%;
      padding: 0 27.5px;
    }

    .info-right {
      width: 17%;
      padding: 0 27.5px;
    }

    &:not(:last-of-type) {
      margin-bottom: 40px;
    }
  }

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

    dt {
      color: $color-gr;
      width: 144px;
    }

    dd {
      width: calc(100% - 144px);
      padding-left: 144px;
    }
  }

  .certification {
    dd {
      span {
        position: relative;
        padding-left: 46px;

        &::before {
          content: '';
          width: 18px;
          height: 13px;
          background: url(../images/icon/check-no-circle.svg) no-repeat center center/contain;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 10px;
        }
      }
    }
  }
}

/* //registration_information.html */

/* delivery_address.html */
.delivery_address {
  .form-wrap {
    margin-top: 105px;
  }

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

    &:not(:last-of-type) {
      margin-bottom: 50px;
    }

    dt {
      color: $color-gr;
      width: 241px;
      margin-bottom: 22px;
    }

    dd {
      width: calc(100% - 241px);
      padding-left: 72px;
      display: flex;
      align-items: center;
      gap: 16px;

      input {
        max-width: 100%;
      }

      & > span {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.71428571428571rem;
        background-color: #fff;
        padding: 0 16px;
        height: 28px;
        width: 70px;
        margin-bottom: 22px;
      }
    }
  }

  .btn-wrap {
    margin-top: 50px;

    .change-address {
      background-color: #DEDEDE;
      border: none;
      font-size: 24px;
    }
  }

}

/* //delivery_address.html */

/* faq.html */
.faq {
  .link-ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    row-gap: 16px;

    li {
      width: 50%;
      padding: 0 20px;

      a {
        border: 1px solid #000000;
        padding: 20px 0 20px 56px;
        position: relative;
        display: inline-block;
        width: 100%;

        &::before {
          content: '';
          width: 17px;
          height: 9px;
          background: url(../images/btn/arrow-right-bk.svg) no-repeat center center/contain;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 23px;
        }
      }
    }

  }
}

/* //faq.html */

/* contact.html */
.contact {
  p.has-bg-color {
    background-color: #E3E3E3;
  }

  .radio-dl {
    input {
      display: block;
    }

    label {
      display: block;
    }
  }

  .information {
    dl {
      display: flex;
      margin-left: -4px;
      margin-right: -4px;
    }

    dt {
      width: 40%;
      padding: 0 4px;
    }

    dd {
      width: 60%;
      padding: 0 4px;
    }
  }

  textarea {
    width: 100%;
  }
}

/* //contact.html */

/* withdrawal.html */
.withdrawal {
  &-wrap {
    background-color: $color-l-pk;
    padding: 48px 36px 36px;
  }

  &-btn {
    margin-top: 90px;
    color: #000;
  }
}

/* //withdrawal.html */

/* product_detail.html */
.product_detail {
  .product-detail-inner {
    display: flex;
    margin-left: -9px;
    margin-right: -9px;
  }

  .product-detail-left,
  .product-detail-right {
    padding: 0 9px;

    .inner {
      background-color: #E9E9E9;
      height: 100%;
    }
  }

  .product-detail-left {
    width: 69%;
  }

  .product-detail-right {
    width: 31%;

    .inner {
      padding: 34px 24px 124px;
    }

    a {
      background-color: #FFF;
      display: block;
      max-width: 284px;
      padding: 23px 0;
      text-align: center;

      &:not(:last-of-type) {
        margin-bottom: 16px;
      }
    }
  }

  .calendar-wrap {
    background-color: #CACACA;
    height: 299px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rental-reservation {
    background-color: #9E9E9E;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
}

/* //product_detail.html */

/* photo_registration.html */
.photo_registration {
  .point-wrap {
    background-color: #F7F3F3;
    padding: 48px 36px 100px;

    ul {
      display: flex;
      margin-left: -15.5px;
      margin-right: -15.5px;
      margin-top: 36px;

      li {
        width: 25%;
        height: 286px;
        padding: 0 15.5px;

        .li-inner {
          background-color: #fff;
          height: 100%;
        }

        p {
          margin-top: 9px;
        }
      }
    }
  }

  select {
    max-width: 257px;
  }
}

/* //photo_registration.html */

/* profile.html */
/* mailandtel.html */
/* password.html */
.profile,
.mailandtel,
.password {
  dl {
    display: flex;
    align-items: center;

    dt {
      color: $color-gr;
      width: 144px;
    }

    dd {
      width: calc(100% - 144px);
      padding-left: 144px;
    }

    &.phone-dl {
      dd {
        position: relative;

        .optional {
          position: absolute;
          left: 90px;
          top: 50%;
          transform: translateY(-50%);
        }
      }
    }
  }
}

.password {
  dl {
    dt {
      width: 192px;
    }

    dd {
      width: calc(100% - 192px);
    }
  }

  select:first-of-type {
    max-width: 216px;
  }
}

/* //password.html */
/* //mailandtel.html */
/* //profile.html */

/* certification.html */
.certification {
  .certification-wrap {
    background-color: #F7F3F3;
    padding: 48px 36px 100px;

    ul {
      display: flex;
      margin-left: -15.5px;
      margin-right: -15.5px;
      margin-top: 36px;

      li {
        width: 33.3333333%;
        height: 286px;
        padding: 0 15.5px;

        .li-inner {
          background-color: #fff;
          height: 100%;
        }

        p {
          margin-top: 9px;
        }
      }
    }
  }
}

/* //certification.html */

.saved_address {
  .change-saved-address-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .info-left {
      width: 83%;
    }

    .info-right {
      width: 17%;
    }

    &:not(:last-of-type) {
      margin-bottom: 40px;
    }
  }
}

.withdrawal_process,
.withdrawal_complete {
  .withdrawal-process-wrap {
    background-color: $color-l-pk;
    padding: 30px;

    .p1 {
      border-bottom: 1px solid #DA7990;
    }

    ul {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      row-gap: 1rem;

      li {
        width: 50%;
      }
    }

    textarea {
      width: 100%;
      border: none;
    }

    .btn-wrap {
      a:first-of-type {
        margin-right: 16px;
      }
    }

    .withdrawal-btn {
      background-color: #FFF;
      width: 262px;
      display: inline-block;
    }
  }
}
