@charset "UTF-8";

body {
    font-family: "EB Garamond", serif;
    letter-spacing: 0.1rem;
    color: #222;
}

h2 {
    color: #fff;
    font-size: 2rem;
    font-style: italic;
}

h4 {
    font-size: 2rem;
}

.slider-content {
    bottom: 10%;
    left: 6%;
    display: flex;
    justify-content: space-between;
    height: 100vh;
    align-items: flex-end;
    padding: 4rem 4rem;
}

.slider-text {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

p {
    line-height: 2rem;
}

/* カーソル */
/*デフォルトのマウスカーソルを非表示にする*/
html,
body,
a {
  cursor: none;
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #888;
  z-index: 1000;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: rgba(205, 114, 113, 0.5);
}

/*動き確認用ボタン*/
.btn {
  display: inline-block;
  min-width: 300px;
  margin: 20px;
  padding: 20px;
  color: #fff;
  background-color: #000;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

.w-container {
  width: 100%;
  max-width: 1400px;  /* 1200より少し大きく */
  margin: 0 auto;
  padding: 0 6rem;
}

.top-slider {
  margin-bottom: 8rem;
}





/* title */
    .vertical-title {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      font-size: 1rem;
      font-family: serif;
      position: relative;
      margin: 4rem 2rem;
      color: #888;
    }

    .vertical-title::before {
      content: "";
      position: absolute;
      width: 1px;
      height: 100%;
      background-color: #888;
      top: 0;
    }

    .vertical-title::before {
      left: -10px; /* 左線との距離調整 */
    }

    .vertical-title::after {
      right: -10px; /* 右線との距離調整 */
    }


    
/* 縦書き日本語 */
    .vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 18px;
    line-height: 4rem;
    white-space: pre-wrap;
    margin-top: 4rem;
    font-size: 0.9rem;
    }

/* bland-story */
.bland-story {
    display: flex;
    padding-bottom: 6rem;
    margin-top: -12rem;
    background-image: url("img/sketch.png");
    background-size: contain;    /* 画像全体を収める（余白が出ることも） */
    background-size: 60%;        /* 要素の50%の幅（高さは自動） */
    background-position: 100% 0%;      /* 横・縦の中央 */
    background-repeat: no-repeat; /* 一回だけ表示（よく使う） */

}

.bland-story2 {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 2rem;
    background-image: url("img/map.png");
    background-size: contain;    /* 画像全体を収める（余白が出ることも） */
    background-size: 50%;        /* 要素の50%の幅（高さは自動） */
    background-position: 8% 0%;      /* 横・縦の中央 */
    background-repeat: no-repeat; /* 一回だけ表示（よく使う） */
}



.story h4,.story p{
    margin-bottom: 2%;
}

.story p {
    line-height: 5rem;
    font-size: 1rem;
    width: 70%;
}

.story h4 {
    line-height: 5rem;
}


.story2 p {
    width: 60%;
    margin-bottom: 1rem;
    line-height: 5rem;
    font-size: 1rem;
    margin-left: auto; /* ← 左側を自動にして右に押し出す */
    margin-right: 2rem;
    margin-top: 6rem;
}

.bland-story-btn {
    text-align: right;
    margin-bottom: 4rem;
    margin-right: 6rem;
}

.bland {
    margin-bottom: 10rem;
    margin-top: 6rem;
}

/* 31 */

.MW31-box {
    display: flex;
    align-items: center;
}

.MW31-box figure,
.MW31-box .MW31-text {
    flex: 1;
    box-sizing: border-box;
}

.MW31-text h4  {
    margin-bottom: 2rem;
}

.MW31-box.reverse {
    flex-direction: row-reverse;
}

.basic .MW31-text p,.basic .MW31-text h4{
    margin-left: 5rem;
}

.MW31-text h4 {
    font-size: 1.7rem;
}

.MW31 {
    margin-top: -4rem;
}

.reverse .MW31-text p,.basic .MW31-text h4 {
  margin-right: 5rem;
}

.MW31-title {
  color: #888;
}

.reverse p {
  margin-bottom: 2rem;
}




/* 流れる文字 */

.container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  margin: 3rem 0;
}
.wrapper {
  display: flex;
  animation: loop-text 15s linear infinite;
}
.double-content {
  display: inline-block;
  font-size: 6rem;
  white-space: nowrap;
  color: #c6c6c6;
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}




/* movie */
.movie video {
  width: 30rem;         /* 任意のサイズ */
  height: 30rem;        /* 横と縦を同じにして1:1 */
  border-radius: 50%;   /* これで丸くする！ */
  object-fit: cover;    /* はみ出さないようにトリミング */
  display: block;
  overflow: hidden;
}

.open-box {
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
  gap: 4rem;
}

.open-box p ,.open-box h4 {
  color: #fff;
}

.open-box h4 {
  margin-bottom: 1rem;
}

.red {
  color: rgb(122, 44, 43);
}

.openheart {
  background-color: #000;
  margin-top: 8rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 2s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


.open-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 左揃え（テキストは左に揃えたい場合） */
  gap: 1rem; /* h4とp、ボタンの間の余白 */
  position: relative;
}

.open-text .btnlinestretches5 {
  align-self: flex-end; /* ボタンだけ右端に寄せる */
}

#animated-text {
  transition: opacity 0.8s ease;
  display: inline-block;
}


/* dital */

.dital-area {
  display: flex;
  gap: 4rem;
  padding-top: 8rem;
  padding-bottom: 8rem;

  /* 高さ揃えるために子要素を等高に */
  align-items: stretch;
}

.madeinjp {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.madeinjp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dial-box h3{
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.dial-box {
  display: flex;
  flex-direction: column; /* お好みで */
  flex: 1;             /* 幅も揃える */
}





/* series */

.series-box {
  display: flex;
  width: 100%;
}

.img-wrapper {
  width: 33.3333%;
  aspect-ratio: 2 / 3; /* ← これで縦長比率に */
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* リンクをブロック要素にし親と同じサイズに */
.img-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none; /* 下線消し */
  color: inherit;        /* 文字色継承 */
}

/* 画像 */
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease; /* アニメーション */
}

.img-wrapper {
  position: relative;
  width: 33.3333%;
  height: 600px;  /* 400px → 600px に伸ばす */
  overflow: hidden;
}


/* ホバー時に画像を薄く */
.img-wrapper a:hover img {
  opacity: 0.6;
}

/* 文字はホバーでもそのまま */
.overlay-text {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
  padding: 4px 8px;
  border-radius: 4px;
  pointer-events: none;
  max-width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease; /* 文字色変化など追加するなら */
}


/* designer */

.topic {
 margin-top: -4rem;
 margin-bottom: 8rem;
}

.slide-caption {
  font-size: 1.5rem;
  color: #888;
  margin-top: 1rem;
}

/* スライダーの幅調整 */
.slider-news {
  width: 94%;
  margin: 0 auto;
}

.slider-news img {
  width: 100%;
  height: auto;
}

/* slick-slide の余白 */
.slider-news .slick-slide {
  margin: 0 10px;
}

/* 矢印 */
.slider-news-prev,
.slider-news-next {
  position: absolute;
  top: 42%;
  cursor: pointer;
  outline: none;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  height: 15px;
  width: 15px;
  z-index: 1;

}

.slider-news-prev {
  left: -1.5%;
  transform: rotate(-135deg);

}

.slider-news-next {
  right: -1.5%;
  transform: rotate(45deg);
}

.slider-news-prev,
.slider-news-next {
  display: none !important;
}

/* ドット */
.slider-news-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slider-news-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slide-item .btnlinestretches52 {
  font-size: 0.7rem;
}

.slider-news-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #ccc;
}

.slider-news-dots .slick-active button {
  background: #333;

}

.slider-news img {
  width: 100%;
  height: 200px; /* 任意の高さに固定 */
  object-fit: cover;
  display: block;
}


/* footer */

.footer-area {
  background-color: #999;
  display: flex;
  justify-content: space-between;
  align-items: end; /* ← centerの方が自然 */
  padding: 6rem;
  flex-wrap: wrap; /* ← スマホ対応にも有効 */
}


.footer-area #g-navi ul {
  flex-direction: column;
  margin-top: 1rem;
}

.footer-area #g-navi ul a{
  padding: 8px;
}

.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;   /* 背景を透明に */
  color: #fff;                     /* 文字を白に */
  border: 1px solid #fff;          /* 白い枠線 */
  border-radius: 30px;              /* 丸みのある角 */
  text-decoration: none;           /* 下線なし */
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #fff;          /* ホバー時に白背景 */
  color: #000;                     /* ホバー時に文字を黒へ */
}


.footer-area #g-navi2 ul {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.footer-area #g-navi2 ul a {
  padding: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  transition: all 0.3s ease;
}

.footer-area #g-navi2 ul a:hover {
  color: #000;
  border-radius: 4px;
}

