@charset "UTF-8";

html{
	overflow-y: scroll;
	overflow-x: hidden
	scroll-behavior: smooth;
}

:root {
  --font-mincho:
    "Zen Old Mincho",
    serif;

  --font-gothic:
    "Zen Kaku Gothic New",
    sans-serif;

  --font-en:
    "Cinzel",
    serif;

  --color-text: #333;
  --color-brown: #792c2b;
  --color-red: #b7161d;
  --color-l_brown: #d1c6b7;
  --color-greige: #f7f4f0;
  --color-gray: #3F3F43;

  --inner-width: 1100px;
}

body {
  font-family: var(--font-mincho);
  color: var(--color-text);
}

/*section{ 
	width: min(100% - 40px, var(--inner-width));
  	margin-inline: auto;*/
}

.en{
	font-family: var(--font-en);
}



/* =========================
  header / first view
========================= */

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
}

header h1 {
  position: absolute;
  top: 15vh;
  left: 50%;
  width: clamp(180px, 16vw, 240px);
  transform: translateX(-50%);
}

header h1 img {
  width: 100%;
  height: auto;
}

header nav {
  position: absolute;
  top: 8vh;
  right: 4vw;
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(13px, 1.2vw, 18px);
  letter-spacing: 0.08em;
}

header nav ul {
  display: grid;
  gap: 28px;
  text-align: right;
}

header nav a {
  color: inherit;
  text-decoration: none;
}

header nav a:hover {
  opacity: 0.7;
}

.nav-insta{
	display: none;
}


/*メニューボタン*/
.menu-button,
.menu-close {
  display: none;
}



.firstv {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;

  display: grid;
  place-items: center;
}

.firstv h2 {
  position: absolute;
  left: 50%;
  top: 62%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-mincho);
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.4;
  white-space: nowrap;
}

.firstv > p {
  position: absolute;
  left: 50%;
  top: calc(62% + 72px);
  transform: translateX(-50%);
  color: #e6003c;
  font-family: var(--font-en);
  font-size: clamp(15px, 1.2vw, 24px);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* scroll animation */
.container_04 {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  height: 150px;
  transform: translateX(-50%);
}

.scrollbar-text_04 {
  position: absolute;
  top: 0;
  left: 50%;
  color: #fff;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateX(-50%);
}

.scrollbar_04 {
  position: absolute;
  top: 56px;
  left: 50%;
  width: 1px;
  height: 94px;
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
}

.scrollbar_04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    top: 86px;
    opacity: 0;
  }
}
  

/*背景画像CSS*/

.firstv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.fv-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.fv-bg span {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1);

  animation: fvSlide 24s infinite;
}

/*背景画像指定*/
.fv-bg span:nth-child(1) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_01.jpg");

  animation-delay: 0s;
}

.fv-bg span:nth-child(2) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_02.jpg");

  animation-delay: 4s;
}

.fv-bg span:nth-child(3) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_03.jpg");

  animation-delay: 8s;
}

.fv-bg span:nth-child(4) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_04.jpg");

  animation-delay: 12s;
}

.fv-bg span:nth-child(5) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_05.jpg");

  animation-delay: 16s;
}

.fv-bg span:nth-child(6) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_06.jpg");

  animation-delay: 20s;
}

/*アニメーション*/
@keyframes fvSlide {

  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1.08);
  }

  33% {
    opacity: 0;
    transform: scale(1.12);
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}


/* =========================
  CONCEPT
========================= */

.concept {
  position: relative;
  overflow: hidden;
  background: var(--color-greige);
  padding-block: 150px 120px;
}

.concept .inner {
  position: relative;
  width: min(100% - 40px, var(--inner-width));
  margin-inline: auto;
}

/* 縦書き CONCEPT */
.concept h2 {
  position: absolute;
  top: 0;
  right: 0;
  color: #d0c5b7;
  font-family: var(--font-en);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
}

/* 左上画像：innerから少しはみ出し */
.concept-image {
  position: absolute;
  top: -55px;
  left: -100px;
  width: min(58vw, 500px);
}

.concept-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 上部リード文 */
.concept-lead {
  width: min(36vw, 430px);
  margin-left: auto;
  margin-right: 170px;
  margin-bottom: 120px;
  color: var(--color-text);
  font-family: var(--font-mincho);
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.12em;
}

/* BRAND PHILOSOPHY */
.concept-head {
  text-align: center;
  margin-bottom: 56px;
}

.concept-head h3 {
  color: #e6003c;
  font-family: var(--font-en);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.concept-head h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 14px auto 12px;
  background: #e6003c;
}

.concept-head p {
  font-size: 18px;
  letter-spacing: 0.08em;
}

/* 3 cards */
.philosophy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: stretch;
}

.philosophy-item article {
  display: flex;
  flex-direction: column;

  height: 100%;
  padding: 38px 34px 42px;

  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

text-align: center;
}

.philosophy-item .number {
  color: #e6003c;
  font-family: var(--font-en);
  font-size: 36px;
  line-height: 1;
}

.philosophy-item .number::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 10px auto 14px;
  background: #e6003c;
}

.philosophy-item .en-title {
  color: #e6003c;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.philosophy-item h4 {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.philosophy-item .sub-copy {
  margin-bottom: 34px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.philosophy-item .description {
  text-align: left;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.philosophy-slider-ui {
  display: none;
}

/* bottom message */
.concept-message {
  margin-top: 80px;
  text-align: center;
}

.concept-message p {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 2;
  letter-spacing: 0.12em;
}



/* =========================
  STORY
========================= */

.story {
  color: #fff;
  background: #111;
}

/* 背景エリア */
.story-area {
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.story-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* 背景画像 */
.story-area-top {
  background-image: url("../images/story_bg_01.jpg");
}

.story-area--bottom {
  background-image: url("../images/story_bg_02.jpg");
}

/* inner */
.story-inner {
  position: relative;
  z-index: 1;

  width: min(100% - 120px, 1320px);
  margin-inline: auto;
}

/*title */

.story h2 {
  position: absolute;
  top: 40px;
  left: 0;

  writing-mode: vertical-rl;

  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-en);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
}

/* lead */

.story-lead {
  width: min(42vw, 560px);

  margin-left: auto;
  padding-top: 72px;
  padding-right: 60px;

  font-size: 20px;
  line-height: 2.4;
  letter-spacing: 0.08em;
}

/* chapter common */

.story-chapter {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.story-text h3 {
  margin-bottom: 24px;

  /*font-size: clamp(24px, 2vw, 34px);*/
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--color-l_brown);
}

.story-text p {
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.06em;
}

.story-chapter--01,
.story-chapter--03 {
  grid-template-columns: 1fr 2fr;
}


/* images common */

.story-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
}

.story-images img,
.story-images video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* chapter 01 */

.story-chapter--01 {
  margin-top: 110px;
  padding-bottom: 120px;
}

.story-chapter--01 .story-images img:nth-child(1) {
  margin-top: -60px;
}

.story-chapter--01 .story-images img:nth-child(2) {
  margin-top: 100px;
}

/* bottom area */

.story-area--bottom .story-inner {
  padding-top: 120px;
  padding-bottom: 140px;
}

/* chapter 02 */

.story-chapter--02 {
  margin-bottom: 140px;
  grid-template-columns: 2fr 1fr;
}

.story-chapter--02 .story-text {
  order: 2;
}

.story-chapter--02 .story-images {
  order: 1;
}

.story-chapter--02 .story-images img:nth-child(1) {
  margin-top: -40px;
}

.story-chapter--02 .story-images video:nth-child(2) {
  margin-top: 80px;
}

/* chapter 03 */

/*.story-chapter--03 {
  grid-template-columns: 360px 1fr;
}*/

.story-chapter--03 .story-images img:nth-child(1) {
  margin-top: 80px;
}

.story-chapter--03 .story-images video:nth-child(2) {
  margin-top: -40px;
}

.video-sp {
  display: none !important;
}

.video-pc {
  display: block !important;
}



/* =========================
  FEATURES
========================= */

.features {
  overflow: hidden;
  background: var(--color-l_brown);
  padding-block: 120px 100px;
}

.features-inner {
  width: min(100% - 120px, 1320px);
  margin-inline: auto;
}

/* 上部 */
.features-head {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}

.features-head h2 {
  position: absolute;
  top: -30px;
  right: 40px;

  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  writing-mode: vertical-rl;
  z-index: 2;
}

.features-lead {
  writing-mode: vertical-rl;
  justify-self: start;
  height: 600px;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.features-head::after {
  content: "";
  display: block;
  width: 100vw;
  height: 600px;
  margin-left: auto;

  background-image: url("../images/features_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 本文エリア */
.features-content {
  display: grid;
  gap: 100px;
  margin-bottom: 100px;
}

.feature-item {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(420px, 1fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.feature-item:nth-child(even) {
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 420px);
}

.feature-item:nth-child(even) .feature-image {
  order: 2;
}

.feature-item:nth-child(even) .feature-text {
  order: 1;
}

.feature-image img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-text {
  max-width: 560px;
}

.feature-text h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.feature-text p {
  font-size: 16px;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

/* 下部ギャラリー：自動横スクロール */
.features-gallery {
  width: 100vw;
  margin-left: calc((100vw - 100%) / -2);
  overflow: hidden;
}

.gallery-list {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: gallery-scroll 32s linear infinite;
}

.gallery-item {
  flex: 0 0 220px;
}

.gallery-item img {
  display: block;
  width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50%));
  }
}

/* =========================
 LINE UP
========================= */

.lineup {
  padding-block: 120px;
  background: var(--color-greige);
}

.lineup .inner {
  width: min(100% - 40px, var(--inner-width));
  margin-inline: auto;
}

#lineup-title {
  margin-bottom: 32px;
  color: #d0c5b7;
  font-family: var(--font-en);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.14em;
}

.lineup-list {
  display: grid;
  gap: 120px;
}

.lineup-title {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
  background-image: url("../images/lineup_h3_bg.svg");
  background-position: center;
  background-repeat: no-repeat;
}

.lineup-title img {
  width: auto;
  height: 40px;
  max-width: min(100%, 430px);
}

.lineup-title small {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.lineup-title small::before,
.lineup-title small::after {
  content: "";
  width: 1px;
  height: 10px;
  background: currentColor;
}

.product-content {
  display: grid;
  grid-template-columns: minmax(360px, 500px) minmax(320px, 1fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.product.image-right .product-lineup {
  order: 2;
}

.product.image-right .product-info {
  order: 1;
}

/* slider */
.product-lineup {
  position: relative;
  overflow: hidden;
}

.product-slider-list {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-slider-list::-webkit-scrollbar {
  display: none;
}

.item-img {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.item-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(209, 198, 183, 0.8);
  transform: translateY(-50%);
}

.product-arrow--prev {
  left: 10px;
}

.product-arrow--next {
  right: 10px;
}

.product-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.product-arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.product-arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-info {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.lineup-text {
  margin-bottom: 28px;
}

.lineup-detail {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 8px;
  padding-block: 16px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  font-family: var(--font-gothic);
  font-size: 14px;
 
}

.lineup-detail dt::before {
  content: "■";
  margin-right: 4px;
  color: var(--color-l_brown);
}

.lineup-price,
.lineup-price_list {
  margin-top: 16px;
  font-size: 22px;
}

.lineup-price small,
.lineup-price_list small {
  /*margin-left: 4px;*/
  font-size: 11px;
}

.lineup-price_list {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 6px 16px;
}

.lineup-price_list dt{
 /*background-color: var(--color-l_brown);*/
 font-size: 16px;
 transform: translateY(5px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  height: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d2cb;
  transition: background 0.3s ease,
              transform 0.3s ease;
}

.dot.is-active {
  background: #7f1d1d;
  transform: scale(1.2);
}


/* =========================
  POP UP STORE
========================= */

.popup {
  background: #fff;
}

.popup-hero {
  min-height: 380px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("../images/popup_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
}

.popup-hero h2 {
  font-family: var(--font-en);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}

.jp-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  color: #fff;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.jp-subtitle::before,
.jp-subtitle::after {
  content: "";

  width: 1px;
  height: 14px;

  background: #fff;
}

.sp-br {
  display: none;
}
.popup-inner {
  width: min(100% - 120px, 1100px);
  margin-inline: auto;
  padding-block: 80px 130px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(64px, 8vw, 120px);
  align-items: center;
}

.popup-info h3 {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.popup-info p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.06em;
}

.popup-info p:nth-of-type(1) {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #999;
}

.popup-info p:nth-of-type(2) {
  font-size: 21px;
}

.popup-button,
.sns-button {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  width: min(100%, 280px);
  height: 44px;

  margin-top: 28px;
  border-radius: 999px;

  background: var(--color-l_brown);
  color: #fff;

  font-family: var(--font-gothic);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.popup-button::after,
.sns-button::after {
 content: "";

  position: absolute;
  top: 12px;
  right: 16px;

  width: 12px;
  height: 12px;

  background: url("../images/icon_blank.svg") no-repeat center / contain;
  
  transition: transform .3s ease;
}


.popup-button:hover::after,
.sns-button:hover::after{
  transform: translate(2px, -2px);
}

.popup-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  border: 0;
}


/* =========================
SNS
========================= */

.sns {
	background: var(--color-greige);
}

.sns-inner {
	width: min(100% - 120px, 1100px);
	margin-inline: auto;
	padding-block: 80px 130px;
	text-align: center;
}

.sns h2 {
	font-family: var(--font-en);
	font-size: clamp(44px, 5vw, 72px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.08em;
	color: var(--color-l_brown);
}

.sns-inner p{
	font-family: var(--font-mincho)
	font-size: 18px;
	letter-spacing: 0.08em;
	line-height: 1.8;
	margin-top: 24px;
	margin-bottom: 24px;
}

.sns-feed{
 height: 100%;
}

.sns-button{
	margin: 0 auto;
	margin-top: 24px;
}

/* =========================
CONTACT
========================= */
.contact-cta {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;

  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("../images/contact_bg.jpg") center / cover no-repeat;
    
}

/* 中央寄せ */
.contact-cta-inner {
  display: grid;
  justify-items: center;
  gap: 28px;

  position: relative;
  z-index: 2;
}

/* タイトル */
.contact-cta h2 {
  color: #fff;
  font-family: var(--font-en);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* テキスト */
.contact-cta p {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* ボタン */
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  min-width: 400px;
  height: 80px;
  padding-inline: 40px;

  border: 1px solid #fff;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;

  font-family: var(--font-en);
  font-size: 36px;
  letter-spacing: 0.08em;
  line-height: 1;

  transition:
    background-color .3s ease,
    color .3s ease,
    opacity .3s ease;
}

/* アイコン */
.contact-button::before {
  content: "";

  width: 34px;
  height: 24px;

  background:
    url("../images/icon_mail.svg")
    center / contain no-repeat;
}

/* hover */
.contact-button:hover {
  background: rgba(255,255,255,.12);
}


/* =========================
footer
========================= */

.footer {
  background: var(--color-gray);
  padding-block: 56px;
}

.footer-inner {
  width: min(100% - 120px, 1200px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  column-gap: 80px;
  row-gap: 24px;
}

.footer-logo {
  grid-row: 1 / 3;
}

.footer-logo img {
  width: 110px;
  height: auto;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}

.footer-nav a {
  color: #fff;
  font-family: var(--font-gothic);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.footer-sns img {
  width: 32px;
  height: auto;
}

.copyright {
  grid-column: 2 / 4;
  color: #fff;
  text-align: center;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* =========================
BACK TO PAGE TOP
========================= */

.back-to-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 100;

  width: 82px;
  aspect-ratio: 1;

  border-radius: 50%;
  background: var(--color-red);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #fff;
  text-decoration: none;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* 矢印 */
.back-to-top .arrow {
  width: 12px;
  height: 12px;

  border-top: 2px solid #fff;
  border-left: 2px solid #fff;

  transform: rotate(45deg);
}

/* TOP文字 */
.back-to-top .text {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* 最初は消しておく */
.back-to-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .3s ease;
}

/* 表示時 */
.back-to-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* モーダル */
.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .3s ease, visibility .3s ease;
}

.popup-modal.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.popup-modal__content {
  position: relative;
  z-index: 1;
  width: min(88vw, 520px);
  max-height: 88vh;
}

.popup-modal__link,
.popup-modal__link img {
  display: block;
}

.popup-modal__link img {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
}

.popup-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;

  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;

  background: #fff;
  color: #333;

  font-size: 24px;
  line-height: 1;
}





/* =========================
レスポンシブ対応
========================= */

@media (max-width: 767px) {
  /*header h1 {
    top: 12vh;
    width: 120px;
  }*/
 header {
    z-index: 100;
  }

  .menu-button {
    z-index: 120;
  }

  .header-nav {
    z-index: 110;
  }
  


  
/*SP メニューボタン*/
.menu-button {
  display: grid;
  gap: 8px;
  position: fixed;
  top: 28px;
  right: 24px;
  z-index: 120;
  width: 40px;
  height: 28px;
}

  .menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  
.menu-button.is-open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: 80%;
  height: 100vh;
  height: 100svh;
  padding: 80px 48px;
  background: #cfc3b2;
  color: #fff;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.45s ease,
    opacity 0.3s ease,
    visibility 0.3s ease; 
}

  .header-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-nav ul {
    display: grid;
    gap: 28px;
    text-align: left;
  }

  .header-nav a {
    font-size: 22px;
    letter-spacing: 0.08em;
  }
  
  .nav-insta{
	display: block;
}

 .nav-contact a,
  .nav-insta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .nav-contact a::before {
    content: "";
    width: 20px;
    height: 16px;
    background: url("../images/icon_mail.svg") center / contain no-repeat;
  }

  .nav-insta a::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../images/insta_logo.svg") center / contain no-repeat;
  }
  
.nav-contact a::before,
.nav-insta a::before {
	transform: translateY(-1px);
}


  .menu-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    font-size: 52px;
    line-height: 1;
  }

  .firstv {
    background-position: center;
  }

  .firstv h2 {
    top: 58%;
    font-size: 28px;
    letter-spacing: 0.14em;
  }

  .firstv > p {
    top: calc(58% + 48px);
    font-size: 15px;
  }

  .container_04 {
    height: 120px;
  }

  .scrollbar_04 {
    top: 50px;
    height: 70px;
  }

  @keyframes scroll-dot {
    100% {
      top: 62px;
      opacity: 0;
    }
  }

/*SP 背景画像指定*/
.fv-bg span:nth-child(1) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_01_sp.jpg");

  animation-delay: 0s;
}

.fv-bg span:nth-child(2) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_02_sp.jpg");

  animation-delay: 4s;
}

.fv-bg span:nth-child(3) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_03_sp.jpg");

  animation-delay: 8s;
}

.fv-bg span:nth-child(4) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_04_sp.jpg");

  animation-delay: 12s;
}

.fv-bg span:nth-child(5) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_05_sp.jpg");

  animation-delay: 16s;
}

.fv-bg span:nth-child(6) {
  background-image:
    linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.25)),
    url("../images/main_06_sp.jpg");

  animation-delay: 20s;
}

/* CONCEPT SP */

 .concept {
    padding-block: 80px;
  }

  .concept .inner {
    width: min(100% - 32px, var(--inner-width));
  }

 /* .concept h2 {
    position: static;
    margin-bottom: 40px;
    font-size: 52px;
    writing-mode: horizontal-tb;
    text-align: center;
  }*/

  .concept-image {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-left: -15%;
    margin-bottom: 40px;
  }

  .concept-lead {
    width: 90%;
    margin: 0 0 64px;
    font-size: 17px;
    line-height: 2;
  }

  .concept-head {
    margin-bottom: 36px;
  }

  .philosophy-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .philosophy-item article {
    min-height: auto;
    padding: 34px 28px 38px;
  }

  .concept-message {
    margin-top: 56px;
  }

  .concept-message p {
    font-size: 18px;
    text-align: left;
  }


/*SP 3つの柱スワイプボタン*/

.philosophy-list {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    padding-bottom: 32px;
    scrollbar-width: none;
  }

  .philosophy-list::-webkit-scrollbar {
    display: none;
  }

  .philosophy-item {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }

  .philosophy-item article {
    height: 100%;
  }

  .philosophy-slider-ui {
    display: block;
    position: relative;
  }

  .philosophy-arrow {
    position: absolute;
    top: -245px;
    z-index: 5;

    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(207, 195, 178, 0.75);
  }

  .philosophy-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }

  .philosophy-arrow--prev {
    left: -16px;
  }

  .philosophy-arrow--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
  }

  .philosophy-arrow--next {
    right: -16px;
  }

  .philosophy-arrow--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
  }

  .philosophy-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -10px;
  }

  .philosophy-dots span {
    width: 9px;
    height: 9px;
    border: 1px solid #777;
    border-radius: 50%;
    background: transparent;
  }

  .philosophy-dots span.is-active {
    background: #777;
  }

/* STORY SP */
  .story {
    background: #4b4b4b;
  }

  .story-area {
    background-size: cover;
    background-position: center top;
  }

  .story-area::before {
    background: rgba(0, 0, 0, 0.45);
  }

  .story-inner {
    width: min(100% - 40px, var(--inner-width));
  }

  .story-area-top .story-inner {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .story-area--bottom .story-inner {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .story h2 {
    top: 24px;
    left: -16px;
    font-size: 54px;
    writing-mode: vertical-rl;
  }

  .story-lead {
    width: 78%;
    margin-left: auto;
    padding: 0;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.08em;
  }

  .story-chapter {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .story-chapter--01 {
    margin-top: 48px;
    padding-bottom: 0;
  }

  .story-chapter--02 {
    margin-bottom: 64px;
  }

  .story-chapter--02 .story-text,
  .story-chapter--02 .story-images {
    order: initial;
  }

  .story-text {
    width: 100%;
  }

  .story-text h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }

  .story-text p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
  }

  .story-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-images img,
  .story-images video {
    width: 100%;
    margin-top: 0 !important;
  }

  .story-chapter--01 .story-images {
    margin-bottom: 8px;
  }

  .story-chapter--01 .story-text {
    order: 2;
  }

  .story-chapter--01 .story-images {
    order: 1;
  }

  .story-chapter--02 .story-images {
    order: 1;
  }

  .story-chapter--02 .story-text {
    order: 2;
  }

  .story-chapter--03 {
    position: relative;
  }

  .story-chapter--03 .story-text {
    display: contents;
  }

  .story-chapter--03 .story-text h3 {
    position: absolute;
    top: 0;
    left: 28px;
    z-index: 2;

    writing-mode: vertical-rl;
    margin-bottom: 0;

    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--color-l_brown);
  }

  .story-chapter--03 .story-text p {
    display: block;
    order: 2;

    /*width: min(100% - 40px, var(--inner-width));*/
    margin: 16px auto; 0
  }

  .story-chapter--03 .story-images {
    order: 1;
    position: relative;
  }

  .story-chapter--03 .story-images img:nth-child(1) {
    width: 70%;
    margin-left: auto;
    margin-right: 0;
  }

  .story-chapter--03 .story-images .video-sp {
    width: 64%;
    margin-left: 0;
    margin-right: auto;
    margin-top: 24px !important;
  }
  .story-images {
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);

    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-images img {
    margin-top: 0 !important;
  }
  
  .video-sp {
    display: block !important;
  }
  
.video-pc {
	display: none !important;
}
  

  /* 01・02：1枚目 左寄せ / 2枚目 右寄せ */
  .story-chapter--01 .story-images img:nth-child(1),
  .story-chapter--02 .story-images img:nth-child(1) {
    width: 72%;
    margin-left: 0;
    margin-right: auto;
  }

  .story-chapter--01 .story-images img:nth-child(2),
  .story-chapter--02 .story-images video:nth-child(2) {
    width: 72%;
    margin-left: auto;
    margin-right: 0;
  }
  
  .story-video {
  /*aspect-ratio: 440 / 400;*/
  object-fit: cover;
}

/*.story-chapter--02 .story-video {
  aspect-ratio: 480 / 369;
}*/

  /* 03：1枚目 右寄せ / 2枚目 左寄せ */
  .story-chapter--03 .story-images img:nth-child(1) {
    width: 60%;
    margin-left: auto;
    margin-right: 0;
  }

  .story-chapter--03 .story-images video:nth-child(2) {
    width: 76%;
    margin-left: 0;
    margin-right: auto;
  }

/* FEATURES SP */

 .features {
    padding-block: 64px 72px;
  }

  .features-inner {
    width: min(100% - 40px, var(--inner-width));
  }

.features-head {
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
    gap: 8px;
  }

  .features-head h2 {
    top: -30px;
    right: -18px;
    font-size: 58px;
    z-index: 2;
  }

  .features-head::after {
    content: "";
    order: 1;

    width: calc(100vw - 28px);
    height: auto;
    aspect-ratio: 4 / 5;

    margin-left: calc((100vw - 100%) / -2 + 28px);

    background-image: url("../images/features_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .features-lead {
    order: 2;
    writing-mode: horizontal-tb;

    width: 100%;
    height: auto;
    margin-top: 48px;

    font-size: 18px;
    line-height: 2.1;
    letter-spacing: 0.08em;
  }

  .features-content {
    gap: 72px;
    margin-bottom: 72px;
  }

  .feature-item,
  .feature-item:nth-child(even) {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-item:nth-child(even) .feature-image,
  .feature-item:nth-child(even) .feature-text {
    order: initial;
  }

.feature-image {
  width: auto;
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  overflow: visible;
}
.feature-item:nth-child(1) .feature-image img {
  width: 86%;
  margin-left: 0;
  margin-right: auto;
}

.feature-item:nth-child(2) .feature-image img {
  width: 86%;
  margin-left: auto;
  margin-right: 0;
}

  .feature-text {
    max-width: none;
  }

  .feature-text h3 {
    margin-bottom: 18px;
    font-size: 23px;
    line-height: 1.7;
  }

  .feature-text p {
    font-size: 15px;
    line-height: 2.15;
  }

  .features-gallery {
    width: 100vw;
    margin-left: calc((100vw - 100%) / -2);
  }

  .gallery-list {
    gap: 24px;
    animation-duration: 28s;
  }

  .gallery-item {
    flex-basis: 140px;
  }

  .gallery-item img {
    width: 140px;
  }

/* LINE UP SP */

 .lineup {
    padding-block: 100px;
  }

  .lineup .inner {
    width: 100%;
  }

  #lineup-title {
    margin-bottom: 24px;
    font-size: 52px;
  }

  .lineup-list {
    gap: 100px;
  }

  .product {
    width: 100%;
  }

  /* タイトル */
  .lineup-title {
    gap: 10px;
    margin-bottom: 32px;
    padding-inline: 20px;
  }


  .lineup-title small {
    font-size: 11px;
  }
  
.lineup-title picture,
.lineup-title img {
  display: block;
}

.lineup-title img {
  height: 80px;
}

.st-premium img {
  height: 60px;
}

  /* 並び順 */
  .product-content {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .product.image-right .product-lineup,
  .product.image-right .product-info {
    order: initial;
  }

  /* 画像 */
  .product-lineup {
    width: 100%;
  }

  .product-slider-list {
    width: 100%;
  }

  .item-img {
    width: 100%;
  }

  .item-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  /* 矢印 */
  .product-arrow {
    width: 34px;
    height: 34px;
  }

  .product-arrow--prev {
    left: 14px;
  }

  .product-arrow--next {
    right: 14px;
  }

  /* ドット */
  .slider-dots {
    margin-top: 14px;
  }

  /* 商品情報 */
  .product-info {
    width: min(100% - 40px, 560px);
    margin-inline: auto;
    font-size: 14px;
    line-height: 2;
  }

  .lineup-text {
    margin-bottom: 24px;
  }

  .lineup-detail {
    padding-block: 14px;
    font-size: 11px;
  }

  .lineup-price,
  .lineup-price_list {
    margin-top: 12px;
    font-size: 24px;
  }
  
  .lineup-price_list dt{
 transform: translateY(12px);
}


/* POP UP SP */
 .popup-hero {
    min-height: 260px;
    background-position: center;
  }

  .popup-hero h2 {
    font-size: 42px;
    line-height: 1.2;
  }

  .popup-hero p {
    margin-top: 14px;
    font-size: 14px;
  }

.sp-br {
    display: block;
  }

  .popup-inner {
    width: min(100% - 40px, 560px);
    padding-block: 64px 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .popup-info{
	 text-align: center;
}
  
  
   .popup-info h3 {
    font-size: 24px;
  }

  .popup-info p {
    font-size: 14px;
  }

  .popup-info p:nth-of-type(2) {
    font-size: 18px;
  }

  .popup-button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    margin-top: 16px;
  }

  .popup-map iframe {
    aspect-ratio: 1 / 1;
  }


/* SNS SP */

.sns-inner {
	width: 100%;
}


/* CONTACT SP */

 .contact-cta {
    padding: 120px 20px;
  }

  .contact-cta-inner {
    gap: 22px;
  }

  .contact-cta h2 {
    font-size: 42px;
    text-align: center;
  }

  .contact-cta p {
    font-size: 15px;
    text-align: center;
    line-height: 1.8;
  }

  .contact-button {
    min-width: 88%;
    max-width: 340px;

    height: 72px;
    padding-inline: 24px;

    font-size: 28px;
  }

  .contact-button::before {
    width: 26px;
    height: 18px;
  }

/* footer sp */

.footer {
    padding-block: 48px;
  }

  .footer-inner {
    width: min(100% - 40px, 560px);
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 32px;
    text-align: center;
  }

  .footer-logo {
    grid-row: auto;
  }

  .footer-logo img {
    width: 96px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 18px;
  }

.footer-sns{
 margin: 0 auto;
}


  .copyright {
    grid-column: auto;
    font-size: 12px;
  }
 
 /* back to top sp */
 .back-to-top {
    right: 20px;
    bottom: 20px;

    width: 68px;
  }

  .back-to-top .text {
    font-size: 16px;
  }

  .back-to-top .arrow {
    width: 8px;
    height: 8px;
  }

}

.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* ファーストビュー部分フェード */

.fv-fade {
  opacity: 0;
  transform: translateX(-50%) translateY(24px);

  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
    scale(1.03);
}


.fv-fade.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  scale(1);
}

header h1 {
  transition-delay: .2s;
}

.firstv h2 {
  transition-delay: .7s;
}

.firstv > p {
  transition-delay: 1.1s;
}


@media (min-width: 768px) and (max-width: 1024px) {

  .lineup .inner {
    width: min(100% - 80px, 900px);
  }

  .product-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .product-lineup {
    width: 100%;
  }

  .product-info {
    width: 100%;
  }

}



