@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

html {
  font-feature-settings: "palt";
}

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

figure {
  margin: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.js-fadein {
  opacity: 0;
  transform: translateY(55px);
  transition: all 1.2s;
}
.js-fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}

.p-exh {
  background-color: #000;
  padding-top: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.p-exh sup {
  vertical-align: text-top;
  font-size: small;
}

.p-exh__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 143px;
  border-radius: 100px;
  margin: auto;
  height: 41px;
  padding: 1rem;
  font-weight: bold;
  border: 1px solid #fff;
  color: #fff !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s ease-in;
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-top: 30px;
}
@media screen and (min-width: 767px) {
  .p-exh__btn {
    font-size: 13px;
    width: 165px;
    height: 46px;
  }
}
.p-exh__btn::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.p-exh__btn::after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.p-exh__btn:hover {
  color: #000 !important;
  border: 1px solid #fff;
}
.p-exh__btn:hover::before {
  top: -35%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.p-exh__btn:hover::after {
  top: -45%;
  background-color: #fff;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.p-exh__btn--black {
  border: 1px solid #000;
  color: #000 !important;
}
.p-exh__btn--black::after {
  background-color: #000;
}
.p-exh__btn--black:hover {
  color: #fff !important;
  border: 1px solid #000;
}
.p-exh__btn--black:hover::before {
  background-color: #000;
}
.p-exh__btn--black:hover::after {
  top: -45%;
  background-color: #000;
}

.p-exh__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.p-exh__headerInner {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .p-exh__headerInner {
    padding: 23px 26px;
  }
}

.p-exh__header-logo img {
  width: 72px;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__header-logo img {
    width: 83px;
  }
}

.p-exh__gnav-btn {
  width: 40px;
  height: 8px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-btn {
    width: 60px;
    height: 50px;
  }
}
.p-exh__gnav-btn span {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
}
.p-exh__gnav-btn span::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  top: 14px;
  left: 0;
  position: absolute;
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-btn span::before {
    top: 14px;
  }
}
.p-exh__gnav-btn span::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  bottom: 1px;
  position: absolute;
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-btn span::after {
    bottom: 24px;
  }
}
.p-exh__gnav-btn[aria-expanded=true] span::before {
  background-color: #000;
  transform: rotate(30deg);
  top: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-btn[aria-expanded=true] span::before {
    top: 22px;
  }
}
.p-exh__gnav-btn[aria-expanded=true] span::after {
  background-color: #000;
  transform: rotate(-30deg);
  bottom: 7px;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-btn[aria-expanded=true] span::after {
    bottom: 28px;
  }
}

.p-exh__gnav-contents {
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents {
    background-color: #000;
    width: 100%;
    box-sizing: border-box;
  }
}
.p-exh__gnav-contents.is-open {
  transform: translateX(0);
}

.p-exh__gnav-contents-inner {
  display: flex;
}

.p-exh__gnav-contents-left {
  width: 9.3333333333%;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-left {
    width: 50%;
  }
}

.p-exh__gnav-contents-right {
  width: 90.6666666667%;
  padding: 23px 30px;
  background-color: #fff;
  overflow-y: auto;
  height: 100vh;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-right {
    width: 50%;
    padding: 55px 70px;
  }
}

.p-exh__gnav-contents-left-inner {
  position: relative;
  display: none;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-left-inner {
    display: block;
  }
}

.p-exh__gnav-contents-main-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 300;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.p-exh__gnav-contents-main-text span:first-child {
  font-size: 82px;
}
.p-exh__gnav-contents-main-text span:nth-child(2) {
  font-size: 94px;
  font-family: "Quicksand", sans-serif;
  margin-top: 10px;
}
.p-exh__gnav-contents-main-text span:nth-child(3) {
  font-size: 94px;
  font-family: "Quicksand", sans-serif;
  margin-top: 10px;
}

.p-exh__gnav-contents-main-img {
  width: 100%;
  height: auto;
}

.p-exh__gnav-contents-lineup-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 20px;
}
.p-exh__gnav-contents-lineup-item {
  width: calc((100% - 20px) / 2);
}
.p-exh__gnav-contents-block + .p-exh__gnav-contents-block {
  margin-top: 46px;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-block + .p-exh__gnav-contents-block {
    margin-top: 86px;
  }
}

.p-exh__gnav-contents-block-title {
  font-size: 24px;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-block-title {
    font-size: 38px;
    margin-bottom: 35px;
  }
}

.p-exh__gnav-contents-lineup-thumb {
  position: relative;
}
.p-exh__gnav-contents-lineup-thumb img {
  width: 100%;
  height: auto;
}
.p-exh__gnav-contents-lineup-thumb p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 300;
  font-family: "Quicksand", sans-serif;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-lineup-thumb p {
    font-size: 36px;
  }
}
.p-exh__gnav-contents-lineup-thumb p span {
  display: block;
  font-family: Noto Sans JP, sans-serif;
  font-size: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-lineup-thumb p span {
    font-size: 12px;
  }
}
.p-exh__gnav-contents-lineup-thumb.is-white p {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.p-exh__gnav-contents-lineup-product-list {
  margin-top: 12px;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-lineup-product-list {
    margin-top: 23px;
  }
}

.p-exh__gnav-contents-lineup-product-item {
  font-size: 11px;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-lineup-product-item {
    font-size: 16px;
  }
}
.p-exh__gnav-contents-lineup-product-item + .p-exh__gnav-contents-lineup-product-item {
  margin-top: 10px;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-lineup-product-item + .p-exh__gnav-contents-lineup-product-item {
    margin-top: 16px;
  }
}
.p-exh__gnav-contents-lineup-product-item a:hover {
  text-decoration: underline;
}

.p-exh__gnav-contents-other-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 18px;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-other-list {
    column-gap: 40px;
    row-gap: 33px;
  }
}

.p-exh__gnav-contents-other-item a {
  font-size: 13px;
  padding-right: 18px;
  position: relative;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-other-item a {
    font-size: 16px;
    padding-right: 26px;
  }
}
.p-exh__gnav-contents-other-item a::after {
  content: "";
  background-image: url("./img/icon_right_arrow.png");
  width: 13px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease-in-out;
}
@media screen and (min-width: 767px) {
  .p-exh__gnav-contents-other-item a::after {
    width: 18px;
    height: 18px;
  }
}
.p-exh__gnav-contents-other-item:hover a::after {
  right: -5px;
}

.p-exh__mv {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.splide,
.splide__track,
.splide__list,
.splide__slide {
  height: 100%;
}

.p-exh__slide-panel {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-exh__slide-panel--realdeco {
  background-color: #000;
}
.p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-1 {
  left: 0;
  top: 8%;
  width: 32%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-1 {
    left: 0;
    top: 0;
    width: 27vw;
  }
}
.p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-2 {
  left: 18%;
  top: 38%;
  width: 30%;
  z-index: 2;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-2 {
    left: 20%;
    top: 31vh;
    width: 24vw;
  }
}
.p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-3 {
  left: 38%;
  top: 15%;
  width: 36%;
  z-index: 3;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-3 {
    left: 51%;
    top: 7vh;
    width: 23vw;
  }
}
.p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-4 {
  right: 3%;
  top: 5%;
  width: 26%;
  z-index: 4;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-4 {
    right: 2%;
    top: 38vh;
    width: 22vw;
  }
}
.p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-5 {
  right: 3%;
  bottom: 14%;
  width: 37%;
  z-index: 4;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--realdeco .p-exh__slide-panel-img.is-5 {
    right: -14%;
    top: 19vh;
    width: 29vw;
  }
}
.p-exh__slide-panel--new .p-exh__slide-panel-img.is-1 {
  left: 5.3333333333%;
  top: 8.333333%;
  width: 27%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--new .p-exh__slide-panel-img.is-1 {
    left: 15.877013vw;
    top: 0;
    width: 30vw;
  }
}
.p-exh__slide-panel--new .p-exh__slide-panel-img.is-2 {
  right: 50.266667%;
  top: 21.533333%;
  width: 30.9333333333%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--new .p-exh__slide-panel-img.is-2 {
    left: 28.754026vw;
    top: 44vh;
    width: 25.229868vw;
  }
}
.p-exh__slide-panel--new .p-exh__slide-panel-img.is-3 {
  left: 46%;
  top: 6.133333%;
  width: 28.333333%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--new .p-exh__slide-panel-img.is-3 {
    left: 55.487555vw;
    top: 12vh;
    width: 28vw;
  }
}
.p-exh__slide-panel--new .p-exh__slide-panel-img.is-4 {
  left: 4.333333%;
  top: 58.466667%;
  width: 35.8%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--new .p-exh__slide-panel-img.is-4 {
    left: 99.947291vw;
    top: 7vh;
    width: 24.497804vw;
  }
}
.p-exh__slide-panel--new .p-exh__slide-panel-img.is-5 {
  left: 65.066667%;
  top: 64%;
  width: 39.133333%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--new .p-exh__slide-panel-img.is-5 {
    display: block;
    left: 121.00732vw;
    top: 18vh;
    width: 23.961933vw;
  }
}
.p-exh__slide-panel--new .p-exh__slide-panel-img.is-6 {
  left: 36.333333%;
  top: 78%;
  width: 32.8%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--new .p-exh__slide-panel-img.is-6 {
    display: block;
    left: 100.972181vw;
    top: 53vh;
    width: 26.693997vw;
  }
}
.p-exh__slide-panel--1 .p-exh__slide-panel-img.is-1 {
  left: 10.6666666667%;
  top: 31.4666666667%;
  width: 35.866667%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--1 .p-exh__slide-panel-img.is-1 {
    left: 69vw;
    top: 4vh;
    width: 23vw;
  }
}
.p-exh__slide-panel--1 .p-exh__slide-panel-img.is-2 {
  left: 41.066667%;
  top: 43.733333%;
  width: 44.8%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--1 .p-exh__slide-panel-img.is-2 {
    left: 51vw;
    top: 39vh;
    width: 21vw;
  }
}
.p-exh__slide-panel--1 .p-exh__slide-panel-img.is-3 {
  right: 7.866667%;
  top: 8.133333%;
  z-index: 1;
  width: 46.333333%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--1 .p-exh__slide-panel-img.is-3 {
    left: 91vw;
    top: 42vh;
    width: 23vw;
  }
}
.p-exh__slide-panel--1 .p-exh__slide-panel-img.is-4 {
  right: -9.3333333333%;
  top: 68.866667%;
  width: 34.6%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--1 .p-exh__slide-panel-img.is-4 {
    right: 0vw;
    top: 16vh;
    width: 22.450952vw;
  }
}
.p-exh__slide-panel--2 .p-exh__slide-panel-img.is-1 {
  left: 18.3333333333%;
  top: 10.333333%;
  width: 38%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--2 .p-exh__slide-panel-img.is-1 {
    left: 32.805271vw;
    top: 9vh;
    width: 31.838946vw;
  }
}
.p-exh__slide-panel--2 .p-exh__slide-panel-img.is-2 {
  left: 5.3333333333%;
  top: 35.333333%;
  width: 40%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--2 .p-exh__slide-panel-img.is-2 {
    left: 60.805271vw;
    top: 6vh;
    width: 26.838946vw;
  }
}
.p-exh__slide-panel--2 .p-exh__slide-panel-img.is-3 {
  right: 7.6%;
  top: 22.2%;
  width: 40.933333%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--2 .p-exh__slide-panel-img.is-3 {
    left: 42.647145vw;
    top: 58vh;
    width: 27.178624vw;
  }
}
.p-exh__slide-panel--2 .p-exh__slide-panel-img.is-4 {
  left: 72.467057vw;
  top: 68vh;
  width: 35.961933vw;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--2 .p-exh__slide-panel-img.is-4 {
    display: block;
    left: 45.467057vw;
    top: 55vh;
    width: 21.961933vw;
  }
}
.p-exh__slide-panel--2 .p-exh__slide-panel-img.is-5 {
  left: 45.467057vw;
  top: 86vh;
  width: 31.961933vw;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--2 .p-exh__slide-panel-img.is-5 {
    display: block;
    left: 63.20937vw;
    top: 19.674963vh;
    width: 24.910688vw;
  }
}
.p-exh__slide-panel--2 .p-exh__slide-panel-img.is-6 {
  display: none;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--2 .p-exh__slide-panel-img.is-6 {
    display: block;
    left: 78.20937vw;
    top: 50.674963vh;
    width: 18.910688vw;
  }
}
.p-exh__slide-panel--3 .p-exh__slide-panel-img.is-1 {
  left: 7.733333%;
  top: 18.1333333333%;
  width: 52.8%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--3 .p-exh__slide-panel-img.is-1 {
    left: 2vw;
    top: 4vh;
    width: 24vw;
  }
}
.p-exh__slide-panel--3 .p-exh__slide-panel-img.is-2 {
  right: 23.866667%;
  top: 37.333333%;
  width: 36%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--3 .p-exh__slide-panel-img.is-2 {
    left: 15.88287vw;
    top: 30vh;
    width: 24vw;
  }
}
.p-exh__slide-panel--3 .p-exh__slide-panel-img.is-3 {
  left: 11.666667%;
  top: 63.933333%;
  z-index: -1;
  width: 31.666667%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--3 .p-exh__slide-panel-img.is-3 {
    left: 44.341142vw;
    top: 7vh;
    width: 24.158126vw;
  }
}
.p-exh__slide-panel--3 .p-exh__slide-panel-img.is-4 {
  left: 35.666667%;
  top: 82.933333%;
  z-index: -1;
  width: 45.666667%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--3 .p-exh__slide-panel-img.is-4 {
    left: 50.341142vw;
    top: 61vh;
    width: 33.158126vw;
  }
}
.p-exh__slide-panel--3 .p-exh__slide-panel-img.is-5 {
  left: 58.666667%;
  top: 67.933333%;
  z-index: -1;
  width: 36.666667%;
}
@media screen and (min-width: 767px) {
  .p-exh__slide-panel--3 .p-exh__slide-panel-img.is-5 {
    left: 70.341142vw;
    top: 23vh;
    width: 26.158126vw;
  }
}

.p-exh__slide-panel-img {
  position: absolute;
  height: auto;
}

.p-exh__mv-text-block {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 50%;
  top: 53.8666666667%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 767px) {
  .p-exh__mv-text-block {
    top: 52%;
    transform: translate(-50%, -50%);
  }
}

.p-exh__mv-heading {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-exh__mv-heading span:first-child {
  font-size: 54px;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .p-exh__mv-heading span:first-child {
    font-size: 98px;
  }
}
.p-exh__mv-heading span:nth-child(2) {
  font-family: "Quicksand", sans-serif;
  font-size: 64px;
  font-weight: 400;
  margin-top: 13px;
}
@media screen and (min-width: 767px) {
  .p-exh__mv-heading span:nth-child(2) {
    font-size: 112px;
  }
}
.p-exh__mv-heading span:nth-child(3) {
  font-family: "Quicksand", sans-serif;
  font-size: 64px;
  font-weight: 400;
  margin-top: 7px;
  letter-spacing: -0.04em;
}
@media screen and (min-width: 767px) {
  .p-exh__mv-heading span:nth-child(3) {
    font-size: 113px;
  }
}

.p-exh__mv-nav-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 22px;
}
@media screen and (min-width: 767px) {
  .p-exh__mv-nav-list {
    gap: 37px;
    margin-top: 71px;
  }
}

.p-exh__mv-nav-item {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.07em;
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-exh__mv-nav-item {
    font-size: 18px;
  }
}
.p-exh__mv-nav-item a {
  padding: 0 2px 3px;
  border-bottom: solid 1px #fff;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (min-width: 767px) {
  .p-exh__mv-nav-item a {
    padding-bottom: 7px;
  }
}
.p-exh__mv-nav-item a:hover {
  opacity: 0.7;
}
.p-exh__mv-nav-item .p-exh__mv-nav-new {
  position: absolute;
  top: -1.2em;
  left: -1.5em;
  font-size: 12px;
  font-weight: 300;
  font-family: "Quicksand", sans-serif;
  color: #EC3737;
}

.p-exh__sheet-pattern-list {
  display: flex;
  gap: 10px;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 42px;
  margin-bottom: 80px;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 10px;
}
@media screen and (min-width: 767px) {
  .p-exh__sheet-pattern-list {
    margin-top: 60px;
    margin-bottom: 180px;
    gap: 40px;
    padding: 0 20px;
    overflow-x: visible;
    overflow-y: visible;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__sheet-pattern-list {
    padding: 0;
    margin-bottom: 180px;
  }
}

.p-exh__sheet-pattern-item {
  width: calc((100% - 120px) / 4);
  min-width: 150px;
}
.p-exh__sheet-pattern-item figcaption {
  font-size: 14px;
  color: #fff;
  margin-top: 5px;
}

.p-exh__coming-soon-area1 {
  margin-top: 60px;
  padding-bottom: 80px;
}
@media screen and (min-width: 767px) {
  .p-exh__coming-soon-area1 {
    padding-bottom: 180px;
    margin-top: 135px;
  }
}

.p-exh__marquee-wrap {
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 58px;
}
@media screen and (min-width: 767px) {
  .p-exh__marquee-wrap {
    height: 132px;
  }
}
.p-exh__marquee-wrap .p-exh__marquee {
  font-size: 50px;
  font-family: "Quicksand", sans-serif;
  color: #fff;
  opacity: 0.5;
  font-weight: 300;
  white-space: nowrap;
  width: auto;
  max-width: fit-content;
  will-change: transform;
  padding-right: 0.5em;
  animation: loop 100s -50s linear infinite;
  backface-visibility: hidden;
}
@media screen and (min-width: 767px) {
  .p-exh__marquee-wrap .p-exh__marquee {
    font-size: 114px;
  }
}
.p-exh__marquee-wrap .p-exh__marquee + .p-exh__marquee {
  animation: loop2 100s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.p-exh__coming-soon-item-list {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  gap: 25px;
}
@media screen and (min-width: 767px) {
  .p-exh__coming-soon-item-list {
    flex-direction: row;
    max-width: 1020px;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__coming-soon-item-list {
    padding: 0;
    gap: 123px;
  }
}

.p-exh__coming-soon-item {
  text-align: center;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__coming-soon-item {
    width: 50%;
    max-width: 100%;
  }
}

.p-exh__wall {
  padding-bottom: 0;
  margin-top: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__wall {
    padding-bottom: 60px;
    margin-top: 90px;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__wall .p-exh__product-card-area {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__wall .p-exh__product-card-area {
    margin-top: -90px;
  }
}

.p-exh__carpet {
  margin-top: 75px;
}
@media screen and (min-width: 767px) {
  .p-exh__carpet {
    margin-top: 93px;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__carpet .p-exh__product-card-area {
    margin-top: -30px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__carpet .p-exh__product-card-area {
    margin-top: -86px;
  }
}
.p-exh__carpet .p-exh__product-card-wrap .p-exh__product-card:nth-child(2) {
  margin-left: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__carpet .p-exh__product-card-wrap .p-exh__product-card:nth-child(2) {
    margin-top: 166px;
    margin-left: 0;
  }
}
.p-exh__carpet .p-exh__product-card-flex {
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-exh__carpet .p-exh__product-card-flex {
    margin-top: 50px;
  }
}
.p-exh__carpet .p-exh__product-card-flex + .p-exh__product-card-flex {
  margin-top: 60px;
}
@media screen and (min-width: 767px) {
  .p-exh__carpet .p-exh__product-card-flex + .p-exh__product-card-flex {
    margin-top: 60px;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__carpet .p-exh__product-card-flex.is-reverse {
    display: flex;
    max-width: 1050px;
  }
}

#baseboard .p-exh__sheet {
  padding-top: 60px;
}
@media screen and (min-width: 767px) {
  #baseboard .p-exh__sheet {
    padding-top: 100px;
  }
}

.p-exh__sheet {
  margin-top: 75px;
}
@media screen and (min-width: 767px) {
  .p-exh__sheet {
    margin-top: 93px;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__sheet .p-exh__product-card-area {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1230px) {
  .p-exh__sheet .p-exh__product-card-area {
    margin-top: -81px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__sheet .p-exh__product-card-area {
    margin-top: -20px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__sheet .p-exh__btn {
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__sheet .p-exh__product-card-flex {
    max-width: 1115px;
  }
}
.p-exh__sheet .p-exh__product-card-flex:first-child, .p-exh__sheet .p-exh__product-card-flex:nth-child(3), .p-exh__sheet .p-exh__product-card-flex:nth-child(5) {
  margin-left: auto;
}
.p-exh__sheet .p-exh__product-card-flex:nth-child(3), .p-exh__sheet .p-exh__product-card-flex:nth-child(5) {
  margin-right: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__sheet .p-exh__product-card-flex:nth-child(3), .p-exh__sheet .p-exh__product-card-flex:nth-child(5) {
    margin-right: auto;
  }
}
.p-exh__sheet .p-exh__product-card-flex:nth-child(4) {
  margin-left: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__sheet .p-exh__product-card-flex:nth-child(4) {
    margin-left: auto;
  }
}
.p-exh__sheet .p-exh__product-card-flex.is-reverse + .p-exh__product-card-flex,
.p-exh__sheet .p-exh__product-card-flex + .p-exh__product-card-flex.is-reverse {
  margin-top: 60px;
}
@media screen and (min-width: 767px) {
  .p-exh__sheet .p-exh__product-card-flex.is-reverse + .p-exh__product-card-flex,
.p-exh__sheet .p-exh__product-card-flex + .p-exh__product-card-flex.is-reverse {
    margin-top: 105px;
  }
}

.p-exh__area-bg {
  padding: 30px;
  transition: padding 0.6s ease-in-out;
  will-change: padding;
}
@media screen and (min-width: 767px) {
  .p-exh__area-bg {
    padding: 100px;
  }
}
.p-exh__area-bg img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.p-exh__area-bg.is-in {
  padding: 0;
}
.p-exh__area-bg--habaki {
  height: 200px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-bg--habaki {
    height: 450px;
  }
}
.p-exh__area-bg--habaki img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-exh__wall .p-exh__product-card-flex + .p-exh__product-card-flex.is-reverse {
  margin-top: 60px;
}
@media screen and (min-width: 767px) {
  .p-exh__wall .p-exh__product-card-flex + .p-exh__product-card-flex.is-reverse {
    margin-top: 95px;
  }
}

.p-exh__area-mv {
  position: relative;
}
.p-exh__area-mv--sheet .p-exh__area-mv-heading-wrap {
  top: 14px;
  left: 16px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-heading-wrap {
    text-align: right;
    right: 20px;
    top: -11px;
    left: auto;
  }
}
.p-exh__area-mv--sheet .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
  writing-mode: horizontal-tb;
  height: auto;
  bottom: -1.5em;
  left: 10px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
    left: -1.4em;
    top: 50px;
    bottom: auto;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.p-exh__area-mv--sheet .p-exh__area-mv-heading {
  letter-spacing: -0.15em;
  line-height: 0.9;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-heading {
    letter-spacing: -0.12em;
    font-size: 100px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-heading {
    font-size: 120px;
  }
}
@media screen and (min-width: 1230px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-heading {
    font-size: 169px;
  }
}
.p-exh__area-mv--sheet .p-exh__area-mv-product {
  position: absolute;
  bottom: 30px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-product {
    left: 80px;
    bottom: 20px;
    max-width: 650px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-product {
    bottom: 105px;
    max-width: 630px;
  }
}
.p-exh__area-mv--sheet .p-exh__area-mv-product .p-exh__btn {
  margin-left: 0;
  margin-right: 0;
}
.p-exh__area-mv--sheet .p-exh__area-mv-product::before {
  content: "";
  width: 100%;
  height: 140%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-product::before {
    left: 45%;
    width: 115%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-product-text {
    color: #000;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-product-name {
    color: #000;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet .p-exh__area-mv-product-new {
    color: #EC3737;
  }
}
.p-exh__area-mv--sheet .p-exh__area-mv-product-name,
.p-exh__area-mv--sheet .p-exh__area-mv-product-text {
  color: #fff;
}
.p-exh__area-mv--habaki {
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--habaki {
    padding: 0 30px;
    margin-bottom: 120px;
  }
}
.p-exh__area-mv--habaki .p-exh__area-mv-heading-wrap {
  left: 50%;
  transform: translateX(-50%);
  top: -27px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--habaki .p-exh__area-mv-heading-wrap {
    top: -60px;
  }
}
.p-exh__area-mv--habaki .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
  writing-mode: horizontal-tb;
  width: 100%;
  height: auto;
  bottom: -1em;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--habaki .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
    bottom: -1.5em;
  }
}
.p-exh__area-mv--habaki .p-exh__area-mv-heading {
  font-size: 60px;
  letter-spacing: -0.14em;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--habaki .p-exh__area-mv-heading {
    font-size: 114px;
  }
}
.p-exh__area-mv--habaki .p-exh__area-mv-product {
  position: absolute;
  top: 89px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 977px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--habaki .p-exh__area-mv-product {
    bottom: auto;
    top: 138px;
  }
}
.p-exh__area-mv--habaki .p-exh__area-mv-product .p-exh__area-mv-product-title {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.p-exh__area-mv--habaki .p-exh__area-mv-product .p-exh__area-mv-product-title .p-exh__area-mv-product-pict {
  max-width: 120px;
  margin-top: 11px;
}
.p-exh__area-mv--habaki .p-exh__area-mv-product-name {
  font-size: 22px;
  color: #fff;
  margin-right: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--habaki .p-exh__area-mv-product-name {
    font-size: 26px;
    color: #000;
  }
}
.p-exh__area-mv--habaki .p-exh__area-mv-product-new {
  left: -2.5em;
  top: -2px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--habaki .p-exh__area-mv-product-new {
    top: -7px;
  }
}
.p-exh__area-mv--wall .p-exh__area-mv-heading-wrap {
  top: 5px;
  left: 16px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--wall .p-exh__area-mv-heading-wrap {
    right: 10px;
    left: auto;
    bottom: -17px;
    top: auto;
  }
}
.p-exh__area-mv--wall .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
  writing-mode: horizontal-tb;
  height: auto;
  bottom: -1em;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--wall .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
    left: -1.5em;
    bottom: 40px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.p-exh__area-mv--wall .p-exh__area-mv-heading {
  letter-spacing: -0.15em;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--wall .p-exh__area-mv-heading {
    letter-spacing: -0.13em;
  }
}
.p-exh__area-mv--wall .p-exh__area-mv-product {
  position: absolute;
  left: 0;
  bottom: 30px;
  max-width: 977px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--wall .p-exh__area-mv-product {
    top: 80px;
    left: 80px;
    bottom: auto;
  }
}
.p-exh__area-mv--wall .p-exh__area-mv-product::before {
  content: "";
  width: 100%;
  height: 140%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--wall .p-exh__area-mv-product::before {
    left: 48%;
    width: 115%;
    transform: translate(-50%, -50%);
  }
}
.p-exh__area-mv--wall .p-exh__area-mv-product .p-exh__btn {
  margin-left: 0;
}
.p-exh__area-mv--wall .p-exh__area-mv-product-name,
.p-exh__area-mv--wall .p-exh__area-mv-product-text {
  color: #fff;
}
.p-exh__area-mv--carpet .p-exh__area-mv-heading-wrap {
  top: 5px;
  left: 16px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--carpet .p-exh__area-mv-heading-wrap {
    top: -24px;
    left: 0;
  }
}
.p-exh__area-mv--carpet .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
  left: 10px;
  bottom: -1.5em;
  writing-mode: horizontal-tb;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--carpet .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
    bottom: auto;
    top: 5px;
    right: -47px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 100%;
  }
}
.p-exh__area-mv--carpet .p-exh__area-mv-heading {
  letter-spacing: -0.13em;
}
.p-exh__area-mv--carpet .p-exh__area-mv-product {
  position: absolute;
  max-width: 650px;
  width: 100%;
  left: 0;
  bottom: 30px;
  color: #fff;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--carpet .p-exh__area-mv-product {
    text-align: right;
    right: 75px;
    left: auto;
    bottom: 80px;
  }
}
.p-exh__area-mv--carpet .p-exh__area-mv-product::before {
  content: "";
  width: 100%;
  height: 140%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--carpet .p-exh__area-mv-product::before {
    left: 57%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
}
.p-exh__area-mv--carpet .p-exh__area-mv-product .p-exh__area-mv-product-title,
.p-exh__area-mv--carpet .p-exh__area-mv-product .p-exh__area-mv-product-name {
  color: #fff;
  line-height: 1.2em;
}
.p-exh__area-mv--carpet .p-exh__area-mv-product .p-exh__area-mv-product-text {
  color: #fff;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--carpet .p-exh__area-mv-product .p-exh__area-mv-product-text {
    text-align: right;
  }
}
.p-exh__area-mv--carpet .p-exh__area-mv-product .p-exh__btn {
  margin-left: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--carpet .p-exh__area-mv-product .p-exh__btn {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-exh__area-mv--curtain {
  background-color: #fff;
}
.p-exh__area-mv--curtain .p-exh__area-mv-heading-wrap {
  left: 16px;
  top: 8px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--curtain .p-exh__area-mv-heading-wrap {
    left: 0;
    bottom: -19px;
    top: auto;
  }
}
.p-exh__area-mv--curtain .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading {
  letter-spacing: -0.13em;
}
.p-exh__area-mv--curtain .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
  left: 10px;
  bottom: -1.5em;
  writing-mode: horizontal-tb;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--curtain .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
    right: -2.8em;
    top: 0;
    left: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
.p-exh__area-mv--curtain .p-exh__area-mv-product {
  position: absolute;
  max-width: 977px;
  left: 0;
  bottom: 30px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--curtain .p-exh__area-mv-product {
    text-align: right;
    top: 85px;
    right: 80px;
    left: auto;
    bottom: auto;
  }
}
.p-exh__area-mv--curtain .p-exh__area-mv-product::before {
  content: "";
  width: 100%;
  height: 140%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--curtain .p-exh__area-mv-product::before {
    left: 51%;
    width: 115%;
    height: 130%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--curtain .p-exh__area-mv-product .p-exh__area-mv-product-text {
    text-align: right;
  }
}
.p-exh__area-mv--curtain .p-exh__area-mv-product .p-exh__btn {
  margin-left: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv--curtain .p-exh__area-mv-product .p-exh__btn {
    margin-right: 0;
    margin-left: auto;
  }
}
.p-exh__area-mv--curtain .p-exh__area-mv-product-name,
.p-exh__area-mv--curtain .p-exh__area-mv-product-text {
  color: #fff;
}

.p-exh__area-mv-heading-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-exh__area-mv-heading {
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  font-size: 80px;
  letter-spacing: -0.155em;
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-heading {
    font-size: 169px;
  }
}
.p-exh__area-mv-heading span.is-small {
  font-size: 80px;
  font-weight: 300;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-heading span.is-small {
    font-size: 114px;
  }
}

.p-exh__area-mv-heading-wrap {
  display: flex;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span {
  display: inline-block;
  transform: translate(0, 50px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(1) {
  transition-delay: 0.16s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(2) {
  transition-delay: 0.32s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(3) {
  transition-delay: 0.48s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(4) {
  transition-delay: 0.64s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(5) {
  transition-delay: 0.8s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(6) {
  transition-delay: 0.96s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(7) {
  transition-delay: 1.12s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(8) {
  transition-delay: 1.28s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(9) {
  transition-delay: 1.44s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(10) {
  transition-delay: 1.6s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(11) {
  transition-delay: 1.76s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(12) {
  transition-delay: 1.92s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(13) {
  transition-delay: 2.08s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(14) {
  transition-delay: 2.24s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(15) {
  transition-delay: 2.4s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(16) {
  transition-delay: 2.56s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(17) {
  transition-delay: 2.72s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(18) {
  transition-delay: 2.88s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(19) {
  transition-delay: 3.04s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(20) {
  transition-delay: 3.2s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(21) {
  transition-delay: 3.36s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(22) {
  transition-delay: 3.52s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(23) {
  transition-delay: 3.68s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(24) {
  transition-delay: 3.84s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(25) {
  transition-delay: 4s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(26) {
  transition-delay: 4.16s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(27) {
  transition-delay: 4.32s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(28) {
  transition-delay: 4.48s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(29) {
  transition-delay: 4.64s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(30) {
  transition-delay: 4.8s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(31) {
  transition-delay: 4.96s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(32) {
  transition-delay: 5.12s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(33) {
  transition-delay: 5.28s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(34) {
  transition-delay: 5.44s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(35) {
  transition-delay: 5.6s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(36) {
  transition-delay: 5.76s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(37) {
  transition-delay: 5.92s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(38) {
  transition-delay: 6.08s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(39) {
  transition-delay: 6.24s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(40) {
  transition-delay: 6.4s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(41) {
  transition-delay: 6.56s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(42) {
  transition-delay: 6.72s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(43) {
  transition-delay: 6.88s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(44) {
  transition-delay: 7.04s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(45) {
  transition-delay: 7.2s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(46) {
  transition-delay: 7.36s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(47) {
  transition-delay: 7.52s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(48) {
  transition-delay: 7.68s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(49) {
  transition-delay: 7.84s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading span:nth-child(50) {
  transition-delay: 8s;
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
  font-size: 12px;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  height: 100%;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript {
    font-size: 20px;
  }
}
.p-exh__area-mv-heading-wrap .p-exh__area-mv-heading-subscript.is-active {
  transition: all 1.2s 1s;
}
.p-exh__area-mv-heading-wrap.is-animation .p-exh__area-mv-heading span {
  transform: translate(0, 0);
  opacity: 1;
}

.p-exh__product-card-area {
  padding: 60px 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-area {
    padding: 0;
    margin-top: -86px;
  }
}

.p-exh__product-card-wrap {
  margin-bottom: 60px;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-wrap {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    gap: 50px;
    margin-bottom: 90px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__product-card-wrap {
    gap: 69px;
    padding: 0;
    margin-bottom: 43px;
  }
}
.p-exh__product-card-wrap .p-exh__product-card + .p-exh__product-card {
  margin-left: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-wrap .p-exh__product-card + .p-exh__product-card {
    margin-top: 150px;
    margin-left: 0;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-wrap .p-exh__product-card .p-exh__product-card-name {
    margin-top: 60px;
  }
}
.p-exh__product-card-wrap + .p-exh__product-card-flex {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-wrap + .p-exh__product-card-flex {
    margin-left: auto;
  }
}

.p-exh__product-card {
  max-width: 280px;
  width: 100%;
}
@media (min-width: 450px) {
  .p-exh__product-card {
    max-width: 62.2222222222%;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__product-card {
    max-width: 470px;
  }
}
@media screen and (min-width: 1230px) {
  .p-exh__product-card {
    max-width: 602px;
  }
}
.p-exh__product-card + .p-exh__product-card {
  margin-top: 60px;
}

.p-exh__product-card-flex {
  max-width: 280px;
  margin-left: auto;
}
@media (min-width: 450px) {
  .p-exh__product-card-flex {
    max-width: 62.2222222222%;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-flex {
    display: flex;
    max-width: 1115px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: flex-end;
    padding: 0 20px;
    gap: 45px;
  }
}
@media screen and (min-width: 1230px) {
  .p-exh__product-card-flex {
    gap: 75px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__product-card-flex {
    padding: 0;
  }
}
.p-exh__product-card-flex .p-exh__product-card-textblock {
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-flex .p-exh__product-card-textblock {
    max-width: 403px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__product-card-flex .p-exh__product-card-textblock {
    margin-bottom: 43px;
  }
}
.p-exh__product-card-flex.is-reverse {
  max-width: 280px;
  position: relative;
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 450px) {
  .p-exh__product-card-flex.is-reverse {
    max-width: 62.2222222222%;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-flex.is-reverse {
    flex-direction: row-reverse;
    max-width: 1115px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1230px) {
  .p-exh__product-card-flex.is-reverse .p-exh__product-card-thumb {
    max-width: 602px;
  }
}
@media screen and (min-width: 1230px) {
  .p-exh__product-card-flex.is-reverse .p-exh__product-card-textblock {
    max-width: 403px;
  }
}

.p-exh__product-card-textblock {
  text-align: center;
}

.p-exh__product-card-thumb {
  position: relative;
  max-width: 602px;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-thumb {
    width: 51.0169491525%;
  }
}
.p-exh__product-card-thumb span {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  color: #fff;
  background-color: #000;
  top: 0;
  right: 0;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-thumb span {
    padding: 8px 12px 10px;
    font-size: 14px;
  }
}
.p-exh__product-card-thumb img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 767px) {
  .p-exh__product-card-wrap .p-exh__product-card-thumb {
    width: 100%;
  }
}

.p-exh__product-card-name {
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  position: relative;
  display: inline-block;
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-name {
    font-size: 21px;
    margin-top: 34px;
  }
}
.p-exh__product-card-name span {
  font-size: 10px;
  color: #EC3737;
  font-family: "Quicksand", sans-serif;
  position: absolute;
  left: -2.5em;
  top: -7px;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-name span {
    font-size: 16px;
    left: -2.5em;
    top: -7px;
  }
}

.p-exh__product-card-text {
  font-size: 12px;
  line-height: 1.875;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 18px;
}
@media screen and (min-width: 767px) {
  .p-exh__product-card-text {
    margin-top: 33px;
    font-size: 14px;
  }
}

.p-exh__coming-soon-area2 {
  padding: 60px 20px 60px;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-exh__coming-soon-area2 {
    padding: 160px 0 160px;
  }
}
.p-exh__coming-soon-area2 p {
  font-size: 40px;
  font-weight: 300;
  font-family: "Quicksand", sans-serif;
  color: #fff;
  opacity: 0.5;
}
@media screen and (min-width: 767px) {
  .p-exh__coming-soon-area2 p {
    font-size: 70px;
  }
}
.p-exh__coming-soon-area2 p span {
  font-size: 10px;
  display: block;
  margin-top: 18px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .p-exh__coming-soon-area2 p span {
    font-size: 12px;
    margin-top: 27px;
  }
}

.p-exh__area-mv-product-btn {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.p-exh__carpet .p-exh__area-mv-product-btn {
  justify-content: flex-end;
}

.p-exh__area-mv-product {
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-product {
    padding: 0;
  }
}

.p-exh__area-mv-product-sp {
  padding: 20px;
}
.p-exh__area-mv-product-sp .p-exh__area-mv-product-text {
  color: #fff;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-product-sp {
    display: none;
  }
}

.p-exh__area-mv-product-pc {
  display: none;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-product-pc {
    display: block;
  }
}
.p-exh__area-mv-product-pc .p-exh__btn {
  margin-left: auto;
  margin-right: auto;
}

.p-exh__area-mv-product-title {
  position: relative;
  display: inline-block;
}

.p-exh__area-mv-product-new {
  position: absolute;
  font-size: 12px;
  font-weight: 300;
  font-family: "Quicksand", sans-serif;
  left: -0.5em;
  top: -15px;
  color: #EC3737;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-product-new {
    font-size: 18px;
    left: -2.5em;
    top: -7px;
  }
}

.p-exh__area-mv-product-name {
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #000;
  font-weight: 400;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-product-name {
    font-size: 30px;
    margin-bottom: 0;
  }
}

.p-exh__area-mv-product-pict {
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: 5px 8px;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1;
  vertical-align: top;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-product-pict {
    font-size: 15px;
    padding: 8px 10px;
  }
}

.p-exh__area-mv-product-text {
  color: #000;
  font-size: 12px;
  line-height: 1.875;
  margin-top: 18px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 767px) {
  .p-exh__area-mv-product-text {
    margin-top: 28px;
    font-size: 14px;
  }
}

.p-exh__other {
  background-color: #fff;
  padding: 40px 0;
}
@media screen and (min-width: 767px) {
  .p-exh__other {
    padding: 100px 0;
  }
}

.p-exh__simulationList {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  max-width: 1020px;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__simulationList {
    flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__simulationList {
    padding: 0;
  }
}

.p-exh__simulationItem {
  width: 100%;
  aspect-ratio: 980/600;
  height: auto;
  background-size: 100%;
  background-position: center center;
  color: #fff;
  text-align: center;
  transition: background-size 0.3s;
}
@media screen and (min-width: 767px) {
  .p-exh__simulationItem {
    width: calc((100% - 50px) / 2);
    height: 300px;
    aspect-ratio: auto;
  }
}
.p-exh__simulationItem:hover {
  background-size: 110%;
}
.p-exh__simulationItem a {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-exh__simulationItem--vr {
  background-image: url("./img/vr_bg.jpg");
}
.p-exh__simulationItem--vr .p-exh__simulationItemTitle {
  margin-bottom: 13px;
}
.p-exh__simulationItem--imagefit {
  background-image: url("./img/image_fit_bg.jpg");
}
.p-exh__simulationItem--imagefit .p-exh__simulationItemTitle {
  margin-bottom: 11px;
  margin-right: 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__simulationItem--imagefit .p-exh__simulationItemTitle {
    margin-bottom: 23px;
  }
}
.p-exh__simulationItem--imagefit img {
  width: 165px;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__simulationItem--imagefit img {
    width: 209px;
  }
}

.p-exh__simulationItemTitle {
  font-size: 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__simulationItemTitle {
    font-size: 30px;
  }
}

.p-exh__simulationItemText {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.875;
  padding: 0 40px;
}
@media screen and (min-width: 767px) {
  .p-exh__simulationItemText {
    font-size: 16px;
  }
}

.p-exh__iconLinkList {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  gap: 20px;
  margin-top: 24px;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkList {
    gap: 50px;
    max-width: 1020px;
    margin-top: 42px;
    justify-content: center;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__iconLinkList {
    padding: 0;
  }
}

.p-exh__iconLinkItem {
  width: calc((100% - 20px) / 2);
  text-align: center;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItem {
    width: calc((100% - 150px) / 4);
  }
}
.p-exh__iconLinkItem a {
  display: block;
}
.p-exh__iconLinkItem a:hover .p-exh__iconLinkItemInner {
  background-color: #000;
}
.p-exh__iconLinkItem a:hover .p-exh__iconLinkItemText {
  color: #fff;
}
.p-exh__iconLinkItem .p-exh__iconLinkItemInner {
  border: solid 1px #000;
  width: 100%;
  height: 39.2%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 23px;
  padding-top: 23px;
  transition: background-color 0.3s;
}
@media (min-width: 450px) {
  .p-exh__iconLinkItem .p-exh__iconLinkItemInner {
    justify-content: center;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItem .p-exh__iconLinkItemInner {
    justify-content: flex-end;
    padding-bottom: 28px;
    height: 200px;
    padding-top: 0;
  }
}
.p-exh__iconLinkItem:nth-child(1) img {
  width: 55px;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItem:nth-child(1) img {
    width: 73px;
  }
}
.p-exh__iconLinkItem:nth-child(2) img {
  width: 34px;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItem:nth-child(2) img {
    width: 47px;
  }
}
.p-exh__iconLinkItem:nth-child(3) img {
  width: 45px;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItem:nth-child(3) img {
    width: 56px;
  }
}
.p-exh__iconLinkItem:nth-child(4) img {
  width: 45px;
  height: auto;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItem:nth-child(4) img {
    width: 58px;
  }
}

.p-exh__iconLinkItemText {
  font-size: 18px;
  font-family: Quicksand, sans-serif;
  font-weight: 300;
  margin-top: 16px;
  transition: color 0.3s;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItemText {
    font-size: 26px;
    margin-top: 23px;
  }
}
.p-exh__iconLinkItemText span {
  display: block;
  font-size: 10px;
  margin-top: 10px;
}
@media screen and (min-width: 767px) {
  .p-exh__iconLinkItemText span {
    font-size: 12px;
  }
}

.p-exh__iconLinkItemSubText {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.5;
}

.p-exh__contactArea {
  padding: 60px 20px;
  background-image: url("./img/contact_bg.jpg");
  background-size: cover;
  margin-top: 50px;
}
@media screen and (min-width: 767px) {
  .p-exh__contactArea {
    padding: 100px 10px 110px;
    margin-top: 100px;
  }
}

.p-exh__contantBtnList {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
@media screen and (min-width: 767px) {
  .p-exh__contantBtnList {
    flex-direction: row;
    gap: 55px;
  }
}

.p-exh__contantBtnItem {
  max-width: 335px;
  width: 100%;
  height: 80px;
  background-color: #fff;
  font-size: 16px;
  border-radius: 100px;
  letter-spacing: 0.2em;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 767px) {
  .p-exh__contantBtnItem {
    font-size: 20px;
    max-width: 450px;
    height: 100px;
  }
}
.p-exh__contantBtnItem:hover::after {
  right: 20px;
}
.p-exh__contantBtnItem a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-exh__contantBtnItem::after {
  content: "";
  background-image: url("./img/icon_right_arrow.png");
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: right 0.4s;
}
@media screen and (min-width: 767px) {
  .p-exh__contantBtnItem::after {
    width: 28px;
    height: 28px;
    right: 26px;
  }
}

.p-exh__linkListWrap {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
@media screen and (min-width: 767px) {
  .p-exh__linkListWrap {
    margin-top: 80px;
    max-width: 1020px;
  }
}
@media screen and (min-width: 1028px) {
  .p-exh__linkListWrap {
    padding: 0;
  }
}

.p-exh__linkListHeading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (min-width: 767px) {
  .p-exh__linkListHeading {
    font-size: 20px;
  }
}

.p-exh__linkList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-exh__linkItem {
  width: calc((100% - 20px) / 3);
  max-height: 28%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .p-exh__linkItem {
    width: calc((100% - 50px) / 6);
    max-height: 196px;
  }
}
@media screen and (min-width: 767px) {
  .p-exh__linkItem img {
    transition: transform 0.3s ease-in-out;
  }
  .p-exh__linkItem img:hover {
    transform: scale(1.1);
  }
}
.p-exh__linkItem:nth-child(6) img {
  border: 1px solid #efefef;
}

.p-exh__linkItemTxt {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: #fff;
  line-height: 1.33;
}
.p-exh__linkItem:nth-child(5) .p-exh__linkItemTxt, .p-exh__linkItem:nth-child(6) .p-exh__linkItemTxt {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0 3px;
}
@media screen and (min-width: 767px) {
  .p-exh__linkItemTxt {
    bottom: 20px;
    left: 20px;
    font-size: 16px;
  }
}

.l-footer__exhibition {
  width: 100%;
  border-top: solid 1px #d5d5d5;
  padding: 20px 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-footer__exhibition {
    padding: 10px 3%;
  }
}
.l-footer__exhibition__content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer__exhibition__content {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__exhibition a img {
    width: 84px;
    height: 46px;
    object-fit: cover;
  }
}
.l-footer__exhibition .cpr {
  font-size: 12px;
  line-height: 26px;
  color: #b2b2b2;
}
@media screen and (max-width: 768px) {
  .l-footer__exhibition .cpr {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

@media screen and (min-width: 767px) {
  .p-exh__area-mv--carpet {
    min-height: 56.2142857143%;
  }
}

@media screen and (min-width: 767px) {
  .p-exh__area-mv--sheet {
    min-height: 56.2142857143%;
  }
}

@media screen and (min-width: 767px) {
  .p-exh__area-mv--wall {
    min-height: 56.2857142857%;
  }
}

@media screen and (min-width: 767px) {
  .p-exh__area-bg--habaki {
    min-height: 32.1428571429%;
  }
}

/* ポップアップバナーのスタイル */
.popup-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  background: #0a4b78;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  animation: slideIn 0.5s ease-out;
  transition: transform 0.3s ease;
}

/* バナー内のリンク */
.popup-banner a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
}

/* ホバー時の効果 */
.popup-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

/* 閉じるボタン */
.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: rotate(90deg) scale(1.1);
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: white;
}

.close-btn::before {
  transform: rotate(45deg);
}

.close-btn::after {
  transform: rotate(-45deg);
}

/* アニメーション */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* 非表示状態 */
.popup-banner.hidden {
  animation: slideOut 0.5s ease-in forwards;
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(calc(100% + 40px));
    opacity: 0;
  }
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .popup-banner {
    width: 250px;
    height: 250px;
    bottom: 15px;
    right: 15px;
  }

  .close-btn {
    width: 26px;
    height: 26px;
    top: -13px;
    right: -13px;
  }

  .close-btn::before,
.close-btn::after {
    width: 14px;
  }
}
@media (max-width: 480px) {
  .popup-banner {
    width: 150px;
    height: 150px;
    bottom: 10px;
    right: 10px;
  }

  .close-btn {
    width: 24px;
    height: 24px;
    top: -12px;
    right: -12px;
  }

  .close-btn::before,
.close-btn::after {
    width: 12px;
    height: 2px;
  }
}
