@charset "UTF-8";

/* =========================================
   Fonts
   ========================================= */
@font-face {
  font-family: "Shippori Mincho B1";
  src: url("assets/Shippori_Mincho_B1/ShipporiMinchoB1-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Shippori Mincho B1";
  src: url("assets/Shippori_Mincho_B1/ShipporiMinchoB1-SemiBold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Libre Franklin";
  src: url("assets/Libre_Franklin/static/LibreFranklin-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* =========================================
   Reset & Base
   ========================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: #333;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* 全体の固定背景 */
.global-fixed-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("assets/images/aaa.png");
  background-size: cover;
  background-position: center;
  z-index: -1; /* 全ての背面に */
  pointer-events: none;
}

/* 背景画像の上に白の透過レイヤーを重ねる */
.global-fixed-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6); /* 白の半透明 */
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  /* opacity: 0.7; */
}

.site-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* =========================================
   Fixed Header
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: blur(12px);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  width: 100%;
  max-width: none;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-symbol {
  width: 50px;
  height: auto;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.header-logo-text .jp-catch {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.header-logo-text .brand-name {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}
.header-nav li {
  position: relative; /* ドロップダウンの基準 */
}
.header-nav li a {
  font-size: 1.0rem;
  font-weight: 800;
  position: relative;
  text-decoration: none;
  color: #333; /* 基本色 */
  display: block; /* ヒットエリア確保 */
  padding: 5px 0;
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0px; /* 文字との隙間 */
  left: 0;
  width: 100%;
  height: 2px; /* 線の太さ */
  background-color: #e6bfb5; /* ピンクベージュ系の色 */
  opacity: 0;
  transition: opacity 0.3s;
}
.header-nav li a:hover {
  color: #333; /* 文字色は変えない */
}
.header-nav li a:hover::after {
  opacity: 1;
}

/* ドロップダウンメニュー */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: #fff;
  min-width: 240px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  flex-direction: column; /* 横並び解除 */
  gap: 0 !important; /* 親のgapを無効化 */
  padding: 10px 0 !important;
  border-radius: 4px;
}

.header-nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  padding: 12px 20px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  color: #444;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between; /* 文字と矢印を両端に */
  align-items: center;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a::after {
  content: ">"; /* 矢印 */
  position: static; /* 絶対配置解除 */
  width: auto;
  height: auto;
  background-color: transparent;
  opacity: 1;
  font-size: 1.2rem;
  color: #ccc;
  transform: none;
}

.dropdown-menu li a:hover {
  background-color: #fafafa;
  color: #000;
}
.dropdown-menu li a:hover::after {
  color: #333;
  opacity: 1; /* 親のホバーエフェクト（下線）が出ないように上書きが必要だが、::afterを矢印に使ってしまった */
}
/* ドロップダウンリンクの下線エフェクトを無効化 */
.dropdown-menu li a:hover::after {
  height: auto;
  width: auto;
  background: transparent;
}

.btn-contact-header {
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
  position: relative; /* 擬似要素用 */
  text-decoration: none; /* 下線を消す */
}

/* 既存の下線スタイル（header-nav li a 用）が適用されないようにする */
.btn-contact-header::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid #ae4444; /* ユーザー指定のピンク色 */
  border-radius: 30px; /* ボタンより少し大きく */
  opacity: 0;
  transition: opacity 0.3s;
  /* header-nav li a::after のスタイル（下線）を上書き */
  height: auto;
  width: auto;
  background-color: transparent;
}

.btn-contact-header:hover {
  background: #000; /* 黒のまま */
  opacity: 1; /* 透明度も変えない */
}

.btn-contact-header:hover::after {
  opacity: 1;
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background: #000;
}
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-text-vertical {
  position: absolute;
/*  top: 40%;
   right: 15%; */
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column; /* 縦書きモードでは column が横方向の並び（右→左）になります */
  gap: 1rem;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
}

.hero-line {
  font-size: 2.2rem; /* 4行になったため少しサイズ調整 */
  letter-spacing: 0.1em;
  line-height: 1.5;
  white-space: nowrap;
  text-shadow: 2px 2px 2px #505050;
}

/* Line-by-line Animation */
.reveal-line {
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-line.active {
  opacity: 1;
}

.hero-line:nth-child(1) {
  transition-delay: 0.3s;
}
.hero-line:nth-child(2) {
  transition-delay: 1s;
}
.hero-line:nth-child(3) {
  transition-delay: 1.7s;
}
.hero-line:nth-child(4) {
  transition-delay: 2.4s;
}

/* Sado Section Marquee Background */
.sado-marquee-bg {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding: 0;
  z-index: 5; /* 鳳凰(10)の下, 地図(0)の上 */
  pointer-events: none;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-text {
  font-family: "Franklin Gothic ATF", "Libre Franklin", sans-serif;
  font-size: 8.1rem;
  font-weight: 600;
  color: #bfa040; /* 金色系に変更（デザイン合わせ） */
  opacity: 0.15;
  padding-right: 5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   Blog Section
   ========================================= */
.blog-section {
  position: relative;
  padding: 120px 0 60px;
  background: #fffef6;
  overflow: hidden;
  min-height: 600px;
}

/* Side Decors */
.decor-layer {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1; /* 背面ベース */
  pointer-events: none;
}
.decor-left {
  left: 0;
  width: 45%;
}
.decor-right {
  right: 0;
  width: 45%;
}

.decor-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.decor-left .decor-tri {
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 250px;
}
.decor-right .decor-tri {
  position: absolute;
  top: 60px;
  right: 0px;
  width: 175px;
}

.blog-container {
  position: relative;
  z-index: 10; /* 背景装飾(1)よりも確実に上 */
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* Sidebar Title area */
.blog-sidebar {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-title-vt {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start; /* Reset to start to control with margins */
  justify-content: center;
  position: relative;
  left: 15px; /* Shift whole block right to align JP with button center */
}
.blog-title-vt .jp {
  writing-mode: vertical-rl;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.2;
  margin: 0;
}
.blog-title-vt .eng {
  writing-mode: vertical-rl;
  font-size: 1.1rem;
  color: #333;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin: 0;
  padding-top: 105px;
}

.blog-link-circle {
  margin: 10px 0;
}
.blog-link-circle .arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: 1px solid #c00;
  border-radius: 50%;
  color: #c00;
  font-size: 1.6rem;
  transition: all 0.3s;
}
.blog-link-circle .arrow-btn:hover {
  background: #c00;
  color: #fff;
}

.blog-more-vt {
  writing-mode: vertical-rl;
  font-size: 1rem;
  color: #c00;
  letter-spacing: 0.3em;
  font-family: "Shippori Mincho B1", serif;
}

/* List Area */
.blog-list-area {
  flex: 1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.blog-card {
  cursor: pointer;
}
.card-thumb {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
  z-index: 11;
}

.thumb-img-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .card-thumb img {
  transform: scale(1.15);
}

/* NEW Badge - Diamond Shape */
.badge-new {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background: #bfa040;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 45度回転させて、親コンテナからはみ出すように配置 */
  transform: translate(-5px, -15px) rotate(45deg);
  z-index: 20;
}
.badge-new::after {
  content: "NEW";
  /* 文字を戻す（水平にする） */
  transform: rotate(-45deg);
  font-size: 0.75rem;
  font-weight: bold;
}
/* 元の文字列を隠す */
.badge-new {
  font-size: 0;
}

.card-date-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 15px;
}

.date-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.date-icon {
  width: 40px;
  height: auto;
}

.date-text-box {
  background: linear-gradient(90deg, #d4b462, #9e7f3a);
  color: #fff;
  padding: 4px 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  flex: 1;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.05em;
}
.card-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* =========================================
   Sado Phoenix Section
   ========================================= */
.sado-phoenix-section {
  position: relative;
  padding: 120px 0;
  background: #fffef6;
  overflow: hidden;
}

/* 全体の背景画像 */
.sado-bg-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.sado-bg-main .bg-base {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
}

/* 日本列島マップ（abk.png の上に配置） */
.sado-bg-map {
  position: absolute;
  top: 57%;
  right: -77.5%;
  width: 210%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.sado-bg-map img {
  width: 100%;
  height: auto;
}

/* 佐渡指定の指示線とテキスト */
.sado-location-pointer {
  position: absolute;
  top: 51.5%; /* 地図上の佐渡の位置に合わせる（仮） */
  left: 48%; /* 地図上の佐渡の位置に合わせる（仮） */
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.pointer-line {
  width: 0.5px; /* より細く */
  height: 60px; /* 少し短く調整 */
  background-color: #666; /* 少し淡い色に */
  transform: rotate(35deg); /* 角度の微調整 */
  transform-origin: top;
}

.pointer-text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem; /* 少し小さく */
  color: #333;
  letter-spacing: 0.15em; /* 字間を広げる */
  white-space: nowrap;
  margin-top: -5px; /* 線との距離を詰める */
}

.sado-container {
  max-width: 100%;
  margin: 0;
  padding: 0 0 100px; /* 上部を高く設定 */
  display: flex;
  align-items: flex-start; /* 全体を上寄せに */
  position: relative;
  z-index: 10;
}

.sado-visual {
  width: 50vw; /* 画面の半分 */
  height: 600px; /* ある程度の高さを確保 */
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.phoenix-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 領域を埋める */
}

.sado-content {
  width: 50vw; /* 残りの半分 */
  padding: 0 60px 0 0;
  position: relative;
  min-height: 550px;
  display: flex;
  justify-content: left;
}

.sado-text-vt {
  position: relative;
  z-index: 5;
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  height: auto;
  margin-right: 40px;
}

.main-copy {
  font-size: 2.2rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #333;
  margin-left: 130px;
  margin-top: -40px; /* サブコピーより高く配置 */
}

.sub-copy {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  color: #555;
  margin-left: 60px;
}

.sado-watermark {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  font-size: 8.1rem;
  font-family: "Franklin Gothic ATF", "Libre Franklin", sans-serif;
  font-weight: bold;
  color: #bfa040;
  opacity: 0.3;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* =========================================
   PICKUP Section
   ========================================= */
.pickup-section {
  padding: 120px 0 200px;
  background: linear-gradient(
    to bottom,
    #fffef6 0%,
    #fffef6 50%,
    rgba(255, 255, 255, 0.8) 100%
  );
  position: relative;
  z-index: 10;
}
.pickup-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  gap: 20px; /* サイドバーとグリッドの間隔を広げる */
  align-items: flex-start;
}

/* Sidebar Styling */
.pickup-sidebar {
  width: auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.pickup-title-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pickup-title-area .char-icon {
  width: 80px;
  margin-bottom: 20px;
}
.pickup-title-area .char-icon img {
  width: 100%;
  height: auto;
}

.pickup-main-title {
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 20px;
}

.pickup-main-title .eng {
  font-size: 4.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1;
  color: #333;
}

.pickup-main-title .divider {
  width: 60px;
  height: 1px;
  background-color: #000000;
  margin: 20px 0;
}

.pickup-main-title .jp-popular {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  color: #bfa040;
  letter-spacing: 0.5em;
  font-weight: 500;
}

.pickup-description {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 2.2;
  letter-spacing: 0.2em;
  color: #555;
  margin-top: 180px; /* PICKUPの文字の開始位置に合わせる */
}

/* Grid Styling */
.pickup-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 80px;
}

.pickup-card {
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pickup-card:hover .card-image img {
  transform: scale(1.05);
}

.card-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/* Button Styling */
.btn-purchase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ae4444;
  background-color: #fff; /* 初期は白 */
  color: #ae4444;
  padding: 8px 15px;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  width: 170px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease; /* 枠線や文字色も滑らかに変化 */
}

.btn-purchase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ae4444; /* 画像にある生成り色 */
  z-index: -1;
  transition: width 0.4s ease;
}

.btn-purchase:hover::before,
.pickup-card:hover .btn-purchase::before {
  width: 100%;
}

.btn-purchase .chevron {
  font-size: 0.8rem;
  margin-right: 15px;
  font-weight: bold;
}

.btn-purchase:hover,
.pickup-card:hover .btn-purchase {
  border-color: #ae4444;
  color: #fff; /* ホバー時は白文字 */
  background-color: transparent; /* 背景を透明にして、背後の::beforeを表示 */
}

.btn-soldout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ae4444; /* 統一した赤色 */
  color: #fff;
  padding: 8px 15px;
  font-size: 1.1rem;
  width: 170px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: default;
}

/* =========================================
   Product Block (Miyabi, etc)
   ========================================= */
.product-block {
  position: relative;
  width: 100%;
  padding: 80px 0 120px; /* 上部の余白を少し調整 */
  overflow: visible; /* はみ出し許可 */
  margin-bottom: -5px;
}
.product-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product-bg-layer .bg-base {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.1;
}
.product-bg-layer .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  z-index: 2;
}

.product-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.product-block.reverse .product-content {
  flex-direction: row-reverse;
}

.product-visual {
  flex: 0 0 55%;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kanji-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%) scale(1.2);
  width: 60%;
  opacity: 0.9;
  z-index: 1;
}
.product-block.reverse .kanji-watermark {
  transform: translate(-70%, -50%) scale(1.2);
}
.product-photo {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 550px;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Miyabi Section Specific Styles */
.product-miyabi .product-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.miyabi-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  padding-left: 120px;
}

.miyabi-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.miyabi-logo img {
  width: 100%;
  height: auto;
}

.miyabi-main-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.2rem;
  color: #333;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.miyabi-sub-title {
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

.product-content-miyabi {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
  gap: 40px;
}

.miyabi-info-area {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.miyabi-text-v-group {
  display: flex;
  flex-direction: row-reverse; /* タイトルを左、説明文を右の順で縦並びにするための flex 設定 */
  gap: 30px;
  height: 400px;
}

.miyabi-v-title {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

.miyabi-v-desc {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  color: #444;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: justify;
}

.miyabi-btn-area {
  margin-left: 0;
}

.btn-miyabi-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-miyabi-more:hover {
  background-color: #333;
  color: #fff;
}

.miyabi-visual-area {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; /* 追加: 上端揃えを強制 */
}

.miyabi-kanji-over {
  position: absolute;
  top: -280px; /* 大胆にはみ出させる */
  right: -120px;
  width: 320px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5; /* 背景に馴染ませる */
}

.miyabi-kanji-over img {
  width: 100%;
  height: auto;
}

.miyabi-photo {
  width: 100%;
  position: relative;
  z-index: 5;
}

.miyabi-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Takumi Section Specific Styles */
/* Takumi Section Specific Styles */
.product-block.product-takumi {
  margin-top: 80px; /* 物理的な間隔を空ける */
  padding: 80px 0 120px; /* パディングを標準に戻す */
}

.product-takumi .product-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.takumi-header {
  display: flex;
  align-items: center;
  justify-content: center; /* 中央揃えでバランスを取る */
  gap: 20px;
  margin-bottom: 60px;
  padding-left: 0;
}

.takumi-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.takumi-logo img {
  width: 100%;
  height: auto;
}

.takumi-main-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.2rem;
  color: #333;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.takumi-sub-title {
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

.product-content-takumi {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
}

.takumi-visual-area {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-start; /* 左寄せ */
  align-items: flex-start; /* 追加 */
  /* padding-top 削除 */
  /* padding-left: 40px; 削除 */
}

.takumi-photo {
  width: 100%;
  max-width: 770px;
  position: relative;
  z-index: 5;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.takumi-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.takumi-info-area {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-right: 20px;
}

.takumi-text-v-group {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  height: 400px;
}

.takumi-v-title {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

.takumi-v-desc {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  color: #444;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: justify;
}

.takumi-btn-area {
  margin-left: 0;
  text-align: center; /* ボタン位置調整 */
}

.btn-takumi-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-takumi-more:hover {
  background-color: #333;
  color: #fff;
}

/* Watermark Positioning */
.takumi-kanji-over {
  position: absolute;
  top: -140px;
  left: -150px;
  width: 320px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.takumi-kanji-over img {
  width: 100%;
  height: auto;
}

/* Takara Section Specific Styles */
.product-block.product-takara {
  margin-top: 80px; /* 物理的な間隔 */
  padding: 80px 0 120px;
}

.product-takara .product-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.takara-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  padding-left: 150px;
}

.takara-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.takara-logo img {
  width: 100%;
  height: auto;
}

.takara-main-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.2rem;
  color: #333;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.takara-sub-title {
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

.product-content-takara {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
  gap: 40px;
}

.takara-info-area {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-left: 20px;
}

.takara-text-v-group {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  height: 400px;
}

.takara-v-title {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

.takara-v-desc {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  color: #444;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: justify;
}

.takara-btn-area {
  margin-left: 0;
  text-align: center;
}

.btn-takara-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-takara-more:hover {
  background-color: #333;
  color: #fff;
}

.takara-visual-area {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end; /* 画像は右寄せ */
  align-items: flex-start; /* 追加 */
  /* padding-top 削除 */
}

.takara-photo {
  width: 100%; /* 85% -> 100% */
  position: relative;
  z-index: 5;
}

.takara-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Watermark Positioning */
.takara-kanji-over {
  position: absolute;
  top: -275px; /* Miyabiと似た位置 */
  right: -220px;
  width: 380px; /* 少し大きめに調整 */
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.takara-kanji-over img {
  width: 100%;
  height: auto;
}

/* Shizuka Section Specific Styles */
.product-block.product-shizuka {
  margin-top: 80px; /* 物理的な間隔 */
  padding: 80px 0 120px;
}

.product-shizuka .product-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

.shizuka-header {
  display: flex;
  align-items: center;
  justify-content: center; /* 匠同様、中央寄り */
  gap: 20px;
  margin-bottom: 60px;
  padding-left: 0;
}

.shizuka-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shizuka-logo img {
  width: 100%;
  height: auto;
}

.shizuka-main-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.2rem;
  color: #333;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.shizuka-sub-title {
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.1em;
  margin-left: 10px;
}

.product-content-shizuka {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 40px;
}

.shizuka-visual-area {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-start; /* 画像は左寄せ */
  align-items: flex-start; /* 追加 */
  /* padding-top 削除 */
  /* padding-left: 40px; 削除 */
}

.shizuka-photo {
  width: 100%; /* 85% -> 100% */
  position: relative;
  z-index: 5;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

.shizuka-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.shizuka-info-area {
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-right: 20px;
}

.shizuka-text-v-group {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px;
  height: 400px;
}

.shizuka-v-title {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5;
}

.shizuka-v-desc {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  color: #444;
  line-height: 2.2;
  letter-spacing: 0.1em;
  text-align: justify;
}

.shizuka-btn-area {
  margin-left: 0;
  text-align: center;
}

.btn-shizuka-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 25px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-shizuka-more:hover {
  background-color: #333;
  color: #fff;
}

/* Watermark Positioning */
.shizuka-kanji-over {
  position: absolute;
  top: -125px;
  left: -115px;
  width: 320px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}

.shizuka-kanji-over img {
  width: 100%;
  height: auto;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #333;
  padding: 10px 40px;
  background: transparent;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.btn-product::after {
  content: "→";
  margin-left: 10px;
}
.btn-product:hover {
  background: #333;
  color: #fff;
}

/* =========================================
   News Section
   ========================================= */
.news-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background-color: #fff;
  overflow: hidden;
}

.news-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decor-l {
  position: absolute;
  bottom: 1050px;
  left: -300px;
  width: 800px;
  opacity: 1;
}

.decor-r {
  position: absolute;
  top: 1000px;
  right: -450px;
  width: 700px;
  opacity: 1;
}

.news-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 0 40px;
}

/* Sidebar (Left) */
.news-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
}

.news-title-vertical {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #333;
}

.news-view-all {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #ae4444;
  transition: opacity 0.3s;
}

.news-view-all:hover {
  opacity: 0.7;
}

.icon-circle-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #ae4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
}

.text-vertical {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* Main (Right) - List */
.news-main {
  flex: 1;
  padding-top: 10px;
}

.news-list-styled {
  list-style: none;
  width: 100%;
  border-top: 1px solid #ccc; /* 上線をリスト全体に */
}

.news-list-styled li {
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
}

.news-cat {
  display: inline-block;
  font-size: 0.75rem;
  color: #ae4444;
  border: 1px solid #ae4444;
  padding: 2px 8px;
  font-family: "Shippori Mincho B1", serif;
}

.news-link {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.news-link:hover {
  color: #ae4444;
}

/* =========================================
   Fuga Section
   ========================================= */
.fuga-section {
  position: relative;
  width: 100%;
  height: 1080px; /* 十分な高さを確保 */
  overflow: hidden;
}

.fuga-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
}

.fuga-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Effect */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 左上から青系、右下からオレンジ系の光、全体に少し白っぽさ */
  background: linear-gradient(
    135deg,
/* 元のハイライト
    rgba(100, 150, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 200, 150, 0.5) 100%
*/

    rgba(100, 150, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 200, 150, 0.2) 70%
  );
  mix-blend-mode: hard-light; /* 光の当たり方を調整 */
  pointer-events: none;
}

/* Fuga Container */
.fuga-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
}

/* Left: Title Area */
.fuga-left {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  height: 800px; /* 画像を大きくする要望に対応 */
  display: flex;
  flex-direction: row-reverse; /* 英語（左）画像（右） */
  gap: 30px;
  align-items: center;
}

.fuga-title-img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.fuga-text-eng {
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  letter-spacing: 0.8em;
  color: #fff;
/*  text-shadow: 2 2 2px rgba(0, 0, 0, 0.5); */
  text-shadow: 3px 3px 5px #505050;
}

/* Right: Message Area */
.fuga-right {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
  height: 760px;
  display: flex;
  align-items: center;
}

.fuga-message {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.15em;
  text-align: justify;
  height: 70%;
  text-shadow: 2px 2px 2px #505050;
}

.fuga-msg-title {
  font-size: 2.5rem; /* XDデザインに合わせて大きく */
  font-weight: bold;
  letter-spacing: 0.2em;
  display: inline-block;
  margin-left: 10px; /* 本文との間隔調整 */
  position: relative;
  top: -70px; /* 頭一つ飛び出させる */
}

/* =========================================
   Contentmo Section (Footer Replacement)
   ========================================= */
.contentmo-section {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  background-color: #f9f9f9;
}

.contentmo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contentmo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contentmo-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contentmo-box {
  border: 1px solid #ccc;
  padding: 10px;
  display: flex;
  align-items: center;
}

/* Left Label */
.box-left {
  border: 1px solid #ccc;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-label {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  color: #333;
}

/* Right Content */
.box-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center; /* 追加: コンテンツを中央揃え */
  text-align: center; /* 追加: テキストを中央揃え */
}

.recruit-text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem;
  color: #333;
  letter-spacing: 0.1em;
}

.contentmo-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-contact,
.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 50px; /* さらに大きく */
  border-radius: 50px;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.1rem; /* 文字も大きく */
  color: #fff;
  transition: all 0.3s;
  min-width: 300px; /* 横幅を大幅に拡大 */
  border: 1px solid transparent;
}

.btn-contact {
  background-color: #000000;
  border-color: #000000;
  gap: 10px;
}

.icon-mail {
  font-size: 1.2rem;
}

.btn-download {
  background-color: #9e3a3a; /* 少し落ち着いた赤 */
  border-color: #9e3a3a;
}

/* ホバー時の設定 */
.btn-contact:hover,
.btn-download:hover {
  background-color: #fff;
  color: #ae4444; /* 画像の赤色 */
  border-color: #ae4444;
  opacity: 1;
}

/* =========================================
   Site Footer
   ========================================= */
.site-footer {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.85); /* 画像の代わりに透過背景色を設定 */
  color: #fff;
  padding: 60px 0 0;
  overflow: hidden;
  font-family: "Shippori Mincho B1", serif;
}

.footer-container {
  max-width: 1200px; /* 大画面で端に寄るように拡大 */
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}

/* Left: Branding & Company */
.footer-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 65px;
  width: auto;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-catch {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #bbb;
  margin-bottom: 2px;
}

.footer-brand-name {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.1;
}

.footer-info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 75px;
}

.footer-company {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #fff;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #eee;
  letter-spacing: 0.02em;
} /* =========================================
   Scroll Animations
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Right: Navigation */
.footer-nav {
  flex: 0 1 auto;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding-top: 10px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-title {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}

.footer-nav-title:hover {
  color: #ae4444;
}

.footer-sub-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-sub-nav li a {
  display: inline-block; /* transform を有効にし、レイアウトを安定させる */
  color: #aaa;
  text-decoration: none;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: all 0.3s;
}

.footer-sub-nav li a:hover {
  color: #fff;
  transform: translateX(
    3px
  ); /* padding ではなく transform を使うことで、ガタつきを防止 */
}

/* Bottom: Copyright */
.footer-bottom {
  padding-top: 30px;
  text-align: center; /* 中央配置に変更 */
}

.copyright {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1300px) {
  .decor-layer {
    opacity: 0.3;
  }
}
@media (max-width: 1200px) {
  .decor-layer {
    display: none;
  }
}
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }
  .blog-sidebar {
    width: 100%;
    flex-direction: row;
    writing-mode: horizontal-tb;
    justify-content: space-between;
    align-items: center;
  }
  .blog-title-vt,
  .blog-more-vt {
    writing-mode: horizontal-tb;
  }
  .blog-title-vt {
    font-size: 1.5rem;
    height: auto;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .product-content {
    flex-direction: column !important;
  }
  .product-visual {
    width: 100%;
    height: auto;
  }
  .product-info {
    width: 100%;
    align-items: center;
  }
  .product-info-inner {
    flex-direction: column;
    height: auto;
  }
  .product-title.text-gold,
  .product-desc {
    writing-mode: horizontal-tb;
    height: auto;
  }
  .miyabi-photo img,
  .takumi-photo img,
  .takara-photo img,
  .shizuka-photo img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* =========================================
   Miyabi Dedicated Page Style
   ========================================= */
.miyabi-page .site-header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.miyabi-hero {
  background-color: #fffef6;
  padding: 130px 0 100px 80px;
  position: relative;
  overflow: hidden;
}

.miyabi-hero-container {
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between; /* 両端に分離 */
  align-items: flex-start;
  padding: 0;
}

.hero-left {
  flex: 1;
  position: relative; /* 子要素の基準にする */
  min-height: 783px; /* 画像の高さに合わせる */
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin-right: 100px;
  padding-left: 0;
  z-index: 2;
}

.hero-text-vertical-group {
  display: flex;
  flex-direction: row-reverse; /* タイトルを右、本文を左にする */
  gap: 30px;
  align-items: flex-start;
}

.hero-v-title {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
}

.hero-v-desc {
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.5rem;
  color: #333;
}

.hero-right {
  flex: 0 0 1124px; /* 画像幅をXD指定に固定 */
  height: 783px;
  position: relative;
}

.hero-decor-circle {
  position: absolute;
  top: 24%;
  left: -43%;
  transform: translateY(-50%);
  width: 900px;
  height: 900px;
  background-image: url("assets/images/showBg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: -2;
  pointer-events: none;
}

.hero-kanji-mask {
  position: absolute;

  /* SVGマスクを使用（完全に透過させるための確実な手法） */
  -webkit-mask: url(#kanji-mask);
  mask: url(#kanji-mask);

  /* モノクロ化とトーン調整 */
  filter: grayscale(100%) brightness(1.1) contrast(0.9);
  opacity: 0.6;
  z-index: -1;
}

/* 各ページ個別の背景設定（画像・サイズ・位置・フィット調整） */
.miyabi-page .hero-kanji-mask {
  background-image: url("assets/images/aaa.png");
  background-size: cover;
  background-position: center;
  top: 70%;
  left: -50px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
}

.takumi-page .hero-kanji-mask {
  background-image: url("assets/images/bijin.png");
  background-size: 230%;
  background-position: 55% 74%;
  top: 70%;
  left: -50px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
}

.takara-page .hero-kanji-mask {
  background-image: url("assets/images/hujin.png");
  background-size: 350%;
  background-position: 18% 48%;
  top: 70%;
  left: -50px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
}

.shizuka-page .hero-kanji-mask {
  background-image: url("assets/images/sizuka.png");
  background-size: 390%;
  background-position: 49% 41%;
  top: 70%;
  left: -50px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
}

.hero-main-visual {
  width: 1124px; /* XD指定数値 */
  max-width: 65vw; /* 画面幅に対して大きすぎないように */
  height: 783px; /* XD指定数値 */
  position: relative;
  z-index: 1;
  overflow: hidden; /* ズームでみ出した分をカット */
}

.hero-main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 指定サイズ内で型抜く */
  object-position: center top;
  transform: scale(1.15); /* ズームアップして見切れを作る */
  transform-origin: top center; /* 上部を基準に固定 */
  display: block;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

/* Concept Section */
.miyabi-concept {
  padding: 210px 0;
  text-align: center;
  position: relative;
  background-color: #fffef6; /* ヒーローと統一 */
}

.concept-decor-layer {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 1; /* 内容の背面に配置 */
  pointer-events: none;
}

/* 前面の模様（赤丸の上に重ねる） */
.concept-decor-layer::before {
  content: "";
  position: absolute;
  top: 105px;
  left: -23px;
  width: 150%;
  height: 100%;
  background-image: url("assets/images/showBg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25; /* 繊細に重ねる */
  z-index: 2; /* 赤丸より上 */
}

.concept-decor-layer::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -50px;
  width: 250px;
  height: 250px;
  background-image: url("assets/images/Turu1.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 3; /* 模様よりも上 */
}

.turu-bg {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  z-index: 1; /* 内容の背面に配置 */
  pointer-events: none;
}

.turu-bg::after {
  content: "";
  position: absolute;
  top: -300px;
  left: 0px;
  width: 450px;
  height: 450px;
  background-image: url("assets/images/Turu.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: 3; /* 模様よりも上 */
}

/* 背面の赤丸（半円） */
.decor-circle {
  position: absolute;
  top: 50%;
  right: -300px; /* 半分隠して半円にする */
  transform: translateY(-50%);
  width: 540px;
  height: 540px;
  background-color: #ae4444;
  border-radius: 50%;
  z-index: 1; /* 模様より下 */
  opacity: 1;
}

.concept-content {
  position: relative;
  z-index: 10;
}

.concept-video-mask-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.concept-masked-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* SVGマスクの適用 */
  -webkit-mask: url(#conceptTextMask);
  mask: url(#conceptTextMask);
}

.concept-main-copy {
  position: relative;
  z-index: 2;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.22rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-align: center;
  white-space: nowrap;

  /* 透明な中身に薄い縁取り */
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.5);
}

/* マスク用テキストの基準サイズ。本体と完全に一致させる */
.mask-text-shape {
  font-size: 2.22rem;
}

.concept-sub-copy {
  font-size: 1.5rem;
  color: #353535;
  letter-spacing: 0.2em;
  margin-top: -80px;
}

/* 静ページ専用：文字数が多いためコンテナ幅を拡張 */
.shizuka-page .concept-video-mask-wrapper {
  max-width: 100%;
  padding: 0 40px;
}

.shizuka-page .concept-main-copy,
.shizuka-page .mask-text-shape {
  font-size: 2.22rem;
}

.shizuka-page .concept-sub-copy {
  margin-top: -80px;
}

/* Gallery Section */
.miyabi-gallery {
  padding: 100px 0 150px;
  background-color: #fcfaf5;
}

.gallery-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  padding: 0 40px;
}

.gallery-sidebar {
  flex: 0 0 auto;
  writing-mode: vertical-rl; /* 右から左への縦書き */
  text-orientation: mixed;
  display: flex !important;
  flex-direction: column !important; /* カラムを右から左へ並べる */
  align-items: flex-start; /* すべてのラインを上端揃えに */
  height: 600px; /* デザインの高さを確保 */
}

/* 右列：ロゴとタイトルを垂直に完璧に一本化 */
.sidebar-main-col {
  display: flex !important;
  flex-direction: row !important; /* 上から下への流れ */
  align-items: center !important; /* 水平方向（厚み方向）の中央揃え */
  justify-content: flex-start;
  margin-left: 20px;
  margin-right: 25px;
  width: auto;
}

.sidebar-logo {
  display: flex;
  justify-content: center;
}

.sidebar-logo .title-logo {
  width: 70px;
  height: auto;
}

.title-text-main {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.22rem;
  color: #333;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

/* 中列：サブタイトルを下部に配置 */
.title-text-sub {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-end !important; /* 下端に配置 */
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.5rem;
  color: #333;
  font-weight: 400;
  white-space: nowrap;
  margin-top: 20px;
  height: 100%;
}

/* 左列：メッセージを上から配置 */
.gallery-sidebar-msg {
  display: flex !important;
  flex-direction: row !important;
  justify-content: flex-start !important;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  color: #333;
  margin: 0;
  margin-top: 90px;
}

.gallery-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 60px;
}

/* Nav Banners */
.miyabi-nav-banners {
}

.nav-banner-container {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
}

.nav-banner-item {
  flex: 1;
  position: relative;
  height: 300px;
  overflow: hidden;
  display: block;
}

.nav-banner-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nav-banner-item:hover img {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.4s ease;
}

.nav-banner-item:hover .banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.banner-title {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.5rem;
  border: 1px solid #fff;
  padding: 10px 30px;
  letter-spacing: 0.1em;
}

/* Responsive Miyabi Page */
@media (max-width: 1024px) {
  .miyabi-hero-container {
    flex-direction: column;
  }
  .hero-left {
    flex: none;
    width: 100%;
  }
  .hero-text-vertical-group {
    writing-mode: horizontal-tb;
    flex-direction: column;
  }
  .hero-v-title,
  .hero-v-desc {
    writing-mode: horizontal-tb;
    width: 100%;
  }
  .gallery-container {
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .miyabi-hero {
    background-color: #fffef6;
    padding-top: 100px;
  }
  .concept-main-copy {
    font-size: 1.4rem;
    padding: 0 20px;
  }
  .nav-banner-container {
    flex-direction: column;
  }
}

/* =========================================
   Product Detail Modal
   ========================================= */

/* モーダルオーバーレイ（背景を暗くする半透明レイヤー） */
.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* モーダルコンテナ（画面中央に表示） */
.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 70%;
  max-width: 1200px;
  max-height: 1000px;
  min-height: 800px;
  background-image: url("assets/images/shopBG.jpg");
  background-size: cover;
  background-position: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 0;
  display: flex;
  flex-direction: column;
}

.product-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* モーダル内部コンテンツ */
.modal-content {
  flex-grow: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* ヘッダーセクション（上部・金色背景エリア） */
.modal-header-section {
  width: 100%;
  padding: 35px 40px 30px;
  background: transparent;
}

.modal-header-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

/* 製品画像エリア（中央） */
.modal-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 40px 30px;
  z-index: 2;
  position: relative;
}

.modal-product-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 製品詳細エリア（下部・白背景） */
.modal-details-section {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 40px 150px;
  border-radius: 0;
  z-index: 2;
  position: relative;
}

/* 筆文字装飾（左下） */
.modal-details-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 275px;
  height: 500px;
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

/* 雅ページの筆文字 */
.miyabi-page .modal-details-section::before {
  background-image: url("assets/images/afp.png");
}

/* 宝ページの筆文字 */
.takara-page .modal-details-section::before {
  background-image: url("assets/images/agh.png");
}

/* 匠ページの筆文字 */
.takumi-page .modal-details-section::before {
  background-image: url("assets/images/agx.png");
}

/* 静ページの筆文字 */
.shizuka-page .modal-details-section::before {
  background-image: url("assets/images/ahp.png");
}

/* 商品名 */
.modal-product-name {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
  z-index: 2;
  position: relative;
}

.modal-subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: #666;
  margin: 0;
  z-index: 2;
  position: relative;
}

.modal-description {
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #333;
  margin: 10px 0;
  z-index: 2;
  position: relative;
}

/* 料金・購入ボタンラッパー（横並び） */
.modal-price-purchase-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 15px;
  z-index: 2;
  position: relative;
}

.modal-price-info {
  flex: 1;
}

.modal-price {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ae4444;
  margin: 0 0 5px;
}

.modal-price-note {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
}

.modal-purchase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center; /* 中央寄せ */
  gap: 15px;
  background-color: #ae4444; /* 通常: 赤背景 */
  color: #fff; /* 通常: 白文字 */
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 60px 12px 40px; /* 右側に余裕を持たせる（アイコン用） */
  border: 1px solid #ae4444; /* 赤枠 */
  border-radius: 0 !important; /* 四角（強制） */
  cursor: pointer;
  transition: color 0.4s ease;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 240px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 白い円（通常時はアイコンの背景、ホバー時は全体背景） */
.modal-purchase-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px; /* アイコンの位置 */
  transform: translateY(-50%) scale(1); /* 中心基準で配置 */
  width: 30px; /* アイコンのサイズ */
  height: 30px;
  background-color: #fff; /* 白い円 */
  border-radius: 50%;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* なめらかな拡大 */
  z-index: -1; /* テキストの背面に配置 */
}

/* 三角アイコン（再生マーク＆矢印） */
.modal-purchase-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px !important; /* 三角の位置調整 */
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px; /* 三角のサイズ */
  border-color: transparent transparent transparent #ae4444; /* 赤い三角 */
  transition: all 0.3s ease;
  z-index: 2; /* テキストより前面には出ない方がいいが、背景より上 */
  pointer-events: none;
}

.modal-purchase-btn:hover {
  color: #ae4444; /* ホバー時: 赤文字 */
  background-color: transparent; /* 背景色は擬似要素で表現 */
}

.modal-purchase-btn:hover::before {
  /* 円を拡大して背景全体を覆う */
  transform: translateY(-50%) scale(30);
}

.modal-purchase-btn:hover::after {
  /* 三角の位置調整（少し右へ） */
  right: 15px !important;
}

/* 閉じるボタン */
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #333;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  z-index: 100;
  font-weight: 300;
}

.modal-close:hover {
  transform: scale(1.2);
}

/* 画像クリックでモーダルを開けるようにする */
.card-image[data-modal] {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.card-image[data-modal]:hover {
  transform: scale(1.02);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .product-modal {
    width: 95%;
    max-height: 95vh;
  }

  .modal-content {
    flex-direction: column;
    padding: 60px 30px 40px;
    gap: 30px;
  }

  .modal-content::before {
    width: 250px;
    height: 250px;
    opacity: 0.2;
  }

  .modal-image-section {
    flex: 0 0 auto;
    width: 100%;
    padding: 0 30px 20px;
  }

  .modal-details-section {
    padding: 30px;
  }

  .modal-details-section::before {
    width: 200px;
    height: 200px;
    opacity: 0.1;
  }

  .modal-title {
    font-size: 1.5rem;
    padding: 30px 30px 20px;
  }

  .modal-price {
    font-size: 1.4rem;
  }

  .modal-close {
    top: 15px;
    right: 15px;
    font-size: 2rem;
  }
}

/* =========================================
   Privacy Policy Page
   ========================================= */
.privacy-page {
  background-color: #fafafa;
}

.privacy-section {
  padding: 160px 20px 100px;
  background-image: url("assets/images/shopBG.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* 背景を薄くするためのオーバーレイ */
.privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92); /* 少し濃いめに */
  z-index: 1;
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.privacy-header {
  text-align: left;
  margin-bottom: 80px;
}

.privacy-title-eng {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.05em;
}

.privacy-title-jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.privacy-lead {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
  text-align: left;
  max-width: 800px;
}

.privacy-content {
  position: relative;
  padding-top: 60px;
  border-top: 1px solid #ddd;
}

/* プライバシーポリシー背景装飾 */
.privacy-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.privacy-decor-l {
  position: absolute;
  bottom: 1050px;
  left: -450px;
  width: 800px;
  opacity: 1;
}

.privacy-decor-r {
  position: absolute;
  top: 1000px;
  right: -450px;
  width: 700px;
  opacity: 1;
}

.privacy-list-item {
  margin-bottom: 60px;
}

.item-title {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
}

.item-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin-right: 15px;
  color: #333;
  font-weight: 600;
}

.item-text {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  line-height: 2.2;
  color: #444;
  margin-left: 2.5em; /* タイトルのインデントに合わせる */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .privacy-section {
    padding: 120px 20px 80px;
  }
  .privacy-header {
    margin-bottom: 50px;
  }
  .privacy-title-jp {
    font-size: 1.8rem;
  }
  .privacy-lead {
    font-size: 0.9rem;
    text-align: left;
  }
  .item-title {
    font-size: 1.1rem;
  }
  .item-text {
    margin-left: 0;
    font-size: 0.9rem;
  }
  .privacy-decor-crane {
    width: 200px;
    right: -20px;
    top: 50px;
  }
}

/* =========================================
   Company Page
   ========================================= */
.company-page {
  background-color: #fafafa;
}

.company-hero {
  padding: 160px 20px 0;
  background-image: url("assets/images/shopBG.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.company-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.company-hero-content {
  position: relative;
  z-index: 10;
}

.company-title-eng {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-align: left;
  display: inline-block;
  margin-right: 20px;
}

.company-title-jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-align: left;
  display: inline-block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* メインコンテンツ */
.company-main-content {
  background-color: #fffef6; /* Sadoセクションと同じ薄い黄色 */
  padding: 0 20px 120px;
  position: relative;
}

.company-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.company-decor-l {
  position: absolute;
  bottom: 1050px;
  left: -300px;
  width: 800px;
  opacity: 1;
}

.company-decor-r {
  position: absolute;
  top: 565px;
  right: -200px;
  width: 700px;
  opacity: 1;
}

.company-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 80px 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
}

.company-section-block {
  margin-bottom: 80px;
}
.company-section-block:last-child {
  margin-bottom: 0;
}

.company-section-title {
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.company-section-title .section-icon {
  width: 30px;
  height: auto;
  margin-right: 15px;
}

.greeting-text p {
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.95rem;
  line-height: 2.2;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
}

.greeting-signature {
  margin-top: 40px;
  text-align: right;
  font-family: "Shippori Mincho B1", serif;
}
.greeting-signature .company-name {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}
.greeting-signature .president-name {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

/* 会社概要リスト */
.company-info-container {
  font-family: "Shippori Mincho B1", serif;
  color: #333;
}

.company-info-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px 30px;
  margin-bottom: 30px;
}

.company-info-list dt {
  font-weight: 500;
  color: #555;
  padding-top: 3px; /* 少し下げる */
}

.company-info-list dd {
  margin: 0;
  line-height: 1.8;
}

.company-map {
  margin: 30px 0 40px;
  width: 100%;
}
.company-map iframe {
  filter: grayscale(20%) opacity(0.9); /* 地図の色味を少し抑える */
}

.mt-4 {
  margin-top: 2rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .company-hero {
    padding: 120px 20px 60px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .company-card {
    padding: 40px 20px;
  }

  .company-info-list {
    grid-template-columns: 1fr; /* 縦並び */
    gap: 5px;
  }

  .company-info-list dt {
    margin-top: 15px;
    padding-top: 0;
    font-size: 0.9rem;
    color: #888;
  }

  .company-info-list dd {
    margin-bottom: 5px;
  }

  .company-card::after {
    width: 150px;
    height: 150px;
    top: 20px;
    right: -20px;
  }
}

/* =========================================
   Contact Page
   ========================================= */
.contact-page {
  background-color: #fdfdfd;
}

.contact-hero {
  padding: 160px 20px 120px;
  position: relative;
  background-image: url("assets/images/shopBG.jpg");
  background-size: cover;
  background-position: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

/* 装飾 */
.contact-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.contact-decor-l {
  position: absolute;
  bottom: 1050px;
  left: -450px;
  width: 800px;
  opacity: 1;
}

.contact-decor-r {
  position: absolute;
  top: 1000px;
  right: -450px;
  width: 700px;
  opacity: 1;
}

/* コンテナ */
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ヘッダー */
.contact-header {
  text-align: center; /* 中央揃えに変更されている */
  margin-bottom: 60px;
}

.contact-title-eng {
  font-family: "Cormorant Garamond", serif;
  text-align: left;
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 0.05em;
  display: block;
}

.contact-title-jp {
  font-family: "Shippori Mincho B1", serif;
  text-align: left;
  font-size: 2.2rem;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: block;
}

.contact-lead {
  font-size: 0.9rem;
  text-align: left;
  color: #333;
  font-family: "Shippori Mincho B1", serif;
}

/* ステップインジケーター */
.contact-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  font-family: "Shippori Mincho B1", serif;
  font-size: 0.9rem;
}

.step-item {
  padding: 5px 20px;
  background-color: #ddd;
  color: #fff;
  border-radius: 2px;
  min-width: 80px;
  text-align: center;
}

.step-item.active {
  background-color: #333; /* 黒背景 */
}

.step-arrow {
  margin: 0 10px;
  color: #ccc;
  font-size: 0.8rem;
}

/* フォーム */
.contact-form {
  width: 100%;
  font-family: "Shippori Mincho B1", serif;
}

.form-group {
  display: grid;
  grid-template-columns: 260px 1fr; /* 幅を広げて改行を防ぐ */
  gap: 20px;
  margin-bottom: 30px;
  align-items: center; /* 上揃えから中央揃えに変更（画像に合わせる場合、topでも良いがinputと揃えるならcenterかpadding調整） */
}

.form-label {
  font-weight: 500;
  color: #333;
  /* padding-top: 10px; flexにするので不要か、align-itemsで調整 */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px; /* バッジと入力欄の隙間調整 */
}

.badge-required {
  display: inline-block;
  background-color: #fff; /* 白背景 */
  color: #bf0000; /* 赤文字 */
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 0; /* 四角く */
  margin-left: 8px;
  border: 1px solid #bf0000; /* 赤縁 */
  font-family: "Shippori Mincho B1", serif;
}
/* 必須でないバッジが必要なら追加 */

.form-input input,
.form-input textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
  background-color: #fff;
}

.form-input input:focus,
.form-input textarea:focus {
  border-color: #aaa;
  outline: none;
}

/* プライバシーポリシー同意 */
.privacy-agreement {
  margin: 60px 0;
  display: flex;
  justify-content: center;
}

.agreement-box {
  border: 1px solid #eee;
  padding: 30px;
  background-color: #fff;
  width: 100%;
  max-width: 700px;
}

.agreement-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.agreement-label input {
  margin-top: 5px;
  margin-right: 15px;
  transform: scale(1.5); /* チェックボックスを大きく */
}

.agreement-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
}

.agreement-text a {
  color: #c49a6c;
  text-decoration: underline;
}

/* 送信ボタン */
.form-actions {
  text-align: center;
  margin-bottom: 60px;
}

.btn-submit {
  display: inline-block;
  padding: 15px 80px;
  background: linear-gradient(
    to right,
    #eaddc5,
    #d4b886
  ); /* ゴールドグラデーション */
  color: #333;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1rem;
  font-weight: bold;
  border: 1px solid #c49a6c;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 20px 60px;
  }

  .form-group {
    grid-template-columns: 1fr; /* 縦並び */
    gap: 10px;
  }

  .form-label {
    padding-top: 0;
  }

  .contact-decor-crane {
    width: 200px;
    top: 50px;
    right: -20px;
  }
}

/* フローティング購入ボタン */
.floating-purchase-btn {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 2147483647; /* 最前面 */
  display: flex !important; /* 強制表示 */
  align-items: center;
  justify-content: center;
  background-color: #bf0000; /* 赤 */
  color: #fff;
  padding: 24px 14px;
  font-family: "Shippori Mincho B1", serif;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  transform: translateX(120%); /* 初期は画面外 */
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    padding 0.3s ease;
  opacity: 0;
  pointer-events: auto;
}

.floating-purchase-btn.visible {
  transform: translateX(0);
  opacity: 1;
}

.floating-purchase-btn:hover {
  background-color: #a00000;
  color: #fff;
  padding-left: 27px;
  padding-right: 27px;
}
