.info-menu {
  margin-top: 57px;
}
.info-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1.6666666667%;
}
.info-menu__item {
  position: relative;
  width: 23.75%;
  height: 80px;
  transition: 0.2s;
}
.info-menu__item::before, .info-menu__item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 25px;
  height: 25px;
  background: center/cover no-repeat;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.2s;
  pointer-events: none;
  z-index: 1;
}
.info-menu__item::before {
  background-image: url(../img/common/circle-arrow_b.svg);
}
.info-menu__item::after {
  background-image: url(../img/common/circle-arrow_w.svg);
  opacity: 0;
}
.info-menu__item:hover::before {
  opacity: 0;
}
.info-menu__item:hover::after {
  opacity: 1;
}
.info-menu__item a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  background: #f5f5f5;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 0 44px 0 65px;
  transition: all 0.3s;
}
.info-menu__item a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}
.info-menu__item a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 35px;
  transform: translate(-50%, -50%);
}
.info-menu__item a:hover {
  background-color: #004490;
  color: #fff;
}
.info-menu__item--flow a::after {
  width: 21px;
  height: 20px;
  background: url(../img/common/icon-cart_b.svg) center/cover no-repeat;
}
.info-menu__item--payment a::after {
  width: 21px;
  height: 17px;
  background: url(../img/info/icon-card02.svg) center/cover no-repeat;
}
.info-menu__item--delivery a::after {
  width: 23px;
  height: 18px;
  background: url(../img/info/icon-delivery02.svg) center/cover no-repeat;
}
.info-menu__item--product a::after {
  width: 22px;
  height: 19px;
  background: url(../img/info/icon-box.svg) center/cover no-repeat;
}
.info-menu__item--return a::after {
  width: 20px;
  height: 24px;
  background: url(../img/info/icon-return.svg) center/cover no-repeat;
}
.info-menu__item--warranty a::after {
  width: 19px;
  height: 23px;
  background: url(../img/info/icon-warranty.svg) center/cover no-repeat;
}
.info-menu__item--support a::after {
  width: 17px;
  height: 22px;
  background: url(../img/info/icon-support.svg) center/cover no-repeat;
}
.info-menu__item--contact a::after {
  width: 17px;
  height: 13px;
  background: url(../img/common/icon-mail_b.svg) center/cover no-repeat;
}

.info-section {
  margin-top: 100px;
}

.info-ttl {
  position: relative;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  background: #004490;
  padding: 15px 10px 15px 76px;
}
.info-ttl::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
}
.info-ttl::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 40px;
  transform: translate(-50%, -50%);
}
.info-ttl--flow::after {
  width: 21px;
  height: 20px;
  background: url(../img/common/icon-cart_b.svg) center/cover no-repeat;
}
.info-ttl--payment::after {
  width: 21px;
  height: 17px;
  background: url(../img/info/icon-card02.svg) center/cover no-repeat;
}
.info-ttl--delivery::after {
  width: 23px;
  height: 18px;
  background: url(../img/info/icon-delivery02.svg) center/cover no-repeat;
}
.info-ttl--product::after {
  width: 22px;
  height: 19px;
  background: url(../img/info/icon-box.svg) center/cover no-repeat;
}
.info-ttl--return::after {
  width: 20px;
  height: 24px;
  background: url(../img/info/icon-return.svg) center/cover no-repeat;
}
.info-ttl--warranty::after {
  width: 19px;
  height: 23px;
  background: url(../img/info/icon-warranty.svg) center/cover no-repeat;
}
.info-ttl--support::after {
  width: 17px;
  height: 22px;
  background: url(../img/info/icon-support.svg) center/cover no-repeat;
}
.info-ttl--contact::after {
  width: 17px;
  height: 13px;
  background: url(../img/common/icon-mail_b.svg) center/cover no-repeat;
}

.info-subttl {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding-left: 21px;
}
.info-subttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 1px);
  width: 4px;
  height: 100%;
  background: #009de0;
  transform: translateY(-50%);
}

.info-text {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.06em;
  margin-top: 18px;
}
.info-text span {
  color: #009de0;
}
.info-text .underline {
  font-weight: 700;
  color: #111;
  background: linear-gradient(to bottom, transparent 60%, #fff000 60%, #fff000 100%, transparent 100%);
  padding-bottom: 2px;
}
.info-text a {
  position: relative;
  letter-spacing: 0.05em;
  color: #009de0;
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: all 0.3s;
  padding-right: 19px;
}
.info-text a::after {
  display: inline-block;
  content: "";
  vertical-align: -4px;
  width: 19px;
  height: 19px;
  background: url(../img/common/circle-arrow_lb.svg) center/cover no-repeat;
  transition: all 0.3s;
}
.info-text a:hover {
  color: #004490;
}
.info-text a:hover::after {
  background-image: url(../img/common/circle-arrow_b.svg);
}

.info-c-contact {
  background: #e5f8ff;
  padding: 27px 0 32px;
}
.info-c-contact__inner {
  max-width: 1120px;
  padding: 0 20px;
  margin: auto;
}
.info-c-contact__desc {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-align: center;
}
.info-c-contact .c-contact__list {
  gap: 27px;
  margin-top: 21px;
}
.info-c-contact .c-contact-item {
  border: 2px solid #004490;
  box-shadow: none;
}
.info-c-contact .c-contact-item--tel .c-contact-item__ttl::before {
  width: 24px;
  height: 26px;
  margin-right: 6px;
}
.info-c-contact .c-contact-item--line {
  border-color: #39cd00;
}
.info-c-contact .c-contact-item--line .c-contact-item__ttl::before {
  width: 32px;
  height: 29px;
  margin-right: 4px;
}
.info-c-contact .c-contact-item--mail {
  border-color: #00b3aa;
}
.info-c-contact .c-contact-item--mail .c-contact-item__ttl::before {
  width: 26px;
  height: 20px;
  margin-right: 5px;
}
.info-c-contact .c-contact-item__ttl {
  font-size: 22px;
  height: 61px;
  padding-right: 4px;
}
.info-c-contact .c-contact-item__body {
  height: 133px;
}
.info-c-contact .c-contact-item .c-btn {
  max-width: 288px;
  padding-bottom: 14px;
}
.info-c-contact .c-contact-item .c-btn span {
  font-size: 16px;
  padding-left: 6px;
  padding-right: 22px;
}
.info-c-contact .c-contact-item__tel-wrap {
  padding-bottom: 5px;
}
.info-c-contact .c-contact-item__tel-catch {
  font-size: 13px;
  line-height: 1.5384615385;
  padding: 8px 20px;
  margin-bottom: 10px;
  transform: translateX(18px);
}
.info-c-contact .c-contact-item__tel-catch::before {
  top: -10px;
  left: -40px;
  width: 50px;
  height: 57px;
}
.info-c-contact .c-contact-item__tel-num {
  font-size: 32px;
}
.info-c-contact .c-contact-item__tel-time {
  margin-top: 0;
}

.info-flow {
  margin-top: 57px;
}
.info-flow__content {
  margin-top: 23px;
}
.info-flow__content:nth-of-type(2) {
  margin-top: 39px;
}
.info-flow__list {
  display: flex;
  flex-flow: column;
  gap: 6px;
  margin-top: 16px;
}
.info-flow .info-text {
  line-height: 1.5;
  margin-top: 0;
}
.info-flow .info-text .dot {
  letter-spacing: 0.12em;
  color: #111;
}
.info-flow .info-text a {
  font-weight: 700;
  padding-right: 22px;
}
.info-flow .info-c-contact {
  margin-top: 21px;
}

.info-flow-order {
  margin-top: 63px;
}
.info-flow-order__list {
  display: flex;
  gap: 2.5%;
}
.info-flow-order__item {
  position: relative;
  width: 18%;
  display: flex;
  flex-flow: column;
  background: #004490;
  border-radius: 10px;
  text-align: center;
  padding: 41px 1.5% 28px;
}
.info-flow-order__item::before {
  position: absolute;
  content: "";
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 77px;
  height: 73px;
  background: url(../img/common/star.svg) center/cover no-repeat;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 84px;
  letter-spacing: 0.02em;
  color: #004490;
  display: flex;
  justify-content: center;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
}
.info-flow-order__item::after {
  position: absolute;
  content: "";
  top: calc(50% - 6px);
  left: -9.7222222222%;
  transform: translateY(-50%);
  width: 15px;
  height: 28px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #004490;
}
.info-flow-order__item:nth-child(1) {
  background: #41bbe0;
}
.info-flow-order__item:nth-child(1)::before {
  content: "01";
}
.info-flow-order__item:nth-child(1)::after {
  content: none;
}
.info-flow-order__item:nth-child(1) .info-flow-order__img::after {
  width: 89px;
  height: 75px;
  background: url(../img/info/icon-order01.svg) center/cover no-repeat;
}
.info-flow-order__item:nth-child(2) {
  background: #4dc2d5;
}
.info-flow-order__item:nth-child(2)::before {
  content: "02";
}
.info-flow-order__item:nth-child(2):after {
  background: #4dc2d5;
}
.info-flow-order__item:nth-child(2) .info-flow-order__img::after {
  width: 82px;
  height: 76px;
  background: url(../img/info/icon-order02.svg) center/cover no-repeat;
}
.info-flow-order__item:nth-child(3) {
  background: #a4cb91;
}
.info-flow-order__item:nth-child(3)::before {
  content: "03";
}
.info-flow-order__item:nth-child(3):after {
  background: #a4cb91;
}
.info-flow-order__item:nth-child(3) .info-flow-order__img::after {
  width: 82px;
  height: 75px;
  background: url(../img/info/icon-order03.svg) center/cover no-repeat;
  margin-left: 6px;
}
.info-flow-order__item:nth-child(4) {
  background: #ffc950;
}
.info-flow-order__item:nth-child(4)::before {
  content: "04";
}
.info-flow-order__item:nth-child(4):after {
  background: #ffc950;
}
.info-flow-order__item:nth-child(4) .info-flow-order__img::after {
  width: 109px;
  height: 74px;
  background: url(../img/info/icon-order04.svg) center/cover no-repeat;
  margin-left: 6px;
}
.info-flow-order__item:nth-child(5) {
  background: #fca04c;
}
.info-flow-order__item:nth-child(5)::before {
  content: "05";
}
.info-flow-order__item:nth-child(5):after {
  background: #fca04c;
}
.info-flow-order__item:nth-child(5) .info-flow-order__img::after {
  width: 115px;
  height: 75px;
  background: url(../img/info/icon-order05.svg) center/cover no-repeat;
}
.info-flow-order__img {
  order: 1;
  position: relative;
  width: 100%;
  height: 112px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-top: 11px;
}
.info-flow-order__img::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.info-flow-order__text {
  display: contents;
}
.info-flow-order__ttl {
  order: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.info-flow-order__desc {
  order: 2;
  font-size: 17px;
  line-height: 1.4117647059;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.info-flow-order__caution {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

.info-payment {
  margin-top: 97px;
}
.info-payment .info-subttl {
  margin-top: 40px;
}
.info-payment .info-subttl--01, .info-payment .info-subttl--02 {
  margin-top: 36px;
}
.info-payment .info-subttl--03 {
  margin-top: 34px;
}
.info-payment .info-text--gray {
  background: #f5f5f5;
  padding: 15px 30px;
  margin-top: 25px;
}
.info-payment .info-text--bank {
  margin-top: 10px;
}
.info-payment .info-text--paypay {
  margin-top: 10px;
}
.info-payment .info-text--amazon {
  background: #f5f5f5;
  padding: 15px 30px 26px;
  margin-top: 13px;
}
.info-payment .info-text--amazon span {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #111;
  padding-left: 30px;
  margin-bottom: 3px;
}
.info-payment .info-text--amazon span::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 4px;
  top: 12px;
  left: 0;
  background: currentColor;
}

.info-payment-list {
  display: flex;
  gap: 1.6666666667%;
  margin-top: 14px;
}

.info-payment-item {
  width: 23.75%;
  background: #f5f5f5;
  border-radius: 10px;
}
.info-payment-item__img {
  position: relative;
}
.info-payment-item__img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: 3px solid #f5f5f5;
  outline-offset: -3px;
  border-radius: 10px 10px 0 0;
}
.info-payment-item__img img {
  width: 100%;
}
.info-payment-item__text {
  padding: 15px 9.8245614035% 24px;
}
.info-payment-item__ttl {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #c61d24;
  text-align: center;
}
.info-payment-item__desc {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4666666667;
  letter-spacing: 0.04em;
  margin-top: 13px;
}
.info-payment-item__desc span {
  display: inline-block;
}

.info-delivery .info-subttl {
  margin-top: 35px;
}
.info-delivery .info-subttl--01 {
  margin-top: 23px;
}
.info-delivery__img {
  margin: 11px 0 39px;
}
.info-delivery__img img {
  outline: 3px solid #f5f5f5;
  outline-offset: -2px;
  border-radius: 10px;
}

.info-product {
  margin-top: 97px;
}
.info-product .info-subttl {
  margin-top: 35px;
}
.info-product .info-subttl--01 {
  margin-top: 23px;
}
.info-product .info-text {
  margin-top: 20px;
}

.info-return {
  margin-top: 96px;
}
.info-return .info-subttl {
  margin-top: 35px;
}
.info-return .info-subttl--01 {
  margin-top: 23px;
}
.info-return .info-text {
  margin-top: 9px;
}

.info-warranty {
  margin-top: 96px;
}
.info-warranty .info-subttl {
  margin-top: 35px;
}
.info-warranty .info-subttl--01 {
  margin-top: 23px;
}
.info-warranty .info-subttl--01 + .info-text {
  margin-top: 9px;
}
.info-warranty .info-text {
  margin-top: 19px;
}
.info-warranty .info-text--gray {
  background: #f5f5f5;
  padding: 24px 30px 25px;
  margin-top: 15px;
}
.info-warranty .info-text--gray .dot {
  letter-spacing: 0.18em;
  color: #111;
}
.info-warranty__btn {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.info-warranty__btn .c-btn {
  background-color: #009de0;
  border-color: #009de0;
}
.info-warranty__btn .c-btn:hover {
  background-color: #fff;
  color: #009de0;
}
.info-warranty__btn .c-btn span::after {
  background-image: url(../img/common/circle-arrow_lb.svg);
}

.info-warranty-list {
  display: flex;
  flex-flow: column;
  gap: 2px;
  margin-top: 19px;
}

.info-warranty-item {
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 7px;
}
.info-warranty-item::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  top: 11px;
  left: 0;
  border-radius: 50%;
  background: #009de0;
}

.info-support .info-c-contact {
  padding-bottom: 34px;
  margin-top: 25px;
}
.info-support .info-c-contact .c-contact__note {
  font-size: 14px;
  color: #555555;
  margin-top: 8px;
}

.info-contact .info-subttl {
  margin-top: 34px;
}
.info-contact .info-subttl--01 {
  margin-top: 23px;
}
.info-contact .info-subttl--04 {
  margin-top: 35px;
}
.info-contact .info-text {
  margin-top: 9px;
}

.info-bnr {
  text-align: center;
  padding: 78px 0 80px;
}
.info-bnr a {
  position: relative;
  display: inline-block;
  max-width: 1000px;
  width: 100%;
  aspect-ratio: 1000/250;
  margin: auto;
  transition: opacity 0.2s ease;
}
.info-bnr a:hover {
  opacity: 0.75;
}
.info-bnr img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.info-bnr__ttl {
  position: relative;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #004490;
  margin-top: 9.9%;
}
.info-bnr__text {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #004490;
  padding-right: 24px;
  margin-top: 1.6%;
}
.info-bnr__text::after {
  position: absolute;
  content: "";
  top: 2px;
  bottom: 0;
  margin: auto;
  right: -1px;
  width: 18px;
  height: 18px;
  background: url(../img/common/circle-arrow_b.svg) center/cover no-repeat;
}
@media screen and (max-width: 1200px) {
  .info-menu__item::after {
    right: 10px;
    width: 22px;
    height: 22px;
  }
  .info-menu__item a {
    font-size: 16px;
    padding-right: 34px;
  }
  .info-c-contact__inner {
    padding: 0 10px;
  }
  .info-c-contact .c-contact__list {
    gap: 15px;
  }
  .info-c-contact .c-contact-item__tel-catch {
    font-size: 12px;
    line-height: 1.5;
  }
  .info-flow-order__desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 959px) {
  .info-menu__list {
    gap: 10px 1.0869565217%;
  }
  .info-menu__item {
    width: 32.6086956522%;
  }
  .info-c-contact {
    margin: 20px -20px 0;
  }
  .info-c-contact__desc {
    font-size: 14px;
  }
  .info-c-contact .c-contact-item {
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }
  .info-c-contact .c-contact-item__ttl {
    height: 35px;
    font-size: 16px;
    letter-spacing: 0.04em;
    padding-right: 20px;
  }
  .info-c-contact .c-contact-item--tel .c-contact-item__ttl::before {
    width: 14px;
    height: 15.5px;
    margin-right: 8px;
  }
  .info-c-contact .c-contact-item--line .c-contact-item__ttl::before {
    width: 22.5px;
    height: 20px;
    margin-right: 4px;
  }
  .info-c-contact .c-contact-item--mail .c-contact-item__ttl::before {
    width: 17.5px;
    height: 13px;
    margin-right: 6px;
  }
  .info-c-contact .c-contact-item__body {
    height: 120px;
    padding: 0 12.5px;
  }
  .info-c-contact .c-contact-item .c-btn {
    width: 250px;
  }
  .info-c-contact .c-contact-item .c-btn span {
    font-size: 16px;
  }
  .info-c-contact .c-contact-item__tel-wrap {
    padding: 0 0 8px;
  }
  .info-c-contact .c-contact-item__tel-catch {
    font-size: 10px;
    margin: 0 auto 9px;
    padding: 6px 12px;
  }
  .info-c-contact .c-contact-item__tel-catch::before {
    top: -10px;
  }
  .info-c-contact .c-contact-item__tel-catch::after {
    left: 32px;
    border-width: 10px 12px 0 0;
  }
  .info-c-contact .c-contact-item__tel-num {
    font-size: 24px;
    letter-spacing: 0.02em;
  }
  .info-c-contact .c-contact-item__tel-time {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .info-flow-order {
    margin-top: 37px;
  }
  .info-flow-order__list {
    flex-flow: column;
    gap: 30px;
    max-width: 500px;
    margin: auto;
  }
  .info-flow-order__item {
    width: 100%;
    flex-flow: row;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    padding: 11px 15px 14px 20px;
  }
  .info-flow-order__item::before {
    top: -21px;
    left: -22px;
    transform: none;
    width: 45px;
    height: 42px;
    font-size: 14px;
    line-height: 49px;
    filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.1));
  }
  .info-flow-order__item::after {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 19px;
    height: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  .info-flow-order__item:nth-child(1) .info-flow-order__img::after {
    width: 45px;
    height: 38px;
  }
  .info-flow-order__item:nth-child(2) .info-flow-order__img::after {
    width: 41px;
    height: 38px;
  }
  .info-flow-order__item:nth-child(3) .info-flow-order__img::after {
    width: 41px;
    height: 38px;
    margin-left: 2px;
  }
  .info-flow-order__item:nth-child(4) .info-flow-order__img::after {
    width: 55px;
    height: 37px;
    margin-left: 2px;
  }
  .info-flow-order__item:nth-child(5) .info-flow-order__img::after {
    width: 58px;
    height: 38px;
    margin-left: -1px;
  }
  .info-flow-order__img {
    flex: 0 0 90px;
    width: 90px;
    height: 56px;
    border-radius: 5px;
    margin-top: 3px;
  }
  .info-flow-order__text {
    order: 1;
    display: block;
    text-align: left;
    min-height: 63px;
  }
  .info-flow-order__ttl {
    font-size: 15px;
    line-height: 1.5333333333;
  }
  .info-flow-order__desc {
    font-size: 13px;
    line-height: 1.5384615385;
    margin-top: 0;
  }
  .info-flow-order__caution {
    font-size: 14px;
    text-align: center;
  }
  .info-payment-list {
    width: 1220px;
    padding-right: 20px;
  }
  .info-payment-list__wrap {
    margin-right: -20px;
    padding-bottom: 20px;
  }
  .info-bnr__ttl {
    font-size: 36px;
  }
  .info-bnr__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .info-menu {
    margin-top: 25px;
  }
  .info-menu__list {
    gap: 10px 3.2835820896%;
  }
  .info-menu__item {
    width: 48.3582089552%;
    height: 55px;
    border-radius: 2.5px;
  }
  .info-menu__item::before, .info-menu__item::after {
    right: 8px;
    width: 15px;
    height: 15px;
  }
  .info-menu__item a {
    font-size: 14px;
    line-height: 1.2142857143;
    letter-spacing: 0;
    padding: 0 25px 0 37px;
  }
  .info-menu__item a::before {
    left: 9px;
    width: 23px;
    height: 23px;
  }
  .info-menu__item a::after {
    left: 20px;
  }
  .info-menu__item--flow a::after {
    width: 12px;
    height: 12px;
  }
  .info-menu__item--payment a::after {
    width: 12px;
    height: 10px;
  }
  .info-menu__item--delivery a::after {
    width: 13px;
    height: 10px;
  }
  .info-menu__item--product a::after {
    width: 13px;
    height: 12px;
  }
  .info-menu__item--return a::after {
    width: 12px;
    height: 14px;
  }
  .info-menu__item--warranty a::after {
    width: 11px;
    height: 13px;
  }
  .info-menu__item--support a::after {
    width: 10px;
    height: 13px;
  }
  .info-menu__item--contact a::after {
    width: 10px;
    height: 8px;
  }
  .info-menu__item span {
    display: inline-block;
  }
  .info-section {
    margin-top: 50px;
  }
  .info-ttl {
    padding: 10px 10px 10px 53px;
  }
  .info-ttl::before {
    left: 10px;
    width: 31px;
    height: 31px;
  }
  .info-ttl::after {
    left: 25px;
  }
  .info-ttl--flow::after {
    width: 16px;
    height: 16px;
  }
  .info-ttl--payment::after {
    width: 18px;
    height: 15px;
  }
  .info-ttl--delivery::after {
    width: 20px;
    height: 15px;
  }
  .info-ttl--product::after {
    width: 18px;
    height: 17px;
  }
  .info-ttl--return::after {
    width: 18px;
    height: 22px;
  }
  .info-ttl--warranty::after {
    width: 17px;
    height: 20px;
  }
  .info-ttl--support::after {
    width: 15px;
    height: 19px;
  }
  .info-ttl--contact::after {
    width: 15px;
    height: 11px;
  }
  .info-subttl {
    font-weight: 700;
    padding-left: 16px;
  }
  .info-subttl::before {
    top: calc(50% + 2px);
    width: 5px;
    border-radius: 2.5px;
  }
  .info-text {
    font-size: 14px;
    line-height: 2;
    margin-top: 10px;
  }
  .info-text a {
    text-underline-offset: 4px;
    padding-right: 18px;
  }
  .info-text a::after {
    vertical-align: -2px;
    width: 14px;
    height: 14px;
  }
  .info-c-contact {
    padding: 22px 0 32px;
  }
  .info-c-contact__inner {
    padding: 0 20px;
  }
  .info-c-contact__desc {
    font-size: 13px;
    line-height: 1.5384615385;
    letter-spacing: 0.06em;
  }
  .info-c-contact .c-contact__list {
    gap: 17px;
    margin-top: 20px;
  }
  .info-c-contact .c-contact-item {
    border-width: 1px;
  }
  .info-c-contact .c-contact-item--tel {
    border: none;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06);
  }
  .info-c-contact .c-contact-item--tel .c-contact-item__ttl {
    height: 40px;
  }
  .info-c-contact .c-contact-item--tel .c-contact-item__ttl::before {
    width: 17px;
    height: 18px;
    margin-right: 12px;
  }
  .info-c-contact .c-contact-item--tel .c-contact-item__body {
    height: 142px;
  }
  .info-c-contact .c-contact-item--line .c-contact-item__ttl::before {
    width: 26px;
    height: 24px;
    margin-right: 8px;
  }
  .info-c-contact .c-contact-item--mail .c-contact-item__ttl::before {
    width: 20px;
    height: 15px;
    margin-right: 12px;
  }
  .info-c-contact .c-contact-item__ttl {
    font-size: 18px;
    height: 41px;
    padding-right: 0;
  }
  .info-c-contact .c-contact-item__body {
    height: 93px;
  }
  .info-c-contact .c-contact-item .c-btn {
    max-width: 294px;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 16px;
  }
  .info-c-contact .c-contact-item .c-btn span {
    font-size: 18px;
    padding-left: 3px;
    padding-right: 26px;
  }
  .info-c-contact .c-contact-item .c-btn span::after {
    width: 18px;
    height: 18px;
  }
  .info-c-contact .c-contact-item__tel-wrap {
    padding-bottom: 0;
  }
  .info-c-contact .c-contact-item__tel-catch {
    font-size: 14px;
    line-height: 1.5;
    border-radius: 17.5px;
    padding: 10px 15px 10px 30px;
    margin-bottom: 11px;
    transform: translateX(10px);
  }
  .info-c-contact .c-contact-item__tel-catch::before {
    top: -3px;
    left: -22px;
    width: 44px;
    height: 54px;
  }
  .info-c-contact .c-contact-item__tel-catch::after {
    left: 39px;
  }
  .info-c-contact .c-contact-item__tel-num {
    font-size: 37px;
  }
  .info-c-contact .c-contact-item__tel-time {
    font-size: 14px;
    margin-top: 5px;
  }
  .info-flow {
    margin-top: 40px;
  }
  .info-flow__content {
    margin-top: 22px;
  }
  .info-flow__content:nth-of-type(2) {
    margin-top: 38px;
  }
  .info-flow__list {
    gap: 14px;
    margin-top: 11px;
  }
  .info-flow .info-text .dot {
    letter-spacing: 0.24em;
  }
  .info-flow .info-text a {
    padding-right: 18px;
  }
  .info-flow .info-c-contact {
    margin: 25px -20px 0;
  }
  .info-flow-order__list {
    max-width: 295px;
  }
  .info-payment {
    margin-top: 50px;
  }
  .info-payment .info-subttl {
    margin-top: 20px;
  }
  .info-payment .info-subttl--01, .info-payment .info-subttl--02 {
    margin-top: 20px;
  }
  .info-payment .info-subttl--03 {
    margin-top: 20px;
  }
  .info-payment .info-text--gray {
    padding: 10px 20px;
    margin-top: 10px;
  }
  .info-payment .info-text--paypay {
    margin-top: 12px;
  }
  .info-payment .info-text--amazon {
    padding: 10px 20px 15px;
    margin-top: 10px;
  }
  .info-payment .info-text--amazon span {
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 2px;
  }
  .info-payment .info-text--amazon span::before {
    width: 15px;
    height: 3px;
  }
  .info-payment-list {
    width: 1390px;
    gap: 10px;
    margin-top: 17px;
  }
  .info-payment-item {
    width: 24.4525547445%;
    border-radius: 5px;
  }
  .info-payment-item__img::before {
    border-radius: 5px 5px 0 0;
  }
  .info-payment-item__text {
    padding: 16px 20px 25px;
  }
  .info-payment-item__ttl {
    font-size: 19px;
    line-height: 1.5263157895;
  }
  .info-payment-item__desc {
    font-size: 16px;
    line-height: 1.4375;
    margin-top: 12px;
  }
  .info-delivery .info-subttl {
    margin-top: 20px;
  }
  .info-delivery .info-subttl--01 {
    margin-top: 20px;
  }
  .info-delivery__img {
    margin: 10px 0 20px;
  }
  .info-delivery__img img {
    outline: 2px solid #f5f5f5;
    outline-offset: -1px;
    border-radius: 5px;
  }
  .info-product {
    margin-top: 50px;
  }
  .info-product .info-subttl {
    margin-top: 20px;
  }
  .info-product .info-subttl--01 {
    margin-top: 20px;
  }
  .info-product .info-text {
    margin-top: 10px;
  }
  .info-return {
    margin-top: 50px;
  }
  .info-return .info-subttl {
    margin-top: 20px;
  }
  .info-return .info-subttl--01 {
    margin-top: 20px;
  }
  .info-return .info-text {
    margin-top: 10px;
  }
  .info-warranty {
    margin-top: 50px;
  }
  .info-warranty .info-subttl {
    margin-top: 20px;
  }
  .info-warranty .info-subttl--01 {
    margin-top: 20px;
  }
  .info-warranty .info-subttl--01 + .info-text {
    margin-top: 10px;
  }
  .info-warranty .info-text {
    margin-top: 20px;
  }
  .info-warranty .info-text--gray {
    padding: 10px 15px;
    margin-top: 10px;
  }
  .info-warranty__btn {
    margin-top: 10px;
  }
  .info-warranty-list {
    gap: 7px;
    margin-top: 10px;
  }
  .info-warranty-item {
    font-size: 14px;
  }
  .info-warranty-item::before {
    top: 10px;
  }
  .info-support .info-c-contact {
    padding-bottom: 20px;
    margin-top: 20px;
  }
  .info-support .info-c-contact .c-contact__note {
    font-size: 13px;
    margin-top: 5px;
  }
  .info-contact .info-subttl {
    margin-top: 20px;
  }
  .info-contact .info-subttl--01 {
    margin-top: 20px;
  }
  .info-contact .info-subttl--04 {
    margin-top: 20px;
  }
  .info-contact .info-text {
    margin-top: 10px;
  }
  .info-bnr {
    padding: 45px 0 50px;
  }
  .info-bnr a {
    max-width: 335px;
    aspect-ratio: 335/150;
  }
  .info-bnr__ttl {
    font-size: 24px;
    margin-top: 55px;
  }
  .info-bnr__text {
    font-size: 12px;
    padding-right: 17px;
    margin-top: 14px;
  }
  .info-bnr__text::after {
    top: 0;
    right: 1px;
    width: 10px;
    height: 10px;
  }
}
