@charset "UTF-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  line-height: 28px;
}

a {
  color: #111;
  text-decoration: none;
}

/* Google Fonts から読み込む場合 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap");

.en {
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

body {
  width: 100%;
  max-width: 100%;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin: 0;
  color: #111111;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.center {
  text-align: center;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  line-height: 0;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-img.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  bottom: 30%;
  left: 5%;
  color: #fff;
  max-width: 600px;
  z-index: 10;
}

.hero-title {
  font-size: 3rem;
  font-weight: 400;
  margin: 0 0 0.5em;
  line-height: 1.3;
}

.hero-sub {
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  font-weight: 300;
}

.shadow {
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.05);
}

/* header */
.site-header {
  position: fixed; /* 上部固定 */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent; /* 背景透明 */
  z-index: 1000;
}

.site-header .container {
  max-width: 95%;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 38px;
}

.main-nav {
  display: flex;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0 40px 0 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

.sns-icons {
  display: flex;
  gap: 16px;
  margin-left: 16px;
}

.sns-icons img {
  width: 20px;
  height: 20px;
}

/* wrapper */
.wrapper {
  width: 85%;
  margin: 0 auto;
  padding: 120px 0;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: 500;
}

/* business */
.business-nav {
  margin: 32px 0 60px;
}

.business-nav ul {
  display: flex;
  gap: 24px; /* 縦線と文字の間隔 */
  list-style: none;
  margin: 0;
  padding: 0;
}

.business-nav li {
  position: relative;
}

.business-nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px; /* gap の半分 */
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background-color: #ccc; /* 縦線の色 */
}

.business-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.3rem;
  font-weight: 400;
}

.business-nav a:hover {
  text-decoration: underline;
}

.business-item {
  padding: 80px 0;
  border-top: 1px solid #dddddd;
}

.section-title {
  position: relative;
}

.section-title h3 {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 1.3rem;
  font-weight: 400;
}

.section-en {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 400;
}

/* Retail */
.retail-grid {
  margin: 0 auto;
  padding: 0 0 60px;
  display: flex;
  gap: 32px;
}

.brand-det {
  width: 60%;
}

.brand-classa {
  width: 40%;
}

.brand-media {
  width: 100%;
}

.brand-classa .brand-media img {
  height: 300px;
}

.brand-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

/* Detの2枚を横並び */
.brand-det .brand-media.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brand-title {
  margin: 20px 0 12px;
  font-size: 2rem;
  font-weight: 500;
  color: #222;
}

.brand-desc {
  margin: 0 0 12px;
  line-height: 1.9;
  color: #444;
  font-size: 1.4rem;
}

.brand-link a {
  color: #444;
  text-decoration: none;
  font-size: 1.2rem;
  word-break: break-all; /* 長いURL折返し */
}
.brand-link a:hover {
  text-decoration: underline;
}
.white-space {
  background-color: #fff;
  height: 120px;
}

/* showroom */
.showroom {
  width: 100%;
}

.showroom .brand-media.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showroom-media {
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: end;
}

.showroom-media img {
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.showroom-img01 {
  width: 60%;
  height: 420px;
}

.showroom-img02 {
  width: 40%;
  height: 300px;
}

.brand-desc-sm {
  margin: 0 0 12px;
  line-height: 1.9;
  color: #444;
  font-size: 1.2rem;
}

/* Live Commerce */
/* セクション余白はページ設計に合わせて調整 */
.lc-feature {
  padding: 0 0 80px;
}

.lc-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr; /* 左テキストやや狭め／右画像広め */
  gap: 40px;
  align-items: center;
  align-items: end;
}

/* テキスト */
.lc-lead {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
}

.lc-desc {
  margin: 0 0 24px;
  color: #4a4a4a;
  line-height: 1.9;
  font-size: 1.4rem;
}

/* アウトラインのピル型ボタン */
.lc-btn {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #cfcfcf;
  border-radius: 9999px;
  text-decoration: none;
  color: #222;
  font-size: 1.4rem;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.lc-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* 画像 */
.lc-media img {
  width: 100%;
  height: 420px; /* カンプの縦横比感に合わせた目安 */
  object-fit: cover;
  display: block;
  border-radius: 4px; /* 必要なければ削除 */
}

/* =============== Company =============== */
.company-bg {
  position: relative;
  width: 100%;
  height: 600px;
  width: 100%;
  line-height: 0;
}

.company-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-bg-text {
  position: absolute;
  bottom: -8%;
  left: 20%;
}

.company-bg-text p {
  font-size: 10rem;
  font-weight: 600;
  line-height: 1;
  color: #111111;
}

.corp-info {
  padding: 48px 0 80px;
}

.ci-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr); /* 左見出し / 右コンテンツ */
  column-gap: 40px;
  align-items: start;
}

/* 左サイド */
.ci-aside {
  position: sticky; /* 必要なければ削除 */
  top: 80px; /* 固定ヘッダーがある前提の目安 */
}
.ci-en {
  margin: 0 0 8px;
  font-size: 2.8rem;
  line-height: 1.25;
  font-weight: 500;
  color: #222;
}
.ci-ja {
  margin: 0;
  font-size: 1.3rem;
  color: #777;
}

/* 右：定義リストを2カラムに */
.ci-list {
  display: grid;
  grid-template-columns: 180px 1fr; /* ラベル / 値 */
  margin: 0;
  padding: 0;
}

/* 行の区切り線（dt・dd双方に敷くと通し線になる） */
.ci-list dt,
.ci-list dd {
  margin: 0;
  padding: 28px 0 24px;
  border-top: 1px solid #e5e7eb;
}

/* 1行目だけ上線を出す */
.ci-list dt:first-of-type,
.ci-list dd:first-of-type {
  border-top: 1px solid #e5e7eb;
}

/* ラベル側 */
.ci-list dt {
  color: #222;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.9;
}

/* 値側 */
.ci-list dd {
  color: #222;
  font-size: 1.4rem;
  line-height: 1.9;
}

/* =============== parter =============== */
.partner-section {
  padding: 100px 0;
}

.partner-container {
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 左右2カラム */
  gap: 40px;
  align-items: center;
}

.partner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.partner-heading {
  font-size: 8rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 40px;
}

.partner-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.partner-desc {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 24px;
}

.partner-btn {
  display: inline-block;
  padding: 12px 0;
  width: 160px;
  text-align: center;
  border: 1px solid #333;
  border-radius: 9999px;
  color: #333;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.partner-btn:hover {
  background-color: #111;
  color: #fff;
}

/* =============== News =============== */
.news-section {
  padding: 80px 0;
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.news-head h2 {
  margin: 0;
  font-size: 2.8rem;
  font-weight: 500;
  color: #111;
}

.news-more {
  font-size: 1.3rem;
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}
.news-more:hover {
  color: #111;
  border-color: #111;
}

/* カードグリッド */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* カード本体 */
.news-card {
  display: flex;
  flex-direction: column;
}

.news-thumb {
  display: block;
  width: 100%;
  height: 220px; /* 画像比率は必要に応じ調整 */
  border-radius: 4px;
  overflow: hidden;
  background: #d9d9d9; /* プレースホルダ色 */
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-thumb:hover {
  filter: brightness(0.96);
}

/* メタ情報（左：タグ／右：日付） */
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 6px;
}

.news-tag {
  display: inline-block;
  font-size: 1.1rem;
  color: #fff;
  background: #6b6b6b;
  border-radius: 4px;
  padding: 4px 8px;
}

.news-date {
  font-size: 1.2rem;
  color: #888;
}

/* タイトル */
.news-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.7;
  color: #222;
}
.news-title a {
  color: inherit;
  text-decoration: none;
}
.news-title a:hover {
  text-decoration: underline;
}

/* ========== Recruit Section ========== */
.recruit-section {
  width: 100%;
  position: relative;
  line-height: 0;
}

.recruit-bg {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

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

.recruit-content {
  position: absolute;
  left: 8%;
  bottom: 25%;
  color: #fff;
  max-width: 480px;
}

.recruit-heading {
  font-size: 4.2rem;
  font-weight: 400;
  margin: 0 0 40px;
}

.recruit-desc {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 80px;
}

.recruit-btn {
  display: inline-block;
  padding: 20px 28px;
  width: 160px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.recruit-btn:hover {
  background: #fff;
  color: #111;
}

/* ===== Instagram ===== */
.instagram-section {
  padding: 80px 0;
}

.ig-container {
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr; /* 左見出し / 右フィード */
  gap: 40px;
  align-items: start;
}

/* 左：見出し */
.ig-aside h2 {
  margin: 0 0 12px;
  font-size: 2.6rem;
  font-weight: 600;
  color: #111;
}

.ig-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  color: #555;
  text-decoration: none;
}
.ig-follow:hover {
  color: #111;
}
.ig-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* 右：手動グリッド */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ig-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 1 / 1; /* 正方形サムネ */
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.ig-card:hover img {
  transform: scale(1.02);
  filter: brightness(0.96);
}

/* オーバーレイ（常時表示：画像の中央に白文字） */
.ig-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 1.35;

  /* 背景をうっすら暗くする */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
  padding: 8px;
}
.ig-overlay em {
  font-style: normal;
  font-size: 1.3rem;
  opacity: 0.9;
}
.ig-overlay b {
  font-weight: 700;
  font-size: 1.5rem;
}

/* —— ウィジェット埋め込み用（外部サービスのiframeをここに） —— */
.ig-widget-wrap {
  position: relative;
}
.ig-widget {
  width: 100%;
  height: 620px; /* 表示行数に合わせて調整 */
  border: 0;
  overflow: hidden;
  border-radius: 6px;
}

/* ===== Footer ===== */
.site-footer {
  padding: 80px 0 40px;
  background: #fff; /* 必要なら薄いグレーなどに変更可 */
  color: #222;
  border-top: 1px solid #dddddd;
}

.footer-top {
  max-width: 80%;
  margin: 0 auto 40px;
  padding: 0 20px;
  display: flex;
  column-gap: 200px;
  align-items: start;
}

/* 左：ブランド */
.footer-brand {
  display: grid;
  justify-items: center;
  row-gap: 12px;
}
.footer-logo {
  width: 240px;
  height: auto;
  display: block;
}
.footer-company {
  margin: 0;
  font-size: 1.4rem;
  color: #222;
}

/* 右：ナビ2列 */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 80px;
}
.footer-col h4 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
}
.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col li + li {
  margin-top: 8px;
}
.footer-col a {
  color: #555;
  text-decoration: none;
  font-size: 1.35rem;
}
.footer-col a:hover {
  color: #111;
  text-decoration: underline;
}

/* 下段 */
.footer-bottom {
  margin: 100px auto 40px;
  padding: 0 20px;
  text-align: center;
}
.footer-sns {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.footer-sns a img {
  display: block;
}
.footer-copy {
  color: #666;
  font-size: 1.2rem;
  display: block;
}

/* ===== Hamburger button ===== */
.hamburger {
  display: none; /* PCで非表示 */
  width: 40px;
  top: 12px;
  right: 12px;
  height: 40px;
  border: 0;
  background: transparent;
  padding: 8px;
  position: fixed;
  cursor: pointer;
  z-index: 1101; /* ドロワーより前面 */
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease,
    bottom 0.25s ease;
}
.hamburger span + span {
  margin-top: 6px;
}

/* 変形(X) */
.menu-open .hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Mobile drawer ===== */
.mobile-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100dvh;
  width: 78%;
  max-width: 340px;
  background: #fff;
  padding: 80px 24px 24px; /* 上はヘッダー分+余白 */
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.08);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 1100;
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  row-gap: 20px;
}
.mobile-nav-list a {
  color: #111;
  text-decoration: none;
  font-size: 1.6rem;
}
.mobile-nav-list a:hover {
  text-decoration: underline;
}

.mobile-sns {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}
.mobile-sns img {
  width: 28px;
  height: 28px;
  display: block;
}

/* オーバーレイ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* 開いた状態 */
.menu-open .mobile-nav {
  transform: translateX(0);
}
.menu-open .mobile-overlay {
  opacity: 1;
}

/* スクロールロック */
.menu-open {
  overflow: hidden;
}

/* ====== Breakpoints ====== */
@media (max-width: 960px) {
  /* スマホ：ハンバーガーを表示、PCナビを隠す */
  .hamburger {
    display: inline-block;
  }
  .main-nav {
    display: none;
  } /* 既存PC用ナビを非表示 */

  /* 固定ヘッダー上の見やすさ調整（任意） */
  .site-header .container {
    padding-right: 8px;
  }
}

/* お好みでさらに小さい幅での調整 */
@media (max-width: 600px) {
  .mobile-nav {
    width: 86%;
  }
}

/* アニメーション */
/* 初期状態：非表示＋下に少しずらす */
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示されたとき */
.fadeup.show {
  opacity: 1;
  transform: translateY(0);
}

/* hero専用：1文字ずつ表示 */
.hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.6s ease forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
