@charset "UTF-8";

:root {
  --color-aa-red: #f05064;
  --color-text-base: #302a2b;
  --color-text-basic: #1e1e1e;
  --color-text-gray-light: #bfbdbd;
  --color-text-gray-dark: #737070;
  --color-bg-gray: #f9f8f8;
  --color-tag-gray: #6f7987;
  --color-white: #ffffff;
  --font-section-title-en: 200 60px/1 "Inter", sans-serif;
  --font-section-title-jp: 700 24px/1.55 "Inter", "Noto Sans JP", sans-serif;
  --font-body: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  --font-meta: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  --font-card-title: 500 16px/1.65 "Inter", "Noto Sans JP", sans-serif;
  --font-nav: 500 14px/1 "Inter", "Noto Sans JP", sans-serif;
  --shadow-card: 0 0 12px rgba(0, 0, 0, 0.08);
  --radius-card: 20px;
  --radius-pill: 100px;
  --radius-tag: 6px;
  --radius-box: 10px;
  --max-width: 1360px;
  --section-padding: 100px 40px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  line-height: 1.8;
  font-size: 16px;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

a.card-box {
  display: flex;
  flex-direction: column;
}

ul,
ol {
  list-style: none;
}

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.7);
}

.header-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 16px 40px;
  height: 100%;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-menu-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 0;
  font: var(--font-nav);
  color: var(--color-text-base);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.nav-menu-item:hover {
  opacity: 0.7;
}

.nav-menu-item .icon-chevron-down {
  width: 10px;
  height: 10px;
  position: relative;
}

.nav-menu-item .icon-chevron-down::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-text-base);
  border-bottom: 1.5px solid var(--color-text-base);
  transform: rotate(45deg);
  position: absolute;
  top: 1px;
  left: 2px;
}

.sub-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-search {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--color-tag-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-search:hover {
  opacity: 0.8;
}

.btn-search svg {
  width: 16px;
  height: 16px;
  fill: var(--color-white);
}

.lang-switch {
  display: flex;
  align-items: center;
  background: var(--color-tag-gray);
  border-radius: var(--radius-pill);
  padding: 4px;
}

.lang-switch-option {
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  color: var(--color-white);
  transition: all 0.2s;
}

.lang-switch-option.active {
  background: var(--color-white);
  color: var(--color-text-base);
}

.nav-menu-item.has-mega.is-active .icon-chevron-down::after {
  transform: rotate(-135deg);
  top: 4px;
}

/* Header Search Panel — Figma 198-6831 準拠 */
/* パネル: 画面幅いっぱい・右寄せ・半透明白・backdrop-blur */
.header-search-panel {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, visibility 0.25s;
}

.header-search-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 右寄せ: ヘッダーと同じ最大幅・右端を揃える */
.header-search-panel-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 16px 40px 20px;
  display: flex;
  justify-content: flex-end;
}

.header-search-form {
  flex-shrink: 0;
}

/* 入力欄＋ボタンの横並び */
.header-search-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* 入力欄: 白背景・角丸10px（Figma準拠） */
.header-search-input {
  width: clamp(300px, 40vw, 480px);
  height: 40px;
  padding: 8px 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #302a2b;
}

.header-search-input::placeholder {
  color: #737070;
}

.header-search-input:focus {
  outline: none;
}

/* ボタン: Priority-2 small — 白背景・ピンクボーダー・ピンクテキスト・矢印付き */
.header-search-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 10px 16px;
  border: 1px solid #f05064;
  border-radius: 100px;
  background: #fff;
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  color: #f05064;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.header-search-submit:hover {
  background: #f05064;
  color: #fff;
}

.header-search-submit:hover .header-search-submit-icon::after {
  border-color: #fff;
}

/* 矢印アイコン（chevron-right） */
.header-search-submit-icon {
  display: inline-block;
  width: 7.5px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.header-search-submit-icon::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #f05064;
  border-right: 1.5px solid #f05064;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -3.5px;
  transition: border-color 0.2s;
}

.mega-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-head {
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 36px 80px;
  align-self: stretch;
  flex: 0 0 355px;
  width: 355px;
}

.mega-menu-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-menu-title-jp {
  font: 500 16px/1.65 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
}

.mega-menu-title-desc {
  font: 400 14px/1.65 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-gray-dark);
}

.mega-menu-top-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  cursor: pointer;
  transition: opacity 0.2s;
  padding: 4px 0;
}

.mega-menu-top-link:hover {
  opacity: 0.7;
}

.mega-menu-top-link .text-link-icon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--color-aa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu-top-link .text-link-icon .icon-chevron-right-small::after {
  border-color: var(--color-aa-red);
  width: 4px;
  height: 4px;
  border-width: 1px;
  top: 1px;
}

.mega-menu-body {
  background: var(--color-white);
  display: flex;
  gap: 32px;
  padding: 32px;
  flex: 0 0 456px;
  width: 456px;
  height: 290px;
}

.mega-menu-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 180px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  min-width: 180px;
  transition: opacity 0.15s;
}

.mega-menu-item:hover {
  opacity: 0.7;
}

.mega-menu-item-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-item-jp {
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
}

.mega-menu-item-en {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-light);
}

.mega-menu-item-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--color-aa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu-item-icon .icon-chevron-right-small::after {
  border-color: var(--color-aa-red);
  width: 4px;
  height: 4px;
  border-width: 1px;
  top: 1px;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text-base);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.sp-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sp-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-menu {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.sp-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  flex-shrink: 0;
}

.sp-menu-header .header-logo img {
  height: 60px;
  width: auto;
}

.sp-menu-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.sp-menu-close svg {
  width: 21px;
  height: 13px;
}

.sp-menu-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px 24px 24px 40px;
  flex: 1;
}

.sp-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sp-nav-item {
  display: block;
  font: 500 16px/1 "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  padding: 16px 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.sp-nav-item.has-children {
  padding: 0;
}

.sp-nav-parent {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font: 500 16px/1 "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  cursor: pointer;
}

.sp-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  transition: transform 0.3s;
}

.sp-chevron::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--color-text-base);
  border-bottom: 1.5px solid var(--color-text-base);
  transform: rotate(45deg);
  position: absolute;
  top: 1px;
  left: 2px;
}

.sp-nav-parent.is-open .sp-chevron {
  transform: rotate(180deg);
}

.sp-nav-children {
  display: none;
  flex-direction: column;
  padding-bottom: 8px;
}

.sp-nav-children.is-open {
  display: flex;
}

.sp-nav-child {
  display: block;
  padding: 16px 0 16px 24px;
  font: 500 13px/1 "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  transition: opacity 0.15s;
}

.sp-nav-child:hover {
  opacity: 0.6;
}

.sp-menu-sub {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-search-box {
  display: flex;
  gap: 16px;
  align-items: center;
}

.sp-search-input {
  flex: 1;
  padding: 8px 16px;
  background: var(--color-white);
  border: none;
  border-radius: var(--radius-box);
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  outline: none;
}

.sp-search-input::placeholder {
  color: var(--color-text-gray-dark);
}

.sp-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 10px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-aa-red);
  border-radius: var(--radius-pill);
  color: var(--color-aa-red);
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.sp-search-btn:hover {
  opacity: 0.7;
}

.sp-search-btn .icon-chevron-right-small::after {
  border-color: var(--color-aa-red);
}

.sp-lang-switch {
  display: flex;
  align-items: center;
  background: var(--color-tag-gray);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
}

.sp-lang-option {
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  color: var(--color-text-gray-dark);
  transition: all 0.2s;
}

.sp-lang-option.active {
  background: var(--color-white);
  color: var(--color-text-base);
}

.mv-section {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: visible;
}

.mv {
  position: relative;
  width: 100%;
  height: 895px;
  overflow: hidden;
}

.mv-bg {
  position: absolute;
  inset: 0;
  width: 102%;
  height: 104%;
  object-fit: cover;
  top: -2%;
  left: -1%;
  display: block;
}

/* MV動画：画像と同じレイアウトで全面表示・自動再生・ループ */
.mv-video.mv-bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.mv-text {
  position: absolute;
  top: 46%;
  left: 18%;
  transform: translateY(-50%);
  color: var(--color-white);
  white-space: nowrap;
  letter-spacing: 4.2px;
}

/* Why見出しはMV画像内に配置（Figma: 2-425）左：Why?＋なぜ… 右：説明文 */
.mv-why-header {
  position: absolute;
  bottom: 0px;
  left: 18%;
  right: 40px;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-end;
  pointer-events: none;
}

.mv-why-header .why-title-block {
  display: flex;
  flex-direction: column;
  gap: 0px;
  flex-shrink: 0;
}

.mv-why-header .why-title-en {
  font: var(--font-section-title-en);
  color: var(--color-white);
  letter-spacing: 0.3px;
}

.mv-why-header .why-title-jp {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-white);
}

.mv-why-header .why-description {
  font: var(--font-body);
  color: var(--color-white);
  line-height: 2;
  opacity: 0.95;
  flex: 1;
  min-width: 0;
  padding-left: 0;
}

.mv-text p {
  margin-bottom: 0;
  line-height: 1.5;
}

.mv-text .text-large {
  font-size: 42px;
  font-weight: 900;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.mv-text .text-small {
  font-size: 36px;
  font-weight: 300;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

/* ---------- Why Section（MVとはグラデーションなし・境界のみ） ---------- */
.why-section {
  position: relative;
  padding: 40px 40px;
  max-width: 70%;
  margin: 0 auto;
  background: #fff;
  border-radius: 48px 48px 0 0;
  margin-top: 0;
}

.why-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.why-header {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  width: 1000px;
  max-width: 100%;
}

.why-title-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}

.why-title-en {
  font: var(--font-section-title-en);
  color: var(--color-text-base);
  letter-spacing: 0.3px;
}

.why-title-jp {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
}

.why-description {
  font: var(--font-body);
  color: var(--color-text-base);
  line-height: 2;
}

.why-visual {
  width: 100%;
  aspect-ratio: 1280/660;
  background: #e3e3e3;
  border-radius: 12px;
  position: relative;
}

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

/* ---------- Section Title ---------- */
.section-title-en {
  font: var(--font-section-title-en);
  color: var(--color-aa-red);
  letter-spacing: 0.3px;
}

.section-title-jp {
  font: var(--font-section-title-jp);
  color: var(--color-text-base);
}

.section-title-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 280px;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px 12px 40px;
  background: var(--color-aa-red);
  border: 1px solid var(--color-aa-red);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font: 400 16px/1 "Inter", "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: 0.85;
}

.btn-primary-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 10px 16px;
  background: var(--color-aa-red);
  border: 1px solid var(--color-aa-red);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.btn-primary-small:hover {
  opacity: 0.85;
}

.icon-chevron-right {
  display: inline-block;
  width: 6px;
  height: 10px;
  position: relative;
}

.icon-chevron-right::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 0;
}

.icon-chevron-right-small {
  display: inline-block;
  width: 5px;
  height: 6px;
  position: relative;
}

.icon-chevron-right-small::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 1px;
  left: 0;
}

/* ---------- Service Section ---------- */
.service-section {
  background: var(--color-white);
  padding: var(--section-padding);
  overflow: hidden;
}

.service-header {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.service-description {
  font: var(--font-body);
  color: var(--color-text-basic);
  flex: 1;
  line-height: 1.8;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.service-diagram {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.service-diagram img,
.service-diagram video {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- News Section ---------- */
.news-section {
  background: var(--color-bg-gray);
  padding: var(--section-padding);
  overflow: hidden;
}

.news-header {
  display: flex;
  align-items: flex-end;
  margin-bottom: 40px;
}

.news-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.news-slider::-webkit-scrollbar {
  display: none;
}

/* ---------- News Card ---------- */
.card-box {
  flex-shrink: 0;
  width: 400px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  transition: transform 0.2s;
  background: var(--color-white);
}

.card-box:hover {
  transform: translateY(-4px);
}

.card-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

.card-text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 195px;
  background: var(--color-white);
}

.card-title {
  font: var(--font-card-title);
  color: var(--color-text-basic);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  background: var(--color-tag-gray);
  border-radius: var(--radius-tag);
  color: var(--color-white);
  font: var(--font-meta);
}

.card-date {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-light);
}

/* ---------- News Navigation ---------- */
.news-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.news-nav-controls {
  display: flex;
  gap: 40px;
  align-items: center;
}

.news-nav-arrows {
  display: flex;
  gap: 8px;
}

.nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-text-gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s;
}

.nav-arrow:hover {
  background: var(--color-text-gray-dark);
  border-color: var(--color-text-gray-dark);
}

.nav-arrow:hover svg {
  fill: var(--color-white);
}

.nav-arrow svg {
  width: 8px;
  height: 12px;
  fill: var(--color-text-gray-dark);
}

.news-counter {
  font: 400 16px/1 "Inter", sans-serif;
  color: var(--color-text-basic);
  letter-spacing: 2px;
}

/* ---------- Clients Section ---------- */
.clients-section {
  background: var(--color-white);
  padding: var(--section-padding);
  overflow: hidden;
}

.clients-header {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 40px;
}

.clients-description {
  font: var(--font-body);
  color: var(--color-text-basic);
  line-height: 2;
}

.clients-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.clients-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 80px);
  gap: 12px 24px;
  align-items: center;
  justify-items: center;
  padding: 10px 0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 72px;
}

.client-logo-item img {
  max-width: 170px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.2s;
}

.clients-case-study {
  flex-shrink: 0;
  width: 440px;
  background: var(--color-bg-gray);
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-study-slider {
  display: flex;
  overflow: hidden;
}

.case-study-card {
  flex-shrink: 0;
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-white);
}

.case-study-card .card-text {
  height: auto;
  min-height: 157px;
}

/* ---------- IR Section ---------- */
.ir-section {
  background: var(--color-bg-gray);
  padding: var(--section-padding);
  overflow: hidden;
}

.ir-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ir-header {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}

.ir-contents {
  display: flex;
  gap: 40px;
  flex: 1;
  padding-top: 72px;
}

.ir-news-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ir-news-subtitle {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #000;
}

.ir-news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ir-news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

a.ir-news-item {
  text-decoration: none;
  color: inherit;
}

.ir-news-meta {
  display: flex;
  gap: 24px;
  align-items: center;
}

.ir-news-date {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-dark);
}

.ir-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  padding: 2px 8px;
  background: var(--color-tag-gray);
  border-radius: var(--radius-tag);
  color: var(--color-white);
  font: var(--font-meta);
  text-align: center;
}

.ir-news-title {
  font: var(--font-body);
  color: var(--color-text-basic);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  cursor: pointer;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.7;
}

.text-link-icon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--color-aa-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.text-link-icon .icon-chevron-right-small::after {
  border-color: var(--color-aa-red);
  width: 4px;
  height: 4px;
  border-width: 1px;
  top: 1px;
}

/* ---------- Privacy Policy Page ---------- */
.privacy-header .section-title-block {
  width: auto;
}

.privacy-content {
  max-width: 800px;
  font: var(--font-body);
  color: var(--color-text-base);
}

.privacy-intro {
  margin-bottom: 32px;
}

.privacy-list {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 40px;
}

.privacy-list li {
  margin-bottom: 1em;
  padding-left: 0.5em;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-meta {
  margin-bottom: 40px;
  font: var(--font-meta);
  color: var(--color-text-gray-dark);
}

.privacy-meta p {
  margin-bottom: 0.5em;
}

.privacy-contact-lead {
  margin-bottom: 16px;
}

.privacy-contact-box {
  background: var(--color-bg-gray);
  border-radius: var(--radius-box);
  padding: 24px;
  margin-bottom: 40px;
  font: var(--font-body);
}

.privacy-contact-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.privacy-contact-box p {
  margin-bottom: 0.25em;
}

.privacy-contact-box p:last-child {
  margin-bottom: 0;
}

.privacy-back {
  margin-top: 48px;
  margin-bottom: 0;
}

.ir-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  width: 480px;
}

.ir-info-box {
  background: var(--color-white);
  border-radius: var(--radius-box);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a.ir-info-box {
  text-decoration: none;
  color: inherit;
}

.ir-info-box-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ir-info-box-title {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
}

.ir-info-box-date {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-dark);
}

.ir-info-box-desc {
  font: var(--font-body);
  color: var(--color-text-basic);
  line-height: 1.8;
}

.tag-file-type {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-box);
  background: rgba(195, 189, 190, 0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
}

.tag-file-type span {
  font: 700 11px/1.5 "Inter", sans-serif;
  color: var(--color-white);
}

/* ---------- IR 決算短信ページ ---------- */
.ir-tanshin-section {
  padding-bottom: 60px;
}

.ir-tanshin-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
}

.ir-tanshin-title {
  font: 700 24px/1.4 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  margin-bottom: 24px;
}

.ir-tanshin-notice {
  background: var(--color-bg-gray);
  border-radius: var(--radius-box);
  padding: 24px;
  margin-bottom: 32px;
}

.ir-tanshin-notice p {
  font: var(--font-body);
  color: var(--color-text-basic);
  line-height: 1.8;
  margin: 0 0 12px;
}

.ir-tanshin-notice p:last-child {
  margin-bottom: 0;
}

.ir-tanshin-notice-provider a {
  color: var(--color-text-link);
  text-decoration: underline;
}

.ir-tanshin-list-wrap {
  margin-bottom: 40px;
}

.ir-tanshin-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ir-tanshin-item {
  border-bottom: 1px solid var(--color-border);
}

.ir-tanshin-item:first-child {
  border-top: 1px solid var(--color-border);
}

.ir-tanshin-item-link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
}

.ir-tanshin-item-link:hover {
  opacity: 0.8;
}

.ir-tanshin-item-date {
  font: 400 14px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-dark);
  flex-shrink: 0;
}

.ir-tanshin-item-title {
  font: var(--font-body);
  color: var(--color-text-basic);
  line-height: 1.6;
}

.ir-tanshin-empty {
  font: var(--font-body);
  color: var(--color-text-gray-dark);
  padding: 24px 0;
}

.ir-tanshin-back {
  margin: 0;
}

/* ---------- IR よくあるご質問ページ ---------- */
.ir-faq-section {
  padding-bottom: 60px;
}

.ir-faq-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
}

.ir-faq-title {
  font: 700 24px/1.4 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  margin-bottom: 32px;
}

.ir-faq-entry-content {
  margin-bottom: 40px;
}

.ir-faq-list {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.ir-faq-item {
  border-bottom: 1px solid #F1EEEA;
}

.ir-faq-item:first-child {
  border-top: 1px solid #F1EEEA;
}

.ir-faq-q,
.quest {
  font: 700 16px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  margin: 0;
  padding: 24px 0 10px 33px;
  position: relative;
}

.ir-faq-q::before,
.quest::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/faq_q.gif) no-repeat center center;
  background-size: contain;
}

.ir-faq-a,
.asked {
  font: var(--font-body);
  color: var(--color-text-basic);
  line-height: 1.8;
  margin: 0;
  padding: 0 0 24px 33px;
  position: relative;
}

.ir-faq-a::before,
.asked::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/faq_a.gif) no-repeat center center;
  background-size: contain;
}

.ir-faq-a p {
  margin: 0 0 8px;
}

.ir-faq-a p:last-child,
.ir-faq-a .ir-faq-link-p:last-child {
  margin-bottom: 0;
}

.ir-faq-link-p {
  margin-top: 8px;
}

.ir-faq-link-p .text-link {
  font: var(--font-body);
}

.ir-faq-back {
  margin: 0;
}

/* IRカレンダー（page.php 本文用） */
.ir-calendar-section {
  padding-bottom: 60px;
}

.ir-calendar-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-h);
}

.ir-calendar-title {
  font: 700 24px/1.4 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  margin-bottom: 24px;
}

/* 年フィルター行と TOPに戻る を横並びに */
.ir-calendar-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.ir-calendar-inner {
  flex: 1;
  min-width: 0;
}

/* 年タブ（E-IR が #ir_library 直下の div 内に挿入するリンク） */
.ir-calendar-inner>div:first-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.ir-calendar-inner>div:first-child a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--color-aa-red);
  border-radius: var(--radius-tag);
  font: 500 14px/1.4 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-aa-red);
  background: var(--color-white);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ir-calendar-inner>div:first-child a:hover {
  background: var(--color-aa-red);
  color: var(--color-white);
  border-color: var(--color-aa-red);
}

/* 選択中の年タブ（E-IR が .current / .active 等を付与する想定） */
.ir-calendar-inner>div:first-child a.current,
.ir-calendar-inner>div:first-child a.active,
.ir-calendar-inner>div:first-child a[style*="background"] {
  background: var(--color-aa-red);
  color: var(--color-white);
  border-color: var(--color-aa-red);
}

/* 年見出し（イベントリストの年ごと見出し） */
.ir-calendar-inner h3,
.ir-calendar-inner .calendar_year,
.ir-calendar-inner table caption {
  font: 700 18px/1.4 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid #cccccc;
}

.ir-calendar-inner h3:first-of-type,
.ir-calendar-inner .calendar_year:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* イベント一覧テーブル */
.ir-calendar-inner table {
  width: 100%;
  border-collapse: collapse;
  font: var(--font-body);
  color: var(--color-text-basic);
}

.ir-calendar-inner table th,
.ir-calendar-inner table td {
  padding: 12px 0;
  border-bottom: 1px solid #eeeeee;
  vertical-align: top;
  text-align: left;
}

.ir-calendar-inner table th {
  font-weight: 700;
  width: 12em;
}

/* イベント内容内のリンクは青 */
.ir-calendar-inner table a,
.ir-calendar-inner .ir-calendar-content-link {
  color: #0066cc;
  text-decoration: underline;
}

.ir-calendar-inner table a:hover,
.ir-calendar-inner .ir-calendar-content-link:hover {
  color: #004499;
}

/* TOPに戻る：年フィルター行の右端に配置 */
.ir-calendar-back {
  flex-shrink: 0;
  margin: 0;
}

.ir-calendar-back .text-link {
  font: 400 14px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #0066cc;
}

.ir-calendar-back .text-link:hover {
  color: #004499;
}

/* ---------- IR トップ（page-ir.php） ---------- */
/* 既存サイト .irContainer { padding: 60px 0 } / .irOutlineWrap { margin: 50px auto 80px } に合わせた余白 */
.ir-top-main .news-page-title-en {
  color: var(--color-aa-red);
}

.ir-top-hero {
  margin-bottom: 50px;
}

.ir-top-hero-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ir-top-hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-gray);
}

.ir-top-hero-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

.ir-top-hero-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.ir-top-hero-card-content {
  position: relative;
  padding: 10px;
  background: white;
  text-align: center;
}

.ir-top-hero-card-title {
  font: 700 18px/1.5 "Inter", "Noto Sans JP", sans-serif;
  padding: 0;
  margin: 0 0 4px;
}

.ir-top-hero-card-sub {
  font: 400 13px/1.5 "Inter", sans-serif;
  padding: 0;
  margin: 0;
}

.ir-top-section {
  margin-bottom: 80px;
}

.ir-top-section.ir-top-news {
  padding-top: 30px;
  background-color: #F1F1F1;
}

.ir-top-section.ir-top-stock {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #F1F1F1;
}

.ir-top-section:last-of-type {
  margin-bottom: 0;
}

.ir-top-section-head {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}

.ir-top-section-title-block {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 200px);
  margin: 0;
  text-align: center;
}

.ir-top-section-head>a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.ir-top-section-title-jp {
  font: 700 24px/1.4 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  margin: 0 0 4px;
}

.ir-top-section-title-en {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-dark);
  margin: 0;
}

.ir-top-rss-link {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: #0066cc;
  text-decoration: underline;
}

.ir-top-rss-link:hover {
  color: #004499;
}

.ir-top-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1.4 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-aa-red);
  padding: 8px 16px;
  border: 1px solid var(--color-aa-red);
  border-radius: var(--radius-tag);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ir-top-download-btn:hover {
  background: var(--color-aa-red);
  color: var(--color-white);
}

/* E-IR announcement_tab_irtop.js が #divDataArea に描画するブロック */
.ir-top-news-eir {
  margin-bottom: 30px;
}

.ir-top-news-eir #ir_library {
  margin: 0;
}

.ir-top-news-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.ir-top-news-item {
  border-bottom: 1px solid #eeeeee;
}

.ir-top-news-item:first-child {
  border-top: 1px solid #eeeeee;
}

.ir-top-news-item-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 16px 0;
  text-decoration: none;
  color: inherit;
}

.ir-top-news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ir-top-news-date {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-dark);
}

.ir-top-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 2px 8px;
  border-radius: var(--radius-tag);
  font: var(--font-meta);
  text-align: center;
  background: var(--color-tag-gray);
  color: var(--color-white);
}

.ir-top-tag--timely {
  background: #2e7d32;
  color: var(--color-white);
}

.ir-top-tag--pr {
  background: #ed6c02;
  color: var(--color-white);
}

.ir-top-news-title {
  flex: 1;
  min-width: 0;
  font: var(--font-body);
  color: var(--color-text-basic);
}

.ir-top-news-pdf {
  font: 400 12px/1.5 "Inter", sans-serif;
  color: var(--color-aa-red);
  flex-shrink: 0;
}

.ir-top-section-link-wrap {
  margin: 20px 0 0;
  text-align: center;
  padding-bottom: 30px;
  background: #F1F1F1;
}

.ir-top-library-grid {
  list-style: none;
  margin: 15px 30px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ir-top-library-card {
  margin: 0;
}

.ir-top-library-card-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 24px;
  height: 160px;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  position: relative;
}

.ir-top-library-card-link:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.ir-top-library-card-link--icon {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 24px 48px 24px 24px;
}

.ir-top-library-card-link--icon .ir-top-library-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  margin-left: 0;
}

.ir-top-library-card-link--icon .ir-top-library-card-label {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}

/* アイコン付きカード用：固定サイズで揃え、はみ出し防止 */
.ir-top-library-card-link--icon .ir-top-library-card-icon-img {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  margin-top: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.ir-top-library-card-link--icon .ir-top-library-card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ir-top-library-card-icon-img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ir-top-library-card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ir-top-library-card-label {
  font: 700 16px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  width: 100%;
  text-align: center;
}

.ir-top-library-card-date {
  width: 100%;
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-dark);
  text-align: left;
}

.ir-top-library-card-desc {
  width: 100%;
  font: 400 13px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  text-align: left;
}

.ir-top-library-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  flex-shrink: 0;
  width: 15px;
  height: 14px;
  background: url(../images/ArrowRt23.png) center center / contain no-repeat;
  border: none;
  border-radius: 0;
  display: block;
}

.ir-top-library-card-arrow .icon-chevron-right-small,
.ir-top-library-card-arrow>span {
  display: none;
}

.ir-top-stock-grid {
  list-style: none;
  margin: 15px 30px 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ir-top-stock-card {
  margin: 0;
}

.ir-top-stock-card-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 24px;
  height: 160px;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  position: relative;
}

.ir-top-stock-card-link:hover {
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.ir-top-stock-card-link--icon {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 24px 48px 24px 24px;
}

.ir-top-stock-card-link--icon .ir-top-library-card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  margin-left: 0;
}

.ir-top-stock-card-link--icon .ir-top-stock-card-label {
  width: 100%;
  text-align: center;
  flex-shrink: 0;
}

/* アイコン付きカード用：IRライブラリーと同じ 56px 固定で揃える */
.ir-top-stock-card-link--icon .ir-top-stock-card-icon-img {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  margin-top: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.ir-top-stock-card-link--icon .ir-top-stock-card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ir-top-stock-card-icon-img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ir-top-stock-card-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ir-top-stock-card-label {
  font: 700 16px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
  flex: 1;
  min-width: 0;
  text-align: center;
}

.ir-top-stock-card-desc {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-gray-dark);
  width: 100%;
}

.ir-top-policy-links {
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-gray-dark);
  margin: 0;
  text-align: center;
}

.ir-top-policy-links a {
  color: #0066cc;
  text-decoration: underline;
}

.ir-top-policy-links a:hover {
  color: #004499;
}

.ir-top-policy-sep {
  margin: 0 8px;
  color: var(--color-text-gray-dark);
}

/* ---------- IR 共通スタイル（固定ページ・サイドバーレイアウト内） ---------- */

/* IR ニュースラベルの色付け */
.eir-label,
.ir-top-tag {
  border-radius: 2px;
  font-size: 11px;
  padding: 2px 6px;
  color: #fff;
  font-weight: 700;
}

.ir-top-tag--pr,
.eir-label-pr {
  background: #F9A166 !important;
}

.ir-top-tag--ir,
.eir-label-ir {
  background: #B04663 !important;
}

.ir-top-tag--timely,
.eir-label-tdnet {
  background: #66B046 !important;
}

/* ---------- 既存サイト互換 IR（.irOutline） ---------- */
.irOutline .keyVisual {
  background: url(../images/iR/bgMV_ir.jpg) no-repeat center 50%;
  background-size: cover;
}

.irOutline .irOutlinePages .keyVisual {
  background: url(../images/iR/bgMV_ir.jpg) no-repeat center 25%;
  background-size: cover;
}

.irOutline .irOutlinePages .keyVisual h1 {
  padding: 20px 0;
  font-size: 30px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.irOutline ul.irnews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.irOutline ul.irnews li {
  float: none !important;
}

.irOutline .lidate {
  width: 80px;
  padding-bottom: 24px;
  padding-left: 8px;
}

.irOutline .lilink,
.irOutline ul.irnews li.lilink {
  white-space: nowrap !important;
}

.irOutline #ir_library {
  float: none !important;
}

.irContainer {
  padding: 60px 0;
  width: 100%;
}

.irContainer:nth-of-type(2n) {
  background: #f1f1f1;
}

.irContainer:nth-of-type(2n) .irListBox a {
  border: 1px solid #eaeaea;
  background: #f1f1f1;
}

.irContainer#irLibrary {
  padding-bottom: 25px;
}

.irContainer .irArea {
  margin: 0 auto;
  padding: 0;
  width: 960px;
  position: relative;
}

.irArea {
  padding-top: 85px;
  position: relative;
}

.irOutlineWrap {
  width: 960px;
  margin: 50px auto 80px;
  font-size: 15px;
}

.ir .irOutlineWrap {
  margin-top: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.irMovie .irOutlineWrap {
  margin-top: -35px;
  margin-bottom: 40px;
  width: 100%;
}

.irMovieCont {
  margin-bottom: 35px;
  text-align: center;
}

.irMovieCont iframe {
  margin-bottom: 25px;
  width: 100%;
}

.irMovieTitle {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.irMovieNote {
  font-size: 13px;
}

.irMovieList {
  margin: 0 auto;
  margin-bottom: 10px;
  width: 960px;
  font-size: 0;
}

.irMovieListInner {
  display: none;
}

.irMovieListInner.active {
  display: block;
}

.irMovieList .irMovieListItem {
  width: 306px;
  margin: 0;
  margin-right: 21px;
  margin-bottom: 20px;
  font-size: 14px;
  vertical-align: top;
  display: inline-block;
}

.irMovieList .irMovieListItem:nth-child(3n) {
  margin-right: 0;
}

.irMovieList .irMovieListItem a {
  display: block;
  color: #333;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}

.irMovieList .irMovieListItem a[target="_blank"]:before {
  content: "";
  width: 12px;
  height: 11px;
  display: block;
  background: url(../images/base/Icon_NewWin.gif) 0 0 /contain no-repeat;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.irMovieList .irMovieListItem a .movieThumb {
  margin-bottom: 10px;
}

.irMovieList .irMovieListItem a .movieThumb img {
  border-radius: 8px 8px 0 0;
}

.irMovieList .irMovieListItem a .CPDate1 {
  padding: 15px 30px 10px 30px;
  font-size: 14px;
  color: #999;
}

.irMovieList .irMovieListItem a .CP1 {
  padding: 0 30px 20px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  height: 7em;
  overflow: hidden;
}

.irMovieList .irMovieListItem a:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition-duration: 0.3s;
}

.irMovieListButton.active {
  display: none;
}

.irOutlineInner {
  width: 744px;
  margin: 0 auto 50px auto;
}

.irOutlineNavi {
  margin: 0 auto;
  width: 960px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.irOutlineNavi li {
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: center;
  width: 318px;
  height: 180px;
  padding-left: 2px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
  line-height: 1.25;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
  position: relative;
  transition: all .3s;
}

.irOutlineNavi li a {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  line-height: 1.25;
}

.irOutlineNavi li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: auto;
  width: 15px;
  height: 14px;
  background: url(../images/base/ArrowRt23.png) 0 0 /contain no-repeat;
  z-index: 1;
  transition: all .3s;
}

.irOutlineNavi li:hover:after {
  transform: translateX(4px);
}

.irOutlineNavi li p span,
.irOutlineNavi li a span {
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.irOutlineNavi li span small {
  font-size: 18px;
  font-weight: 300;
}

.irOutlineNavi li:nth-of-type(1) {
  background-image: url(../images/iR/listNav1.png);
}

.irOutlineNavi li:nth-of-type(2) {
  background-image: url(../images/iR/listNav1.png);
}

.irOutlineNavi li:nth-of-type(2) {
  cursor: pointer;
}

.irOutlineNavi li:nth-of-type(2):after {
  content: none;
}

.irOutlineNavi li:nth-of-type(3) {
  background-image: url(../images/iR/listNav1.png);
}

.irHeadline {
  margin-bottom: 35px !important;
  padding-bottom: 0 !important;
}

.irNewsLink {
  text-align: right;
  margin-bottom: 30px;
}

.irNewsLink.text {
  margin-right: 80px;
}

.irNewsLink.text a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  padding-left: 10px;
  font-size: 14px !important;
  color: #555;
  background: none;
  position: relative;
}

.irNewsLink.text a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 10px;
  background: url(../images/iR/arrow.png) center 0/auto no-repeat;
}

.irNewsLink.image {
  position: absolute;
  top: 8px;
  left: calc(50% + 100px);
}

.irListCont {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
}

.irListCont>:nth-of-type(3n),
.irListCont>:last-of-type {
  margin-right: 0;
}

.irListBox {
  margin-bottom: 35px;
  margin-right: 15px;
  width: 310px;
  height: 167px;
  border: 1px solid #eaeaea;
  background: #fff;
  position: relative;
  box-sizing: border-box;
}

.irListBox a {
  padding: 25px 25px 20px 20px;
  width: 100%;
  height: 100%;
  display: block;
  transition: all .3s;
  position: relative;
  box-sizing: border-box;
}

.irListBox a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 20px;
  margin: auto;
  width: 15px;
  height: 14px;
  background: url(../images/base/ArrowRt23.png) 0 0 /contain no-repeat;
  z-index: 1;
  transition: all .3s;
}

.irListBox a:hover {
  opacity: .7;
  text-decoration: none;
}

.irListBox a:hover:after {
  transform: translateX(4px);
}

.irListBox.bgHighlight a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 28px;
  right: calc(50% - 58px);
  margin: auto;
  width: 116px;
  height: 69px;
  background: url(../images/iR/iconHighlight.png) 0 0 /contain no-repeat;
  z-index: 1;
}

.irListBox.bgStockInformation a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: calc(50% - 43px);
  margin: auto;
  width: 92px;
  height: 75px;
  background: url(../images/iR/iconStockInformation.png) 0 0 /contain no-repeat;
  z-index: 1;
}

.irListBox.bgStockPriceInformation a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: calc(50% - 38px);
  margin: auto;
  width: 77px;
  height: 79px;
  background: url(../images/iR/iconStockPriceInformation.png) 0 0 /contain no-repeat;
  z-index: 1;
}

.irListBox.bgStockPriceInformation a:after {
  width: 17px;
  height: 17px;
  background: url(../images/base/iconNewWin1.png) 0 0 /contain no-repeat;
}

.irListBox.bgStockPriceInformation a:hover:after {
  transform: translate(0);
}

.irListBox.bgCalendar a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: calc(50% - 42px);
  margin: auto;
  width: 84px;
  height: 75px;
  background: url(../images/iR/iconCalendar.png) 0 0 /contain no-repeat;
  z-index: 1;
}

.irListTitle {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  line-height: 1;
  text-align: center;
}

.irListDate {
  margin-bottom: -2px;
  font-size: 13px;
  color: #999999;
  line-height: 1;
}

.irListText {
  font-size: 16px;
  color: #333333;
  line-height: 1.625;
  position: relative;
}

.irListText:after {
  content: "";
  display: inline-block;
  margin: auto;
  width: 26px;
  height: 20px;
  background: url(https://www.aainc.co.jp/pdf.gif) center center /auto no-repeat;
  position: relative;
  top: 4px;
  left: 2px;
}

.irLinkNavi {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.irLinkNavi li:not(:last-of-type) {
  margin-right: 25px;
}

.irLinkNavi li a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 10px;
  color: #333;
  position: relative;
}

.irLinkNavi li a:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 7px);
  left: -8px;
  margin: auto;
  width: 8px;
  height: 14px;
  background: url(../images/base/ArrowRt25.png) center 0/auto no-repeat;
}

.irMenuHeadline {
  margin-top: 45px;
  margin-bottom: 45px !important;
  padding-bottom: 20px !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #333 !important;
  line-height: 1 !important;
  text-align: center !important;
  border-bottom: 1px solid #dbdbdb;
}

.irMenuNavi {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.irMenuNavi li:not(:last-of-type) {
  margin-right: 140px;
}

.irMenuNavi li a {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  display: block;
  transition: all .3s;
}

.irMenuNavi li a small {
  font-size: 13px;
  font-weight: 300;
}

.irMenuNavi li a:hover {
  opacity: .7;
  text-decoration: none;
}

.irMenuNavi li a .irMenuImg {
  width: 120px;
  height: 120px;
  display: block;
  background-position: center center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.irMenuNavi li:nth-of-type(1) {
  border-bottom: 2px solid #fff;
}

.irMenuNavi li:nth-of-type(2) {
  border-bottom: 2px solid #fff;
}

.irMenuNavi li:nth-of-type(1) a .irMenuImg {
  background-image: url(../images/iR/menuNav1.png);
}

.irMenuNavi li:nth-of-type(2) a .irMenuImg {
  background-image: url(../images/iR/menuNav2.png);
}

.irMenuNavi li:nth-of-type(3) a .irMenuImg {
  background-image: url(../images/iR/menuNav3.png);
}

.irModal {
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  padding: 0 5vw;
  padding-top: 60px;
  width: 90vw;
  height: 90vh;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10010;
  transform: translate(-50%, -50%);
}

.irModal.active {
  opacity: 1;
  visibility: visible;
}

.irModalClose {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: calc(50% - 35vw);
  z-index: 10020;
}

.irModalClose span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.irModalClose span:before {
  content: "";
  width: 35px;
  height: 1px;
  display: block;
  background: #fff;
}

.irModal .irModalPlayer {
  margin: 0 auto;
  width: 560px;
  height: 315px;
  display: block;
  position: relative;
}

.irModal h2.irModalTitle {
  padding: 0 !important;
  margin-top: 15px !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1 !important;
  text-align: center !important;
  border: none !important;
}

.irModal h2.irModalTitle small {
  font-size: 12px !important;
  font-weight: 300 !important;
}

.irModal h3.irModalTitle {
  padding: 0 !important;
  margin-top: 65px !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1.2 !important;
  text-align: center !important;
  border: none !important;
}

.irModal h3.irModalTitle small {
  font-size: 15px !important;
  font-weight: 300 !important;
}

.irModal .irModalList {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 970px;
}

.irModal .irModalList li:not(:last-of-type) {
  margin-bottom: 30px;
}

.irModal .irModalList li {
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}

.irModal .irModalList li a {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  line-height: 1;
  text-align: left;
}

.irModal .irModalList li a[target="_blank"] {
  padding-right: 22px;
  position: relative;
}

.irModal .irModalList li a[target="_blank"]:before {
  content: "";
  width: 14px;
  height: 12px;
  display: block;
  background: url(../images/base/iconNewWin2.png) 0 0 /contain no-repeat;
  position: absolute;
  bottom: 2px;
  right: 0;
}

.irOverlay {
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, .8);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10000;
}

.irOverlay.active {
  opacity: 1;
  visibility: visible;
}

#irLibrary .buttonLink1,
#irStockInformation .buttonLink1 {
  position: absolute;
  top: 10px;
  right: 0;
}

div#jqir {
  margin: 0 auto;
}

.eir_calendar_image-pc {
  text-align: center;
}

/* ---------- 既存サイト互換 IR（.irOutline）SP版 ---------- */
@media (max-width: 750px) {

  /* IR 共通・ヘッダー（SP） */
  .parent-pageid-2125 .page-sidebar,
  .page-id-2125 .page-sidebar {
    margin-bottom: 24px;
  }

  .parent-pageid-2125 .page-sidebar-inner,
  .page-id-2125 .page-sidebar-inner {
    padding: 30px 0;
    min-height: 100px;
  }

  .parent-pageid-2125 .page-page-title-en,
  .page-id-2125 .page-page-title-en {
    font-size: 24px;
    margin-bottom: 4px;
  }

  .parent-pageid-2125 .page-page-title-jp,
  .page-id-2125 .page-page-title-jp {
    font-size: 14px;
  }

  .parent-pageid-2125 .page-breadcrumb,
  .page-id-2125 .page-breadcrumb {
    margin: 15px auto;
    font-size: 11px;
    padding: 0 16px;
  }

  .irOutline .keyVisual {
    background: url(../images/iR/bgMV_ir.jpg) no-repeat center 50%;
    background-size: cover;
  }

  .irOutline .irOutlinePages .keyVisual {
    background: url(../images/iR/bgMV_ir.jpg) no-repeat center 25%;
    background-size: cover;
  }

  .irOutline .irOutlinePages .keyVisual h1 {
    padding: calc(20 / 750 * 100vw) 0;
    font-size: calc(60 / 750 * 100vw);
  }

  .irContainer {
    padding: calc(60 / 750 * 100vw) 0;
    width: 100%;
  }

  .irContainer:nth-of-type(2n) {
    background: #f1f1f1;
  }

  .irContainer:nth-of-type(2n) .irListBox a {
    border: calc(2 / 750 * 100vw) solid #eaeaea;
    background: #f1f1f1;
  }

  .irContainer#irLibrary {
    padding-bottom: calc(50 / 750 * 100vw);
  }

  .irContainer .irArea {
    padding: 0;
    position: relative;
  }

  .irArea {
    margin: 0 calc(40 / 750 * 100vw);
    padding-top: calc(100 / 750 * 100vw);
    position: relative;
  }

  .irArea#irNews {
    padding-top: calc(80 / 750 * 100vw);
  }

  .irMovie .irOutlineWrap {
    margin-top: calc(-35 / 750 * 100vw);
    width: 100%;
  }

  .irMovieCont {
    margin-bottom: calc(35 / 750 * 100vw);
    text-align: center;
  }

  .irMovieCont iframe {
    margin-bottom: calc(25 / 750 * 100vw);
    width: calc(670 / 750 * 100vw);
    height: calc(375 / 750 * 100vw);
  }

  .irMovieTitle {
    margin-bottom: calc(25 / 750 * 100vw);
    font-size: calc(36 / 750 * 100vw);
    font-weight: 600;
  }

  .irMovieNote {
    font-size: calc(22 / 750 * 100vw);
  }

  .irMovieList {
    font-size: 0;
    width: 100%;
    margin: 0 auto;
  }

  .irMovieListInner {
    display: none;
  }

  .irMovieListInner.active {
    display: block;
  }

  .irMovieList .irMovieListItem {
    margin: 0;
    margin-bottom: calc(25 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
    vertical-align: top;
    display: inline-block;
  }

  .irMovieList .irMovieListItem a {
    display: block;
    color: #333;
    border-radius: calc(8 / 750 * 100vw);
    box-shadow: 0 0 calc(4 / 750 * 100vw) 0 rgba(0, 0, 0, 0.3);
    position: relative;
  }

  .irMovieList .irMovieListItem a[target="_blank"]:before {
    content: "";
    width: calc(26 / 750 * 100vw);
    height: calc(24 / 750 * 100vw);
    display: block;
    background: url(../images/base/Icon_NewWin.gif) 0 0 /contain no-repeat;
    position: absolute;
    bottom: calc(66 / 750 * 100vw);
    right: calc(66 / 750 * 100vw);
  }

  .irMovieList .irMovieListItem a .movieThumb {
    margin-bottom: calc(10 / 750 * 100vw);
  }

  .irMovieList .irMovieListItem a .movieThumb img {
    border-radius: calc(8 / 750 * 100vw) calc(8 / 750 * 100vw) 0 0;
  }

  .irMovieList .irMovieListItem a .CPDate1 {
    padding: calc(45 / 750 * 100vw) calc(66 / 750 * 100vw) calc(5 / 750 * 100vw) calc(60 / 750 * 100vw);
    font-size: calc(28 / 750 * 100vw);
    color: #999;
  }

  .irMovieList .irMovieListItem a .CP1 {
    padding: 0 calc(66 / 750 * 100vw) calc(30 / 750 * 100vw) calc(60 / 750 * 100vw);
    font-size: calc(34 / 750 * 100vw);
    font-weight: 600;
    color: #333;
    height: 7em;
    overflow: hidden;
  }

  .irMovieListButton.active {
    display: none;
  }

  .irOutlineWrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 0 calc(80 / 750 * 100vw);
  }

  .irOutlineNavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .irOutlineNavi li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    width: calc(669 / 750 * 100vw);
    height: calc(128 / 750 * 100vw);
    font-size: calc(36 / 750 * 100vw);
    font-weight: 600;
    color: #333;
    line-height: 1.25;
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
    position: relative;
    transition: all .3s;
  }

  .irOutlineNavi li a {
    font-size: calc(36 / 750 * 100vw);
    font-weight: 600;
    color: #333;
    line-height: 1.25;
  }

  .irOutlineNavi li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(25 / 750 * 100vw);
    right: calc(25 / 750 * 100vw);
    margin: auto;
    width: calc(31 / 750 * 100vw);
    height: calc(27 / 750 * 100vw);
    background: url(../images/base/ArrowRt23.png) 0 0 /contain no-repeat;
    z-index: 1;
    transition: all .3s;
  }

  .irOutlineNavi li p span,
  .irOutlineNavi li a span {
    width: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .irOutlineNavi li span small {
    font-size: calc(24 / 750 * 100vw);
    font-weight: 300;
  }

  .irOutlineNavi li:not(:last-of-type) {
    margin-bottom: calc(4 / 750 * 100vw);
  }

  .irOutlineNavi li:nth-of-type(1) {
    background-image: url(../images/iR/listNav1_sp.png);
  }

  .irOutlineNavi li:nth-of-type(2) {
    background-image: url(../images/iR/listNav1_sp.png);
  }

  .irOutlineNavi li:nth-of-type(2):after {
    content: none;
  }

  .irOutlineNavi li:nth-of-type(3) {
    background-image: url(../images/iR/listNav1_sp.png);
  }

  .irHeadline {
    margin-bottom: calc(40 / 750 * 100vw) !important;
    padding-bottom: 0 !important;
    font-weight: 600 !important;
  }

  .irNewsLink {
    position: absolute;
    right: 0;
    z-index: 1;
  }

  .irNewsLink.text {
    bottom: -9.33333vw;
  }

  .irNewsLink.text a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    padding-left: 10px;
    font-size: 12px !important;
    color: #555;
    background: none;
    position: relative;
  }

  .irNewsLink.text a:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 5px;
    height: 10px;
    background: url(../images/iR/arrow.png) center 0/auto no-repeat;
  }

  .irNewsLink.image {
    top: 0;
  }

  .irOutline ul.irnews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .irOutline ul.irnews li {
    float: none !important;
  }

  ul.irnews {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  ul.irnews li {
    float: none !important;
  }

  .lidate {
    width: 80px;
  }

  .lilink,
  ul.irnews li.lilink {
    margin-top: 1.33333vw;
    padding-bottom: 1.33333vw;
    white-space: nowrap !important;
  }

  #ir_library {
    margin-bottom: calc(30 / 750 * 100vw);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: none !important;
  }

  .irListCont {
    margin-bottom: calc(30 / 750 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .irListCont>:not(:last-of-type) {
    margin-bottom: calc(30 / 750 * 100vw);
  }

  .irListBox {
    width: 100%;
    background: #f1f1f1;
    position: relative;
  }

  .irListBox a {
    padding: calc(40 / 750 * 100vw);
    width: 100%;
    height: 100%;
    display: block;
    transition: all .3s;
    position: relative;
    box-sizing: border-box;
  }

  .irListBox a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(20 / 750 * 100vw);
    right: calc(20 / 750 * 100vw);
    margin: auto;
    width: calc(31 / 750 * 100vw);
    height: calc(27 / 750 * 100vw);
    background: url(../images/base/ArrowRt23.png) 0 0 /contain no-repeat;
    z-index: 1;
    transition: all .3s;
  }

  .irListBox.bgHighlight a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: calc(20 / 750 * 100vw);
    margin: auto;
    width: calc(116 / 750 * 100vw);
    height: calc(69 / 750 * 100vw);
    background: url(../images/iR/iconHighlight.png) center center /contain no-repeat;
    z-index: 1;
    transform: translateY(-50%);
  }

  .irListBox.bgStockInformation a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: calc(20 / 750 * 100vw);
    margin: auto;
    width: calc(92 / 750 * 100vw);
    height: calc(75 / 750 * 100vw);
    background: url(../images/iR/iconStockInformation.png) center center /contain no-repeat;
    z-index: 1;
    transform: translateY(-50%);
  }

  .irListBox.bgStockPriceInformation a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: calc(30 / 750 * 100vw);
    margin: auto;
    width: calc(77 / 750 * 100vw);
    height: calc(79 / 750 * 100vw);
    background: url(../images/iR/iconStockPriceInformation.png) center center /contain no-repeat;
    z-index: 1;
    transform: translateY(-50%);
  }

  .irListBox.bgStockPriceInformation a:after {
    bottom: calc(20 / 750 * 100vw);
    right: calc(20 / 750 * 100vw);
    width: calc(34 / 750 * 100vw);
    height: calc(34 / 750 * 100vw);
    background: url(../images/base/iconNewWin1.png) 0 0 /contain no-repeat;
  }

  .irListBox.bgCalendar a:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: calc(35 / 750 * 100vw);
    margin: auto;
    width: calc(84 / 750 * 100vw);
    height: calc(75 / 750 * 100vw);
    background: url(../images/iR/iconCalendar.png) center center /contain no-repeat;
    z-index: 1;
    transform: translateY(-50%);
  }

  .irListInner {
    height: calc(130 / 750 * 100vw);
  }

  .irListTitle {
    margin-bottom: calc(5 / 750 * 100vw);
    font-size: calc(32 / 750 * 100vw);
    font-weight: 600;
    color: #333333;
    line-height: 1;
    text-align: center;
  }

  .irListDate {
    margin-bottom: calc(14 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
    color: #999999;
    line-height: 1;
  }

  .irListText {
    font-size: calc(28 / 750 * 100vw);
    color: #333333;
    line-height: 1.625;
    position: relative;
  }

  .irListText:after {
    content: "";
    display: inline-block;
    margin: auto;
    width: calc(38 / 750 * 100vw);
    height: calc(34 / 750 * 100vw);
    background: url(https://www.aainc.co.jp/pdf.gif) center center /auto no-repeat;
    position: relative;
    top: calc(8 / 750 * 100vw);
    left: calc(4 / 750 * 100vw);
  }

  .irLinkNavi {
    margin-top: calc(25 / 750 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .irLinkNavi li:not(:last-of-type) {
    margin-right: calc(35 / 750 * 100vw);
  }

  .irLinkNavi li a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: calc(15 / 750 * 100vw);
    font-size: calc(26 / 750 * 100vw);
    color: #333;
    position: relative;
  }

  .irLinkNavi li a:before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 14 / 750 * 100vw);
    left: calc(-10 / 750 * 100vw);
    margin: auto;
    width: calc(16 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
    background: url(../images/base/ArrowRt25.png) center 0/auto no-repeat;
  }

  .irMenuHeadline {
    margin-top: calc(70 / 750 * 100vw);
    margin-bottom: calc(60 / 750 * 100vw) !important;
    padding-bottom: calc(20 / 750 * 100vw) !important;
    font-size: calc(36 / 750 * 100vw) !important;
    font-weight: 600 !important;
    color: #333 !important;
    line-height: 1 !important;
    text-align: center !important;
    border-bottom: 1px solid #dbdbdb;
  }

  .irMenuNavi {
    margin-bottom: calc(80 / 750 * 100vw);
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .irMenuNavi li:not(:last-of-type) {
    margin-right: calc(60 / 750 * 100vw);
  }

  .irMenuNavi li a {
    font-size: calc(26 / 750 * 100vw);
    font-weight: 600;
    color: #333333;
    text-align: center;
    display: block;
    transition: all .3s;
  }

  .irMenuNavi li a small {
    font-size: calc(18 / 750 * 100vw);
    font-weight: 300;
  }

  .irMenuNavi li a:hover {
    text-decoration: none;
  }

  .irMenuNavi li a .irMenuImg {
    width: calc(170 / 750 * 100vw);
    height: calc(170 / 750 * 100vw);
    display: block;
    background-position: center center;
    background-size: 100%;
    background-repeat: no-repeat;
  }

  .irMenuNavi li:nth-of-type(1) {
    border-bottom: 2px solid #fff;
  }

  .irMenuNavi li:nth-of-type(2) {
    border-bottom: 2px solid #fff;
  }

  .irMenuNavi li:nth-of-type(1) a .irMenuImg {
    background-image: url(../images/iR/menuNav1.png);
  }

  .irMenuNavi li:nth-of-type(2) a .irMenuImg {
    background-image: url(../images/iR/menuNav2.png);
  }

  .irMenuNavi li:nth-of-type(3) a .irMenuImg {
    background-image: url(../images/iR/menuNav3.png);
  }

  .irModal {
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    width: calc(700 / 750 * 100vw);
    height: calc(1250 / 750 * 100vw);
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10010;
    transform: translate(-50%, -50%);
  }

  .irModal.active {
    opacity: 1;
    visibility: visible;
  }

  .irModalClose {
    cursor: pointer;
    position: fixed;
    top: calc(40 / 750 * 100vw);
    right: 0;
    z-index: 10020;
  }

  .irModalClose span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }

  .irModalClose span:before {
    content: "";
    width: calc(60 / 750 * 100vw);
    height: calc(2 / 750 * 100vw);
    display: block;
    background: #fff;
  }

  .irModalClose span:nth-of-type(2n-1) {
    transform: rotate(45deg);
  }

  .irModalClose span:nth-of-type(2n) {
    transform: rotate(135deg);
  }

  .irModal .irModalPlayer {
    margin: 0 auto;
    margin-top: calc(100 / 750 * 100vw);
    width: calc(700 / 750 * 100vw);
    height: calc(390 / 750 * 100vw);
    display: block;
    position: relative;
  }

  .irModal h2.irModalTitle {
    padding: 0 !important;
    margin-top: calc(30 / 750 * 100vw) !important;
    font-size: calc(40 / 750 * 100vw) !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    text-align: center !important;
    border: none !important;
  }

  .irModal h2.irModalTitle small {
    margin-top: calc(20 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw) !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    display: inline-block;
  }

  .irModal h3.irModalTitle {
    padding: 0 !important;
    margin-top: calc(50 / 750 * 100vw) !important;
    margin-bottom: 0 !important;
    font-size: calc(36 / 750 * 100vw) !important;
    font-weight: 600 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    text-align: center !important;
    border: none !important;
  }

  .irModal h3.irModalTitle small {
    font-size: calc(32 / 750 * 100vw) !important;
    font-weight: 300 !important;
  }

  .irModal .irModalList {
    margin-top: calc(30 / 750 * 100vw);
  }

  .irModal .irModalList li:not(:last-of-type) {
    margin-bottom: calc(30 / 750 * 100vw);
  }

  .irModal .irModalList li {
    padding-left: 1em;
    text-indent: -1em;
    padding-bottom: calc(16 / 750 * 100vw);
    border-bottom: calc(2 / 750 * 100vw) solid #fff;
  }

  .irModal .irModalList li a {
    font-size: calc(24 / 750 * 100vw);
    color: #fff;
    font-weight: 300;
    line-height: 1;
    text-align: left;
  }

  .irModal .irModalList li a[target="_blank"] {
    padding-right: calc(44 / 750 * 100vw);
    position: relative;
  }

  .irModal .irModalList li a[target="_blank"]:before {
    content: "";
    width: calc(28 / 750 * 100vw);
    height: calc(24 / 750 * 100vw);
    display: block;
    background: url(../images/base/iconNewWin2.png) 0 0 /contain no-repeat;
    position: absolute;
    bottom: calc(2 / 750 * 100vw);
    right: 0;
  }

  .irOverlay {
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10000;
  }

  .irOverlay.active {
    opacity: 1;
    visibility: visible;
  }

  div#jqir {
    margin: 0 auto;
  }
}

/* ---------- Media Banner Section ---------- */
.media-section {
  background: var(--color-white);
  padding: 40px;
  overflow: hidden;
}

.media-section-inner {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.media-banner-box {
  width: 280px;
  background: var(--color-white);
  border-radius: var(--radius-box);
  box-shadow: var(--shadow-card);
  padding: 0 32px;
  display: flex;
  align-items: center;
}

.media-banner-box img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-box);
}

/* ---------- Footer (Figma 194-9204 / 73-3627) ---------- */
.footer {
  background: linear-gradient(to bottom, #ffffff 50%, #f6f7fa 50%);
  padding: 40px;
  overflow: hidden;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.footer-main {
  background: #6f7987;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 auto;
  min-width: 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img,
.footer-logo-img {
  height: 60px;
  width: 157px;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.2;
}

.footer-logo-text-main {
  font: 700 20px/1.2 "Inter", "Noto Sans JP", sans-serif;
  color: #ffffff;
}

.footer-logo-text-sub {
  font: 400 14px/1.2 "Inter", "Noto Sans JP", sans-serif;
  color: #ffffff;
}

.footer-address {
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #ffffff;
}

.footer-address p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-social-icon:hover {
  opacity: 0.8;
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-social-icon.x-icon {
  background: #000;
}

.footer-social-icon.x-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-social-icon.note-icon {
  background: var(--color-white);
  border: 1px solid #e0e0e0;
}

.footer-social-icon.note-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: none;
}

.footer-nav {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 24px 40px 0 0;
}

.footer-nav-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.footer-nav-group:not(:has(.footer-nav-list)) {
  gap: 0;
}

.footer-nav-simple {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.footer-nav-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1 "Inter", "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-nav-title:hover {
  opacity: 0.8;
}

.footer-nav-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav-icon::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
  margin-left: -1px;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
  margin: 0 0 0 19.5px;
  list-style: disc;
}

.footer-nav-list li {
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  color: #ffffff;
  margin-left: 0;
  transition: opacity 0.2s;
}

.footer-nav-list li a {
  color: inherit;
  text-decoration: none;
}

.footer-nav-list li a:hover {
  opacity: 0.8;
}

.footer-nav-list li::marker {
  color: #ffffff;
}

.footer-nav-list li a[target="_blank"] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-nav-list li a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  position: relative;
  top: -0.5px;
  flex-shrink: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-bottom-left {
  flex: 1 0 0;
  display: flex;
  align-items: center;
}

.footer-jpx img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-bottom-right {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 32px;
  font: 400 13px/1 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-basic);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-copyright {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-basic);
}

/* ---------- Responsive (Tablet) ---------- */
@media (max-width: 1200px) {
  :root {
    --section-padding: 80px 24px;
  }

  .header-inner {
    padding: 16px 24px;
    gap: 24px;
  }

  .main-nav {
    gap: 16px;
  }

  .why-header {
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }

  .service-header {
    flex-direction: column;
    gap: 24px;
  }

  .clients-header {
    flex-direction: column;
    gap: 24px;
  }

  .clients-content {
    flex-direction: column;
  }

  .clients-case-study {
    width: 100%;
    background: none;
    padding: 0;
    border-radius: 0;
  }

  .case-study-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .case-study-slider::-webkit-scrollbar {
    display: none;
  }

  .case-study-card {
    width: calc(100vw - 64px);
    max-width: 400px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .case-study-card .card-thumbnail {
    height: auto;
    aspect-ratio: 16/9;
  }

  .case-study-card .card-text {
    min-height: 160px;
  }

  .ir-header {
    flex-direction: column;
  }

  .ir-contents {
    padding-top: 0;
    flex-direction: column;
  }

  .ir-info-wrap {
    width: 100%;
  }

  .privacy-section {
    padding: 140px 24px 80px;
  }

  .footer-main {
    padding: 32px 24px;
  }

  .footer-nav {
    gap: 24px;
    padding-right: 0;
    flex-wrap: wrap;
  }
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 16px;
  }

  .header {
    height: 76px;
  }

  .header-inner {
    padding: 8px 24px;
    justify-content: space-between;
  }

  .header-logo img {
    height: 60px;
  }

  .main-nav {
    display: none;
  }

  .sub-nav {
    display: none;
  }

  .header-search-panel {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
    margin-left: auto;
  }

  .mega-menu {
    display: none !important;
  }

  .section-title-en {
    font-size: 36px;
  }

  .section-title-jp {
    font-size: 18px;
  }

  .section-title-block {
    width: auto;
    gap: 16px;
  }

  .mv {
    height: 600px;
  }

  .why-section {
    border-radius: 32px 32px 0 0;
    padding: 40px 24px;
  }

  .mv-why-header {
    bottom: 32px;
    left: 24px;
    right: 24px;
    max-width: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mv-why-header .why-title-block {
    gap: 8px;
  }

  .mv-why-header .why-title-en {
    font-size: 28px;
  }

  .mv-why-header .why-title-jp {
    font-size: 16px;
  }

  .mv-why-header .why-title-jp p {
    margin: 0 0 2px;
  }

  .mv-why-header .why-title-jp p:last-child {
    margin-bottom: 0;
  }

  .mv-why-header .why-description {
    width: 100%;
    font-size: 13px;
    line-height: 1.75;
  }

  .mv-why-header .why-description p {
    margin: 0 0 6px;
  }

  .mv-why-header .why-description p:last-child {
    margin-bottom: 0;
  }

  .mv-text {
    left: 24px;
    right: 24px;
    margin-left: 0;
    white-space: normal;
  }

  .mv-text .text-large {
    font-size: 28px;
  }

  .mv-text .text-small {
    font-size: 24px;
  }

  .card-box {
    width: calc(100vw - 64px);
    max-width: 400px;
  }

  .card-thumbnail {
    height: auto;
    aspect-ratio: 16/9;
  }

  .card-text {
    height: auto;
    min-height: 160px;
  }

  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .client-logo-item img {
    max-width: 120px;
    max-height: 50px;
  }

  .ir-info-box {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .tag-file-type {
    margin-left: 0;
  }

  .footer {
    padding: 32px 24px;
  }

  .footer-inner {
    gap: 0;
  }

  .footer-main {
    padding: 32px 24px;
    flex-direction: row;
  }

  .footer-brand {
    order: 1;
    flex: 1 0 0;
    align-items: flex-end;
    gap: 23px;
    min-width: 0;
  }

  .footer-address {
    text-align: right;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0;
    padding: 0;
    flex: 0 0 auto;
    order: -1;
  }

  .footer-nav-group {
    gap: 0;
  }

  .footer-nav-group .footer-nav-list {
    display: none;
  }

  .footer-nav-simple {
    display: contents;
  }

  .footer-nav-title {
    padding: 12px 0;
  }

  .footer-bottom {
    padding: 32px 0 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom-left {
    flex: 0 0 auto;
  }

  .footer-bottom-right {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
  }

  .privacy-section {
    padding: 120px 16px 60px;
  }

  .privacy-header {
    margin-bottom: 32px;
  }

  .privacy-contact-box {
    padding: 16px;
  }

  .media-section-inner {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== 個人情報に関する公表事項ページ ========== */
.privacy-announce-page {
  max-width: none;
  /* スケルトン .site-main の 1600px を上書き */
  padding: calc(80px + 60px) 40px 100px;
  min-height: 100vh;
}

.privacy-announce-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-text-gray-light);
}

.privacy-announce-title {
  font: var(--font-section-title-jp);
  color: var(--color-text-base);
  font-size: 28px;
}

.privacy-announce-content {
  font: var(--font-body);
  color: var(--color-text-basic);
}

.privacy-section {
  margin-bottom: 48px;
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-h2 {
  font: var(--font-section-title-jp);
  font-size: 20px;
  color: var(--color-text-base);
  margin-bottom: 20px;
  padding-bottom: 8px;
}

.privacy-h3 {
  font: 500 16px/1.65 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  margin: 28px 0 12px;
}

.privacy-announce-content p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
  line-height: 1.7;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-box);
  overflow: hidden;
}

.privacy-table th,
.privacy-table td {
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  vertical-align: top;
}

.privacy-table th {
  background: var(--color-bg-gray);
  font-weight: 700;
  color: var(--color-text-base);
  width: 28%;
  min-width: 160px;
}

.privacy-table td {
  color: var(--color-text-basic);
}

.privacy-list {
  margin: 12px 0 24px;
  padding-left: 1.2em;
  list-style: disc;
}

.privacy-list li {
  margin-bottom: 16px;
  line-height: 1.8;
}

.privacy-list li:last-child {
  margin-bottom: 0;
}

.privacy-contact .privacy-address {
  font-style: normal;
  margin-top: 12px;
}

.privacy-address p {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .privacy-announce-page {
    padding: calc(80px + 24px) 20px 60px;
  }

  .privacy-announce-title {
    font-size: 22px;
  }

  .privacy-table {
    display: block;
    font-size: 13px;
  }

  .privacy-table thead {
    display: none;
  }

  .privacy-table tr {
    display: block;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--color-bg-gray);
    border-radius: var(--radius-box);
  }

  .privacy-table td {
    display: block;
    padding: 8px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .privacy-table td:last-child {
    border-bottom: none;
  }

  .privacy-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--color-text-base);
    display: block;
    margin-bottom: 4px;
  }
}

/* ========== 情報セキュリティ方針ページ ========== */
.security-page {
  max-width: none;
  /* スケルトン .site-main の 1600px を上書き */
  padding: calc(80px + 60px) 40px 100px;
  min-height: 100vh;
}

.security-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-text-gray-light);
}

.security-title {
  font: var(--font-section-title-jp);
  color: var(--color-text-base);
  font-size: 28px;
  margin-bottom: 8px;
}

.security-title-en {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: var(--color-text-basic);
  margin: 0;
}

.security-content {
  font: var(--font-body);
  color: var(--color-text-basic);
}

.security-section {
  margin-bottom: 40px;
}

.security-section.security-sign {
  margin-top: 32px;
  margin-bottom: 48px;
  text-align: right;
}

.security-lead {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-base);
  margin-bottom: 0;
}

.security-content p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.security-content p:last-of-type {
  margin-bottom: 0;
}

.security-policy-list {
  list-style: none;
  counter-reset: security-item;
  margin: 0;
  padding: 0;
}

.security-policy-list li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 1.2em;
  font: var(--font-body);
  color: var(--color-text-basic);
  line-height: 1.8;
}

.security-policy-list li::before {
  counter-increment: security-item;
  content: "(" counter(security-item) ")";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-text-base);
}

.security-policy-list li:last-child {
  margin-bottom: 0;
}

.security-dates {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-gray-light);
  margin-bottom: 24px;
}

.security-signature {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-base);
  margin: 0;
}

.security-back {
  margin-top: 48px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .security-page {
    padding: calc(80px + 24px) 20px 60px;
  }

  .security-title {
    font-size: 22px;
  }
}

/* ========== 企業理念ページ ========== */
.vision-page {
  padding: calc(80px + 60px) 40px 100px;
  min-height: 100vh;
}

.vision-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-text-gray-light);
}

.vision-title {
  font: var(--font-section-title-jp);
  color: var(--color-text-base);
  font-size: 28px;
  margin: 0;
}

.vision-content {
  font: var(--font-body);
  color: var(--color-text-basic);
}

.vision-section {
  margin-bottom: 48px;
}

.vision-section:last-child {
  margin-bottom: 0;
}

.vision-h2 {
  font: var(--font-section-title-jp);
  font-size: 24px;
  color: var(--color-text-base);
  margin-bottom: 16px;
}

.vision-lead {
  font: 500 16px/1.65 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  margin: 0 0 32px;
  line-height: 1.8;
}

.vision-h3 {
  font: var(--font-section-title-jp);
  font-size: 20px;
  color: var(--color-text-base);
  margin: 0 0 16px;
  padding-bottom: 8px;
}

.vision-h4 {
  font: 500 18px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  margin: 0 0 20px;
}

.vision-h4-en {
  display: block;
  font: 400 14px/1.5 "Inter", sans-serif;
  color: var(--color-text-basic);
  margin-top: 4px;
}

.vision-h5 {
  font: 500 16px/1.65 "Inter", "Noto Sans JP", sans-serif;
  color: var(--color-text-base);
  margin: 28px 0 12px;
}

.vision-h5-en {
  font: 400 14px/1.5 "Inter", sans-serif;
  color: var(--color-text-basic);
}

.vision-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.vision-content p:last-of-type {
  margin-bottom: 0;
}

.vision-signature {
  margin-top: 40px !important;
  margin-bottom: 0 !important;
  text-align: right;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-base);
}

@media (max-width: 768px) {
  .vision-page {
    padding: calc(80px + 24px) 20px 60px;
  }

  .vision-title {
    font-size: 22px;
  }

  .vision-h2 {
    font-size: 20px;
  }
}

/* ========== ニュース詳細・会社情報・経営陣・事業戦略（共通ラッパー／レイアウト + 各ページ専用） ========== */

/* ---------- News Detail / Subpage layout (single + company/mgmt/strategy で共通) ---------- */

/* ヘッダー .header-inner と同じ左端に揃える（max-width: 1600px + padding 40px） */
.news-contents,
.page-contents {
  background: #fff;
  padding: 60px 40px 100px;
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
}

.news-breadcrumb,
.page-breadcrumb,
.ir-faq-breadcrumb,
.ir-tanshin-breadcrumb,
.ir-top-breadcrumb {
  display: flex;
  gap: 16px;
  align-items: center;
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #737070;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.news-breadcrumb a,
.page-breadcrumb a,
.ir-faq-breadcrumb a,
.ir-tanshin-breadcrumb a,
.ir-top-breadcrumb a {
  color: #737070;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.news-breadcrumb a:hover,
.page-breadcrumb a:hover,
.ir-faq-breadcrumb a:hover,
.ir-tanshin-breadcrumb a:hover,
.ir-top-breadcrumb a:hover {
  color: #302a2b;
}

.news-breadcrumb-home-icon,
.page-breadcrumb-home-icon,
.ir-faq-breadcrumb-home-icon,
.ir-tanshin-breadcrumb-home-icon,
.ir-top-breadcrumb-home-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.news-breadcrumb-sep,
.news-breadcrumb-current,
.page-breadcrumb-sep,
.page-breadcrumb-current,
.ir-faq-breadcrumb-sep,
.ir-faq-breadcrumb-current,
.ir-tanshin-breadcrumb-sep,
.ir-tanshin-breadcrumb-current,
.ir-top-breadcrumb-sep,
.ir-top-breadcrumb-current {
  color: #737070;
}

.news-breadcrumb-current,
.page-breadcrumb-current,
.ir-faq-breadcrumb-current,
.ir-tanshin-breadcrumb-current,
.ir-top-breadcrumb-current {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Two-column layout（ヘッダー・パンくずと左端を一直線に揃えるため左寄せ） */
.news-layout,
.page-layout {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  max-width: 1460px;
  margin: 0;
}

.news-sidebar,
.page-sidebar {
  width: 280px;
  flex-shrink: 0;
}

.news-sidebar-inner,
.page-sidebar-inner {
  position: sticky;
  top: 100px;
}

.news-page-title-en,
.page-page-title-en {
  font: 200 60px/1 "Inter", sans-serif;
  color: #f05064;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.news-page-title-jp,
.page-page-title-jp {
  font: 700 24px/1.55 "Inter", "Noto Sans JP", sans-serif;
  color: #302a2b;
}

.news-content,
.page-content {
  flex: 1;
  min-width: 0;
  max-width: 1080px;
}

/* 固定ページ本文（page.php） */
.page-entry-content {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

/* News article (single 専用) */
.news-article-header {
  margin-bottom: 32px;
}

.news-article-title {
  font: 700 32px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.news-article-date {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: #737070;
}

.news-main-visual {
  width: 100%;
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
}

.news-main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.news-article-body {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 60px;
}

.news-article-body p {
  margin-bottom: 1.8em;
}

.news-article-body p:last-child {
  margin-bottom: 0;
}

.news-article-body a {
  color: #1e1e1e;
  text-decoration: underline;
  transition: color 0.2s;
}

.news-article-body a:hover {
  color: #f05064;
}

.news-article-body h3 {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-top: 48px;
  margin-bottom: 24px;
}

.news-article-body h3:first-of-type {
  margin-top: 0;
}

.news-article-body img {
  margin: 24px 0;
}

.news-section-heading {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-top: 48px;
  margin-bottom: 24px;
}

.news-section-heading:first-of-type {
  margin-top: 0;
}

.news-list {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 1.8em;
}

.news-list li {
  margin-bottom: 0.5em;
}

.news-list li:last-child {
  margin-bottom: 0;
}

.news-promo-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.news-promo-images img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.news-company-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.news-company-table-title {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.news-info-table {
  width: 100%;
  border-collapse: collapse;
}

.news-info-table tr {
  border-bottom: 1px solid #e0e0e0;
}

.news-info-table tr:last-child {
  border-bottom: none;
}

.news-info-table th {
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #737070;
  padding: 16px 0;
  text-align: left;
  width: 140px;
  vertical-align: top;
}

.news-info-table td {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  padding: 16px 0;
}

.news-info-table td a {
  color: #1e1e1e;
  text-decoration: underline;
  transition: color 0.2s;
}

.news-info-table td a:hover {
  color: #f05064;
}

/* ---------- General Tables in Article Body ---------- */
.news-article-body table,
.news-article-body .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.news-article-body table tr,
.news-article-body .wp-block-table table tr {
  border-bottom: 1px solid #e0e0e0;
}

.news-article-body table tr:last-child,
.news-article-body .wp-block-table table tr:last-child {
  border-bottom: none;
}

.news-article-body table th,
.news-article-body .wp-block-table table th {
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #737070;
  padding: 16px 0;
  text-align: left;
  width: 140px;
  vertical-align: top;
}

.news-article-body table td,
.news-article-body .wp-block-table table td {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  padding: 16px 0;
}

.news-article-body table td a,
.news-article-body .wp-block-table table td a {
  color: #1e1e1e;
  text-decoration: underline;
  transition: color 0.2s;
}

.news-article-body table td a:hover,
.news-article-body .wp-block-table table td a:hover {
  color: #f05064;
}

.news-share-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid #e0e0e0;
}

.news-share {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-share-btn {
  padding: 12px 24px;
  background: #f05064;
  border: 1px solid #f05064;
  border-radius: 100px;
  color: #fff;
  font: 400 16px/1 "Inter", "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: opacity 0.2s;
}

.news-share-btn:hover {
  opacity: 0.85;
}

.news-share-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.news-share-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.news-share-icon:hover {
  opacity: 0.7;
}

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

.news-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.news-nav-link {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #302a2b;
  text-decoration: underline;
  transition: color 0.2s;
}

.news-nav-link:hover {
  color: #f05064;
}

@media (max-width: 1079px) {

  .news-contents,
  .page-contents {
    padding: 60px 24px 80px;
  }

  .news-layout,
  .page-layout {
    flex-direction: column;
    gap: 40px;
  }

  .news-sidebar,
  .page-sidebar {
    width: 280px;
  }

  .news-sidebar-inner,
  .page-sidebar-inner {
    position: static;
  }

  .news-page-title-en,
  .page-page-title-en {
    font-size: 60px;
  }

  .news-article-title {
    font-size: 28px;
  }

  .news-promo-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ir-top-hero-inner {
    grid-template-columns: 1fr;
  }

  .ir-top-library-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ir-top-stock-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 599px) {

  html {
    overflow-x: hidden;
  }

  .news-main,
  .page-main {
    width: 100%;
    overflow-x: hidden;
  }

  .news-contents,
  .page-contents {
    padding: 40px 16px 60px;
    padding-top: 80px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  .news-layout,
  .page-layout {
    max-width: 100%;
    flex-direction: column;
    gap: 40px;
  }

  .news-content,
  .page-content {
    min-width: 0;
    overflow-x: hidden;
    max-width: 100%;
  }

  .news-article-body {
    margin-bottom: 40px;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .news-article-body a {
    word-break: break-all;
  }

  .news-article-body img,
  .news-article-body .wp-block-image img {
    max-width: 100%;
    height: auto;
  }

  .news-article-body iframe,
  .news-article-body figure,
  .news-article-body .wp-block-table {
    max-width: 100%;
  }

  .news-article-body pre,
  .news-article-body .wp-block-code,
  .news-article-body .wp-block-preformatted {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .news-article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .news-article-body .news-info-table {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .news-article-body .news-info-table th,
  .news-article-body .news-info-table td {
    word-break: break-word;
  }

  .news-breadcrumb,
  .page-breadcrumb {
    margin-bottom: 40px;
  }

  .news-breadcrumb-current,
  .page-breadcrumb-current,
  .ir-faq-breadcrumb-current,
  .ir-tanshin-breadcrumb-current,
  .ir-top-breadcrumb-current {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .news-sidebar,
  .page-sidebar {
    width: auto;
  }

  .news-sidebar-inner,
  .page-sidebar-inner {
    position: static;
  }

  .news-page-title-en,
  .page-page-title-en {
    font-size: 42px;
    letter-spacing: 0.21px;
  }

  .news-page-title-jp,
  .page-page-title-jp {
    font-size: 18px;
  }

  .news-article-title {
    font-size: 24px;
    line-height: 1.6;
  }

  .news-main-visual {
    margin-bottom: 32px;
  }

  .news-article-body h3,
  .news-section-heading {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .news-promo-images {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0;
  }

  .ir-top-library-grid {
    grid-template-columns: 1fr;
  }

  .ir-top-stock-grid {
    grid-template-columns: 1fr;
  }

  .news-company-info {
    margin-bottom: 40px;
  }

  .news-info-table th {
    width: 100px;
    font-size: 12px;
    padding: 12px 0;
  }

  .news-info-table td {
    font-size: 14px;
    padding: 12px 0;
  }

  .news-article-body table th,
  .news-article-body .wp-block-table table th {
    width: 100px;
    font-size: 12px;
    padding: 12px 0;
  }

  .news-article-body table td,
  .news-article-body .wp-block-table table td {
    font-size: 14px;
    padding: 12px 0;
  }

  .news-share-nav {
    padding-top: 32px;
  }

  .news-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .news-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ---------- Company Page ---------- */
.page-company .company-main {
  padding-top: 80px;
}

.company-contents {
  padding-bottom: 10px;
}

.company-breadcrumb {
  display: flex;
  gap: 16px;
  align-items: center;
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #737070;
  margin-bottom: 60px;
}

.company-breadcrumb a {
  color: #737070;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.company-breadcrumb a:hover {
  color: #302a2b;
}

.company-breadcrumb-home-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.company-breadcrumb-sep,
.company-breadcrumb-current {
  color: #737070;
}

.company-section {
  margin-bottom: 40px;
}

.company-section-title {
  margin-bottom: 16px;
}

.company-section-title-jp {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.company-section-title-en {
  font: 400 13px/1.5 "Inter", sans-serif;
  color: #1e1e1e;
}

.company-map-wrap {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.company-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.company-body {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.company-body p {
  margin-bottom: 1em;
}

.company-body p:last-child {
  margin-bottom: 0;
}

.company-map-link {
  color: #1e1e1e;
  text-decoration: underline;
}

.company-map-link:hover {
  color: #f05064;
}

.company-related {
  padding-top: 48px;
  margin-bottom: 60px;
}

.company-related-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.company-related-heading {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.company-related-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1 "Inter", "Noto Sans JP", sans-serif;
  color: #302a2b;
}

.company-related-top-link:hover {
  color: #f05064;
}

.company-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: 0.857px solid #f05064;
  border-radius: 50%;
  flex-shrink: 0;
}

.company-icon-circle svg {
  width: 5px;
  height: 7px;
}

.company-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.company-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 243px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
}

.company-related-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.company-related-card:hover .company-related-card-bg {
  transform: scale(1.05);
}

.company-related-card-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.company-related-card-title {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
}

.company-related-card-en {
  font: 400 13px/1.5 "Inter", sans-serif;
}

@media (min-width: 1080px) and (max-width: 1279px) {
  .company-related-card {
    width: 193px;
    height: 120px;
  }

  .company-related-grid {
    gap: 8px;
  }
}

@media (max-width: 1079px) {
  .company-related-card {
    width: 168px;
    height: 100px;
    padding: 24px;
  }

  .company-related-grid {
    gap: 8px;
  }

  .company-related-card-title {
    font-size: 24px;
  }

  .company-map-wrap {
    height: 300px;
  }
}

@media (max-width: 599px) {
  .company-contents {
    padding: 40px 24px 10px;
  }

  .company-breadcrumb {
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .company-section {
    margin-bottom: 40px;
  }

  .company-map-wrap {
    height: 240px;
  }

  .company-related-grid {
    gap: 8px;
  }

  .company-related-card {
    width: calc(50% - 4px);
    height: 87px;
    padding: 16px;
  }

  .company-related-card-title {
    font-size: 20px;
  }

  .company-related-card-en {
    font-size: 11px;
  }

  .company-related-header {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.company-body--lead p {
  font-size: 15px;
  color: #302a2b;
}

.company-body--policy {
  margin-top: 0;
}

.company-related-grid--small .company-related-card {
  width: calc(50% - 14px);
}

@media (max-width: 599px) {
  .company-related-grid--small .company-related-card {
    width: calc(50% - 4px);
  }
}

/* ---------- Management Page ---------- */
.page-management .mgmt-main {
  padding-top: 80px;
}

.mgmt-contents {
  padding-bottom: 10px;
}

.mgmt-breadcrumb {
  display: flex;
  gap: 16px;
  align-items: center;
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #737070;
  margin-bottom: 60px;
}

.mgmt-breadcrumb a {
  color: #737070;
}

.mgmt-breadcrumb a:hover {
  color: #302a2b;
}

.mgmt-breadcrumb-sep,
.mgmt-breadcrumb-current {
  color: #737070;
}

.mgmt-article-title {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 40px;
}

.mgmt-members-group {
  margin-bottom: 64px;
}

.mgmt-members-group:last-of-type {
  margin-bottom: 0;
}

.mgmt-section-subtitle {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.mgmt-members-row {
  display: flex;
  gap: 16px;
}

.mgmt-member-box {
  display: flex;
  flex-direction: column;
  width: calc((100% - 32px) / 3);
  flex-shrink: 0;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.mgmt-member-box:hover {
  opacity: 0.85;
}

.mgmt-member-photo-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 240px;
  overflow: hidden;
}

.mgmt-member-photo {
  width: 240px;
  height: 240px;
  object-fit: cover;
  display: block;
}

.mgmt-member-info {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 24px;
  background: #f6f7fa;
  border-radius: 10px;
}

.mgmt-member-info-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mgmt-member-position {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-member-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.mgmt-member-name-kanji {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-member-name-kana {
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-member-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #1e1e1e;
}

.mgmt-member-name-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  max-width: calc((100% - 32px) / 3);
  border-radius: 20px;
  overflow: hidden;
}

.mgmt-member-name-card-inner {
  flex: 1;
  background: #f6f7fa;
  padding: 24px;
}

.mgmt-advisor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mgmt-advisor-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
}

.mgmt-advisor-card-inner {
  flex: 1;
  background: #f6f7fa;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mgmt-advisor-desc {
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-related {
  padding-top: 48px;
  margin-top: 64px;
}

.mgmt-related-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.mgmt-related-heading {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-related-top-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 14px/1 "Inter", "Noto Sans JP", sans-serif;
  color: #302a2b;
  transition: opacity 0.2s;
}

.mgmt-related-top-link:hover {
  opacity: 0.7;
}

.mgmt-related-top-link .icon-circle {
  border-color: #f05064;
}

.mgmt-related-top-link .icon-circle .icon-chevron-right-small::before {
  border-color: #f05064;
}

.mgmt-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-management .strategy-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 243px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
}

.page-management .strategy-related-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.page-management .strategy-related-card:hover .strategy-related-card-bg {
  transform: scale(1.05);
}

.page-management .strategy-related-card-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.page-management .strategy-related-card-title {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
}

.page-management .strategy-related-card-en {
  font: 400 13px/1.5 "Inter", sans-serif;
}

.mgmt-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mgmt-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mgmt-modal {
  position: relative;
  width: 1020px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.mgmt-modal-overlay.is-active .mgmt-modal {
  transform: translateY(0);
}

.mgmt-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.mgmt-modal-close:hover {
  opacity: 0.6;
}

.mgmt-modal-body {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  overflow-y: auto;
}

.mgmt-modal-intro {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mgmt-modal-name-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mgmt-modal-position {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-modal-name {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.mgmt-modal-name-kanji {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-modal-name-kana {
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-modal-history {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.mgmt-modal-history-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.mgmt-modal-history-year {
  width: 80px;
  flex-shrink: 0;
  white-space: nowrap;
}

.mgmt-modal-history-desc {
  flex: 1;
  min-width: 0;
}

.mgmt-modal-photo-box {
  flex-shrink: 0;
}

.mgmt-modal-photo {
  width: 329px;
  height: 329px;
  object-fit: cover;
  display: block;
}

@media (max-width: 1279px) {
  .mgmt-member-photo-wrap {
    height: 200px;
  }

  .mgmt-member-photo {
    width: 200px;
    height: 200px;
  }

  .mgmt-member-name-kanji {
    font-size: 20px;
  }

  .mgmt-modal-photo {
    width: 280px;
    height: 280px;
  }

  .page-management .strategy-related-card {
    width: 193px;
    height: 120px;
  }
}

@media (max-width: 1079px) {
  .mgmt-contents {
    padding: 40px 24px 10px;
  }

  .mgmt-members-row {
    flex-wrap: wrap;
  }

  .mgmt-member-box {
    width: calc((100% - 16px) / 2);
  }

  .mgmt-member-name-card {
    max-width: calc((100% - 16px) / 2);
  }

  .mgmt-modal {
    width: calc(100vw - 40px);
  }

  .mgmt-modal-body {
    flex-direction: column-reverse;
  }

  .mgmt-modal-photo {
    width: 240px;
    height: 240px;
  }

  .mgmt-modal-close {
    width: 48px;
    height: 48px;
  }

  .mgmt-modal-close svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 599px) {
  .mgmt-contents {
    padding: 24px 16px 10px;
  }

  .mgmt-breadcrumb {
    gap: 8px;
    margin-bottom: 32px;
    font-size: 12px;
  }

  .mgmt-article-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .mgmt-section-subtitle {
    font-size: 16px;
  }

  .mgmt-members-group {
    margin-bottom: 40px;
  }

  .mgmt-members-row {
    flex-direction: column;
  }

  .mgmt-member-box {
    width: 100%;
  }

  .mgmt-member-name-card {
    max-width: 100%;
    flex: none;
    width: 100%;
  }

  .mgmt-advisor-grid {
    grid-template-columns: 1fr;
  }

  .mgmt-member-name-kanji {
    font-size: 20px;
  }

  .mgmt-related {
    padding-top: 32px;
    margin-top: 40px;
  }

  .mgmt-related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mgmt-related-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-management .strategy-related-card {
    width: calc(50% - 8px);
    height: 100px;
    padding: 24px;
  }

  .page-management .strategy-related-card-title {
    font-size: 20px;
  }

  .page-management .strategy-related-card-en {
    font-size: 11px;
  }

  .mgmt-modal {
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 40px);
  }

  .mgmt-modal-body {
    padding: 20px;
    flex-direction: column-reverse;
    gap: 16px;
  }

  .mgmt-modal-photo {
    width: 200px;
    height: 200px;
  }

  .mgmt-modal-name-kanji {
    font-size: 20px;
  }

  .mgmt-modal-history-row {
    gap: 20px;
  }

  .mgmt-modal-history-year {
    width: 70px;
    font-size: 12px;
  }

  .mgmt-modal-history-desc {
    font-size: 12px;
  }

  .mgmt-modal-close {
    width: 40px;
    height: 40px;
  }

  .mgmt-modal-close svg {
    width: 20px;
    height: 20px;
  }
}

/* ---------- Strategy Page ---------- */
.page-strategy .strategy-main {
  padding-top: 80px;
}

.strategy-contents {
  padding-bottom: 10px;
}

.strategy-breadcrumb {
  display: flex;
  gap: 16px;
  align-items: center;
  font: 400 13px/1.5 "Inter", "Noto Sans JP", sans-serif;
  color: #737070;
  margin-bottom: 60px;
}

.strategy-breadcrumb a {
  color: #737070;
}

.strategy-breadcrumb a:hover {
  color: #302a2b;
}

.strategy-breadcrumb-sep,
.strategy-breadcrumb-current {
  color: #737070;
}

.strategy-article {
  margin-bottom: 80px;
}

.strategy-article:last-of-type {
  margin-bottom: 0;
}

.strategy-article-title {
  font: 700 28px/1.35 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 24px;
}

.strategy-sub-title {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 24px;
}

.strategy-body {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 24px;
}

.strategy-body p {
  margin-bottom: 1em;
}

.strategy-body p:last-child {
  margin-bottom: 0;
}

.strategy-closing-message {
  margin-top: 24px;
  margin-bottom: 0;
}

.strategy-video-wrap {
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  width: 100%;
}

.strategy-video-wrap video {
  width: 100%;
  height: auto;
}

.strategy-video-dc {
  aspect-ratio: 1020 / 714;
}

.strategy-dc-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-video-history {
  aspect-ratio: 2000 / 1200;
}

.strategy-video-wrap .strategy-video-pc {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-video-wrap .strategy-video-sp {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strategy-video-loop {
  background: transparent;
  border-radius: 0;
}

.strategy-video-infinite {
  display: block;
  width: 100%;
  height: auto;
}

.strategy-dc-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 24px;
}

.strategy-dc-card {
  border: 2px solid #f6f7fa;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.strategy-dc-card--creative {
  border-color: #fef3f4;
}

.strategy-dc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.strategy-dc-card-title {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.strategy-dc-card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 70px;
  object-fit: contain;
}

.strategy-dc-card-body {
  font: 400 16px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
}

.strategy-voc-wrap {
  padding-top: 40px;
  margin-bottom: 24px;
}

.strategy-voc-box {
  background: linear-gradient(115deg, #f6f7fa 35%, #fef3f4 71%);
  padding: 48px 32px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.strategy-voc-title {
  font: 700 24px/1.8 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  text-align: center;
}

.strategy-related {
  padding-top: 48px;
  margin-bottom: 60px;
}

.strategy-related-heading {
  font: 700 18px/1.6 "Inter", "Noto Sans JP", sans-serif;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.strategy-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.strategy-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 243px;
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
}

.strategy-related-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.strategy-related-card:hover .strategy-related-card-bg {
  transform: scale(1.05);
}

.strategy-related-card-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.strategy-related-card-title {
  font: 700 24px/1.35 "Inter", "Noto Sans JP", sans-serif;
}

.strategy-related-card-en {
  font: 400 13px/1.5 "Inter", sans-serif;
}

@media (min-width: 1080px) and (max-width: 1279px) {
  .strategy-related-card {
    width: 193px;
    height: 120px;
  }

  .strategy-related-grid {
    gap: 8px;
  }
}

@media (max-width: 1079px) {
  .strategy-article-title {
    font-size: 22px;
  }

  .strategy-related-card {
    width: 168px;
    height: 100px;
    padding: 32px;
  }

  .strategy-related-grid {
    gap: 8px;
  }

  .strategy-related-card-title {
    font-size: 24px;
  }

  .strategy-voc-title {
    font-size: 20px;
    text-align: left;
  }
}

@media (max-width: 599px) {
  .strategy-contents {
    padding: 40px 24px 10px;
    padding-top: 80px;
  }

  .strategy-breadcrumb {
    margin-bottom: 40px;
  }

  .strategy-article-title {
    font-size: 22px;
  }

  .strategy-article {
    margin-bottom: 40px;
  }

  .strategy-video-wrap .strategy-video-pc {
    display: none;
  }

  .strategy-video-wrap .strategy-video-sp {
    display: block;
  }

  .strategy-video-history {
    aspect-ratio: 1000 / 1720;
  }

  .strategy-dc-card-head {
    flex-direction: column;
    text-align: center;
  }

  .strategy-dc-card-title {
    text-align: center;
  }

  .strategy-related-grid {
    justify-content: space-between;
    gap: 8px;
  }

  .strategy-related-card {
    width: calc(50% - 4px);
    height: 100px;
    padding: 24px;
  }

  .strategy-related-card-title {
    font-size: 20px;
  }

  .strategy-related-card-en {
    font-size: 11px;
  }

  .strategy-voc-box {
    padding: 32px 24px;
  }

  .strategy-voc-title {
    font-size: 20px;
    text-align: left;
  }
}

@media (min-width: 600px) {
  .strategy-video-wrap .strategy-video-pc {
    display: block;
  }

  .strategy-video-wrap .strategy-video-sp {
    display: none;
  }
}

/*１カラム　お問い合わせポータル-----------------------------------------*/
.contactPortal .keyVisual { background: url(../../img/company/bgMV_companyTop.jpg) no-repeat center 45%; background-size: cover;}
.contactPortal .keyVisual h1 { font-size: 5.6rem; padding: 125px 0 0 0; text-shadow: 0 0 10px rgba(35,80,140,0.45);}
.contactPortalWrap { width: 960px; margin: 20px auto 40px auto; font-size: 15px;}
.contactSolution, .contactSaaS, .contactMedia, .contactOthers {
  font-size: 0;
}
.contactPortal ul li a:hover {
  text-decoration: none;
}
.contactSolution li, .contactSaaS li, .contactMedia li, .contactOthers li {
  display: inline-table;
  font-size: 12px;
  margin: 0 10px 10px 0;
  vertical-align: top;
}
.contactSolution li a, .contactOthers li a {
  background: #FDFDFD url(../../img/index2015Nov/iconArrowR1PC.png) no-repeat 5% 50%;
  width: 167px;
  height: 110px;
  padding: 0 15px 0 45px;
  border: 1px solid #DDD;
  border-radius: 6px;
  display: table-cell;
  vertical-align: middle;
  color: #333;
}
.contactSolution li a:hover, .contactOthers li a:hover {
  background: #DDD url(../../img/index2015Nov/iconArrowR1PC.png) no-repeat 5% 50%;
  transition: all 800ms 0s ease;
}
.contactSaaS li a, .contactMedia li a {
  background: #FDFDFD;
  width: 217px;
  height: 100px;
  padding: 0 5px 5px 5px;
  text-align: center;
  border: 1px solid #DDD;
  border-radius: 6px;
  display: table-cell;
  vertical-align: bottom;
  color: #666;
  font-size: 11px;
}
.contactSaaS li:hover, .contactSaaS li a:hover, .contactMedia li:hover {
  background: #DDD;
  transition: all 800ms 0s ease;
}
.contactSaaS li.mp a {
  background: url(../../img/contact/contactLogo_mp.png) no-repeat top center;
  background-size: 227px;
}
.contactSaaS li.mpjp a {
  background: url(../../img/contact/contactLogo_mpjp.png) no-repeat top center;
  background-size: 227px;
}
.contactSaaS li.btm a {
  background: url(../../img/contact/contactLogo_BTM.png) no-repeat top center;
  background-size: 227px;
}
.contactSaaS li.sin a {
  background: url(../../img/contact/contactLogo_SIn.png) no-repeat top center;
  background-size: 227px;
}
.contactSaaS li.letro a {
  background: url(../../img/contact/contactLogo_Letro.png) no-repeat top center;
  background-size: 227px;
}
.contactSaaS li.weiq a {
  background: url(../../img/contact/contactLogo_WEIQ.png) no-repeat top center;
  background-size: 227px;
}
.contactSaaS li.others span {
  font-size: 18px;
  color: #222;
  line-height: 4.5em;
  font-weight: bold;
  text-align: center;
  display: block;
}
.contactMedia li.smmlab a {
  background: url(../../img/contact/contactLogo_SMMLab.png) no-repeat top center;
  background-size: 227px;
}
.contactMedia li.cnmlab a {
  background: url(../../img/contact/contactLogo_CNMLab.png) no-repeat top center;
  background-size: 227px;
}
.contactMedia li.forBiz a {
  background: url(../../img/contact/contactLogo_forBiz.png) no-repeat top center;
  background-size: 227px;
}

@media (max-width: 768px) {
  .contactPortal .keyVisual { background: url(../../img/company/bgMV_company.jpg) no-repeat center 45%; background-size: cover;}
  .contactPortal .keyVisual h1 { font-size: 2.8rem; text-shadow: 0 0 10px rgba(35,80,140,0.45);}
  .contactPortalWrap { margin: 20px 20px 40px 20px;}
  .contactSolution, .contactSaaS, .contactMedia, .contactOthers {
    font-size: 0;
  }
  .contactSolution li, .contactSaaS li, .contactMedia li, .contactOthers li {
    font-size: 12px;
    width: 100%;
    border: 1px solid #DDD;
    border-radius: 6px;
    margin: 0 0 10px 0;
    vertical-align: top;
  }
  .contactSolution li a, .contactOthers li a {
    background: #FDFDFD url(../../img/index2015Nov/iconArrowR1PC.png) no-repeat 5% 50%;
    border-radius: 6px;
    padding: 20px 15px 20px 45px;
    display: block;
    color: #333;
  }
  .contactSaaS li a, .contactMedia li a {
    background: #FDFDFD;
    padding: 0 15px 0 0;
    border-radius: 6px;
    display: flex;
    color: #666;
    font-size: 11px;
  }
  .contactSaaS li a img, .contactMedia li a img {
    width: 150px;
    height:54px;
  }
  /*.contactSaaS li.mp a {
    background: url(../../img/contact/contactLogo_mp.png) no-repeat -20px 50%;
    background-size: 150px;
  }
  .contactSaaS li.mpjp a {
    background: url(../../img/contact/contactLogo_mpjp.png) no-repeat -20px 50%;
    background-size: 150px;
  }
  .contactSaaS li.btm a {
    background: url(../../img/contact/contactLogo_BTM.png) no-repeat -20px 50%;
    background-size: 150px;
  }
  .contactSaaS li.sin a {
    background: url(../../img/contact/contactLogo_SIn.png) no-repeat -20px 50%;
    background-size: 150px;
  }
  .contactSaaS li.letro a {
    background: url(../../img/contact/contactLogo_Letro.png) no-repeat -20px 50%;
    background-size: 150px;
  }
  .contactSaaS li.weiq a {
    background: url(../../img/contact/contactLogo_WEIQ.png) no-repeat -20px 50%;
    background-size: 150px;
  }*/
  .contactSaaS li.others a {
    padding: 20px 15px 20px 15px;
  }
  .contactSaaS li.others span {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-right: 1em;
  }
  .contactMedia li.smmlab a {
    background: url(../../img/contact/contactLogo_SMMLab.png) no-repeat -20px 50%;
    background-size: 150px;
  }
  .contactMedia li.cnmlab a {
    background: url(../../img/contact/contactLogo_CNMLab.png) no-repeat -20px 50%;
    background-size: 150px;
  }
  .contactMedia li.forBiz a {
    background: url(../../img/contact/contactLogo_forBiz.png) no-repeat -20px 50%;
    background-size: 150px;
  }
}

/*# sourceMappingURL=style.css.map */