@charset "UTF-8";
/* ===========================================
@acab/reset.css
=========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

/* ===========================================
  共通設定
=========================================== */
:root {
  --side-pad: 20px;
  --content-width: 1100px;
  --color-navy: #0D0A4F;
  --font-family: "Noto Serif JP", serif;
  --font-family-sans: "Noto Sans JP", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  background-color: #FAF8F1;
  /* font-size: 15px; */
  line-height: 1.5;
  font-family: var(--font-family);
}

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

@media (hover: hover) {
  a {
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
span:not[class] {
  display: inline-block;
}

.c-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  box-sizing: content-box;
}

.c-br-sp {
  display: none;
}

@media (max-width: 767px) {
  .c-br-sp {
    display: block;
  }
  .c-br-pc {
    display: none;
  }
}
.c-button {
  font-size: 20px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  color: white;
  height: 70px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  max-width: 460px;
  width: 100%;
}
.c-button:visited {
  color: white;
}
.c-button:hover, .c-button:active {
  color: white;
}

@media (width < 480px) {
  .c-button {
    font-size: 18px;
    height: 49px;
  }
}
.c-page-heading {
  font-size: 65px;
  font-weight: 600;
  margin-block: 40px;
  font-family: var(--font-family-en);
  text-align: center;
}

@media (max-width: 767px) {
  .c-page-heading {
    font-size: 40px;
  }
}
.c-breadcrumbs {
  padding-top: 40px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-family-en);
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 22px;
       column-gap: 22px;
}

.c-breadcrumbs__item:not(:last-child) {
  position: relative;
}
.c-breadcrumbs__item:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background-color: #707070;
  top: 50%;
  right: -16px;
  margin-top: -0.5px;
}

.icon-chevron {
  width: 7px;
  height: 11px;
  display: inline-block;
  stroke: white;
}

.page-top {
  position: fixed;
  width: 60px;
  height: 60px;
  z-index: 10;
  border-radius: 50%;
  background-color: #5E6165;
  font-size: 12px;
  font-family: var(--font-family-en);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  right: 20px;
  color: white;
  opacity: 0;
  transform: translateY(100px);
  text-indent: -9999px;
}
.page-top::after {
  position: absolute;
  width: 10px;
  height: 10px;
  rotate: -135deg;
  content: "";
  border-right: 1px solid white;
  border-bottom: 1px solid white;
}
.page-top._up {
  animation: pageTopUp 0.3s forwards ease-in;
}
.page-top._down {
  animation: pageTopDown 0.3s forwards ease-in;
}

@keyframes pageTopUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pageTopDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100px);
  }
}
/* ===========================================
  ヘッダー
=========================================== */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
}

.l-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.l-header__logo {
  background-color: var(--color-navy);
  padding: 13px;
  height: 60px;
  transition: height 0.3s;
}
.l-header__logo a {
  position: relative;
  width: 129px;
  height: 100%;
  display: block;
}
.l-header__logo img {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.3s;
  width: 129px;
  height: auto;
}
.l-header__logo ._with-text {
  opacity: 0;
  transform: translateY(100%);
}
.l-header__logo ._not-with-text {
  opacity: 1;
  transform: translateY(4px);
}
._is-top .l-header__logo {
  height: 153px;
}
._is-top .l-header__logo ._not-with-text {
  animation: logoDown 0.3s forwards;
}
._is-top .l-header__logo ._with-text {
  animation: logoUp 0.3s forwards;
}

@keyframes logoUp {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes logoDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
.l-header__menu-area {
  display: flex;
  gap: 30px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0;
  padding-inline: 45px 20px;
  height: 60px;
  font-family: var(--font-family-sans);
  flex-grow: 1;
  justify-content: flex-end;
}
._is-top .l-header__menu-area {
  flex-grow: unset;
  margin-top: 16px;
  border-radius: 5px 0 0 5px;
}

.l-header__menu {
  display: flex;
  font-size: 14px;
  gap: 45px;
}

.l-header__icons {
  display: flex;
  font-size: 8px;
  gap: 20px;
}
.l-header__icons li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-header__icons li a img {
  margin-bottom: 3px;
}

.l-header-search {
  display: flex;
  align-items: center;
  background-color: #F1F1F1;
  height: 34px;
  border-radius: 999px;
  width: 200px;
  padding-inline: 16px 4px;
  overflow: hidden;
  box-sizing: border-box;
  border: none;
}
._is-top .l-header-search {
  background-color: #fff;
}

.l-header-search__input[type=text] {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: 13px;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.l-header-search__submit {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
}
.l-header-search__submit img {
  width: 14px;
  height: 14px;
  display: block;
  pointer-events: none;
}

.l-header__drawer-toggle {
  display: none;
}

@media (width < 840px) {
  .l-header__menu {
    display: none;
  }
  .l-header__menu._is-top {
    flex-grow: 1;
  }
  li:has(.l-header-search) {
    display: none;
  }
  .l-header__menu-area {
    flex-grow: 1;
    padding-left: 20px;
    border-radius: 0;
    justify-content: flex-end;
  }
  ._is-top .l-header__menu-area {
    margin-top: 0;
  }
  .l-header__drawer-toggle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 20px;
    cursor: pointer;
  }
  .l-header__drawer-toggle span {
    width: 20px;
    height: 1px;
    background-color: #000000;
  }
  .l-header__drawer-toggle._is-open {
    position: relative;
  }
  .l-header__drawer-toggle._is-open span {
    position: absolute;
    top: 50%;
    left: 0;
  }
  .l-header__drawer-toggle._is-open span:first-child {
    transform: rotate(-45deg);
  }
  .l-header__drawer-toggle._is-open span:last-child {
    transform: rotate(45deg);
  }
  .l-header__drawer-toggle._is-open span:nth-child(2) {
    display: none;
  }
}
.l-drawer {
  position: fixed;
  width: 100%;
  top: 60px;
  bottom: 0;
  right: -100%;
  transition: right 0.3s;
  background-color: white;
}
.l-drawer._is-open {
  right: 0;
}

.l-drawer__inner {
  padding-block: 40px;
  padding-inline: 20px;
  height: 100%;
  overflow: scroll;
}

.l-drawer-search {
  display: flex;
  background-color: #F1F1F1;
  height: 40px;
  border-radius: 20px;
  width: 100%;
}

.l-drawer-search__input[type=text] {
  border: none;
  background-color: transparent;
  flex-grow: 1;
}

.l-drawer-search__submit {
    width: 35px;
    padding-left: 10px;
    box-sizing: border-box;
}

.l-drawer__menu {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ===========================================
  フッター
=========================================== */
.l-footer {
  background-color: var(--color-navy);
  color: white;
  padding-top: 16px;
  padding-bottom: 16px;
}

.l-footer__logo {
  text-align: center;
  margin-bottom: 25px;
}
.l-footer__logo img {
  display: inline;
}

.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.l-footer__sns li {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-footer__menu {
  font-family: var(--font-family-sans);
  font-weight: 500;
  margin-top: 63px;
  font-weight: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  color: white;
}
.l-footer__menu a:visited {
  color: white;
}

.l-footer__copyright {
  font-size: 11px;
  text-align: center;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .l-footer {
    padding-bottom: 90px;
  }
}
.add-cart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 130px;
  height: 130px;
  border-radius: 65px;
  background-color: #AEA87B;
}
.add-cart a {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.add-cart img {
  width: 27px;
  height: 24px;
}

@media (width < 480px) {
  .add-cart {
    right: 0;
    left: 0;
    bottom: 0;
    height: 54px;
    border-radius: 0;
    width: 100%;
  }
  .add-cart a {
    flex-direction: row;
    gap: 10px;
  }
}
/* ===========================================
  トップページ
=========================================== */
.firstview {
  position: relative;
}

.firstview__image img {
  width: 100%;
}

.firstview__inner {
  position: absolute;
  top: 197px;
  left: 78px;
}

.firstview__text1 {
  font-size: 80px;
  margin-bottom: 10px;
}

.firstview__text2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.firstview__text3 {
  display: flex;
  gap: 13px;
  font-size: 15.56px;
}
.firstview__text3 ._beige {
  display: flex;
  gap: 10px;
  align-items: center;
}
.firstview__text3 ._beige span:first-child {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F2F1EC;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.firstview__text3 ._navy {
  display: flex;
  gap: 10px;
  align-items: center;
}
.firstview__text3 ._navy span:first-child {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1E263C;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 990px) {
  .firstview__text1 {
    font-size: 49px;
  }
  .firstview__text2 {
    font-size: 20px;
  }
  .firstview__text3 {
    flex-direction: column;
  }
  .firstview__text3 ._beige {
    font-size: 14px;
  }
  .firstview__text3 ._beige span:first-child {
    width: 20px;
    height: 20px;
  }
  .firstview__text3 ._navy {
    font-size: 14px;
  }
  .firstview__text3 ._navy span:first-child {
    width: 20px;
    height: 20px;
  }
}
section#itemDetail-wrap .description:has(.firstview){
  margin-top: 0;
}
@media (max-width: 767px) {
  .firstview__inner {
    top: 70%;
    left: 22px;
  }
  .firstview__text1 {
    margin-bottom: 0;
  }
  .firstview__text2 {
    margin-bottom: 5px;
  }
  .firstview__text3 {
    flex-direction: row;
  }
}
.introduction {
  padding-block: 128px;
}

.introduction__columns {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.introduction__body {
  flex-basis: 532px;
}

.introduction__catch {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.introduction__catch ._size-l {
  font-size: 50px;
}

.introduction__title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-family-sans);
}
.introduction__title .-size-s {
  font-size: 14px;
}

.introduction__text {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.introduction__movie {
  flex-basis: 532px;
  overflow: hidden;
}
.introduction__movie video {
  aspect-ratio: 1504/1202;
  background-color: #CCCCCC;
  position: relative;
  right: -1px;
}

@media (max-width: 990px) {
  .introduction__columns {
    flex-direction: column;
  }
  .introduction__body {
    flex-basis: auto;
  }
  .introduction__movie {
    flex-basis: auto;
  }
}
@media (max-width: 767px) {
  .introduction {
    padding-block: 40px;
  }
  .introduction__catch {
    font-size: 28px;
  }
  .introduction__catch ._size-l {
    font-size: 35px;
  }
}
/* ---------- product section ---------- */
.top-product {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* gallery */
.top-product__gallery {
  flex: 1 1 420px;
  max-width: 507px;
}

.top-product__main-image {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  margin-bottom: 16px;
}
.top-product__main-image .swiper-button-prev,
.top-product__main-image .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.top-product__main-image .swiper-button-prev svg,
.top-product__main-image .swiper-button-next svg {
  width: 50%;
  height: 50%;
  fill: #000000;
}
.top-product__main-image .swiper-button-prev {
  left: 0px;
}
.top-product__main-image .swiper-button-next {
  right: 0px;
}

.top-product__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.top-product__arrow--prev {
  left: -18px;
}

.top-product__arrow--next {
  right: -18px;
}

.top-product__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.top-product__thumbnail {
  aspect-ratio: 1/1;
  background-color: #d9d9d9;
  border: none;
  padding: 0;
  cursor: pointer;
}

.top-product__thumbnail.is-active {
  outline: 2px solid #15193f;
  outline-offset: -2px;
}

/* info */
.top-product__info {
  flex: 1 1 380px;
  max-width: 480px;
  padding-top: 4px;
}

.top-product__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 28px;
  font-weight: 500;
  color: #1a1a2e;
  margin: 0 0 28px;
}

.top-product__row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.top-product__label {
  font-size: 14px;
  color: #333;
  min-width: 56px;
  flex-shrink: 0;
}

.top-product__row--price {
  align-items: baseline;
}

.top-product__price {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a2e;
}

.top-product__tax {
  font-size: 13px;
  color: #666;
}

.select-wrapper {
  position: relative;
  flex: 1;
  max-width: 352px;
}

.top-product__select {
  width: 100%;
  padding: 12px 36px 12px 16px;
  border: 1px solid #999;
  background-color: #fff;
  font-size: 15px;
  color: #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.select-wrapper::before {
  content: "";
  position: absolute;
  top: 9px;
  bottom: 9px;
  right: 32px;
  width: 1px;
  background-color: #ccc;
}

.select-wrapper::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-55%);
  font-size: 18px;
  color: #333;
  pointer-events: none;
}

.top-product__quantity {
  width: 64px;
  padding: 10px 12px;
  border: 1px solid #999;
  font-size: 15px;
  -moz-appearance: textfield;
}

.top-product__quantity::-webkit-inner-spin-button,
.top-product__quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.top-product__unit {
  font-size: 14px;
  color: #333;
}

.top-product__stock-status {
  font-size: 14px;
  color: #333;
}

.top-product__actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  font-size: 15px;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background-color: #15193f;
  color: #fff;
}

.btn--outline {
  background-color: #fff;
  color: #15193f;
  border-color: #15193f;
}

.top-product__return-link {
  display: block;
  margin-top: 24px;
  font-size: 13px;
  color: #333;
  text-decoration: underline;
}

.top-product__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  color: #333;
}

.top-product__stars {
  color: #ccc;
  letter-spacing: 2px;
  font-size: 18px;
}

.top-product__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.share-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.share-line {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #06c755;
  color: #fff;
  border-radius: 16px;
  padding: 6px 14px;
  font-size: 13px;
  text-decoration: none;
}

.top-product__contact {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: #333;
  text-decoration: underline;
}

@media (max-width: 720px) {
  .top-product {
    flex-direction: column;
  }
  .top-product__gallery,
  .top-product__info {
    max-width: 100%;
  }
}
.sleep-is {
  position: relative;
}

.sleep-is__text-area {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.sleep-is__text1 {
  text-align: center;
  font-size: 100px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.sleep-is__text2 {
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  color: #FFFFFF;
}

@media (max-width: 990px) {
  .sleep-is__text1 {
    font-size: 72px;
  }
  .sleep-is__text2 {
    font-size: 30px;
  }
}
@media (width < 480px) {
  .sleep-is__text1 {
    font-size: 32px;
  }
  .sleep-is__text2 {
    font-size: 18px;
  }
}
.concept {
  padding-block: 74px;
  padding-inline: 20px;
}

.concept__text1 {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.concept__text1 span {
  display: inline-block;
}

.concept__text2 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}

.concept__images {
  display: flex;
  max-width: 1022px;
  margin-inline: auto;
  gap: 20px;
}

.concept__image {
  position: relative;
}

.concept__color {
  background-color: #AEA87B;
  width: 101px;
  height: 101px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-family-sans);
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (width < 480px) {
  .concept {
    padding-top: 40px;
  }
  .concept__text1 {
    font-size: 17px;
  }
  .concept__text2 {
    font-size: 28px;
  }
  .concept__color {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
  .concept__images {
    flex-direction: column;
  }
}
.social-reaction {
  background-image: linear-gradient(0deg, #0A244F, transparent 80%, transparent);
}

.social-reaction__heading {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}

.social-reaction__slider {
  overflow: hidden;
  display: flex;
  gap: 30px;
}
.social-reaction__slider li {
  flex-shrink: 0;
  border: 15px solid #FFFFFF;
}
.social-reaction__slider li img {
  width: 308px;
}

@media (max-width: 990px) {
  .social-reaction__slider {
    gap: 15px;
  }
  .social-reaction__slider li {
    flex-basis: 200px;
  }
}
@media (width < 480px) {
  .social-reaction__heading {
    font-size: 24px;
  }
}
.issue {
  background-color: #0A244F;
  color: white;
  padding-block: 113px 130px;
  padding-inline: 20px;
  background-image: url("../images/issue-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 50%;
  position: relative;
}
.issue::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 11.5%;
  background: url("../images/issue-bottom.svg") no-repeat center center;
  background-size: 100%;
}

.issue__heading {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 37px;
}
.issue__heading img {
  display: inline;
  vertical-align: middle;
}

.issue__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
}

.issue__text-area {
  flex-basis: 50%;
  height: 483px;
  position: relative;
}

p[class^=issue__text] {
  position: absolute;
  width: 257px;
  height: 257px;
  border-radius: 50%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 37%, transparent 70%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  font-size: 24px;
  font-weight: 500;
  text-decoration: underline;
  text-align: center;
  white-space: nowrap;
}

.issue__text1 {
  top: 0;
  right: 121px;
}

.issue__text2 {
  left: 0;
  top: 158px;
}

.issue__text3 {
  bottom: 0;
  right: 0;
}

@media (max-width: 767px) {
  .issue {
    padding-top: 90px;
    background-size: 120%;
    background-image: none;
  }
  .issue__heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .issue__heading img {
    width: 23px;
  }
  .issue__inner {
    flex-direction: column;
    background-image: url("../images/issue-bg-sp.jpg");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-top: 200px;
    margin-inline: -20px;
  }
  .issue__text-area {
    flex-basis: 270px;
  }
  p[class^=issue__text] {
    font-size: 16px;
    width: 157px;
    height: 157px;
  }
  .issue__text1 {
    right: 95px;
  }
  .issue__text2 {
    top: 127px;
    left: 20px;
  }
  .issue__text3 {
    top: 172px;
    right: 40px;
    bottom: auto;
  }
}
.solution {
  padding-block: 80px 80px;
  padding-inline: 20px;
  background-color: white;
  background-image: url("../images/solution-bg.jpg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
}

.solution__heading {
  text-align: center;
  font-weight: 500;
  font-size: 51px;
  margin-bottom: 80px;
}
.solution__heading ._size-s {
  font-size: 28px;
}
.solution__heading ._size-l {
  font-size: 63px;
}
.solution__heading ._size-m {
  font-size: 51px;
}

.solution__inner {
  display: flex;
  justify-content: flex-end;
}

.solution__container {
  flex-basis: 50%;
}

.solution__text1 {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}

.solution__text2 {
  text-align: center;
  font-size: 25px;
}
.solution__text2 span {
  font-size: 18px;
}

@media (max-width: 767px) {
  .solution {
    padding-top: 17px;
    padding-bottom: 250px;
    background-position: bottom left;
  }
  .solution__heading {
    font-size: 37px;
    margin-bottom: 20px;
  }
  .solution__heading ._size-s {
    font-size: 20px;
  }
  .solution__heading ._size-l {
    font-size: 37px;
  }
  .solution__heading ._size-m {
    font-size: 16px;
  }
  .solution__inner {
    flex-direction: column;
  }
  .solution__text1 {
    font-size: 24px;
  }
}
.feature1 {
  padding-top: 130px;
  padding-inline: 20px;
}

.feature1__catch {
  text-align: center;
  font-weight: 500;
  font-size: 63px;
  margin-bottom: 30px;
}
.feature1__catch ._size-m {
  font-size: 40px;
}
.feature1__catch ._size-s {
  font-size: 28px;
}
.feature1__catch ._size-l {
  font-size: 63px;
}

.feature1__lead {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.9444444444;
  margin-bottom: 40px;
}
.feature1__lead span {
  display: inline-block;
}

.feature1__columns {
  max-width: 1300px;
  margin-inline: auto;
  display: flex;
  gap: 50px;
}

.feature1__visual {
  margin-inline: -20px;
}
.feature1__visual img {
  width: 100%;
  max-width: none;
}

.feature1__figure {
  flex-basis: 620px;
}

.feature1__textArea {
  flex-basis: 570px;
}

@media (max-width: 990px) {
  .feature1__columns {
    flex-direction: column;
    gap: 20px;
  }
  .feature1__textArea {
    flex-basis: auto;
  }
  .feature1__figure {
    flex-basis: auto;
  }
}
@media (width < 480px) {
  .feature1 {
    padding-top: 50px;
  }
  .feature1__catch {
    margin-bottom: 21px;
    font-size: 28px;
  }
  .feature1__catch ._size-m {
    font-size: 26px;
  }
  .feature1__catch ._size-s {
    font-size: 22px;
  }
  .feature1__catch ._size-l {
    font-size: 28px;
  }
  .feature1__lead {
    font-size: 16px;
    margin-bottom: 18px;
  }
}
.adjust-system {
  background-color: white;
  box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
  padding-block: 50px;
  padding-inline: 30px;
  margin-top: -38px;
}

.adjust-system__heading {
  color: var(--color-navy);
  line-height: 1.5625;
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}

.adjust-system__lead {
  font-size: 18px;
  line-height: 1.9444444444;
  text-align: center;
  margin-bottom: 20px;
}
.adjust-system__lead span {
  display: inline-block;
}

.adjust-system__columns {
  display: flex;
  gap: 20px;
  align-items: center;
}

.adjust-system__image {
  flex-basis: 228px;
}

.adjust-system__text {
  flex-basis: 215px;
  font-family: var(--font-family-sans);
}

@media (width < 480px) {
  .adjust-system {
    padding: 25px 20px 40px;
  }
  .adjust-system__heading {
    font-size: 26px;
    margin-bottom: 13px;
  }
  .adjust-system__lead {
    font-size: 16px;
    text-align: left;
  }
  .adjust-system__lead span {
    display: inline;
  }
}
.feature2 {
  margin-top: 66px;
  padding-inline: 20px;
}

.feature2__inner {
  max-width: 1300px;
  margin-inline: auto;
  padding-block: 56px;
  padding-inline: 100px;
  background: url("../images/feature2-bg.png") no-repeat center center;
  background-size: cover;
  position: relative;
}
.feature2__inner::after {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid var(--color-navy);
}

.feature2__heading {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}

.feature2__columns {
  display: flex;
  gap: 25px;
}

.feature2__images {
  flex-basis: 606px;
}

.feature2__textArea {
  flex-basis: 524px;
}

.feature2__text1 {
  font-size: 18px;
  line-height: 1.9444444444;
  text-align: center;
}

.feature2__text2 {
  font-size: 18px;
  line-height: 1.9444444444;
  text-align: center;
  padding-block: 20px;
  margin-block: 20px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.feature2__annotation {
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.6363636364;
  text-align: center;
}

@media (max-width: 990px) {
  .feature2__columns {
    flex-direction: column;
  }
  .feature2__images {
    flex-basis: auto;
  }
  .feature2__textArea {
    flex-basis: auto;
  }
  .feature2__text1 {
    text-align: left;
  }
  .feature2__inner {
    padding-inline: 20px;
    background-repeat: repeat-y;
    background-size: 100%;
  }
}
@media (width < 480px) {
  .feature2__heading {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .feature2__annotation {
    text-align: left;
  }
  .feature2__text1 {
    font-size: 16px;
    line-height: 1.75;
  }
}
.developer-story {
  background: url("../images/developer-story-bg.jpg") no-repeat center center;
  background-size: cover;
  padding-block: 127px;
  padding-inline: 20px;
  margin-top: 118px;
}

.developer-story__heading {
  font-size: 40px;
  text-align: center;
  font-weight: 500;
  color: white;
  margin-bottom: 50px;
}
.developer-story__heading span {
  display: inline-block;
  padding-block: 30px;
  border-top: double 7px white;
  border-bottom: double 7px white;
}

.developer-story__column {
  display: flex;
  max-width: 1100px;
  margin-inline: auto;
}

.developer-story__image {
  flex-basis: 484px;
}
.developer-story__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.developer-story__body {
  flex-basis: 616px;
  background-color: white;
  padding-inline: 45px;
  padding-block: 50px;
}

.developer-story__title {
  font-family: var(--font-family-sans);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.developer-story__text {
  font-size: 18px;
  line-height: 1.9444444444;
}

.developer-story__name {
  font-size: 18px;
  line-height: 1.9444444444;
  text-align: right;
  margin-top: 1em;
}

@media (max-width: 990px) {
  .developer-story__column {
    flex-direction: column;
  }
  .developer-story__image {
    flex-basis: auto;
  }
  .developer-story__body {
    flex-basis: auto;
  }
}
@media (max-width: 767px) {
  .developer-story {
    margin-top: 50px;
    padding-block: 50px 70px;
  }
  .developer-story__heading {
    font-size: 24px;
  }
  .developer-story__heading span {
    padding-block: 13px;
  }
  .developer-story__body {
    padding: 25px 20px;
  }
  .developer-story__title {
    font-size: 20px;
  }
  .developer-story__text {
    font-size: 16px;
    line-height: 1.4375;
  }
}
.users-voice {
  padding-block: 100px;
  padding-inline: 20px;
}

.users-voice__heading {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.users-voice__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1100px;
  margin-inline: auto;
}

.users-voice__item {
  background-color: white;
  padding: 34px;
}

.users-voice__star {
  margin-bottom: 20px;
}
.users-voice__star ._star {
  font-size: 20px;
}
.users-voice__star ._name {
  font-size: 16px;
  margin-left: 17px;
}

.users-voice__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-wrap: auto;
}

.users-voice__text {
  font-size: 16px;
  line-height: 1.4375;
  margin-bottom: 20px;
}

.users-voice__name {
  font-size: 14px;
}

@media (max-width: 767px) {
  .users-voice {
    padding-block: 50px;
  }
  .users-voice__heading {
    font-size: 24px;
  }
  .users-voice__item {
    padding: 24px 20px;
  }
}
.share {
  padding-block: 100px 127px;
  padding-inline: 20px;
  background-color: white;
}

.share__inner {
  text-align: center;
}

.share__image {
  display: inline;
  max-width: 510px;
  width: 100%;
  margin-left: -7%;
}

.share__textarea {
  max-width: 826px;
  margin-inline: auto;
  background-color: #FAF8F1;
  padding: 40px;
  margin-top: -53px;
}

.share__icon {
  width: 36px;
  height: 36px;
  display: inline;
  margin-bottom: 13px;
}

.share__text {
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-family-sans);
  margin-bottom: 20px;
}

.share__button {
  text-align: center;
}

@media (max-width: 767px) {
  .share {
    padding-block: 50px 75px;
  }
  .share__image {
    margin-left: -2%;
  }
  .share__textarea {
    margin-top: -20px;
  }
  .share__text {
    font-size: 24px;
  }
}
.guarantee {
  padding-block: 100px 140px;
  padding-inline: 20px;
  background-color: var(--color-navy);
}

.guarantee__heading {
  color: white;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.guarantee__columns {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  gap: 30px;
}

.guarantee__item {
  background-color: white;
  flex-basis: 535px;
  padding: 30px;
  position: relative;
}
.guarantee__item::after {
  position: absolute;
  content: "";
  inset: 5px;
  border: 1px solid var(--color-navy);
}

.guarantee__title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 13px;
  max-width: 392px;
  margin-inline: auto;
}
.guarantee__title::after, .guarantee__title::before {
  min-height: 85px;
  content: "";
  background: url("../images/laurel.png") no-repeat center center;
  background-size: contain;
}
.guarantee__title::before {
  background-position: right center;
  transform: scale(-1, 1);
}
.guarantee__title::after {
  background-position: right center;
}

.guarantee__text {
  font-size: 18px;
  line-height: 1.4444444444;
  max-width: 432px;
  margin-inline: auto;
}

@media (max-width: 990px) {
  .guarantee__columns {
    flex-direction: column;
  }
  .guarantee__item {
    flex-basis: auto;
  }
}
@media (max-width: 767px) {
  .guarantee {
    padding-block: 50px 70px;
  }
  .guarantee__heading {
    font-size: 24px;
  }
  .guarantee__columns {
    gap: 20px;
  }
  .guarantee__title {
    font-size: 22px;
  }
  .guarantee__title::before, .guarantee__title::after {
    min-height: 65px;
  }
  .guarantee__text {
    font-size: 16px;
  }
}
.top-bg {
  background-color: white;
}

.cta {
  padding-top: 124px;
  padding-inline: 20px;
}

.cta__columns {
  background-color: #FAF8F1;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-block: 50px 64px;
  padding-inline: 64px;
}

.cta__image {
  flex-basis: 480px;
}

.cta__body {
  flex-basis: 460px;
  justify-content: space-between;
}

.cta__catch1 {
  font-size: 28px;
}

.cta__catch2 {
  font-size: 18px;
}

.cta__title {
  font-size: 42px;
}

.cta__color {
  font-size: 18px;
}

.cta__button {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 990px) {
  .cta__columns {
    flex-direction: column;
  }
  .cta__image,
  .cta__body {
    flex-basis: auto;
  }
}
@media (max-width: 767px) {
  .cta__columns {
    padding: 40px 20px;
    gap: 20px;
    align-items: unset;
  }
  .cta__catch1 {
    font-size: 18px;
  }
  .cta__catch2 {
    font-size: 18px;
  }
  .cta__title {
    font-size: 24px;
    margin-top: 7px;
  }
  .cta__color {
    font-size: 14px;
  }
}
.mattress {
  padding-top: 100px;
  padding-inline: 20px;
}

.mattress__heading {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 46px;
  line-height: 1.25;
}

.mattress__heading2 {
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  color: white;
  font-weight: 400;
  padding-block: 10px;
  background-color: #AEA87B;
  max-width: 1100px;
  margin-inline: auto;
}

.mattress__columns {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  gap: 57px;
  background-color: #FAF8F1;
  padding: 75px 70px;
}

.mattress__image {
  flex-basis: 450px;
}

.mattress__body {
  flex-basis: 460px;
}

.mattress__catch1 {
  font-size: 28px;
}

.mattress__catch2 {
  font-size: 18px;
}

.mattress__title {
  font-size: 41px;
}

.mattress__button {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 990px) {
  .mattress__columns {
    flex-direction: column;
  }
  .mattress__image,
  .mattress__body {
    flex-basis: auto;
  }
}
@media (max-width: 767px) {
  .mattress__heading2 {
    font-size: 20px;
    padding-block: 5px;
  }
  .mattress__heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .mattress__columns {
    padding: 24px 20px 40px;
    gap: 20px;
  }
  .mattress__catch1 {
    font-size: 18px;
  }
  .mattress__catch2 {
    font-size: 18px;
  }
  .mattress__title {
    font-size: 24px;
    margin-top: 7px;
  }
}
.product-spec {
  padding-top: 113px;
  padding-inline: 20px;
  padding-bottom: 100px;
}

.product-spec__inner {
  max-width: 1100px;
  margin-inline: auto;
}

.product-spec__heading {
  font-size: 40px;
  text-align: center;
  font-weight: 500;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--color-navy);
  margin-bottom: 57px;
}

.product-spec__columns {
  display: flex;
  gap: 87px;
}

.product-spec__image {
  flex-basis: 453px;
}

.product-spec__body {
  flex-basis: 514px;
}

.product-spec__table {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 18px;
}
.product-spec__table tr {
  min-height: 68px;
  border-bottom: 8px solid white;
}
.product-spec__table th {
  background-color: #F4F4F4;
  width: 108px;
  text-align: center;
  padding-block: 20px;
}
.product-spec__table td {
  padding-block: 20px;
  padding-left: 34px;
}

.product-spec__item {
  margin-top: 87px;
  text-align: center;
}
.product-spec__item img {
  display: inline;
  max-width: 830px;
  width: 100%;
}

@media (max-width: 990px) {
  .product-spec__columns {
    flex-direction: column;
    gap: 40px;
  }
  .product-spec__image {
    flex-basis: auto;
  }
  .product-spec__body {
    flex-basis: auto;
  }
}
@media (max-width: 767px) {
  .product-spec {
    padding-block: 50px 75px;
  }
  .product-spec__heading {
    font-size: 24px;
  }
  .product-spec__table {
    font-size: 16px;
  }
  .product-spec__table td {
    padding-left: 20px;
  }
  .product-spec__item {
    margin-top: 40px;
  }
}
.faq {
  padding-block: 100px 156px;
}

.faq__heading {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq__item summary {
  position: relative;
  cursor: pointer;
  background-color: #AEA87B;
  font-size: 20px;
  padding-left: 78px;
  letter-spacing: 0.05em;
  list-style: none;
  padding-block: 26px 27px;
  padding-right: 50px;
}
.faq__item summary ._icon {
  position: absolute;
  right: 50px;
  top: 42px;
}
.faq__item summary ._icon::before, .faq__item summary ._icon::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #000000;
}
.faq__item summary ._icon::after {
  transform: rotate(90deg);
}
.faq__item summary::before {
  position: absolute;
  content: "Q";
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  left: 27px;
}
.faq__item[open] summary ._icon::after {
  transform: rotate(0deg);
}

.faq__answer {
  position: relative;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding-left: 78px;
  padding-block: 26px 27px;
}
.faq__answer::before {
  position: absolute;
  content: "A";
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  left: 27px;
}

@media (max-width: 767px) {
  .faq {
    padding-block: 50px 75px;
  }
  .faq__heading {
    font-size: 24px;
  }
  .faq__item summary {
    padding-left: 45px;
    font-size: 16px;
    padding-block: 18px 19px;
  }
  .faq__item summary ._icon {
    right: 35px;
    top: 32px;
  }
  .faq__item summary ._icon::before, .faq__item summary ._icon::after {
    width: 15px;
  }
  .faq__item summary::before {
    font-size: 18px;
    left: 20px;
    top: 22px;
  }
  .faq__answer {
    padding-left: 45px;
    font-size: 16px;
  }
  .faq__answer::before {
    font-size: 18px;
    left: 20px;
    top: 30px;
  }
}
#contents:has(section.firstview) {
  width: 100%;
  padding-top: 0;
}

#contents {
  padding-top: 90px;
}

#main-column {
  width: 100%;
}

/* 769px〜1200pxの中間幅対応
   default.css側の #contents は 769px以上で width:1200px 固定のままのため
   （#contents:has(section.firstview) は旧heroセクション用のフックで、
   .nm-top のSwiper Hero構成には一致しない）、この範囲だけ横スクロールが
   発生する。768px以下（default.css側で既にwidth:100%）、1201px以上
   （既存の固定1200px中央寄せ表示）は変更せず、769〜1200pxのみ
   #contents を可変幅にして .nm-theme.nm-top 配下のリキッド対応を有効にする。
   default.css / sps_common.css 自体は変更していない。 */
@media screen and (min-width: 769px) and (max-width: 1200px) {
  #contents {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  div#main-column > section {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #main-column:has(.firstview) {
    padding-inline: 0;
  }
}
#bread-crumb-listTop ol li {
  font-size: inherit;
}

#sub-column {
  display: none;
}

#itemDetail-cont .itemThumb-wrap {
  width: 50%;
}

#itemDetail-cont .itemOutline {
  width: 44.4444444444%;
}

@media screen and (max-width: 480px) {
  #itemDetail-cont .itemThumb-wrap {
    width: 100%;
  }
  #itemDetail-cont .itemOutline {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */

/* ===========================================
  トップページ リニューアル（.nm-theme スコープ限定）
  以下のCSSはすべて .nm-theme 配下でのみ有効。
  既存クラス（.c-button, .firstview 等）は他ページ
  （商品ページ等）で使用中のため変更していません。
=========================================== */
.nm-theme {
  --nm-navy: var(--color-navy, #0D0A4F);
  --nm-cream: #FAF8F1;
  --nm-text: #262626;
  font-family: var(--font-family-sans), "Noto Sans JP", sans-serif;
  color: var(--nm-text);
}
.nm-theme .nm-c-br-sp {
  display: none;
}
@media (max-width: 767px) {
  .nm-theme .nm-c-br-sp {
    display: inline;
  }
}

/* ボタン */
.nm-theme .nm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  padding-inline: 32px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  min-width: 240px;
  white-space: nowrap;
}
.nm-theme .nm-btn--primary {
  background-color: var(--nm-navy);
  color: #fff;
}
.nm-theme .nm-btn--outline {
  background-color: #fff;
  color: var(--nm-navy);
  border-color: var(--nm-navy);
}
.nm-theme .nm-btn--white {
  background-color: #fff;
  color: var(--nm-navy);
}
.nm-theme .nm-btn--outline-white {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 480px) {
  .nm-theme .nm-btn {
    height: 52px;
    padding-inline: 20px;
    font-size: 14px;
    min-width: 0;
    width: 100%;
  }
}

/* ① Hero（LP導線スライダー） */
.nm-theme .nm-hero {
  position: relative;
  line-height: 0;
}
.nm-theme .nm-hero__swiper {
  width: 100%;
}
.nm-theme .nm-hero__link {
  display: block;
}
.nm-theme .nm-hero__picture img {
  width: 100%;
  height: auto;
}
.nm-theme .nm-hero__slide {
  position: relative;
}
.nm-theme .nm-hero__textarea {
  position: absolute;
  top: 60px;
  left: 60px;
  line-height: 1.4;
  color: var(--nm-navy);
  pointer-events: none;
}
.nm-theme .nm-hero__text1 {
  font-family: var(--font-family);
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 8px;
}
.nm-theme .nm-hero__text2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.nm-theme .nm-hero__colors {
  display: flex;
  gap: 16px;
}
.nm-theme .nm-hero__color {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.nm-theme .nm-hero__color-chip {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.nm-theme .nm-hero__color-chip--beige {
  background-color: #F2F1EC;
}
.nm-theme .nm-hero__color-chip--navy {
  background-color: #1E263C;
}
@media (max-width: 990px) {
  .nm-theme .nm-hero__textarea {
    top: 32px;
    left: 32px;
  }
  .nm-theme .nm-hero__text1 {
    font-size: 30px;
  }
  .nm-theme .nm-hero__text2 {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
@media (max-width: 768px) {
  .nm-theme .nm-hero__colors {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .nm-theme .nm-hero__textarea {
    top: 18px;
    left: 16px;
  }
  .nm-theme .nm-hero__text1 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .nm-theme .nm-hero__text2 {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .nm-theme .nm-hero__colors {
    gap: 10px;
  }
  .nm-theme .nm-hero__color {
    font-size: 10px;
    gap: 6px;
  }
  .nm-theme .nm-hero__color-chip {
    width: 16px;
    height: 16px;
  }
}
.nm-theme .nm-hero__pagination.swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.nm-theme .nm-hero .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.6;
  width: 8px;
  height: 8px;
}
.nm-theme .nm-hero .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--nm-navy);
}

/* ② ブランド紹介 */
.nm-theme .nm-brand {
  padding-block: 100px;
  background-color: var(--nm-cream);
  text-align: center;
}
.nm-theme .nm-brand__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 20px;
}
.nm-theme .nm-brand__eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #8a8368;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.nm-theme .nm-brand__heading {
  font-family: var(--font-family);
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 24px;
}
.nm-theme .nm-brand__lead {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
  color: #333;
}
.nm-theme .nm-brand__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .nm-theme .nm-brand {
    padding-block: 60px;
  }
  .nm-theme .nm-brand__heading {
    font-size: 32px;
  }
  .nm-theme .nm-brand__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ③ Product */
.nm-theme .nm-product {
  padding-block: 100px 60px;
  background-color: #fff;
}
.nm-theme .nm-product__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 20px;
}
.nm-theme .nm-product__label {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #8a8368;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}
.nm-theme .nm-product__title {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
}
.nm-theme .nm-product__columns {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 769px) {
.nm-theme .nm-product__image {
    flex: 1 1 480px;
}
}
.nm-theme .nm-product__image img {
  width: 100%;
  height: auto;
}
.nm-theme .nm-product__body {
  flex: 1 1 420px;
}
.nm-theme .nm-product__catch {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.6;
}
.nm-theme .nm-product__text {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .nm-theme .nm-product__columns {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .nm-theme .nm-product {
    padding-block: 60px 40px;
  }
  .nm-theme .nm-product__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

/* 新着商品（ShopServe自動出力）をProductセクションに馴染ませる */
.nm-theme .newItem {
  max-width: var(--content-width);
  margin-inline: auto;
  padding: 0 20px 100px;
}
.nm-theme .newItem h2 {
  font-family: var(--font-family);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 32px;
}
.nm-theme .newItem .column-set {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  justify-content: center;
}
.nm-theme .newItem .column4 {
  display: flex;
  flex-direction: column;
  width: 260px;
  height: auto;
  box-sizing: border-box;
  padding: 20px 28px 28px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #eee;
}
.nm-theme .newItem .itemThumb-wrap {
  position: relative;
  margin: 0 0 16px;
  text-align: center;
}
.nm-theme .newItem .itemThumb {
  text-align: center;
}
.nm-theme .newItem .itemThumb img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.nm-theme .newItem h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  margin: 0 0 10px;
}
.nm-theme .newItem h3 a {
  display: block;
}
.nm-theme .newItem .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--nm-navy);
  text-align: left;
  margin: 0 0 10px;
}
.nm-theme .newItem .inner-catch {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  text-align: left;
  margin: 0;
}
@media (max-width: 767px) {
  .nm-theme .newItem {
    padding-bottom: 60px;
  }
  .nm-theme .newItem .column4 {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px 24px;
  }
}

/* ④ ブランド特徴 */
.nm-theme .nm-features {
  padding-block: 100px;
  background-color: var(--nm-cream);
}
.nm-theme .nm-features__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 20px;
}
.nm-theme .nm-features__heading {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 56px;
}
.nm-theme .nm-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.nm-theme .nm-features__item {
  background-color: #fff;
  padding: 40px 32px;
}
.nm-theme .nm-features__item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--nm-navy);
}
.nm-theme .nm-features__item p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
@media (max-width: 767px) {
  .nm-theme .nm-features {
    padding-block: 60px;
  }
  .nm-theme .nm-features__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .nm-theme .nm-features__grid {
    grid-template-columns: 1fr;
  }
}

/* ⑤ CTA */
.nm-theme .nm-cta {
  padding-block: 100px;
  background-color: var(--nm-navy);
  color: #fff;
  text-align: center;
}
.nm-theme .nm-cta__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: 20px;
}
.nm-theme .nm-cta__eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nm-theme .nm-cta__heading {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.nm-theme .nm-cta__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 40px;
}
.nm-theme .nm-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .nm-theme .nm-cta {
    padding-block: 60px;
  }
  .nm-theme .nm-cta__heading {
    font-size: 24px;
  }
  .nm-theme .nm-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ⑥ News（ショップからのお知らせ / ShopServe自動出力）
   管理画面の仕様上 news / news-contents / news-box のHTML構造を
   変更できず .nm-theme でラップもできないため、#main-column を付与した
   詳細度で直接スタイリングする（default.css側の .w100 .news /
   #main-column .news h2 / dl.news-box を確実に上書きするため）。
   dd の中身には <time class="news-date"> と
   <a class="news-link"> または <span class="news-link"> を入れて運用する。 */
#main-column .news {
  float: none;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: var(--font-family-sans), "Noto Sans JP", sans-serif;
}
#main-column .news h2 {
  display: block;
  width: auto;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 40px;
}
#main-column .news .news-contents {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  border-top: 1px solid #ddd;
}
#main-column .news dl.news-box {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #333;
}
#main-column .news dl.news-box dd {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin: 0;
  padding: 22px 0;
  line-height: 1.6;
  text-align: left;
}
#main-column .news .news-date {
  flex: 0 0 auto;
  width: 110px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #8a8368;
}
#main-column .news .news-link {
  flex: 1 1 auto;
  min-width: 0;
  color: #333;
}
#main-column .news a.news-link {
  text-decoration: none;
}
#main-column .news a.news-link:hover {
  color: var(--color-navy);
  text-decoration: underline;
}
@media (max-width: 767px) {
  #main-column .news {
    padding-block: 60px;
  }
  #main-column .news h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  #main-column .news dl.news-box dd {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-block: 18px;
  }
  #main-column .news .news-date {
    width: auto;
    flex-basis: auto;
  }
  #main-column .news .news-link {
    flex: 0 1 auto;
  }
}

/* ⑦ ご利用ガイド（トップページ用サマリー） */
.nm-theme .nm-guide {
  padding-block: 100px;
  background-color: var(--nm-cream);
}
.nm-theme .nm-guide__inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 20px;
}
.nm-theme .nm-guide__heading {
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 48px;
}
.nm-theme .nm-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}
.nm-theme .nm-guide__item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--nm-navy);
}
.nm-theme .nm-guide__item p {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
}
.nm-theme .nm-guide__note {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin-bottom: 32px;
}
.nm-theme .nm-guide__button {
  text-align: center;
}
@media (max-width: 767px) {
  .nm-theme .nm-guide {
    padding-block: 60px;
  }
  .nm-theme .nm-guide__heading {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .nm-theme .nm-guide__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 24px;
  }
}
