@charset "UTF-8";
:root {
  --yof-primary: #b99576;
  --default-fontcolor: #333;
  --tof-middlegray: #838588;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--default-fontcolor);
}

/* ================================================
   Main
================================================ */
main {
  width: 750px;
  margin: 0 auto;
}

/* ================================================
   divTopArea
================================================ */
.div-top-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}

/* ================================================
   H1 page-title
================================================ */
#page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
  width: 100%;
  margin-top: 60px;
  margin-bottom: 0;
}

#page-title span {
  word-break: break-word;
  flex: 1 0 0;
  font-family: "Yu Mincho", "YuMincho", "游明朝", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 26px;
  color: var(--default-fontcolor);
  letter-spacing: 1.3px;
  line-height: 1.6;
}

/* ================================================
   Header Banner
================================================ */
.header-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
  width: 100%;
  flex-shrink: 0;
}

.header-banner .image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1086/580;
  flex-shrink: 0;
}

.header-banner img {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

/* ================================================
   Header Banner
================================================ */
#header-banner {
  padding-bottom: 20px;
}
#header-banner img {
  width: 100%;
}

/* ================================================
   Date
================================================ */
.date {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}

.date span {
  word-break: break-word;
  flex: 1 0 0;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: var(--tof-middlegray);
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* ================================================
   Upper Contents Area
================================================ */
.upper-contents-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  width: 100%;
  flex-shrink: 0;
}

/* ================================================
   H2
================================================ */
.h2-text {
  word-break: break-word;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  color: var(--default-fontcolor);
  letter-spacing: 1.2px;
  line-height: 1.6;
  width: 100%;
  padding-top: 30px;
  margin: 0 0 20px 0;
}

.h2-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(to right, var(--yof-primary) 190px, #ededed 190px);
}

/* ================================================
   H3
================================================ */
.h3-text {
  word-break: break-word;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;
  color: var(--default-fontcolor);
  letter-spacing: 1px;
  line-height: 1.6;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-left: 18px;
  border-left: 2px solid var(--yof-primary);
}

/* ================================================
   Paragraph
================================================ */
.p-block {
  word-break: break-word;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--default-fontcolor);
  letter-spacing: 0.8px;
  line-height: 1.8;
  width: 100%;
  padding-bottom: 20px;
  margin: 0;
}

.p-block strong,
.p-block b {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: bold;
}

/* テキストマーカー */
.mark-red {
  background: linear-gradient(transparent 50%, rgba(199, 0, 3, 0.15) 50%);
  mix-blend-mode: multiply;
}

.mark-yellow {
  background: linear-gradient(transparent 50%, rgba(242, 205, 0, 0.3) 50%);
  mix-blend-mode: multiply;
}

/* ================================================
   Textbox Gray (bordered box)
================================================ */
.textbox-gray {
  border: 2px solid #efefef;
  width: 100%;
  padding: 30px;
  margin-top: 10px;
  margin-bottom: 30px;
  word-break: break-word;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: var(--default-fontcolor);
  letter-spacing: 0.8px;
  line-height: 1.8;
}

.textbox-gray p {
  margin: 0;
}

.textbox-gray strong {
  font-weight: bold;
}

/* ================================================
   Subimage
================================================ */
.subimage {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}

/* ================================================
   UL list
================================================ */
.ul-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  width: 100%;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.ul-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
}

.ul-list li .bullet {
  flex-shrink: 0;
  color: var(--yof-primary);
  font-size: 10px;
  line-height: 1;
  padding-top: 3px;
}

.ul-list li .li-text {
  word-break: break-word;
  flex: 1 0 0;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--default-fontcolor);
  letter-spacing: 0.8px;
  line-height: 1.8;
  min-width: 1px;
  margin: 0;
}

/* ================================================
   OL list
================================================ */
.ol-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  width: 100%;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding-left: 0;
  font-size: 16px;
  letter-spacing: 0.8px;
}

.ol-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}

.ol-list li .num {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: bold;
  font-style: normal;
  color: var(--yof-primary);
  white-space: nowrap;
  line-height: 1.8;
  flex-shrink: 0;
  margin: 0;
}

.ol-list li .li-text {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--default-fontcolor);
  line-height: 1.8;
  flex: 1 0 0;
  min-width: 1px;
  margin: 0;
}

/* ================================================
   Product List
================================================ */
.product-list-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 0 !important;
  width: 100%;
  flex-shrink: 0;
}
.product-list-inner h2 {
  word-break: break-word;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  color: var(--default-fontcolor);
  letter-spacing: 1.2px;
  line-height: 1.6;
  width: 100%;
  padding-top: 30px;
  margin: 0 0 20px 0;
  padding-bottom: 0 !important;
  text-align: left !important;
}
.product-list-inner h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(to right, var(--yof-primary) 190px, #ededed 190px);
}
.product-list-inner #list-title {
  word-break: break-word;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  color: var(--default-fontcolor);
  letter-spacing: 1.2px;
  line-height: 1.6;
  width: 100%;
  padding-top: 30px;
  margin: 0 0 20px 0;
  padding-bottom: 0 !important;
  text-align: left !important;
}
.product-list-inner #list-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(to right, var(--yof-primary) 190px, #ededed 190px);
}

.feature-item-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 40px;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 230px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0;
  text-align: center;
}
.feature-item a {
  width: 100%;
}
.feature-item-product-id {
  display: none;
}
.feature-item #productImage {
  width: 185px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature-item .feature-item-fixed-purchase-price, .feature-item .feature-item-favorite-registration, .feature-item .product-set-promotion, .feature-item .feature-vari-cart-add, .feature-item .feature-vari-cart-add-fixed-purchase, .feature-item .favorite-btn, .feature-item .feature-vari-fixed-purchase-price, .feature-item .feature-item-add-favorite, .feature-item .producttext {
  display: none;
}

.feature-item-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  overflow: hidden;
}

.feature-item-img img {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.feature-item-name {
  word-break: break-word;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 18px;
  color: #000;
  letter-spacing: 0.9px;
  line-height: 1.6;
  min-width: 1px;
  width: 100%;
  min-height: 58px;
  align-items: flex-start;
  margin: 0;
  text-align: left;
  margin-bottom: 8px;
}

.feature-item-price {
  word-break: break-word;
  display: flex;
  align-items: center;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  padding-bottom: 10px;
  width: 100%;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}

.feature-item-price .num {
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 1.6;
}

.feature-item-price .unit {
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 1.6;
}

.feature-vari-price {
  font-size: 15px;
  vertical-align: baseline;
  font-feature-settings: "palt";
}

.productPrice {
  font-size: 18px;
}

.feature-item-setpromotion {
  display: none;
}

/* ================================================
   Lower Contents Area
================================================ */
.lower-contents-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

/* ================================================
   Container Card
================================================ */
.container-card {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-content: flex-start;
  align-items: flex-start;
  padding-bottom: 20px;
  width: 100%;
  flex-shrink: 0;
}

.card-column {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 15px;
  border: 1px solid #efefef;
  width: 360px;
  height: 150px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.card-thumb {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.card-thumb img {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.card-text {
  word-break: break-word;
  flex: 1 0 0;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  color: #000;
  letter-spacing: 0.7px;
  line-height: 1.5;
  min-width: 1px;
  margin: 0;
}

.card-arrow {
  background: #f9f6f4;
  position: relative;
  border-radius: 30px;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  display: block;
  max-width: none;
}

#product-list-0 {
  padding: 0 !important;
  background-color: #fff !important;
}
#product-list-1 {
  padding: 0 !important;
  background-color: #fff !important;
}
#product-list-2 {
  padding: 0 !important;
  background-color: #fff !important;
}
#product-list-3 {
  padding: 0 !important;
  background-color: #fff !important;
}
#product-list-4 {
  padding: 0 !important;
  background-color: #fff !important;
}
#product-list-5 {
  padding: 0 !important;
  background-color: #fff !important;
}

/* ================================================
   Responsive (SP: ~750px)
================================================ */
@media (max-width: 750px) {
  main {
    width: 100%;
    padding: 0 20px;
  }
  .div-top-area {
    padding: 30px 0 15px;
  }
  /* H1 */
  #page-title {
    margin-top: 30px;
    padding-bottom: 5px;
  }
  #page-title span {
    font-size: 20px;
    letter-spacing: 1px;
  }
  /* Header Banner */
  .header-banner {
    padding-bottom: 15px;
  }
  #header-banner {
    padding-bottom: 10px;
  }
  /* Date */
  .date {
    padding-bottom: 10px;
  }
  .date span {
    font-size: 13px;
  }
  /* H2 */
  .h2-text {
    padding-top: 15px;
    margin-bottom: 5px;
    font-size: 18px;
    letter-spacing: 0.9px;
  }
  .h2-text {
    margin-bottom: 10px;
  }
  .h2-text::after {
    background: linear-gradient(to right, var(--yof-primary) 95px, #ededed 95px);
    margin-top: 5px;
  }
  /* H3 */
  .h3-text {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  /* Paragraph */
  .p-block {
    padding-bottom: 10px;
    font-size: 15px;
    letter-spacing: 0.75px;
  }
  /* Textbox Gray */
  .textbox-gray {
    font-size: 15px;
    letter-spacing: 0.75px;
    padding: 20px;
  }
  /* Subimage */
  .subimage {
    margin-bottom: 15px;
  }
  /* UL list */
  .ul-list {
    gap: 2px;
    padding-bottom: 10px;
  }
  .ul-list li .li-text {
    font-size: 15px;
    letter-spacing: 0.75px;
  }
  /* OL list */
  .ol-list {
    gap: 5px;
    font-size: 15px;
    letter-spacing: 0.75px;
  }
  .ol-list li .num {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .ol-list li .li-text {
    font-size: 15px;
    letter-spacing: 0.75px;
  }
  /* Product List */
  .product-list-inner {
    gap: 15px;
  }
  .product-list-inner h2 {
    padding-top: 15px;
    margin-bottom: 5px;
    font-size: 18px;
    letter-spacing: 0.9px;
    margin-bottom: 10px;
  }
  .product-list-inner h2::after {
    background: linear-gradient(to right, var(--yof-primary) 95px, #ededed 95px);
    margin-top: 5px;
  }
  .product-list-inner #list-title {
    padding-top: 15px;
    margin-bottom: 5px;
    font-size: 18px;
    letter-spacing: 0.9px;
    margin-bottom: 10px;
  }
  .product-list-inner #list-title::after {
    background: linear-gradient(to right, var(--yof-primary) 95px, #ededed 95px);
    margin-top: 5px;
  }
  .feature-item-list {
    gap: 15px;
  }
  .feature-item {
    width: 160px;
    gap: 5px;
  }
  .feature-item #productImage {
    width: 100%;
  }
  .feature-item-name {
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 1.4;
    min-height: 0;
  }
  .feature-item-price {
    font-size: 11px;
  }
  .feature-item-price .num {
    font-size: 16px;
    letter-spacing: 0.8px;
  }
  .feature-item-price .unit {
    font-size: 11px;
    letter-spacing: 0.55px;
  }
  .feature-vari-price {
    font-size: 11px;
  }
  .productPrice {
    font-size: 16px;
  }
  /* Cards */
  .container-card {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
  }
  .card-column {
    width: 100%;
    height: auto;
    padding: 12px;
  }
  .card-thumb {
    width: 100px;
    height: 100px;
  }
  .card-text {
    font-size: 13px;
    letter-spacing: 0.65px;
  }
}
/* ================================================
   Paragraph
================================================ */
.p-block a {
  color: #113378;
  text-decoration: underline;
}

/* ================================================
   Textbox Gray (bordered box)
================================================ */
.textbox-gray a {
  color: #113378;
  text-decoration: underline;
}/*# sourceMappingURL=feature_cy_custom.css.map */