@charset "UTF-8";

/* =========================================================
 変数（カスタムプロパティ）
========================================================= */
:root {
  /* カラー */
  --color-bg: #F6F4F1;
  --color-text: #111;
  --color-gold: #987E5A;
  --color-white: #fff;
  --color-border: #ddd;
  --color-accent: linear-gradient(135deg, #007adf 0%, #007adf 50%, #1af0c5 100%);

  /* 関連事業アクセントカラー */
  --color-affiliate-fca: #00a47b;
  --color-affiliate-petart: #003577;
  --color-affiliate-oudon: #ff6000;

  /* フォント */
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-en: "Montserrat", sans-serif;

  /* インナー最大幅 */
  --content-width: 1680px;
  --content-width-narrow: 1400px;

  /* トランジション */
  --transition: 0.3s;
}

/* =========================================================
 reset（リセットCSS）
 参考サイトの ress ベース。全体に効かせる初期化。
========================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

hr {
  overflow: visible;
  height: 0;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:active,
a:hover {
  outline-width: 0;
}

img {
  border-style: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  background-color: transparent;
  border-style: none;
}

button {
  cursor: pointer;
  overflow: visible;
  outline: none;
}

ul,
dl,
figure {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

dt {
  font-weight: normal;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.4;
  font-weight: inherit;
}

h2 {
  white-space: nowrap;
}

/* =========================================================
 base（基本スタイル）
========================================================= */
html {
  font-size: 62.5%;
}

body {
  min-height: 100%;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-feature-settings: "palt";
}

/* =========================================================
 utility（ユーティリティ）
========================================================= */
/* 表示・非表示 */
@media (max-width: 1023px) {
  .util-only-pc {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .util-only-sp {
    display: none !important;
  }
}

/* 英字フォント */
.util-text-en {
  font-family: var(--font-en);
}

/* 2カラム分割 */
.util-split {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.util-split--flip .abt-strengthItem__visual,
.util-split--flip .abt-affiliateRow__visual {
  order: -1;
}

/* グリッド */
.util-grid {
  display: grid;
  gap: 3rem;
}

.util-grid--2 {
  grid-template-columns: 1fr;
}

.util-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .util-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .util-split {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }

  .util-split>* {
    flex: 1;
  }

  .abt-affiliateRow>img {
    flex: 1 1 0;
    min-width: 0;
    align-self: center;
  }

  .util-split--flip {
    flex-direction: row-reverse;
  }

  .util-split--flip .abt-strengthItem__visual,
  .util-split--flip .abt-affiliateRow__visual {
    order: 0;
  }

  .util-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
 module（共通モジュール）
========================================================= */
/* インナー幅 */
.mod-wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
}

.mod-wrap--narrow {
  max-width: var(--content-width-narrow);
}

/* セクション見出し */
.mod-heading .title {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.4;
}

/* .mod-heading .title::before {
  flex-shrink: 0;
  width: 1.2em;
  height: 1px;
  background: currentColor;
  content: "";
} */

.mod-heading .en {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-gold);
}

/* リスト */
.mod-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.6rem;
  line-height: 1.8;
}

.mod-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-gold);
  font-size: 0.85em;
  line-height: 1.8;
  content: "■";
}

.mod-list li+li {
  margin-top: 0.6em;
}

/* 画像プレースホルダー（仮） */
.mod-ph {
  display: block;
  width: 100%;
  min-height: 20rem;
  background-color: #e0dbd4;
  border: 1px dashed #c8c0b6;
}

.mod-ph--hero {
  min-height: 28rem;
}

.mod-ph--logo {
  min-width: 12rem;
  min-height: 3.6rem;
}

/* =========================================================
 frame（レイアウト：ヘッダー・メイン・フッター）
========================================================= */
/* --- header --- */
.frame-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: rgba(17, 17, 17, 0.05) 0 5px 5px;
}

.frame-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 8px;
}

.frame-header__main {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.6rem;
}

.frame-header__logo {
  position: relative;
  z-index: 2;
  max-width: 160px;
}

@media (any-hover: hover) {
  .frame-header__logo a:hover {
    opacity: 0.7;
  }
}

.frame-header__gnav {
  display: flex;
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 700;
}

.frame-header__gnav a {
  display: flex;
  align-items: center;
  height: 60px;
  padding-inline: 12px;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .frame-header__gnav a:hover {
    color: var(--color-white);
    background: var(--color-gold);
  }
}

.frame-header__tel {
  text-align: center;
  line-height: 1.3;
}

.frame-header__tel .link {
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
}

.frame-header__tel .text {
  font-size: 1rem;
  font-weight: 700;
}

@media (any-hover: hover) {
  .frame-header__tel .link:hover {
    opacity: 0.7;
  }
}

.frame-header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 1.2em;
  border-radius: 5px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (any-hover: hover) {
  .frame-header__contact:hover {
    opacity: 0.7;
  }
}

@media (min-width: 1024px) {
  .frame-header__inner {
    height: 80px;
    padding: 0 2rem;
  }

  .frame-header__gnav a {
    height: 80px;
  }

  .frame-header__contact {
    min-width: 180px;
    height: 80px;
    border-radius: 0;
    font-size: 1.5rem;
  }
}

/* --- main --- */
.frame-main {
  overflow-x: clip;
  overflow-y: visible;
}



/* --- footer --- */
.frame-footer__main {
  padding: 6rem 0 4rem;
  background-color: var(--color-white);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.frame-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.frame-footer__logo {
  max-width: 180px;
}

.frame-footer__data .companyName {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
}

.frame-footer__data dl {
  display: grid;
  gap: 1.2rem;
}

.frame-footer__data dl>div {
  display: grid;
  gap: 0.2em;
}

.frame-footer__data dl dt {
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.85;
}

.frame-footer__data dl dd {
  font-size: 1.4rem;
  line-height: 1.6;
}

.frame-footer__data a:hover {
  opacity: 0.7;
}

.frame-footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

.frame-footer__nav a {
  font-size: 1.4rem;
  font-weight: 700;
}

@media (any-hover: hover) {
  .frame-footer__nav a:hover {
    opacity: 0.7;
  }
}

.frame-footer__bottom {
  padding: 2.4rem 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.frame-footer__bottomInner {
  display: grid;
  gap: 1.2rem;
}

.frame-footer__bottom .text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.75);
}

.frame-footer__bottom .copyright {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .frame-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .frame-footer__nav ul {
    grid-template-columns: 1fr;
  }

  .frame-footer__bottomInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
  }
}

/* =========================================================
 about page（カバズワースについて ページ固有）
========================================================= */
.abt-page {
  overflow: visible;
}

/* --- ヒーロー（参考：p-aboutBg / p-kv） --- */
.abt-heroBg {
  background: url("../images/abtimg/mv-bg.webp") no-repeat center/cover;
}

.abt-kv {
  position: relative;
}

.abt-kv__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.abt-kv__bg {
  height: 200px;
}

.abt-kv .svg,
.abt-kv__title .svg {
  width: fit-content;
  height: 40px;
  margin-bottom: 10px;
  line-height: 0;
}

.abt-kv .svg img,
.abt-kv__title .svg img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
}

.abt-kv__title .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6em;
  margin-top: 0.5em;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  color: var(--color-text);
}

.abt-kv__title .title::before {
  display: none;
}

.abt-kv__text {
  max-width: 770px;
  padding-bottom: 80px;
}

.abt-kv__lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.abt-kv__description {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
}

@media (min-width: 768px) {

  .abt-kv .svg,
  .abt-kv__title .svg {
    height: 80px;
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {

  .abt-kv__bg {
    height: 360px;
  }

  .abt-kv__text {
    margin-top: -60px;
    padding-bottom: 120px;
  }

  .abt-kv__lead {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

@media (max-width: 1024px) {
  .abt-heroBg {
    background-attachment: scroll;
  }
}

/* --- 3つの強み --- */
.abt-strengths {
  position: relative;
  padding: 8rem 0;
  background-color: var(--color-bg);
}

.abt-strengths__intro {
  margin-bottom: 6rem;
  text-align: center;
}

.abt-strengths__intro .mod-heading .title {
  justify-content: center;
}

.abt-strengths__intro .mod-heading .title::before {
  display: none;
}

.abt-strengths__intro .lead {
  max-width: 68rem;
  margin: 2rem auto 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
}

.abt-strengths__list {
  display: grid;
  gap: 0;
}

.abt-strengthItem {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 8rem;
}

.abt-strengthItem:last-child {
  margin-bottom: 0;
}

.abt-strengthItem__body {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1080px;
  height: auto;
  padding: 2.4rem;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 10px rgba(152, 126, 90, 0.2);
}

.abt-strengthItem__visual {
  position: relative;
  z-index: 1;
  order: -1;
  width: 100%;
  max-width: 1080px;
  margin: 0;
}

.abt-strengthItem__visual img {
  display: block;
  width: 100%;
  max-width: 1080px;
  height: auto;
}

.abt-strengthItem__body .label {
  margin-bottom: 0.8rem;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.abt-strengthItem__body .title {
  margin-bottom: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
}

.abt-strengthItem__body .text p {
  font-size: 1.4rem;
  line-height: 2;
}

.abt-strengthItem__body .text p+p {
  margin-top: 1.2em;
}

.text-mark {
  font-weight: 700;
  background-image: linear-gradient(transparent 55%, #ccc 55%);
  background-repeat: no-repeat;
}

@media (min-width: 1200px) {
  .abt-strengthItem {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 12rem;
  }

  .abt-strengthItem__body {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    flex: 612 1 0;
    width: auto;
    min-width: 0;
    max-width: 612px;
    height: 635px;
    margin-top: 8rem;
    margin-right: -8rem;
    padding: 0 8rem;
  }

  .abt-strengthItem__visual {
    display: flex;
    flex: 1080 1 0;
    order: 1;
    min-width: 0;
    max-width: 1080px;
  }

  .abt-strengthItem__visual img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .abt-strengthItem__body .title {
    font-size: 2.8rem;
  }
}

/* --- 私たちにできること --- */
.abt-capabilities {
  position: relative;
  z-index: 6;
  overflow: visible;
  padding: 8rem 0 10rem;
  background-color: #fff;
}

.abt-capabilities__inner {
  position: relative;
}

.abt-capabilitiesDeco {
  position: absolute;
  top: -24rem;
  left: 50%;
  width: 100vw;
  height: 48rem;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  /* 画像の右端を見切るため */
  transform: translateX(-50%);
}

.abt-capabilitiesDeco img {
  position: absolute;
  right: -10rem;
  /* 右にはみ出して見切る */
  top: 0;
  width: min(56rem, 56vw);
  height: auto;
}

.abt-capabilities__header {
  margin-bottom: 10rem;
  position: relative;
  z-index: 3;
}

.abt-capabilities .mod-heading h2.title {
  justify-content: center;
}

.abt-capabilities__header .mod-heading .title::before {
  display: none;
}

.abt-capabilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1023px) {
  .abt-capabilities {
    overflow: visible;
  }

  .abt-capabilitiesDeco {
    top: -19rem;
    left: auto;
    right: -130px;
    width: 100%;
    max-width: 100vw;
    height: 36rem;
    overflow: visible;
    transform: none;
  }

  .abt-capabilitiesDeco img {
    right: 0;
    left: auto;
    top: 0;
    width: min(36rem, 70vw);
  }

  .abt-capabilities__header {
    margin-bottom: 7rem;
  }
}

.abt-capabilityCard {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 24rem;
  padding: 3.2rem 2.8rem;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.abt-capabilityCard--lead {
  width: 100%;
  container-type: inline-size;
  container-name: lead-card;
  justify-content: center;
  align-items: center;
  min-width: 0;
  background-color: #111;
  background-image: url("../images/abtimg/capabilities-lead.webp");
  background-position: center;
}

.abt-capabilityCard--strategy,
.abt-capabilityCard--produce,
.abt-capabilityCard--support {
  box-sizing: border-box;
  height: auto;
  min-height: 28rem;
  padding: 6rem min(32rem, 42%) 6rem 6rem;
  aspect-ratio: auto;
  overflow: hidden;
  /* 高さは内容に合わせて伸びるので文字は切れない */
}

.abt-capabilityCard--strategy {
  background-image: url("../images/abtimg/card-strategy.webp");
}

.abt-capabilityCard--produce {
  background-image: url("../images/abtimg/card-produce.webp");
}

.abt-capabilityCard--support {
  background-image: url("../images/abtimg/card-support.webp");
}

.abt-capabilityCard--strategy::before,
.abt-capabilityCard--produce::before,
.abt-capabilityCard--support::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,
      rgba(246, 244, 241, 0.97) 0%,
      rgba(246, 244, 241, 0.9) 40%,
      rgba(246, 244, 241, 0.45) 58%,
      transparent 75%);
  pointer-events: none;
  content: "";
}

.abt-capabilityCard--lead .catch {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.2rem, 8.5cqw, 4.8rem);
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.abt-capabilityCard--lead .catch-accent {
  color: var(--color-gold);
}

.abt-capabilityCard .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
  font-size: clamp(2rem, 2.4vw, 3.2rem);
  font-weight: 700;
  color: var(--color-gold);
}

.abt-capabilityCard__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
  background-color: #F6F4F1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.abt-capabilityCard__icon img {
  display: block;
  width: 55%;
  height: auto;
}

.abt-capabilityCard .description {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.9;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.abt-capabilityCard .title,
.abt-capabilityCard .mod-list {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.abt-capabilityCard .mod-list {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.abt-capabilityCard .mod-list li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* .abt-capabilityCard .mod-list {
  margin-top: auto;
} */

@media (min-width: 768px) {
  .abt-capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
  }

  .abt-capabilityCard--lead {
    min-height: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .abt-capabilityCard--strategy,
  .abt-capabilityCard--produce,
  .abt-capabilityCard--support {
    min-width: 0;
    padding: 6rem min(32rem, 42%) 6rem 6rem;
  }
}

@media (min-width: 1024px) {
  .abt-capabilityCard--lead {
    padding: 4rem;
  }

  .abt-capabilityCard--strategy,
  .abt-capabilityCard--produce,
  .abt-capabilityCard--support {
    padding: 6rem min(32rem, 40%) 6rem 6rem;
  }
}

@media (min-width: 1400px) {

  .abt-capabilityCard--strategy,
  .abt-capabilityCard--produce,
  .abt-capabilityCard--support {
    padding: 6rem 32rem 6rem 6rem;
  }
}

@media (max-width: 1325px) {

  .abt-capabilityCard--strategy,
  .abt-capabilityCard--produce,
  .abt-capabilityCard--support {
    padding: 6rem 60px;
  }
}

@media (max-width: 1023px) {

  .abt-capabilityCard--strategy,
  .abt-capabilityCard--produce,
  .abt-capabilityCard--support {
    padding: 3.2rem 2.4rem;
  }
}

@media (max-width: 767px) {

  .abt-capabilityCard--strategy,
  .abt-capabilityCard--produce,
  .abt-capabilityCard--support {
    padding: 2.4rem 2rem;
  }
}

/* --- MISSION / VISION / VALUE --- */
.abt-philosophy {
  padding: 8rem 0 10rem;
  color: var(--color-white);
  background-color: #111;
  background-image: url("../images/abtimg/dot-pattern.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 200px;
}

.abt-philosophy__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.abt-philosophy__visual {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
}

.abt-philosophy__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.abt-philosophy__blocks {
  display: grid;
  gap: 0;
  min-width: 0;
}

.abt-philosophyBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 5rem 0;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.abt-philosophyBlock:first-child {
  padding-top: 0;
  border-top: none;
}

.abt-philosophyBlock:last-child {
  padding-bottom: 0;
}

.abt-philosophyBlock>* {
  width: 100%;
  max-width: 700px;
}

.abt-philosophyBlock__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.2rem 2rem;
}

.abt-philosophyBlock__header .title {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--color-gold);
}

.abt-philosophyBlock__header .ja {
  margin: 0;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
}

.abt-philosophyBlock .lead {
  margin-top: 2.4rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
}

.abt-philosophyBlock .text {
  margin-top: 2.4rem;
}

.abt-philosophyBlock .text p {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-white);
}

.abt-philosophyBlock .text p+p {
  margin-top: 1.2em;
}

.abt-philosophyBlock__values {
  display: grid;
  gap: 4rem;
  margin-top: 2.4rem;
}

.abt-philosophyBlock__values .sub-title {
  margin-bottom: 1.2rem;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.abt-philosophyBlock__values .description {
  font-size: 1.5rem;
  line-height: 2;
  color: var(--color-white);
}

@media (max-width: 1023px) {
  .abt-philosophy__inner {
    gap: 0;
  }

  .abt-philosophy__visual {
    display: none;
  }

  .abt-philosophy__blocks {
    width: 100%;
  }

  .abt-philosophyBlock {
    width: 100%;
    align-items: stretch;
  }

  .abt-philosophyBlock>* {
    width: 100%;
    max-width: none;
  }

  .abt-philosophyBlock__values {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .abt-philosophy {
    background-size: 320px;
  }

  .abt-philosophy__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 6rem;
    align-items: start;
  }

  .abt-philosophy__visual {
    position: sticky;
    top: 80px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: none;
    height: calc(100vh - 80px);
    margin: 0;
  }

  .abt-philosophy__visual img {
    width: 100%;
    max-height: calc(100vh - 12rem);
    object-fit: contain;
  }
}

/* --- カバズワースのこと --- */
.abt-profile {
  padding: 8rem 0 10rem;
  background-color: var(--color-bg);
  background-image: url("../images/abtimg/abt-profile_bg.webp");
  background-position: 100% 20%;
}

.abt-profile__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.abt-profile__header {
  flex-shrink: 0;
  width: 100%;
  text-align: left;
}

.abt-profile__header .title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.abt-profile__body {
  width: 100%;
  text-align: left;
}

.abt-profile__body p {
  font-size: 1.5rem;
  line-height: 2;
  width: 100%;
}

@media (min-width: 1029px) {

  .abt-profile__header,
  .abt-profile__body {
    width: 80%;
  }
}

.abt-profile__body p+p {
  margin-top: 1.2em;
}

/* --- 関連事業 --- */
.abt-affiliates {
  padding-top: 8rem;
  background-color: var(--color-bg);
}

.abt-affiliates__kv {
  margin-bottom: 4rem;
  margin-top: 4rem;
}

.abt-affiliates__kvInner {
  padding-bottom: 2rem;
}

.mod-heading--affiliates .en {
  margin-bottom: 0.6rem;
}

.mod-heading--affiliates h2.title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}



.abt-affiliates__detail {
  display: grid;
  gap: 6rem;
  padding-bottom: 10rem;
}

.abt-affiliateRow>img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}

.abt-affiliateRow__body {
  position: relative;
  padding: 2.4rem;
}

#affiliate-fca .abt-affiliateRow__body::before {
  background-color: var(--color-affiliate-fca);
}

#affiliate-petart .abt-affiliateRow__body::before {
  background-color: var(--color-affiliate-petart);
}

#affiliate-oudon .abt-affiliateRow__body::before {
  background-color: var(--color-affiliate-oudon);
}

.abt-affiliateRow__body h3 {
  display: flex;
  justify-content: space-between;
}

.abt-affiliateRow__body h3.business01 {
  border-bottom: #00a47b solid 2px;
  border-top: #00a47b solid 2px;
  padding: 20px 0;
}

.abt-affiliateRow__body h3.business02 {
  border-bottom: #003577 solid 2px;
  border-top: #003577 solid 2px;
  padding: 20px 0;
}

.abt-affiliateRow__body h3.business03 {
  border-bottom: #ff6000 solid 2px;
  border-top: #ff6000 solid 2px;
  padding: 20px 0;
}

.abt-affiliateRow__body .title {
  margin-bottom: 2.4rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
}

.abt-affiliateRow__body .since {
  display: block;
  margin-top: 0.4em;
  font-size: 0.65em;
  font-weight: 700;
}

#affiliate-fca .since {
  color: var(--color-affiliate-fca);
}

#affiliate-petart .since {
  color: var(--color-affiliate-petart);
}

#affiliate-oudon .since {
  color: var(--color-affiliate-oudon);
}

.abt-affiliateRow__body .sub-title {
  margin-bottom: 0.4em;
  font-size: 1.8rem;
  font-weight: 700;
}

.abt-affiliateRow__body .sub-title::before {
  margin-right: 0.7em;
  font-size: 0.5em;
  content: "●";
}

#affiliate-fca .sub-title::before {
  color: var(--color-affiliate-fca);
}

#affiliate-petart .sub-title::before {
  color: var(--color-affiliate-petart);
}

#affiliate-oudon .sub-title::before {
  color: var(--color-affiliate-oudon);
}

.abt-affiliateRow__body .description {
  font-size: 1.5rem;
  line-height: 1.9;
}

.abt-affiliateRow__body .link {
  margin-top: 2rem;
}

.abt-affiliateRow__body .link a {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .abt-affiliateRow__body .link a:hover {
    opacity: 0.7;
  }
}

.abt-affiliateRow__visual {
  margin: 0;
}

.abt-affiliateRow__visual .mod-ph {
  min-height: 24rem;
}

.util-split--flip #affiliate-petart .abt-affiliateRow__body::before {
  right: -10px;
  left: auto;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .abt-affiliateRow__body {
    padding: 3.2rem;
  }

  .abt-affiliateRow__visual .mod-ph {
    min-height: 28rem;
  }
}

@media (min-width: 1200px) {
  .abt-affiliates__detail {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: stretch;
  }

  .abt-affiliateRow,
  .abt-affiliateRow.util-split,
  .abt-affiliateRow.util-split--flip {
    flex-direction: column;
    gap: 0;
  }

  .abt-affiliateRow>img {
    flex: none;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .abt-affiliateRow__visual {
    flex: none;
    margin-inline: 0;
  }

  .abt-affiliateRow__visual .mod-ph {
    min-height: 20rem;
    border-radius: 4px 4px 0 0;
  }

  .abt-affiliateRow__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    margin-top: 0;
    padding: 2.4rem;
    border-radius: 0 0 4px 4px;
  }

  .abt-affiliateRow__body::before {
    top: -8px;
    bottom: auto;
    left: 1.6rem;
    width: 32px;
    height: 32px;
  }

  .util-split--flip #affiliate-petart .abt-affiliateRow__body::before {
    right: auto;
    left: 1.6rem;
  }

  .abt-affiliateRow__body .title {
    font-size: 1.8rem;
  }

  .abt-affiliateRow__body .link {
    margin-top: auto;
    padding-top: 1.6rem;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .abt-affiliateRow__body .title {
    font-size: 1.6rem;
  }
}

/* --- スマホ表示：見出し・余白調整 --- */
@media (max-width: 1023px) {
  h2 {
    line-height: 1.2;
  }

  .mod-heading .title {
    line-height: 1.2;
  }

  .abt-strengths__intro {
    margin-bottom: 3rem;
  }

  .abt-capabilities__header {
    margin-bottom: 4rem;
  }

  .abt-philosophyBlock {
    padding: 3rem 0;
  }

  .abt-philosophyBlock__header .title {
    line-height: 1;
  }

  .abt-profile {
    padding-bottom: 4rem;
  }

  .abt-profile__inner {
    gap: 2.5rem;
  }

  .abt-profile__header .title {
    margin-bottom: 2rem;
  }

  .abt-affiliates__kv {
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .abt-affiliates__detail {
    gap: 4rem;
    padding-bottom: 0;
  }
}