@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
:root {
  --bg: #ffffff;
  --text: #000000;
  --text-sub: #666666;
  --accent: #a68e76;
  --font-serif: "Cormorant Garamond", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  margin: 0;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000000;
  letter-spacing: 0.12em;
}
@media (min-width: 640px) {
  body {
    letter-spacing: 0.1em;
  }
}
@media (min-width: 640px) {
  body {
    font-size: 0.9375rem;
  }
}

h1 {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) {
  h5 {
    font-size: 1.125rem;
  }
}

h6 {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

code,
pre {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.875rem;
}

html {
  font-size: 16px;
  -webkit-overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  background-color: #ffffff;
  color: #000000;
  font-size: 0.87em;
}
@media (min-width: 1600px) {
  body {
    max-width: 1600px;
    margin: 0 auto;
  }
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

hr {
  margin: 1.5rem 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #cccccc;
}

.br-sp {
  display: block;
}
@media (min-width: 640px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media (min-width: 640px) {
  .br-pc {
    display: block;
  }
}

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

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

:focus {
  outline: 2px solid #c89f5d;
  outline-offset: 2px;
}

.loading {
  cursor: wait;
}

.no-select {
  user-select: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #666666;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  background-color: #ffffff;
  transition: transform all 0.3s ease-in-out, box-shadow all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.header.is-scrolled {
  box-shadow: none;
}
.header.is-hidden {
  transform: translateY(-100%);
}
@media (min-width: 640px) {
  .header {
    padding: 0;
  }
}

.header__logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding: 2em 0 0 0;
}
@media (min-width: 640px) {
  .header__logo {
    padding: 2em 0 0 0;
  }
}

.header__logo-link {
  display: flex;
  align-items: flex-end;
  gap: 0;
  text-decoration: none;
  transition: opacity all 0.3s ease-in-out;
}
.header__logo-link:hover {
  opacity: 0.8;
}

.header__logo-main {
  width: 12em;
  height: auto;
  padding-right: 1.2em;
}
@media (min-width: 640px) {
  .header__logo-main {
    width: 12em;
    padding-right: 1em;
  }
}

.header__logo-sub {
  width: 9em;
  height: auto;
  display: none;
}
@media (min-width: 640px) {
  .header__logo-sub {
    display: block;
    width: 10em;
  }
}

.header__nav {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header__nav::-webkit-scrollbar {
  display: none;
}

.header__menu {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  list-style: none;
  margin: 0;
  padding: 1.5em 0 1.2em 0;
  gap: 0 0.8em;
}
@media (min-width: 640px) {
  .header__menu {
    padding: 1.7em 0 1em 0;
    gap: 0 2em;
  }
}

.header__menu-item {
  white-space: nowrap;
  width: fit-content;
}
.header__menu-item.is-active .header__menu-link {
  border-bottom: 2px solid #333;
}

.header__menu-link {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color all 0.3s ease-in-out;
  display: inline-block;
  line-height: 1.2em;
  padding-bottom: 14px;
}
html[lang=en] .header__menu-link {
  font-size: 0.9em;
  letter-spacing: 0.03em;
}
.header__menu-link:hover {
  opacity: 0.7;
}
@media (min-width: 640px) {
  .header__menu-link {
    font-size: 1.1em;
    letter-spacing: 0.12em;
    line-height: 1em;
  }
  html[lang=en] .header__menu-link {
    font-size: 1em;
    letter-spacing: 0.08em;
  }
}

.header__actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .header__actions {
    gap: 1rem;
    top: 1.25rem;
    right: 1.5rem;
  }
}

.header__action-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: all all 0.3s ease-in-out;
  text-decoration: none;
}
@media (min-width: 640px) {
  .header__action-item {
    width: 40px;
    height: 40px;
  }
}
.header__action-item:hover {
  border-color: #cccccc;
  background-color: #f5f5f5;
}
.header__action-item:active {
  transform: scale(0.95);
}
.header__action-item--cart {
  position: relative;
}
.header__action-item--cart.is-has-items .header__action-icon {
  filter: invert(45%) sepia(80%) saturate(1200%) hue-rotate(140deg) brightness(95%) contrast(90%);
}
.header__action-item--cart[data-count]::after {
  display: none;
}
.header__action-item--favorite.is-has-favorites .header__action-icon {
  filter: invert(45%) sepia(80%) saturate(1200%) hue-rotate(140deg) brightness(95%) contrast(90%);
}
.header__action-item--favorite.is-pulsing {
  animation: headerFavoritePulse 0.6s ease;
}

@keyframes headerFavoritePulse {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.15);
  }
}
.header__action-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity all 0.3s ease-in-out, visibility all 0.3s ease-in-out;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal.is-open .modal__content {
  transform: translateY(0);
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.modal__content {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 90%;
  width: 400px;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform all 0.3s ease-in-out, opacity all 0.3s ease-in-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
@media (min-width: 640px) {
  .modal__content {
    padding: 4rem;
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity all 0.3s ease-in-out;
}
.modal__close:hover {
  opacity: 0.7;
}

.modal__close-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal__body {
  padding-top: 1.5rem;
}

.modal__message {
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333333;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.modal__message-highlight {
  color: #dc3545;
  letter-spacing: 0.1em;
}

.modal__button {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #212028;
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all all 0.3s ease-in-out;
}
.modal__button:hover {
  background-color: #2d2b36;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(33, 32, 40, 0.3);
}
.modal__button:active {
  transform: translateY(0);
}

.footer {
  background-color: #fafafa;
  border-top: 1px solid #e0e0e0;
  padding: 40px 20px;
  margin-top: 0;
}
.footer__search {
  margin-bottom: 50px;
}
.footer__search .footer__search-form {
  display: flex;
  gap: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background-color: white;
}
.footer__search .footer__search-form input[type=text] {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
  font-size: 0.95em;
  font-family: YakuHanJP, "Noto Serif JP", serif;
}
.footer__search .footer__search-form input[type=text]::placeholder {
  color: #999;
}
.footer__search .footer__search-form button {
  padding: 12px 20px;
  border: none;
  background-color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background-color 0.2s ease-out;
}
.footer__search .footer__search-form button:hover {
  background-color: #f5f5f5;
}
.footer__search .footer__search-form button i {
  font-size: 1em;
}
.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.footer__menu .footer__menu-item {
  margin-bottom: 0;
  padding: 0;
  position: relative;
}
.footer__menu .footer__menu-item .footer__menu-link {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  font-size: 0.95em;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease-out;
}
.footer__menu .footer__menu-item .footer__menu-link:hover {
  color: #666;
}
.footer__menu .footer__menu-item .footer__submenu {
  display: none;
  background-color: white;
  border-left: 3px solid #e0e0e0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu .footer__menu-item .footer__submenu.is-active {
  display: block;
}
.footer__menu .footer__menu-item .footer__submenu .footer__submenu-item .footer__submenu-link {
  display: block;
  padding: 10px 0 10px 15px;
  color: #666;
  text-decoration: none;
  font-size: 0.9em;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s ease-out;
}
.footer__menu .footer__menu-item .footer__submenu .footer__submenu-item .footer__submenu-link:hover {
  color: #333;
}
.footer__sns {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}
.footer__sns .footer__sns-item .footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ddd;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease-out;
}
.footer__sns .footer__sns-item .footer__sns-link:hover {
  background-color: #333;
  border-color: #333;
  color: white;
}
.footer__sns .footer__sns-item .footer__sns-link i {
  font-size: 1.1em;
}
.footer__copyright {
  text-align: center;
  font-size: 0.85em;
  color: #999;
  margin: 0;
  padding: 0;
  font-family: YakuHanJP, "Noto Serif JP", serif;
}

@media (min-width: 640px) {
  .footer {
    padding: 60px 40px;
  }
  .footer__search {
    margin-bottom: 60px;
  }
  .footer__search .footer__search-form {
    max-width: 400px;
  }
  .footer__menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 50px;
  }
  .footer__menu .footer__menu-item .footer__menu-link {
    padding: 14px 20px;
    border-bottom: none;
    border-right: 1px solid #f0f0f0;
  }
  .footer__menu .footer__menu-item .footer__menu-link:hover {
    background-color: #f5f5f5;
  }
  .footer__menu .footer__menu-item .footer__submenu {
    display: block !important;
    background-color: transparent;
    border-left: none;
    padding: 0;
  }
  .footer__menu .footer__menu-item .footer__submenu .footer__submenu-item .footer__submenu-link {
    padding: 8px 20px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9em;
  }
  .footer__menu .footer__menu-item .footer__submenu .footer__submenu-item .footer__submenu-link:hover {
    background-color: #f5f5f5;
  }
  .footer__sns {
    justify-content: flex-start;
    gap: 15px;
  }
}
.ec_top_monthly {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 40vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  filter: brightness(95%);
  position: relative;
}
@media (min-width: 640px) {
  .ec_top_monthly {
    height: 55vh;
  }
}
.ec_top_monthly .link_area {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.ec_top_monthly .shadow {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(240deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.3));
}
.ec_top_monthly .shadow2 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3));
}
.ec_top_monthly .title {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 5%;
  top: 3em;
}
.ec_top_monthly .title h3 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 3em;
  height: 70%;
  writing-mode: vertical-rl;
  font-size: 1.7em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.12em;
  color: white;
}
.ec_top_monthly .title h3 a {
  color: white;
  text-decoration: none;
}
.ec_top_monthly .title h3 a:hover {
  opacity: 0.8;
}
.ec_top_monthly .month {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 3%;
  bottom: 2em;
  width: 5em;
}
.ec_top_monthly .month .flex {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.ec_top_monthly .month .flex .num {
  width: 100%;
  color: white;
  font-size: 5em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
}
@media (min-width: 640px) {
  .ec_top_monthly .month .flex .num {
    line-height: 1em;
  }
}
.ec_top_monthly .month .flex .en {
  width: 100%;
  color: white;
  font-size: 1.2em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
}
@media (min-width: 640px) {
  .ec_top_monthly .month .flex .en {
    font-size: 1em;
    line-height: 1em;
  }
}

.btn_large {
  box-sizing: border-box;
  margin: 2em auto 2em auto;
  padding: 1em 2em 1em 2em;
  width: fit-content;
  display: inline-block;
  position: relative;
  text-align: center;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.6em;
  color: white;
  background-color: black;
  color: white;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
.btn_large a {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: white;
  text-decoration: none;
  z-index: 1;
}
.btn_large img {
  box-sizing: border-box;
  margin: 0;
  padding: 0 0.5em 0 0;
  width: 1.8em;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
@media (min-width: 640px) {
  .btn_large:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0.9;
  }
}

.btn_large.green {
  background-color: #229e73;
  color: white;
}
.btn_large.green a {
  color: white;
}
@media (min-width: 640px) {
  .btn_large.green:hover {
    background-color: #1a7a59;
  }
}

.btn_large.white {
  background-color: white;
  border: 1px solid #229e73;
  color: #229e73;
}
.btn_large.white a {
  color: #229e73;
}
@media (min-width: 640px) {
  .btn_large.white:hover {
    background-color: #f0f0f0;
    border-color: #1a7a59;
  }
}

.lang {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  background-color: white;
}
.lang .l_posi {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0;
  align-items: center;
}
.lang .l_posi li {
  margin: 0;
  padding: 0;
  position: relative;
}
.lang .l_posi li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #ddd;
}
.lang .l_posi li a {
  display: block;
  padding: 8px 16px;
  color: #666;
  text-decoration: none;
  font-size: 0.9em;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.lang .l_posi li a:hover {
  color: #333;
}
.lang .l_posi li.active a {
  color: #333;
  font-weight: 500;
  border-bottom: 2px solid #333;
  padding-bottom: 6px;
}

@media (min-width: 640px) {
  .lang {
    padding: 16px 0;
  }
  .lang .l_posi {
    gap: 0;
  }
  .lang .l_posi li a {
    padding: 8px 20px;
    font-size: 0.95em;
  }
}
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: var(--color-gray-100, #f5f5f5);
  margin-bottom: 12px;
}
.product-card__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.product-card__image--primary {
  opacity: 1;
}
.product-card__image--secondary {
  opacity: 0;
}
.product-card:hover .product-card__image--primary {
  opacity: 0;
}
.product-card:hover .product-card__image--secondary {
  opacity: 1;
}
.product-card__info {
  text-align: center;
  padding: 0 4px;
}
.product-card__name {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--color-text-primary, #333);
}
.product-card__price {
  font-size: 0.9rem;
  color: var(--color-text-secondary, #666);
}
.product-card__price-tax {
  font-size: 0.75rem;
  color: var(--color-text-tertiary, #999);
  margin-left: 4px;
}
.product-card__price-original {
  text-decoration: line-through;
  color: var(--color-text-tertiary, #999);
  margin-right: 8px;
}
.product-card__price-sale {
  color: var(--color-sale, #c00);
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card__badge--soldout {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.product-card__badge--new {
  background: var(--color-primary, #333);
  color: #fff;
}
.product-card__badge--sale {
  background: var(--color-sale, #c00);
  color: #fff;
}

@media (max-width: 768px) {
  .product-card__name {
    font-size: 0.8rem;
  }
  .product-card__price {
    font-size: 0.8rem;
  }
  .product-card__price-tax {
    font-size: 0.7rem;
  }
  .product-card__image-wrapper {
    margin-bottom: 8px;
  }
}
.favorite-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
}
@media (min-width: 640px) {
  .favorite-btn {
    opacity: 0;
    visibility: hidden;
  }
}
.favorite-btn__icon {
  font-size: 20px;
  color: #333;
  transition: color 0.2s ease, font-variation-settings 0.2s ease;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.favorite-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.favorite-btn:hover .favorite-btn__icon {
  color: #229e73;
}
.favorite-btn.is-active {
  background: rgba(255, 255, 255, 0.95);
}
@media (min-width: 640px) {
  .favorite-btn.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.favorite-btn.is-active .favorite-btn__icon {
  color: #229e73;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.favorite-btn.is-animating {
  animation: heartbeat 0.3s ease;
}
.favorite-btn:focus {
  outline: 2px solid #229e73;
  outline-offset: 2px;
}
@media (max-width: 768px) {
  .favorite-btn {
    width: 32px;
    height: 32px;
    bottom: 8px;
    right: 8px;
  }
  .favorite-btn__icon {
    font-size: 18px;
  }
}

.favorite-btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: #fff;
  border: 1px solid #333;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: #333;
  transition: all 0.2s ease;
  gap: 0.5rem;
}
.favorite-btn-detail__icon {
  font-size: 1.25rem;
  color: #333;
  transition: color 0.2s ease, font-variation-settings 0.2s ease;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.favorite-btn-detail__text {
  font-weight: 400;
}
.favorite-btn-detail:hover {
  background: #f5f5f5;
}
.favorite-btn-detail:hover .favorite-btn-detail__icon {
  color: #229e73;
}
.favorite-btn-detail.is-active {
  background: #f5f5f5;
  border-color: #999;
  color: #333;
}
.favorite-btn-detail.is-active .favorite-btn-detail__icon {
  color: #229e73;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.favorite-btn-detail.is-animating {
  animation: heartbeat 0.3s ease;
}
.favorite-btn-detail:focus {
  outline: 2px solid #229e73;
  outline-offset: 2px;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.95);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #fff;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.cart-drawer.is-open {
  transform: translateX(0);
}
@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
}

.cart-drawer__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
}

.cart-drawer__back {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #333;
  font-size: 0.9rem;
}
.cart-drawer__back .material-symbols-outlined {
  font-size: 1.25rem;
}
.cart-drawer__back:hover {
  opacity: 0.7;
}

.cart-drawer__count {
  font-weight: 400;
  color: #666;
}

.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: opacity 0.2s ease;
  outline: none;
}
.cart-drawer__close .material-symbols-outlined {
  font-size: 1.5rem;
}
.cart-drawer__close:hover {
  opacity: 0.7;
}
.cart-drawer__close:focus, .cart-drawer__close:focus-visible {
  outline: none;
  box-shadow: none;
}

.cart-drawer__content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-drawer__items {
  padding: 0;
}

.cart-drawer__item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cart-drawer__item.is-removing {
  opacity: 0;
  transform: translateX(100%);
}

.cart-drawer__item-image {
  display: block;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.cart-drawer__item-image:hover {
  opacity: 0.8;
}
.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .cart-drawer__item-image {
    width: 70px;
    height: 70px;
  }
}

.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cart-drawer__item-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-drawer__item-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.75rem;
}

.cart-drawer__item-tax {
  font-size: 0.75rem;
  font-weight: 400;
  color: #666;
}

.cart-drawer__item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-drawer__quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}

.cart-drawer__quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff;
  border: none;
  cursor: pointer;
  color: #333;
  transition: background-color 0.2s ease;
}
.cart-drawer__quantity-btn .material-symbols-outlined {
  font-size: 1rem;
  font-variation-settings: "wght" 300;
}
.cart-drawer__quantity-btn:hover {
  background: #f5f5f5;
}
.cart-drawer__quantity-btn:active {
  background: #e5e5e5;
}

.cart-drawer__quantity-value {
  min-width: 40px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 0.25rem 0;
}

.cart-drawer__remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.cart-drawer__remove-btn .material-symbols-outlined {
  font-size: 1.25rem;
  font-variation-settings: "wght" 300;
}
.cart-drawer__remove-btn:hover {
  color: #c00;
  background: rgba(204, 0, 0, 0.05);
}

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  color: #666;
}
.cart-drawer__empty-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
  font-variation-settings: "wght" 200;
}
.cart-drawer__empty-text {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.cart-drawer__empty-link {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.cart-drawer__empty-link:hover {
  opacity: 0.8;
}

.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
  flex-shrink: 0;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.cart-drawer__subtotal-label {
  font-size: 0.9rem;
  color: #333;
}

.cart-drawer__subtotal-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 1rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cart-drawer__checkout:hover {
  opacity: 0.9;
}
.cart-drawer__checkout:active {
  transform: scale(0.98);
}

.cart-drawer__continue {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.75rem;
  background: none;
  color: #666;
  border: none;
  font-size: 0.85rem;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}
.cart-drawer__continue:hover {
  color: #333;
}

.header__cart-badge {
  display: none;
}

@keyframes cartBadgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0.5rem;
}
.cart-btn__icon {
  font-size: 1.25rem;
  font-variation-settings: "wght" 300;
}
.cart-btn__icon.is-loading {
  animation: cartBtnSpin 1s linear infinite;
}
.cart-btn:hover {
  opacity: 0.9;
}
.cart-btn:active {
  transform: scale(0.98);
}
.cart-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.cart-btn.is-success {
  background: #2e7d32;
}

@keyframes cartBtnSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.cart_drawer {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transition: right 0.3s ease-out;
  overflow-y: auto;
}
.cart_drawer.cart_slide2 {
  right: 0;
}
.cart_drawer #cart_area {
  position: relative;
  width: 100%;
  background-color: white;
  padding: 20px;
  min-height: 100vh;
  box-sizing: border-box;
}

.cart_message {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  border-radius: 4px;
}
.cart_message p {
  margin: 0 0 20px 0;
  font-size: 1em;
  color: #666;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  line-height: 1.6em;
}

.cart_contents {
  background-color: white;
}
.cart_contents .cart_item {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  gap: 15px;
}
.cart_contents .cart_item:last-child {
  border-bottom: none;
}
.cart_contents .cart_item .cart_item_image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f5f5f5;
}
.cart_contents .cart_item .cart_item_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart_contents .cart_item .cart_item_info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart_contents .cart_item .cart_item_info .cart_item_name {
  font-size: 0.95em;
  color: #333;
  font-weight: 500;
  margin: 0 0 5px 0;
  font-family: YakuHanJP, "Noto Serif JP", serif;
}
.cart_contents .cart_item .cart_item_info .cart_item_price {
  font-size: 0.9em;
  color: #666;
  margin: 0 0 8px 0;
  font-family: YakuHanJP, "Noto Serif JP", serif;
}
.cart_contents .cart_item .cart_item_info .cart_item_qty {
  font-size: 0.85em;
  color: #999;
  margin: 0;
  font-family: YakuHanJP, "Noto Serif JP", serif;
}

.cart_total {
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}
.cart_total .total_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.95em;
  font-family: YakuHanJP, "Noto Serif JP", serif;
}
.cart_total .total_row .total_label {
  color: #666;
  font-weight: 400;
}
.cart_total .total_row .total_price {
  color: #333;
  font-weight: 500;
}
.cart_total .total_row.total_amount {
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  margin-top: 10px;
  font-size: 1.1em;
}
.cart_total .total_row.total_amount .total_label {
  color: #333;
  font-weight: 500;
}
.cart_total .total_row.total_amount .total_price {
  font-weight: 700;
  color: #333;
}

.cart_button {
  display: block;
  width: 100%;
  padding: 14px 20px;
  margin-top: 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 0.95em;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
  font-family: YakuHanJP, "Noto Serif JP", serif;
}
.cart_button:hover {
  background-color: #555;
}
.cart_button.continue_shopping {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}
.cart_button.continue_shopping:hover {
  background-color: #f5f5f5;
}

@media (min-width: 640px) {
  .cart_drawer {
    right: -350px;
    width: 350px;
  }
  .cart_drawer.cart_slide2 {
    right: 0;
  }
  .cart_drawer #cart_area {
    min-height: auto;
    max-height: 100vh;
    overflow-y: auto;
  }
}
#newsletter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
#newsletter.open {
  opacity: 1;
  visibility: visible;
}

#newsletter_container {
  position: relative;
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn_nl_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-out;
}
.btn_nl_close:hover {
  opacity: 0.7;
}
.btn_nl_close i {
  font-size: 1.5em;
  color: #666;
}

#newsletter_title {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 1.5em;
  font-weight: 500;
  color: #333;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.4em;
}

#newsletter_description {
  margin: 0 0 30px 0;
  padding: 0;
  font-size: 0.9em;
  color: #666;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  text-align: center;
  line-height: 1.6em;
}

.newsletter_form {
  width: 100%;
}
.newsletter_form input[type=email],
.newsletter_form input[type=text] {
  display: block;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.95em;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  background-color: white;
  box-sizing: border-box;
  transition: border-color 0.2s ease-out;
}
.newsletter_form input[type=email]:focus,
.newsletter_form input[type=text]:focus {
  outline: none;
  border-color: #333;
}
.newsletter_form input[type=email]::placeholder,
.newsletter_form input[type=text]::placeholder {
  color: #999;
}

.btn_nl_register {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.95em;
  font-weight: 500;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
  margin-top: 10px;
}
.btn_nl_register:hover {
  background-color: #555;
}

@media (min-width: 640px) {
  #newsletter_container {
    max-width: 600px;
    padding: 50px 40px;
  }

  #newsletter_title {
    font-size: 1.8em;
  }

  #newsletter_description {
    font-size: 1em;
    margin-bottom: 35px;
  }
}
#TOP_CONTENTS {
  margin: 8em 0 0 0;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 640px) {
  #TOP_CONTENTS {
    margin: 8em 0 0 0;
    margin-bottom: 0;
    text-align: center;
  }
}

h2.ec_top {
  margin: 2.5em 0 1.5em 0;
  padding: 0;
  font-size: 1.4em;
  font-weight: 500;
  color: #333;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  line-height: 1.4em;
}
@media (min-width: 640px) {
  h2.ec_top {
    font-size: 1.6em;
    margin: 3em 0 2em 0;
  }
}

.ec_top_feature {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
}
@media (min-width: 640px) {
  .ec_top_feature {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ec_top_feature > li {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-attachment: scroll;
  filter: brightness(0.95);
  overflow: hidden;
}
.ec_top_feature > li .link_area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 640px) {
  .ec_top_feature > li .link_area:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.ec_top_feature > li .shadow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(240deg, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}
.ec_top_feature > li .shadow2 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}
.ec_top_feature > li .title {
  position: absolute;
  right: 5%;
  top: 1.5em;
  z-index: 3;
}
.ec_top_feature > li .title h3 {
  margin: 0;
  padding: 0;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: white;
  font-family: YakuHanJP, "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  width: 3em;
  height: 90%;
}
@media (min-width: 640px) {
  .ec_top_feature > li .title h3 {
    font-size: 1.2em;
    width: 3em;
    height: 90%;
  }
}
.ec_top_feature > li .title h3 a {
  color: white;
  text-decoration: none;
}
.ec_top_feature > li .title h3 a:hover {
  text-decoration: underline;
}
@media (min-width: 640px) {
  .ec_top_feature > li.s2 {
    grid-column: span 1;
    height: 20vw;
  }
}

body.products-page,
.products-page-wrapper {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  min-height: 100vh;
}

.lang {
  border-bottom: none !important;
}

.p-description {
  max-width: 60%;
  margin: 60px auto 40px;
  padding: 0 4vw;
  text-align: left;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards;
}
.p-description.is-center {
  text-align: center;
}
.p-description__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-controls {
  position: sticky;
  top: 80px;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4vw;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease);
}
.p-controls.is-hidden {
  transform: translateY(-100%);
}

.p-filter-chips {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  padding-right: 20px;
}
.p-filter-chips::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.p-chip {
  display: inline-block;
  white-space: nowrap;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-sub);
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  transition: 0.3s;
}
.p-chip:hover {
  border-color: var(--text);
  color: var(--text);
}
.p-chip.is-active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.p-sort-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}
.p-sort-wrap.is-open .p-sort-btn {
  background: #f5f5f5;
  color: var(--text);
}
.p-sort-wrap.is-open .p-sort-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-sort-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-sub);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.p-sort-btn:hover {
  background: #f5f5f5;
  color: var(--text);
}

.p-sort-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s var(--ease);
  z-index: 60;
}

.p-sort-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-sub);
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}
.p-sort-item:hover {
  background: #f9f9f9;
  color: var(--text);
}
.p-sort-item.is-active {
  color: var(--accent);
  font-weight: 500;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  padding: 40px 4vw 0;
  max-width: 1600px;
  margin: 0 auto;
}

.p-card {
  display: block;
  text-decoration: none;
  color: inherit;
  opacity: 0;
  animation: fadeUp 1s var(--ease) forwards;
}
.p-card__img {
  position: relative;
  aspect-ratio: 5/4;
  /* 横長に変更 */
  overflow: hidden;
  background: #f4f4f4;
  margin-bottom: 20px;
  border-radius: 2px;
}
.p-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), opacity 0.5s;
}
.p-card__img img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-card:hover .p-card__img img:first-child {
  transform: scale(1.05);
  opacity: 0;
}
.p-card:hover .p-card__img img:nth-child(2) {
  transform: scale(1.05);
  opacity: 1;
}
@media (min-width: 640px) {
  .p-card:hover .p-card__img .favorite-btn {
    opacity: 1;
    visibility: visible;
  }
}
.p-card:hover .p-card__name {
  color: var(--accent);
}
.p-card__meta {
  text-align: center;
}
.p-card__name {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.p-card__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-sub);
}

.p-more-wrap {
  text-align: center;
  padding-bottom: 120px;
  margin-top: 60px;
}

.p-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 60px;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: 100px;
  text-decoration: none;
}
.p-btn-more:hover {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.p-btn-more.is-loading {
  opacity: 0.7;
  pointer-events: none;
}
.p-btn-more.is-hidden {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .p-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }
}
@media (max-width: 768px) {
  .p-description {
    max-width: 90%;
    margin: 40px auto 30px;
    padding: 0 20px;
  }
  .p-description__text {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .p-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 20px 0;
  }

  .p-card__img {
    aspect-ratio: 1;
  }

  .p-controls {
    padding: 15px 20px;
    top: 60px;
  }

  .p-filter-chips {
    padding-right: 10px;
  }

  .p-chip {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .p-btn-more {
    padding: 14px 50px;
    width: 80%;
  }
}
.product-page {
  background: var(--color-bg, #fff);
  color: var(--color-text, #000);
  min-height: 100vh;
}

.product-breadcrumb {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 4vw;
  font-size: 0.8125rem;
  color: #666;
}
.product-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-breadcrumb a:hover {
  color: #000;
}
.product-breadcrumb__sep {
  margin: 0 0.5rem;
  color: #ccc;
}
.product-breadcrumb__current {
  color: #000;
}

.product-main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .product-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem 4rem;
  }
}

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .product-images {
    display: none;
  }
}
.product-images__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.product-slider {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .product-slider {
    display: block;
  }
}
.product-slider__track {
  display: flex;
  transition: transform 0.3s ease;
}
.product-slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.product-slider__slide img {
  width: 100%;
  height: auto;
  display: block;
}
.product-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}
.product-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.product-slider__dot.is-active {
  background: #000;
  transform: scale(1.25);
}

@media (min-width: 769px) {
  .product-info {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}
.product-info__name {
  font-family: "Cormorant Garamond", "Noto Sans JP", serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .product-info__name {
    font-size: 1.375rem;
  }
}
.product-info__code {
  font-size: 0.8125rem;
  color: #666;
  margin: 0 0 1rem;
}
.product-info__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
@media (max-width: 768px) {
  .product-info__price {
    font-size: 1.25rem;
  }
}
.product-info__tax {
  font-size: 0.875rem;
  color: #666;
}
.product-info__stock {
  font-size: 0.875rem;
  margin: 0 0 1.5rem;
}
.product-info__stock.is-available {
  color: #2e7d32;
}
.product-info__stock.is-unavailable {
  color: #c62828;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.product-actions__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.product-actions__cart:hover {
  background: #333;
}
.product-actions__cart:active {
  transform: scale(0.98);
}
.product-actions__cart .material-symbols-outlined {
  font-size: 1.25rem;
}
.product-actions__favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  color: #000;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.product-actions__favorite:hover {
  border-color: #000;
  background: #f5f5f5;
}
.product-actions__favorite .material-symbols-outlined {
  font-size: 1.125rem;
}

.product-description {
  padding-top: 2rem;
  border-top: 1px solid #e0e0e0;
}
.product-description__title {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: #000;
}
.product-description__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #333;
}

.product-images-extra {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .product-images-extra {
    display: none;
  }
}
.product-images-extra__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.product-related {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4vw 4rem;
}
.product-related__title {
  font-family: "Cormorant Garamond", "Noto Sans JP", serif;
  font-size: 1.375rem;
  font-weight: 400;
  margin: 0 0 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .product-related__title {
    font-size: 1.125rem;
  }
}
.product-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .product-related__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.product-related__card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.product-related__card:hover {
  opacity: 0.8;
}
.product-related__img {
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: 2px;
  background: #f5f5f5;
  margin-bottom: 0.75rem;
}
.product-related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-related__meta {
  text-align: center;
}
.product-related__name {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0 0 0.25rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-related__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9375rem;
  color: #666;
  margin: 0;
}

.favorites-page {
  background: #fff;
  min-height: 100vh;
}

.favorites-main {
  min-height: calc(100vh - 200px);
}
.favorites-main #TOP_CONTENTS {
  margin: 8em 0 0 0;
  margin-bottom: 0;
  text-align: center;
}
@media (min-width: 640px) {
  .favorites-main #TOP_CONTENTS {
    margin: 8em 0 0 0;
    margin-bottom: 0;
    text-align: center;
  }
}
.favorites-main .lang {
  border-bottom: none !important;
}

.favorites-breadcrumb {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 4vw;
  font-size: 0.8125rem;
  color: #666;
}
.favorites-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}
.favorites-breadcrumb a:hover {
  color: #000;
}
.favorites-breadcrumb__sep {
  margin: 0 0.5rem;
  color: #ccc;
}
.favorites-breadcrumb__current {
  color: #000;
}

.favorites-header {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 4vw 1.5rem;
}
.favorites-header__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Cormorant Garamond", "Noto Sans JP", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}
@media (max-width: 768px) {
  .favorites-header__title {
    font-size: 1.375rem;
  }
}
.favorites-header__icon {
  color: #229e73;
  font-size: 1.5rem;
}
.favorites-header__count {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem 4vw 4rem;
}
@media (max-width: 1024px) {
  .favorites-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
  }
}
@media (max-width: 768px) {
  .favorites-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
    padding: 1rem 1rem 3rem;
  }
}

.favorites-card {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.favorites-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.favorites-card__img {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: #f4f4f4;
  margin-bottom: 20px;
  border-radius: 8px;
}
.favorites-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.favorites-card:hover .favorites-card__img img {
  transform: scale(1.05);
}
.favorites-card__meta {
  text-align: center;
}
.favorites-card__name {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.favorites-card:hover .favorites-card__name {
  color: #229e73;
}
.favorites-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: #666;
}
.favorites-card__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.favorites-card__remove .material-symbols-outlined {
  font-size: 18px;
  color: #999;
  transition: color 0.2s ease;
}
.favorites-card__remove:hover {
  transform: scale(1.1);
  background: #fff;
}
.favorites-card__remove:hover .material-symbols-outlined {
  color: #333;
}
.favorites-card.is-removing {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.favorites-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 40vh;
}
.favorites-empty__icon {
  font-size: 4rem;
  color: #ddd;
  margin-bottom: 1.5rem;
}
.favorites-empty__text {
  font-size: 1rem;
  color: #666;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.favorites-empty__link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.favorites-empty__link:hover {
  background: #333;
}

.favorites-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}
.favorites-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f0f0f0;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-page {
  background: #fff;
}

.features-main {
  max-width: calc(1600px + 8vw);
  margin: 0 auto;
  padding: 0 4vw 60px;
}
@media (min-width: 640px) {
  .features-main {
    padding: 0 4vw 100px;
  }
}

.features-breadcrumb {
  padding: 20px 0;
  font-size: 0.8rem;
  color: #666;
}
.features-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.features-breadcrumb a:hover {
  color: #333;
}
.features-breadcrumb__sep {
  margin: 0 8px;
}
.features-breadcrumb__current {
  color: #333;
}

.features-header {
  text-align: center;
  padding: 40px 0;
}
@media (min-width: 640px) {
  .features-header {
    padding: 60px 0;
  }
}
.features-header__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}
@media (min-width: 640px) {
  .features-header__title {
    font-size: 2.5rem;
  }
}
.features-header__count {
  font-size: 0.9rem;
  color: #666;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}
@media (min-width: 640px) {
  .features-grid {
    gap: 60px 40px;
  }
}

.feature-card {
  opacity: 0;
  animation: featureCardFadeIn 0.6s ease forwards;
}
.feature-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.feature-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 16px;
  border-radius: 2px;
}
.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-card:hover .feature-card__img img {
  transform: scale(1.05);
}
.feature-card__content {
  padding: 0 4px;
}
.feature-card__date {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.feature-card__title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  color: #333;
}
@media (min-width: 640px) {
  .feature-card__title {
    font-size: 1.2rem;
  }
}
.feature-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  margin: 8px 0 0;
}

@keyframes featureCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.features-empty {
  text-align: center;
  padding: 80px 20px;
}
.features-empty__text {
  font-size: 0.95rem;
  color: #666;
}

.feature-detail-page {
  background: #fff;
}

.feature-detail-main {
  max-width: calc(1600px + 8vw);
  margin: 0 auto;
  padding: 0 4vw 60px;
}
@media (min-width: 640px) {
  .feature-detail-main {
    padding: 0 4vw 100px;
  }
}

.feature-detail-breadcrumb {
  padding: 20px 0;
  font-size: 0.8rem;
  color: #666;
}
.feature-detail-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.feature-detail-breadcrumb a:hover {
  color: #333;
}
.feature-detail-breadcrumb__sep {
  margin: 0 8px;
}
.feature-detail-breadcrumb__current {
  color: #333;
}

.feature-detail-header {
  text-align: center;
  padding: 40px 0;
}
@media (min-width: 640px) {
  .feature-detail-header {
    padding: 60px 0;
  }
}
.feature-detail-header__date {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.feature-detail-header__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .feature-detail-header__title {
    font-size: 2rem;
  }
}

.feature-detail-content {
  font-size: 0.95rem;
  line-height: 2.2;
  color: #000;
  font-weight: 500;
  margin-bottom: 60px;
  white-space: pre-line;
}
@media (min-width: 640px) {
  .feature-detail-content {
    font-size: 1rem;
    margin-bottom: 80px;
  }
}
.feature-detail-content .feature-detail-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
@media (min-width: 640px) {
  .feature-detail-content .feature-detail-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (min-width: 640px) {
  .feature-detail-content .feature-detail-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.feature-detail-image {
  margin: 30px 0;
}
@media (min-width: 640px) {
  .feature-detail-image {
    margin: 40px 0;
  }
}
.feature-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-detail-media {
  margin: 30px 0;
}
@media (min-width: 640px) {
  .feature-detail-media {
    margin: 40px 0;
  }
}

.feature-detail-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.feature-detail-products {
  margin-bottom: 60px;
}
@media (min-width: 640px) {
  .feature-detail-products {
    margin-bottom: 80px;
  }
}
.feature-detail-products__title {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 30px;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) {
  .feature-detail-products__title {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}
.feature-detail-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) {
  .feature-detail-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (min-width: 640px) {
  .feature-detail-products__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.feature-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.feature-product-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: #f5f5f5;
  margin-bottom: 12px;
  border-radius: 2px;
}
.feature-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feature-product-card:hover .feature-product-card__img img {
  transform: scale(1.05);
}
.feature-product-card__soldout {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 8px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.feature-product-card__info {
  padding: 0 4px;
}
.feature-product-card__name {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 6px;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feature-product-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.feature-detail-back {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}
.feature-detail-back__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.feature-detail-back__link .material-symbols-outlined {
  font-size: 1.2rem;
}
.feature-detail-back__link:hover {
  color: #333;
}

.page-checkout {
  background-color: #fff;
}

.checkout {
  padding: 24px 16px 60px;
  min-height: 100vh;
}
@media (min-width: 769px) {
  .checkout {
    padding: 40px 24px 80px;
  }
}

.checkout__container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  padding: 0 8px;
}
@media (min-width: 769px) {
  .checkout__steps {
    margin-bottom: 48px;
  }
}

.checkout__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.checkout__step.is-active {
  opacity: 1;
}
.checkout__step.is-completed {
  opacity: 1;
}
.checkout__step.is-completed .checkout__step-number {
  background-color: #229e73;
  color: #fff;
}
.checkout__step.is-completed .checkout__step-number::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}

.checkout__step-number {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e5e5e5;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.is-active .checkout__step-number {
  background-color: #229e73;
  color: #fff;
}
@media (min-width: 769px) {
  .checkout__step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.checkout__step-label {
  font-size: 10px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .checkout__step-label {
    font-size: 12px;
  }
}

.checkout__step-line {
  flex: 1;
  height: 2px;
  background-color: #e5e5e5;
  margin: 0 8px;
  max-width: 60px;
}
@media (min-width: 769px) {
  .checkout__step-line {
    max-width: 80px;
    margin: 0 12px;
  }
}

.checkout__layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}
@media (min-width: 769px) {
  .checkout__layout {
    flex-direction: row;
    gap: 40px;
  }
}

.checkout__main {
  flex: 1;
}

@media (min-width: 769px) {
  .checkout__sidebar {
    width: 380px;
    flex-shrink: 0;
  }
}

.checkout__section {
  display: none;
}
.checkout__section.is-active {
  display: block;
}

.checkout__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}
@media (min-width: 769px) {
  .checkout__section-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.checkout__placeholder {
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.checkout__member-status {
  margin-bottom: 24px;
}

.checkout__member-info {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background-color: rgba(34, 158, 115, 0.08);
  border: 2px solid #229e73;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .checkout__member-info {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.checkout__member-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #229e73;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkout__member-icon .material-symbols-outlined {
  font-size: 24px;
  color: #fff;
}

.checkout__member-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.checkout__member-label {
  font-size: 12px;
  color: #229e73;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout__member-name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.checkout__member-email {
  font-size: 13px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout__member-logout {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.checkout__member-logout .material-symbols-outlined {
  font-size: 16px;
}
.checkout__member-logout:hover {
  border-color: #999;
  color: #333;
  background-color: #f5f5f5;
}
@media (max-width: 480px) {
  .checkout__member-logout {
    width: 100%;
    justify-content: center;
  }
}

.checkout__member-confirm {
  margin-bottom: 24px;
}

.checkout__confirm-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.checkout__confirm-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.checkout__confirm-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.checkout__confirm-row:first-child {
  padding-top: 0;
}

.checkout__confirm-label {
  width: 120px;
  flex-shrink: 0;
  font-size: 13px;
  color: #666;
  font-weight: 500;
}
@media (max-width: 480px) {
  .checkout__confirm-label {
    width: 100px;
    font-size: 12px;
  }
}

.checkout__confirm-value {
  flex: 1;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .checkout__confirm-value {
    font-size: 13px;
  }
}

.checkout__mypage-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background-color: transparent;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 24px;
}
.checkout__mypage-link .material-symbols-outlined {
  font-size: 16px;
}
.checkout__mypage-link:hover {
  border-color: #229e73;
  color: #229e73;
  background-color: rgba(34, 158, 115, 0.03);
}

.checkout__type-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.checkout__type-option {
  display: block;
  cursor: pointer;
}
.checkout__type-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout__type-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.checkout__type-option.is-selected .checkout__type-label {
  border-color: #229e73;
  background-color: rgba(34, 158, 115, 0.03);
}
.checkout__type-label:hover {
  border-color: #229e73;
}

.checkout__type-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkout__type-icon .material-symbols-outlined {
  font-size: 20px;
  color: #333;
}
.checkout__type-option.is-selected .checkout__type-icon {
  background-color: #229e73;
}
.checkout__type-option.is-selected .checkout__type-icon .material-symbols-outlined {
  color: #fff;
}

.checkout__type-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout__type-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.checkout__type-text small {
  font-size: 12px;
  color: #777;
}

.checkout__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout__form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 480px) {
  .checkout__form-row--half {
    flex-direction: row;
    gap: 16px;
  }
  .checkout__form-row--half .checkout__form-group {
    flex: 1;
  }
}

.checkout__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.checkout__form-group--zip {
  max-width: 320px;
}

.checkout__label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout__required {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background-color: #229e73;
  padding: 2px 6px;
  border-radius: 3px;
}

.checkout__optional {
  font-size: 10px;
  font-weight: 500;
  color: #999;
  background-color: #f9f9f9;
  padding: 2px 6px;
  border-radius: 3px;
}

.checkout__input,
.checkout__select {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.checkout__input:focus,
.checkout__select:focus {
  outline: none;
  border-color: #229e73;
  box-shadow: 0 0 0 3px rgba(34, 158, 115, 0.1);
}
.checkout__input::placeholder,
.checkout__select::placeholder {
  color: #bbb;
}
.checkout__input.is-error,
.checkout__select.is-error {
  border-color: #d32f2f;
}
.checkout__input.is-error:focus,
.checkout__select.is-error:focus {
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.checkout__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.checkout__error {
  font-size: 12px;
  color: #d32f2f;
  min-height: 16px;
}

.checkout__form-error {
  padding: 12px 16px;
  background-color: rgba(211, 47, 47, 0.1);
  border: 1px solid #d32f2f;
  border-radius: 4px;
  color: #d32f2f;
  font-size: 14px;
  margin-bottom: 20px;
}

.checkout__zip-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout__zip-prefix {
  font-size: 15px;
  color: #333;
}

.checkout__input--zip {
  width: 140px;
  flex-shrink: 0;
}

.checkout__zip-btn {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #229e73;
  background-color: #fff;
  border: 1px solid #229e73;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.checkout__zip-btn:hover {
  background-color: #229e73;
  color: #fff;
}

.checkout__form-actions {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 480px) {
  .checkout__form-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

.checkout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.checkout__btn .material-symbols-outlined {
  font-size: 18px;
}
.checkout__btn--primary {
  background-color: #229e73;
  color: #fff;
  width: 100%;
}
.checkout__btn--primary:hover {
  background-color: #1b7c5b;
}
@media (min-width: 480px) {
  .checkout__btn--primary {
    width: auto;
    margin-left: auto;
  }
}
.checkout__btn--secondary {
  background-color: #fff;
  color: #333;
  border: 1px solid #e5e5e5;
}
.checkout__btn--secondary:hover {
  background-color: #f9f9f9;
}
.checkout__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checkout__btn.is-loading {
  pointer-events: none;
}

.checkout__btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}
.checkout__summary {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 24px;
}
@media (min-width: 769px) {
  .checkout__summary {
    position: sticky;
    top: 100px;
  }
}

.checkout__summary-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}

.checkout__summary-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout__summary-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkout__summary-item-img {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  flex-shrink: 0;
}
.checkout__summary-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout__summary-item-qty {
  font-size: 12px;
  color: #666;
  margin: 4px 0 0;
}

.checkout__summary-item-info {
  flex: 1;
  min-width: 0;
}

.checkout__summary-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.checkout__summary-item-variation {
  font-size: 11px;
  color: #777;
  margin: 4px 0 0;
}

.checkout__summary-item-price {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.checkout__summary-totals {
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.checkout__summary-row--total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid #e5e5e5;
  font-size: 16px;
  font-weight: 600;
}

.checkout__summary-free-shipping {
  margin-top: 16px;
  padding: 12px;
  background-color: #fff;
  border-radius: 6px;
  font-size: 12px;
  color: #229e73;
  text-align: center;
  border: 1px dashed #229e73;
}

.checkout__shipping-option {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.checkout__checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.checkout__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout__checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #e5e5e5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.checkout__checkbox-custom::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}
.checkout__checkbox:checked + .checkout__checkbox-custom {
  background-color: #229e73;
  border-color: #229e73;
}
.checkout__checkbox:checked + .checkout__checkbox-custom::after {
  opacity: 1;
  transform: scale(1);
}
.checkout__checkbox:focus + .checkout__checkbox-custom {
  box-shadow: 0 0 0 3px rgba(34, 158, 115, 0.2);
}

.checkout__checkbox-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.checkout__form--shipping {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}

.checkout__form-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.checkout__payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checkout__payment-option {
  display: block;
  cursor: pointer;
}
.checkout__payment-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout__payment-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.checkout__payment-option.is-selected .checkout__payment-label {
  border-color: #229e73;
  background-color: rgba(34, 158, 115, 0.03);
}
.checkout__payment-label:hover {
  border-color: #229e73;
}

.checkout__payment-icon {
  width: 48px;
  height: 32px;
  border-radius: 6px;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checkout__payment-icon .material-symbols-outlined {
  font-size: 20px;
  color: #333;
}
.checkout__payment-icon .fa-brands {
  font-size: 20px;
  color: #333;
}
.checkout__payment-option.is-selected .checkout__payment-icon {
  background-color: #229e73;
}
.checkout__payment-option.is-selected .checkout__payment-icon .material-symbols-outlined,
.checkout__payment-option.is-selected .checkout__payment-icon .fa-brands {
  color: #fff;
}
.checkout__payment-icon--applepay {
  background-color: #000;
  border-radius: 4px;
}
.checkout__payment-icon--applepay .fa-brands {
  font-size: 22px;
  color: #fff;
}
.checkout__payment-option.is-selected .checkout__payment-icon--applepay {
  background-color: #000;
}
.checkout__payment-icon--amazon {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.checkout__payment-icon--amazon .fa-brands {
  font-size: 22px;
  color: #FF9900;
}
.checkout__payment-option.is-selected .checkout__payment-icon--amazon {
  background-color: #fff;
  border-color: #229e73;
}

.checkout__payment-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout__payment-text strong {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.checkout__payment-text small {
  font-size: 12px;
  color: #777;
}

.checkout__payment-form {
  margin-top: 24px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.checkout__confirm-message {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
  line-height: 1.6;
}

.checkout__confirm-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.checkout__confirm-section:last-of-type {
  border-bottom: none;
}

.checkout__confirm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.checkout__confirm-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.checkout__confirm-edit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #229e73;
  background: none;
  border: 1px solid #229e73;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.checkout__confirm-edit .material-symbols-outlined {
  font-size: 14px;
}
.checkout__confirm-edit:hover {
  background-color: #229e73;
  color: #fff;
}

.checkout__confirm-content {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}
.checkout__confirm-content p {
  margin: 0;
}

.checkout__confirm-items {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout__confirm-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.checkout__confirm-item-img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  flex-shrink: 0;
}
.checkout__confirm-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.checkout__confirm-item-info {
  flex: 1;
  min-width: 0;
}

.checkout__confirm-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
  margin: 0 0 4px;
}

.checkout__confirm-item-variation {
  font-size: 11px;
  color: #777;
  margin: 0 0 4px;
}

.checkout__confirm-item-qty {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.checkout__confirm-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.checkout__confirm-totals {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout__confirm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.checkout__confirm-row--total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid #e5e5e5;
  font-size: 18px;
  font-weight: 600;
}

.checkout__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout__textarea:focus {
  outline: none;
  border-color: #229e73;
  box-shadow: 0 0 0 3px rgba(34, 158, 115, 0.1);
}
.checkout__textarea::placeholder {
  color: #bbb;
}

.checkout__terms {
  margin: 24px 0;
  padding: 16px;
  background-color: #f9f9f9;
  border-radius: 8px;
}
.checkout__terms a {
  color: #229e73;
  text-decoration: underline;
}
.checkout__terms a:hover {
  text-decoration: none;
}

.checkout__form-actions--confirm {
  padding-top: 32px;
}
@media (min-width: 480px) {
  .checkout__form-actions--confirm {
    display: flex;
    gap: 16px;
  }
}

.checkout__btn--submit {
  font-size: 16px;
  padding: 16px 32px;
}
@media (min-width: 480px) {
  .checkout__btn--submit {
    flex: 1;
  }
}

.checkout__credit-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.checkout__credit-card-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #229e73;
  margin-bottom: 20px;
  padding: 12px 16px;
  background-color: rgba(34, 158, 115, 0.05);
  border-radius: 6px;
}
.checkout__credit-card-security .material-symbols-outlined {
  font-size: 18px;
}

.checkout__credit-card-3ds {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #666;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}
.checkout__credit-card-3ds .material-symbols-outlined {
  font-size: 16px;
  color: #229e73;
}

.checkout__field {
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .checkout__field--half {
    flex: 1;
  }
}

.checkout__field-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 480px) {
  .checkout__field-row {
    flex-direction: row;
  }
}

.checkout__payjp-element {
  padding: 12px 14px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  min-height: 44px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout__payjp-element:focus-within {
  border-color: #229e73;
  box-shadow: 0 0 0 3px rgba(34, 158, 115, 0.1);
}
.checkout__payjp-element.is-error {
  border-color: #d32f2f;
}
.checkout__payjp-element iframe {
  height: 20px !important;
}

.checkout__card-brands {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.checkout__card-brand {
  height: 24px;
  width: 38px;
  opacity: 0.4;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.checkout__card-brand.is-active {
  opacity: 1;
  transform: scale(1.05);
}

.checkout__input--uppercase {
  text-transform: uppercase;
}
.checkout__input--uppercase::placeholder {
  text-transform: none;
}

.checkout__payment-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.checkout__payment-info .material-symbols-outlined {
  font-size: 20px;
  color: #229e73;
  flex-shrink: 0;
  margin-top: 2px;
}
.checkout__payment-info p {
  margin: 0;
}

.checkout__cod-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  background-color: rgba(34, 158, 115, 0.05);
  border: 1px solid rgba(34, 158, 115, 0.2);
  border-radius: 8px;
}

.checkout__cod-fee-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.checkout__cod-fee-amount {
  font-size: 18px;
  font-weight: 600;
  color: #229e73;
}

.checkout__bank-info {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.checkout__bank-info-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.checkout__bank-info-title .material-symbols-outlined {
  font-size: 20px;
  color: #229e73;
}

.checkout__bank-info-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout__bank-info-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px dashed #e5e5e5;
}
.checkout__bank-info-row:last-child {
  border-bottom: none;
}

.checkout__bank-info-label {
  width: 100px;
  flex-shrink: 0;
  font-size: 13px;
  color: #666;
}
@media (max-width: 480px) {
  .checkout__bank-info-label {
    width: 80px;
    font-size: 12px;
  }
}

.checkout__bank-info-value {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
@media (max-width: 480px) {
  .checkout__bank-info-value {
    font-size: 13px;
  }
}

.checkout__bank-info-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 16px 0 0 0;
  padding: 12px;
  background-color: #fff8e6;
  border: 1px solid #ffd966;
  border-radius: 8px;
  font-size: 13px;
  color: #856404;
}
.checkout__bank-info-note .material-symbols-outlined {
  font-size: 18px;
  flex-shrink: 0;
}

.checkout__btn.is-loading {
  position: relative;
  pointer-events: none;
  color: transparent;
}
.checkout__btn.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
  to {
    transform: rotate(360deg);
  }
}
.checkout__delivery-datetime {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e5e5e5;
}

.checkout__subsection-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
}
.checkout__subsection-title .material-symbols-outlined {
  font-size: 22px;
  color: #229e73;
}

.checkout__delivery-note {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.checkout__delivery-note--small {
  margin-top: 8px;
  font-size: 12px;
  color: #888;
}

.checkout__delivery-options {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .checkout__delivery-options {
    flex-direction: column;
  }
}

.checkout__radio-card {
  flex: 1;
  cursor: pointer;
}
.checkout__radio-card input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout__radio-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background-color: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  transition: all 0.2s ease;
}
@media (max-width: 480px) {
  .checkout__radio-card-content {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 16px;
  }
}

.checkout__radio-card input[type=radio]:checked + .checkout__radio-card-content {
  border-color: #229e73;
  background-color: rgba(34, 158, 115, 0.04);
}
.checkout__radio-card input[type=radio]:checked + .checkout__radio-card-content .checkout__radio-card-icon {
  color: #229e73;
}

.checkout__radio-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f9f9f9;
  border-radius: 50%;
  color: #666;
  transition: color 0.2s ease;
}
.checkout__radio-card-icon .material-symbols-outlined {
  font-size: 22px;
}
@media (max-width: 480px) {
  .checkout__radio-card-icon {
    width: 36px;
    height: 36px;
  }
  .checkout__radio-card-icon .material-symbols-outlined {
    font-size: 20px;
  }
}

.checkout__radio-card-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-align: center;
}
@media (max-width: 480px) {
  .checkout__radio-card-text {
    text-align: left;
  }
}

.checkout__date-picker {
  margin-top: 16px;
  animation: checkout-fadeIn 0.3s ease;
}

@keyframes checkout-fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
