@charset "UTF-8";
/* ---------------------------------------------
* page-delivery-items 宅配買取 フォーム
* c- そのうちコンポーネントのSassにいれます
--------------------------------------------- */
.c-page-title__jp {
  font-family: var(--ff-Zen);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-pink-1);
  text-align: center;
  margin: 1em 0 0.6em;
}
@media screen and (min-width: 1024px) {
  .c-page-title__jp {
    font-size: 34px;
  }
}

.c-button {
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-family: var(--ff-Zen);
  font-weight: 600;
  line-height: 1;
  margin: 1em 0 0;
}
@media screen and (min-width: 655px) {
  .c-button {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .c-button {
    font-size: 14px;
  }
}
.c-button a {
  border: 1px solid var(--color-black-1);
  border-radius: 100vw;
  padding: 1.2em 3.5em 1.2em 2em;
  position: relative;
  background-color: var(--color-white-1);
}
@media screen and (min-width: 655px) {
  .c-button a {
    padding: 1em 2em 1em 1em;
  }
}
@media screen and (min-width: 1024px) {
  .c-button a {
    transition: background-color 0.3s;
  }
}
.c-button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8em;
  background: url(../img/common/icon_arrow.svg) no-repeat center center/cover;
  width: 15px;
  height: 8px;
  transform: translateY(-50%) rotate(-90deg);
}
@media screen and (min-width: 655px) {
  .c-button a::after {
    right: 0.7em;
  }
}
@media screen and (min-width: 1024px) {
  .c-button a:hover {
    background-color: var(--color-pink-1);
  }
}

.c-select-menu {
  margin: 0 20px 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .c-select-menu {
    margin: 60px auto 40px;
  }
}
.c-select-menu .c-select-menu__trigger {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: var(--color-base-1);
  border: 1px solid var(--color-base-1);
  border-radius: 100vw;
  background-color: var(--color-white-1);
  width: 100%;
  position: relative;
  padding: 1.45em 0;
}
.c-select-menu .c-select-menu__trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(28 / var(--design-width) * 100vw);
  background: url(../img/common/icon_arrow.svg) no-repeat center center/cover;
  width: 18px;
  height: 10px;
  transform: translateY(-50%);
}
.c-select-menu .only-sp {
  display: block;
}
@media screen and (min-width: 400px) {
  .c-select-menu .only-sp {
    display: none;
  }
}
.c-select-menu .c-select-menu__list {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 50%;
  transition: top 0.2s, visibility 0.2s, opacity 0.2s;
  width: 100%;
}
@media screen and (min-width: 400px) {
  .c-select-menu .c-select-menu__list {
    position: relative;
    opacity: 1;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.c-select-menu .c-select-menu__list li a {
  display: block;
  font-family: var(--ff-Zen);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 1.2em 0;
  background-color: var(--color-white-1);
}
@media screen and (min-width: 400px) {
  .c-select-menu .c-select-menu__list li a {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: var(--color-base-1);
    border: 1px solid var(--color-base-1);
    border-radius: 100vw;
    background-color: var(--color-white-1);
    position: relative;
    padding: 1em 2em;
  }
}
@media screen and (min-width: 1024px) {
  .c-select-menu .c-select-menu__list li a {
    transition: background-color 0.3s;
  }
}
@media screen and (min-width: 1024px) {
  .c-select-menu .c-select-menu__list li a:hover {
    background-color: var(--color-pink-1);
  }
}
.c-select-menu .c-select-menu__list.is-open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
@media screen and (min-width: 400px) {
  .c-select-menu {
    /* PCではhiddenを無視して常時表示 */
  }
  .c-select-menu .js-select-menu-list[hidden] {
    display: flex !important;
  }
}

.p-delivery-item {
  padding: 40px 0 25px;
}
.p-delivery-item [id^=page-][aria-hidden=true] {
  visibility: hidden;
  position: relative;
  top: -80px;
}
@media screen and (min-width: 1024px) {
  .p-delivery-item [id^=page-][aria-hidden=true] {
    top: -110px;
  }
}
@media screen and (min-width: 1024px) {
  .p-delivery-item {
    padding: 70px 0 50px;
    border-radius: 10px;
    margin: 0 20px 10px;
  }
}
.p-delivery-item#sec-baby {
  background-color: var(--color-pink-2);
}
@media screen and (min-width: 1024px) {
  .p-delivery-item#sec-brand {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.p-delivery-item .p-section-title {
  margin-bottom: 32px;
  text-align: center;
  color: var(--color-pink-1);
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-delivery-item .p-section-title {
    margin-bottom: 40px;
  }
}
.p-delivery-item .p-section-title__subtitle {
  font-family: var(--ff-mont);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .p-delivery-item .p-section-title__subtitle {
    font-size: 30px;
  }
}
.p-delivery-item .p-section-title__title {
  font-family: var(--ff-Zen);
  font-size: 14px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .p-delivery-item .p-section-title__title {
    font-size: 18px;
  }
}
.p-delivery-item .p-items {
  margin-bottom: 30px;
}
.p-delivery-item .p-items:last-of-type {
  margin-bottom: 0;
}
.p-delivery-item .p-items__title {
  font-family: var(--ff-Zen);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-delivery-item .p-items__title {
    font-size: 22px;
    margin-bottom: 0;
  }
}
.p-delivery-item .p-items__title::before {
  content: "";
  display: inline-block;
  width: 1.35em;
  height: 1.35em;
  margin-right: 0.3em;
  background: no-repeat center center/cover;
  vertical-align: -0.3em;
}
.p-delivery-item .p-items--ok {
  --thema-color: var(--color-pink-1);
}
.p-delivery-item .p-items--ok [class*=__title] {
  color: var(--thema-color);
}
.p-delivery-item .p-items--ok [class*=__title]::before {
  background-image: url(../img/purchase/delivery/items/ok.png);
}
.p-delivery-item .p-items--ng {
  --thema-color: var(--color-black-3);
}
.p-delivery-item .p-items--ng [class*=__title] {
  color: var(--thema-color);
}
.p-delivery-item .p-items--ng [class*=__title]::before {
  background-image: url(../img/purchase/delivery/items/ng.png);
}
.p-delivery-item .p-condition-list {
  counter-reset: item-counter;
  --counter-size: 1.5em;
}
@media screen and (min-width: 1024px) {
  .p-delivery-item .p-condition-list {
    --counter-size: 1.8em;
  }
}
@media screen and (min-width: 655px) {
  .p-delivery-item .p-condition-list {
    display: flex;
    justify-content: center;
    max-width: 750px;
    margin: auto;
  }
}
.p-delivery-item .p-condition-list__item {
  counter-increment: item-counter;
  position: relative;
  background: var(--color-white-1);
  border: 2px solid var(--thema-color);
  border-radius: 10px;
  padding: calc(var(--counter-size) / 2 + 10px) 15px 20px;
  margin: calc(var(--counter-size) + 6px) 12px 12px;
}
@media screen and (min-width: 655px) {
  .p-delivery-item .p-condition-list__item {
    flex: 1;
    margin: calc(var(--counter-size) + 6px) 6px 12px;
  }
}
.p-delivery-item .p-condition-list__item::before {
  content: counter(item-counter) "";
  font-size: 26px;
  font-family: var(--ff-mont);
  font-weight: bold;
  line-height: var(--counter-size);
  text-align: center;
  color: var(--color-white-1);
  background: var(--thema-color);
  display: block;
  width: var(--counter-size);
  height: var(--counter-size);
  border-radius: 100vw;
  position: absolute;
  left: 50%;
  top: calc(var(--counter-size) / -2);
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-delivery-item .p-condition-list__item::before {
    font-size: 28px;
  }
}
.p-delivery-item .p-condition-list__title {
  color: var(--color-pink-1);
  font-family: var(--ff-Zen);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 655px) {
  .p-delivery-item .p-condition-list__title {
    height: 3.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-delivery-item .p-condition-list__icon img {
  width: 42%;
  height: auto;
  display: block;
  margin: auto;
}
@media screen and (min-width: 655px) {
  .p-delivery-item .p-condition-list__icon img {
    width: 107px;
  }
}
.p-delivery-item .p-condition-list__text--sub {
  font-size: 14px;
  margin-bottom: 6px;
}
.p-delivery-item .p-condition-list__text--sub:last-child {
  margin-bottom: 0;
}
.p-delivery-item .p-condition-list__subtitle {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}
.p-delivery-item .p-condition-list__subtitle::before {
  content: "【";
  font-feature-settings: "palt";
}
.p-delivery-item .p-condition-list__subtitle::after {
  content: "】";
  font-feature-settings: "palt";
}
.p-delivery-item .p-condition-list__sublist {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 0 1em;
}
.p-delivery-item .p-condition-list__sublist li {
  margin-bottom: 4px;
  text-indent: -1em;
}
.p-delivery-item .p-condition-list__sublist li::before {
  content: "●";
}/*# sourceMappingURL=page-delivery-items.css.map */