:root {
  --color-black: #1E1E1E;
  --color-gray: #8E8E8E;
  --color-orange: #FFA800;
  --color-red: #FF134C;
  --color-blue: #2D81FF;
  --font-noto-sans: 'Noto Sans JP', sans-serif;
  --font-noto-serif: 'Noto Serif JP', serif;
}

body {
  font-family: var(--font-noto-sans);
  color: var(--color-black);
  line-height: 100%;
  font-size: 16px;
}

.__pc {
  display: block;
}
.__sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .__pc {
    display: none;
  }
  .__sp {
    display: block;
  }
}

a {
  color: var(--color-black);
  transition: all 0.3s;
}

a:hover {
  color: var(--color-black);
  opacity: 0.6;
}

ul,
ol {
  padding: 0;
	list-style: none;
}

p {
  margin: 0;
}

/* button */
.btn-black,
a.btn-black {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: none;
  white-space: nowrap;
  padding: 22px 0;
  font-size: 16px;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-black);
  border-color: var(--color-black);
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.btn-black:hover,
a.btn-black:hover {
  opacity: 0.6;
}

.btn-blue {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: none;
  white-space: nowrap;
  padding: 22px 0;
  font-size: 16px;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  color: #fff;
  background-color: var(--color-blue);
  border-color: var(--color-blue);
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.btn-blue:hover {
  color: #fff;
  opacity: 0.6;
}

.btn-white,
a.btn-white {
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: none;
  white-space: nowrap;
  padding: 22px 0;
  font-size: 16px;
  border-radius: 8px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  color: var(--color-blue);
  background-color:  #fff;
  border: 1px solid var(--color-blue);
  display: block;
  width: 100%;
  transition: all 0.3s;
}

.btn-white:hover,
a.btn-white:hover {
  opacity: 0.6;
  color: var(--color-blue);
}

.btn-blue + .btn-white {
  margin-top: 16px;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  margin: 32px 0;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
}

.breadcrumb-link {
  color: var(--color-blue);
  text-decoration-line: underline;
}

.breadcrumb-link:hover {
  color: var(--color-blue);
}

.breadcrumb img {
  margin: 0 16px;
}

/* text-link */
a.text-link {
  color: var(--color-blue);
  text-decoration-line: underline;
}

.link-more {
  color: var(--color-blue);
  font-size: 14px;
}

.link-more::after {
  content: '';
  display: inline-block;
  background-image: url(../../assets/img/common/link_arrow.svg);
  background-repeat: no-repeat;
  width: 8px;
  height: 12px;
  margin-left: 16px;
}

.link-more:hover {
  color: var(--color-blue);
}

/* form */
.ec-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.44px;
  margin-bottom: 16px;
}

.ec-required {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.96px;
  margin: 0;
}

input:-webkit-autofill {
  transition: background-color 10000s ease-in-out 0s;
}

.ec-input input,
.ec-halfInput input,
.ec-zipInput input,
.ec-telInput input,
.ec-input textarea {
  border-radius: 8px;
  background: #F6F6F6;
  border: none;
  padding: 22px 16px;
  font-size: 16px;
  height: 56px;
  margin-bottom: 0;
}

.ec-input textarea {
  padding: 16px;
}

.ec-input + .ec-input,
.ec-errorMessage + .ec-input {
  margin-top: 16px;
}

.ec-halfInput,
.label-half {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ec-halfInput input[type=text],
.label-half p {
  margin-left: 0;
  width: calc((100% - 24px) / 2);
}

.ec-zipInput input {
  width: 160px;
}

.label-half p {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ec-input input::placeholder,
.ec-halfInput input::placeholder {
  color: var(--color-gray);
  font-size: 16px;
  font-weight: 400;
}

.ec-input input:focus {
  background: #F6F6F6;

}

.ec-select {
  margin-bottom: 0;
}

.ec-select select {
  width: 336px;
  height: 56px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../icon/icon_select.svg');
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 12px 10px;
  border-radius: 4px;
  border: none;
  padding-left: 16px;
  padding-right: 36px;
  font-size: 16px;
}

.ec-birth {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ec-birth select {
  margin: 0;
  width: 25%;
  font-size: 16px;
}

.ec-checkbox input {
  margin-bottom: 0;
  opacity: 0;
  position: absolute;
}

.ec-checkbox input + label::before {
  content: "";
  border-radius: 4px;
  border: 1px solid var(--color-gray);
  background: #fff;
  display: inline-block;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
}

.ec-checkbox input + label::after {
  content: "";
  background-image: url(../icon/icon_check.svg);
  background-repeat: no-repeat;
  position: absolute;
  opacity: 0;
  transition: all .3s;
  top: 7px;
  left: 6px;
  z-index: 1;
  width: 12px;
  height: 9px;
}

.ec-checkbox input:checked + label::before {
  background: var(--color-blue);
}

.ec-checkbox input:checked + label::after {
  opacity: 1;
}

.ec-checkbox input:disabled + label::before {
  background: #DBDBDB;
}

.ec-checkbox label {
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  padding-left: 32px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.form-check {
  padding: 0;
  margin: 0;
}

.ec-radio input {
  display: inline-block;
  font-size: 14px;
  padding-left: 40px;
  position: relative;
}

.ec-radio input {
  opacity: 0;
  position: absolute;
}

.ec-radio label {
  position: relative;
  cursor: pointer;
}

.ec-radio span {
  margin-left: 30px;
}

.ec-radio input + label::before {
  content: "";
  border: 1px solid var(--color-gray);
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: -4px;
  left: 0;
}

.ec-radio input + label::after {
  content: "";
  background: var(--color-blue);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  transition: all .3s;
  width: 12px;
  height: 12px;
  top: 2px;
  left: 6px;
  z-index: 1;
}

.ec-radio input:focus + label::before {
  border: 1px solid var(--color-gray);
}

.ec-radio input:checked + label::after {
  opacity: 1;
}

.ec-zipInputHelp {
  margin: 0 0 0 16px;
}

.ec-zipInputHelp .btn-white {
  width: 160px;
  height: 56px;
  line-height: 54px;
  padding: 0;
  font-weight: normal;
}

p.ec-errorMessage {
  font-size: 14px;
  color: var(--color-red);
  margin: 0;
}

@media (max-width: 768px) {
  .ec-label {
    font-size: 16px;
    letter-spacing: 1.28px;
  }

  .ec-halfInput,
  .label-half {
    display: block;
  }

  .label-half p {
    width: 100%;
  }

  .label-half p.__pc {
    display: none;
  }

  .ec-halfInput input[type=text] {
    width: 100%;
  }

  .ec-halfInput input[type=text] + p.__sp {
    margin-top: 24px;
  }

  .ec-zipInputHelp .btn-white {
    width: 130px;
  }

  .ec-birth select {
    width: 30%;
    padding: 10px;
  }

  .ec-radio #entry_sex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* TOP以外 ヘッダー分あける */
.ec-layoutRole__contents {
  padding-top: calc(80px + 40px);
}

@media (max-width: 768px) {
  .ec-layoutRole__contents {
    padding-top: calc(62px + 32px);
  }
}

/* header */
.ec-layoutRole__header {
  position: fixed;
  background: #fff;
  width: 100%;
  z-index: 2;
}

.ec-headerNaviRole {
  max-width: 1232px;
  padding: 17px 16px;
  justify-content: space-between;
}

.ec-headerNaviRole:after {
  content: none;
}

.ec-headerNaviRole h1 {
  margin: 0;
  font-size: 16px;
}

.ec-headerNaviRole .header-logo img {
  width: 180px;
  height: 30px;
}

.ec-headerNaviRole .ec-headerNaviRole__right {
  width: auto;
  gap: 48px;
}

.ec-headerNaviRole .ec-headerNaviRole__search {
  margin: 0;
}

.ec-headerSearch .ec-headerSearch__keyword {
  width: 360px;
  height: 46px;
  border: none;
  border-radius: 82px;
  background: #F6F6F6;
}

.ec-headerNaviRole__right .ec-headerSearch .ec-headerSearch__keyword input[type=search] {
  width: 360px;
  height: 46px;
  padding: 14px 24px 14px 47px;
}

.ec-headerNaviRole__right .ec-headerSearch .ec-headerSearch__keyword input[type=search]:-webkit-autofill {
  box-shadow: 0 0 0px 999px #F6F6F6 inset;
  border-radius: 82px;
}

.ec-headerNaviRole__right .ec-headerSearch .ec-headerSearch__keywordBtn {
  left: 24px;
}

.ec-headerNav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ec-headerNav__wrapper {
  display: flex;
}

.ec-headerNav .ec-headerNav__item.mypage {
  margin-right: 32px;
}

.ec-headerNav .ec-headerNav__item a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ec-headerNav .ec-headerNav__item img {
  width: 22px;
  height: 22px;
}

.ec-headerNav .ec-headerNav__itemLink {
  font-size: 16px;
  line-height: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .ec-headerNaviRole {
    position: relative;
    padding: 16px;
  }

  .header-logo {
    position: absolute;
    top: 50%;
    /* left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%); */
    left: 16px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  .ec-headerNav__wrapper {
    display: none;
  }

  .ec-headerNav .ec-headerNav__item img {
    width: 28px;
    height: 28px;
  }

  .ec-headerNaviRole .ec-headerNaviRole__nav a.mypage img {
    width: 28px;
    height: 28px;
  }

  .ec-headerNaviRole .header-logo img {
    width: 132px;
    height: 22px;
  }
}

/* TOP */
.ec-layoutRole .ec-layoutRole__contentTop {
  padding-top: 80px;
}

.front_page .ec-layoutRole__contents {
  background: #F6F6F6;
  max-width: none;
  padding-top: 64px;
  gap: 88px;
  justify-content: end;
}

.ec-layoutRole .ec-layoutRole__left {
  width: 248px;
  font-size: 14px;
  padding-left: 16px;
}

.ec-layoutRole__left h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 32px 0;
}

.ec-layoutRole__left h2:not(:first-of-type) {
  margin-top: 48px;
}

.ec-layoutRole__left .ec-headerSearch__keyword {
  width: 100%;
  border-radius: 8px;
  border: none;
  background: #fff;
  margin: 16px 0 0;
  padding: 6px 16px;
}

.ec-headerSearch .ec-headerSearch__keyword input[type=search] {
  font-size: 14px;
  padding-left: 22px;
}

.ec-headerSearch .ec-headerSearch__keyword input[type=search]::placeholder {
  color: var(--color-gray);
}

.ec-headerSearch .ec-headerSearch__keywordBtn {
  left: 16px;
  right: auto;
  padding: 0;
}

.ec-layoutRole__left ul {
  margin-bottom: 0;
}

.ec-layoutRole__left ul.category-list a {
  height: 30px;
}

.ec-layoutRole .ec-layoutRole__left .btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--color-black);
  background: #fff;
  padding: 0;
  line-height: 42px;
  transition: all 0.3s;
}

.ec-layoutRole .ec-layoutRole__mainWithColumn {
  width: 70%;
}

.front_page .title-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: calc(100% - ((100vw - 1200px) / 2));
  ;
  padding-right: 16px;
}

.ec-layoutRole__mainWithColumn h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 40px 0;
}

@media (max-width: 768px) {
  .ec-layoutRole .ec-layoutRole__contentTop {
    padding-top: 62px;
  }

  .front_page .ec-layoutRole__contents {
    display: block;
    padding-top: 32px;
  }

  .ec-layoutRole .ec-layoutRole__mainWithColumn {
    width: 100%;
  }

  .ec-layoutRole__mainWithColumn h2 {
    font-size: 16px;
    margin-bottom: 24px;
    padding: 0 16px;
  }
}

/* 商品一覧 */
#page_product_list .ec-layoutRole__contents {
  background: #F6F6F6;
  max-width: none;
  padding-top: 120px;
  gap: 63px;
  justify-content: end;
}

#page_product_list h1 {
  color: var(--color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px 0;
}

#page_product_list .ec-topicpath {
  padding: 0;
  margin-bottom: 40px;
}

#page_product_list .ec-searchnavRole .ec-searchnavRole__infos {
  border: none;
  padding: 0;
  margin-bottom: 28px;
  color: var(--color-black);
}

#page_product_list .ec-searchnavRole .ec-searchnavRole__actions {
  text-align: left;
  width: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

#page_product_list .ec-searchnavRole .ec-searchnavRole__actions select {
  width: 105px;
  height: auto;
  background-image: url(../icon/icon_select_list.svg);
  padding: 0;
  font-size: 14px;
  background-position: right 1px center;
  cursor: pointer;
}

.btn-search-modal {
  font-size: 12px;
  width: 140px;
  height: 28px;
  border: 1px solid var(--color-black);
  border-radius: 4px;
  background: #fff;
  text-align: center;
  line-height: 26px;
}

#page_product_list .product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
}

#page_product_list .product_card {
  width: 228px;
}

#page_product_list .product_card .favorite-btn {
  top: 188px;
}

#page_product_list .ec-searchnavRole {
  padding: 0;
  margin: 0;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: var(--color-black);
  z-index: 1;
}

.search-modal {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #F6F6F6;
  z-index: 2;
  padding-top: 120px;
}

.search-modal .inner {
  max-width: 912px;
  padding: 0 16px;
  margin: 0 auto;
}

.search-modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.search-modal-title h2 {
  margin-bottom: 0;
}

.js-search-modal-close {
  cursor: pointer;
}

#tag_id,
#productplus_2,
#productplus_3,
#productplus_4,
#productplus_5,
#productplus_6,
#productplus_7,
#productplus_8,
#productplus_15,
#productplus_16 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

#productplus_2 .ec-checkbox-item {
  min-width: 105px;
}

#productplus_3 .ec-checkbox-item {
  min-width: 65px;
}

.ec-searchnavRole__counter {
  width: 100%;
  border-radius: 8px;
  background: #FFF;
  padding: 64px 32px;
  text-align: center;
  color: var(--color-black);
  max-width: calc(100% - ((100vw - 1200px) / 2));
}

.search-modal .btn-wrapper {
  margin-top: 40px;
}

@media (max-width: 768px) {
  #page_product_list .ec-layoutRole .ec-layoutRole__mainWithColumn {
    position: relative;
  }

  #page_product_list .ec-layoutRole__contents {
    display: block;
    padding-top: 62px;
  }

  #page_product_list h1 {
    text-align: center;
    font-size: 16px;
    margin-top: 32px;
  }

  #page_product_list .ec-searchnavRole .ec-searchnavRole__infos {
    padding: 0 16px;
  }

  #page_product_list .ec-searchnavRole .ec-searchnavRole__actions {
    justify-content: center;
  }

  #page_product_list .product-list {
    padding: 0 4px;
    gap: 16px 7px;
  }

  #page_product_list .product_card {
    width: calc((100% - 8px) / 2);
    margin-bottom: 0;
  }

  #page_product_list .product_card .favorite-btn {
    top: 142px;
  }

  .search-modal {
    padding-top: 0;
    position: absolute;
    background: #fff;
    top: 101px;
    left: 16px;
    z-index: 1;
    width: calc(100% - 32px);
    border-radius: 0px 0px 8px 8px;
    border: 1px solid var(--color-gray);
    background: #FFF;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25);
  }

  .search-modal-title {
    display: none;
  }

  .product_search .ec-borderedDefs {
    border-top: none;
  }

  .search-modal-title h2 {
    padding: 0;
    font-size: 18px;
  }

  .js-search-modal-close {
    width: 30px;
    height: 30px;
  }

  .ec-searchnavRole__counter {
    max-width: calc(100% - 32px);
    margin: 0 auto;
  }

  .btn-search-modal {
    width: 100%;
    height: 48px;
    line-height: 46px;
    font-size: 16px;
    position: relative;
  }

  .ec-searchnavRole .ec-searchnavRole__infos .btn-search-modal img {
    width: 14px;
    height: 9px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
}

/* product_card */
.product_card {
  position: relative;
  min-height: 470px;
}

.product_card a:hover {
  text-decoration: none;
}

.product_card .image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product_card .rank {
  position: absolute;
  right: 0;
  font-family: var(--font-noto-serif);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 8px 11px;
  border-radius: 0px 16px;
  background: var(--color-orange);
  line-height: 100%;
}

.product_card .rank.S {
  background: #FF4F4F;
}

.product_card .rank.A {
  background: #FF9900;
}

.product_card .rank.B {
  background: #FFC700;
}

.product_card .rank.C {
  background: #00CC85;
}

.product_card .rank.D {
  background: #00C4E6;
}

.product_card .rank.E {
  background: #5754FF;
}

.product_card .image .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0px 0px;
}

.product_card .status {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
}

.product_card .status.sold {
  background: var(--color-gray);
}

.product_card .status.lend {
  background: var(--color-black);
}

.product_card .text {
  background: #fff;
  border-radius: 0px 0px 16px 16px;
  padding: 24px;
}

.product_card .text.sold {
  color: var(--color-gray);
}

.product_card .category {
  font-size: 12px;
  margin-bottom: 10px;
  height: 16px;
  overflow: hidden;
}

.product_card .category.detail {
  height: 16px;
  overflow: hidden;
}

.product_card .name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  height: 32px;
  overflow: hidden;
}

.product_card .price-wrapper {
  display: flex;
  gap: 2px;
}

.product_card .price {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product_card .price > span {
  color: var(--color-orange);
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 4px;
  background: #FFF2C6;
}

.product_card .text.sold .price span {
  color: #fff;
  background: #DBDBDB;
}

.product_card .normal-price {
  color: var(--color-gray);
  font-weight: 700;
  font-size: 14px;
  text-decoration: line-through;
  /* margin-bottom: 5px; */
}

.product_card .rental-price {
  font-weight: 700;
}

.product_card .rental-price.price-cut {
  color: var(--color-red);
}

.product_card .sold .rental-price.price-cut {
  color: var(--color-gray);
}

.product_card .rental-price > span.tax,
.product_card .normal-price > span.tax,
.product_card .text.sold .rental-price > span.tax,
.product_card .text.sold .normal-price > span.tax {
  font-size: 12px;
  background: none;
}

.product_card .text.sold .rental-price.price-cut > span.tax {
  color: var(--color-red);
}

.product_card .text.sold .rental-price > span.tax,
.product_card .text.sold .normal-price > span.tax {
  color: var(--color-gray);
}

.product_card .favorite-btn {
  position: absolute;
  top: 208px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 48px;
  opacity: 0.9;
  background: #fff;
  background-repeat: no-repeat;
  background-position: 50% 6px;
}

.product_card .favorite-btn.on {
  background-image: url(../../assets/img/common/favorite_on.svg);
}

.product_card .favorite-btn.off {
  background-image: url(../../assets/img/common/favorite_off.svg);
}

@media (max-width: 768px) {
  .product_card {
    margin-bottom: 8px;
    min-height: 362px;
  }

  .product_card .image .thumbnail {
    border-radius: 8px 8px 0px 0px;
  }

  .product_card .rank {
    font-size: 16px;
    border-radius: 0px 8px;
  }

  .product_card .status {
    padding: 6px 8px;
    font-size: 11px;
  }

  .product_card .text {
    padding: 16px;
    border-radius: 0px 0px 8px 8px;
  }

  .product_card .category {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .product_card .name {
    font-size: 12px;
    margin-bottom: 16px;
    white-space: pre-wrap;
  }

  .product_card .price {
    display: block;
  }

  .product_card .price span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 10px;
    padding: 1px 5px;
  }

  .product_card .normal-price {
    font-size: 12px;
  }

  .product_card .favorite-btn {
    top: 120px;
  }

  .product_card .price-wrapper {
    gap: 2px;
  }

  .product_card .rental-price {
    font-size: 14px;
  }

  .product_card .rental-price > span.tax, .product_card .normal-price > span.tax, .product_card .text.sold .rental-price > span.tax, .product_card .text.sold .normal-price > span.tax {
    padding: 0;
    margin: 0;
    font-size: 10px;
    display: inline-block;
  }
}

/* information */
#information {
  background-color: #F6F6F6;
  background-image: url(../img/footer/information_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding: 142px 0 80px;
}

#information h2 {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px 0;
}

#information .brand-list {
  max-width: 816px;
  padding: 0 16px;
  margin: 0 auto 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 32px;
}

#information .brand-list a {
  color: #fff;
  font-size: 14px;
}

#information .school-content {
  text-align: center;
}

#information .school-wrapper {
  /* max-width: 513px; */
  padding: 0 16px;
  margin: 0 auto;
  display: inline-block;
}

#information .school {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  text-align: left;
}

#information .school .pref {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  min-width: 73px;
  height: 17px;
  border-right: 1px solid #fff;
}

#information .school ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 0;
}

#information .school ul a {
  color: #fff;
  font-size: 14px;
  text-decoration-line: underline;
}

#information .rental {
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin-top: 64px;
}

#information .rental .text-link {
  color: #fff;
}

@media (max-width: 768px) {
  .ec-layoutRole__contentBottom {
    padding-top: 80px;
    background: #F6F6F6;
  }

  #information {
    background-image: url(../img/footer/information_bg_sp.png);
    padding: 100px 0 56px;
  }

  #information h2 {
    font-size: 16px;
    margin-bottom: 32px;
  }

  #information .brand-list {
    max-width: 290px;
    gap: 16px 24px;
    margin-bottom: 56px;
  }

  #information .school-wrapper {
    max-width: 290px;
  }

  #information .school {
    display: block;
    margin-bottom: 32px;
  }

  #information .school .pref {
    border-right: none;
    text-align: center;
    margin-bottom: 16px;
  }

  #information .school ul {
    gap: 16px 24px;
    justify-content: center;
  }

  #information .rental {
    font-size: 16px;
    margin-top: 48px;
  }
}

/* footer */
.ec-footerRole {
  border-top: none;
  background: #54A157;
  padding-top: 0;
  margin-top: 0;
}

.ec-footerRole .ec-footerRole__inner {
  border-top: 1px solid #fff;
  padding: 0 15px;
  line-height: 100%;
  max-width: 1200px;
}

.ec-footerNavi {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 48px 0 0 0;
}

.ec-footerNavi .ec-footerNavi__link a {
  font-size: 12px;
  text-decoration: none;
  margin: 0;
}

.ec-footerTitle {
  padding-top: 24px;
}

.ec-footerTitle__copyright {
  font-size: 12px;
}

@media (max-width: 768px) {
  .ec-footerRole .ec-footerRole__inner {
    margin: 0 16px;
  }

  .ec-footerNavi {
    max-width: 268px;
    margin: 40px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .ec-footerNavi .ec-footerNavi__link a {
    padding: 0;
    border-bottom: none;
    font-size: 11px;
  }

  .ec-footerTitle {
    padding: 16px 0 32px;
  }

  .ec-footerTitle__copyright {
    font-size: 11px;
  }
}

/* search */
.product_search .ec-layoutRole__contents {
  background: #F6F6F6;
  max-width: none;
  gap: 88px;
  justify-content: center;
  padding-bottom: 200px;
}

.product_search h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px 0;
}

.product_search .ec-layoutRole .ec-layoutRole__mainWithColumn {
  width: 61.1%;
}

.product_search .ec-borderedDefs {
  border-top: none;
  margin-bottom: 40px;
}

.product_search .ec-borderedDefs dl {
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid #DBDBDB;
}

.product_search .ec-borderedDefs dt {
  font-size: 14px;
  font-weight: 700;
  padding-top: 0;
  width: 120px;
}

.product_search .ec-borderedDefs dd {
  width: calc(100% - 120px);
  line-height: 100%;
  margin: 0;
}

.product_search .ec-select {
  margin-bottom: 0;
}

.product_search .ec-select select {
  width: 200px;
  height: 38px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('../icon/icon_select.svg');
  background-position: left 16px center;
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid var(--color-gray);
  padding-left: 36px;
}

.product_search .btn-black {
  width: 232px;
  margin: 0 auto;
  background: var(--color-blue);
}

.product_search .ec-inputRange input,
.product_search .ec-input input {
  margin-bottom: 0;
}

.product_search .ec-inputRange input {
  border: 1px solid var(--color-gray);
  width: 200px;
  height: 38px;
  background-color: #fff;
}

.product_search .ec-select.search_price {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .product_search .ec-layoutRole__contents {
    padding-bottom: 0;
  }

  .search-modal .inner {
    padding: 0;
  }

  .product_search .ec-layoutRole .ec-layoutRole__mainWithColumn {
    width: 100%;
    padding: 0 16px;
  }

  .product_search h1 {
    font-size: 18px;
  }

  .product_search .ec-borderedDefs {
    border-top: 1px solid #DBDBDB;
    margin-bottom: 0;
  }

  .product_search .ec-borderedDefs dl {
    display: block;
    padding: 32px 16px;
  }

  .product_search .ec-borderedDefs dt {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .product_search .ec-borderedDefs dd {
    width: 100%;
  }

  .product_search .ec-input.search {
    position: relative;
  }

  .product_search input[type=search] {
    border: none;
    border-radius: 4px;
    padding: 16px 16px 16px 40px;
    height: 50px;
    background-color: #F6F6F6;
  }

  .product_search .ec-input.search img {
    position: absolute;
    left: 16px;
    top: 16px;
  }

  .product_search .ec-select select {
    width: 100%;
    height: 46px;
  }

  .product_search .ec-inputRange input {
    width: calc((100% - 16px - 4% ) / 2);
    height: 46px;
  }

  .product_search .btn-wrapper {
    margin-top: 0;
  }

  .product_search .btn-black {
    padding: 20px 0;
    width: 100%;
    border-radius: 0 0 7px 7px;
  }

  .product_search .ec-footerRole {
    margin-bottom: 84px;
  }

  #page_search .btn-wrapper {
    width: 100%;
    height: 84px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 14px 0;
    background: #fff;
  }

  #page_search .btn-black {
    width: calc(100% - 60px);
    border-radius: 8px;
  }
}

/* 商品詳細 */
#page_product_detail .ec-layoutRole .ec-layoutRole__contents {
  max-width: 1232px;
  padding-top: 80px;
}

#page_product_detail .ec-layoutRole {
  overflow: hidden;
}

#page_product_detail .ec-productRole {
  max-width: none;
  padding: 0 16px;
  margin-bottom: 56px;
}

#page_product_detail .ec-grid2 {
  gap: 64px;
}

#page_product_detail .ec-grid2 .ec-grid2__cell.image {
  width: 43.5%;
}

#page_product_detail .ec-grid2 .ec-grid2__cell.content {
  width: calc(100% - 64px - 43.5%);
}

#page_product_detail .ec-sliderItemRole {
  padding: 0;
}

#page_product_detail .slick-slider {
  margin-bottom: 8px;
}

#page_product_detail .slick-slide {
  aspect-ratio: 1 /1;
}

#page_product_detail .slick-slide img {
  aspect-ratio: 1 /1;
  object-fit: cover;
}

#page_product_detail .slick-arrow {
  width: 50px;
  height: 50px;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  cursor: pointer;
}

#page_product_detail .prev-arrow {
  left: 16px;
}

#page_product_detail .next-arrow {
  right: 16px;
}

#page_product_detail .ec-sliderItemRole .item_nav {
  gap: 6px;
}

#page_product_detail .ec-sliderItemRole .slideThumb {
  margin: 0;
  opacity: 1;
  width: calc((100% - 42px) / 8);
  position: relative;
}

#page_product_detail .ec-sliderItemRole .slideThumb::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.30)
}

#page_product_detail .ec-sliderItemRole .slideThumb.is-active::after {
  content: none;
}

#page_product_detail .ec-sliderItemRole .slideThumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

#page_product_detail .ec-productRole .ec-productRole__category {
  padding: 0;
  margin-bottom: 32px;
  border-bottom: none;
}

#page_product_detail .ec-productRole .ec-productRole__category a {
  display: block;
  color: var(--color-blue);
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}

#page_product_detail .ec-productRole .ec-productRole__category a:first-of-type {
  margin-bottom: 16px;
}

#page_product_detail .ec-productRole .ec-productRole__category a:first-of-type::before {
  content: '';
  background-image: url(../icon/icon_brand.svg);
  width: 18px;
  height: 18px;
}

#page_product_detail .ec-productRole .ec-productRole__category a:last-of-type::before {
  content: '';
  background-image: url(../icon/icon_category.svg);
  width: 18px;
  height: 18px;
}

#page_product_detail .ec-productRole .ec-productRole__title .ec-headingTitle {
  color: var(--color-black);
  font-size: 24px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}

#page_product_detail .ec-productRole .ec-productRole__code {
  padding: 0;
  border-bottom: none;
  color: var(--color-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
}

#page_product_detail .ec-productRole .ec-productRole__price {
  padding: 0;
  border-bottom: none;
  margin: 32px 0;
  color: var(--color-blue);
}

#page_product_detail .ec-productRole .ec-productRole__price .ec-price {
  display: flex;
  align-items: center;
  gap: 16px;
}

#page_product_detail .ec-productRole .ec-productRole__price .ec-price .rental-price {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-blue);
  border-radius: 4px;
  padding: 7px 10px;
}

#page_product_detail .ec-price__wrapper {
  display: flex;
  align-items: baseline;
}

#page_product_detail .ec-price .ec-price__price {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  padding: 0;
}

#page_product_detail .ec-price .ec-price__tax {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

#page_product_detail .ec-productRole .ec-productRole__price .ec-price.purchase {
  color: var(--color-gray);
}

#page_product_detail .ec-productRole .ec-productRole__price .ec-price.purchase .rental-price {
  font-size: 10px;
  padding: 4px 17px;
  background: var(--color-gray);
}

#page_product_detail .ec-price.purchase {
  margin-top: 16px;
}

#page_product_detail .ec-price.purchase .ec-price__price {
  font-size: 18px;
  font-weight: 400;
}

#page_product_detail .ec-price.purchase .ec-price__tax {
  font-size: 11px;
}

#page_product_detail .ec-productRole .ec-productRole__price .information {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gray);
  font-size: 12px;
  margin-top: 16px;
}

#page_product_detail .ec-productRole .ec-productRole__price .information img {
  width: 14px;
  height: 14px;
}

#page_product_detail .ec-productRole__detail {
  border-radius: 8px;
  background: #F6F6F6;
  padding: 32px;
  margin-top: 32px;
  color: var(--color-black);
}

#page_product_detail .ec-productRole__detail .quality {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #fff;
}

#page_product_detail .ec-productRole__detail .title {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}

#page_product_detail .ec-productRole__detail .quality .title .information {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gray);
  font-size: 12px;
  font-weight: 400;
}

#page_product_detail .ec-productRole__detail .quality .title .information img {
  width: 14px;
  height: 14px;
}

#page_product_detail .ec-productRole__detail .rank-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .rank {
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-noto-serif);
  font-size: 16px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  line-height: 27px;
  text-align: center;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .rank.S {
  background: #FF4F4F;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .rank.A {
  background: #FF9900;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .rank.B {
  background: #FFC700;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .rank.C {
  background: #00CC85;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .rank.D {
  background: #00C4E6;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .rank.E {
  background: #5754FF;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .comment {
  font-size: 14px;
}

#page_product_detail .ec-productRole__detail .rank-wrapper .year {
  font-size: 14px;
  color: var(--color-gray);
}

#page_product_detail .ec-productRole__detail .ec-productRole__description {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #fff;
}

#page_product_detail .ec-productRole__detail .ec-productRole__description .text {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 8px;
}

#page_product_detail .ec-productRole__detail .ec-productRole__description .attention {
  color: var(--color-gray);
  font-size: 12px;
  line-height: 100%;
}

#page_product_detail .ec-productRole__detail .spec {
  display: flex;
  gap: 24px;
  color: #828282;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

#page_product_detail .ec-productRole__detail .spec:not(:last-of-type) {
  margin-bottom: 10px;
}

#page_product_detail .ec-productRole__detail .spec .title {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  min-width: 125px;
}

#page_product_detail .ec-productRole__detail .spec .content {
  border-left: 1px solid #828282;
  padding-left: 40px;
}

#page_product_detail .ec-productRole__detail .spec .content.comment {
  line-height: 1.5;
}

#page_product_detail .ec-productRole__actions {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

#page_product_detail .ec-productRole .ec-productRole__btn {
  width: 100%;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

#page_product_detail .ec-productRole .ec-productRole__btn .btn-blue {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-size: 20px;
  padding: 20px 56px;
  width: auto;
}

#page_product_detail .ec-productRole .ec-productRole__btn .btn-blue img {
  width: 20px;
  height: 20px;
}

#page_product_detail .ec-productRole .btn-request {
  display: block;
  border-radius: 8px;
  background: var(--color-black);
  width: 252px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  padding: 24px 0;
}

#page_product_detail .ec-productRole .btn-request span:first-of-type {
  display: block;
  font-size: 10px;
  margin-bottom: 6px;
  line-height: 100%;
}

#page_product_detail .ec-productRole .btn-request span:last-of-type {
  display: block;
  line-height: 100%;
}

#page_product_detail .ec-productRole .sold-out {
  border-radius: 8px;
  background: var(--color-gray);
  width: 224px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  color: #DBDBDB;
  font-size: 20px;
  font-weight: 700;
}

#page_product_detail .ec-productRole__btn .favorite-btn {
  width: 30px;
  height: 28px;
  border-radius: 48px;
  opacity: 0.9;
  background: #fff;
  background-repeat: no-repeat;
  background-size: 100%;
}

#page_product_detail .ec-productRole__btn .favorite-btn.on {
  background-image: url(../../assets/img/common/favorite_on.svg);
}

#page_product_detail .ec-productRole__btn .favorite-btn.off {
  background-image: url(../../assets/img/common/favorite_off.svg);
}

#page_product_detail .ec-productRole__btn .favorite-text {
  margin-left: -22px;
  font-size: 14px;
  color: var(--color-gray);
}

#page_product_detail .detail-bottom {
  padding: 80px 0;
  background-color: #F6F6F6;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

#page_product_detail .detail-bottom .inner {
  max-width: 1232px;
  padding: 0 16px;
  margin: 0 auto;
}

#page_product_detail .detail-bottom h2 {
  color: var(--color-black);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px 0;
}

#page_product_detail .detail-bottom .top-products {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 80px;
}

#page_product_detail .detail-bottom .top-products .product_card {
  width: 228px;
}

#page_product_detail .detail-bottom .top-products .product_card .favorite-btn {
  top: 188px;
}

.modal-btn-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.modal-btn-wrapper .btn-blue + .btn-white {
  margin-top: 0;
}

.ec-modal {
  line-height: 1.5;
}

.request-modal {
  line-height: 1.5;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
}

.request-modal .ec-modal-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
.request-modal .ec-modal-wrap {
  position: relative;
  border-radius: 2px;
  border: 1px solid #333;
  background-color: #fff;
  width: 60%;
  margin: 20px;
  padding: 40px 5px;
}
.request-modal .ec-modal-close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 20px;
  height: 30px;
  width: 20px;
}
.request-modal .ec-modal-close:hover {
  color: #4b5361;
}
.request-modal .ec-modal-box {
  text-align: center;
}
.request-modal .ec-role {
  margin-top: 20px;
}

.tooltip-rank,
.tooltip-delivery {
  position: relative;
  cursor: pointer;
}

.tooltip-text-rank,
.tooltip-text-delivery {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 8px;
  transform: translateX(-50%);
  top: 23px;
  display: inline-block;
  padding: 10px;
  white-space: nowrap;
  background: #333;
  color: #fff;
  border-radius: 3px;
  transition: 0.3s ease-in;
}

.tooltip-text-delivery {
  white-space: inherit;
  max-width: 160px;
}

.tooltip-text-rank:before,
.tooltip-text-delivery:before {
	content: '';
	position: absolute;
	top: -13px;
	left: 50%;
	margin-left: -7px;
	border: 7px solid transparent;
	border-bottom: 7px solid #333;
}

.tooltip-rank:hover .tooltip-text-rank,
.tooltip-delivery:hover .tooltip-text-delivery {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  #page_product_detail .ec-layoutRole .ec-layoutRole__contents {
    padding-top: 62px;
  }

  #page_product_detail .ec-layoutRole .ec-layoutRole__contents .breadcrumb {
    display: none;
  }

  #page_product_detail .ec-productRole {
    padding: 0;
  }

  #page_product_detail .ec-grid2 .ec-grid2__cell.image {
    width: 100%;
  }

  #page_product_detail .ec-sliderItemRole {
    margin-bottom: 32px;
  }

  #page_product_detail .slick-arrow {
    width: 30px;
    height: 30px;
  }

  #page_product_detail .prev-arrow {
    left: 12px;
  }

  #page_product_detail .next-arrow {
    right: 12px;
  }

  #page_product_detail .ec-sliderItemRole .item_nav {
    display: flex;
    justify-content: center;
    gap: 4px;
  }

  #page_product_detail .ec-sliderItemRole .slideThumb {
    width: 40px;
  }

  #page_product_detail .ec-grid2 .ec-grid2__cell.content {
    width: 100%;
    padding: 0 16px;
  }

  #page_product_detail .ec-productRole .ec-productRole__category {
    margin-bottom: 24px;
  }

  #page_product_detail .ec-productRole .ec-productRole__category a {
    gap: 4px;
  }

  #page_product_detail .ec-productRole .ec-productRole__category a:first-of-type::before {
    width: 16px;
    height: 16px;
  }

  #page_product_detail .ec-productRole .ec-productRole__category a:first-of-type {
    margin-bottom: 10px;
  }

  #page_product_detail .ec-productRole .ec-productRole__title .ec-headingTitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  #page_product_detail .about-rental {
    margin-top: 11px;
  }

  #page_product_detail .ec-productRole .ec-productRole__price {
    margin-top: 24px;
    margin-bottom: 11px;
  }

  #page_product_detail .ec-productRole .ec-productRole__price .ec-price .rental-price {
    font-size: 14px;
    padding: 6px 10px;
  }

  #page_product_detail .ec-price .ec-price__price {
    font-size: 24px;
  }

  #page_product_detail .ec-price .ec-price__tax {
    font-size: 14px;
  }

  #page_product_detail .ec-price.purchase {
    margin-top: 10px;
  }

  #page_product_detail .ec-productRole .ec-productRole__price .ec-price.purchase .rental-price {
    font-size: 11px;
    padding: 4px 19px;
  }

  #page_product_detail .ec-price.purchase .ec-price__price {
    font-size: 16px;
  }

  #page_product_detail .ec-productRole .ec-productRole__price .information {
    margin-top: 10px;
  }

  #page_product_detail .ec-productRole__detail {
    padding: 24px;
    margin-bottom: 0;
  }

  #page_product_detail .ec-productRole__detail .quality .year {
    font-size: 14px;
    color: var(--color-gray);
    margin-top: 16px;
  }

  #page_product_detail .ec-productRole__detail .spec .content {
    padding-left: 16px;
  }

  #page_product_detail .ec-productRole .ec-productRole__btn {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 1;
    margin: 0;
    padding: 14px 30px;
    gap: 16px;
    justify-content: center;
  }

  #page_product_detail .ec-productRole .ec-productRole__btn .btn-blue {
    font-size: 16px;
    padding: 17px 57px;
  }

  #page_product_detail .ec-productRole .ec-productRole__btn .btn-blue img {
    width: 16px;
    height: 16px;
  }

  #page_product_detail .ec-productRole .btn-request {
    font-size: 16px;
    padding: 11px 0;
  }

  #page_product_detail .ec-productRole .btn-request span:first-of-type {
    font-size: 12px;
  }

  #page_product_detail .ec-productRole .sold-out {
    font-size: 16px;
    margin: 0 auto;
    width: 210px;
    height: 56px;
    line-height: 56px;
  }

  #page_product_detail .ec-productRole__btn .favorite-btn {
    width: 26px;
    height: 24px;
  }

  #page_product_detail .ec-productRole__btn .favorite-text {
    margin-left: -8px;
    white-space: nowrap;
  }

  #page_product_detail .detail-bottom {
    padding-top: 32px;
  }

  #page_product_detail .detail-bottom .inner {
    padding: 0;
  }

  #page_product_detail .detail-bottom h2 {
    font-size: 16px;
    margin-bottom: 24px;
    padding-left: 16px;
  }

  #page_product_detail .detail-bottom .top-products {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  #page_product_detail .detail-bottom .top-products .product_card {
    width: 160px;
    min-width: 160px;
    margin-bottom: 0;
  }

  #page_product_detail .detail-bottom .top-products .product_card:first-of-type {
    margin-left: 16px;
  }

  #page_product_detail .detail-bottom .top-products .product_card:last-of-type {
    margin-right: 16px;
  }

  #page_product_detail .detail-bottom .top-products::-webkit-scrollbar{
    display: none;
  }

  #page_product_detail .detail-bottom .top-products .product_card .favorite-btn {
    top: 120px;
  }

  #page_product_detail .ec-footerRole {
    margin-bottom: 84px;
  }

  .request-modal .ec-modal-wrap {
    padding: 40px 10px;
    width: 91%;
    margin: 20px auto;
  }

  .tooltip-text-delivery {
    left: 75px;
  }

  .tooltip-text-delivery:before {
    left: 7%;
  }
}

/* ログイン */
#page_mypage_login .ec-layoutRole,
#page_shopping_login .ec-layoutRole {
  background: #F6F6F6;
}

#page_mypage_login .ec-layoutRole__contents,
#page_shopping_login .ec-layoutRole__contents {
  max-width: 1232px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
}

#page_mypage_login .login-wrapper,
#page_shopping_login .login-wrapper {
  display: flex;
  gap: 48px;
}

#page_mypage_login .login-wrapper .item,
#page_shopping_login .login-wrapper .item {
  width: calc((100% - 48px) / 2);
  padding: 48px;
  border-radius: 8px;
  background: #fff;
}

#page_mypage_login .login-wrapper .item h1,
#page_mypage_login .login-wrapper .item .title,
#page_shopping_login .login-wrapper .item h1,
#page_shopping_login .login-wrapper .item .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  margin: 0 0 40px 0;
  text-align: center;
}

#page_mypage_login h1 {
  display: block;
}

#page_mypage_login .ec-login,
#page_shopping_login .ec-login {
  margin: 0;
  padding: 0;
  background: transparent;
}

#page_mypage_login .ec-login .ec-input input,
#page_shopping_login .ec-login .ec-input input {
  height: 60px;
  margin-bottom: 16px;
}

.ec-login__eyeicon {
  float: right;
  margin-top: -60px;
  margin-right: 16px;
  cursor: pointer;
  color: var(--color-gray);
}

.ec-login__eyeicon .toggle-password {
  position: relative;
  z-index: 1;
}

.error.ec-input .ec-login__eyeicon {
  margin-top: -47px;
}

.ec-login__eyeicon .toggle-password.slash::after {
  content: '';
  display: block;
  background-image: url(../icon/icon_eye_slash.svg);
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  background-size: 26px 26px;
}

.ec-login__eyeicon .toggle-password.eye::after {
  content: '';
  display: block;
  background-image: url(../icon/icon_eye.svg);
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  background-size: 26px 26px;
}

#page_mypage_login .form-check,
#page_shopping_login .form-check {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

#page_mypage_login .ec-checkbox label,
#page_shopping_login .ec-checkbox label {
  font-size: 16px;
}

#page_mypage_login .btn-blue,
#page_shopping_login .btn-blue {
  font-size: 20px;
  padding: 26px 0;
}

#page_mypage_login .ec-login .ec-login__link,
#page_shopping_login .ec-login .ec-login__link {
  margin: 16px 0 0 0;
  text-align: center;
}

#page_mypage_login .login-wrapper .item.new,
#page_shopping_login .login-wrapper .item.new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#page_mypage_login .login-wrapper .text,
#page_shopping_login .login-wrapper .text {
  line-height: 160%;
  text-align: center;
  margin-bottom: 40px;
}

#page_mypage_login .btn-white,
#page_shopping_login .btn-white {
  font-size: 20px;
  padding: 25px 0;
}

@media (max-width: 768px) {
  #page_mypage_login .login-wrapper,
  #page_shopping_login .login-wrapper {
    display: block;
  }

  #page_mypage_login .ec-login .ec-login__input,
  #page_shopping_login .ec-login .ec-login__input {
    margin-bottom: 24px;
  }

  #page_mypage_login .login-wrapper .item,
  #page_shopping_login .login-wrapper .item {
    width: 100%;
    padding: 32px 24px;
  }

  #page_mypage_login .login-wrapper .item h1, #page_mypage_login .login-wrapper .item .title,
  #page_shopping_login .login-wrapper .item h1, #page_shopping_login .login-wrapper .item .title {
    font-size: 18px;
    letter-spacing: 1.44px;
    margin-bottom: 24px;
  }

  #page_mypage_login .ec-login .ec-input input,
  #page_shopping_login .ec-login .ec-input input {
    height: 54px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .ec-login__eyeicon {
    margin-top: -46px;
  }

  .ec-login__eyeicon .toggle-password.slash::after {
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
  }

  #page_mypage_login .form-check,
  #page_shopping_login .form-check {
    margin-top: 16px;
  }

  #page_mypage_login .ec-checkbox label,
  #page_shopping_login .ec-checkbox label {
    font-size: 14px;
  }

  #page_mypage_login .btn-blue,
  #page_shopping_login .btn-blue {
    font-size: 16px;
    padding: 19px 0;
  }

  #page_mypage_login .ec-login .ec-login__link,
  #page_shopping_login .ec-login .ec-login__link {
    font-size: 14px;
  }

  #page_mypage_login .login-wrapper .item.new,
  #page_shopping_login .login-wrapper .item.new {
    margin-top: 16px;
  }

  #page_mypage_login .login-wrapper .text,
  #page_shopping_login .login-wrapper .text {
    font-size: 14px;
    margin-bottom: 24px;
  }

  #page_mypage_login .btn-white,
  #page_shopping_login .btn-white {
    font-size: 16px;
    padding: 18px 0;
  }
}

/* form layout */
.form-layout .ec-layoutRole {
  background: #F6F6F6;
}

.form-layout .ec-layoutRole__contents {
  padding-left: 16px;
  padding-right: 16px;
}

.form-layout .form-wrapper {
  padding: 64px 138px;
  border-radius: 8px;
  background: #fff;
  max-width: 860px;
  margin: 0 auto 40px;
}

.form-layout h1 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-gray);
}

.form-layout h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
}

.form-layout .form-wrapper .text {
  margin-bottom: 30px;
  line-height: 1.5;
}

.form-layout dl {
  margin-bottom: 32px;
}

.form-layout dd {
  margin: 0;
}

.form-layout .form-wrapper .ec-registerRole__actions {
  margin-top: 40px;
}

.form-layout .form-wrapper .ec-registerRole__actions .btn-blue {
  width: 360px;
  height: 68px;
  font-size: 20px;
  margin: 0 auto;
  padding: 26px 0;
}

.form-layout .form-wrapper .ec-registerRole__actions .btn-white {
  width: 360px;
  height: 68px;
  font-size: 20px;
  margin: 24px auto 0;
  padding: 26px 0;
}

.form-layout .form-wrapper .ec-registerRole__actions .ec-checkbox {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.form-layout .form-wrapper .ec-registerRole__actions .ec-checkbox label {
  font-size: 16px;
}

@media (max-width: 768px) {
  .form-layout .form-wrapper {
    padding: 40px 24px;
  }

  .form-layout h1 {
    font-size: 20px;
    letter-spacing: 1.44px;
  }

  .form-layout h2 {
    font-size: 18px;
    letter-spacing: 1.44px;
  }

  .form-layout .form-wrapper .ec-registerRole__actions .ec-checkbox label {
    font-size: 14px;
  }

  .form-layout .form-wrapper .ec-registerRole__actions .btn-blue,
  .form-layout .form-wrapper .ec-registerRole__actions .btn-white {
    width: 100%;
    height: 64px;
    font-size: 16px;
    padding: 22px 0;
  }
}

/* マイページ */
.mypage .ec-layoutRole {
  background: #F6F6F6;
}

.mypage-top .ec-layoutRole .ec-layoutRole__contents {
  max-width: 1200px;
}

.mypage-top.mypage-favorite .ec-layoutRole .ec-layoutRole__contents {
  max-width: 1295px;
}

.mypage .ec-mypageRole {
  color: var(--color-black);
}

.mypage-top .ec-layoutRole__main {
  max-width: none;
  display: flex;
  gap: 80px;
  justify-content: end;
}

.mypage-top .ec-layoutRole .ec-layoutRole__mainWithColumn {
  width: 74%;
}

.mypage-top .ec-layoutRole .ec-layoutRole__mainWithColumn .ec-mypageRole {
  padding: 0;
}

.mypage-side {
  position: fixed;
  left: calc((100% - 1200px) / 2);
  background: #F6F6F6;
}

@media (max-width: 1200px) {
  .mypage-side {
    left: 16px;
  }
}

.mypage-side a {
  display: block;
}

.mypage-side a.title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}

.mypage-side a.title:not(:first-of-type) {
  border-top: 1px solid #DBDBDB;
  padding-top: 32px;
  margin-top: 32px;
}

.mypage-side a.sub {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 400;
}

.mypage h1 {
  display: flex;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px 0;
}

.mypage h1 img {
  width: 24px;
  height: 24px;
}

.mypage-top h2 {
  border-radius: 8px 8px 0px 0px;
  background: var(--color-gray);
  padding: 24px 32px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}

.mypage-top #information h2 {
  background: transparent;
}

.mypage-top h2 span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
}

.mypage .attention {
  display: flex;
  gap: 8px;
  color: var(--color-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 24px;
}

.mypage .attention img {
  width: 20px;
  height: 20px;
}

#rental,
#favorite,
#member,
#other {
  padding-top: 80px;
  margin-top: -80px;
  margin-bottom: 40px;
}

#rental .inner,
#favorite .inner,
#member .inner,
#other .inner {
  background: #fff;
  border-radius: 0px 0px 8px 8px;
  padding: 32px 32px 48px;
}

.mypage .rentallist-wrapper {
  margin-top: 24px;
}

.mypage .rentallist {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #F6F6F6;
  border-radius: 8px;
  margin-bottom: 16px;
}

.mypage .rentallist.limit {
  background: #FFF5F8;
}

.mypage .rentallist.bought {
  background: #F5F9FF;
}

.rentallist .ec-checkbox label {
  padding-left: 24px;
}

.mypage .rentallist .period {
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #DBDBDB;
}

.mypage .rentallist .period.limit {
  color: var(--color-red);
}

.mypage .rentallist .period.bought {
  color: var(--color-blue);
}

.mypage .rentallist .period .tag {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  border-radius: 44px;
  background: var(--color-black);
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  margin-right: 16px;
}

.mypage .rentallist .period.limit .tag {
  background: var(--color-red);
}

.mypage .rentallist .period.bought .tag {
  background: var(--color-blue);
}

.mypage .rentallist .item {
  display: flex;
  gap: 24px;
}

.mypage .rentallist .item .image {
  width: 110px;
  height: 110px;
  position: relative;
}

.mypage .rentallist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.mypage .rentallist .item .image .rank {
  position: absolute;
  right: 0;
  font-family: var(--font-noto-serif);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 0px 8px;
  background: var(--color-orange);
  line-height: 100%;
}

.mypage .rentallist .item .image .rank.A {
  background: var(--color-orange);
}

.mypage .rentallist .item .image .rank.B {
  background: #00CC85;
}

.mypage .rentallist .item .image .rank.C {
  background: #00C4E6;
}

.mypage .rentallist .item .category {
  font-size: 12px;
  line-height: 100%;
  margin-bottom: 14px;
}

.mypage .rentallist .item .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.mypage .rentallist .item .price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  line-height: 100%;
}

.mypage .rentallist .item .rental-price {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.mypage .rentallist .item .rental-price .tag {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  width: 92px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  background: var(--color-black);
  display: inline-block;
  margin-right: 16px;
}

.mypage .rentallist .item .rental-price .tax {
  font-size: 16px;
  font-weight: 400;
  margin-top: 9px;
}

.mypage .rentallist .item .purchase-price {
  color: var(--color-gray);
  font-size: 18px;
  display: flex;
  align-items: center;
}

.mypage .rentallist .item .purchase-price .tag {
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  width: 92px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 4px;
  background: var(--color-gray);
  display: inline-block;
  margin-right: 16px;
}

.mypage .rentallist .item .purchase-price .tax {
  font-size: 11px;
  margin-top: 6px;
}

.mypage .rentallist .btn-purchase {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--color-black);
  background: #FFF;
  padding: 15px 23px;
  margin-top: 24px;
}

.mypage .rentallist-wrapper .summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  font-size: 28px;
}

.mypage .rentallist-wrapper .summary .sum {
  font-size: 16px;
  font-weight: 700;
  margin-right: 16px;
  display: inline-block;
}

.mypage .rentallist-wrapper .summary .tax {
  font-size: 16px;
}

.mypage .rentallist-wrapper .summary .btn-black {
  width: 368px;
  height: 66px;
}

.mypage .favorite-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  margin-bottom: 32px;
}

.mypage .favorite-list::-webkit-scrollbar {
  display: none;
}

.mypage .favorite-list .product_card {
  width: 228px;
}

.mypage .favorite-list .product_card .favorite-btn {
  top: 188px;
}

.mypage #favorite .favorite-list .product_card .favorite-btn {
  top: 160px
}

.mypage .favorite-list .product_card .text {
  background: #F6F6F6;
}

.mypage .link-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mypage-top dl {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.mypage-top dt {
  width: 23.8%;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}

.mypage-top dd {
  width: calc(100% - 23.8%);
  margin-bottom: 0;
}

.mypage-top dd p {
  font-size: 14px;
  line-height: 160%;
}

.mypage-top dd p:not(:last-of-type) {
  margin-bottom: 32px;
}

.mypage-top dd p.password {
  color: #828282;
  margin-top: -16px;
}

.mypage-top dd p.address {
  color: var(--color-red);
  margin-top: -16px;
}

.mypage-top #member .btn-white {
  width: auto;
  display: inline-block;
  padding: 16px 40px;
  font-weight: 400;
  border: none;
  background: #DBDBDB;
  color: var(--color-black);
}

.mypage-top #other {
  font-size: 14px;
  line-height: 160%;
}

.mypage-top #other .title {
  font-size: 18px;
  line-height: 100%;
  margin-bottom: 24px;
}

.mypage-top #other .title:not(:first-of-type) {
  border-top: 1px solid #DBDBDB;
  margin-top: 32px;
  padding-top: 32px;
}

.mypage-top #other .btn-white {
  font-weight: 400;
  padding: 12px 0;
  width: 192px;
  margin-top: 24px;
  color: var(--color-red);
  border-color: var(--color-red);
}

@media (max-width: 768px) {
  .mypage-top .ec-layoutRole__main {
    display: block;
    padding: 0 16px;
  }

  .mypage-top .ec-layoutRole .ec-layoutRole__mainWithColumn {
    width: 100%;
  }

  .mypage h1 {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .mypage h1 img {
    width: 18px;
    height: 18px;
  }

  .mypage-top h2 {
    padding: 16px;
    font-size: 16px;
  }

  .mypage-top h2 span {
    font-size: 12px;
  }

  .mypage .attention {
    font-size: 14px;
    line-height: 140%;
    align-items: center;
  }

  #rental .inner,
  #favorite .inner,
  #member .inner,
  #other .inner {
    padding: 32px 16px;
  }

  .mypage .rentallist {
    display: block;
    padding: 16px 16px 24px;
    position: relative;
  }

  .mypage .rentallist .period .tag {
    position: absolute;
    top: 16px;
    right: 16px;
    margin-right: 0;
    font-size: 14px;
    width: 90px;
    height: 32px;
    line-height: 32px;
  }

  .mypage .rentallist .ec-checkbox label {
    height: 32px;
  }

  .mypage .rentallist .ec-checkbox input + label::before {
    width: 32px;
    height: 32px;
  }

  .mypage .rentallist .ec-checkbox input + label::after {
    top: 9px;
    left: 8px;
    width: 16px;
    height: 15px;
    background-size: 16px 15px;
  }

  .mypage .rentallist .period {
    margin-top: 8px;
    font-size: 14px;
    line-height: 140%;
  }

  .mypage .rentallist .item {
    display: block;
    position: relative;
  }

  .mypage .rentallist .item .image {
    width: 80px;
    height: 80px;
  }

  .mypage .rentallist .category-wrapper {
    position: absolute;
    top: 0;
    left: 96px;
  }

  .mypage .rentallist .item .title {
    line-height: 140%;
    margin: 16px 0;
  }

  .mypage .rentallist .item .price {
    display: block;
  }

  .mypage .rentallist .item .rental-price {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .mypage .rentallist .item .rental-price .tax {
    font-size: 14px;
    margin-top: 6px;
  }

  .mypage .rentallist .item .purchase-price {
    font-size: 16px;
  }

  .mypage .rentallist .item .purchase-price .tag {
    font-size: 11px;
  }

  .mypage .rentallist .item .purchase-price .tax {
    margin-top: 4px;
  }

  .mypage .rentallist .btn-purchase {
    width: 100%;
    text-align: center;
    padding: 12px 23px;
  }

  .mypage .rentallist-wrapper .summary {
    margin-top: 24px;
    display: block;
    text-align: center;
    font-size: 24px;
  }

  .mypage .rentallist-wrapper .summary .tax {
    font-size: 14px;
  }

  .mypage .rentallist-wrapper .summary .btn-black {
    width: 100%;
    height: 64px;
    padding: 21px 0;
    margin-top: 24px;
  }

  .mypage .favorite-list {
    margin-bottom: 24px;
  }

  .mypage .favorite-list .product_card {
    min-width: 160px;
    margin-bottom: 0;
  }

  .mypage-top dl {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .mypage-top dt {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
  }

  .mypage-top dd {
    width: 100%;
  }

  .mypage-top dd p:not(:last-of-type) {
    margin-bottom: 16px;
  }

  .mypage-top dd p.password {
    margin-top: 0;
  }

  .mypage-top dd p.address {
    margin-top: 24px;
  }

  .mypage-top .btn-wrapper {
    text-align: center;
  }

  .mypage-top #member .btn-white {
    padding: 13px 48px;
  }

  .mypage-top #other .title {
    font-size: 16px;
    font-weight: 700;
  }

  .mypage-top #other .btn-white {
    margin: 24px auto 0;
    width: 240px;
  }
}

/* マイページ お気に入り一覧 */
.mypage-other .ec-layoutRole .ec-layoutRole__contents {
  max-width: 1232px;
  padding-left: 16px;
  padding-right: 16px;
}

.ec-favoriteRole .ec-favoriteRole__itemList {
  gap: 24px 15px;
  margin-bottom: 40px;
}

.ec-favoriteRole .ec-favoriteRole__itemList .product_card {
  width: 228px;
}

.ec-favoriteRole .ec-favoriteRole__itemList .product_card .favorite-btn {
  top: 188px;
}

#page_mypage_favorite .ec-layoutRole__contents {
  min-height: 400px;
}

@media (max-width: 768px) {
  .ec-favoriteRole .ec-favoriteRole__itemList .product_card {
    width: calc((100% - 7px) / 2);
    margin-bottom: 0;
  }

  .ec-favoriteRole .ec-favoriteRole__itemList {
    gap: 16px 7px;
  }

  .ec-favoriteRole .ec-favoriteRole__itemList .product_card .favorite-btn {
    top: 128px;
  }

  #page_mypage_favorite .ec-layoutRole__contents {
    min-height: auto;
  }
}

/* カート・購入フロー */
.cart_page .ec-layoutRole .ec-layoutRole__contents {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1232px;
}

.cart_page .ec-layoutRole {
  background: #F6F6F6;
}

.ec-cartRole__progress .ec-progress {
  display: flex;
  justify-content: center;
  gap: 108px;
  margin-bottom: 84px;
}

.ec-progress .ec-progress__item {
  z-index: 1;
}

.ec-progress .ec-progress__number {
  color: var(--color-black);
  background: #fff;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 46px;
  margin-bottom: 14px;
  border: 2px solid var(--color-black);
}

.ec-progress .is-complete .ec-progress__number {
  color: #fff;
  background: var(--color-black);
}

.ec-progress .is-done .ec-progress__number {
  background: var(--color-gray);
  border-color: var(--color-gray);
  line-height: 42px;
}

.ec-progress .ec-progress__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1.12px;
  position: absolute;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.ec-progress .is-complete .ec-progress__label {
  color: var(--color-black);
  font-weight: 700;
}

.ec-progress .is-done .ec-progress__label {
  color: var(--color-gray);
}

.ec-progress .ec-progress__item:after {
  width: 60px;
  height: 2px;
  background: var(--color-black);
  border-radius: 10px;
  top: 25px;
  left: 74px;
}

.cart_page h1 {
  display: flex;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 24px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #DBDBDB;
}

.cart_page h1 img {
  width: 24px;
  height: 24px;
}

.cart-wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}

.cart-wrapper p.attention {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 24px;
}

.cart-wrapper .ec-cartRole__cart {
  width: 70.3%;
  border-radius: 8px;
  background: #fff;
  padding: 40px;
}

.cart-wrapper .rentallist {
  display: flex;
  align-items: center;
  padding: 24px;
  background: #F6F6F6;
  border-radius: 8px;
  position: relative;
}

.cart-wrapper .rentallist:not(:last-of-type) {
  margin-bottom: 16px;
}

.cart-wrapper .rentallist .delete {
  position: absolute;
  right: 24px;
}

.cart-wrapper .rentallist .item {
  display: flex;
  gap: 24px;
}

.cart-wrapper .rentallist .item .image {
  width: 110px;
  height: 110px;
  position: relative;
}

.cart-wrapper .rentallist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cart-wrapper .rentallist .item .image .rank {
  position: absolute;
  right: 0;
  font-family: var(--font-noto-serif);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 0px 8px;
  background: var(--color-orange);
  line-height: 100%;
}

.cart-wrapper .rentallist .item .image .rank.A {
  background: var(--color-orange);
}

.cart-wrapper .rentallist .item .image .rank.B {
  background: #00CC85;
}

.cart-wrapper .rentallist .item .image .rank.C {
  background: #00C4E6;
}

.cart-wrapper .rentallist .item .category {
  font-size: 12px;
  line-height: 100%;
  margin-bottom: 14px;
}

.cart-wrapper .rentallist .item .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cart-wrapper .rentallist .item .price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  line-height: 100%;
}

.cart-wrapper .rentallist .item .rental-price {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.cart-wrapper .rentallist .item .rental-price .tag {
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  width: 92px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 4px;
  background: var(--color-black);
  display: inline-block;
  margin-right: 16px;
}

.cart-wrapper .rentallist .item .rental-price .tax {
  font-size: 12px;
  font-weight: 400;
  margin-top: 7px;
}

.cart-wrapper .rentallist .item .purchase-price {
  color: var(--color-gray);
  font-size: 16px;
  display: flex;
  align-items: center;
}

.cart-wrapper .rentallist .item .purchase-price .tag {
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  width: 92px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 4px;
  background: var(--color-gray);
  display: inline-block;
  margin-right: 16px;
}

.cart-wrapper .rentallist .item .purchase-price .tax {
  font-size: 11px;
  margin-top: 4px;
}

.cart-wrapper .ec-cartRole__actions {
  width: calc(100% - 70.3% - 24px);
}

.cart-wrapper .ec-cartRole__actions .inner {
  padding: 40px 32px;
  background: #fff;
  border-radius: 8px;
}

.cart-wrapper .ec-cartRole__actions h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  border-bottom: 1px solid #DBDBDB;
  margin: 0 0 24px 0;
  padding-bottom: 24px;
}

.cart-wrapper .ec-cartRole__actions .price {
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
}

.cart-wrapper .ec-cartRole__actions .price .sum {
  font-size: 16px;
  font-weight: 700;
  margin-right: 16px;
}

.cart-wrapper .ec-cartRole__actions .price .tax {
  font-size: 16px;
}

.cart-wrapper .ec-cartRole__actions .btn-blue {
  font-size: 18px;
  padding: 25px 0;
}

.cart-wrapper .ec-cartRole__actions p.attention {
  color: var(--color-red);
  line-height: 160%;
  margin-bottom: 0;
}

.cart-empty {
  border-radius: 8px;
  background: #FFF;
  padding: 64px 32px;
  text-align: center;
  margin: 0 16px 40px;
}

.cart_page .cart-empty h1 {
  justify-content: center;
}

.cart-empty p {
  line-height: 160%;
}

.cart-empty .about-rental {
  margin: 24px 0 0 0;
}

.cart-wrapper .about-rental {
  margin-bottom: 24px;
}

.cart-wrapper .ec-cartRole__cart h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  border-bottom: 1px solid #DBDBDB;
  margin: 0 0 24px 0;
  padding-bottom: 24px;
}

.cart-wrapper .ec-orderAccount,
.cart-wrapper .ec-orderDelivery,
.cart-wrapper .ec-orderPayment,
.cart-wrapper .ec-orderHelp {
  margin-bottom: 64px;
}

.cart-wrapper .ec-orderHelp {
  margin-top: 64px;
}

.ec-orderAccount .ec-orderAccount__account {
  margin-bottom: 0;
}

.cart-wrapper .ec-orderAccount dl {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
}

.cart-wrapper .ec-orderAccount dl:not(:last-child) {
  margin-bottom: 24px;
}

.cart-wrapper .ec-orderAccount dt {
  min-width: 80px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}

.cart-wrapper .ec-orderAccount dd {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0;
}

.cart-wrapper .ec-orderDelivery dl {
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}

.cart-wrapper .ec-orderDelivery dl:not(:last-of-type) {
  margin-bottom: 16px;
}

.ec-orderDelivery .ec-orderDelivery__address {
  margin: 0 0 16px 0;
}

.cart-wrapper .ec-orderDelivery dt {
  min-width: 80px;
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
}

.cart-wrapper .ec-orderDelivery dd {
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 0;
  width: 100%;
}

.cart-wrapper .ec-orderDelivery .ec-selects {
  border-bottom: none;
}

.cart-wrapper .ec-orderDelivery .ec-selects dl {
  align-items: center;
  margin-bottom: 16px;
}

.cart-wrapper .ec-orderDelivery .ec-select select {
  width: 257px;
  height: 50px;
  font-size: 14px;
}

.cart-wrapper .ec-orderDelivery .ec-select select:focus {
  background-color: #F6F6F6;
}

.cart-wrapper .ec-orderDelivery__item .rentallist:not(:last-of-type) {
  margin-bottom: 8px;
}

.cart-wrapper .ec-orderPayment .ec-radio label {
  display: flex;
  margin: 20px 0;
}

.cart-wrapper .ec-orderPayment .ec-radio span {
  font-size: 14px;
  font-weight: 700;
  margin-left: 32px;
}

.cart-wrapper .ec-orderPayment .ec-blockRadio {
  font-size: 14px;
}

.cart-wrapper .ec-orderConfirm .ec-input textarea:focus {
  background-color: #F6F6F6;
}

.cart-wrapper .ec-orderConfirm .ec-input {
  font-size: 14px;
  line-height: 160%;
}

.cart-wrapper .ec-totalBox {
  padding: 0;
  background: #fff;
  margin-bottom: 0;
}

.cart-wrapper .ec-totalBox .ec-totalBox__spec {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 100%;
}

.cart-wrapper .ec-totalBox .ec-totalBox__spec dd {
  margin-bottom: 0;
}

.cart-wrapper .ec-totalBox .ec-totalBox__spec dd span {
  font-size: 12px;
}

.cart-wrapper .ec-totalBox .shipping {
  color: var(--color-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
  margin-top: -8px;
}

.cart-wrapper .ec-totalBox .ec-totalBox__paymentTotal {
  border-top: 1px solid #DBDBDB;
  padding: 24px 0 0 0;
  margin: 24px 0 16px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}

.cart-wrapper .ec-totalBox .ec-totalBox__price {
  color: var(--color-red);
  font-size: 20px;
}

.cart-wrapper .ec-totalBox .ec-totalBox__price span {
  font-size: 14px;
}

.cart-wrapper .ec-totalBox .ec-totalBox__taxRate {
  color: var(--color-gray);
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
}

.cart-wrapper .ec-totalBox .ec-totalBox__taxRate dd {
  margin-bottom: 0;
}

.cart-wrapper .ec-totalBox a.btn-white {
  color: var(--color-blue);
  font-size: 18px;
  height: 50px;
  padding: 15px 0;
}

.cart_page.form-layout h1 {
  justify-content: center;
}

.cart_page.form-layout .form-wrapper .text {
  line-height: 140%;
}

.cart_page.form-layout .btn-black {
  width: 300px;
  height: 68px;
  margin: 0 auto;
  font-size: 20px;
  padding: 26px 0;
}

.cart_page .cart-bottom {
  margin-top: 120px;
}

.cart_page .cart-bottom h2 {
  color: var(--color-black);
  font-family: var(--font-noto-sans);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px 0;
}

.cart_page .cart-bottom .favorite-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 15px;
}

.cart_page .cart-bottom .favorite-list .product_card {
  width: 228px;
}

.cart_page .cart-bottom .favorite-list .product_card .favorite-btn {
  top: 188px;
}

.cart_page .cart-bottom .btn-wrapper {
  text-align: center;
  margin: 40px 0 80px;
}

@media (max-width: 768px) {
  .cart_page .ec-layoutRole .ec-layoutRole__contents {
    padding-left: 0;
    padding-right: 0;
  }

  .ec-cartRole__progress .ec-progress {
    gap: 40px;
    margin-bottom: 58px;
    padding: 0;
  }

  .ec-progress .ec-progress__number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 8px;
  }

  .ec-progress .ec-progress__number img {
    width: 15px;
  }

  .ec-progress .is-done .ec-progress__number {
    line-height: 33px;
  }

  .ec-progress .ec-progress__label {
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0.96px;
  }

  .ec-progress .ec-progress__item:after {
    width: 24px;
    top: 20px;
    left: 48px;
  }

  .cart_page h1 {
    font-size: 16px;
    padding-bottom: 16px;
  }

  .cart_page h1 img {
    width: 16px;
    height: 16px;
  }

  .cart-wrapper {
    display: block;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-wrapper .ec-cartRole__cart {
    width: 100%;
    padding: 24px 16px;
  }

  .cart-wrapper .ec-cartTable {
    border-top: none;
  }

  .cart-wrapper .rentallist .delete {
    right: 16px;
    z-index: 1;
  }

  .cart-wrapper .rentallist .delete img {
    width: 32px;
    height: 32px;
  }

  .cart-wrapper .rentallist {
    display: block;
    padding: 16px 16px 24px;
    position: relative;
  }

  .cart-wrapper .rentallist .item {
    display: block;
    position: relative;
  }

  .cart-wrapper .rentallist .item .image {
    width: 80px;
    height: 80px;
  }

  .cart-wrapper .rentallist .category-wrapper {
    position: absolute;
    top: 0;
    left: 96px;
  }

  .cart-wrapper .rentallist .item .category {
    font-size: 14px;
  }

  .cart-wrapper .rentallist .item .title {
    line-height: 140%;
    margin: 16px 0;
    font-weight: normal;
  }

  .cart-wrapper .rentallist .item .price {
    display: block;
  }

  .cart-wrapper .rentallist .item .rental-price {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .cart-wrapper .rentallist .item .rental-price .tax {
    font-size: 14px;
    margin-top: 6px;
  }

  .cart-wrapper .rentallist .item .purchase-price {
    font-size: 16px;
  }

  .cart-wrapper .rentallist .item .purchase-price .tag {
    font-size: 11px;
  }

  .cart-wrapper .rentallist .item .purchase-price .tax {
    margin-top: 4px;
  }

  .cart-wrapper .ec-cartRole__actions {
    width: 100%;
  }

  .cart-wrapper .ec-cartRole__actions:not(.__sp) {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 1;
  }

  .cart-wrapper .ec-cartRole__actions .inner {
    border-radius: 0;
    padding: 16px 31px;
  }

  .cart-wrapper .ec-cartRole__actions .price {
    font-size: 18px;
    justify-content: center;
    margin-bottom: 12px;
  }

  .cart-wrapper .ec-cartRole__actions .price .tax {
    font-size: 12px;
  }

  .cart-wrapper .ec-cartRole__actions .btn-blue {
    font-size: 16px;
    padding: 20px 0;
  }

  .cart-empty {
    padding: 32px;
  }

  .cart-empty p {
    font-size: 14px;
  }

  .cart-empty .about-rental {
    margin: 16px 0 0 0;
    font-size: 12px;
  }

  .cart_page:has(.cart-wrapper) .ec-layoutRole__footer {
    padding-bottom: 121px;
  }

  .shopping .cart-wrapper .ec-cartRole__cart {
    border-radius: 8px 8px 0 0;
  }

  .cart-wrapper .ec-cartRole__cart h2 {
    font-size: 16px;
    padding-bottom: 16px;
  }

  .cart-wrapper .ec-orderAccount,
  .cart-wrapper .ec-orderDelivery,
  .cart-wrapper .ec-orderPayment {
    margin-bottom: 48px;
  }

  .cart-wrapper .ec-orderAccount dl {
    display: block;
  }

  .cart-wrapper .ec-orderAccount dt {
    line-height: 100%;
    margin-bottom: 16px;
  }

  .cart-wrapper .ec-orderAccount dd {
    line-height: 140%;
  }

  .cart-wrapper .ec-orderDelivery dl {
    display: block;
  }

  .cart-wrapper .ec-orderDelivery dt {
    line-height: 100%;
    margin-bottom: 16px;
  }

  .cart-wrapper .ec-orderDelivery .ec-selects dt {
    line-height: 160%;
    margin-bottom: 8px;
  }

  .ec-orderDelivery .ec-orderDelivery__address {
    margin-bottom: 24px;
  }

  .cart-wrapper .ec-orderDelivery .ec-select select {
    width: 100%;
  }

  .cart-wrapper .ec-orderDelivery .ec-selects dl {
    margin-bottom: 24px;
  }

  .cart-wrapper .ec-orderDelivery .ec-select__delivery {
    margin: 0;
  }

  .cart-wrapper .ec-orderDelivery__item {
    margin-top: 24px;
  }

  .cart-wrapper .ec-orderDelivery__item .rentallist {
    padding: 16px;
  }

  .cart-wrapper .ec-orderDelivery__item .rentallist .item .rental-price {
    margin-bottom: 0;
  }

  .cart-wrapper .ec-orderConfirm {
    margin-bottom: 0;
  }

  .cart-wrapper .ec-orderConfirm .ec-input textarea {
    font-size: 14px;
    padding: 20px 16px;
  }

  .cart-wrapper .ec-cartRole__actions.__sp .inner {
    border-radius: 0 0 8px 8px;
    padding: 24px 16px 16px 16px;
  }

  .cart-wrapper .ec-cartRole__actions.__sp h2 {
    font-weight: 700;
    line-height: 100%;
    border-bottom: 1px solid #DBDBDB;
    margin: 0 0 24px 0;
    font-size: 16px;
    padding-bottom: 16px;
  }

  .cart-wrapper .ec-cartRole__actions.__sp .ec-totalBox .ec-totalBox__spec dt {
    font-size: 14px;
  }

  .cart-wrapper .ec-totalBox .ec-totalBox__price span {
    font-size: 12px;
  }

  .shopping .cart-wrapper .ec-cartRole__actions:not(.__sp) .inner {
    padding: 13px 31px;
  }

  .shopping .cart-wrapper .ec-cartRole__actions:not(.__sp) .ec-totalBox .ec-totalBox__paymentTotal {
    border-top: none;
    padding: 0;
    margin: 0 0 12px;
    justify-content: center;
  }

  .shopping .cart-wrapper .ec-cartRole__actions:not(.__sp) .ec-totalBox .ec-totalBox__taxRate {
    justify-content: center;
    margin-bottom: 12px;
  }

  .shopping .cart-wrapper .ec-cartRole__actions:not(.__sp) .ec-totalBox .ec-totalBox__btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
  }

  .shopping .cart-wrapper .ec-cartRole__actions:not(.__sp) .ec-totalBox a.btn-white {
    margin: 0;
    width: 38.5%;
    height: 44px;
    padding: 12px 0;
    font-size: 16px;
    font-weight: normal;
  }

  .shopping .cart-wrapper .ec-cartRole__actions:not(.__sp) .btn-blue {
    width: calc(100% - 12px - 38.5%);
  }

  .cart_page.form-layout .form-wrapper .text {
    font-size: 14px;
  }

  .cart_page.form-layout .btn-black {
    width: 100%;
    height: 64px;
    font-size: 16px;
    padding: 23px 0;
  }

  .cart_page .cart-bottom {
    overflow: hidden;
  }

  .cart_page .cart-bottom .favorite-list .slick-track > .slick-slide {
    margin: 0 4px;
    width: 160px;
  }

  .cart_page .cart-bottom .favorite-list .slick-list {
    padding-left: 16px;
  }

  .cart_page .cart-bottom .title-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    max-width: 896px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart_page .cart-bottom .title-wrapper h2 {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cart_page .cart-bottom .favorite-list .product_card .favorite-btn {
    top: 120px;
  }
}

/* help */
.help_page .ec-layoutRole {
  background-color: #F6F6F6;
  line-height: 1.15;
}

.help_page .ec-layoutRole .ec-layoutRole__contents {
  max-width: 1112px;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 40px;
}

.help_page h1 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin: 0 0 40px 0;
  text-align: center;
}

.help_page h2,
#page_help_agreement h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 16px;
}

#page_help_agreement h2 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-top: 40px;
}

.help_page dl {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.help_page dt {
  width: 26.6%;
  font-weight: 700;
}

.help_page dd {
  width: 69.6%;
  margin: 0;
  line-height: 1.5;
}

.help_page p {
  line-height: 1.5;
}

.help_page .ec-layoutRole__main ol {
  list-style: auto;
  line-height: 1.5;
  padding-left: 20px;
  list-style-type: decimal;
}

.help_page .ec-layoutRole__main ul {
  list-style: disc;
  line-height: 1.5;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .help_page h1 {
    font-size: 20px;
  }

  .help_page h2,
  #page_help_agreement h3 {
    font-size: 18px;
  }

  #page_help_agreement h2 {
    font-size: 20px;
  }

  .help_page dl {
    display: block;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }

  .help_page dt {
    width: 100%;
    margin-bottom: 24px;
  }

  .help_page dd {
    width: 100%;
  }
}

/* pager */
.ec-pager {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}

.ec-pager .ec-pager__item--active {
  border-radius: 6px;
  background: #000;
  transition: all 0.3s;
}

.ec-pager .ec-pager__item,
.ec-pager .ec-pager__item--active {
  min-width: 24px;
  height: 24px;
  padding: 0;
}

.ec-pager .ec-pager__item a,
.ec-pager .ec-pager__item--active a {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  padding: 0;
  line-height: 24px;
  display: block;
}

.ec-pager .ec-pager__item--active a {
  color: #FFF;
}

.ec-pager .ec-pager__item:hover {
  background: inherit;
}

.ec-pager .ec-pager__item--active:hover {
  opacity: 0.6;
}

.ec-pager .ec-pager__item--active a:hover {
  color: #fff;
}

/* お知らせ */
.ec-newsRole {
  padding: 0;
  max-width: calc(100% - ((100vw - 1200px) / 2));

}

.ec-newsRole .ec-newsRole__news {
  border: none;
  padding: 0;
}

.ec-newsRole .ec-newsRole__newsHeading {
  align-items: baseline;
}

.ec-newsRole .ec-newsRole__newsTitle {
  color: var(--color-black);
  cursor: initial;
  font-size: 15px;
}

.ec-newsRole .ec-newsRole__newsDescription {
  display: block;
  margin: 5px 0 0 120px;
}

.ec-newsRole .ec-newsRole__newsItem:not(:last-of-type) {
  border-bottom: none;
}

@media (max-width: 768px) {
  .ec-newsRole .ec-newsRole__news {
    padding: 0 16px;
  }

  .ec-newsRole .ec-newsRole__newsTitle {
    margin: 0;
  }

  .ec-newsRole .ec-newsRole__newsDescription {
    margin-left: 0;
  }
}

/* クレカ入力画面 */
#page_eccube_payment_lite42_credit_card_for_token_payment dd.date {
  display: flex;
  gap: 20px;
}

#page_eccube_payment_lite42_credit_card_for_token_payment dd.date .ec-select {
  width: 40%;
}

#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--action {
  line-height: 1;
}

#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--action:hover,
#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--action:active {
  background-color: var(--color-blue);
}

#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--action:focus {
  box-shadow: 0 0 0 0.25rem rgba(45, 129, 255, 0.5);
  background-color: var(--color-blue);
}

#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--cancel {
  line-height: 1;
}

#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--cancel:hover {
  background-color: #fff;
  border-color: var(--color-blue);
}

#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--cancel:active {
  color: var(--color-blue);
  border-color: var(--color-blue);
}

#page_eccube_payment_lite42_credit_card_for_token_payment .ec-blockBtn--cancel:focus {
  background-color: #fff;
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.about-rental{
  font-size: 14px;
  line-height: 160%;
  margin: 16px 0 32px;
  color: var(--color-black);
}

.ec-orderPayment .bank-attention{
  font-size: 14px;
  line-height: 160%;
  color: var(--color-gray);
}

/* SPの詳細検索 */
.search_detail_block {
  display: none;
}

#page_search .search_detail_block,
#page_product_list .search_detail_block {
  display: block;
}

.search_detail_title {
  display: none;
}

.js-search-modal-close {
  display: none;
}

#page_product_list .js-search-modal-close {
  display: block;
}

#page_product_list .ec-layoutRole__header {
  z-index: 3;
}

@media (max-width: 768px) {
  .search_detail_block.is-active {
    position: fixed;
    z-index: 1;
    background: #F6F6F6;
    padding: 82px 0 100px;
    overflow-y: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .search_detail_title {
    display: none;
  }

  .search_detail_block.is-active .search_detail_title {
    display: block;
    padding-left: 16px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 16px;
  }
  
  .js-search-modal-close {
    display: none;
  }

  .search_detail_block.is-active .js-search-modal-close {
    display: block;
    position: absolute;
    top: 78px;
    right: 16px;
  }

  .search_detail_block.is-active.product_search .ec-borderedDefs {
    padding: 0 16px;
  }

  .search_detail_block.is-active.product_search .ec-borderedDefs dl {
    padding-left: 0;
    padding-right: 0;
  }

  .search_detail_block.is-active.product_search input[type=search] {
    background: #fff;
  }

  .search_detail_block.is-active .btn-wrapper {
    width: 100%;
    height: 84px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 14px 29px;
    background: #fff;
  }

  .search_detail_block.is-active .btn-black {
    border-radius: 8px;
  }
}