/*
|---------------------------------------------------------------
| layout.css
|---------------------------------------------------------------
*/
/*
 * Header
------------------------------------------------*/
.lylw-header {
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 988;
}
.lylw-header .lylw-container {
  padding-left: 10px;
  padding-right: 10px;
}
.lylw-header__top {
  display: block;
  width: 100%;
  color: #231815;
  background: #ffffff;
  position: relative;
}
.lylw-header__nav {
  width: 100%;
  color: #231815;
  background: #ffffff;
  height: 66px;
  display: flex;
  align-items: center;
}

.lylw-header-brand {
  display: block;
  width: 100%;
  max-width: 180px;
}
@media (min-width: 960.02px) {
  .lylw-header-brand {
    max-width: 200px;
  }
}
.lylw-header-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.lylw-header-top {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(121, 155, 164, 0.1);
}
@media (min-width: 960.02px) {
  .lylw-header-top {
    padding: 14px 0;
  }
}
.lylw-header-top__menu {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 960.02px) {
  .lylw-header-top__menu {
    gap: 30px;
  }
}

.lylw-header-search {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 960px) {
  .lylw-header-search {
    padding: 0 15px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    margin: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
  body.js--headersearch_opened .lylw-header-search {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 960.02px) {
  .lylw-header-search {
    max-width: 220px;
    position: static;
  }
}
.lylw-header-search__closer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  line-height: 1;
  padding: 0;
  text-align: center;
  cursor: pointer;
  border: 1px solid currentColor;
  border-radius: 50%;
  overflow: hidden;
  font-size: 20px;
  flex-shrink: 0;
  margin: 0 0 0 10px;
}
@media (min-width: 960.02px) {
  .lylw-header-search__closer {
    display: none;
  }
}
.lylw-header-search__form {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  color: #b8987b;
  background: #ffffff;
  position: relative;
  font-size: 16px;
  border: 1px solid #b8987b;
  border-radius: 4px;
  overflow: hidden;
  padding: 0 34px 0 0;
}
@media (min-width: 960.02px) {
  .lylw-header-search__form {
    height: 34px;
    font-size: 14px;
  }
}
.lylw-header-search__form__input {
  display: block;
  width: 100%;
  height: 100%;
  font-family: inherit;
  background: none;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}
.lylw-header-search__form__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: none;
  box-shadow: none;
  width: 34px;
  height: 34px;
  padding: 5px 5px;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.lylw-header-search__form__button img {
  display: block;
  width: 100%;
  height: auto;
}

.lylw-header-menu {
  display: block;
  width: auto;
  color: #b8987b;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 15px;
  font-weight: bold;
}
.lylw-header-menu__list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.lylw-header-menu__list__item {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.lylw-header-menu__list__item + .lylw-header-menu__list__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: #b8987b;
  margin: 0 1em;
}
.lylw-header-menu__link {
  color: inherit !important;
  text-decoration: none !important;
}

.lylw-header-usermenu {
  width: auto;
  display: flex;
  align-items: center;
}
.lylw-header-usermenu__group {
  list-style: none;
  padding: 0;
  margin: 0;
  width: auto;
  display: flex;
  align-items: center;
}
.lylw-header-usermenu__group__item {
  display: block;
  margin: 0;
  padding: 0;
}
.lylw-header-usermenu__group__item > * {
  margin-left: clamp(7.5px, 2vw, 10px);
  margin-right: clamp(7.5px, 2vw, 10px);
}

.lylw-header-search_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0;
  text-decoration: none !important;
}
@media (min-width: 960.02px) {
  .lylw-header-search_btn {
    display: none;
    width: 40px;
    height: 40px;
  }
}
.lylw-header-search_btn img {
  display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.lylw-header-mypage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0;
  text-decoration: none !important;
}
@media (min-width: 960.02px) {
  .lylw-header-mypage {
    width: 40px;
    height: 40px;
  }
}
.lylw-header-mypage img {
  display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.lylw-header-wishlist {
  display: none;
  width: 35px;
  height: 35px;
  padding: 0;
  text-decoration: none !important;
}
@media (min-width: 960.02px) {
  .lylw-header-wishlist {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
  }
}
.lylw-header-wishlist img {
  display: block;
  width: 80%;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.lylw-header-cart {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  padding: 0;
  color: #ffffff !important;
  text-decoration: none !important;
  background: #d8c2a9;
  border-radius: 2.5px 10px 2.5px 10px;
  /* overflow: hidden; */
  position: relative;
}
@media (min-width: 960.02px) {
  .lylw-header-cart {
    width: 40px;
    height: 40px;
  }
}
.lylw-header-cart img {
  display: block;
  width: 62.5%;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.lylw-header-cart__count {
  display: block;
  width: auto;
  height: 1.25em;
  min-width: 1.25em;
  max-width: 2.5em;
  padding: 0 0.125em;
  font-size: 12px;
  font-style: inherit;
  font-family: inherit;
  line-height: 1.25;
  text-align: center;
  color: #ffffff;
  background: #b8987b;
  border-radius: 50%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  z-index: 2;
  margin: auto;
  transform: translate(30%, -30%);
}
.lylw-header-cart__count:empty, .lylw-header-cart__count.fs-client-cart-count--0 {
  display: none;
}

/*
 * Header Nav
------------------------------------------------*/
.lylw-header-nav {
  width: 100%;
  padding: 0;
}
.lylw-header-nav__list {
  list-style: none;
  padding: 0;
  margin: 0 -5px;
  width: auto;
  display: flex;
  justify-content: center;
}
.lylw-header-nav__list__item {
  display: block;
  width: auto;
  margin: 0;
  padding: 0 5px;
  flex-grow: 1;
  flex-basis: auto;
}
@media (min-width: 960.02px) {
  .lylw-header-nav__list {
    max-width: 1000px;
    margin: 0 auto;
  }
  .lylw-header-nav__list__item {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.lylw-header-nav-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 12px;
  font-weight: 500;
  color: inherit !important;
  text-decoration: none !important;
  text-align: center;
}
.lylw-header-nav-link__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 4px;
}
.lylw-header-nav-link__image img {
  display: block;
  width: auto;
  height: 22px;
}
.lylw-header-nav-link__text {
  display: block;
  margin-top: auto;
}
@media (min-width: 960.02px) {
  .lylw-header-nav-link {
    width: auto;
    height: auto;
    flex-direction: row;
    font-size: 16px;
  }
  .lylw-header-nav-link__image {
    flex: 0 0 auto;
    margin: 0 15px 0 0;
  }
  .lylw-header-nav-link__image img {
    height: 25px;
  }
}

.lylw-hamburger_btn {
  --border-color: #231815;
  --border-width: 1px;
}
.lylw-hamburger_btn__icon {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
  background-image: linear-gradient(var(--border-color, #231815) 0%, var(--border-color, #231815) 100%);
  background-size: 100% var(--border-width, 1px);
  background-repeat: no-repeat;
  background-position: center;
}
.lylw-hamburger_btn__icon::before, .lylw-hamburger_btn__icon::after {
  content: "";
  display: block;
  width: 100%;
  height: var(--border-width, 1px);
  background: var(--border-color, #231815);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  transition: transform 0.25s;
}
.lylw-hamburger_btn__icon::before {
  transform: translateY(-6px);
}
.lylw-hamburger_btn__icon::after {
  transform: translateY(6px);
}
@media (min-width: 960.02px) {
  .lylw-hamburger_btn__icon {
    width: 27px;
    height: 27px;
    margin: 0 15px 0 0;
  }
}

.lylw-navmenu {
  width: 100%;
  height: 100%;
  height: 100dvh;
  display: flex;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 993;
  margin: auto;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.lylw-navmenu__content {
  display: block;
  width: 88%;
  max-width: 380px;
  overflow-y: auto;
  margin: 0 0 0 auto;
  padding: 0 0 40px;
  color: #231815;
  background: #ffffff;
  transform: translateX(120%);
  transition: transform 0.3s;
}
.lylw-navmenu__main {
  display: block;
  width: 100%;
  padding: 15px 0;
  color: #231815;
  background: #f3ede5;
}
@media (min-width: 960.02px) {
  .lylw-navmenu__main {
    padding: 0 0 15px;
    color: #231815;
    background: #ffffff;
  }
}
.lylw-navmenu__sns {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 20px 15%;
}
@media (min-width: 960.02px) {
  .lylw-navmenu__sns {
    display: none;
  }
}

body.js--menu_opened {
  overflow: hidden;
}
body.js--menu_opened .lylw-navmenu {
  opacity: 1;
  pointer-events: auto;
}
body.js--menu_opened .lylw-navmenu__content {
  transform: translateX(0%);
}
@media (min-width: 960.02px) {
  body.js--menu_opened {
    overflow: auto;
  }
  body.js--menu_opened .lylw-navmenu {
    pointer-events: none;
  }
  body.js--menu_opened .lylw-navmenu__content {
    pointer-events: auto;
  }
}
body.js--menu_opened .lylw-hamburger_btn__icon {
  background-size: 0%;
}
body.js--menu_opened .lylw-hamburger_btn__icon::before {
  transform: rotate(-30deg);
}
body.js--menu_opened .lylw-hamburger_btn__icon::after {
  transform: rotate(30deg);
}

.lylw-navmenu__group {
  display: block;
  width: 100%;
  margin: 0;
  padding: 15px 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 16px;
}
.lylw-navmenu__group__head {
  display: block;
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  font-size: 1em;
  border-bottom: 1px solid #d8c2a9;
}
.lylw-navmenu__group__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 0 0 25px;
}
@media (min-width: 960.02px) {
  .lylw-navmenu__group {
    padding: 10px 0;
  }
  .lylw-navmenu__group__head {
    color: #231815;
    background: #f3ede5;
    border: 0;
    height: auto;
    padding: 0.1em 0.5em;
    font-size: 16px;
    line-height: 1.8em;
    text-align: center;
  }
  .lylw-navmenu__group .lylw-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.lylw-navmenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
}
.lylw-navmenu__list__item {
  display: block;
  width: 100%;
  margin: 0;
}
.lylw-navmenu__list__item + .lylw-navmenu__list__item {
  margin-top: 15px;
}
.lylw-navmenu__list__item::before {
  content: "-";
  margin: 0 0.25em 0 0;
}

.lylw-navmenu-link {
  color: inherit !important;
  text-decoration: none !important;
}

.lylw-navmenu-nav {
  display: block;
  width: 100%;
}
.lylw-navmenu-nav__item {
  display: block;
  width: 100%;
}
.lylw-navmenu-nav__item + .lylw-navmenu-nav__item {
  margin-top: 10px;
}

@media (min-width: 960.02px) {
  .lylw-navmenu {
    background: none;
    max-width: 1130px;
    padding: 0 15px;
  }
  .lylw-navmenu__content {
    width: 100%;
    max-width: 280px;
    align-self: flex-start;
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(216, 194, 169, 0.8);
    transform: none;
  }
}
/*
 * Header User Menu
------------------------------------------------*/
.lylw-usermenu {
  width: 100%;
  height: 100%;
  height: 100dvh;
  display: flex;
  align-items: flex-start;
  padding: 10px 10px;
  background: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 993;
  margin: auto;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  cursor: pointer;
}
.lylw-usermenu::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
}
.lylw-usermenu__content {
  display: block;
  width: 53.52%;
  max-width: 240px;
  margin: 0 0 0 auto;
  padding: 20px 15px;
  position: relative;
  z-index: 2;
  color: #231815;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  cursor: default;
}

.lylw-name {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.lylw-usermenu .lylw-name {
  text-align: center;
  margin: 0 0 15px;
  padding: 0.25em 0;
  border-bottom: 1px solid #ebe0d4;
}

.lylw-usermenu-nav {
  display: block;
  width: 100%;
}
.lylw-usermenu-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 10px;
}
.lylw-usermenu-nav__list__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.lylw-usermenu-nav .lylw-button {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

body.js--usermenu_opened {
  overflow: hidden;
}
body.js--usermenu_opened .lylw-usermenu {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 960.02px) {
  body.js--usermenu_opened {
    overflow: auto;
  }
}

@media (max-width: 960px) {
  .lylw-usermenu {
    padding: 10px 10px !important;
  }
}
@media (min-width: 960.02px) {
  .lylw-usermenu {
    cursor: default;
    max-width: 1400px;
    padding: 0 10px;
    top: 0 !important;
  }
  .lylw-usermenu::before {
    background: none;
    top: 0;
  }
  .lylw-usermenu__content {
    box-shadow: 0px 0px 20px 0px rgba(216, 194, 169, 0.8);
  }
}
/*
 * Main
------------------------------------------------*/
.lylw-main {
  display: block;
  width: 100%;
  padding: 40px 0 80px;
}

/*
 * Footer
------------------------------------------------*/
.lylw-footer {
  display: block;
  width: 100%;
  padding: 0 0 40px;
  overflow: hidden;
}
.lylw-footer__toTop {
  display: none;
  width: 100%;
}
.lylw-footer__menu {
  display: block;
  width: 100%;
  border-style: double;
  border-width: 4px 0;
  border-color: #d8c2a9;
}
@media (max-width: 960px) {
  .lylw-footer__menu .lylw-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.lylw-footer__main {
  display: block;
  width: 100%;
}
@media (max-width: 960px) {
  .lylw-footer__main .lylw-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 960.02px) {
  .lylw-footer__main {
    color: #231815;
    background: rgba(216, 194, 169, 0.3);
  }
}
.lylw-footer__copyright {
  display: block;
  width: 100%;
  color: #231815;
  background: #ffffff;
  padding: clamp(20px, 5.33vw, 50px) 0;
}

/*--------------- footer menu ---------------*/
.lylw-footer-menu {
  display: block;
  width: 100%;
}
.lylw-footer-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: block;
}
.lylw-footer-menu__list__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.lylw-footer-menu__list__item + .lylw-footer-menu__list__item {
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #d8c2a9;
}

.lylw-footer-menu-link {
  display: block;
  width: 100%;
  color: inherit !important;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  height: auto;
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 16px;
  line-height: 1.8em;
  position: relative;
  padding-left: 20px;
  padding-right: calc(20px + 0.75em);
}
.lylw-footer-menu-link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-style: solid;
  border-color: #d8c2a9;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 0;
  left: auto;
  right: 20px;
  bottom: 0;
  z-index: 2;
  margin: auto;
  transform: rotate(45deg);
}

@media (min-width: 960.02px) {
  .lylw-footer-menu {
    padding: 1em 0;
  }
  .lylw-footer-menu__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .lylw-footer-menu__list__item {
    width: auto;
    flex: 0 0 auto;
    max-width: 100%;
    margin: 1em 0;
    padding: 0 1em;
  }
  .lylw-footer-menu__list__item + .lylw-footer-menu__list__item {
    border-width: 0 0 0 1px;
  }
  .lylw-footer-menu-link {
    padding: 0;
  }
  .lylw-footer-menu-link::after {
    display: none;
  }
}
/*--------------- footer main ---------------*/
.lylw-footer-main {
  display: block;
  width: 100%;
}
.lylw-footer-main__brand {
  display: block;
  width: 100%;
  margin: 0 0 15px;
  padding: 0 25px 0 0;
}
@media (min-width: 960.02px) {
  .lylw-footer-main__brand {
    margin-bottom: 40px;
  }
}
.lylw-footer-main__layout {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.lylw-footer-main__layout__main {
  display: block;
  width: 100%;
  padding: 25px 15px;
  color: #231815;
  background: rgba(216, 194, 169, 0.3);
}
@media (min-width: 960.02px) {
  .lylw-footer-main__layout__main {
    padding: 0;
    color: inherit;
    background: none;
  }
}
.lylw-footer-main__layout__aside {
  display: block;
  width: 100%;
  order: -1;
  padding: 30px 15px;
}
.lylw-footer-main__layout__aside .lylw-sns {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 30px;
}
@media (min-width: 960.02px) {
  .lylw-footer-main {
    padding: 80px 0;
  }
  .lylw-footer-main__layout {
    width: auto;
    margin: 0 -20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }
  .lylw-footer-main__layout__main {
    flex-grow: 1;
    flex-basis: 0;
    padding: 0 20px;
  }
  .lylw-footer-main__layout__aside {
    padding: 0 20px;
    flex: 0 0 390px;
    max-width: 390px;
    order: 0;
  }
}

.lylw-footer-brand {
  display: block;
  width: clamp(180px, 48vw, 320px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 960.02px) {
  .lylw-footer-brand {
    margin: 0;
  }
}
.lylw-footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.lylw-footer-nav {
  display: block;
  width: 100%;
}
.lylw-footer-nav__list {
  list-style: none;
  padding: 0;
  display: block;
  width: auto;
  margin: 0 -15px 0 0;
  -moz-column-count: 2;
       column-count: 2;
}
.lylw-footer-nav__list__item {
  display: block;
  width: 100%;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
  padding: 0.5em 0;
}
@media (min-width: 960.02px) {
  .lylw-footer-nav {
    max-width: 560px;
  }
  .lylw-footer-nav__list {
    width: auto;
    margin: 0 -0.75em;
    -moz-column-count: auto;
         column-count: auto;
    display: flex;
    flex-wrap: wrap;
  }
  .lylw-footer-nav__list__item {
    width: auto;
    flex: 0 0 auto;
    max-width: 100%;
    margin: 0 0 1.5em;
    padding: 0 0.75em;
  }
}

.lylw-footer-nav-link {
  color: inherit !important;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(14px, 3.73vw, 16px);
  font-weight: 500;
  text-decoration: none;
}

/*--------------- Mail ---------------*/
.lylw-footer-newsletter {
  display: block;
  width: 100%;
  font-size: 16px;
}
.lylw-footer-newsletter__head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 1em;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.lylw-footer-newsletter__head::before, .lylw-footer-newsletter__head::after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background: currentColor;
  margin: 0 1em;
}
.lylw-footer-newsletter__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.lylw-newsletter-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.lylw-newsletter-form__input {
  display: block;
  width: 100%;
  box-shadow: none !important;
  outline: none !important;
  background: #ffffff;
  padding: 0.5em 0.25em 0.5em 1.5em;
  border: 1px solid #d2baa1 !important;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
}
.lylw-newsletter-form__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-shadow: none;
  outline: none !important;
  padding: 0.75em 1.25em;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  color: #231815;
  background: #efe7dd;
  text-align: center;
  flex: 0 0 auto;
  border: 1px solid #d2baa1;
  border-radius: 0 50px 50px 0;
  overflow: hidden;
}
.lylw-newsletter-form__input + .lylw-newsletter-form__button {
  border-left-width: 0;
}

/*--------------- Copyright ---------------*/
.lylw-copyright {
  display: block;
  width: 100%;
  text-align: center;
  color: #7b7473;
  font-size: clamp(12px, 3.2vw, 14px);
}

/*--------------- to top ---------------*/
.lylw-toTop {
  display: block;
  width: 54px;
  height: 56px;
  position: fixed;
  top: auto;
  left: auto;
  right: 15px;
  bottom: 15px;
  z-index: 999;
  margin: auto;
  transition: opacity 0.3s;
}
.lylw-toTop:not(.js--showed) {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 960.02px) {
  .lylw-toTop {
    display: none;
  }
}
.lylw-toTop img {
  display: block;
  width: 100%;
  height: auto;
}


/*--------------- add 20250904 ---------------*/

.lylw-newsletter-form__checkbox{
    margin-top: 25px;
}
.lylw-newsletter-form__checkbox a{
    color: #353535;
}
.lylw-newsletter-form__checkbox input{
    margin-right: 7px;
}
@media (min-width: 960.02px) {
    .lylw-newsletter-form__checkbox{
        margin-left: 30px;
        margin-top: 10px;
    }
}