@charset "UTF-8";
/* ========================================
  Hover Mixin
  ex: @include hover.hover() {...}
======================================== */
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
:before,
:after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3 */
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  font-family: "Roboto", "Cardo", "Noto Sans JP", sans-serif;
  color: #2b2b40;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

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

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.case {
  background: #f6f3ee;
  margin-top: 200px;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .case {
    margin-top: 80px;
  }
}

.case__inner {
  max-width: 1126px;
  margin: 0 auto;
  padding: 100px 0 160px;
}
@media screen and (max-width: 767px) {
  .case__inner {
    padding: 35px 0 60px;
  }
}

.case__heading {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.1111111111;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case__heading {
    font-size: 24px;
  }
}

.case__text {
  font-size: 14px;
  letter-spacing: 0.09em;
  line-height: 2.0714285714;
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .case__text {
    font-size: 11px;
    text-align: left;
  }
}

.case__annotation {
  font-size: 12px;
  letter-spacing: 0.09em;
  line-height: 2.6666666667;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case__annotation {
    font-size: 10px;
    text-align: left;
  }
}

.case__list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 31.2611012433%);
  row-gap: 80px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .case__list {
    margin-top: 30px;
    grid-template-columns: repeat(2, 47.7611940299%);
    row-gap: 25px;
  }
}

.case__list-item {
  transition: 0.3s;
}

@media (hover: hover) {
  .case__list-item.not-hover {
    opacity: 0.3;
  }
}

.case__list-item-button {
  display: block;
  position: relative;
  position: relative;
}
.case__list-item-button:after {
  content: "転載禁止";
  position: absolute;
  top: 0;
  right: 0;
  background: #333 !important;
  font-size: 13px;
  color: #fff;
  background: #000;
  padding: 5px 6px;
  z-index: 1;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .case__list-item-button:after {
    font-size: 10px;
  }
}

.case__list-item-image {
  transition: 0.3s;
}
@media (hover: hover) {
  .is-hover .case__list-item-image {
    box-shadow: 10px 10px 50px -10px rgba(0, 0, 0, 0.41);
  }
}

.case__list-item-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .case__list-item-text {
    font-size: 11px;
    margin-top: 10px;
  }
}

.case-modal {
  position: relative;
  z-index: 10;
}

.case-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-modal__container {
  background-color: #2b2b40;
  padding: 30px;
  padding-bottom: 60px;
  max-width: 740px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .case-modal__container {
    max-width: calc(100% - 40px);
    padding: 10px;
    padding-bottom: 40px;
  }
}

.case-modal__header {
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .case-modal__header {
    padding-top: 15px;
  }
}

.case-modal__title {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #ded2c3;
  box-sizing: border-box;
  margin-top: 15px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case-modal__title {
    font-size: 20px;
    margin-top: 5px;
  }
}

.case-modal__sub-title {
  color: #ded2c3;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .case-modal__sub-title {
    font-size: 14px;
  }
}

.case-modal__product-name {
  font-size: 12px;
  color: #fff;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .case-modal__product-name {
    font-size: 11px;
    margin-top: 15px;
  }
}

.case-modal__close {
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.case-modal__close:before {
  content: "";
  background-image: url(/product_wall/realdeco/img/case-close.svg);
  display: inline-block;
  width: 42px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .case-modal__close:before {
    width: 28px;
    height: 16px;
  }
}

.case-modal__content {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .case-modal__content {
    margin-top: 25px;
  }
}

.case-modal__footer-link {
  font-size: 12px;
  color: #fff;
  width: 165px;
  display: block;
  margin: 0 auto;
  margin-top: 40px;
  letter-spacing: 0.16em;
}
.case-modal__footer-link span {
  padding-left: 8px;
}
.case-modal__footer-link img {
  transition: 0.4s;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .case-modal__footer-link {
    margin-top: 30px;
    font-size: 10px;
    width: 123px;
    letter-spacing: 0.06em;
  }
  .case-modal__footer-link span {
    padding-left: 3px;
  }
}
@media (hover: hover) {
  .case-modal__footer-link:hover img {
    transform: translateX(12.5px);
  }
}

.case-swiper-wrapper {
  position: relative;
  padding-bottom: 70px;
  width: minmax(60.391vw, 680);
}
.case-swiper-wrapper .swiper-slide {
  position: relative;
}
.case-swiper-wrapper .swiper-slide:after {
  content: "転載禁止";
  position: absolute;
  top: 0;
  right: 0;
  background: #333 !important;
  font-size: 13px;
  color: #fff;
  background: #000;
  padding: 5px 6px;
  z-index: 1;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .case-swiper-wrapper .swiper-slide:after {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .case-swiper-wrapper {
    padding-bottom: 50px;
  }
}
.case-swiper-wrapper .swiper-button-prev:not(:root) {
  top: auto;
  bottom: 0;
  width: 42px;
  height: 42px;
  left: 24.4117647059%;
}
@media screen and (max-width: 767px) {
  .case-swiper-wrapper .swiper-button-prev:not(:root) {
    width: 29px;
    height: 29px;
    left: 16.4179104478%;
  }
}
.case-swiper-wrapper .swiper-button-prev:not(:root):after {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  font-size: 12px;
}
.case-swiper-wrapper .swiper-button-next:not(:root) {
  top: auto;
  bottom: 0;
  width: 42px;
  height: 42px;
  right: 24.4117647059%;
}
@media screen and (max-width: 767px) {
  .case-swiper-wrapper .swiper-button-next:not(:root) {
    width: 29px;
    height: 29px;
    right: 16.4179104478%;
  }
}
.case-swiper-wrapper .swiper-button-next:not(:root):after {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid #fff;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  font-size: 12px;
}
.case-swiper-wrapper .case-swiper-pagination {
  bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .case-swiper-wrapper .case-swiper-pagination {
    bottom: 8px;
  }
}
.case-swiper-wrapper .case-swiper-pagination .swiper-pagination-bullet {
  width: 2px;
  height: 2px;
  background: #fff;
  opacity: 1;
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .case-swiper-wrapper .case-swiper-pagination .swiper-pagination-bullet {
    margin: 0 6px;
  }
}
.case-swiper-wrapper .case-swiper-pagination .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .case-swiper-wrapper .case-swiper-pagination .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
}

/**************************  \
  Demo Animation Style
\  **************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.color-chart {
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .color-chart {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

.color-chart__heading {
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .color-chart__heading {
    font-size: 30px;
  }
}

.color-chart__sub-heading {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .color-chart__sub-heading {
    font-size: 10px;
    margin-top: 5px;
  }
}

.color-chart__link-button {
  width: 104px;
  margin: 0 auto;
  margin-top: 20px;
  display: block;
  font-size: 10px;
  border: 1px solid #e8e8e8;
  line-height: 1;
  padding: 7.5px 0;
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .color-chart__link-button {
    width: 93px;
    padding: 6px 0;
    margin-top: 15px;
  }
}

.color-chart-wrapper {
  position: relative;
  padding-left: 120px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .color-chart-wrapper {
    padding: 0 20px;
    margin-top: 30px;
  }
}

.color-chart-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .color-chart-text {
    font-size: 12px;
    margin-top: 15px;
  }
}

.color-chart-pagination:not(:root) {
  bottom: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-chart-pagination:not(:root) .swiper-pagination-bullet {
  width: 2px;
  height: 2px;
  background: #000;
  opacity: 1;
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .color-chart-pagination:not(:root) .swiper-pagination-bullet {
    margin: 0 6px;
  }
}
.color-chart-pagination:not(:root) .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .color-chart-pagination:not(:root) .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
  }
}

.color-chart-wrapper .swiper-button-prev:not(:root) {
  width: 50px;
  height: 50px;
  left: 35px;
}
.color-chart-wrapper .swiper-button-prev:not(:root):after {
  border-radius: 999px;
  width: 100%;
  height: 100%;
  border: 1px solid #2b2b40;
  background-color: #2b2b40;
  color: #ded2c3;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .color-chart-wrapper .swiper-button-prev:not(:root) {
    width: 35px;
    height: 35px;
    left: 6px;
  }
}
.color-chart-wrapper .swiper-button-next:not(:root) {
  width: 50px;
  height: 50px;
  right: 35px;
}
.color-chart-wrapper .swiper-button-next:not(:root):after {
  border-radius: 999px;
  width: 100%;
  height: 100%;
  border: 1px solid #2b2b40;
  background-color: #2b2b40;
  color: #ded2c3;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .color-chart-wrapper .swiper-button-next:not(:root) {
    width: 35px;
    height: 35px;
    right: 6px;
  }
}

.color-chart__slide-link {
  display: block;
}

.color-chart__slide-image {
  position: relative;
  display: block;
}
.color-chart__slide-image:after {
  display: inline-block;
  content: "";
  transition: 0.3s;
  position: absolute;
}
.color-chart__slide-link:hover .color-chart__slide-image:after {
  background-color: #2b2b40;
  opacity: 0.8;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.color-chart__slide-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: 0.3s;
  z-index: 2;
}
.color-chart__slide-link:hover .color-chart__slide-hover {
  opacity: 1;
}

.color-chart__slide-hover-text {
  font-size: 14px;
  font-weight: bold;
  color: #ded2c3;
  letter-spacing: 0.12em;
  margin-top: 15px;
}

.color-chart__slide-main-image img {
  border: 1px solid #ddd;
  width: 100%;
}

.mv {
  width: 100%;
  position: relative;
}

.mv-video {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv-video {
    object-fit: cover;
    aspect-ratio: 375/500;
  }
}

.mv-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .mv-button {
    font-size: 12px;
  }
}
.mv-button img {
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .mv-button img {
    width: 15px;
  }
}

.modal-video {
  background-color: rgba(0, 0, 0, 0.9);
}

.c-heading {
  text-align: center;
}

.c-heading__en {
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 32px;
}
@media screen and (min-width: 1028px) {
  .c-heading__en {
    font-size: 54px;
  }
}
.c-heading__en:before, .c-heading__en:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.c-heading__en:before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.c-heading__en:after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}

.c-heading__ja {
  font-family: "Noto Sans Jp", sans-serif;
  display: block;
  margin-top: 25px;
  font-size: 16px;
}

.c-heading-secondary {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
@media screen and (min-width: 1028px) {
  .c-heading-secondary {
    position: absolute;
    top: 50%;
    left: calc(50% - 220px);
    transform: translate(-50%, -50%);
    font-size: 42px;
  }
}

.c-heading-tertiary {
  display: flex;
  flex-direction: column;
}
.c-heading-tertiary-subbed {
  font-weight: 500;
  font-size: 12px;
}

.c-heading-tertiary-main {
  font-size: 22px;
  font-weight: 700;
}

.u-scroll-bar-none {
  scrollbar-width: none !important;
}
.u-scroll-bar-none::-webkit-scrollbar {
  display: none !important;
}

.l-container {
  width: calc(100% - 60px);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1028px) {
  .l-container {
    max-width: 1280px;
  }
}

.l-header {
  position: fixed;
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease;
  background-color: transparent;
  z-index: 4;
}
.l-header.is-outTop {
  background-color: #fff;
}
.l-header.is-active .l-header-nav {
  opacity: 1;
  visibility: visible;
}
.l-header.is-active .l-header__inner {
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1028px) {
  .l-header.is-active .l-header__inner {
    border-bottom: 0;
  }
}
.l-header.is-active .l-header__btn {
  justify-content: center;
}
.l-header.is-active .l-header__btn span {
  opacity: 0;
}
.l-header.is-active .l-header__btn:before {
  transform: rotate(45deg);
}
.l-header.is-active .l-header__btn:after {
  transform: rotate(-45deg);
  width: 100%;
  margin-top: -2px;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
}
@media screen and (min-width: 1028px) {
  .l-header__inner {
    padding: 23px 0;
    width: calc(100% - 60px);
    margin-right: auto;
    margin-left: auto;
  }
}

.l-header__btn {
  display: flex;
  width: 22px;
  height: 13px;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1028px) {
  .l-header__btn {
    display: none;
  }
}
.l-header__btn > * {
  width: 100%;
  height: 1px;
  background-color: #000;
}
.l-header__btn:before, .l-header__btn:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  display: block;
  transition: all 0.2s ease-in-out;
}
.l-header__btn span {
  transition: all 0.2s ease-in-out;
}

.l-header-nav {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  transition: all 0.3s ease;
  z-index: -10;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 1028px) {
  .l-header-nav {
    background-color: transparent;
    position: relative;
    height: auto;
    z-index: 10;
    transform: initial;
    top: initial;
    left: initial;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 1028px) {
  .l-header__logo-unit {
    display: flex;
  }
}

.l-header-nav__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 1028px) {
  .l-header-nav__list {
    position: relative;
    display: flex;
    top: initial;
    left: initial;
    transform: initial;
    justify-content: flex-end;
    column-gap: 50px;
  }
}

.l-header-nav__item {
  color: #333;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1028px) {
  .l-header-nav__item {
    border-bottom: none;
  }
}
.l-header-nav__item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  font-weight: 800;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1028px) {
  .l-header-nav__item a {
    font-weight: 400;
  }
}
.l-header-nav__item a:after {
  content: "";
  background-image: url("/product_carpet/rollcarpet/img/svg/icon_arrow_right_black.svg");
  background-repeat: no-repeat;
  width: 18px;
  height: 6px;
}
@media screen and (min-width: 1028px) {
  .l-header-nav__item a:after {
    display: none;
  }
}
@media screen and (min-width: 1028px) {
  .l-header-nav__item a {
    font-size: 14px;
    padding: 0;
  }
}
@media screen and (min-width: 1230px) {
  .l-header-nav__item a {
    font-size: 16px;
  }
}

@media screen and (min-width: 1028px) {
  .l-header__link--logo,
.l-header__link--copy {
    width: 70px;
  }
  .l-header__link--logo img,
.l-header__link--copy img {
    width: 100%;
  }
}

.l-footer {
  background: #1a0b08;
  padding: 100px 0 20px;
}
@media screen and (min-width: 1028px) {
  .l-footer {
    padding: 150px 0 30px;
  }
}

.l-footer__bnr-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  color: #fff;
}

.l-footer__bnr-unit {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (min-width: 1028px) {
  .l-footer__bnr-unit {
    flex-direction: row;
    column-gap: 30px;
  }
}

.l-footer__bnr {
  aspect-ratio: 315/207;
  display: grid;
  place-items: center;
  width: 100%;
}
@media screen and (min-width: 1028px) {
  .l-footer__bnr {
    aspect-ratio: 370/240;
  }
}
.l-footer__bnr[data-category=book] {
  background: url("/product_carpet/rollcarpet/img/img_footer_01.jpg") no-repeat center/cover;
}
.l-footer__bnr[data-category=shop] {
  background: url("/product_carpet/rollcarpet/img/img_footer_02.jpg") no-repeat center/cover;
}
.l-footer__bnr[data-category=fit] {
  background: url("/product_carpet/rollcarpet/img/img_footer_03.jpg") no-repeat center/cover;
}

.l-footer__bnr-heading--ja {
  font-size: 16px;
}

.l-footer__bnr-heading--en {
  font-size: 24px;
  font-family: "Cardo", serif;
}

.l-footer__copyright {
  margin-top: 70px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1028px) {
  .l-footer__copyright {
    margin-top: 110px;
  }
}
.l-footer__copyright small {
  font-size: 12px;
}

/* ========================================
  display
======================================== */
.u-display-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-display-pc {
    display: none !important;
  }
}

.u-display-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-display-sp {
    display: block !important;
  }
}

@media (hover: hover) {
  .u-hover {
    transition: 0.4s;
  }
  .u-hover:hover {
    opacity: 0.8;
  }
}

.product-top-main__link-wrapper {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .product-top-main__link-wrapper {
    margin-top: 60px;
  }
}

.product-top-main__link {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  line-height: 1;
  text-align: start;
}
.product-top-main__link img {
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .product-top-main__link img {
    row-gap: 9px;
  }
}
@media (hover: hover) {
  .product-top-main__link:hover img {
    transform: translateX(12.5px);
  }
}

.p-top-intro {
  padding-top: 74px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-intro {
    padding-top: 46px;
    padding-bottom: 72px;
  }
}

.p-top-intro__copy {
  display: flex;
  margin-top: -120px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  justify-content: center;
}
@media screen and (max-width: 1365px) {
  .p-top-intro__copy {
    margin-left: 0;
    padding-left: 5.3333333333vw;
    justify-content: initial;
  }
}
.p-top-intro__copy.is-fade-in {
  opacity: 1;
  transform: translateY(0);
}
.p-top-intro__copy span {
  line-height: 2.8571428571;
  letter-spacing: 0.07em;
}
.p-top-intro__copy span:before, .p-top-intro__copy span:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-top-intro__copy span:before {
  margin-top: calc((1 - 2.8571428571) * 0.5em);
}
.p-top-intro__copy span:after {
  margin-bottom: calc((1 - 2.8571428571) * 0.5em);
}
@media screen and (max-width: 767px) {
  .p-top-intro__copy {
    margin-top: 0;
    width: calc(100% - 43.4666666667vw);
    font-size: 11px;
    margin-left: 0;
  }
}

@media screen and (max-width: 1365px) {
  .p-top-intro__unit {
    display: flex;
    align-items: center;
    padding-top: 60px;
    justify-content: flex-end;
  }
}

.p-top-intro__img {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  clip-path: polygon(0 4%, 95% 4%, 94% 100%, 0% 100%);
  transition: all 1s ease-out;
}
.p-top-intro__img.is-fade-in {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1365px) {
  .p-top-intro__img[data-name=top] {
    width: calc(100% - 16.4835164835vw);
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__img[data-name=top] {
    width: calc(100% - 40.8vw);
  }
}
.p-top-intro__img[data-name=bottom] {
  text-align: right;
  margin-top: -80px;
}
@media screen and (max-width: 1365px) {
  .p-top-intro__img[data-name=bottom] {
    margin-top: 0;
    padding-left: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__img[data-name=bottom] {
    width: calc(100% - 65.8666666667vw);
    margin-top: 0;
    margin-left: auto;
    padding-left: 0;
    margin-top: 2px;
  }
}

@keyframes bounceY {
  0% {
    transform: translateY(0.65em);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.p-top-feature {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 10;
}
.p-top-feature:before {
  content: "";
  position: absolute;
  top: 60px;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #2b2b40;
  z-index: 0;
}

.p-top-feature__inner {
  padding-bottom: 160px;
  max-width: 1126px;
  width: calc(100% - 40px);
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top-feature__inner {
    padding-bottom: 60px;
  }
}

.p-top-feature__unit {
  display: flex;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}
.p-top-feature__unit.is-fade-in .p-top-feature__figure {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
  transform: translateY(0);
}
.p-top-feature__unit.is-fade-in .p-top-feature__body {
  opacity: 1;
  transform: translateY(0);
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(1) {
  animation: bounceY 1.2s 0.06s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(2) {
  animation: bounceY 1.2s 0.12s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(3) {
  animation: bounceY 1.2s 0.18s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(4) {
  animation: bounceY 1.2s 0.24s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(5) {
  animation: bounceY 1.2s 0.3s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(6) {
  animation: bounceY 1.2s 0.36s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(7) {
  animation: bounceY 1.2s 0.42s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(8) {
  animation: bounceY 1.2s 0.48s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(9) {
  animation: bounceY 1.2s 0.54s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(10) {
  animation: bounceY 1.2s 0.6s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(11) {
  animation: bounceY 1.2s 0.66s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(12) {
  animation: bounceY 1.2s 0.72s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(13) {
  animation: bounceY 1.2s 0.78s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(14) {
  animation: bounceY 1.2s 0.84s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(15) {
  animation: bounceY 1.2s 0.9s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(16) {
  animation: bounceY 1.2s 0.96s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(17) {
  animation: bounceY 1.2s 1.02s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(18) {
  animation: bounceY 1.2s 1.08s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(19) {
  animation: bounceY 1.2s 1.14s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(20) {
  animation: bounceY 1.2s 1.2s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(21) {
  animation: bounceY 1.2s 1.26s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(22) {
  animation: bounceY 1.2s 1.32s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(23) {
  animation: bounceY 1.2s 1.38s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(24) {
  animation: bounceY 1.2s 1.44s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(25) {
  animation: bounceY 1.2s 1.5s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(26) {
  animation: bounceY 1.2s 1.56s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(27) {
  animation: bounceY 1.2s 1.62s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(28) {
  animation: bounceY 1.2s 1.68s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(29) {
  animation: bounceY 1.2s 1.74s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(30) {
  animation: bounceY 1.2s 1.8s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(31) {
  animation: bounceY 1.2s 1.86s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(32) {
  animation: bounceY 1.2s 1.92s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(33) {
  animation: bounceY 1.2s 1.98s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(34) {
  animation: bounceY 1.2s 2.04s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(35) {
  animation: bounceY 1.2s 2.1s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(36) {
  animation: bounceY 1.2s 2.16s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(37) {
  animation: bounceY 1.2s 2.22s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(38) {
  animation: bounceY 1.2s 2.28s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(39) {
  animation: bounceY 1.2s 2.34s forwards;
}
.p-top-feature__unit.is-fade-in .p-top-feature___heading__ej > span:nth-child(40) {
  animation: bounceY 1.2s 2.4s forwards;
}
.p-top-feature__unit.-reverse {
  flex-direction: row-reverse;
}
.p-top-feature__unit.-reverse .p-top-feature__body {
  margin-right: 9.3704245974vw;
  margin-left: 0;
}
@media screen and (max-width: 1365px) {
  .p-top-feature__unit.-reverse .p-top-feature__body {
    margin-right: 0;
  }
}
@media screen and (max-width: 1365px) {
  .p-top-feature__unit.-reverse {
    flex-direction: column;
  }
}
.p-top-feature__unit + .p-top-feature__unit {
  margin-top: 160px;
}
@media screen and (max-width: 1365px) {
  .p-top-feature__unit + .p-top-feature__unit {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1365px) {
  .p-top-feature__unit {
    flex-direction: column;
  }
}

.p-top-feature__body {
  flex-shrink: 0;
  margin-left: 7.6866764275vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
  max-width: 452px;
}
@media screen and (max-width: 1365px) {
  .p-top-feature__body {
    margin-left: 0;
    margin-top: 25px;
  }
}

.p-top-feature___heading {
  text-align: center;
  color: #ded2c3;
}

@media screen and (max-width: 1365px) {
  .p-top-feature___heading__ja {
    font-size: 10px;
    line-height: 1;
  }
}

.p-top-feature___heading__ej {
  font-size: 48px;
  margin-top: 20px;
  line-height: 0.85;
  font-weight: 600;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-feature___heading__ej {
    font-size: 34px;
    margin-top: 10px;
  }
}
.p-top-feature___heading__ej > span {
  display: block;
  opacity: 0;
  transform: translateY(0.5em);
}

.p-top-feature__figure {
  clip-path: polygon(0 4%, 95% 4%, 94% 100%, 0% 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.p-top-feature__desc {
  line-height: 2.7142857143;
  font-weight: 100;
  text-align: center;
  margin-top: 50px;
  letter-spacing: 0.12em;
  font-size: 14px;
}
.p-top-feature__desc:before, .p-top-feature__desc:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-top-feature__desc:before {
  margin-top: calc((1 - 2.7142857143) * 0.5em);
}
.p-top-feature__desc:after {
  margin-bottom: calc((1 - 2.7142857143) * 0.5em);
}
@media screen and (max-width: 767px) {
  .p-top-feature__desc {
    font-size: 11px;
    margin-top: 34px;
  }
}

.p-top-feature__link {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-feature__link {
    width: 90px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-feature__link span {
    font-size: 10px;
  }
}

.p-top-product {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top-product {
    padding-top: 30px;
  }
}

.p-top-product__heading__ja {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-product__heading__ja {
    text-align: center;
  }
}

.p-top-product__figure {
  width: 100%;
  height: 100vh;
}
.p-top-product__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-product__figure img {
    height: auto;
  }
}
@media screen and (max-width: 1028px) {
  .p-top-product__figure {
    margin-left: 0;
  }
}

.p-top-product__inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-product__inner {
    padding-left: 0;
    width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
  }
}

.p-top-product__unit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(75deg, white 0%, #919191 100%);
  padding-left: 0 !important;
  height: 100vh !important;
}
@media screen and (max-width: 1028px) {
  .p-top-product__unit {
    flex-direction: column;
    padding-left: 0;
    justify-content: initial;
  }
}

.p-top-product__body-wrapper {
  width: 100%;
}

.p-top-product__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(2em);
  transition: all 0.6s ease-out;
  margin-right: auto;
  padding-left: 18.0087847731vw;
  width: 100%;
}
.p-top-product__body.is-fade-in {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1028px) {
  .p-top-product__body {
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 42px;
    padding-bottom: 42px;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
  }
}

.p-top-product__line-up {
  margin-top: 35px;
  font-size: 18px;
  text-align: left;
  line-height: 1.6363636364;
  letter-spacing: 0.08em;
}
.p-top-product__line-up:before, .p-top-product__line-up:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-top-product__line-up:before {
  margin-top: calc((1 - 1.6363636364) * 0.5em);
}
.p-top-product__line-up:after {
  margin-bottom: calc((1 - 1.6363636364) * 0.5em);
}
@media screen and (max-width: 767px) {
  .p-top-product__line-up {
    font-size: 11px;
    margin-top: 20px;
  }
}

.p-top-product__heading__ej {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-product__heading__ej {
    font-size: 25px;
  }
}

.p-top-product__heading__ja {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-top-product__heading__ja {
    font-size: 10px;
    margin-top: 5px;
  }
}

.p-top-product__link {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-top-product__link {
    margin-top: 30px;
  }
}

.p-top-product__nav {
  position: absolute;
  opacity: 0;
  bottom: 0;
  visibility: hidden;
  transform: translateY(10px);
  width: 100%;
  height: 50px;
  background: #fff;
  line-height: 50px;
  border-bottom: 1px solid #e8e8e8;
  transition: 0.2s;
}
.p-top-product__nav.is-fixed {
  position: fixed;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .p-top-product__nav {
    overflow: scroll;
  }
}

.p-top-product__list {
  display: flex;
  justify-content: center;
}

.p-top-product__item + .p-top-product__item {
  margin-left: 40px;
}
.p-top-product__item.is-current a {
  color: #000;
}
.p-top-product__item a {
  color: #dcdce5;
  transition: 0.4s;
  font-size: 12px;
}
.p-top-product__item a:hover {
  color: #000;
}

.p-top-pattern {
  padding-top: 120px;
  background-color: #fff;
  position: relative;
  z-index: 0;
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .p-top-pattern {
    padding-top: 105px;
  }
}

.p-top-pattern__tab-unit {
  border-bottom: 1px solid #e8e8e8;
  margin-top: 70px;
}

.p-top-pattern__tab-list {
  max-width: 1126px;
  margin: 0 auto;
  display: flex;
  width: calc(100% - 40px);
  margin-right: auto;
  margin-left: auto;
}

.p-top-pattern__tab-item {
  width: 100%;
  text-align: center;
}

.p-top-pattern__tab {
  width: 100%;
  display: block;
  height: 88px;
  line-height: 88px;
  border-top: 1px solid #e8e8e8;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  position: relative;
  transition: 0.2s;
}
.p-top-pattern__tab:after {
  content: "";
  display: block;
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  height: 1px;
}
.p-top-pattern__tab[aria-expanded=false] {
  opacity: 0.2;
  border: transparent;
}
@media screen and (max-width: 767px) {
  .p-top-pattern__tab {
    height: 50px;
    line-height: 50px;
    font-size: 12px;
  }
}

.p-top-pattern__card-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 56px 64px;
  padding-top: 80px;
  max-width: 1126px;
  margin: 0 auto;
  padding: 100px 0 0 160px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-pattern__card-list {
    padding-top: 32px;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.8666666667vw 4.2666666667vw;
    padding-bottom: 0;
  }
}

.p-top-pattern__card figcaption {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-pattern__card figcaption {
    margin-top: 8px;
    font-size: 10px;
  }
}

.tabs {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .tabs {
    margin-top: 40px;
  }
}

.tab-list {
  display: flex;
  align-items: stretch;
  margin-top: 70px;
}
.tab-list:before, .tab-list:after {
  content: "";
  border-bottom: 1px solid #e0e0e0;
  display: block;
  width: 10.7142857143%;
  height: 78px;
}
@media screen and (max-width: 767px) {
  .tab-list:before, .tab-list:after {
    width: 20px;
    height: 50px;
  }
}

.tab-item {
  box-sizing: border-box;
  width: 50%;
  display: block;
  background: none;
  border: 1px solid #e0e0e0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
  background-color: #f8f8f8;
  color: #dcdce5;
  transition: color 0.3s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tab-item {
    font-size: 12px;
  }
}
.tab-item:hover {
  color: #2b2b40;
}

.tab-item[aria-selected=true] {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 1px solid transparent;
  background-color: #fff;
  color: #2b2b40;
}

.tab-panel {
  padding-top: 65px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .tab-panel {
    padding-top: 40px;
  }
}

.tab-panel[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  height: 0;
  padding: 0;
}

.tabTitle {
  font-size: 34px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .tabTitle {
    margin-bottom: 40px;
    font-size: 26px;
  }
}

.realdecoListModule01 .inner {
  overflow: hidden;
  clear: both;
  padding: 0 0 70px;
}

.realdecoListModule01 .inner .itemList {
  width: 1126px;
  margin: 0 auto;
  text-align: left;
}

.realdecoListModule01 .inner .itemList li {
  display: block;
  width: 13.17715959vw;
  float: left;
  margin: 0 56px 67px 0;
}

.realdecoListModule01 .inner .itemList li:nth-of-type(5n) {
  margin: 0 0 20px;
}

.realdecoListModule01 .inner .itemList li img {
  width: 100%;
}

.realdecoListModule01 .inner .itemList li .name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* -----------------------
realdecoListModule01
----------------------- */
.realdecoListModule01 .inner .itemList li .photo {
  overflow: hidden;
}

.realdecoListModule01 .inner .itemList li .photo img {
  transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.realdecoListModule01 .inner .itemList li a:hover {
  opacity: 1 !important;
}

.realdecoListModule01 .inner .itemList li a:hover .photo img {
  /* transform: scale(1.1); */
  opacity: 0.6;
}

.realdecoListModule01 .inner .itemList li a:hover p {
  text-decoration: underline;
}

.realdecoListModule01 .inner .itemList li a:hover {
  opacity: 1 !important;
}

.realdecoListModule01 .inner .itemList li a:hover .photo img {
  /* transform: scale(1.1); */
  opacity: 0.6;
}

@media screen and (max-width: 1024px) {
  .realdecoListModule01 .titType01 .txt01 {
    font-size: 14px;
    background: #000;
    color: #fff;
    width: 100%;
    display: block;
    line-height: 50px;
    padding: 0 0 0 24px;
    position: relative;
  }

  .realdecoListModule01 .titType01 .tit01 {
    display: block;
    font-size: 16px;
    line-height: 1.8;
    padding: 10px 0 10px 24px;
    position: relative;
    background-color: white;
  }

  .realdecoListModule01 .inner {
    overflow: hidden;
    clear: both;
    padding: 30px 20px 40px;
  }

  .realdecoListModule01 .inner .itemList {
    width: 100%;
    /* display : block; */
    margin: 0 auto;
    /*
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    */
    text-align: left;
  }

  .realdecoListModule01 .inner .itemList li {
    display: block;
    width: 30%;
    float: left;
    margin: 0 0 15px;
  }

  .realdecoListModule01 .inner .itemList li:nth-of-type(3n + 2) {
    margin: 0 5%;
  }

  .realdecoListModule01 .inner .itemList li img {
    width: 100%;
  }

  .realdecoListModule01 .inner .itemList li .name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    letter-spacing: 0;
  }
}
.tab-panel[aria-hidden=true] {
  display: none;
}
.tab-panel[aria-hidden=false] {
  display: block;
}

.p-top-pattern__card-list-wrapper {
  padding-top: 0;
}

.p-top-collaboration {
  height: 350px;
  position: relative;
  background-image: url("/product_wall/realdeco/img/bg_collabo_pc.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .p-top-collaboration {
    height: initial;
    background-image: url("/product_wall/realdeco/img/bg_collabo_sp.jpg");
    padding: 18.1333333333vw 0;
  }
}

.p-top-collaboration__inner {
  height: 100%;
}

.p-top-collaboration__heading {
  color: #fff;
}

.p-top-collaboration__heading__en {
  line-height: 1.1333333333;
}
.p-top-collaboration__heading__en:before, .p-top-collaboration__heading__en:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-top-collaboration__heading__en:before {
  margin-top: calc((1 - 1.1333333333) * 0.5em);
}
.p-top-collaboration__heading__en:after {
  margin-bottom: calc((1 - 1.1333333333) * 0.5em);
}
@media screen and (max-width: 767px) {
  .p-top-collaboration__heading__en {
    font-size: 30px;
    letter-spacing: 0.02em;
  }
}

.p-top-collaboration__heading__ja {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-collaboration__heading__ja {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
}

.p-top-collaboration__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff;
}

.p-top-collaboration__desc {
  margin-top: 56px;
  text-align: center;
  line-height: 2;
  font-size: 11px;
  letter-spacing: 0.09em;
}
.p-top-collaboration__desc:before, .p-top-collaboration__desc:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-top-collaboration__desc:before {
  margin-top: calc((1 - 2) * 0.5em);
}
.p-top-collaboration__desc:after {
  margin-bottom: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 767px) {
  .p-top-collaboration__desc {
    margin-top: 32px;
  }
}

.p-top-collaboration__link {
  margin-top: 0;
  color: #fff;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-top-collaboration__link {
    position: static;
    transform: initial;
    margin-top: 60px;
    margin-top: 48px;
  }
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: flexbox;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  user-select: none;
  user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flexbox;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.p-rc.no-scroll {
  overflow: hidden;
}

body {
  transition: all 0.4s ease-in-out;
  background-color: #1a0b08;
}
body.is-ori {
  background-color: #1a0b08;
}
body.is-tuf {
  background-color: #faf8ed;
}

.p-rc-body {
  overflow: hidden;
  z-index: 0;
}

.p-rc-mv {
  height: 100vh;
  position: relative;
}

.p-rc-mv__copy {
  position: absolute;
  top: 50%;
  display: flex;
  flex-direction: column;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  gap: 8px;
  left: 40px;
}
@media screen and (min-width: 1028px) {
  .p-rc-mv__copy {
    left: 100px;
    top: initial;
    bottom: 110px;
    transform: translateY(0%) rotate(180deg);
    gap: 16px;
  }
}
.p-rc-mv__copy > * {
  color: #fff;
}

.p-rc-mv__copy__en {
  font-size: 48px;
  line-height: 0.75;
  white-space: nowrap;
  font-family: "Cardo", serif;
  letter-spacing: 0.65px;
}
@media screen and (min-width: 1028px) {
  .p-rc-mv__copy__en {
    font-size: 65px;
  }
}

.p-rc-mv__copy__year {
  letter-spacing: 1.45px;
}
@media screen and (min-width: 1028px) {
  .p-rc-mv__copy__year {
    font-size: 29px;
  }
}

.p-rc-mv__picture {
  display: block;
  height: 100%;
}

.c-btn {
  position: relative;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 1028px) {
  .c-btn {
    width: 495px;
  }
}
.c-btn a,
.c-btn button {
  background-color: #000;
  max-width: 295px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  position: relative;
  transition: all 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover,
.c-btn button:hover {
    opacity: 0.7;
  }
}
.c-btn a:after,
.c-btn button:after {
  content: "";
  background-image: url("/product_carpet/rollcarpet/img/svg/icon_arrow_right.svg");
  background-repeat: no-repeat;
  width: 18px;
  height: 6px;
  object-fit: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (min-width: 1028px) {
  .c-btn a:after,
.c-btn button:after {
    transform: translateY(-50%) scaleX(1.6);
    right: 30px;
  }
}

.p-rc-mv__splide-list {
  height: 100vh;
}

/* ズーム */
.p-rc-mv__splide-slide img {
  transition: 8s ease-out;
}

.p-rc-mv__splide-slide.is-active img {
  transform: scale(1.15);
  transition-delay: 0s;
}

/* スライドのサイズ調整 */
.p-rc-mv__splide-slide img {
  height: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-rc-mv__btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.p-rc-new-product {
  background-color: #fff;
  padding-top: 110px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}

.p-rc-new-product__picture {
  display: block;
  height: 100%;
  transition: all 0.4s ease-out;
  position: relative;
}
.p-rc-new-product__picture img {
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .p-rc-new-product__picture:hover {
    transform: scale(1.2048192771);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  }
}

.p-rc-new-product-splide__slide {
  position: relative;
  cursor: pointer;
}
.p-rc-new-product-splide__slide.is-hover {
  z-index: 10;
}

.p-rc-new-product__splide {
  margin-top: 40px;
  overflow: initial;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__splide {
    margin-top: 100px;
  }
}

.p-rc-new-product__splide-track {
  overflow: initial;
}

.p-rc-new-product__splide-track {
  overflow: initial;
}

.p-rc-new-product__modal {
  overflow-y: scroll;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  transition: all 0.4s ease;
  background-color: #fff;
  padding: 60px 30px;
}
.p-rc-new-product__modal[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
}
.p-rc-new-product__modal[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal {
    padding: 60px 0;
  }
}
.p-rc-new-product__modal.is-ori {
  color: #fff;
}
.p-rc-new-product__modal.is-ori:before {
  background-color: #1a0b08;
}
.p-rc-new-product__modal.is-ori .p-rc-new-product__modal-close span:before,
.p-rc-new-product__modal.is-ori .p-rc-new-product__modal-close span:after {
  background-color: #fff;
}
.p-rc-new-product__modal.is-tuf:before {
  background-color: #faf8ed;
}
.p-rc-new-product__modal:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
}

.p-rc-new-product__modal__inner {
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal__inner {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    height: auto;
    background-color: transparent;
  }
}

.p-rc-new-product__modal-img {
  margin-top: 40px;
  position: relative;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-img {
    margin-top: 40px;
  }
}
.p-rc-new-product__modal-img figcaption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
}
.p-rc-new-product__modal-img .c-btn {
  position: absolute;
  bottom: 56px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 10;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-img .c-btn {
    bottom: 40px;
  }
}
.p-rc-new-product__modal-img .c-btn a {
  max-width: 288px;
  line-height: 32px;
  height: 32px;
  font-size: 14px;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-img .c-btn a {
    line-height: 46px;
    height: 46px;
    max-width: auto;
  }
}

.p-rc-new-product__modal-img img {
  width: 100%;
}
.p-rc-new-product__modal-secondary-cont {
  width: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IEとEdge */
  scrollbar-width: none;
  /* Firefox */
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-secondary-cont {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-secondary-cont.p-rc-new-product__modal-secondary-cont--secondary {
    max-width: 740px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: initial;
  }
}
.p-rc-new-product__modal-secondary-cont::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.p-rc-new-productr__modal-secondary-desc {
  color: #333;
  font-size: 14px;
  line-height: 1.8;
}
.p-rc-new-productr__modal-secondary-desc:before, .p-rc-new-productr__modal-secondary-desc:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-rc-new-productr__modal-secondary-desc:before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.p-rc-new-productr__modal-secondary-desc:after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}

.p-rc-new-productr__modal-secondary-desc--primary {
  font-size: 18px;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-productr__modal-secondary-desc--primary {
    font-size: 20px;
  }
}

.p-rc-new-product__modal-secondary-unit-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-secondary-unit-list {
    margin-top: 40px;
    row-gap: 40px;
  }
}

.p-rc-new-productr__modal-secondary-img {
  margin-top: 30px;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-productr__modal-secondary-img {
    margin-top: 0;
  }
}

.p-rc-new-productr__modal-secondary-img-unit {
  display: flex;
  column-gap: 15px;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-productr__modal-secondary-img-unit {
    column-gap: 30px;
  }
}

.p-rc-new-product__modal-secondary-unit {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-secondary-unit {
    margin-top: 0;
  }
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-secondary-unit.p-rc-new-product__modal-secondary-unit--secondary {
    flex-direction: row;
  }
}

.p-rc-new-product__modal-secondary-unit__inner {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-secondary-unit__inner {
    row-gap: 25px;
    flex-basis: 250px;
  }
}

.p-rc-new-product__modal-name {
  line-height: 1.8;
  font-size: 12px;
}
.p-rc-new-product__modal-name:before, .p-rc-new-product__modal-name:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-rc-new-product__modal-name:before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.p-rc-new-product__modal-name:after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.p-rc-new-product__modal-name .js-modal-parts__product-txt {
  font-family: "Noto Sans JP", sans-serif;
}
.p-rc-new-product__modal-name .js-modal-parts__product-txt--deco {
  font-family: "Cardo", "Noto Sans JP", serif;
  font-size: 32px;
}
.p-rc-new-product__modal-name .js-modal-parts__product-txt--deco-secondary {
  font-size: 20px;
}
.p-rc-new-product__modal-desc {
  margin-top: 32px;
  line-height: 1.8;
}
.p-rc-new-product__modal-desc:before, .p-rc-new-product__modal-desc:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-rc-new-product__modal-desc:before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.p-rc-new-product__modal-desc:after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.p-rc-new-product__modal-desc:empty {
  margin-top: 0;
}

.p-rc-new-product__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 16px;
  height: 16px;
  z-index: 10;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-close {
    width: 100%;
    height: 100%;
    top: 40px;
    right: 40px;
  }
}
.p-rc-new-product__modal-close span {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-rc-new-product__modal-close span:before, .p-rc-new-product__modal-close span:after {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-close span:before, .p-rc-new-product__modal-close span:after {
    width: 100%;
  }
}
.p-rc-new-product__modal-close span:before {
  transform: rotate(45deg);
  margin-bottom: -1px;
}
.p-rc-new-product__modal-close span:after {
  transform: rotate(-45deg);
}

.p-rc-new-product__modal-close--sp {
  display: block;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-close--sp {
    display: none;
  }
}

.p-rc-new-product__modal-close--pc {
  display: none;
}
@media screen and (min-width: 1028px) {
  .p-rc-new-product__modal-close--pc {
    display: block;
    width: 57px;
    height: 57px;
  }
}

.p-rc-new-product-splide__slide-modal-unit[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.p-rc-fe {
  padding: 50px 0;
  background-image: url("/product_carpet/rollcarpet/img/bg_feature_01.png");
  background-repeat: repeat;
  position: relative;
}

.p-rc-fe__inner {
  position: relative;
  width: 100%;
  height: 70vh;
}
@media screen and (min-width: 1028px) {
  .p-rc-fe__inner {
    height: 85vh;
  }
}

.p-rc-fe__card-list__inner {
  position: absolute;
  top: 0;
  left: 80px;
  display: flex;
  gap: 0 30px;
}
@media screen and (min-width: 1028px) {
  .p-rc-fe__card-list__inner {
    padding: 80px 0;
    left: 320px;
  }
}

.p-rc-fe__card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 100%;
  height: 70vh;
}
.p-rc-fe__card img {
  width: 100%;
  height: 100%;
}

.side-scroll-section {
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* はみ出た部分を隠しておく */
}
@media screen and (min-width: 1028px) {
  .side-scroll-section {
    padding-top: 0;
  }
}

.p-rc-ori {
  padding: 80px 0 50px;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori {
    padding-top: 15px;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1028px) {
  .p-rc-ori__inner {
    height: 125vh;
    position: relative;
  }
}

@media screen and (min-width: 1028px) {
  .p-rc-ori__heading {
    position: absolute;
    top: 25%;
    left: calc(50% - 220px);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 42px;
  }
}

@media screen and (min-width: 1028px) {
  .p-rc-ori__img-wrapper {
    height: 125vh;
    position: absolute;
    width: 100%;
    padding-top: 85px;
  }
}

.p-rc-ori__img {
  background-size: cover;
  height: calc(100vh - 85px);
}
@media screen and (min-width: 1028px) {
  .p-rc-ori__img {
    background-image: url("/product_carpet/rollcarpet/img/img_ori_01.jpg");
  }
}
@media screen and (min-width: 1028px) {
  .p-rc-ori__img--tuf {
    background-image: url("/product_carpet/rollcarpet/img/img_ori_02.jpg");
  }
}

.p-rc-ori__img-sp {
  margin-top: 40px;
  display: block;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori__img-sp {
    display: none;
  }
}
.p-rc-ori__img-sp img {
  width: 100%;
}

.p-rc-ori-product-section {
  padding-top: 50px;
  margin-top: 50px;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .p-rc-ori-product-section {
    padding-top: 40px;
    margin-top: 40px;
  }
}

.p-rc-ori-product-section--reverse .p-rc-ori-primary__wrapper {
  flex-direction: row-reverse;
}
.p-rc-ori-product-section--reverse .p-rc-ori-primary__splide__arrows {
  right: 0;
  left: initial;
}

.p-rc-ori-primary__splide-pc {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  display: none;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__splide-pc {
    display: block;
  }
}
.p-rc-ori-primary__splide-pc .splide__slide {
  cursor: pointer;
  transition: all 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-rc-ori-primary__splide-pc .splide__slide:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__inner {
    max-width: 620px;
    margin-top: 0;
    flex-basis: 100%;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    flex-direction: column;
  }
}

.c-heading-tertiary-main {
  margin-top: 12px;
}
@media screen and (min-width: 1028px) {
  .c-heading-tertiary-main {
    font-size: 32px;
    margin-top: 20px;
  }
}
.c-heading-tertiary-main.c-heading-tertiary-main--en {
  font-weight: 400;
  font-family: "Cardo", "Noto Sans JP", serif;
}
@media screen and (min-width: 1028px) {
  .c-heading-tertiary-main.c-heading-tertiary-main--en {
    font-size: 50px;
  }
}
.c-heading-tertiary-main + .c-heading-tertiary-subbed {
  margin-top: 12px;
}

.c-heading-tertiary-subbed {
  font-size: 13px;
}

.p-rc-ori-product__heading-subbed {
  letter-spacing: 1.4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #fff;
  font-size: 16px;
  margin-top: 50px;
  line-height: 1.5;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-product__heading-subbed {
    font-size: 20px;
    margin-top: 44px;
  }
}
.p-rc-ori-product__heading-subbed:before, .p-rc-ori-product__heading-subbed:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-rc-ori-product__heading-subbed:before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.p-rc-ori-product__heading-subbed:after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
.p-rc-ori-product__heading-subbed.p-rc-ori-product__heading-subbed--deco {
  border-bottom: 1px solid #333;
}

@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__unit-wrapper {
    padding-bottom: 46px;
  }
}

.p-rc-ori-primary__unit {
  margin-top: 36px;
}
.p-rc-ori-primary__unit.p-rc-ori-primary__unit--deco {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 16px;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__unit.p-rc-ori-primary__unit--deco {
    column-gap: 26px;
    margin-right: 18px;
    align-items: center;
    flex-direction: row;
  }
}

.p-rc-ori-primary__splide-sp {
  margin-top: 50px;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__splide-sp {
    display: none;
  }
}
.p-rc-ori-primary__splide-sp .splide__slide img {
  width: 100%;
}

.p-rc-ori-primary__splide-pc {
  margin-top: 50px;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__splide-pc {
    display: block;
    margin-right: calc(50% - 50vw);
    position: initial;
    margin-top: auto;
  }
}

.p-rc-ori-primary__wrapper {
  position: relative;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__wrapper {
    display: flex;
    column-gap: 4.1666666667vw;
  }
}
@media screen and (min-width: 1230px) {
  .p-rc-ori-primary__wrapper {
    column-gap: 108px;
  }
}

.p-rc-ori-primary__pc-slide {
  display: none;
  transition: all 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-rc-ori-primary__pc-slide:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__pc-slide {
    aspect-ratio: 550/620;
    min-width: 550px;
    max-height: 620px;
    display: block;
    cursor: pointer;
  }
  .p-rc-ori-primary__pc-slide img {
    height: 100%;
    object-fit: cover;
  }
}

.js-ori-img-primary {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.js-ori-img-primary.fade-out {
  opacity: 0.6;
}

.p-rc-ori__desc {
  font-size: 14px;
  line-height: 1.8;
}
.p-rc-ori__desc strong {
  display: block;
}
.p-rc-ori__desc:before, .p-rc-ori__desc:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-rc-ori__desc:before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.p-rc-ori__desc:after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}

.p-rc-ori-primary__splide__arrows {
  display: none;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__splide__arrows {
    position: absolute;
    top: 310px;
    left: 0;
    width: 100%;
    max-width: 550px;
    display: block;
  }
}
.p-rc-ori-primary__splide__arrows .splide__arrow {
  position: initial;
  transform: initial;
  background-color: #fff;
  transition: all 0.4s ease;
  opacity: 1;
}
.p-rc-ori-primary__splide__arrows .splide__arrow--prev,
.p-rc-ori-primary__splide__arrows .splide__arrow--next {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
}
.p-rc-ori-primary__splide__arrows .splide__arrow--prev:before,
.p-rc-ori-primary__splide__arrows .splide__arrow--next:before {
  content: "";
  background-image: url("/product_carpet/rollcarpet/img/svg/icon_arrow_right_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-rc-ori-primary__splide__arrows .splide__arrow--prev {
  transform: scale(-1, 1) translate(50%, -50%);
  left: 0;
}
.p-rc-ori-primary__splide__arrows .splide__arrow--next {
  transform: translate(50%, -50%);
  right: 0;
}
.p-rc-ori-primary__btn-wrapper {
  margin-top: 40px;
}

.p-rc-ori-primary__btn {
  margin-top: 16px;
  text-align: left;
}
.p-rc-ori-primary__btn a {
  background-color: #fff;
  color: #333;
  font-weight: 700;
  text-align: center;
  max-width: initial;
  width: 100%;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__btn a {
    font-size: 12px;
    max-width: 180px;
    height: 46px;
    line-height: 46px;
    text-align: center;
  }
}
.p-rc-ori-primary__btn a:after {
  background-image: url("/product_carpet/rollcarpet/img/svg/icon_arrow_right_black.svg");
  transform: translateY(-50%);
  background-size: 100%;
}
@media screen and (min-width: 1028px) {
  .p-rc-ori-primary__btn a:after {
    width: 23px;
    height: 7px;
    right: 8px;
  }
}

.p-rc-tuf {
  padding: 80px 0 50px;
}
@media screen and (min-width: 1028px) {
  .p-rc-tuf {
    padding-bottom: 80px;
  }
}
.p-rc-tuf .c-heading-secondary {
  color: #333;
}

.p-rc-tuf-product-section {
  color: #333;
}

@media screen and (min-width: 1028px) {
  .p-rc-bottom-wrapper {
    display: flex;
  }
}

.p-rc-bottom {
  aspect-ratio: 375/317;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1028px) {
  .p-rc-bottom {
    aspect-ratio: 720/317;
  }
}
.p-rc-bottom--primary {
  background: url("/product_carpet/rollcarpet/img/bg_bottom_01.png") no-repeat center/200%;
}
.p-rc-bottom--secondary {
  background: url("/product_carpet/rollcarpet/img/bg_bottom_02.png") no-repeat center/cover;
}

.p-rc-bottom__inner {
  width: calc(100% - 80px);
  margin-right: auto;
  margin-left: auto;
}

.p-rc-bottom__unit {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
}
@media screen and (min-width: 1028px) {
  .p-rc-bottom__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-rc-bottom__unit.center {
  text-align: center;
}

.p-rc-bottom__heading {
  display: flex;
  flex-direction: column;
}
.p-rc-bottom__heading .primary {
  font-size: 14px;
}
@media screen and (min-width: 1028px) {
  .p-rc-bottom__heading .primary {
    font-size: 16px;
    letter-spacing: 5px;
  }
}
.p-rc-bottom__heading .secondary {
  font-size: 22px;
  display: block;
  margin-top: 10px;
}
@media screen and (min-width: 1028px) {
  .p-rc-bottom__heading .secondary {
    font-size: 30px;
    margin-top: 0;
    margin-top: 15px;
  }
}
.p-rc-bottom__heading .secondary.en {
  font-family: "Cinzel", serif;
  letter-spacing: 5px;
  text-align: center;
}

.p-rc-bottom__desc {
  line-height: 1.8;
  font-size: 14px;
  margin-top: 35px;
}
.p-rc-bottom__desc:before, .p-rc-bottom__desc:after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.p-rc-bottom__desc:before {
  margin-top: calc((1 - 1.8) * 0.5em);
}
.p-rc-bottom__desc:after {
  margin-bottom: calc((1 - 1.8) * 0.5em);
}
.p-rc-bottom__desc.deco {
  max-width: 223px;
  margin-right: auto;
  margin-left: auto;
}

.p-rc-bottom__btn {
  margin-top: 35px;
}
.p-rc-bottom__btn a {
  height: 45px;
  line-height: 45px;
  max-width: 270px;
  font-size: 14px;
}

.p-rc-float {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.p-rc-float__item {
  width: 80px;
}
@media screen and (min-width: 1028px) {
  .p-rc-float__item {
    width: 120px;
  }
}

.splide__slide *[aria-hidden=true] {
  display: none;
}
.splide__slide.js-modal-trigger {
  cursor: pointer;
}
