@charset "UTF-8";

/* ========================================
  Renewal Design Foundation
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@400;500;600;700&display=swap');

:root {
  /* Brand colors */
  --renewal-color-base: #ffffff;
  --renewal-color-main: #f57800;
  --renewal-color-sub: #fdd900;

  /* Gradient */
  --renewal-gradient-main:
    linear-gradient(
      135deg,
      #f57800 0%,
      #fdd900 100%
    );

  /* Text colors */
  --renewal-color-text: #333333;
  --renewal-color-text-sub: #666666;
  --renewal-color-neutral: #f3f3f3;

  /* Alert */
  --renewal-color-alert: #e83c58;
  --renewal-color-alert-bg: #fff3f2;

  /* Border */
  --renewal-color-border: #cccccc;
  --renewal-color-border-light: #e5e5e5;

  /* Typography */
  --renewal-font-jp:
    "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    "Noto Sans JP",
    "メイリオ",
    Meiryo,
    sans-serif;

  --renewal-font-en:
    "Univers Next Pro",
    "Univers",
    "Roboto",
    Arial,
    sans-serif;

  /* Layout */
  --renewal-content-width: 1024px;
  --renewal-wide-width: 1200px;
  --renewal-side-padding: 20px;

  /* Radius */
  --renewal-radius-small: 5px;
  --renewal-radius-medium: 14px;
  --renewal-radius-large: 30px;
  --renewal-radius-round: 9999px;

  /* Animation */
  --renewal-transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

._pc {
  display: block;
}

._sp {
  display: none;
}

.renewal-page {
  color: var(--renewal-color-text);
  font-family: var(--renewal-font-jp);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
}

.renewal-page *,
.renewal-page *::before,
.renewal-page *::after {
  box-sizing: border-box;
}

.renewal-page img,
.renewal-page svg {
  display: block;
  max-width: 100%;
  height: auto;
}

.renewal-page a {
  color: inherit;
  text-decoration: none;
  transition: .3s all ease-out;
}

.renewal-page a:hover {
  opacity: .7;
}

.renewal-page button,
.renewal-page input,
.renewal-page select,
.renewal-page textarea {
  font: inherit;
}

.renewal-page .site-main {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  ._pc {
    display: none;
  }

  ._sp {
    display: block;
  }
}

/* ========================================
  Renewal Breadcrumb
======================================== */

.renewal-page .renewal-breadcrumb {
  width: 100%;
  background-color: #eeeeee;
}

.renewal-page .renewal-breadcrumb__inner {
  width: min(calc(100% - 40px), 1024px);
  margin: 0 auto;
  padding: 10px 13px;
}

.renewal-page .breadcrumnbs {
  display: flex;
  min-height: 23px;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-size: 13px;
  line-height: 1.5;
  flex-wrap: wrap;
}

.renewal-page .breadcrumnbs__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333333;
}

.renewal-page .breadcrumnbs__item[hidden] {
  display: none !important;
}

.renewal-page .breadcrumnbs__item a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.renewal-page .breadcrumnbs__item a svg {
  display: block;
  width: 16px;
  height: 15px;
  object-fit: contain;
  position: relative;
  top: -2px;  
}

.renewal-page .renewal-breadcrumb__separator {
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .renewal-page .renewal-breadcrumb__inner {
    width: 100%;
    padding: 10px 13px;
  }

  .renewal-page .breadcrumnbs {
    min-height: 40px;
    gap: 9px;
    font-size: 12px;
  }

  .renewal-page .breadcrumnbs__item {
    gap: 9px;
  }
}

/* ========================================
  Renewal Product Card
======================================== */

.renewal-product-card {
  --product-card-main-color: var(--renewal-color-main);
  --product-card-text-color: var(--renewal-color-text);
  --product-card-border-color: var(--renewal-color-border-light);

  height: 100%;
  overflow: hidden;
  border: 1px solid var(--product-card-border-color);
  border-radius: 10px;
  background-color: #ffffff;
}

.renewal-product-card.renewal-products-grid__item--shadow {
  border: 0;
  box-shadow: 0 0 12px 0 rgba(171, 171, 171, 0.20);
}

.renewal-product-card__link {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.renewal-product-card__image {
  width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.renewal-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.renewal-product-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.renewal-products-grid__status {
  display: flex;
  min-height: 24px;
  margin-top: 10px;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.renewal-products-grid__status[hidden] {
  display: none;
}

.renewal-products-grid__status > span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 2px 6px;
  border: 1px solid #f00000;
  border-radius: 3px;
  background-color: #ffffff;
  color: #f00000;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.renewal-product-card__title {
  margin: 10px 0 0 !important;
  color: var(--product-card-text-color);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.renewal-product-card__price {
  display: flex;
  margin: 4px 0 0 !important;
  align-items: baseline;
  flex-wrap: wrap;
  color: var(--product-card-main-color);
}

.renewal-product-card__price-value {
  font-size: 18px;
  font-weight: 600;
}

.renewal-product-card__price-value::after {
  content: "（税込）";
  font-size: 11px;;
}

.renewal-product-card__tax {
  font-size: 13px;
}

.renewal-product-card__point {
  font-size: 15px;
  font-weight: 600;
  
}

.renewal-product-card__description {
  margin: 4px 0 20px !important;
  color: var(--product-card-text-color);
  font-size: 14px;
  line-height: 1.7;
}

.renewal-product-card__button {
  position: relative;
  display: flex;
  min-height: 40px;
  margin-top: auto;
  align-items: center;
  justify-content: center;
  padding: 5px 35px;
  border-radius: var(--renewal-radius-round);
  background-color: var(--product-card-main-color);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.renewal-product-card__button-arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.renewal-product-card__link:hover {
  color: inherit;
}

.renewal-product-card__link:hover
  .renewal-product-card__button {
  opacity: 0.8;
}

/* ========================================
  Renewal Product Card SP
======================================== */

@media screen and (max-width: 767px) {
  .renewal-product-card.renewal-products-grid__item--shadow {
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.05), 3px 3px 10px 0 rgba(0, 0, 0, 0.05);
  }

  .renewal-product-card.renewal-products-grid__item--shadow
    .renewal-product-card__link {
    padding: 12px;
  }

  .renewal-product-card__title {
    font-size: 15px;
    line-height: 1.7;
  }

  .renewal-products-grid
    .renewal-product-card.renewal-products-grid__item--shadow
      .renewal-product-card__price {
    display: block;
    margin-top: 10px !important;
    line-height: 1.4;
    margin-bottom: 30px !important;
  }

  .renewal-products-grid
    .renewal-product-card.renewal-products-grid__item--shadow
      .renewal-product-card__price-value {
    font-size: 20px;
  }

  .renewal-products-grid
    .renewal-product-card.renewal-products-grid__item--shadow
      .renewal-product-card__tax {
    font-size: 12px;
  }

  .renewal-products-grid
    .renewal-product-card.renewal-products-grid__item--shadow
      .renewal-product-card__point {
    display: block;
    font-size: 14px;
  }

  .renewal-products-grid
    .renewal-product-card.renewal-products-grid__item--shadow
      .renewal-product-card__description {
    display: none;
  }

  .renewal-products-grid
    .renewal-product-card.renewal-products-grid__item--shadow
      .renewal-product-card__button {
    min-height: 36px;
    margin-top: auto;
    padding: 4px 28px;
    font-size: 15px;
  }

  .renewal-products-grid__status {
    gap: 8px;
  }
}