@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500&family=Noto+Serif+JP&family=Montserrat&family=Shippori+Mincho+B1&family=Shippori+Mincho&family=DM+Sans:wght@700&display=swap");
@import url("https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP");
@import url("https://fonts.googleapis.com/css?family=Montserrat");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Murecho");
@import url("https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css");
* {
  padding: 0;
  margin: 0;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-appearance: none;
  border-radius: 0;
}

html, body {
  color: #303030;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 2em;
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  height: 100%;
  text-align: center;
}

html {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

ul {
  list-style: none;
  padding: 0;
}

h1 {
  display: none;
}

i {
  font-style: normal;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #303030;
}

/* MOVIE */
/* MOVIE */
/* MOVIE */
.video-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #FFF;
}

/* 背景動画を全面にフィット */
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  display: block;
}

/* 中央ロゴ（上に重ねる） */
.logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  top: -10%;
  pointer-events: none;
}

/* ふわっとフェードイン */
.logo img {
  width: min(40vw, 800px);
  height: auto;
  opacity: 0;
  animation: logoFade 1.2s ease-out 0.9s forwards;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
}

@media (max-width: 768px) {
  .logo img {
    width: 70vw; /* スマホで大きめにしたいサイズに調整 */
  }
}
@keyframes logoFade {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    filter: blur(2px) drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 6px 24px rgba(0, 0, 0, 0.45));
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.subtext {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #000000;
  white-space: nowrap;
  opacity: 1; /* ← 親は非透明に */
  display: inline-block;
}

/* 各行を順番にフェードイン */
.subtext span {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  display: block;
  opacity: 0;
  animation: fadeInLine 1.2s ease-out forwards;
}

/* 1行目 */
.subtext span:nth-of-type(1) {
  animation-delay: 2.2s; /* ロゴが出た直後 */
}

/* 2行目 */
.subtext span:nth-of-type(2) {
  animation-delay: 2.7s; /* 0.5秒後 */
}

/* 3行目 */
.subtext span:nth-of-type(3) {
  animation-delay: 3.2s; /* さらに0.5秒後 */
}

/* フェードインアニメーション本体 */
@keyframes fadeInLine {
  from {
    opacity: 0;
    transform: translateY(3px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
/* CONTENTS */
/* CONTENTS */
/* CONTENTS */
.CONTENTS {
  position: relative;
  z-index: 10;
  padding: 0 0 80px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 0;
  overflow: hidden;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .CONTENTS {
    max-width: 90%;
  }
}
h2 {
  margin: 0 0 24px;
} /* 上マージンを0にする */
.CONTENTS2 {
  padding: 0 0 240px;
}

@media (max-width: 768px) {
  .CONTENTS2 {
    padding: 0 0 160px;
  }
}
.slick-list {
  padding: 0 !important;
}

/* 右上メニュー */
/* 右上メニュー */
/* 右上メニュー */
#right-top {
  font-size: 1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 1000000;
  width: 10%;
  position: fixed;
  display: none; /*最初は非表示に設定*/
  top: 4%;
  right: 1%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; /* ←★この行を追加：テキスト選択を禁止 */
}
#right-top a {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  cursor: pointer; /* ←★この行を追加：手のひらカーソル */
}

@media (max-width: 768px) {
  #right-top {
    font-size: 0.8rem;
    letter-spacing: 1px;
    top: 1%;
    right: 0%;
  }
}
/* NAVIGATION */
/* NAVIGATION */
/* NAVIGATION */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 auto;
  padding: 120px 0 120px;
  width: 75%;
}

.menu-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  margin: 1px;
}

.menu-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.menu-item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .menu-grid {
    width: 95%;
    padding: 60px 0 60px;
  }
}
.menu-grid .pc-off {
  display: none;
}

@media (max-width: 768px) {
  .menu-grid .pc-off {
    display: block;
  }
}
.menu-grid .sp-off {
  display: block;
}

@media (max-width: 768px) {
  .menu-grid .sp-off {
    display: none;
  }
}
/* ===== テキスト＆アイコン ===== */
.menu-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* ←縦中央寄せ */
  text-align: center;
  color: #fff;
  transition: background 0.4s ease;
  background: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  line-height: 1.2; /* ←行間を狭くしてギュッと中央に */
}

.menu-item:hover .menu-text {
  background: rgba(0, 0, 0, 0);
}

.menu-text i {
  font-size: 1rem; /* ←少し小さめで控えめに */
  margin-top: 2px; /* ←テキストとの間をギュッと縮める */
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-text i {
  transform: translateY(3px);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .menu-text {
    font-size: 1rem;
  }
}
#OTHERS {
  margin-bottom: -40px; /* 好きな数値で調整 */
}

@media (max-width: 768px) {
  #OTHERS {
    margin-bottom: 0px; /* 好きな数値で調整 */
  }
}
/* ITEM CONTAINER */
/* ITEM CONTAINER */
/* ITEM CONTAINER */
h2 {
  font-size: 4rem;
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  margin: 40px auto;
  padding: 40px 0;
}

@media (max-width: 768px) {
  h2 {
    font-size: 3rem;
    margin: 20px auto;
    padding: 20px 0 0;
  }
}
.item-img {
  width: 100%;
  margin-bottom: 15px;
}
.item-img img {
  width: 100%;
  height: auto;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(4, 24.25%);
  gap: 1%;
  margin: 40px auto;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

.item {
  text-align: left;
  padding: 20px 0 0 0;
  line-height: 1.6rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 20px;
}

.name {
  font-size: 0.85rem;
  margin: 0;
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
}

.item .name:first-of-type {
  font-size: 1.05rem;
  letter-spacing: 0.6px;
  margin-top: 10px;
}

.name .spec {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
}

.name .label {
  margin-right: 4px;
  color: #888;
}

.name .label i {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  font-size: 0.8rem;
  width: 25%;
  display: block;
  float: left;
  letter-spacing: 0;
}

.item .name:first-of-type .label i {
  font-size: 0.8rem;
}

.name .label {
  float: left;
  width: 25%;
  color: #888;
  margin-right: 0;
}

.name .spec {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  display: block;
  margin-left: 25%;
}

/* label 内の i は装飾だけにして float を外す */
.name .label i {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  font-size: 0.8rem;
  width: auto;
  display: block;
  float: none;
  letter-spacing: 0;
}

.item .name:first-of-type .label i {
  font-size: 0.8rem;
}

.buy {
  display: flex;
  flex-direction: column;
  height: 97%;
  text-decoration: none;
}

.buy-button {
  font-family: "Barlow Condensed", "sans-serif";
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-top: auto;
  padding: 6px 0;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  display: block;
  width: 100%;
  width: calc(100% - 2px);
}

.buy:hover {
  opacity: 0.8;
}

.buy-button:hover {
  background: #000;
  color: #fff;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .name {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1rem;
    letter-spacing: 0.5px;
  }
  .item .name:first-of-type {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    line-height: 1.1; /* ← ここが肝！0.05〜0.2の範囲で微調整可 */
    margin-top: 6px; /* ← 上の余白を減らすとさらに揃う */
  }
  .name .label {
    line-height: 1rem;
  }
  .name .label i {
    font-size: 0.6rem;
  }
  .item .name:first-of-type .label i {
    font-size: 0.65rem;
  }
  .item {
    padding: 0;
    padding-top: 10px;
  }
  .item-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 auto;
  }
  .description {
    font-size: 0.8rem;
  }
  .buy-button {
    padding: 4px 0;
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .buy {
    height: 100%;
  }
}
i {
  font-size: 4em;
  font-style: normal; /* 斜体にしたくない場合 */
}

header {
  display: block;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 24px 0;
  height: 1rem;
  background-color: #FAFAFA;
}
header #CROUKA-logo {
  width: 15%;
  max-width: 280px;
  margin: 0 auto;
  fill: #303030;
  z-index: 999999;
  animation-name: logo-animation;
  animation-duration: 0.3s;
  position: absolute;
  left: 42.5%;
}
header #LR-logo {
  width: 4%;
  max-width: 60px;
  margin: 0 auto;
  fill: #303030;
  z-index: 999999;
  animation-name: logo-animation;
  animation-duration: 0.3s;
  position: absolute;
  top: 10%;
  left: 48%;
}
@keyframes logo-animation {
  0% {
    fill: transparent;
    filter: blur(5px);
  }
  100% {
    fill: #303030;
  }
}
header ul.HEADER-SNS {
  display: flex;
  text-align: right;
  position: absolute;
  right: 20px;
  top: 33%;
}
header ul.HEADER-SNS li {
  font-size: 1.6rem;
  width: 30px;
  padding: 0 10px 0 0;
}
header ul.HEADER-SNS li i a svg {
  max-width: 50px;
  width: 100%;
}

header.CROUKA li a:hover {
  color: #ff6633;
}

header.SHOPIFY li a:hover {
  color: #788588;
}

header.LR li a:hover {
  color: #FDDA03;
}

@media screen and (max-width: 1024px) {
  header {
    padding: 24px 0 16px;
  }
  header ul.HEADER-SNS {
    top: 12px;
    right: 5px;
  }
  header ul.HEADER-SNS li {
    font-size: 1.3rem;
    width: 20px;
    padding: 0 10px 0 0;
  }
  header ul.HEADER-SNS li i a svg {
    max-width: 30px;
    width: 100%;
  }
  header #CROUKA-logo {
    width: 33%;
    margin: 0 auto;
    animation-name: logo-animation;
    left: 3%;
  }
  header #LR-logo {
    width: 10%;
    max-width: 120px;
    margin: 0 auto;
    padding: 5px 0 0 0;
    animation-name: logo-animation;
    left: 3%;
  }
}
footer {
  background: #cccccc;
  padding: 40px;
  margin: 300px 0 0 0;
  font-size: 1.4rem;
}
footer #CROUKA-footerlogo {
  width: 120px;
  fill: #303030;
}
footer #LR-footerlogo {
  width: 120px;
  fill: #303030;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer li {
  margin: 0 10px 0 0;
}
footer li:first-child {
  margin: 0 auto 0 0;
}

li {
  font-size: 1.6rem;
}
li i a svg {
  max-width: 50px;
  width: 100%;
}

footer ul li.text a {
  font-family: "DM Sans";
  font-weight: 600;
  color: #303030;
  font-size: 0.8rem;
}

footer.CROUKA li a:hover {
  color: #ff6633;
}

footer.SHOPIFY li a:hover {
  color: #788588;
}

footer.LR li a:hover {
  color: #FDDA03;
}

footer ul li.policy a {
  display: block;
  font-family: "DM Sans";
  font-weight: 600;
  color: #303030;
  font-size: 0.8rem;
}

@media screen and (max-width: 1024px) {
  footer {
    padding: 60px 0 40px;
    margin: 200px 0 0 0;
  }
  footer ul {
    width: 40%;
    margin: 0 auto;
    text-align: center;
  }
  footer li {
    width: 20%;
    margin: 5px 2.5%;
  }
  footer li:first-child {
    display: block;
    margin: auto;
    width: 80%;
  }
  footer a {
    font-family: "DM Sans";
    font-weight: 600;
    color: #303030;
  }
  footer a i {
    font-size: 1.6rem;
    margin: 0 0.25rem 0 0;
  }
  footer #CROUKA-footerlogo {
    width: 100%;
    fill: #303030;
    margin: 0 auto 14px;
    display: block;
  }
  footer #LR-footerlogo {
    width: 100%;
    fill: #303030;
    margin: 0 auto 14px;
    display: block;
  }
  footer ul li.policy {
    font-family: "DM Sans";
    font-weight: 600;
    display: block;
    width: 100%;
    font-size: 0.6rem;
  }
}/*# sourceMappingURL=style.css.map */