@charset "utf-8";
/* CSS Document */
/* ==============================
   全体
============================== */
h1, h2, h3 {
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
p {
  line-height: 1.6;
}
.navy-blue {
  color: #003366
}
/* 通常時 */
.text-link {
  color: #036;
  text-decoration: underline;
  text-underline-offset: 2px; /* 下線を少し離す */
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
/* ホバー時 */
.text-link:hover {
  color: #004999;
  text-decoration-color: #004999;
}
/*new*/

span.label-new {
      background-color: #c72a1c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 0px 6px;
    margin-left: 6px;
    display: inline-block;
    border-radius: 3px;
    vertical-align: middle;
}

/* ==============================
   hero
============================== */
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero {
  position: relative;
  padding: 135px 0 0;
  color: #fff;
  background-image: url("/images/solution/packaging_graphics/img_main_bg.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.hero__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* 左やや広め */
  align-items: end;
  gap: 10px;
  position: relative; /* 追加 */
  z-index: 1;
}
.hero__text {
  max-width: 380px; /* 既存 880px を少し絞って読みやすく */
  position: relative;
  z-index: 1; /* 背景オーバーレイ上で確実に表示 */
	align-self:flex-start;
}
.hero__media {
  /* 画像の縦横比維持しつつ右側で大きく見せる */
  align-self: end;
  justify-self: end;
  max-width: none;
  width: 140%;
  position: relative;
  z-index: 1;
	margin-right: -200px;
}
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* 裁ち落とさずに収める */
  /* 必要に応じて軽いシャドウや角丸 */
  /* border-radius: 8px; */
  /* box-shadow: 0 8px 24px rgba(0,0,0,.25); */
}
.hero__title {
  margin: 0 0 30px;
  font-size: 3.4em;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0px 0px 5px #696969;
}
.hero__eyebrow {
  margin: 0 0 10px;
  font-size: 1.2em;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 100;
  text-shadow: 0px 0px 5px #696969;
}
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 0.9fr 1.1fr; /* 左やや広め */
    gap: 10px;
  }
  .hero__lead {
    max-width: 28em;
  }
  .hero__title {
    margin: 0 0 30px;
    font-size: 3.0em;
    line-height: 1.2;
    font-weight: 700;
  }
  .hero__eyebrow {
    font-size: 1.0em;
    line-height: 1.4;
  }
	.hero__media {
	margin-right: -100px;
}
}
@media (max-width: 720px) {
.hero {
  position: relative;
  padding: 20px 0 135px;
  color: #fff;
  background-image: url("/images/solution/packaging_graphics/img_main_bg_sp.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
	.hero__img {
		display: none;
	}
  .hero__lead {
    max-width: 40em;
    text-align: left; /* ← SPは左揃えの方が可読性◎ */
  }
  .hero__inner {
    grid-template-columns: 1fr; /* 1カラム */
  }
  .hero__title {
    margin: 0 0 30px;
    font-size: 2.6em;
    line-height: 1.2;
    font-weight: 700;
  }
}
/* ==============================
   bottom-nav
============================== */
/* ヘッダー全体 */
.bottom-nav {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
/* 左の青い斜め帯 */
.bottom-nav::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 42px;
  background: linear-gradient(6deg, #0167cc, #299de7);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
}
/* 中身 */
.bottom-nav__inner {
  max-width: 1680px;
  margin: 0 auto;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 220px;
  position: relative;
  z-index: 1;
}
/* ナビゲーション */
.bottom-nav__nav {
  display: flex;
  gap: 38px;
}
.bottom-nav__nav a {
  font-size: 1.0em;
  color: #003366;
  text-decoration: none;
  position: relative;
}
/* 下線 */
.bottom-nav__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #003366;
}
@media (max-width: 720px) {
  .bottom-nav::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 52px;
    background: linear-gradient(6deg, #0167cc, #299de7);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
  }
  .bottom-nav__inner {
    max-width: 880px;
    margin: 0 auto;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 100px;
    position: relative;
    z-index: 1;
  }
  .bottom-nav__nav {
    gap: 24px;
  }
  .bottom-nav__nav a {
    font-size: 1.0em;
  }
}
@media (max-width: 500px) {
  .bottom-nav::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 52px;
    background: linear-gradient(6deg, #0167cc, #299de7);
    clip-path: polygon(0 0, 100% 0, 50% 100%, 0% 100%);
  }
  .bottom-nav__inner {
    max-width: 880px;
    margin: 0 auto;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 5px 0px 80px;
    position: relative;
    z-index: 1;
  }
  .bottom-nav__nav {
    gap: 14px;
  }
  .bottom-nav__nav a {
    font-size: 0.9em;
  }
}
/* ==============================
   introduction
============================== */
.introduction {
  position: relative;
  padding: 40px 60px 0px;
  overflow: hidden;
  height: auto
}
.introduction-inner {
  display: flex;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  gap: 60px;
  background-image: url("/images/solution/packaging_graphics/pg_index_02.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
/* Left content */
.introduction .content {
  flex: 1.8;
}
.introduction .title {
  font-size: 2.2em;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.introduction .title .accent {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 15px;
  height: 55px;
  background-color: #89E6C0;
  transform: skewX(-20deg);
}
.introduction .content p {
  width: 85%;
  margin-bottom: 16px;
  font-size: 1.0em;
  line-height: 1.6;
}
.introduction .content h2 {
  margin-top: 48px;
  font-size: 2.2em;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 10px;
}
/* Right image */
.image-wrapper {
  flex: 1;
  position: relative;
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
/* Responsive */
@media (max-width: 960px) {
  .introduction-inner {
    flex-direction: column;
  }
  .introduction .title {
    font-size: 1.6em;
  }
  .introduction .content h2 {
    font-size: 1.6em;
  }
  .introduction .content p {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .introduction {
    position: relative;
    padding: 40px 40px 0px;
    overflow: hidden;
    height: auto
  }
  .introduction-inner {
    display: flex;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 60px;
    background-image: url("/images/solution/packaging_graphics/pg_index_02_sp.webp");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}
/* ==============================
   Brand Portfolio
============================== */
.portfolio {
  padding: 60px 40px 80px 40px;
  background-color: #f7f7f4;
}
.portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #003366;
}
@media (max-width: 640px) {
  .portfolio-title {
    font-size: 1.8em;
  }
}
.card-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
/* Responsive */
@media (max-width: 1024px) {
  .card-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ==============================
   ★共通★
============================== */
/* --★Card--★ */
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 9px;
  padding: 0px;
  text-align: ;
  border: 1px solid #D6D3D0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 9px 9px 0 0;
}
.icon-version .card img {
  width: 35%;
  height: auto;
  border-radius: 9px 9px 0 0;
}
.card_text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 10px;
}
.card_text p {
  flex-grow: 1;
  font-size: 0.9em;
  line-height: 1.6;
  color: #202020;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 8px;
  color: #003366;
  line-height: 1.4;
}
.card-footer {
  margin-top: auto;
  text-align: center;
}
.card.is-hidden {
  display: none;
}
/* --★item-card★-- */
/* card list */
.item-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 最大4列 */
  gap: 24px;
}
/* tablet */
@media (max-width: 1024px) {
  .item-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* sp */
@media (max-width: 640px) {
  .item-list {
    grid-template-columns: 1fr;
  }
}
.item-card {
  display: block;
  width: 100%; /* ← これが重要 */
  text-decoration: none;
  color: #003366;
  border-radius: 9px;
  border: 1px solid #D6D3D0;
  background-color: #Fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
/* image */
.item-card img {
  width: 100%;
  height: auto;
  border-radius: 9px 9px 0 0;
  display: block;
}
/* footer */
.item-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}
/* label */
.item-card-footer .label {
  font-size: 1.0em;
  font-weight: 600;
}
/* icon (右下の丸矢印) */
.item-card-footer .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #003366;
  flex-shrink: 0;
}
.item-card-footer .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
.item-card-footer .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
/* --★learn-more★-- */
.learn-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%; /* ← 追加 */
  padding: 4px 0;
  border: 1px solid #003366;
  border-radius: 20px;
  color: #003366;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.learn-more-btn .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #003366;
  flex-shrink: 0;
}
.learn-more-btn .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
.learn-more-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
/* hover：ボタン全体 */
.learn-more-btn:hover {
  background-color: #003366;
  color: #fff;
}
/* hover：矢印アイコンを反転 */
.learn-more-btn:hover .arrow {
  background-color: #fff; /* 丸を白に */
}
/* 横棒 */
.learn-more-btn:hover .arrow::before {
  background: #003366; /* 矢印をネイビーに */
}
/* 山形 */
.learn-more-btn:hover .arrow::after {
  border-top: 2px solid #003366;
  border-right: 2px solid #003366;
}
/* --★Load More ボタン★-- */
.mod-auto-center {
  display: flex;
  justify-content: center;
}
/* wrapper */
.load-more {
  margin: 40px 0;
}
/* button */
.load-more-btn {
  display: inline-flex;
  align-items: center; /* ← 横並び */
  gap: 10px;
  justify-content: center;
  min-width: 280px;
  padding: 8px 40px;
  background-color: #003366;
  color: #fff;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}
.load-more-btn:hover {
  background-color: #003366;
}
/* arrow circle */
.load-more-btn .arrow {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
/* arrow shaft */
.load-more-btn .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 2px;
  height: 8px;
  background: #003366;
  transform: translateY(-50%);
}
/* arrow head（初期：下向き） */
.load-more-btn .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #003366;
  border-right: 2px solid #003366;
  transform: translateY(-50%) rotate(45deg);
}
/* open（Collapse 時：上向き） */
.load-more-btn.is-open .arrow {
  transform: rotate(180deg);
}
/* ==============================
   industry
============================== */
/* section */
.industry {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
}
.industry-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* title */
.industry-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #444;
}
/* sp */
@media (max-width: 640px) {
  .industry {
    padding: 40px 20px;
  }
  .industry-title {
    font-size: 1.8em;
  }
}
/* ==============================
   Applications
============================== */
/* section */
.applications {
  padding: 60px 40px 80px 40px;
  background-color: #f7f7f4;
}
.applications-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* title */
.applications-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #003366;
}
/* sp */
@media (max-width: 640px) {
  .applications {
    padding: 40px 20px;
  }
  .applications-title {
    font-size: 1.8em;
  }
}
/* ==============================
   Locations
============================== */
/* section */
.locations {
  background-color: #003366;
  padding: 60px 40px 80px 40px;
  color: #fff;
}
.locations.bwhite{
	background-color: #FFFFFF;
}
.locations-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.locations-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}
.locations-title.blue {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #003366;
}
/* layout */
.locations-content {
  display: flex;
  gap: 24px;
}
/* map area */
.map-area {
  position: relative;
  flex: 2;
  background-color: #d9e3e8;
}
.map-image {
  width: 100%;
  display: block;
}
@media (max-width: 640px) {
  .locations-title {
    font-size: 1.8em;
  }
  .locations {
    background-color: #003366;
    padding: 60px 20px 80px 20px;
    color: #fff;
  }
}
/* ==============================
   solution-banner
============================== */
.solution-banner {
  padding: 60px 40px;
  background-color: #f8f7f2;
}

.solution-banner.bgreen {
  background-color: #89E6C0;
}

.solution-banner a {
  display: flex;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
}
/* image */
.solution-banner__image {
  flex: 1.2;
}
.solution-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* content */
.solution-banner__content {
  position: relative;
  flex: 1;
  padding: 0 32px;
}
/* title */
.solution-banner__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8em;
  font-style: italic;
  color: #003366;
  white-space: nowrap;
}
/* arrow */
.solution-banner__arrow {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #003366;
}
/* arrow line */
.solution-banner__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 9px;
  height: 2px;
  background-color: #fff;
  transform: translateY(-50%);
}
/* arrow head */
.solution-banner__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
/* hover */
.solution-banner a:hover {
  opacity: 0.9;
}
/* sp */
@media (max-width: 800px) {
  .solution-banner__title {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-size: 1.4em;
    font-style: italic;
    color: #003366;
    white-space: nowrap;
  }
}
@media (max-width: 640px) {
  .solution-banner {
    padding: 60px 20px;
    background-color: #f8f7f2;
  }
  .solution-banner a {
    height: 90px;
  }
  .solution-banner__title {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    font-size: 1.1em;
    font-style: italic;
    color: #003366;
    white-space: nowrap;
  }
  /* arrow */
  .solution-banner__arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #003366;
  }
  /* arrow line */
  .solution-banner__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    width: 6px;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
  }
  /* arrow head */
  .solution-banner__arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 5px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
  }
}
/* ==============================
   contact-banner
============================== */
/* section */
.contact-banner {
  background-color: #003366;
}
/* layout */
.contact-banner__inner {
  display: flex;
  min-height: 220px;
}
/* left panel */
.contact-banner__left {
  flex: 0 0 30%;
  background-color: #003366;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-banner__left h2 {
  color: #fff;
  font-size: 2em;
  font-weight: 700;
}
/* right panel */
.contact-banner__right {
  flex: 1;
  background: url("/images/solution/packaging_graphics/contact_bg.webp") center / cover no-repeat;
  position: relative;
}
/* overlay content */
.contact-banner__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center; /* ← 横中央 */
  text-align: center; /* ← テキスト中央 */
  color: #fff;
}
.contact-banner__content p {
  font-size: 1.4em;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
}
/* button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 100px;
  border-radius: 30px;
  background: linear-gradient(90deg, #003366, #7fe0b8);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
/* arrow */
.btn-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
}
/* arrow head */
.btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #003366;
  border-right: 2px solid #003366;
  transform: translateY(-50%) rotate(45deg);
}
/* hover */
.contact-btn:hover {
  background: #003366; /* ← 濃い青 */
  color: #fff;
}
@media (max-width: 910px) {
  .contact-banner__inner {
    flex-direction: column;
  }
  .contact-banner__left {
    flex: unset;
    padding: 30px 0;
  }
  .contact-banner__right {
    min-height: 200px;
  }
  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 50px;
    border-radius: 30px;
    background: linear-gradient(90deg, #003366, #7fe0b8);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
}
@media (max-width: 425px) {
  .contact-banner__inner {
    flex-direction: column;
  }
  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 45px 8px 85px;
    border-radius: 30px;
    background: linear-gradient(90deg, #003366, #7fe0b8);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    width: 270px;
  }
}
/* ==============================
   contact-side_banner
============================== */
.contact-side_banner {
  position: fixed;
  top: 30%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
  width: 45px;
  height: 160px;
  background-color: #002b5c; /* 濃いネイビー */
  border-radius: 12px 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.contact-side_banner span {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: #fff;
  font-size: 1.0em;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
.contact-side_banner:hover {
  background-color: #003f7d;
}
@media screen and (max-width: 768px) {
  .contact-side_banner {
    display: none;
  }
}
/* ==============================
   second-hero 
============================== */
/* section */
.second-hero {
  background-color: #f9f8f3;
  padding: 0px 0;
  position: relative;
  overflow: hidden;
}
/* inner */
.second-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 300px;
}
/* left text */
.second-hero__text {
  position: absolute;
  left: 120px;
  top: 45%;
  transform: translateY(-45%);
}
.second-hero__sub {
  display: block;
  font-size: 1.1em;
  letter-spacing: 0.15em;
  /*color: #ff4b77;*/
  margin-bottom: 0px;
}
.packaging .second-hero__sub {
  color: #ff4b77;
}
.publishing .second-hero__sub {
  color: #2C5AA0;
}
.flexible-packaging .second-hero__sub {
  color: #468E94;
}
.retort-packaging .second-hero__sub {
  color: #FF7700;
}
.paper-board .second-hero__sub {
  color: #8D8064;
}
.label .second-hero__sub {
  color: #dfc300;
}
.metal-can .second-hero__sub {
  color: #7F92A7;
}
.book-magazine .second-hero__sub {
  color: #8656C3;
}
.newspaper .second-hero__sub {
  color: #007AEB;
}
h1.second-hero__title {
  font-size: 3.0em;
  font-weight: 700;
  /*color: #FD4477;*/
  line-height: 1.0;
  z-index: 2;
}
.packaging h1.second-hero__title {
  color: #FD4477;
}
.publishing h1.second-hero__title {
  color: #2C5AA0;
}
.flexible-packaging h1.second-hero__title {
  color: #468E94;
}
.retort-packaging h1.second-hero__title {
  color: #FF7700;
}
.paper-board h1.second-hero__title {
  color: #8D8064;
}
.label h1.second-hero__title {
  color: #dfc300;
}
.metal-can h1.second-hero__title {
  color: #7F92A7;
}
.book-magazine h1.second-hero__title {
  color: #8656C3;
}
.newspaper h1.second-hero__title {
  color: #007AEB;
}
/* visual area */
.second-hero__visual {
  position: absolute;
  right: 20px;
  top: 40%;
  transform: translateY(-40%);
  width: 620px;
  height: 300px;
  z-index: 0;
}
.second-hero__visual img[alt="Paper & Board"]{
margin-left: -5%; 
}
.second-hero__visual img[alt="Publishing"], .second-hero__visual img[alt="Retort Packaging"], .second-hero__visual img[alt="Paper & Board"], .second-hero__visual img[alt="Label"], .second-hero__visual img[alt="Metal Can"], .second-hero__visual img[alt="Book & Magazine"], .second-hero__visual img[alt="Newspaper"]{
margin-left: 0; 
}
.second-hero__visual img[alt="Flexible Film Packaging"]{
 margin-left: 10%;
}
.card-list.fr4 {
 grid-template-columns: repeat(4, 1fr);
}
/* diagonal bg */
.second-hero__bg {
  position: absolute;
  inset: 0;
  /*background-color: #FD4477;*/
  clip-path: polygon(50% 0, 100% 0, 50% 100%, 0 100%);
}
.packaging .second-hero__bg {
  background-color: #FD4477;
}
.publishing .second-hero__bg {
  background-color: #2C5AA0;
}
.flexible-packaging .second-hero__bg {
  background-color: #468E94;
}
.retort-packaging .second-hero__bg {
  background-color: #FF7700;
}
.paper-board .second-hero__bg {
  background-color: #8D8064;
}
.label .second-hero__bg {
  background-color: #dfc300;
}
.metal-can .second-hero__bg {
  background-color: #7F92A7;
}
.book-magazine .second-hero__bg {
  background-color: #8656C3;
}
.newspaper .second-hero__bg {
  background-color: #007AEB;
}
/* product image */
.second-hero__visual img {
  position: absolute;
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  margin-left: 90px;
  margin-top: 35px;
  z-index: 0;
}
@media (max-width: 952px) {
  .second-hero__text {
    left: 50px;
    top: 25%;
    z-index: 2; /* ← これが一番重要 */
  }
  .second-hero__sub {
    display: block;
    font-size: 0.95em;
    letter-spacing: 0.15em;
    color: #ff4b77;
    margin-bottom: 0px;
    text-shadow:
      -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 0 0 4px rgba(255, 255, 255, 0.8);
  }
  h1.second-hero__title {
    font-size: 2.6em;
    font-weight: 700;
    color: #FD4477;
    line-height: 1.0;
    position: relative;
    text-shadow:
      -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 0 0 4px rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 720px) {
  .second-hero__visual {
    position: absolute;
    right: 10px;
    top: 40%;
    transform: translateY(-40%);
    width: 270px;
    height: 300px;
    z-index: 0;
  }
  .second-hero__visual img {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    margin-left: 10px;
    margin-top: 155px;
    z-index: 0;
  }
  .second-hero__text {
    left: 50px;
    top: 25%;
    z-index: 2; /* ← これが一番重要 */
  }
  .second-hero__sub {
    display: block;
    font-size: 0.95em;
    letter-spacing: 0.15em;
    color: #ff4b77;
    margin-bottom: 0px;
    text-shadow:
      -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 0 0 4px rgba(255, 255, 255, 0.8);
  }
  h1.second-hero__title {
    font-size: 2.6em;
    font-weight: 700;
    color: #FD4477;
    line-height: 1.0;
    position: relative;
    text-shadow:
      -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff, 0 0 4px rgba(255, 255, 255, 0.8);
  }
}
/* ==============================
   portfolio_industry
============================== */
.portfolio_industry {
  padding: 80px 40px 80px 40px;
  background-color: #fff;
}
.portfolio_industry-inner {
  max-width: 800px;
  margin: 0 auto;
}
.portfolio_industry-inner .card {
  border: 1px solid #D6D3D0;
}
/* Card list */
.portfolio_industry .card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Responsive */
@media (max-width: 1024px) {
  .portfolio_industry .card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .portfolio_industry .card-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ==============================
   back-button
============================== */
.back-button {
  padding: 20px 40px 80px 40px;
}
/* ボタン全体（aタグ） */
.back-to-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 300px;
  padding: 14px 28px;
  border: 1px solid #003366;
  border-radius: 9999px;
  background-color: #fff;
  text-decoration: none; /* aタグ対策 */
  cursor: pointer;
}
/* リンク文字 */
.back-to-home-bt {
  color: #003366;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1;
}
/* 矢印 */
.back-to-home .arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #003366;
  flex-shrink: 0;
}
.back-to-home .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
.back-to-home .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(-135deg);
}
/* ホバー */
@media (hover: hover) {
  .back-to-home:hover {
    background-color: #003366;
  }
  .back-to-home:hover .back-to-home-bt {
    color: #ffffff;
  }
  .back-to-home:hover .arrow {
    background-color: #ffffff;
  }
  .back-to-home:hover .arrow::before {
    background-color: #003366;
  }
  .back-to-home:hover .arrow::after {
    border-color: #003366;
  }
}
/* ==============================
   third-hero/adhesive/
============================== */
.third-hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 44px;
}
.third-hero {
  position: relative;
  padding: 110px 0 80px;
  color: #fff;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.adhesive .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/adhesive_main_bg.webp");
}
.adhesive-about .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/adhesive-about_main_bg.webp");
}
.adhesive-technical-support .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/technical-support_main_bg.webp");
}
.adhesive-innovations .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/innovations_main_bg.webp");
}
.adhesive-dualam .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/dualam_main_bg.webp");
}
.adhesive-dicdry .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/dicdry_main_bg.webp");
}
.adhesive-paslim .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/paslim_main_bg.webp");
}
.adhesive-ulm .third-hero {
  background-image: url("/images/solution/packaging_graphics/adhesive/ulm_main_bg.webp");
}
.third-hero__inner {
  display: grid;
  grid-template-columns: 1fr; /* 左やや広め */
  align-items: baseline;
  gap: 10px;
  position: relative; /* 追加 */
  z-index: 1;
}
.third-hero__text {
  max-width: 780px; /* 既存 880px を少し絞って読みやすく */
  position: relative;
  z-index: 1; /* 背景オーバーレイ上で確実に表示 */
}
.third-hero__title {
  margin: 0 0 20px;
  font-size: 2.4em;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0px 0px 5px #696969;
}
.third-hero__title span {
  margin: 0px;
  font-size: 0.5em;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 5px #696969;
}
.third-hero__text p {
  margin: 0px;
  font-size: 1.0em;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-shadow: 0px 0px 4px #696969;
}
@media (max-width: 960px) {
  .third-hero__title {
    margin: 0 0 30px;
    font-size: 3.0em;
    line-height: 1.2;
    font-weight: 700;
  }
}
@media (max-width: 720px) {
  .third-hero {
    position: relative;
    min-height: 65vh;
  }
  .third-hero__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1480px;
    margin: 0 auto;
    padding: 120px 24px 0;
    z-index: 1;
  }
  .third-hero__inner {
    padding-top: 50px; /* ← さらに上寄りにしたいならここ */
  }
  .adhesive .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/adhesive_main_bg_sp.webp");
  }
  .adhesive-about .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/adhesive-about_main_bg_sp.webp");
  }
  .adhesive-technical-support .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/technical-support_main_bg_sp.webp");
  }
  .adhesive-innovations .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/innovations_main_bg_sp.webp");
  }
  .adhesive-dualam .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/dualam_main_bg_sp.webp");
  }
  .adhesive-dicdry .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/dicdry_main_bg_sp.webp");
  }
  .adhesive-paslim .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/paslim_main_bg_sp.webp");
  }
  .adhesive-ulm .third-hero {
    background-image: url("/images/solution/packaging_graphics/adhesive/ulm_main_bg_sp.webp");
  }
  .third-hero__title {
    margin: 0 0 30px;
    font-size: 2.6em;
    line-height: 1.2;
    font-weight: 700;
  }
}
/*adhesive*/
.adhesive .introduction-inner {
  display: block;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  background-image: url("/images/solution/packaging_graphics/pg_index_03.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.adhesive-about .introduction-inner {
  display: block;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
.adhesive .portfolio-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #444;
}
/*非表示*/
.more-content {
  display: none;
  margin-top: 20px;
}
/* overview */
.overview {
  padding: 60px 40px 80px 40px;
  background-color: #fff;
}
.bg2 {
  background-color: #f8f7f2;
}
.bgw {
  background: #fff;
}
.overview-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.overview-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #444;
}
/* table */
.table-wrap {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.dic-table {
  border-collapse: collapse;
  background-color: #ffffff;
  font-size: 0.9em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.dic-table thead th {
  background-color: #008299;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 5px 12px;
  border: 1px solid #dbe3ea;
}
/* 本文セル */
.dic-table tbody td {
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  vertical-align: middle;
  background-color: #f0f7fb;
}
.dic-table--compact thead th {
  background-color: #003366;
}
/* レスポンシブ */
@media (max-width: 768px) {
  .table-wrap {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .overview {
    padding: 60px 20px 80px 20px;
  }
  .overview-title {
    font-size: 1.8em;
    line-height: 1.2;
  }
}
/* ===== Category Nav Section ===== */
.category-nav {
  padding: 60px 40px 60px 40px;
}
.category-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* List */
.category-nav__list {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.category-nav__item {
  flex: 0 0 auto;
}
/* Link */
.category-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  padding: 4px 16px;
  background-color: #eef1f4;
  color: #003a70;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: normal;
  border-radius: 10px;
  transition: all 0.25s ease;
}
.five .category-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
  padding: 4px 16px;
  background-color: #eef1f4;
  color: #003a70;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: normal;
  border-radius: 10px;
  transition: all 0.25s ease;
}
/* arrow circle */
.category-nav__link .arrow {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
/* arrow shaft */
.category-nav__link .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 2px;
  height: 8px;
  background: #003366;
  transform: translateY(-50%);
}
/* arrow head（初期：下向き） */
.category-nav__link .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #003366;
  border-right: 2px solid #003366;
  transform: translateY(-50%) rotate(45deg);
}
/* Hover / Focus */
.category-nav__link:hover, .category-nav__link:focus {
  background-color: #003a70;
  color: #fff;
}
.category-nav__link:hover .category-nav__icon, .category-nav__link:focus .category-nav__icon {
  background-color: #fff;
  color: #003a70;
}
/* Responsive */
@media (max-width: 1210px) {
  .four .category-nav__link {
    min-width: 120px;
    font-size: 0.85em;
    padding: 10px 12px;
  }
}
@media (max-width: 1205px) {
  .five .category-nav__link {
    min-width: 100px;
    font-size: 0.85em;
    padding: 10px 12px;
  }
}
@media (max-width: 985px) {
  .category-nav {
    padding: 60px 20px 60px 20px;
  }
  .category-nav__link {
    min-width: 180px;
    font-size: 0.9em;
    padding: 12px 10px;
  }
}
@media (max-width: 870px) {
  .five .category-nav__link {
    min-width: 90px; /* ← 1列で横いっぱいにしたい場合 */
    font-size: 0.75em;
    padding: 8px 5px;
  }
}
@media (max-width: 780px) {
  .category-nav__list {
    flex-direction: column; /* ← 追加 */
    align-items: center; /* ← 中央揃え（任意） */
  }
  .category-nav__link {
    min-width: 100%; /* ← 1列で横いっぱいにしたい場合 */
    font-size: 0.9em;
    padding: 8px 15px;
  }
  .category-nav__list {
    align-items: stretch;
  }
  .category-nav__link {
    min-width: unset;
    width: 100%;
  }
}
/* ===== Adhesive at a Glance ===== */
.adhesive-glance {
  padding: 60px 40px 80px 40px;
}
.adhesive-glance__inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* Title */
.adhesive-glance__title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #444;
}
/* Stats wrapper */
.adhesive-glance__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  margin: 0 0 10px 0;
  border-top: 1px solid #9fb4c8;
  border-bottom: 1px solid #9fb4c8;
  padding: 10px 0;
}
/* Each stat */
.stat {
  padding: 0 20px;
}
/* Vertical dividers */
.stat:not(:last-child) {
  border-right: 1px solid #9fb4c8;
}
/* Number */
.stat__number {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.0;
  margin-top: 15px;
  color: #4cc3b2;
}
.stat__number span {
  font-size: 0.6em;
}
/* Label */
.stat__label {
  font-size: 1.2em;
  color: #111;
}
/* Description */
.adhesive-glance__description {
  font-size: 1.0em;
  line-height: 1.6;
  color: #333;
}
/* Responsive */
@media (max-width: 768px) {
  .adhesive-glance {
    padding: 60px 20px 80px 20px;
  }
  .adhesive-glance__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stat:not(:last-child) {
    border-right: none;
  }
  .stat + .stat {
    border-top: 1px solid #9fb4c8;
  }
}
@media (max-width: 640px) {
  .adhesive-glance__title {
    font-size: 1.8em;
  }
}
/* ===== Feature Card List ===== */
.adhesive-solutions {
  padding: 60px 40px 80px 40px;
  background-color: #f8f7f2;
}
.adhesive-solutions__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.adhesive-solutions-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #444;
}
.feature-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}
/* Card */
.feature-card {
  display: grid;
  grid-template-columns: 270px 1fr;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
/* Media */
.feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Body */
.feature-card__body {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
}
.feature-card__title {
  font-size: 1.2em;
  font-weight: 700;
  color: #003366;
  line-height: 1.8;
}
.feature-card__text {
  font-size: 0.9em;
  line-height: 1.4;
  color: #333;
  flex-grow: 1;
}
/* Action */
.feature-card__action {
  display: flex;
  justify-content: flex-end; /* ← 右寄せ */
}
.feature-card__action a {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
  padding: 4px 30px;
  border: 1px solid #003366;
  border-radius: 20px;
  color: #003366;
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 600;
  transition: all 0.25s ease;
}
/* Arrow */
.feature-card__arrow {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #003366;
  flex-shrink: 0;
}
.feature-card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}
.feature-card__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
/* Hover */
.feature-card__action a:hover {
  background-color: #003366;
  color: #fff;
}
.feature-card__action a:hover .feature-card__arrow {
  background-color: #fff;
}
.feature-card__action a:hover .feature-card__arrow::before {
  background: #003366;
}
.feature-card__action a:hover .feature-card__arrow::after {
  border-top: 2px solid #003366;
  border-right: 2px solid #003366;
}
/* Responsive */
@media (max-width: 768px) {
  .feature-card {
    grid-template-columns: 1fr;
  }
  .feature-card__media {
    height: 180px;
  }
  .feature-card__action a {
    align-self: flex-start;
  }
}
@media (max-width: 640px) {
  .adhesive-solutions {
    padding: 60px 20px 80px 20px;
    background-color: #f8f7f2;
  }
  .adhesive-solutions-title {
    font-size: 1.8em;
    line-height: 1.2;
  }
}
/* ===== Brochure Download ===== */
.brochure-download {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
}
/* Button */
.brochure-download__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 40px;
  min-width: 320px;
  background-color: #003366;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.0em;
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.25s ease;
}
/* Icon circle */
.brochure-download__icon {
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
/* arrow shaft */
.brochure-download__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 2px;
  height: 8px;
  background: #003366;
  transform: translateY(-50%);
}
/* arrow head（初期：下向き） */
.brochure-download__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #003366;
  border-right: 2px solid #003366;
  transform: translateY(-50%) rotate(45deg);
}
/* Hover */
.brochure-download__btn:hover {
  background-color: #00284d;
}
/* Responsive */
@media (max-width: 640px) {
  .brochure-download__btn {
    min-width: 260px;
    padding: 12px 32px;
  }
}
/* ===== Inverted version ===== */
.brochure-download__btn.is-invert {
  background-color: #ffffff;
  color: #003366;
  border: 2px solid #003366;
}
/* arrow circle (invert) */
.brochure-download__btn.is-invert .btn-arrow {
  background-color: #003366;
}
/* arrow shaft */
.brochure-download__btn.is-invert .btn-arrow::before {
  background-color: #003366;
  transform: translateY(-50%);
}
/* arrow head */
.brochure-download__btn.is-invert .btn-arrow::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}
/* Hover (invert) */
.brochure-download__btn.is-invert:hover {
  background-color: #003366;
  color: #FFFFFF;
}
.brochure-download__btn.is-invert:hover .btn-arrow {
  background-color: #ffffff;
}
.brochure-download__btn.is-invert:hover .btn-arrow::before {
  background-color: #003366;
  transform: translateY(-50%);
}
.brochure-download__btn.is-invert:hover .btn-arrow::after {
  border-top: 2px solid #003366;
  border-right: 2px solid #003366;
  transform: translateY(-50%) rotate(45deg);
}
/* feature list */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.features.mod-auto-center {
  display: inline-flex; /* 全体幅を中身に合わせる */
  flex-direction: column; /* 縦並び */
  gap: 6px; /* 行間 */
  align-items: center; /* ← 中央ぞろえに変更 */
  margin-left: auto; /* カード中央 */
  margin-right: auto;
  margin-top: 10px;
}
/* li 行 */
.features li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8em;
  color: #000;
  white-space: nowrap;
  justify-content: flex-start;
  line-height: 1.4;
}
/* チェックアイコン */
.features li.checked::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #0b3a7e;
  border-radius: 2px;
  position: relative;
}
/* チェックマーク */
.features li.checked::after {
  content: "✓";
  position: absolute;
  margin-left: 3px;
  font-size: 0.9em;
  color: #fff;
  transform: translateY(-1px);
}
/*  */
.arrange .pure-g {
  display: flex;
  align-items: stretch;
}
.arrange .space-u-40-child {
  display: flex;
  flex-direction: column;
}
.arrange .card-footer {
  margin-top: auto;
}
/*paslimシンプルテーブル*/
.simple-table {
  width: 100%;
  max-width: 860px;
  border-collapse: collapse;
  font-size: 14px;
  color: #222;
  background-color: #ffffff;
}
/* 行 */
.simple-table tr {
  border-bottom: 1px solid #e5e5e5;
}
/* 交互背景 */
.simple-table tr:nth-child(odd) {
  background-color: #f7f9fa;
}
/* セル */
.simple-table td {
  padding: 10px 14px;
  vertical-align: middle;
  white-space: nowrap;
}
/* 右端の説明列だけ折り返しOK */
.simple-table td:last-child {
  white-space: normal;
}
/*テーブルULM*/
.spec-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid #D6D3D0;
}
.spec-table th, .spec-table td {
  border: 1px solid #D6D3D0;
  padding: 5px 10px;
  font-size: 1.0em;
}
.spec-table thead th {
  background-color: #003366; /* 濃いネイビー */
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.spec-table tbody td {
  background-color: #ffffff;
  color: #444;
  vertical-align: middle;
}
.spec-table tbody td:first-child {
  font-weight: normal;
}