/* ========================================
 リセット & 基本設定
======================================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Noto Sans JP', sans-serif;
line-height: 1.8;
color: #333;
background-color: #ffffff;
overflow-x: hidden;
}

a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}

img {
max-width: 100%;
height: auto;
display: block;
}

ul {
list-style: none;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* ========================================
 ヘッダー（全ページ統一の基準スタイル）
======================================== */
.header {
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
padding: 15px 0;
border-bottom: 1px solid rgba(169,210,219,0.2);
}

.header::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
background:
  radial-gradient(circle at 20% 50%, rgba(169,210,219,0.1) 0%, transparent 50%),
  radial-gradient(circle at 80% 50%, rgba(209,99,65,0.05) 0%, transparent 50%);
pointer-events: none;
}

.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
z-index: 1;
gap: 12px;
}

.header-left {
display: flex;
align-items: center;
gap: 15px;
min-width: 0;
flex: 1;
}

.company-logo {
width: 80px; height: 80px;
object-fit: contain;
flex-shrink: 0;
transition: transform 0.3s ease;
}

.company-logo:hover { transform: scale(1.05); }

.logo {
font-size: clamp(0.8rem, 1.4vw, 1.2rem);
font-weight: 700;
position: relative;
word-break: keep-all;
overflow-wrap: break-word;
min-width: 0;
}

.logo a { color: #333; }

.logo-underline {
display: block;
width: 0; height: 2px;
background-color: #A9D2DB;
transition: width 0.3s ease;
}

.logo:hover .logo-underline { width: 100%; }

.header-right {
display: flex;
align-items: center;
gap: 20px;
flex-shrink: 0;
}

.nav ul {
display: flex;
gap: clamp(12px, 2vw, 30px);
align-items: center;
}

.nav a {
font-weight: 600;
font-size: clamp(0.8rem, 1.1vw, 0.95rem);
color: #333;
position: relative;
padding: 5px 0;
white-space: nowrap;
}

.nav a::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 0; height: 2px;
background-color: #D16341;
transition: width 0.3s ease;
}

.nav a:hover::after { width: 100%; }

/* ── 現在のページを示すアクティブ下線（PC） ── */
.nav a.active::after { width: 100%; }

.group-logo-link { flex-shrink: 0; }

.group-logo {
width: 80px; height: 80px;
object-fit: contain;
transition: opacity 0.3s ease, transform 0.3s ease;
}

.group-logo:hover { opacity: 0.7; transform: scale(1.05); }

/* ── ハンバーガーボタン ── */
.menu-toggle { display: none; }

.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 5px;
flex-shrink: 0;
position: relative;
z-index: 1002;
}

.hamburger span {
width: 25px; height: 2px;
background-color: #333;
display: block;
transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── メニューオープン時：3本線 → × に変化 ── */
.menu-toggle:checked ~ .hamburger span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.menu-toggle:checked ~ .hamburger span:nth-child(2) {
opacity: 0;
transform: scaleX(0);
}
.menu-toggle:checked ~ .hamburger span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

/* ── 背景オーバーレイ（開時に暗くしてタップで閉じる） ── */
.nav-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
z-index: 999;
cursor: pointer;
}

/* ========================================
 レスポンシブ：ヘッダー
======================================== */
@media (max-width: 968px) {
.header-inner { gap: 10px; }
.nav ul { gap: 20px; }
.company-logo, .group-logo { width: 70px; height: 70px; }
}

@media (max-width: 768px) {
.header-left { gap: 10px; max-width: calc(100% - 140px); }
.header-right { gap: 10px; }

/* ナビゲーションパネル */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
  overflow-y: auto;
  z-index: 1001;
}

/* メニューパネル上部ラベル */
.nav::before {
  content: 'MENU';
  display: block;
  padding: 24px 24px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #A9D2DB;
  border-bottom: 1px solid rgba(169,210,219,0.25);
}

.nav ul {
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  padding: 12px 0;
}

.nav ul li {
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav ul li a {
  display: block;
  padding: 16px 24px;
  font-size: 0.95rem;
  color: #2b2b2b;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  position: relative;
}

/* 左端アクセントバー */
.nav ul li a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 0;
  background: #A9D2DB;
  transition: height 0.2s ease;
  border-radius: 0 2px 2px 0;
}

/* スマホでは下線スタイルを非表示 */
.nav ul li a::after { display: none; }

.nav ul li a:hover {
  background: rgba(169,210,219,0.08);
  color: #2e4a52;
  padding-left: 30px;
}
.nav ul li a:hover::before { height: 60%; }

/* アクティブリンクのスマホ表示 */
.nav ul li a.active {
  color: #D16341;
  font-weight: 700;
  background: rgba(209,99,65,0.04);
  padding-left: 30px;
}
.nav ul li a.active::before {
  height: 60%;
  background: #D16341;
}

/* チェックON → ナビ表示 */
.menu-toggle:checked ~ .nav { right: 0; }

/* チェックON → オーバーレイ表示 */
.menu-toggle:checked ~ .nav-overlay { display: block; }

.hamburger { display: flex; }
.company-logo, .group-logo { width: 65px; height: 65px; }
}

@media (max-width: 480px) {
.header-left { gap: 8px; max-width: calc(100% - 130px); }
.header-right { gap: 8px; }
.company-logo, .group-logo { width: 55px; height: 55px; }
}

/* ========================================
 セクション共通
======================================== */
.section-header {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 50px;
}

.section-line {
width: 100px; height: 3px;
background: linear-gradient(90deg, transparent, #A9D2DB, transparent);
}

.section-title {
font-size: clamp(1.5rem, 4vw, 2rem);
font-weight: 700;
color: #333;
text-align: center;
white-space: nowrap;
}

/* ========================================
 ページヒーロー
======================================== */
.page-hero {
position: relative;
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #4a90a4 0%, #A9D2DB 50%, #7fb8c9 100%);
overflow: hidden;
padding: 80px 20px;
}

.page-hero .hero-decorations {
position: absolute;
width: 100%; height: 100%;
top: 0; left: 0;
pointer-events: none;
overflow: hidden;
}

.page-hero .hero-line { position: absolute; height: 3px; }

.page-hero .hero-line-1 {
width: 60%; top: 20%; left: -10%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3) 20%, rgba(255,255,255,0.3) 80%, transparent);
transform: rotate(-15deg);
}

.page-hero .hero-line-2 {
width: 50%; bottom: 25%; right: -10%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0.2) 80%, transparent);
transform: rotate(15deg);
}

.page-hero .hero-circle {
position: absolute;
border: 2px solid;
border-radius: 50%;
opacity: 0.4;
}

.page-hero .hero-circle-1 {
width: 200px; height: 200px;
top: -80px; right: 10%;
border-color: rgba(255,255,255,0.3);
}

.page-hero .hero-circle-2 {
width: 150px; height: 150px;
bottom: -50px; left: 5%;
border-color: rgba(255,255,255,0.25);
}

.page-title {
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 700; color: #fff;
text-align: center;
position: relative; z-index: 2;
margin-bottom: 10px;
text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-subtitle {
font-family: 'Poppins', sans-serif;
font-size: clamp(1rem, 2vw, 1.2rem);
font-weight: 600;
color: rgba(255,255,255,0.9);
text-align: center;
position: relative; z-index: 2;
letter-spacing: 0.1em;
}

/* ========================================
 サービス紹介イントロ
======================================== */
.services-intro {
padding: 80px 20px 50px;
}

.intro-content {
max-width: 900px;
margin: 0 auto;
text-align: center;
}

.intro-content h2 {
font-size: clamp(1.4rem, 3vw, 1.9rem);
color: #333;
margin-bottom: 25px;
line-height: 1.6;
}

.intro-content p {
font-size: 1rem;
color: #555;
line-height: 2;
}

/* ========================================
 主な業務内容 ― ブロックレイアウト
======================================== */
.services-list {
padding-bottom: 80px;
}

.service-blocks {
display: flex;
flex-direction: column;
}

.service-block {
padding: 80px 0;
background: #fff;
}

.service-block--alt {
background: linear-gradient(135deg, #f4fafc 0%, #eef6f8 100%);
}

.service-block-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
}

.service-block--alt .service-block-inner {
direction: rtl;
}

.service-block--alt .service-block-inner > * {
direction: ltr;
}

/* ========================================
 画像エリア
======================================== */
.service-block-image {
position: relative;
}

.service-img-frame {
position: relative;
border-radius: 18px;
overflow: hidden;
aspect-ratio: 4 / 3;
box-shadow:
  12px 16px 0 0 rgba(169,210,219,0.35),
  0 10px 40px rgba(0,0,0,0.12);
transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.service-block:hover .service-img-frame {
box-shadow:
  16px 20px 0 0 rgba(169,210,219,0.45),
  0 20px 55px rgba(0,0,0,0.15);
transform: translate(-3px, -3px);
}

.service-img-frame img {
width: 100%; height: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease;
}

.service-block:hover .service-img-frame img {
transform: scale(1.05);
}

.service-img-overlay {
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(74,144,164,0.18) 0%, transparent 60%);
pointer-events: none;
}

.service-img-deco {
display: flex;
align-items: center;
gap: 10px;
margin-top: 16px;
padding-left: 4px;
}

.service-img-deco::before {
content: '';
display: block;
width: 30px; height: 2px;
background: linear-gradient(90deg, #A9D2DB, #7fb8c9);
flex-shrink: 0;
}

.service-img-label {
font-family: 'Poppins', sans-serif;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #9cc8d4;
}

/* ========================================
 テキストエリア
======================================== */
.service-block-content {
display: flex;
flex-direction: column;
gap: 24px;
}

.service-block-header {
display: flex;
flex-direction: column;
gap: 6px;
}

.service-label {
font-family: 'Poppins', sans-serif;
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.16em;
text-transform: uppercase;
color: #A9D2DB;
}

.service-block-header h3 {
font-size: clamp(1.7rem, 3vw, 2.3rem);
font-weight: 700;
color: #1a1a2e;
line-height: 1.2;
display: flex;
align-items: baseline;
gap: 12px;
}

.service-block-header h3 em {
font-family: 'Poppins', sans-serif;
font-size: clamp(2.2rem, 4vw, 3rem);
font-weight: 700;
font-style: normal;
color: transparent;
-webkit-text-stroke: 2px #A9D2DB;
letter-spacing: -0.02em;
line-height: 1;
flex-shrink: 0;
}

.service-accent-line {
width: 50px; height: 4px;
background: linear-gradient(90deg, #A9D2DB, #7fb8c9);
border-radius: 2px;
margin-top: 6px;
}

.service-block-content > p {
font-size: 0.95rem;
color: #555;
line-height: 2;
}

.service-tags {
display: flex;
flex-wrap: wrap;
gap: 9px;
padding: 0;
list-style: none;
}

.service-tags li {
font-size: 0.8rem;
color: #4a90a4;
background: rgba(169,210,219,0.12);
border: 1px solid rgba(169,210,219,0.45);
padding: 5px 14px;
border-radius: 20px;
white-space: nowrap;
}

/* ========================================
 製造工程ギャラリー
======================================== */
.process-gallery {
padding-top: 28px;
border-top: 2px dashed #d8eef2;
}

.process-title {
font-size: 0.88rem;
font-weight: 700;
color: #555;
letter-spacing: 0.08em;
margin-bottom: 14px;
display: flex;
align-items: center;
gap: 8px;
}

.process-title::before {
content: '';
display: inline-block;
width: 4px; height: 1em;
background: linear-gradient(180deg, #A9D2DB, #7fb8c9);
border-radius: 2px;
}

.process-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 10px;
}

.process-item {
position: relative;
border-radius: 8px;
overflow: hidden;
aspect-ratio: 4 / 3;
background: #e8f4f7;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
cursor: pointer;
}

.process-item img {
width: 100%; height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease, filter 0.4s ease;
}

.process-item:hover img {
transform: scale(1.07);
filter: brightness(0.72);
}

.process-label {
position: absolute;
bottom: 0; left: 0; right: 0;
background: linear-gradient(to top, rgba(74,144,164,0.85) 0%, transparent 100%);
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.1em;
padding: 20px 8px 7px;
text-align: center;
transition: opacity 0.3s ease;
}

.process-zoom-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.35s ease;
pointer-events: none;
}

.process-zoom-overlay svg {
width: 36px; height: 36px;
color: #fff;
filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.process-item:hover .process-zoom-overlay { opacity: 1; }

/* ========================================
 レスポンシブ（業務内容）
======================================== */
@media (max-width: 968px) {
.service-block-inner,
.service-block--alt .service-block-inner {
  grid-template-columns: 1fr;
  direction: ltr;
  gap: 36px;
}
.service-img-frame {
  aspect-ratio: 16 / 9;
  box-shadow:
    8px 10px 0 0 rgba(169,210,219,0.3),
    0 8px 30px rgba(0,0,0,0.1);
}
.service-block-header h3 { font-size: 1.6rem; }
.service-block-header h3 em { font-size: 2rem; }
}

@media (max-width: 480px) {
.service-block { padding: 50px 0; }
.process-grid { grid-template-columns: repeat(2, 1fr); }
.service-block-header h3 { font-size: 1.4rem; gap: 8px; }
.service-block-header h3 em { font-size: 1.7rem; }
}

/* ========================================
 ご依頼の流れ
======================================== */
.workflow {
padding: 80px 20px;
background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.workflow-steps {
display: flex;
align-items: stretch;
justify-content: center;
margin-top: 50px;
gap: 20px;
flex-wrap: nowrap;
}

.workflow-step {
flex: 1 1 180px;
max-width: 200px;
background: #fff;
padding: 30px 20px;
border-radius: 8px;
text-align: center;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
}

.workflow-step:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.step-number {
font-family: 'Poppins', sans-serif;
font-size: 0.75rem;
font-weight: 700;
color: #fff;
background: linear-gradient(135deg, #A9D2DB 0%, #7fb8c9 100%);
padding: 5px 15px;
border-radius: 20px;
display: inline-block;
margin-bottom: 15px;
}

.step-icon {
font-size: 2.5rem;
margin-bottom: 15px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
}

.step-icon img { display: block; }

.workflow-step h3 {
font-size: 1.1rem;
color: #333;
margin-bottom: 10px;
}

.workflow-step p {
font-size: 0.85rem;
color: #666;
line-height: 1.6;
}

.workflow-arrow {
font-size: 1.5rem;
color: #A9D2DB;
font-weight: 700;
align-self: center;
user-select: none;
line-height: 1;
}

.workflow-arrow .arrow-horizontal { display: inline; }
.workflow-arrow .arrow-vertical   { display: none; }

@media (max-width: 768px) {
.workflow-steps {
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.workflow-step {
  max-width: 480px;
  width: 100%;
  flex: none;
}
.workflow-arrow .arrow-horizontal { display: none; }
.workflow-arrow .arrow-vertical   { display: inline; }
.workflow-arrow {
  font-size: 2rem;
  text-align: center;
  width: 100%;
  padding: 8px 0;
  max-width: 480px;
}
}

@media (max-width: 480px) {
.workflow-step {
  max-width: 100%;
  padding: 24px 16px;
}
}

/* ========================================
 製品紹介
======================================== */
.products-section {
padding: 80px 0;
background: linear-gradient(180deg, #f8f9fa 0%, #eef6f8 100%);
}

.products-lead {
text-align: center;
color: #555;
font-size: 1rem;
margin-bottom: 50px;
line-height: 1.8;
}

.products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}

.product-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 18px rgba(0,0,0,0.07);
transition: transform 0.35s ease, box-shadow 0.35s ease;
cursor: pointer;
}

.product-card:hover {
transform: translateY(-7px);
box-shadow: 0 14px 36px rgba(74,144,164,0.18);
}

.product-img-wrap {
position: relative;
overflow: hidden;
aspect-ratio: 4 / 3;
background: #f0f4f5;
}

.product-img-wrap img {
width: 100%; height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease, filter 0.4s ease;
}

.product-card:hover .product-img-wrap img {
transform: scale(1.06);
filter: brightness(0.72);
}

.product-zoom-icon {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.35s ease;
pointer-events: none;
}

.product-zoom-icon svg {
width: 48px; height: 48px;
color: #fff;
filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
transition: transform 0.3s ease;
}

.product-card:hover .product-zoom-icon { opacity: 1; }
.product-card:hover .product-zoom-icon svg { transform: scale(1.1); }

.product-info {
padding: 14px 16px 18px;
border-top: 2px solid #eef6f8;
}

.product-tag {
font-family: 'Poppins', sans-serif;
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #7fb8c9;
background: rgba(169,210,219,0.15);
padding: 3px 10px;
border-radius: 20px;
display: inline-block;
margin-bottom: 8px;
}

.product-info h4 {
font-size: 0.95rem;
color: #333;
font-weight: 700;
line-height: 1.5;
margin: 0;
}

@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  {
.products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.product-info h4 { font-size: 0.85rem; }
}

/* ========================================
 ライトボックス
======================================== */
.lightbox {
position: fixed;
inset: 0;
background: rgba(10, 20, 30, 0.92);
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
pointer-events: none;
transition: opacity 0.35s ease;
backdrop-filter: blur(6px);
}

.lightbox.active {
opacity: 1;
pointer-events: all;
}

.lightbox-content {
position: relative;
max-width: min(90vw, 900px);
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}

.lightbox-content img {
width: 100%;
max-height: 80vh;
object-fit: contain;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0,0,0,0.5);
display: block;
transform: scale(0.92);
transition: transform 0.35s ease;
}

.lightbox.active .lightbox-content img { transform: scale(1); }

.lightbox-caption {
color: rgba(255,255,255,0.85);
font-size: 0.95rem;
text-align: center;
letter-spacing: 0.04em;
}

.lightbox-close {
position: fixed;
top: 20px; right: 24px;
background: rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.25);
color: #fff;
font-size: 2rem;
line-height: 1;
width: 48px; height: 48px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.25s ease, transform 0.25s ease;
z-index: 10000;
}

.lightbox-close:hover {
background: rgba(255,255,255,0.25);
transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
position: fixed;
top: 50%;
transform: translateY(-50%);
background: rgba(255,255,255,0.12);
border: 1px solid rgba(255,255,255,0.25);
color: #fff;
font-size: 2.5rem;
line-height: 1;
width: 52px; height: 52px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.25s ease, transform 0.25s ease;
z-index: 10000;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover {
background: rgba(255,255,255,0.25);
transform: translateY(-50%) scale(1.1);
}
.lightbox-next:hover {
background: rgba(255,255,255,0.25);
transform: translateY(-50%) scale(1.1);
}

@media (max-width: 600px) {
.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }
.lightbox-prev, .lightbox-next { width: 42px; height: 42px; font-size: 2rem; }
.lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 1.6rem; }
}

/* ========================================
 フッター
======================================== */
.footer {
background-color: #2c3e50;
color: #fff;
padding: 30px 20px;
text-align: center;
margin-top: 50px;
}

.footer p {
font-size: 0.9rem;
margin-bottom: 15px;
}

.footer-privacy {
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-privacy a {
color: #fff;
font-size: 0.75rem;
transition: color 0.3s ease;
}

.footer-privacy a:hover { color: #A9D2DB; }

/* ========================================
 アニメーション
======================================== */
.fade-slide-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}

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