@charset "UTF-8";
/*
|---------------------------------------------------------------
| style.css
|---------------------------------------------------------------
*/
body {
  color: #231815;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 400;
  /*
  font-size: 16px;
  line-height: 1.8em;
  */
}

::-moz-selection {
  background-color: rgba(184, 152, 123, 0.4);
}

::selection {
  background-color: rgba(184, 152, 123, 0.4);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  transition: opacity 0.25s;
  text-decoration: underline;
}
a:hover {
  opacity: 0.7;
}
a, a:visited, a:hover, a:active {
  color: #b8987b;
}

.bg-primary {
  background: #b8987b;
}

.bg-light {
  background: #f7f3ee;
}

/*
 * Form
------------------------------------------------*/
[type=hidden],
[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=datetime],
[type=date],
[type=month],
[type=week],
[type=time],
[type=datetime-local],
[type=number],
select,
textarea {
  padding: 0.75em 1em;
}

/*
 * fs
------------------------------------------------*/
*[data-member-logged_in=false] *[data-fs-status=member] {
  display: none !important;
}

*[data-member-logged_in=true] *[data-fs-status=guest] {
  display: none !important;
}
/*
 * Container
------------------------------------------------*/
.lylw-container {
  width: 100%;
  max-width: 1430px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/*
 * Button
------------------------------------------------*/
.lylw-button {
  display: inline-block;
  height: auto;
  padding: 0.77em 1em;
  font-size: 18px;
  line-height: 1.8em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  text-decoration: none !important;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  border: 0;
}
.lylw-button, .lylw-button:visited, .lylw-button:hover, .lylw-button:active {
  color: inherit;
  background: #ffffff;
}

.lylw-button.is-block {
  display: block;
  width: 100%;
  max-width: 100%;
}
.lylw-button.has-border {
  border: 2px solid #d9bb99;
  padding: calc(0.77em - 2px) calc(1em - 2px);
}
.lylw-button.has-rightarrow {
  position: relative;
  padding-left: 2.67em;
  padding-right: 2.67em;
}
.lylw-button.has-rightarrow::after {
  content: "";
  box-sizing: border-box;
  display: block;
  width: 1.67em;
  height: 0.38em;
  pointer-events: none;
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-color: currentColor;
  transform: translateY(-25%) skewX(45deg);
  position: absolute;
  top: 0;
  left: auto;
  right: 1.25em;
  bottom: 0;
  z-index: 2;
  margin: auto;
}

.lylw-button.is-primary {
  color: #231815;
  background: #d8c2a9;
}

/*
 * Loading
------------------------------------------------*/
.lylw-loading {
  display: block;
  margin: 0 auto;
  font-size: 0;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #efe7dd;
  border-right-color: #d8c2a9;
  animation: loading 1.5s infinite linear;
}

@keyframes loading {
  to {
    transform: rotate(1turn);
  }
}
/*
 * SNS
------------------------------------------------*/
.lylw-sns {
  display: block;
  width: 100%;
  font-size: 12px;
}
.lylw-sns__list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: auto;
  margin: 0 -20px;
}
.lylw-sns__list__item {
  display: block;
  width: auto;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 0 20px;
}

.lylw-sns-link {
  display: block;
  width: 40px;
  height: auto;
}
.lylw-sns-link img {
  display: block;
  width: 100%;
  height: auto;
}

/*
 * フリーワードから探す
------------------------------------------------*/
.lylw-word_search {
  display: block;
  width: 100%;
  padding: 25px 15px 30px;
  color: #231815;
  background: rgba(216, 194, 169, 0.8);
}
@media (min-width: 960.02px) {
  .lylw-word_search {
    border-radius: 10px;
    overflow: hidden;
  }
}
.lylw-word_search__head {
  display: block;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(20px, 5.33vw, 26px);
  text-align: center;
  font-weight: 500;
  margin: 0 0 0.5em;
  padding: 0;
}
.lylw-word_search__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.lylw-word_search-form {
  display: block;
  width: 100%;
  max-width: 480px;
  height: 50px;
  margin: 0 auto;
  font-size: 16px;
  color: #231815;
  background: #ffffff;
  position: relative;
  border: 1px solid #d8c2a9;
  border-radius: 4px;
  overflow: hidden;
  padding: 0 50px 0 0;
}
.lylw-word_search-form__input {
  display: block;
  width: 100%;
  height: 100%;
  border-right: 1px solid #d8c2a9;
}
.lylw-word_search-form__input input[name=keyword] {
  display: block;
  width: 100%;
  height: 100%;
  font-family: inherit;
  background: none;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.lylw-word_search-form__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  box-shadow: none;
  width: 50px;
  height: 50px;
  padding: 14.5px;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.lylw-word_search-form__button img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 960.02px) {
  .lylw-word_search-form {
    height: 60px;
    padding: 0 60px 0 0;
    font-size: 18px;
  }
  .lylw-word_search-form__input input[name=keyword] {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
  .lylw-word_search-form__button {
    width: 60px;
    height: 60px;
    padding: 16.5px;
  }
}

/*
 * Product List
------------------------------------------------*/
.lylw-subgroup {
  display: block;
  width: 100%;
  margin: 25px 0 0;
  padding: 0;
  border: 1px solid #C2A68D;
  border-radius: 3px;
  overflow: hidden;
}
.lylw-subgroup:not(.js--active) {
  display: none;
}
.lylw-subgroup .fs-c-listControl {
  display: none;
}
.lylw-subgroup .fs-c-subgroup {
  margin: 0;
  padding: 0 5px;
  display: none;
  border-style: solid;
  border-width: 1px 0 0;
  border-color: #C2A68D;
}
.lylw-subgroup + .fs-c-productList {
  margin-top: 0;
}

.lylw-subgroup_toggle {
  display: block;
  width: 100%;
  font-size: 15px;
  text-align: center;
  padding: 0.8em 2.75em;
  position: relative;
  cursor: pointer;
}
.lylw-subgroup_toggle::after {
  content: "";
  display: block;
  width: 1.75em;
  height: 1.75em;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f7f3ee;
  background-image: linear-gradient(#d8c2a9 0%, #d8c2a9 100%), linear-gradient(#d8c2a9 0%, #d8c2a9 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% 2px, 2px 60%;
  position: absolute;
  top: 0;
  left: auto;
  right: 1em;
  bottom: 0;
  z-index: 2;
  margin: auto;
}

.lylw-subgroup.js--opened .fs-c-subgroup {
  display: block;
}
.lylw-subgroup.js--opened .lylw-subgroup_toggle::after {
  background-size: 60% 2px, 2px 0%;
}

/*
 * Guide
------------------------------------------------*/
.lylw-guide-credit {
  display: block;
  width: 100%;
}
.lylw-guide-credit__card {
  display: block;
  width: 100%;
}

.lylw-guide-np_atobarai {
  display: block;
  width: 100%;
}
.lylw-guide-np_atobarai__image {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.lylw-guide-np_atobarai__image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

/*--------------- 送料表 ---------------*/
.lylw-guide-shipping_table {
  width: 100%;
  max-width: 100%;
}
.lylw-guide-shipping_table > * {
  width: 100%;
  max-width: 100%;
}
.lylw-guide-shipping_table table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 0;
}
.lylw-guide-shipping_table table th,
.lylw-guide-shipping_table table td {
  padding: 0.5em 0.75em;
  border: 1px solid #d8c2a9;
}
.lylw-guide-shipping_table table th {
  font-weight: bold;
}
.lylw-guide-shipping_table table td {
  font-weight: normal;
}
.lylw-guide-shipping_table table thead th,
.lylw-guide-shipping_table table thead td {
  background: #f7f3ee;
}
.lylw-guide-shipping_table table thead small {
  font-size: 0.8em;
}
.lylw-guide-shipping_table table tbody th {
  text-align: left;
}
.lylw-guide-shipping_table table tbody td {
  text-align: right;
}

/*
 * News
------------------------------------------------*/
.lylw-news {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.lylw-news__list {
  list-style: none;
  padding: 0;
  display: block;
  width: 100%;
}
.lylw-news__list__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.lylw-news__list__item + .lylw-news__list__item {
  margin-top: 5px;
}

.lylw-news-block {
  display: block;
  width: 100%;
  color: #231815 !important;
  background: rgba(216, 194, 169, 0.2);
  text-decoration: none !important;
  height: auto;
  padding: 0.6em 1.75em;
  font-size: 16px;
  line-height: 1.8em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.lylw-news-block::before {
  content: "-";
  margin-right: 0.25em;
}
@media (min-width: 960.02px) {
  .lylw-news-block {
    padding-top: 1.4em;
    padding-bottom: 1.4em;
  }
}

/*
 * STORY
------------------------------------------------*/
.lylw-story {
  display: block;
  width: 100%;
  color: inherit !important;
  text-decoration: none !important;
}
.lylw-story__image {
  display: block;
  width: 100%;
  aspect-ratio: 690/426;
}
.lylw-story__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: #dddddd;
}
.lylw-story__score {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.lylw-story__title {
  display: block;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1em;
  margin: 0 0 0.25em;
  padding: 0;
}
.lylw-story__meta {
  display: block;
  width: 100%;
  color: #b8987b;
  font-size: 0.875em;
}
.lylw-story__layout {
  display: block;
  width: 100%;
}
.lylw-story__layout__head {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  position: relative;
}
.lylw-story__layout__body {
  display: block;
  width: 100%;
}
.lylw-story__layout__head .lylw-story__score {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
}

.lylw-story-score {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 0.5em;
  color: #363739;
  background: #ffffff;
  border-radius: 5px 0 0 0;
  overflow: hidden;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-size: clamp(12px, 3.2vw, 16px);
  line-height: 1;
  white-space: nowrap;
}
.lylw-story-score::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  margin-right: 2px;
  background-image: url("https://lylwith.itembox.design/item/assets/images/heart-solid.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.lylw-story-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.lylw-story-meta__item {
  display: block;
  margin: 0;
  padding: 0;
}
.lylw-story-meta__item + .lylw-story-meta__item::before {
  content: "/";
}

/*
 * Encounter
------------------------------------------------*/
.lylw-encounter {
  display: block;
  width: 100%;
  height: 100%;
  font-size: clamp(14px, 3.73vw, 16px);
  color: inherit !important;
  text-decoration: none !important;
}
.lylw-encounter__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background: #ffffff;
  border: 2px solid #d8c2a9;
  border-radius: 50%;
  overflow: hidden;
}
.lylw-encounter__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lylw-encounter__layout {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lylw-encounter__layout__image {
  display: block;
  width: 100%;
  margin: 0 0 10px;
}
.lylw-encounter__layout__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
}

.lylw-encounter-heading {
  display: block;
  width: 100%;
  color: #231815;
  text-align: center;
}
.lylw-encounter-heading__meta {
  display: block;
  width: 100%;
}
.lylw-encounter-heading__meta .lylw-encounter-score {
  display: none;
}
.lylw-encounter-heading__meta .lylw-encounter-score .starRating span,
.lylw-encounter-heading__meta .lylw-encounter-score .starRating span.highlight {
  color: #d9bb99;
}

.lylw-encounter-title {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.14em;
  line-height: 1.25;
}

.lylw-encounter-nav {
  display: none;
  width: 100%;
  text-align: right;
}
.lylw-encounter-nav__link {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  padding: 0.5em 1em;
  font-size: 1em;
  text-align: center;
  text-decoration: none !important;
  color: #ffffff !important;
  background: #000000;
  /* border-radius: 3px; */
}

.lylw-encounter-name {
  display: block;
  width: 100%;
  margin: 0 0 0.75em;
  padding: 0;
  color: #b8987b;
  font-size: 1em;
  line-height: 1.25;
}

.lylw-encounter-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1em;
  line-height: 1.79;
  text-align: left;
}
.lylw-encounter-content__content {
  flex-grow: 1;
  margin: 0 0 1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.lylw-encounter-content__qa {
  display: none;
  margin: 0 0 1em;
}
.lylw-encounter-content__more {
  display: block;
  width: 100%;
  margin: auto 0 0;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: italic;
  text-decoration: underline;
  text-align: right;
}

.lylw-encounter-qa {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.lylw-encounter-qa > dt {
  display: inline;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.lylw-encounter-qa > dt::after {
  content: ":";
  display: inline-block;
  margin-right: 0.5em;
}
.lylw-encounter-qa > dd {
  display: inline;
  margin: 0;
  padding: 0;
}

/*
 * Recommend
------------------------------------------------*/
.lylw-fr_recommend .flywheel-recommend__frame:not(:empty) {
  margin-bottom: clamp(40px, 10.67vw, 100px);
}
.lylw-fr_recommend .fr3-productListCarousel__slides {
  gap: 20px;
}
@media (min-width: 960.02px) {
  .lylw-fr_recommend .fr3-productListCarousel__slides {
    gap: 40px;
  }
}
.lylw-fr_recommend .fr3-productListCarousel__slides:-webkit-scrollbar-thumb {
  display: none;
}
.lylw-fr_recommend .fr3-productListCarousel__responsive_1 .fr3-productListCarousel__slide {
  flex: 0 0 max(130px, 25vw);
  max-width: max(130px, 25vw);
}
@media (min-width: 960.02px) {
  .lylw-fr_recommend .fr3-productListCarousel__responsive_1 .fr3-productListCarousel__slide {
    flex: 0 0 calc((100% - 120px) / 4);
    max-width: calc((100% - 120px) / 4);
  }
}
.lylw-fr_recommend .fr3-productListCarousel {
  display: block;
  width: auto;
  margin: 0 -15px 0 0;
}
@media (min-width: 960.02px) {
  .lylw-fr_recommend .fr3-productListCarousel {
    width: 100%;
    margin: 0;
    padding: 0 80px;
    position: relative;
  }
}
.lylw-fr_recommend .fr3-productListCarousel__Button {
  display: none;
}
.lylw-fr_recommend .fr3-productListCarousel__Button:disabled {
  display: none;
}
.lylw-fr_recommend .fr3-productListCarousel__Button > img {
  display: none;
}
@media (min-width: 960.02px) {
  .lylw-fr_recommend .fr3-productListCarousel__Button {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #231815;
    width: 42px;
    height: 42px;
    border: 1px solid #d9bb99;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    margin: auto;
  }
  .lylw-fr_recommend .fr3-productListCarousel__Button::after {
    content: "";
    box-sizing: border-box;
    display: block;
    width: 24px;
    height: 6px;
    pointer-events: none;
    border-width: 0 1px 1px 0;
    border-style: solid;
    border-color: currentColor;
    transform: translateY(-25%) skewX(45deg);
  }
}
.lylw-fr_recommend .fr3-productListCarousel__prevButton {
  left: 0;
  right: auto;
  transform: translate(0, -50%) scale(-1, 1);
}
.lylw-fr_recommend .fr3-productListCarousel__nextButton {
  left: auto;
  right: 0;
  transform: translate(0, -50%);
}
.lylw-fr_recommend .fr3-item a {
  color: inherit !important;
  text-decoration: none !important;
}
.lylw-fr_recommend .fr3-item__imageContainer {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.lylw-fr_recommend .fr3-item__imageContainer img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lylw-fr_recommend .fr3-item__productName {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(16px, 4.27vw, 20px);
  margin: 0 0 0.5em;
}
.lylw-fr_recommend .fr3-item__productPrice {
  color: #b8987b;
  font-size: 16px;
}
.lylw-fr_recommend .fr3-item__productPrice__addon {
  display: none;
}

/*
 * u-komi
------------------------------------------------*/
.fs-l-page .u-komi-product-sorting-btn-form-data,
.fs-l-page .u-komi-question-sorting-btn-form-data, .fs-l-page .u-komi-sorting-btn-form-data {
  background-color: #efe7dd !important;
}
.fs-l-page .u-komi-product-sorting-btn-active,
.fs-l-page .u-komi-product-sorting-btn-form-data:hover,
.fs-l-page .u-komi-question-sorting-btn-active,
.fs-l-page .u-komi-question-sorting-btn-form-data:hover,
.fs-l-page .u-komi-sorting-btn-active,
.fs-l-page .u-komi-sorting-btn-form-data:hover {
  background-color: #be9d7b !important;
}
.fs-l-page .productFilterBtn .productFilterBtn-btn,
.fs-l-page .reviewFilterBtn .reviewFilterBtn-btn {
  background-color: #be9d7b;
}
.fs-l-page .productFilterBtn .productFilterBtn-btn:hover,
.fs-l-page .reviewFilterBtn .reviewFilterBtn-btn:hover {
  background-color: #be9d7b;
}
.fs-l-page .review-summary-container .starRating .reviewNumber,
.fs-l-page .review-widget-summary-container .starRating .reviewNumber {
  color: #d9bb99;
}


