/* ==========================================================
   0. RESET
   ========================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol, li {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

#menu-btn-check, .menu-switch {
  display: none !important;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  position: relative !important;
  scroll-behavior: smooth !important;
}

/* ==========================================================
   ■ スクロール連動フェードイン（完全復元）
   ========================================================== */
.js-fade-up {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: opacity 0.8s ease, transform 0.8s ease !important;
  will-change: opacity, transform;
}

.js-fade-up.is-active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ==========================================================
   1. MAIN VISUAL（縦横比完全維持・上端完全固定ズーム決定版）
   ========================================================== */
.main-visual {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: clamp(480px, 50vw, 900px) !important;
  margin-top: 80px !important; 
  margin-bottom: 80px !important;
  padding: 0 !important;
  background: #ffffff !important;
  overflow: hidden !important;
  position: relative;
}

.mv-slider {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
}
/* ==========================================================
   【修正】メインビジュアル背景のグラデーションフィルター
   ========================================================= */
.mv-slider::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 8 !important; 
  pointer-events: none !important;

  /* --------------------------------------------------------
      透明度・カラーの調整エリア（ここを自由に変更できます）
     -------------------------------------------------------- */
  --mv-filter-color: 30, 66, 94;
  --opacity-left-bottom: 0.75;
  --opacity-right-top: 0.0;
  background: linear-gradient(
    210deg, 
    rgba(var(--mv-filter-color), var(--opacity-right-top)) 0%, 
    rgba(var(--mv-filter-color), var(--opacity-left-bottom)) 100%
  ) !important;
}



.mv-caption-text-wrap {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important; 
  background: transparent !important; 
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-end !important;
  padding: 0px 0px 30px 20px !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
  z-index: 10 !important;                
}

.scroll-guide-container {
  position: relative !important;
  width: 50px !important;
  height: 90px !important;
  margin-right: -60px !important;
  margin-bottom: 40px !important;
  z-index: 99 !important;
  flex-shrink: 0 !important;
}

/* 縦書きのSCROLL文字 */
.scroll-text {
  position: absolute !important;
  top: 0 !important;
  left: 10px !important; 
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  color: rgba(255, 255, 255, 0.8) !important;
  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;
  line-height: 1 !important;
}

/* 矢印が滑る軌跡（細い白線） */
.scroll-line {
  position: absolute !important;
  top: 0 !important;
  left: 35px !important;
  width: 1px !important;
  height: 100% !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
}

/* 滑り落ちる三角形の矢印 */
.scroll-arrow {
  position: absolute !important;
  left: 32px !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 3.5px solid transparent !important;
  border-right: 3.5px solid transparent !important;
  border-top: 5px solid #ffffff !important;
  animation: slideDownArrow 2.5s cubic-bezier(0.25, 1, 0.5, 1) infinite !important;
}

@keyframes slideDownArrow {
  0% { top: 0%; opacity: 0; transform: scaleY(1); }
  5% { opacity: 1; transform: scaleY(1.4); }
  70% { top: 100%; opacity: 1; transform: scaleY(1); }
  80%, 100% { top: 100%; opacity: 0; }
}

/* --- キャッチコピー画像のブロック --- */
.mv-image-catch {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: clamp(320px, 52vw, 800px) !important;
}

.mv-image-catch {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: clamp(320px, 52vw, 800px) !important;
  margin-bottom: -10px !important; 
  margin-left: 35px !important;    
}

.mv-catch-img {
  display: block !important;
  width: 100% !important;             
  height: auto !important;            
  object-fit: contain !important;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.35)) !important;
  will-change: transform !important;
}

@media screen and (max-width: 1000px) {
  .mv-image-catch {
    max-width: clamp(260px, 100vw, 580px) !important;
    margin-bottom: -5px !important; 
    margin-left: 20px !important;
  }
}

@media screen and (max-width: 600px) {
  .mv-caption-text-wrap {
    justify-content: center !important; 
    padding: 0px 0px 30px 0px !important; 
  }
  
  .mv-image-catch {
    max-width: 100% !important; 
    margin-bottom: 0px !important; 
    margin-left: 0px !important; 
  }

  .mv-catch-img {
    filter: none !important; 
  }
}

@media screen and (max-width:600px) {
.scroll-guide-container {
    position: absolute !important;
    left: 10% !important;
    top: 40px !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    transform: translateX(-50%) !important;
    height: 60px !important;
  }
}


/* ==========================================================================
   2. NEW COMMON SECTION TITLE STYLE (PERFECT MATCH WITH INTERVIEW PAGE)
   ========================================================================== */
.c-sectionTtl,
.top-video-section__title {
  text-align: center !important;
  margin-top: 0 !important;
  margin-bottom: 40px !important;
  padding-top: 100px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  color: #2b435c !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

.c-sectionTtl__en {
  display: inline-block !important;
}

.c-sectionTtl__ja {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: #888888 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

@media screen and (max-width: 1000px) {
  .c-sectionTtl,
  .top-video-section__title {
    margin-bottom: 25px !important;
    padding-top: 60px !important;
    font-size: 18px !important;
    letter-spacing: 0.18em !important;
  }
}

/* ==========================================================
   ■ ABOUT US セクション（ボタン・文字サイズ拡大版）
   ========================================================== */

.wh-about-section {
  width: 100% !important;
  background-color: #ffffff !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.wh-about-container {
  display: flex !important;
  width: 100% !important;
  height: auto !important;
  align-items: stretch !important;
  margin: 0 !important;
  max-width: 100% !important;
}

/* ★ 左側：写真エリア（幅55%） */
.wh-about-visual {
  flex: 0 0 55% !important;
  width: 55% !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: #e2ebf0 !important;
  aspect-ratio: 16 / 10 !important;
}

.wh-about-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  transition: opacity 0.35s ease, transform 0.35s ease !important;
  opacity: 1;
}

.wh-about-visual img.is-changing {
  opacity: 0.3 !important;
  transform: scale(1.02) !important;
}

/* 写真下部の黒グラデーション ＋ テキスト重ねエリア */
.wh-about-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  padding: 50px 28px 24px 28px !important;
  box-sizing: border-box !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0) 100%) !important;
  transition: opacity 0.2s ease !important;
}

/* 写真上の見出し */
.wh-about-overlay-ttl {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 10px 0 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
}

/* 写真上のコメント */
.wh-about-overlay-desc {
  font-family: "Noto Sans JP", sans-serif !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6) !important;
  max-width: 96% !important;
}

/* ★ 右側：ナビエリア（幅45%） */
.wh-about-content {
  flex: 0 0 45% !important;
  width: 45% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 30px 40px !important;
  box-sizing: border-box !important;
  background-color: #f8fcfe !important;
  border-left: 1px solid rgba(30, 68, 97, 0.06) !important;
}

.wh-about-inner {
  width: 100% !important;
  max-width: 360px !important; /* ★ ボタン枠の横幅を拡大（280px -> 360px） */
  text-align: center !important;
}

/* 見出しスタイル */
.wh-about-ttl {
  margin-bottom: 28px !important;
  padding-top: 0 !important;
}

.wh-about-ttl .c-sectionTtl__en {
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  font-size: 26px !important; /* ★ 見出し英文も少しだけ大きく */
  font-weight: 500 !important;
  color: #2b435c !important;
  letter-spacing: 0.22em !important;
  display: block !important;
  line-height: 1 !important;
  margin-right: -0.22em !important;
  text-transform: uppercase !important;
}

.wh-about-ttl .c-sectionTtl__ja {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #888888 !important;
  letter-spacing: 0.08em !important;
  display: block !important;
  margin-top: 6px !important;
  line-height: 1 !important;
}

.wh-about-nav {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important; /* ★ 間隔をバランスよく微調整 */
}

/* ★ カプセル型ボタン（サイズ拡大＆文字サイズ拡大） */
.wh-about-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 58px !important;          /* ★ 高さ拡大（50px -> 58px） */
  padding: 0 20px 0 26px !important; /* ★ 内側の左右余白をゆったり */
  box-sizing: border-box !important;
  background-color: #e8f4fa !important;
  color: #1e4461 !important;
  font-size: 16px !important;        /* ★ 文字サイズ拡大（14px -> 16px） */
  font-weight: 700 !important;
  border-radius: 35px !important;    /* ★ 丸みも高さに合わせて微調整 */
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: 0 2px 8px rgba(30, 68, 97, 0.06) !important;
  position: relative !important;
}

/* ★ 右側の矢印アイコン（ボタン拡大に合わせて少し大きく） */
.wh-about-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;           /* ★ 28px -> 32px */
  height: 32px !important;          /* ★ 28px -> 32px */
  background-color: #ffffff !important;
  color: #1e4461 !important;
  border-radius: 50% !important;
  font-size: 15px !important;        /* ★ 矢印サイズも少しアップ */
  font-weight: bold !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
}

/* ホバー時の見た目 */
.wh-about-btn:hover,
.wh-about-btn.active {
  background-color: #1e4461 !important;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 8px 20px rgba(30, 68, 97, 0.22) !important;
}

.wh-about-btn:hover .wh-about-arrow,
.wh-about-btn.active .wh-about-arrow {
  background-color: #00AEEF !important;
  color: #ffffff !important;
  transform: translateX(3px) !important;
}

/* ★ SP用（900px以下） */
@media screen and (max-width: 900px) {
  .wh-about-container { flex-direction: column !important; }
  .wh-about-visual { flex: none !important; width: 100% !important; aspect-ratio: 4 / 3 !important; }
  .wh-about-overlay { display: none !important; }
  .wh-about-content { flex: none !important; width: 100% !important; padding: 35px 20px !important; border-left: none !important; }
  .wh-about-inner { max-width: 320px !important; }

  .wh-about-btn,
  .wh-about-btn.active,
  .wh-about-btn:hover,
  .wh-about-btn:active,
  .wh-about-btn:focus {
    background-color: #d9f0fc !important;
    color: #1e4461 !important;
    height: 52px !important;
    font-size: 15px !important;
    transform: none !important;
    box-shadow: 0 2px 6px rgba(30, 68, 97, 0.06) !important;
  }

  .wh-about-arrow,
  .wh-about-btn:hover .wh-about-arrow,
  .wh-about-btn.active .wh-about-arrow {
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
    background-color: #ffffff !important;
    color: #1e4461 !important;
    transform: none !important;
  }
}
/* ==========================================================
   6. DATA IN W.H（トップページ用 ポップ背景＆スクエアスタイル）
   ========================================================== */

/* ── 全体を包む背景ラッパー（水色グラデーション＋砂目ノイズ） ── */
.top-data-page-bg-wrapper {
  width: 100% !important;
  position: relative !important;
  background-color: #e6f2f7 !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='bgNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.015 0'/%3E%3C/filter%3E%3C/svg%3E#bgNoise") !important;
  background-repeat: repeat !important;
  padding-top: 20px !important;
  padding-bottom: 80px !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

/* ── セクション自体の背景透過 ── */
.top-data-section {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important; 
  overflow: visible !important;
  z-index: 10 !important;
  text-align: center !important;
  background-color: transparent !important;
}

.top-data-section .container {
  max-width: 1100px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 20 !important; 
  text-align: center;
  padding-top: 0 !important; 
}

/* ── 浮かぶ角丸スクエアの共通スタイル ── */
.top-data-page-bg-wrapper .bg-pop-square {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.3) 90%, transparent 100%) !important;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.3) 90%, transparent 100%) !important;
  transition: transform 0.1s linear !important;
}

/* スクエアのカラーバリエーション */
.top-data-page-bg-wrapper .bg-pop-square.color-blue       { background-color: #cbe3f0 !important; }
.top-data-page-bg-wrapper .bg-pop-square.color-aqua       { background-color: #d2f2ff !important; }
.top-data-page-bg-wrapper .bg-pop-square.color-gray       { background-color: #e2ebf0 !important; }
.top-data-page-bg-wrapper .bg-pop-square.color-blue-light { background-color: #dcecf6 !important; }

/* PC版：スクエアの配置と回転 */
@media screen and (min-width: 701px) {
  .top-data-page-bg-wrapper .bg-pop-square.size-xl { width: 500px !important; height: 500px !important; top: -10% !important; left: -10% !important; border-radius: 50px !important; transform: rotate(-15deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-m  { width: 300px !important; height: 300px !important; top: 20% !important; right: -5% !important; border-radius: 30px !important; transform: rotate(18deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-s2 { width: 140px !important; height: 140px !important; bottom: 15% !important; left: 10% !important; border-radius: 20px !important; transform: rotate(-10deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-s  { width: 180px !important; height: 180px !important; top: 50% !important; right: 25% !important; border-radius: 25px !important; transform: rotate(12deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-m2 { width: 380px !important; height: 380px !important; bottom: -10% !important; right: -8% !important; border-radius: 40px !important; transform: rotate(-8deg); }
}

/* スマホ版（700px以下）：スクエアの配置と回転 */
@media screen and (max-width: 700px) {
  .top-data-page-bg-wrapper .bg-pop-square { border-radius: 20px !important; }
  .top-data-page-bg-wrapper .bg-pop-square.size-xl { width: 280px !important; height: 280px !important; top: -5% !important; left: -15% !important; transform: rotate(-10deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-m  { width: 180px !important; height: 180px !important; top: 30% !important; right: -10% !important; transform: rotate(12deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-s2 { width: 90px !important; height: 90px !important; bottom: 20% !important; left: 5% !important; transform: rotate(-8deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-s  { width: 110px !important; height: 110px !important; top: 60% !important; right: 15% !important; transform: rotate(15deg); }
  .top-data-page-bg-wrapper .bg-pop-square.size-m2 { width: 220px !important; height: 220px !important; bottom: -5% !important; right: -10% !important; transform: rotate(-5deg); }
}

/* ── グリッドレイアウト ── */
.data-layout-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 30px !important; 
  align-items: stretch !important; 
  align-items: stretch !important; 
  max-width: 1000px !important;
  margin: 40px auto 0 !important; 
  padding: 0 40px !important;
}

/* ── 全カード共通設定 ── */
html body .data-layout-grid .data-box {
  background: #ffffff !important; 
  border: none !important;
  border-radius: 20px !important; 
  padding: 60px 30px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important; 
  align-items: center !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04) !important;
  height: 100% !important; 
  position: relative !important;
  
  transition: opacity 0.6s ease, transform 0.25s cubic-bezier(0.1, 0.8, 0.2, 1), box-shadow 0.4s ease !important;
}

html body .data-layout-grid .data-box.is-active {
  opacity: 1 !important;
  animation: cardFloatingAndTilt 4s ease-in-out infinite alternate !important;
}

.num {
  font-size: 4rem !important;
  color: #1e4461 !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}
.unit {
  font-size: 1.2rem !important;
  color: #333333 !important;
  font-weight: bold !important;
  margin-left: 5px !important;
}
.data-tag {
  font-size: 0.8rem !important;
  background: #f4f4f4 !important;
  padding: 5px 15px !important;
  border-radius: 50px !important;
  margin-bottom: 20px !important;
  align-self: center !important;
  color: #666 !important;
}
.data-sub {
  font-size: 0.95rem !important;
  color: #333333 !important;
  margin-top: 15px !important;
  font-weight: bold !important;
}
html body .data-layout-grid .data-box .data-date {
  color: #888888 !important;
  font-size: 0.85rem !important;
  margin-top: 6px !important;
  display: block !important;
}

.data-layout-grid .data-box:nth-child(1).is-active { animation-delay: 0.0s !important; }
.data-layout-grid .data-box:nth-child(2).is-active { animation-delay: -1.2s !important; }
.data-layout-grid .data-box:nth-child(3).is-active { animation-delay: -2.4s !important; }

/* ── PC版：ホバー時エフェクト ── */
@media screen and (min-width: 769px) {
  html body .data-layout-grid .data-box:hover {
    animation: none !important; /* ホバー時は自動浮遊をストップ */
    transform: scale(1.05) translateY(-5px) rotate(0deg) !important; 
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
    z-index: 100 !important; 
  }
}

/* ── SP〜タブレット環境（1000px以下） ── */
@media screen and (max-width: 1000px) {
  html body .data-layout-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 0 24px !important;
    width: 100% !important;
    margin-top: 40px !important;
  }
  html body .data-layout-grid .data-box {
    width: 90% !important;
    max-width: 320px !important; 
    margin-top: 0 !important;
    margin-bottom: 30px !important; 
    padding: 35px 20px !important;   
    border-radius: 20px !important;
  }
  html body .data-layout-grid .data-box:nth-child(odd),
  html body .data-layout-grid .data-box:nth-child(even) {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  html body .data-layout-grid .num { font-size: 3rem !important; }
  html body .data-layout-grid .unit { font-size: 1.1rem !important; }
  html body .data-layout-grid .data-sub { font-size: 1rem !important; }
  
  .top-data-page-bg-wrapper {
    padding-bottom: 50px !important;
  }
}

/* ── ボタンエリア ── */
.data-btn-area {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important; 
  margin-top: 60px !important;
  position: relative;
  z-index: 12;
}
.data-btn-area .btn-more {
  width: 300px !important;
  margin: 0 auto !important;
}

/* ── 浮遊アニメーション ── */
@keyframes cardFloatingAndTilt {
  0% { 
    transform: translateY(0) rotate(0deg) !important; 
  }
  100% { 
    transform: translateY(-8px) rotate(0.4deg) !important; 
  }
}

/* ==========================================================
   7. NOTEBOOK RESPONSIVE (1001px - 1240px)
   ========================================================== */
@media screen and (min-width: 1001px) and (max-width: 1240px) {
  html body .page-common .message .container { 
    padding-left: 40px !important; 
    padding-right: 40px !important; 
  }
  
  .message .message-content {
    gap: 40px !important;
  }
  
  .brand-message-heading {
    font-size: clamp(19px, 2.1vw, 24px) !important;
    line-height: 1.6 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    font-feature-settings: "palt" 1 !important; 
    white-space: nowrap !important; 
  }

  .interview { 
    padding-left: 20px !important; 
    padding-right: 20px !important; 
    box-sizing: border-box !important; 
  }
  .interview-card-grid { 
    width: 100% !important; 
    max-width: 1100px !important; 
    display: flex !important; 
    justify-content: space-between !important; 
    gap: 1.5% !important; 
    margin: 0 auto !important; 
  }
  .interview-card { 
    flex: 1 1 230px !important; 
    max-width: 260px !important; 
    width: auto !important; 
  }
  .photo-area img, .coming-soon .photo-area { 
    height: auto !important; 
    aspect-ratio: 260 / 360 !important; 
  }
}

@media screen and (min-width: 601px) {
  html body #top ~ main .about-us-section .grid-3 { display: flex !important; flex-direction: row !important; justify-content: center !important; gap: 30px !important; }
  html body #top ~ main .about-us-section .grid-3 .item-simple { flex: 1 !important; max-width: 350px !important; }
}

/* ==========================================================
   8. SMARTPHONE / TABLET RESPONSIVE (max-width 1000px)
   ========================================================== */
@media screen and (max-width: 1000px) {
  .main-visual {
    margin-top: 60px !important;
    height: clamp(600px, 52vw, 1000px) !important;
  }

  .message { 
    padding-bottom: 70px !important; 
  }
  
  .message .container {
    padding: 40px 20px !important;
    border-radius: 16px !important;
  }
  
  html body #top ~ main .message .message-content,
  .message .message-content { 
    margin-top: 40px !important;
    gap: 50px !important; 
    flex-direction: column !important; 
    align-items: center !important; 
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  
  .message .section-title-img { 
    margin-bottom: 30px !important; 
  }
  
  .brand-message-container { 
    width: 100% !important; 
    flex: none !important; 
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  
  .brand-message-heading { 
    font-size: 20px !important; 
    text-align: center !important; 
    line-height: 1.4 !important; 
    margin-bottom: 20px !important; 
  }
  
  .brand-message-text { 
    text-align: left !important; 
    font-size: 14px !important; 
    line-height: 2.0 !important; 
    width: 100% !important; 
    max-width: 600px !important; 
    margin: 0 auto !important; 
    padding: 0 15px !important; 
    box-sizing: border-box !important;
  }
  
  html body #top ~ main .message .message-photo,
  .message-photo { 
    width: 100% !important; 
    flex: 0 0 100% !important; 
    max-width: 600px !important; 
    min-width: 0 !important;
    margin: 20px auto 0 auto !important; 
    padding: 0 15px !important; 
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; 
  }
  
  html body #top ~ main .message .photo-rectangle,
  .photo-rectangle { 
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 40px !important;
  }
  
  .photo-rectangle img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .btn-more { 
    width: 100% !important;
    max-width: 340px !important; 
    height: 58px !important; 
    font-size: 15px !important; 
    margin: 0 auto !important;
  }

  .interview-card-grid { justify-content: flex-start; overflow-x: auto; padding: 20px 20px 40px; gap: 15px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .interview-card { flex: 0 0 280px; scroll-snap-align: center; }
  .interview-card:hover { transform: scale(1.02) translateY(-2px); }
  .photo-area img, .coming-soon .photo-area { height: 400px !important; }
  .interview-card-grid::-webkit-scrollbar { display: none; }
  
  .slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
  .dot { width: 8px; height: 8px; background-color: #dddddd; border-radius: 50%; }
  .dot.active { background-color: #1e4461; }

  .interview-btn-area { margin-top: 35px !important; margin-bottom: 70px !important; }
  .btn-interview-more { width: 280px !important; height: 52px !important; font-size: 14px !important; }

  .top-data-section { padding-bottom: 70px !important; }
  
  .about-move-bg::before, .about-move-bg::after,
  .data-move-bg::before, .data-move-bg::after {
    display: none !important; 
  }
}

/* ==========================================================
   9. ACCORDION RESPONSIVE (max-width 480px / 600px)
   ========================================================== */
@media screen and (max-width: 480px) {
  .brand-message-heading {
    font-size: clamp(14px, 4.1vw, 16px) !important; 
    line-height: 1.7 !important;
    text-align: center !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 8px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important; 
    font-feature-settings: "palt" 1 !important; 
  }
  .brand-message-text {
    font-size: 13px !important;
    line-height: 1.9 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }
}

@media screen and (max-width: 600px) {
  .about-us-section { padding-bottom: 70px !important; }
  html body #top ~ main .about-us-section .container { padding-left: 10px !important; padding-right: 10px !important; width: calc(100% - 50px) !important; }
  .about-us-section .grid-3 { flex-direction: column !important; align-items: center !important; gap: 40px !important; width: 100% !important; }
  .about-us-section .item-simple { width: 100% !important; max-width: 100% !important; }
  .about-us-section .item-img { aspect-ratio: 3 / 2 !important; width: 100% !important; margin-left: 0 !important; }
  .about-us-section .item-simple[href*="job-section"] .item-img { object-position: center 20% !important; }
  .about-us-section .item-simple[href*="business.html"] .item-img { object-position: center 12% !important; }
.about-us-section .item-simple[href*="interview.html"] .item-img { object-position: center 25% !important; }
  .main-visual::after {
    display: none !important;
  }
}

@media screen and (min-width: 600px) and (max-width: 1000px) {
  .interview-card-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 40px 20px !important; overflow-x: visible !important; padding: 30px !important; max-width: 800px !important; margin: 0 auto !important; }
  .interview-card { flex: none !important; width: 100% !important; scroll-snap-align: none !important; }
  .photo-area img, .coming-soon .photo-area { height: 420px !important; }
  .slider-dots { display: none; }
  .info-label { width: 90% !important; bottom: -20px !important; }
}

.message,
.about-us-section,
.interview,
.top-data-section,
.recruit-info {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  position: relative !important;
  z-index: 1 !important; 
  box-sizing: border-box !important;
  overflow: visible !important;
}

/* ==========================================================
   ■ 採用情報セクション（recruit-info）
   ========================================================== */
html body .recruit-info.js-fade-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
    visibility: visible !important;
}

/* ==========================================================
   ■ トップページ専用
   ========================================================== */
.top-video-section {
  margin-top: 0 !important;
  margin-bottom: 60px;
}

.custom-video-container {
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  border-radius: 16px; 
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
  background-color: #2b435c; 
  position: relative; 
}

.custom-video-player {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 1000px) {
  .top-video-section {
    margin-top: 0 !important;
    margin-bottom: 40px;
    padding: 0 15px; 
  }
}

/* ==========================================================
   ■ 動画専用：モーダル連動・背景オーバーレイカスタムコントロール
========================================================== */
/* 動画コンテナ（背景） */
.custom-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
  border-radius: 8px;
}

/* 背景用ループ動画 */
.custom-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 黒い透かし（オーバーレイ） */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* 黒マスクの濃さ */
  z-index: 10;
  pointer-events: none; /* 下の再生ボタンをクリック可能にする */
}

/* 中央再生ボタン */
.video-center-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 80px;
  height: 80px;
  background-color: #00AEEF;
  border: 3px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.play-icon-triangle {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 6px;
}

.video-center-play-btn:hover {
  background-color: #2b435c;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================================
   ■ モーダル（ポップアップ）表示用スタイル
========================================================== */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}

.video-modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-modal-inner {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.video-modal-inner video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  transition: transform 0.2s ease;
}

.video-modal-close:hover {
  transform: scale(1.1);
}

/* レスポンシブ調整 */
@media screen and (max-width: 1000px) {
  .video-center-play-btn { width: 60px; height: 60px; }
  .play-icon-triangle { border-width: 9px 0 9px 15px; margin-left: 4px; }


  .top-video-section__title {
    font-size: 24px !important;
    letter-spacing: 0.22em !important;
    padding-top: 60px !important;
    margin-bottom: 30px !important;
  }
}


.top-video-section {
  scroll-margin-top: 60px !important; /* ヘッダー(80px) + 余白(20px) */
  margin-top: 0 !important;
  margin-bottom: 60px;
}


/* ==========================================================
   ■ 共通インタビュー：indexページと完全同一化（確定版）
   ========================================================== */
/* 1. フォントの種類を Noto Sans JP に完全統一 */
.under-interview-info-wrap,
.under-interview-info-wrap * {
    font-family: "Noto Sans JP", sans-serif !important;
}

/* 2. 名前部分：index側と同じ「18px」「800」に強制固定 */
.under-interview-info-wrap .under-interview-item-name {
    font-size: 18px !important; 
    font-weight: 800 !important; 
    letter-spacing: 0.02em !important;
}

/* 3. 年次部分：index側と同じ「11px」「bold」に強制固定 */
.under-interview-info-wrap .under-interview-item-year {
    font-size: 11px !important; 
    font-weight: bold !important;
}

/* ==========================================================
   ■ W.H CULTURE（オーロラグラデーション ＆ 写真自動無限ループ対応版）
   ========================================================== */

html, body, main, .index {
  overflow: visible !important;
}

/* 1. ベースセクション */
.wh-sticky-section {
  position: relative !important;
  width: 100% !important;
  height: 250vh !important; /* スクロール固定時間（PC） */
  background-color: #f0f8f6 !important; /* ベースのアイスペールグリーン */
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* 2. 背景オーロラグラデーション（水色2色・上部漏れ防止版） */
.wh-bg-gradient {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 1 !important;
  overflow: hidden !important; /* 内部のぼかし（blur）が外へ漏れるのをブロック */
}

/* 不要な疑似要素クリア・定義 */
.wh-bg-gradient::before,
.wh-bg-gradient::after {
  content: '' !important;
  position: absolute !important;
  border-radius: 50% !important;
  will-change: transform !important;
}

/* 右上の光：スカイブルー */
.wh-bg-gradient::before {
  width: 1200px !important;
  height: 1200px !important;
  background: radial-gradient(circle, rgba(56, 182, 255, 0.3) 0%, rgba(56, 182, 255, 0) 70%) !important;
  top: 0% !important;
  right: -15% !important;
  filter: blur(60px) !important;
}

/* 左下の光：マリンアクア */
.wh-bg-gradient::after {
  width: 1100px !important;
  height: 1100px !important;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.25) 0%, rgba(0, 194, 255, 0) 70%) !important;
  bottom: -15% !important;
  left: -15% !important;
  filter: blur(60px) !important;
}

/* 3. 固定ピン構造 */
.wh-sticky-pin {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  z-index: 10 !important;
  box-sizing: border-box !important;
  background: transparent !important;
}

.wh-sticky-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 50px !important;
  background: transparent !important;
}

/* ── 左側：テキスト ── */
.wh-sticky-text-col {
  flex: 0 0 38% !important;
  max-width: 420px !important;
  z-index: 10 !important;
  background: transparent !important;
}

.wh-sticky-heading {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1e4461 !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.wh-sticky-desc {
  font-size: 14px !important;
  color: #444444 !important;
  line-height: 2.1 !important;
}

.wh-sticky-desc .is-sp {
  display: none !important;
}

/* ── 右側：写真エリア（自動無限ループ設定） ── */
.wh-sticky-visual-col {
  flex: 0 0 58% !important;
  height: 82vh !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  background: transparent !important;
}

.wh-visual-inner {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  width: 100% !important;
  height: 100% !important;
}

/* 写真の自動無限ループ定義 */
.wh-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  will-change: transform !important;
}

/* 左列：下から上へ自動ループ */
.wh-column--up {
  animation: loopInfiniteUp 45s linear infinite !important;
}

/* 右列：上から下へ自動ループ */
.wh-column--down {
  animation: loopInfiniteDown 45s linear infinite !important;
}

/* 写真カード */
.wh-photo-card {
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08) !important;
  flex-shrink: 0 !important;
  background-color: #e2ebf0 !important;
}

.wh-photo-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ----------------------------------------------------------
   ■ 無限ループのキーフレームアニメーション（上下交差）
   ---------------------------------------------------------- */
@keyframes loopInfiniteUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes loopInfiniteDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ----------------------------------------------------------
   ■ スマホ用（SP）表示レスポンシブ設定（過剰高さ・下部余白削除版）
   ---------------------------------------------------------- */
@media screen and (max-width: 1000px) {
  .wh-sticky-section {
    height: auto !important; /* 固定の高さを自動にして余白を解消 */
    margin-bottom: 0 !important;
    padding-top: 40px !important;
    padding-bottom: 60px !important;
  }

  .wh-sticky-pin {
    position: relative !important;
    height: auto !important;
    padding-bottom: 0 !important;
  }

  .wh-sticky-container {
    flex-direction: column-reverse !important;
    justify-content: center !important;
    gap: 24px !important;
    padding: 0 20px !important;
    height: auto !important;
  }

  /* ── テキスト部分 ── */
  .wh-sticky-text-col {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 0 !important;
  }

  .wh-sticky-text-col .c-sectionTtl {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-bottom: 20px !important;
  }

  .wh-sticky-text-col .c-sectionTtl__en,
  .wh-sticky-text-col .c-sectionTtl__ja {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }

  .wh-sticky-heading {
    font-size: 19px !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }

  .wh-sticky-desc {
    font-size: 12px !important;
    line-height: 1.75 !important;
    text-align: center !important;
  }

  .wh-sticky-desc .is-sp {
    display: inline !important;
  }

  /* ── 写真エリア ── */
  .wh-sticky-visual-col {
    flex: none !important;
    width: 100% !important;
    height: 320px !important;
    border-radius: 16px !important;
  }

  .wh-visual-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .wh-photo-card {
    aspect-ratio: 4 / 3 !important;
    border-radius: 12px !important;
  }
}

/* ==========================================================
   ■ 共通：浮かぶ角丸スクエアのスタイル解放（白背景対応）
   ========================================================== */

/* 1. 基本スタイルの共通化 */
.bg-pop-square {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.3) 90%, transparent 100%) !important;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.85) 60%, rgba(0, 0, 0, 0.3) 90%, transparent 100%) !important;
  transition: transform 0.1s linear !important;
}

/* 2. カラーバリエーション定義 */
.bg-pop-square.color-blue       { background-color: #cbe3f0 !important; }
.bg-pop-square.color-aqua       { background-color: #d2f2ff !important; }
.bg-pop-square.color-gray       { background-color: #e2ebf0 !important; }
.bg-pop-square.color-blue-light { background-color: #dcecf6 !important; }

/* 3. サイズ定義 */
.bg-pop-square.size-xl { width: 420px !important; height: 420px !important; border-radius: 45px !important; }
.bg-pop-square.size-m  { width: 280px !important; height: 280px !important; border-radius: 30px !important; }
.bg-pop-square.size-s  { width: 160px !important; height: 160px !important; border-radius: 20px !important; }


/* ==========================================================
   3. MESSAGE (PC見切れ防止 ＆ SP文字切れ完全崩れ防止修正版)
   ========================================================== */
.message {
  position: relative !important;
  margin-top: 20px !important; 
  padding-top: 0 !important; 
  padding-bottom: 120px !important; 
  background-color: transparent !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

.message .message-content {
  margin-top: 120px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: center !important; 
  gap: 60px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 2 !important;
}

.brand-message-container {
  margin: 0 !important;
  flex: 1 1 50% !important;
  max-width: 580px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.brand-message-heading {
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #1e4461 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.05em !important;
  margin: 0 0 24px 0 !important;
  word-break: break-word !important;
}

.brand-message-text {
  font-size: 15px !important;
  font-weight: normal !important;
  color: #333333 !important;
  line-height: 2.3 !important;
  margin: 0 !important;
  word-break: break-word !important;
}

.message-photo {
  flex: 1 1 50% !important;
  max-width: 480px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important; 
  margin-bottom: 0 !important;
  box-sizing: border-box !important;
}

.photo-rectangle {
  width: 100% !important;
  margin-bottom: 40px !important;
}

.photo-rectangle img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  border-radius: 12px !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12) !important;
}

.btn-more {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 320px !important;
  max-width: 100% !important;
  height: 64px !important;
  background-color: #1e4461 !important;
  color: #ffffff !important;
  border-radius: 32px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.btn-more:hover {
  opacity: 0.85 !important; 
  transform: translateY(-1px) !important;
}

/* ★ PC版：背景四角の位置 ★ */
.message .pos-msg-1 {
  top: -80px !important;
  left: -320px !important;
  z-index: 0 !important;
  opacity: 0.45 !important;
}

.message .pos-msg-2 {
  bottom: 40px !important;
  right: -180px !important;
  z-index: -1 !important;
  opacity: 0.45 !important;
}

.message .pos-msg-3 {
  top: -20% !important;
  right: -140px !important;
  z-index: 0 !important;
  opacity: 0.8 !important;  
}

/* ★ スマホ（SP）版：テキスト見切れ完全防止設定 ★ */
@media screen and (max-width: 1000px) {
  .message {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 70px !important;
    overflow: hidden !important;
  }

  .message .message-content {
    margin-top: 40px !important;
    gap: 40px !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .brand-message-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .brand-message-heading {
    font-size: clamp(16px, 4.5vw, 20px) !important;
    text-align: center !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .brand-message-text {
    font-size: 14px !important;
    line-height: 2.0 !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .message-photo {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin-top: 10px !important;
  }

  /* SP背景四角の制御 */
  .message .pos-msg-1 {
    opacity: 0.35 !important;
    left: -80px !important;
    top: -20px !important;
    width: 180px !important;
    height: 180px !important;
  }

  .message .pos-msg-2 {
    top: auto !important;
    bottom: 20px !important;
    right: -40px !important;
    left: auto !important;
    width: 160px !important;
    height: 160px !important;
    opacity: 0.4 !important;
  }

  .message .pos-msg-3 {
    top: 0% !important;
    right: -60px !important;
    width: 180px !important;
    height: 180px !important;
    opacity: 0.4 !important;
  }
}