@charset "utf-8";

/*==========================================
 font
===========================================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Poppins:wght@200;600&display=swap');

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
/* font-family: 'Poppins', sans-serif; */

/* link */
a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
a { outline: none; text-decoration: none; }
a:link    { color: var(--color-text); text-decoration: none; }
a:visited { color: var(--color-text); text-decoration: underline; }
a:hover   { color: var(--color-text); text-decoration: underline; }
a:active  { color: var(--color-text); text-decoration: underline; }

/*==========================================
 body
===========================================*/

html {
  background: var(--color-white);
  overflow: auto;
}

html, body { margin:0; padding:0; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

.visually-hidden { /* 各トップH1用 */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================
   Typography Rule

   ■ 基本
   - 本文：var(--font-body)
   - UI：var(--font-ui)
   - 見出し：専用変数

   ■ 禁止
   - 新規での rem直指定
   - line-height の固定値

   ■ 例外
   - デザイン上明確な理由がある場合のみ固定値許可
   - 例外には必ずコメントを残す

   ========================================== */


/*==========================================
 CSS設計ルール（必読）
===========================================*/

/*
【基本方針】
本プロジェクトでは、スタイルの一貫性と保守性を維持するため、
すべてのデザイン値は :root のカスタムプロパティで管理する。

【PC / SP の扱い】
・PC用: --xxx
・SP用: --xxx-sp

のように、同一階層で並列定義すること。

例）
:root {
  --font-size-base: 1.6rem;
  --font-size-base-sp: 1.4rem;
}

【禁止事項】
・@media 内で :root の変数を上書きすることは禁止

NG例）
@media (max-width: 767px) {
  :root {
    --font-size-base: 1.4rem;
  }
}

理由：
変数のスコープが分散し、設計の一貫性が崩れるため。

【使用ルール】
・PCは --xxx を使用
・SPは --xxx-sp を使用

例）
body {
  font-size: var(--font-size-base);
}


【追加時のルール】
・既存の命名規則に必ず従う
・同種の変数が既に存在する場合は新規作成しない
・場当たり的な値直書きは禁止（必ず変数化する）

【例外】
やむを得ず例外対応をする場合は、必ず理由をコメントで残すこと。

*/

/*==========================================*/


:root {
  /* --- section spacing tokens --- */
  --space-section: 100px;           /* 基本セクション間余白 */
  --space-section-sp: 50px;
  --space-section-lg: 120px;        /* 重いセクション区切り */
  --space-section-lg-sp: 80px;     /* 予約トークン：現在未使用。section-lg を持つ要素のSP対応時に使用する */
  --space-section-inner: 90px;      /* セクション内上余白（padding-top） */
  --space-section-inner-sp: 40px;
  --space-section-emphasis: 100px;  /* CTA・重要導線前の強調余白 */
  --space-section-emphasis-sp: 70px;

  --space-footer-utility-top: 65px;     /* フッターユーティリティ上余白 */
  --space-footer-utility-top-sp: 50px;

  /* --- color base layer（raw values） --- */
  --color-white:      #ffffff;
  --color-offwhite:      #f4f4f1;
  --color-gray-950:   #1a1a1a;
  --color-gray-700:   #484848;
  --color-gray-500:   #999999;   /* #949495 を吸収（差: 4/255） */
  --color-gray-300:   #cccccc;
  --color-gray-100:   #f4f4f4;
  --color-cyan:   #00B4D8;   /* ブランドシアン（#00ABD3 / #37ab86 / #4dbc92 を統合） */
  --color-red:    #cc0000;
  /* --- color semantic layer（base 参照） --- */
  --color-text:          var(--color-gray-950);   /* 本文・リンク・黒系（#333/#222/#000 を統合） */
  --color-text-muted:    var(--color-gray-500);   /* 補助テキスト（#999/#aaa/#bbb/#555 を統合） */
  --color-brand:         var(--color-cyan);   /* ブランドブルー */
  --color-brand-hover:   var(--color-cyan);
  --color-ui-dark:       var(--color-gray-700);   /* ボタン・濃いUI（#505050/#555 を統合） */
  --color-ui-mid:        var(--color-gray-500);   /* フッター・ナビ背景（#787878 を統合） */
  --color-error:         var(--color-red);    /* エラー文字色（#B70000/#C80C1A を統合） */
  --color-accent-cv:        var(--color-cyan);
  --color-accent-cv-border: var(--color-cyan);

  /* --- radius tokens --- */
  --radius-sm: 3px;   /* フォーム・小要素（4px を吸収） */
  /* --card-radius: 8px 定義済み（カード・ボタン共通、6px を吸収） */

  /* --- card spacing tokens --- */
  --card-padding-x: 25px;
  --card-space-top: 20px;       /* img → ラベル/見出し */
  --card-space-between: 15px;   /* ラベル → 本文 */
  --card-space-bottom: 25px;    /* 本文 → カード下端 */
  --card-body-padding-top-no-title: 20px;   /* c-card-tile--no-title: img直後p上余白 */
  --card-padding-y: 10px;

  --card-padding-x-sp: 20px;
  --card-space-top-sp: 20px;
  --card-space-between-sp: 10px;
  --card-space-bottom-sp: 20px;
  --card-body-padding-top-no-title-sp: 20px;

  --card-radius: 8px;
  --card-shadow: 3px 3px 6px 3px rgba(0, 0, 0, 0.1);
  --card-bg: var(--color-white);

  /* タイポグラフィ変数 */
  --font-body: 1.8rem;
  --font-body-sp: 1.4rem;
  --font-body-small: 1.4rem;
  --font-body-tag: 1.2rem;
  --font-body-large: 2.2rem;
  --font-body-large-sp: 2.0rem;
  --font-body-detail: 1.5rem;   /* 詳細ページ・長文コンテンツ本文 */
  --font-body-lead: 2.0rem;    /* リード文（本文と見出しの中間） */

  --font-ui: 1.6rem;
  --font-ui-small: 1.4rem;
  --font-ui-large: 1.8rem; /* 主要導線・グローバルナビ・大UI要素 */
  --font-caption-small: 1.2rem; /* SP注釈・補助ラベル */
  --font-caption-small-sp: 1.2rem ; 
  --font-caption: 1.3rem;
  --font-caption-xs: 1.0rem;    /* 極小ラベル（会社名・補助情報など） */
  --font-heading-emphasis: 3.0rem;

  --font-button-cta: 2.3rem;
  --font-button-cta-sp: 2.0rem;

  --font-heading-page: 3.0rem;
  --font-heading-section: 1.7rem;
  --font-heading-card: 1.8rem;
  --font-heading-sub: 2.1rem;   /* ページ内サブタイトル（非Poppins） */
  --font-heading-detail: 1.9rem; /* 詳細ページ内 h2 相当 */
  --font-display-service: 2.8rem;    /* サービスページ英語タイトル（Poppins） */
  --font-display-service-sp: 2.0rem;

  --lh-body: 2.0;
  --lh-body-tight: 1.6;
  --lh-body-detail: 1.85;       /* 詳細本文の行間 */
  --lh-ui: 1.4;
  --lh-ui-tight: 1.2; /* Poppins英字見出し・SP字詰め */
  --lh-body-relaxed: 1.75; /* 詳細コンテンツの段落・定義リスト */
  --lh-body-loose: 1.7; /* SPカード本文 */
  --lh-compact: 1.5;            /* 締めた行間（UI補足・小見出し） */
  --lh-loose: 2.2;              /* 広めの行間（サイドバー・説明文） */

  --lh-note: 2.0; /* works補足テキスト（情報リスト） */
}


ul, li {
  list-style: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
}

body {
  overflow: hidden;
	min-width: 1250px;
  -webkit-text-size-adjust: 100%;
  font-size: var(--font-body);
  line-height: var(--lh-body);
}
@media only screen and (max-width: 1266px) {
  body {
    overflow: auto;
  	min-width: auto;
  }
}

@media only screen and (max-width: 767px) {
  body {
  	min-width: auto;
    font-size: var(--font-body-sp);
  }
}

/*==========================================
 画像切替
===========================================*/
/* PC、スマートフォン表示分岐 */
.pcView {
  display: block;
}
.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pcView {
    display: none;
  }
  .spView {
    display: block;
  }
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 120px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}
header.down {
  height: 80px;
}
header #header {
  position: relative;
  z-index: 30;
  width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}
header #headerLogoArea {
  position: absolute;
  left: 20px;
  top: 20px;
  transition: all 0.3s ease;
}
header.down #headerLogoArea {
  top: 13px;
}
header #headerLogoArea img {
  width: 124px;
  height: auto;
  transition: all 0.3s ease;
}
header.down #headerLogoArea img {
  width: 112px;
  height: auto;
}
header #header_SpIcon,
header #header_SpMenu {
  display: none;
}
@media only screen and (min-width: 768px) {
  header #header_SpMenu {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    height: 54px;
  }
  header.down {
    height: 54px;
  }
  header #header {
    width: 100%;
  }
  header #headerLogoArea {
    left: 20px;
    top: 10px;
  }
  header #headerLogoArea img {
    width: 150px;
  }
  header.down #headerLogoArea img {
    width: 150px;
  }
  header #header_SpIcon {
    display: block;
    z-index: 60;
    position: absolute;
    right: 0;
    top: 0;
    width: 54px;
    height: 54px;
    padding: 15px 0 0;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.5);
  }
  header #header_SpIcon .menu-trigger,
  header #header_SpIcon .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  header #header_SpIcon .menu-trigger {
    display: block;
    position: relative;
    width: 30px;
    height: 22px;
    margin: 0 auto;
  }
  header #header_SpIcon .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  header #header_SpIcon .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  header #header_SpIcon .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  header #header_SpIcon .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }

  header #header_SpMenu {
    display: block;
    position: absolute;
    z-index: 50;
    left: -100vw;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    overflow: scroll;
  }
  header #header_SpScroll {
    width: 100%;
    height: auto;
  }
  header #header_SpMenu #header_SpLink {
    margin:  90px 5% 10px;
  }
  header #header_SpMenu #header_SpLink  ul li {
    padding: 0 0 25px;
  }
  header #header_SpMenu #header_SpLink  ul li a {
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 3.4rem; /* exception: SPメニュー大タイトル（Poppins） */
    line-height: 1; /* exception: Poppinsキャッチコピー字詰め */
    font-weight: 100;
    color: var(--color-white);
  }
  header #header_SpMenu #header_SpLink  ul li a:hover {
    text-decoration: none;
  }
  header #header_SpMenu #header_SpLink ul li:nth-child(7) a,
  header #header_SpMenu #header_SpLink ul li:nth-child(8) a,
  header #header_SpMenu #header_SpLink ul li:nth-child(9) a {
    font-size: 2.4rem;
  }
  header #header_SpMenu #header_SpLink  ul li:nth-child(9) a::after {
    position: absolute;
    right: -24px;
    top: 50%;
    width: 21px;
    height: 17px;
    margin: -9px 0 0;
    background-image: url("../img/icon09.svg");
    background-size: cover;
    content: "";
  }
  header #header_SpMenu #header_SpLink ul li .sp-menu-sep {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 100;
    color: var(--color-white);
    line-height: 1;
    margin: 0 4px;
  }
  header #header_SpMenu #header_SpLink ul li a[href*="wantedly"]::after {
    position: absolute;
    right: -24px;
    top: 50%;
    width: 21px;
    height: 17px;
    margin: -9px 0 0;
    background-image: url("../img/icon09.svg");
    background-size: cover;
    content: "";
  }
  header #header_SpMenu #header_SpContact01,
  header #header_SpMenu #header_SpContact02 {
    position: relative;
    width: 90%;
    border-radius: var(--card-radius);
    background-color: var(--color-brand);
    box-shadow: var(--card-shadow);
    text-align: center;
  }
  header #header_SpMenu #header_SpContact01 {
    margin: 0 5% 20px;
  }
  header #header_SpMenu #header_SpContact02 {
    margin: 0 5%;
  }
  header #header_SpMenu #header_SpContact01 a,
  header #header_SpMenu #header_SpContact02 a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 20px;
    box-sizing: border-box;
    transition: all 0.3s;
  }
  header #header_SpMenu #header_SpContact01 a:hover,
  header #header_SpMenu #header_SpContact02 a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  header #header_SpMenu #header_SpContact01::before {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 15px;
    height: 20px;
    margin: 0 0 0 -70px;
    background-image: url("../img/icon05.svg");
    background-size: cover;
    content: "";
  }
  header #header_SpMenu #header_SpContact02::before {
    position: absolute;
    left: 50%;
    top: 32px;
    width: 21px;
    height: 16px;
    margin: 0 0 0 -95px;
    background-image: url("../img/icon06.svg");
    background-size: cover;
    content: "";
  }
  header #header_SpMenu #header_SpContact01 h3,
  header #header_SpMenu #header_SpContact02 h3 {
    font-size: var(--font-button-cta-sp);
    font-weight: 700;
    color: var(--color-white);
  }
  header #header_SpMenu #header_SpContact01 p,
  header #header_SpMenu #header_SpContact02 p {
    padding: 0;
    font-size: var(--font-body-small);
    font-weight: 700;
    color: var(--color-white);
    line-height: var(--lh-ui);
  }

  header #header_SpMenu #header_SpSns {
    margin:  40px 5%;
  }
  header #header_SpMenu #header_SpSns ul {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    gap: 28px;
    list-style-type: none;
  }
  header #header_SpMenu #header_SpSns ul li {
    margin: 0;
  }
  header #header_SpMenu #header_SpSns ul li img {
    width: 48px;
    height: 48px;
  }
}

/*グローバルナビゲーション ////////////////////////////////// */
header #headerGlobalArea {
  position: absolute;
  left: 220px;
  top: 60px;
  transition: all 0.3s ease;
}
header.down #headerGlobalArea {
  top: 34px;
}
header #headerGlobalArea ul {
  display: flex;
  width: 100%;
}
header #headerGlobalArea li {
  margin: 0 45px 0 0;
}
header #headerGlobalArea li:nth-child(4) {
  margin: 0 50px 0 0;
}
header #headerGlobalArea li:nth-child(5) {
  margin: 0;
}
header #headerGlobalArea li a {
  position: relative;
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: var(--font-ui-large); /* Poppinsグローバルナビ */
  font-weight: 400;
  color: var(--color-text);
  transition: all 0.3s;
    line-height: 0;
}
header #headerGlobalArea li.active a {
  text-decoration: none;
  color: var(--color-brand);
  font-weight: 700;
}
header #headerGlobalArea li a:hover {
  text-decoration: underline;
  color: var(--color-brand);
  transition: all 0.3s;
}
header #headerGlobalArea li:nth-child(5) a::after {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 14px;
  height: 11px;
  margin: -6px 0 0;
  background-image: url("../img/icon08.svg");
  content: "";
}
@media only screen and (max-width: 767px) {
  header #headerGlobalArea {
    display: none;
  }
}

header #headerSubArea {
  position: absolute;
  right: 25px;
  top: 5px;
  transition: all 0.3s ease;
}  
header.down #headerSubArea {
  top: 5px;
}
header #headerSubArea ul {
  display: flex;
  margin: 0;
  padding: 0;
}
header #headerSubArea ul li {
  margin: 0 0 0 22px;
}
header #headerSubArea ul li:nth-child(1) {
  margin: 0 0 0 27px;
}
header #headerSubArea li a {
  position: relative;
  display: block;
  padding: 0;
  font-size: var(--font-ui-small);
  font-weight: 400;
  color: var(--color-text);
  transition: all 0.3s;
}
body#top header #headerSubArea li a {
  color: var(--color-white);
}
header #headerSubArea li:nth-child(2) a::before,
header #headerSubArea li:nth-child(3) a::before {
  position: absolute;
  left: -11px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--color-ui-dark);
  content: "";
}
body#top header #headerSubArea li:nth-child(2) a::before,
body#top header #headerSubArea li:nth-child(3) a::before {
  background-color: var(--color-white);
}
header #headerSubArea li:nth-child(3) a::after {
  position: absolute;
  right: -20px;
  top: 50%;
  width: 14px;
  height: 11px;
  margin: -6px 0 0;
  background-image: url("../img/icon08.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
header #headerSubArea li a:hover {
  text-decoration: none;
  color: var(--color-brand);
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  header #headerSubArea {
    display: none;
  }
}

header #headerContactArea {
  position: absolute;
  right: 177px;
  top: 45px;
  transition: all 0.3s ease;
}
header.down #headerContactArea {
  top: 20px;
}
header #headerContactArea ul {
  display: flex;
}
header #headerContactArea ul li {
  margin: 0 0 0 20px;
}
header #headerContactArea li a {
  position: relative;
  padding: 5px 15px 5px 28px;
  background-color: var(--color-brand);
  border-radius: var(--radius-sm);
  font-size: var(--font-ui-small);
  font-weight: 700;
  color: var(--color-white);
  transition: all 0.3s ease;
}
header #headerContactArea li:nth-child(1) a::before {
  position: absolute;
  left: 10px;
  top: 7px;
  width: 12px;
  height: 16px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
header #headerContactArea li:nth-child(2) a::before {
  position: absolute;
  left: 8px;
  top: 10px;
  width: 15px;
  height: 11px;
  background-image: url("../img/icon06.svg");
  background-size: cover;
  content: "";
}
header #headerContactArea li a:hover {
  text-decoration: none;
  background-color: var(--color-brand-hover);
}
@media only screen and (max-width: 767px) {
  header #headerContactArea {
    display: none;
  }
}
/*==========================================
 フッターのスタイル
===========================================*/
#footerContact {
  width: 816px;
  height: 120px;
  margin: var(--space-section-emphasis) auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footerContact .column {
  width: 388px;
  height: 120px;
}
#footerContact .column a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 388px;
  height: 120px;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: var(--card-radius);
  background-color: var(--color-brand);
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: all 0.3s;
}
#footerContact .column a:hover {
  background-color: var(--color-brand-hover);
  opacity: 0.7;
  text-decoration: none;
  transition: all 0.3s;
}
#footerContact .column:nth-child(1) a::before {
  position: absolute;
  left: 120px;
  top: 32px;
  width: 18px;
  height: 24px;
  background-image: url("../img/icon05.svg");
  background-size: cover;
  content: "";
}
#footerContact .column:nth-child(2) a::before {
  position: absolute;
  left: 89px;
  top: 35px;
  width: 25px;
  height: 18px;
  background-image: url("../img/icon06.svg");
  background-size: cover;
  content: "";
}
#footerContact .column h3 {
  padding-top: 0px;
  font-size: var(--font-button-cta);
  font-weight: 700;
  color: var(--color-white);
}
#footerContact .column p {
  padding-top: 10px;
  font-size: var(--font-ui-small);
  font-weight: 700;
  color: var(--color-white);
  line-height: var(--lh-ui);
}
@media only screen and (max-width: 767px) {
  #footerContact {
    width: calc(100% - 40px);
    height: auto;
    margin: var(--space-section-emphasis-sp) auto 0;
  }
  #footerContact .column {
    width: 100%;
    height: 100px;
    margin: 0 0 20px;
  }
  #footerContact .column a {
    width: 100%;
    height: 100px;
    padding: 0 20px;
  }
  #footerContact .column:nth-child(1) a::before {
    left: 50%;
    top: 27px;
    width: 16px;
    height: 21px;
    margin: 0 0 0 -66px;
  }
  #footerContact .column:nth-child(2) a::before {
    left: 50%;
    top: 30px;
    width: 20px;
    height: 15px;
    margin: 0 0 0 -90px;
  }
  #footerContact .column h3 {
    padding-top: 0px;
    font-size: var(--font-button-cta-sp);
  }
  #footerContact .column p {
    padding-top: 5px;
    font-size: var(--font-body-small);
  }
}
footer {
  width: 100%;
  margin: var(--space-section) 0 0;
  padding: var(--space-section-inner) 25px 0;
  box-sizing: border-box;
  background-color: var(--color-ui-mid);
}
footer #footerBody {
  position: relative;
  width: 1200px;
  margin: 0 auto
}
footer #footerBody h2 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 192px;
  height: auto;
  transition: all 0.3s;
}
footer #footerBody h2 img:nth-child(1) {
  opacity: 0;
}
footer #footerBody h2:hover img:nth-child(1) {
  opacity: 1;
}
footer #footerBody h2:hover img:nth-child(2) {
  opacity: 0;
}

footer #footerBody #footerSns {
  position: absolute;
  right: 0;
  top: 0;
}
footer #footerBody #footerSns ul {
  display: flex;
  list-style-type: none;
}
footer #footerBody #footerSns ul li {
  position: relative;
  width: 48px;
  height: 48px;
  margin: 0 0 0 28px;
}
footer #footerBody #footerSns ul li:nth-child(1) {
  margin: 0;
}
footer #footerBody #footerSns ul li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  transition: all 0.3s;
}

footer #footerBody #footerLink {
  display: flex;
  padding: var(--space-section-lg) 0 0;
}
footer #footerBody #footerLink .column:nth-child(1) {
  width: 270px;
}
footer #footerBody #footerLink .column:nth-child(2) {
  width: 280px;
}
footer #footerBody #footerLink .column:nth-child(3) {
  width: 256px;
  margin-left: 30px;
}
footer #footerBody #footerLink .column:nth-child(4) {
  width: 300px;
  margin-left: 30px;
}
footer #footerBody #footerLink .column:nth-child(5) {
  width: 135px;
  padding: 75px 0 0 0;
}
footer #footerBody #footerLink .column ul {
  list-style-type: none;
}
footer #footerBody #footerLink .column ul li {
  padding: 0 0 22px;
}
footer #footerBody #footerLink .column ul li a {
  position: relative;
  font-size: var(--font-ui-small);
  line-height: var(--lh-ui);
  color: var(--color-white);
  display: flex;
  align-items: center;
}
footer #footerBody #footerLink .column ul li:nth-child(1) {
  padding: 0 0 50px;
}
footer #footerBody #footerLink .column ul li:nth-child(1) a {
  font-size: var(--font-ui-large); /* フッターナビ大リンク */
  font-weight: 400;
}
footer #footerBody #footerLink .column:nth-child(5) ul li:nth-child(1) {
  padding: 0 0 22px;
}
footer #footerBody #footerLink .column:nth-child(5) ul li:nth-child(1) a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: var(--font-ui-small);
}
footer #footerBody #footerLink .column ul li a:hover {
  text-decoration: underline;
}
footer #footerBody #footerLink .column ul li.footer-branding-tags {
  color: var(--color-white);
  line-height: 1.8;
  padding-top: 0;
}
footer #footerBody #footerLink .column ul li.footer-branding-tags a {
  display: inline;
  font-size: var(--font-ui-small);
}
footer #footerBody #footerLink .column ul li.footer-divider {
  border-top: 1px dotted #fff;
  padding: 0 0 22px;
}
footer #footerBody #footerLink .column ul li a[href*="wantedly"]::after {
  width: 14px;
  height: 11px;
  margin-left: 5px;
  background-image: url("../img/icon08-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  flex-shrink: 0;
}

footer #footerBody #footerUtility {
  width: 300px;
  margin: 0 auto;
  padding: var(--space-footer-utility-top) 0 0;
}
footer #footerBody #footerUtility ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding-left: 0;
}
footer #footerBody #footerUtility ul li a {
  font-size: var(--font-caption);
  font-weight: 500;
  color: var(--color-white);
}

footer #footerBody small {
  display: block;
  padding: 40px 0 var(--space-section);
  font-size: var(--font-ui-small);
  color: var(--color-white);
  text-align: center;
}
@media only screen and (max-width: 1266px) {
  footer {
    width: 100%;
    margin: var(--space-section) 0 0;
    padding: var(--space-section-inner) 25px 0;
    box-sizing: border-box;
    background-color: var(--color-ui-mid);
  }
  footer #footerBody {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    width: 100%;
    margin: var(--space-section-sp) 0 0;
    padding: var(--space-section-inner-sp) 0 0 !important;
  }
  footer #footerBody {
    width: 100%;
  }
  footer #footerBody h2  {
    display: none;
  }

  footer #footerBody #footerSns {
    position: static;
    width: 100%;
  }
  footer #footerBody #footerSns ul {
    display: flex;
    width: 270px;
    margin: 0 auto;
  }

  footer #footerBody #footerLink {
    display: none;
  }

  footer #footerBody #footerUtility {
    width: 280px;
    padding: var(--space-footer-utility-top-sp) 0 0;
  }
  footer #footerBody #footerUtility ul li a {
    font-size: var(--font-caption-small);
  }

  footer #footerBody small {
    padding: 40px 0 var(--space-section-sp);
    font-size: var(--font-caption-small);
  }
}

/*==========================================
 ページアップ
===========================================*/
footer #footerBody #pageup {
  position : absolute;
  top : -120px;
  right : 0;
}
footer #footerBody #pageup a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
}
footer #footerBody #pageup a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  transition: all 0.3s;
}
footer #footerBody #pageup a img:nth-child(1) {
  opacity: 0;
}
footer #footerBody #pageup a:hover img:nth-child(1) {
  opacity: 1;
}
footer #footerBody #pageup a:hover img:nth-child(2) {
  opacity: 0;
}
/* スマホ用 */
@media only screen and (max-width: 767px) {
  footer #footerBody #pageup {
    display: none;
  }
}

/*==========================================
 コンテンツのスタイル 共通
===========================================*/
#mainContents {
  min-height: 500px;
  margin-top: 120px;
}
#mainContents.pt_0 {
  margin-top: 0;
}
#mainContents section.w_full {
  width: 100%;
  margin: 0;
}
#mainContents section.w_1200 {
  width: 1200px;
  margin: 0 auto;
}
#mainContents section.bc_G01 {
  background-color: var(--color-ui-mid);
}
#mainContents section.bc_G02 {
  background-color: var(--color-gray-100);
}
#mainContents section.bc_G03 {
  background-color: var(--color-gray-100);
}
#mainContents section.bt_white {
  border-top: 1px solid var(--color-white);
}

@media only screen and (max-width: 767px) {
  #mainContents {
    min-height: 500px;
    margin-top: 54px;
  }
  #mainContents section.w_1200 {
    width: 90%;
    margin: 0 5%;
  }
  #mainContents section.w_5no {
    width: 100%;
    margin: 0;
  }
}

/* 余白調整  /////////////////////////////*/
#mainContents .pt_10 { padding-top: 10px; }
#mainContents .pt_20 { padding-top: 20px; }
#mainContents .pt_30 { padding-top: 30px; }
#mainContents .pt_40 { padding-top: 40px; }
#mainContents .pt_50 { padding-top: 50px; }
#mainContents .pt_60 { padding-top: 60px; }
#mainContents .pt_80 { padding-top: 80px; }
#mainContents .pt_100 { padding-top: 100px; }
#mainContents .pt_130 { padding-top: 130px; }
#mainContents .pt_150 { padding-top: 150px; }
#mainContents .pt_200 { padding-top: 200px; }

#mainContents .pb_10 { padding-bottom: 10px; }
#mainContents .pb_20 { padding-bottom: 20px; }
#mainContents .pb_30 { padding-bottom: 30px; }
#mainContents .pb_40 { padding-bottom: 40px; }
#mainContents .pb_50 { padding-bottom: 50px; }
#mainContents .pb_60 { padding-bottom: 60px; }
#mainContents .pb_80 { padding-bottom: 80px; }
#mainContents .pb_100 { padding-bottom: 100px; }
#mainContents .pb_130 { padding-bottom: 130px; }
#mainContents .pb_150 { padding-bottom: 150px; }

#mainContents .mt_20 { margin-top: 20px; }
#mainContents .mt_30 { margin-top: 30px; }
#mainContents .mt_40 { margin-top: 40px; }
#mainContents .mt_50 { margin-top: 50px; }
#mainContents .mt_100 { margin-top: 100px; }

@media only screen and (max-width: 767px) {
  /* #mainContents .pt_10 { padding-top: 5px; }
  #mainContents .pt_20 { padding-top: 10px; }
  #mainContents .pt_30 { padding-top: 15px; }
  #mainContents .pt_40 { padding-top: 20px; } */
  #mainContents .pt_50 { padding-top: 25px; }
  #mainContents .pt_60 { padding-top: 30px; }
  #mainContents .pt_80 { padding-top: 40px; }
  #mainContents .pt_100 { padding-top: 50px; }
  #mainContents .pt_130 { padding-top: 60px; }
  #mainContents .pt_150 { padding-top: 70px; }
  #mainContents .pt_200 { padding-top: 100px; }

  /* #mainContents .pb_10 { padding-bottom: 5px; }
  #mainContents .pb_20 { padding-bottom: 10px; } */
  #mainContents .pb_30 { padding-bottom: 15px; }
  /* #mainContents .pb_40 { padding-bottom: 20px; } */
  #mainContents .pb_50 { padding-bottom: 25px; }
  #mainContents .pb_60 { padding-bottom: 30px; }
  #mainContents .pb_80 { padding-bottom: 40px; }
  #mainContents .pb_100 { padding-bottom: 30px; }
  #mainContents .pb_130 { padding-bottom: 65px; }
  #mainContents .pb_150 { padding-bottom: 75px; }

  #mainContents .mt_20 { margin-top: 10px; }
  #mainContents .mt_30 { margin-top: 15px; }
  #mainContents .mt_40 { margin-top: 20px; }
  #mainContents .mt_50 { margin-top: 25px; }

  #mainContents .plr_5p { padding-left: 5%; padding-right: 5%; }
}

/* layout  /////////////////////////////*/
#mainContents .t_center { text-align: center;}

/*==========================================
 共通スクロールフェード
===========================================*/
.fade_off {
  opacity: 0;
  transform: translateY(70px);
  transition: all 1.8s;
}
.fade_on {
  opacity: 1;
  transform: translateY(0px);
}

/*==========================================
 共通 P
===========================================*/
/* legacy: compatibility only / deprecated / 新規使用禁止 / 将来削除候補 */
#mainContents p.f_13 { font-size: 1.3rem; }
#mainContents p.f_14 { font-size: 1.4rem; }
#mainContents p.f_15 { font-size: 1.5rem; }
#mainContents p.f_16 { font-size: 1.6rem; }
#mainContents p.f_18 { font-size: 1.8rem; }
#mainContents p.f_20 { font-size: 2.0rem; }
#mainContents p.f_22 { font-size: 2.2rem; }
#mainContents p.f_24 { font-size: 2.4rem; }
#mainContents p.f_26 { font-size: 2.6rem; }

/* legacy: compatibility only / deprecated / 新規使用禁止 / 将来削除候補 */
#mainContents p.fl_14 { line-height: var(--lh-ui); }
#mainContents p.fl_16 { line-height: var(--lh-body-tight); }
#mainContents p.fl_18 { line-height: var(--lh-body); }

#mainContents p.center { text-align: center; }
#mainContents p.right { text-align: right; }

#mainContents p.fc_red { color: var(--color-error); }
#mainContents p.fc_white { color: var(--color-white); }

@media only screen and (max-width: 767px) {
  #mainContents p.f_sp_14 { font-size: 1.4rem; }
}

/*==========================================
 共通 img
===========================================*/
#mainContents img.img_full {
  width: 100%;
  height: auto;
}

/*==========================================
 共通リンク
===========================================*/
#mainContents .linkTyp01 a {
  position: relative;
  display: flex;
  align-items: center;     /* ← 縦中央 */
  justify-content: center; /* ← 横中央（必要なら） */
  width: 235px;
  height: 60px;
  margin: 0 auto;
  padding: 10px 10px 10px;
  box-sizing: border-box;
  border: 1px solid var(--color-ui-dark);
  background-color: var(--color-ui-dark);
  font-size: 2.0rem; /* exception: 汎用CTAボタン固定サイズ */
  color: var(--color-white);
  text-align: center;
  transition: all 0.3s;
}
#mainContents .linkTyp01 a.w_360 {
  width: 360px;
}
#mainContents .linkTyp01 a.w_390 {
  width: 390px;
}
#mainContents .linkTyp01 a.w_450 {
  width: 450px;
}
#mainContents .linkTyp01 a::after {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 30px;
  background-image: url("../img/icon03.svg");
  background-size: cover;
  content: "";
}
#mainContents .linkTyp01 a:hover {
  text-decoration: none;
  background-color: var(--color-brand);
  border: 1px solid var(--color-brand);
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  #mainContents .linkTyp01 a.w_390 {
    width: 260px;
  }
  #mainContents .linkTyp01 a.w_450 {
    width: 240px;
  }
}

/*==========================================
 見出しユーティリティクラス (A–G)
===========================================*/

/* A: .h-display — Poppins 大見出し（セクション英語タイトル / ヒーローh1） */
.h-display {
  font-family: 'Poppins', sans-serif;
  font-size: 3.8rem; /* exception: Poppins大見出し（ブランドタイポグラフィ） */
  font-weight: 600;
  line-height: var(--lh-ui-tight);
}
@media only screen and (max-width: 1266px) {
  .h-display { font-size: 3.04rem; /* exception: Poppins大見出しレスポンシブ */ }
}
@media only screen and (max-width: 767px) {
  .h-display { font-size: 2.6rem; /* exception: Poppins大見出しSP */ }
}

/* B: .h-hero — 大見出し日本語（ページ冒頭タグライン） */
.h-hero {
  font-size: 3.4rem; /* exception: Poppinsヒーロー見出し */
  font-weight: 600;
  line-height: var(--lh-ui);
}
@media only screen and (max-width: 1266px) {
  .h-hero { font-size: 2.72rem; /* exception: Poppinsヒーロー1266px */ line-height: 1.3; /* exception: hero見出し1266px字詰め（--lh-ui-tightより緩め）*/ }
}
@media only screen and (max-width: 767px) {
  .h-hero { font-size: 2.2rem; /* exception: PoppinsヒーローSP */ line-height: var(--lh-ui-tight); }
}

/* C: .h-page — ページタイトル h1 */
.h-page {
  font-size: var(--font-heading-page);
  font-weight: 700;
  line-height: var(--lh-ui);
}
@media only screen and (max-width: 767px) {
  .h-page { font-size: 2.4rem; /* exception: ページタイトルSP縮小 */ }
}

/* D: .h-section — セクション内アイテム見出し（h3 / h4 共通） */
.h-section {
  font-size: var(--font-heading-section);
  font-weight: 700;
  line-height: var(--lh-ui);
}
@media only screen and (max-width: 1266px) {
  .h-section { font-size: var(--font-heading-card); }
}
@media only screen and (max-width: 767px) {
  .h-section { font-size: var(--font-heading-card); }
}

/* E: .h-card — カード内タイトル h3 */
.h-card {
  font-size: var(--font-body);
  font-weight: 700;
  line-height: var(--lh-body);
}

/* F: .h-sub — サブ見出し h2/h3 (1.8rem は heading-section に近いが Poppinsなし本文大で共用) */
.h-sub {
  margin: 0; /* reset: ブラウザデフォルト margin による margin collapse を防ぐ */
  padding: 0; /* reset: wp-block-library h2{padding:.44em} を打ち消す */
  font-size: var(--font-body);
  font-weight: 700;
  line-height: var(--lh-ui);
}
@media only screen and (max-width: 767px) {
.h-sub {
  font-size: var(--font-body-sp);
}
}

/* G: .h-label — セクション日本語ラベル（英語大見出しの上）/ 小見出し */
.h-label {
  font-size: var(--font-ui-small);
  font-weight: 600;
  line-height: var(--lh-ui);
}
.h-label,
.detail__main_cont .h-label {
  font-size: var(--font-ui-small);
  font-weight: 600;
  line-height: var(--lh-ui);
}

/*==========================================
 コンポーネント基底クラス（将来のHTML実装向け・移行期は未使用許容）
===========================================*/

/* .c-card — カード共通（border-radius / bg / shadow） */
.c-card {
  border-radius: var(--card-radius);
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

/* .c-btn — ボタン共通基底 */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--card-radius);
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
/* .c-btn--brand — ブランドカラーCTAボタン */
.c-btn--brand {
  background-color: var(--color-brand);
}
.c-btn--brand:hover {
  background-color: var(--color-brand-hover);
  opacity: 0.7;
}

/* .c-form-field — フォーム入力欄共通基底（input / textarea / select） */
.c-form-field {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  padding: 0 20px;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  font-size: var(--font-ui);
  font-weight: 400;
}
.c-form-field::placeholder {
  color: var(--color-white);
}
.c-form-field:focus {
  outline: none;
}

/*==========================================
 共通レイアウト
===========================================*/
#mainContents .section-top-concept {
  position: relative;
  width: 700px;
  margin: 0 auto;
  padding: 200px 0 0;
}
#mainContents .section-top-concept::before {
  position: absolute;
  left: -275px;
  top: -11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 10.0rem; /* exception: 装飾背景テキスト（視覚効果） */
  color: var(--color-white);
  content: "What we do";
}
#mainContents .section-top-concept h2 {
  padding: 0 0 70px;
}
#mainContents .section-top-concept p {
  padding: 0 0 30px;
  font-weight: 700;
  font-size: var(--font-body);
}
@media only screen and (max-width: 767px) {
  #mainContents .section-top-concept {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 130px 0 0;
  }
  #mainContents .section-top-concept::before {
    left: -20px;
    top: -5px;
    font-size: 5.8rem; /* exception: 装飾背景テキストSP */
  }
  #mainContents .section-top-concept h2 {
    padding: 0 0 30px;
  }
  #mainContents .section-top-concept p {
    padding: 0 0 30px;
    font-size: var(--font-body-sp);
  }
}

#mainContents .service-card-grid {
  position: relative;
  width: 1146px;
  margin: 0 auto;
}
#mainContents .service-card-grid .h-display {
  padding-top: 10px;
}
#mainContents .service-card-grid .columnBox {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}
#mainContents .service-card-grid .columnBox .column {
  width: 100%;
  height: auto;
  min-height: 120px;
  margin: 0;
  text-align: center;
}
#mainContents .service-card-grid .columnBox .column:hover {
  opacity: 0.8;
}
#mainContents .service-card-grid .columnBox .column a {
  display: block;
  width: 100%;
  padding-bottom: var(--card-space-bottom);
  border: 1px solid var(--color-white);
  border-radius: var(--card-radius);
  background-color: var(--card-bg);
  box-sizing: border-box;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}
#mainContents .service-card-grid .columnBox .column a:hover {
  text-decoration: none;
  border: 1px solid var(--color-brand);
}
#mainContents .service-card-grid .columnBox .column .h-section {
  padding-top: var(--card-space-top);
  padding-right: var(--card-padding-x);
  padding-left: var(--card-padding-x);
  transition: all 0.3s ease;
}
#mainContents .service-card-grid .columnBox .column a:hover .h-section {
  color: var(--color-brand);
}
#mainContents .service-card-grid .columnBox .column p {
  padding-top: var(--card-space-between);
  padding-right: var(--card-padding-x);
  padding-left: var(--card-padding-x);
  font-size: var(--font-body-small);
  font-weight: 500;
  line-height: var(--lh-body-tight);
}
/* Service archive: 高さ可変タイル */
#mainContents .service-card-grid .service-tiles .column {
  height: auto;
  min-height: 135px;
  padding-bottom: 28px;
}
@media only screen and (max-width: 1266px) {
#mainContents .service-card-grid {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #mainContents .service-card-grid .columnBox {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
#mainContents .service-card-grid {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #mainContents .service-card-grid .h-display {
    padding-top: 10px;
  }
  #mainContents .service-card-grid .columnBox {
    width: 100%;
    padding: 30px 0 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  #mainContents .service-card-grid .columnBox .column {
    width: 100%;
    height: auto;
    min-height: 80px;
    margin: 0;
  }
  #mainContents .service-card-grid .columnBox .column a {
    padding-bottom: var(--card-space-bottom-sp);
  }
  #mainContents .service-card-grid .columnBox .column .h-section {
    padding-top: var(--card-space-top-sp);
    padding-right: var(--card-padding-x-sp);
    padding-left: var(--card-padding-x-sp);
    font-size: var(--font-body);
  }
  #mainContents .service-card-grid .columnBox .column p {
    padding-top: var(--card-space-between-sp);
    padding-right: var(--card-padding-x-sp);
    padding-left: var(--card-padding-x-sp);
    font-size: var(--font-caption-small);
  }
  #mainContents .service-card-grid .service-tiles .column {
    height: auto;
    min-height: 100px;
  }
}

/* トップページ service-card-grid 内での service-area 上書き */
#mainContents .service-card-grid .fp-service-cards {
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  #mainContents .service-card-grid .fp-service-cards {
    padding-top: 30px;
  }
}
#mainContents .service-card-grid .fp-service-cards > *:last-child {
  margin-bottom: 0;
}

#mainContents .works-card-grid {
  position: relative;
  width: 1146px;
  margin: 0 auto;
}
#mainContents .works-card-grid h3 {
  padding-top: 15px;
}
@media only screen and (max-width: 767px) {
#mainContents .works-card-grid h3 {
  padding-top: 10px;
}
}
#mainContents .works-card-grid .works-card-grid_Inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 30px 0 0;
}
/* -- カードレイアウト（works-card-grid / content-card-grid） -- */
#mainContents .works-card-grid .works-card-grid_Inner .column,
#mainContents .content-card-grid .content-card-grid_Inner .column {
  position: relative;
  width: 346px;
  height: auto;
  border-radius: var(--card-radius);
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
#mainContents .works-card-grid .works-card-grid_Inner .column a,
#mainContents .content-card-grid .content-card-grid_Inner .column a {
  display: block;
}
#mainContents .works-card-grid .works-card-grid_Inner .column a:hover,
#mainContents .content-card-grid .content-card-grid_Inner .column a:hover {
  text-decoration: none;
}
#mainContents .works-card-grid .works-card-grid_Inner .column img,
#mainContents .content-card-grid .content-card-grid_Inner .column img {
  display: block;
  width: 100%;
  height: 178px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  object-fit: cover;
}
/* -- カードタイポグラフィ（works-card-grid / content-card-grid） -- */
#mainContents .works-card-grid .works-card-grid_Inner .column h4,
#mainContents .works-card-grid .works-card-grid_Inner .column p.h-label,
#mainContents .content-card-grid .content-card-grid_Inner .column h4,
#mainContents .content-card-grid .content-card-grid_Inner .column p.h-label {
  font-size: var(--font-ui-small);
  line-height: var(--lh-body-tight);
}
#mainContents .works-card-grid .works-card-grid_Inner .column p:not(.h-label),
#mainContents .content-card-grid .content-card-grid_Inner .column p:not(.h-label) {
  font-size: var(--font-body-small);
  line-height: var(--lh-body-tight);
}
/* -- カード余白（works-card-grid / content-card-grid） -- */
#mainContents .works-card-grid .works-card-grid_Inner .column > a > h4,
#mainContents .works-card-grid .works-card-grid_Inner .column > a > p.h-label,
#mainContents .content-card-grid .content-card-grid_Inner .column > a > h4,
#mainContents .content-card-grid .content-card-grid_Inner .column > a > p.h-label {
  padding-top: var(--card-space-top);
  padding-right: var(--card-padding-x);
  padding-left: var(--card-padding-x);
}
#mainContents .works-card-grid .works-card-grid_Inner .column > a > p:not(.h-label),
#mainContents .content-card-grid .content-card-grid_Inner .column > a > p:not(.h-label) {
  padding-top: var(--card-space-between);
  padding-right: var(--card-padding-x);
  /*padding-bottom: var(--card-space-bottom);*/
  padding-left: var(--card-padding-x);
}
/* c-card-tile--no-title: タイトルなしカード 画像直後p上余白（variant class による明示的管理） */
#mainContents .works-card-grid .works-card-grid_Inner .c-card-tile--no-title > a > p:not(.h-label),
#mainContents .content-card-grid .content-card-grid_Inner .c-card-tile--no-title > a > p:not(.h-label) {
  padding-top: var(--card-body-padding-top-no-title);
}

#mainContents .works-card-grid .works-card-grid_Inner .column,
#mainContents .content-card-grid .content-card-grid_Inner .column { 
  margin: 0 54px 0 0; 
  padding-bottom: 20px;
}

#mainContents .works-card-grid .works-card-grid_Inner .column:nth-child(3n),
#mainContents .content-card-grid .content-card-grid_Inner .column:nth-child(3n) { margin: 0; }
@media only screen and (max-width: 1266px) {
  #mainContents .works-card-grid {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
  #mainContents .works-card-grid .works-card-grid_Inner .column,
  #mainContents .content-card-grid .content-card-grid_Inner .column {
    width: 30%;
  }
  #mainContents .works-card-grid .works-card-grid_Inner .column,
  #mainContents .content-card-grid .content-card-grid_Inner .column { margin: 0 5% 0 0; }
}
@media only screen and (max-width: 767px) {
  #mainContents .works-card-grid .works-card-grid_Inner {
    padding: 30px 0 0;
  }
  #mainContents .works-card-grid .works-card-grid_Inner .column,
  #mainContents .content-card-grid .content-card-grid_Inner .column {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    padding-bottom: 20px;
  }
  #mainContents .works-card-grid .works-card-grid_Inner .column:nth-child(3n),
  #mainContents .content-card-grid .content-card-grid_Inner .column:nth-child(3n) { margin: 0; }
  /* タイポグラフィ SP */
  #mainContents .works-card-grid .works-card-grid_Inner .column h4,
  #mainContents .works-card-grid .works-card-grid_Inner .column p.h-label,
  #mainContents .content-card-grid .content-card-grid_Inner .column h4,
  #mainContents .content-card-grid .content-card-grid_Inner .column p.h-label {
    font-size: var(--font-ui-small);
    line-height: 1.5; /* exception: SP縦幅制約（lh-body-tightより少し広め）*/
  }
  #mainContents .works-card-grid .works-card-grid_Inner .column p:not(.h-label),
  #mainContents .content-card-grid .content-card-grid_Inner .column p:not(.h-label) {
    font-size: var(--font-body-small);
    line-height: var(--lh-body-loose);
  }
  /* 余白 SP */
  #mainContents .works-card-grid .works-card-grid_Inner .column > a > h4,
  #mainContents .works-card-grid .works-card-grid_Inner .column > a > p.h-label,
  #mainContents .content-card-grid .content-card-grid_Inner .column > a > h4,
  #mainContents .content-card-grid .content-card-grid_Inner .column > a > p.h-label {
    padding-top: var(--card-space-top-sp);
    padding-right: var(--card-padding-x-sp);
    padding-left: var(--card-padding-x-sp);
  }
  #mainContents .works-card-grid .works-card-grid_Inner .column > a > p:not(.h-label),
  #mainContents .content-card-grid .content-card-grid_Inner .column > a > p:not(.h-label) {
    padding-top: var(--card-space-between-sp);
    padding-right: var(--card-padding-x-sp);
    /*padding-bottom: var(--card-space-bottom-sp);*/
    padding-left: var(--card-padding-x-sp);
  }
  /* c-card-tile--no-title SP */
  #mainContents .works-card-grid .works-card-grid_Inner .c-card-tile--no-title > a > p:not(.h-label),
  #mainContents .content-card-grid .content-card-grid_Inner .c-card-tile--no-title > a > p:not(.h-label) {
    padding-top: var(--card-body-padding-top-no-title-sp);
  }
}


#mainContents .content-card-grid {
  width: 1146px;
  margin: 0 auto;
}
#mainContents .content-card-grid h3 {
  padding: 15px 0 0;
}
#mainContents .content-card-grid .content-card-grid_Inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 30px 0 0;
  row-gap: 50px;
}
@media only screen and (max-width: 1266px) {
  #mainContents .content-card-grid {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .content-card-grid {
    width: calc(100% - 40px) !important;
    padding: 0;
  }
  #mainContents .content-card-grid h3 {
    padding: 10px 0 0;
  }
  #mainContents .content-card-grid .content-card-grid_Inner {
    padding: 30px 0 30px;
    row-gap: 20px;
  }
}

#mainContents .archive-card-grid {
  width: 1146px;
  margin: 0 auto;
}
#mainContents .archive-card-grid h3 {
  padding: 15px 0 0;
}
#mainContents .archive-card-grid .archive-card-grid_Inner {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  padding: 30px 0 30px;
}
#mainContents .archive-card-grid .archive-card-grid_Inner .column {
  position: relative;
  width: 346px;
  height: auto;
  margin: 0 54px 80px 0;
  border-radius: var(--card-radius);
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
#mainContents .archive-card-grid .archive-card-grid_Inner .column:nth-child(3n) {
  margin: 0 0 80px 0;
}
#mainContents .archive-card-grid .archive-card-grid_Inner .column a {
  display: block;
}
#mainContents .archive-card-grid .archive-card-grid_Inner .column a:hover {
  text-decoration: none;
}
#mainContents .archive-card-grid .archive-card-grid_Inner .column img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}
/* -- バリアント: テキスト中央揃え（/service/ 専用） -- */
#mainContents .archive-card-grid--center .archive-card-grid_Inner .column h3,
#mainContents .archive-card-grid--center .archive-card-grid_Inner .column p {
  text-align: center;
}
/* -- カードタイポグラフィ（archive-card-grid） -- */
#mainContents .archive-card-grid .archive-card-grid_Inner .column h3 {
  font-size: var(--font-heading-card);
  line-height: var(--lh-body-tight);
}
#mainContents .archive-card-grid .archive-card-grid_Inner .column p {
  font-size: var(--font-body-detail);
  line-height: var(--lh-body-tight);
}
/* -- カード余白（archive-card-grid） -- */
#mainContents .archive-card-grid .archive-card-grid_Inner .column > a > h3 {
  padding-top: var(--card-space-top);
  padding-right: var(--card-padding-x);
  padding-left: var(--card-padding-x);
}
#mainContents .archive-card-grid .archive-card-grid_Inner .column > a > p {
  padding-right: var(--card-padding-x);
  padding-bottom: var(--card-space-bottom);
  padding-left: var(--card-padding-x);
  padding-top: var(--card-padding-y);
}
@media only screen and (max-width: 1266px) {
  #mainContents .archive-card-grid {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
  #mainContents .archive-card-grid .archive-card-grid_Inner .column {
    width: 30%;
    margin: 0 5% 80px 0;
  }
  #mainContents .archive-card-grid .archive-card-grid_Inner .column:nth-child(3n) {
    margin: 0 0 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .archive-card-grid {
    width: calc(100% - 40px) !important;
    padding: 0;
  }
  #mainContents .archive-card-grid .archive-card-grid_Inner {
    padding: 20px 0 0;
  }
  #mainContents .archive-card-grid .archive-card-grid_Inner .column {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 0 40px 0;
  }
  #mainContents .archive-card-grid .archive-card-grid_Inner .column:nth-child(3n) {
    margin: 0 0 40px;
  }
  /* タイポグラフィ SP */
  #mainContents .archive-card-grid .archive-card-grid_Inner .column h3 {
    font-size: var(--font-heading-card);
    line-height: 1.5; /* exception: SP縦幅制約（lh-body-tightより少し広め）*/
  }
  #mainContents .archive-card-grid .archive-card-grid_Inner .column p {
    font-size: var(--font-body-small);
    line-height: var(--lh-body-loose);
  }
  /* 余白 SP */
  #mainContents .archive-card-grid .archive-card-grid_Inner .column > a > h3 {
    padding-top: var(--card-space-top-sp);
    padding-right: var(--card-padding-x-sp);
    padding-left: var(--card-padding-x-sp);
  }
  #mainContents .archive-card-grid .archive-card-grid_Inner .column > a > p {
    padding-right: var(--card-padding-x-sp);
    padding-bottom: var(--card-space-bottom-sp);
    padding-left: var(--card-padding-x-sp);
  }
}

#mainContents .article-shell {
  position: relative;
  width: 1200px;
  margin: 40px auto 0;
  padding: 100px 0 100px;
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}
#mainContents .article-shell_Title {
  position: relative;
  width: 800px;
  margin: 0 auto clamp(20px, 5vw, 50px);
}
#mainContents .article-shell_Title p {
  /*position: absolute;
  top: -20;*/
  font-size: var(--font-body-small);
}
.service-title {
  font-size: var(--font-heading-emphasis);
  font-weight: 700;
}
#mainContents .article-shell .article-shell_Inner {
  width: 800px;
  margin: 0 auto;
  padding: 20px 0 20px;
}
#mainContents .article-shell .article-shell_Inner blockquote {
  position: relative;
  margin: 30px 0 30px;
  padding: 35px 35px 15px;
  border-left: 5px solid var(--color-white);
  box-sizing: border-box;
  background-color: var(--color-white);
}
#mainContents .article-shell .article-shell_Sns {
  position: fixed;
  right: 15px;
  top: 120px;
}
#mainContents .article-shell .article-shell_Sns a {
  display: block;
}
#mainContents .article-shell .article-shell_Sns a img {
  width: 48px;
  height: 48px;
}

#mainContents .article-shell .article-shell_bottom {
  position: relative;
  width: 660px;
  margin: 100px auto 0;
}
#mainContents .article-shell .article-shell_bottom .article-shell_link01 {
  position: absolute;
  right: 0;
  top: -10px;
}
#mainContents .article-shell .article-shell_bottom .article-shell_link01 a {
  font-size: var(--font-body-small); /* UI導線：記事下部の一覧・戻るリンク */
  text-decoration: underline;
  color: var(--color-text);
}
#mainContents .article-shell .article-shell_bottom .article-shell_link01 a:hover {
  opacity: 0.7;
}
#mainContents .article-shell .article-shell_bottom .article-shell_List {
  padding: 30px 0 0;
}
#mainContents .article-shell .article-shell_bottom .article-shell_List ul {
  padding: 0;
}
#mainContents .article-shell .article-shell_bottom .article-shell_List ul li {
  padding: 10px 0;
  border-bottom: 1px dotted var(--color-ui-mid);
}
#mainContents .article-shell .article-shell_bottom .article-shell_List ul li:last-child {
  padding: 10px 0 0;
  border-bottom: none;
}
#mainContents .article-shell .article-shell_bottom .article-shell_List ul li a {
  font-size: var(--font-body-small); /* 関連記事リンク：本文寄り読み導線 */
  line-height: var(--lh-body-tight);
  color: var(--color-text);
}
#mainContents .article-shell .article-shell_bottom .article-shell_List ul li a br {
display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .article-shell {
    width: 100%;
    margin: 15px 0;
    padding: 60px 0 80px;
  }
  #mainContents .article-shell_Title {
    width: 90%;
  }
  #mainContents .article-shell_Title p {
    /*top: 40px;*/
    font-size: var(--font-caption);
  }
  #mainContents .article-shell .article-shell_Inner {
    width: 90%;
    padding: 10px 0;
  }
  #mainContents .article-shell .article-shell_Sns {
    position: static;
    display: flex;
    justify-content: center;
  }

  #mainContents .article-shell .article-shell_bottom {
    width: 90%;
    margin: 50px auto;
  }
  #mainContents .article-shell .article-shell_bottom .article-shell_List {
    padding: 30px 0 0;
  }
  #mainContents .article-shell .article-shell_bottom .article-shell_List ul li {
    padding: 0 0 15px;
  }
  #mainContents .article-shell .article-shell_bottom .article-shell_List ul li a {
    font-size: var(--font-body-small);
  }
  #mainContents .article-shell .article-shell_bottom .article-shell_link01 a {
    font-size: var(--font-body-tag);
  }
  #mainContents .article-shell_Inner .link01 {
    margin: 0 auto;
  }
}

#mainContents .article-shell_Inner .link01 {
  width: 200px;
  height: 50px;
  margin: 50px auto 0;
}
#mainContents .article-shell_Inner .link01 a {
  position: relative;
  display: block;
  width: 200px;
  height: 50px;
  padding: 10px 0 0;
  box-sizing: border-box;
  background-color: var(--color-ui-dark);
  font-size: var(--font-ui);
  color: var(--color-white);
  text-align: center;
  transition: all 0.3s;
}
#mainContents .article-shell_Inner .link01 a::before {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 9px;
  height: 18px;
  background-image: url("../img/icon02.svg");
  background-size: 100% 100%;
  content: "";
}
#mainContents .article-shell_Inner .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
  background-color: var(--color-brand);
  transition: all 0.3s;
}
#mainContents .filter-nav {
  width: 1200px;
  margin: 0 auto;
}
#mainContents .filter-nav ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
}
#mainContents .filter-nav ul li {
  margin: 0 10px 10px 0;
}
#mainContents .filter-nav ul li a {
  display: block;
  padding: 7px 14px 9px;
  border: 1px solid var(--color-ui-mid);
  border-radius: var(--radius-sm);
  background-color: var(--color-white);
  font-size: 1.45rem; /* exception: タグ絞り込みUI視認サイズ固定 */
  text-align: center;
}
#mainContents .filter-nav ul li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .filter-nav ul li.active a {
  background-color: var(--color-ui-mid);
  color: var(--color-white);
}

@media only screen and (max-width: 767px) {
  #mainContents .filter-nav {
    width: calc(100% - 20px);
    margin: 0 0 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  #mainContents .filter-nav ul {
    display: inline-flex;
    width: max-content;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0 20px 0 0;
  }
  #mainContents .filter-nav ul li {
    margin: 0 10px 10px 0;
    flex-shrink: 0;
  }
  #mainContents .filter-nav ul li a {
    display: block;
    padding: 3px 10px 3px;
    border: 1px solid var(--color-ui-mid);
    border-radius: var(--radius-sm);
    font-size: var(--font-caption);
    text-align: center;
  }
  #mainContents .filter-nav ul li a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
  #mainContents .filter-nav ul li.active a {
    background-color: var(--color-ui-mid);
    color: var(--color-white);
  }
}

#mainContents .access-two-col {
  width: 1100px;
  margin: 0 auto;
  padding: 100px 0 0;
}
#mainContents .access-two-col h3 {
  padding-top: 15px;
}
@media only screen and (max-width: 767px) {
#mainContents .access-two-col h3 {
  padding-top: 10px;
}}
#mainContents .access-two-col .access-two-col_Inner {
  display: flex;
  justify-content: space-between;
  padding: 60px 0 0;
}
#mainContents .access-two-col .access-two-col_Inner .column {
  width: 520px;
}
#mainContents .access-two-col .access-two-col_Inner h4 {
  padding-top: 10px;
  padding-bottom: 20px;
}
#mainContents .access-two-col .access-two-col_Inner iframe {
  width: 520px;
  height: 520px;
  filter: grayscale(1);
}
#mainContents .access-two-col .access-two-col_Inner h2 {
  padding: 20px 0 0;
  font-size: var(--font-heading-card);
  font-weight: 700;
}
#mainContents .access-two-col .access-two-col_Inner p {
  padding-top: 15px;
  font-size: var(--font-body);
  line-height: var(--lh-body);
}
@media only screen and (max-width: 1266px) {
  #mainContents .access-two-col {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
  #mainContents .access-two-col .access-two-col_Inner .column {
    width: 44%;
  }
  #mainContents .access-two-col .access-two-col_Inner iframe {
    width: 100%;
    height: 520px;
  }
}
@media only screen and (max-width: 767px) {
  #mainContents .access-two-col {
    width: 90%;
    padding: 50px 0 0;
  }
  #mainContents .access-two-col .access-two-col_Inner {
    flex-wrap: wrap;
    padding: 20px 0 0;
  }
  #mainContents .access-two-col .access-two-col_Inner .column {
    width: 100%;
    padding: 0 0 60px;
  }
  #mainContents .access-two-col .access-two-col_Inner .column:last-child {
    padding: 0;
  }
  #mainContents .access-two-col .access-two-col_Inner h4 {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  #mainContents .access-two-col .access-two-col_Inner iframe {
    width: 100%;
    height: 400px;
  }
  #mainContents .access-two-col .access-two-col_Inner p {
    padding-top: 10px;
    font-size: var(--font-body-sp);
  }
}

/*==========================================
 共通表組み
===========================================*/
#mainContents .table_typ01 {
  width: 100%;
}
#mainContents .table_typ01 table {
  width: 100%;
  border-bottom: 1px solid var(--color-white);
}
#mainContents .table_typ01 table tr {
  border-top: 1px solid var(--color-white);
}
#mainContents .table_typ01 table tr th {
  width: 122px;
  padding: 20px 5px;
  box-sizing: border-box;
  font-size: var(--font-body-small);
  font-weight: normal;
  text-align: left;
  line-height: var(--lh-body);
}
#mainContents .table_typ01 table tr td {
  padding: 20px 20px;
  font-size: var(--font-body-small);
  background-color: var(--color-white);
  vertical-align: middle;
  line-height: var(--lh-body);
}

@media only screen and (max-width: 767px) {
  #mainContents .table_typ01 {
    padding: 20px 0 30px;
  }
  #mainContents .table_typ01 table tr th {
    width: 95px;
    padding: 10px 15px;
    font-size: var(--font-caption);
  }
  #mainContents .table_typ01 table tr td {
    padding: 10px 10px;
    font-size: var(--font-caption);
  }
}

/*==========================================
 目次
===========================================*/
#mainContents .indexTyp01 {
  width: 100%;
  margin: 50px 0 ;
  padding: 40px 40px 20px;
  box-sizing: border-box;
  background-color: var(--color-gray-100);
}
#mainContents .indexTyp01 h3 {
  font-size: var(--font-heading-card);
  font-weight: 400;
}
#mainContents .indexTyp01 ul {
  padding-left: 0;
}
#mainContents .indexTyp01 ul li {
  padding: 10px 0;
  border-bottom: 1px dotted var(--color-ui-mid);
  list-style: none;
}
#mainContents .indexTyp01 ul li:last-child {
  padding: 10px 0 0;
  border-bottom: none;
}

/*==========================================
 Service
===========================================*/
@media only screen and (max-width: 767px) {
    #mainContents .service-section > h3:not(.c-heading-bar) {
        font-size: var(--font-heading-card);
        line-height: var(--lh-body-tight);
        padding-bottom: 10px;
    }
}

.c-branding-summary {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin: 40px 0 0;
}
.c-branding-summary__column {
  width: calc(50% - 25px);
}
.c-branding-summary__column .c-heading-bar {
  margin-bottom: 20px;
}
.c-branding-summary__column ul {
  margin: 0 0 1.8em;
  padding-left: 1.8em;
}
.c-branding-summary__column li {
  list-style: disc;
  margin-bottom: 0.5em;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .c-branding-summary {
    display: block;
    margin: 0; /*30px 0 0*/
  }
  .c-branding-summary__column {
    width: 100%;
    margin-bottom: 30px;
  }
  .c-branding-summary__column:last-child {
    margin-bottom: 0;
  }
}

/*==========================================
 詳細記事本文
===========================================*/
/*.detail__main_cont div {
  margin-bottom: 1.0em;
}*/
.detail__main_cont h2 {
  font-size: var(--font-body-lead);
  line-height: var(--lh-body);
  margin-top: 2.5em;
  margin-bottom: 0.5em;
}
.detail__main_cont .service-en-title + h2 {
  font-size: var(--font-body-large);
  margin-top: 0;
}
.detail__main_cont h3 {
  font-size: var(--font-body-large);
  line-height: var(--lh-body);
}
.detail__main_cont h3.tit {
  font-size: var(--font-display-service);
}
/* h3.c-heading-bar — バー見出しコンポーネント専用（通常 h3 とは独立） */
.detail__main_cont h3.c-heading-bar {
  font-size: var(--font-ui-large);
  line-height: var(--lh-ui);
  padding: 8px 0 0 15px;
  height: 40px;
}
.detail__main_cont h4 {
  font-size: var(--font-body);
  line-height: 1.6;
  font-weight: 700;
  margin: 0.4em 0 0.4em;
}
.detail__main_cont p {
  font-size: var(--font-body);
  line-height: var(--lh-body);
  margin: 0 0 1em;
}
.detail__main_cont strong {
  font-weight: 700;
}
.article-shell_Inner--works .detail__main_cont > p {
  padding-bottom:30px;
}

.detail__main_cont p a:link,
.detail__main_cont p a:visited {
  text-decoration: underline;
}
.detail__main_cont p a:hover {
  text-decoration: none;
}
.detail__main_cont a {
  cursor: pointer;
}
.detail__main_cont p.writer {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
}
.detail__main_cont p.writer img {
  display: inline; /* exception: flex item内でblock上書きを解除 */
  width: 30px;
  height: auto;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.detail__main_cont div img.aligncenter {
  display: block;
  margin: 0 auto;
}
.detail__main_cont ul {
  margin: 0;
  padding: 1.0em 0 0 2.5em;
}
.detail__main_cont ul li,
 .detail__main_cont magazine-section ul li{
  list-style: disc;
  margin-bottom: 0.5em;
  line-height: 1.7;
}
.detail__main_cont .cv_btn {
  border: 1px solid var(--color-accent-cv-border);
  margin: 4em 0;
  padding: 1.5em 0.5em;
  width: 100%;
  line-height: 2em; /* exception: CVボタン縦余白確保（em指定でfont-size倍率固定）*/
  color: var(--color-accent-cv);
  text-align: center;
  font-size: var(--font-body-large);
}
.detail__main_cont .cv_btn img {
  padding-bottom: 1em;
}
.detail__main_cont .cv_btn a:link,
.detail__main_cont .cv_btn a:visited {
  font-weight: bold;
  color: var(--color-accent-cv);
  text-decoration: underline;
}
.detail__main_cont .cv_btn a:hover {
  text-decoration: none;
}
.detail__main_cont .colum_wrap {
  border-top: 2px solid var(--color-text-muted);
  margin-top: 5em;
  padding: 1em 0 2em;
}
.detail__main_cont .colum_wrap p.sub {
  font-weight: bold;
  color: var(--color-text-muted);
  font-size: var(--font-body-small);
}
.detail__main_cont .colum_wrap .colum dl {
  border-bottom: 1px solid var(--color-white);
  margin: 0;
  padding: 15px 0;
}
.detail__main_cont .colum_wrap .colum dt.thumbnail {
  width: 20%;
  float: right;
  text-align: right;
}
.detail__main_cont .colum_wrap .colum dd {
  width: 75%;
  float: left;
  line-height: var(--lh-body-relaxed);
}
.detail__main_cont .colum_wrap .colum dd a:link,
.detail__main_cont .colum_wrap .colum dd a:visited {
  text-decoration: underline;
}
.detail__main_cont .colum_wrap .colum dd a:hover {
  text-decoration: none;
}
.detail__main_cont .prof {
  border-top: 5px solid var(--color-text-muted);
  margin-top: 5em;
  padding: 1em 0 2em;
}
.detail__main_cont .prof p.sub {
  font-weight: bold;
  color: var(--color-text-muted);
  font-size: var(--font-body-small);
}
.detail__main_cont .prof dl {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 0 2em;
}
.detail__main_cont .prof dl dt {
  font-size: var(--font-body-large);
  padding: 0;
  margin: 0;
}
.detail__main_cont .prof dl dd {
  font-size: var(--font-body-small);
  padding: 0;
  margin: 0;
}
.detail__main_cont .prof p {
  font-size: var(--font-body-small);
  padding: 0 2em 0;
}
.detail__main_cont img {
  max-width: 100%;
  display: block;
  margin: 0 auto 2em;
}
/* WP登録画像すべてに適用 */
.detail__main_cont img[class*="wp-image-"] {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
/* pc/sp 切り替え（detail__main_cont 内限定） */
.detail__main_cont img.pcView {
  display: block;
}
.detail__main_cont img.spView {
  display: none;
}
@media only screen and (max-width: 767px) {
  .detail__main_cont img {
    max-width: 100%;
    height: auto;
  }
  .detail__main_cont img.pcView {
    display: none;
  }
  .detail__main_cont img.spView {
    display: block;
  }
  .detail__main_cont h2 {
    font-size: var(--font-body-large-sp); /* exception: detail h2レスポンシブ縮小 */
    line-height: var(--lh-body-tight);
    padding: 0;
    margin-top: 0;
    margin-bottom: 1.0em;
  }
  .detail__main_cont h3.tit {
    font-size: var(--font-body-large-sp);
    line-height: var(--lh-body-tight);
    padding: 0;
  }
  .detail__main_cont h3.c-heading-bar {
    font-size: var(--font-body);
    padding: 10px 15px;
    height: auto;
  }
  .detail__main_cont .colum_wrap {
    border-top: 1px solid var(--color-text-muted);
    margin-top: 2em;
    padding: 0.5em 0 1em;
  }
  .detail__main_cont .colum_wrap .colum dd {
    font-size: var(--font-body-small);
    line-height: 1.5em; /* exception: SP詳細カラム説明文の行間制約 */
  }
  .detail__main_cont .prof dl {
    padding: 0;
  }
  .detail__main_cont .prof p {
    padding: 0;
  }
  .detail__main_cont p {
    font-size: var(--font-body-sp);
  }
  .detail__main_txt {
    font-size: var(--font-body-sp);
  }
}

.detail__main_cont .indexTyp01 {
  line-height: var(--lh-ui);
  margin: 50px 0;
}
.detail__main_cont .li-indent {
  margin-left: 20px;
}
#mainContents .indexTyp01 ul li a {
  font-size: var(--font-ui);
  font-weight: 400;
  line-height: var(--lh-ui);
  color: var(--color-text);
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #mainContents .indexTyp01 {
    padding: 20px;
  }
  #mainContents .indexTyp01 ul {
    margin: 0;
  }
  #mainContents .indexTyp01 ul li a {
    font-size: var(--font-body-sp);
    line-height: var(--lh-ui-tight);
  }
}

/* ============================================================
   works詳細：冒頭補足テキスト（インラインスタイル移行用）
   ============================================================ */
.detail__main_cont p.c-works-note {
  font-size: var(--font-caption-small);
  color: var(--color-text-muted);
  line-height: var(--lh-note);
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
.detail__main_cont p.c-works-note {
  font-size: var(--font-caption-small-sp);
}
}

/* Process セクション（グレー背景 + ステップ2列） */
.detail__main_cont {
  position: relative;
  z-index: 1;
}

/* Magazine用下線 */
.detail__main_cont .underline {
    font-weight: 700;
    background: linear-gradient(transparent 60%, #acfef2 60%);
}


/*==========================================
 サービス、マガジン関連（プロフィール）
===========================================*/
/* H2 Service*/
.detail__main_cont .serviceH2 {
  border-bottom: 1px solid var(--color-gray-500);
  padding: 0 0 10px;
  margin: 0 0 25px;
  font-size: var(--font-display-service);
  line-height: var(--lh-body-tight);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .detail__main_cont .serviceH2 {
  padding: 0 0 10px;
  margin: 0 0 10px;
    font-size: var(--font-body-large-sp);
  }
}

/* H2 Magazine*/
.detail__main_cont .c-heading-section {
  border-top: 1px dotted var(--color-gray-500);
  padding-top: 30px;
  margin: 100px 0 50px;
  font-size: var(--font-display-service);
  line-height: var(--lh-body-tight);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .detail__main_cont .c-heading-section {
    margin: 60px 0 30px;
    padding-top: 20px;
    font-size: var(--font-body-large-sp);
  }
}

/* H3 */
.detail__main_cont .c-heading-section2 {
  position: relative;
  margin: 60px 0 20px;
  padding-left: 18px;
}

.detail__main_cont .c-heading-section2::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 4px;
  height: 1.5em;
  background: var(--color-brand);
}

#mainContents .detail__main_cont > ul {
  padding: 1.5em;
  margin: 0;
}
#mainContents .detail__main_cont > ul > li {
  list-style: none;
  margin-left: 2.5em;
}
@media only screen and (max-width: 767px) {
  #mainContents .detail__main_cont > ul > li {
  list-style: none;
  margin-left: 0;
}
}
#mainContents p.update{
margin:3rem 0;
font-size: var(--font-body-small);
color: var(--color-gray-500);
font-style: italic;
}
/* profile: dt/dd 2column */
#tcd .profile dl dt,
#tcd dl.profile dt {
  width: 160px;
  float: left;
  clear: both;
  font-weight: 700;
  padding: 16px 0 0;
  margin: 0 0 16px;
  border-top: 1px solid var(--color-white);
  box-sizing: border-box;
}

#tcd .profile dl dd,
#tcd dl.profile dd {
  width: calc(100% - 160px);
  float: left;
  padding: 16px 0 0;
  margin: 0 0 16px;
  border-top: 1px solid var(--color-white);
  box-sizing: border-box;
}

#tcd .profile dl::after,
#tcd dl.profile::after {
  content: "";
  display: block;
  clear: both;
}

@media only screen and (max-width: 767px) {
  #tcd .profile dl dt,
  #tcd dl.profile dt,
  #tcd .profile dl dd,
  #tcd dl.profile dd {
    width: 100%;
    float: none;
    margin: 0;
  }

  #tcd .profile dl dt,
  #tcd dl.profile dt {
    padding: 12px 0 6px;
  }

  #tcd .profile dl dd,
  #tcd dl.profile dd {
    padding: 0 0 12px;
  }
}

/* 筆者ページ プロフィール（author.php / article-shell_Inner 内で使用） */
#mainContents .author-page-profile_Inner {
  display: flex;
  gap: 40px;
  align-items: center;
}
#mainContents .author-page-profile_Photo {
  flex-shrink: 0;
  width: 120px;
}
#mainContents .author-page-profile_Photo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  display: block;
}
#mainContents .author-page-profile_Body {
  flex: 1;
}

@media only screen and (max-width: 767px) {
  #mainContents .author-page-profile_Inner {
    flex-direction: column;
    gap: 16px;
  }
  #mainContents .author-page-profile_Photo {
    width: 80px;
  }
}

/* 筆者ページ 記事ブロック（author.php / article-shell_Inner 内） */
#mainContents .case-list a:hover {
  text-decoration: underline;
  color: var(--color-brand);
  transition: all 0.3s;
}

#mainContents .case-list dl {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
#mainContents .case-list dt {
  width: 200px;
  flex-shrink: 0;
}
#mainContents .case-list dt img {
  display: block;
  width: 100%;
  height: auto;
}
#mainContents .case-list dd {
  margin: 0;
  flex: 1;
}

#mainContents .author-article {
  margin-top: 30px;
}
#mainContents .author-article__date {
  font-size: var(--font-body-small);
  color: var(--color-text-muted);
  margin: 0 0 8px;
}
#mainContents .author-article__title {
  font-size: var(--font-heading-detail);
  font-weight: 700;
  line-height: var(--lh-body-tight);
  margin: 60px 0 24px;
}
#mainContents .author-article__title a {
  color: var(--color-text);
  text-decoration: none;
}
#mainContents .author-article__title a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  #mainContents .author-article {
    margin-top: 40px;
    padding-top: 40px;
  }
  #mainContents .author-article__title {
    font-size: var(--font-heading-card);
  }
}

/* 筆者プロフィール（single-branding.php 出力 / 旧 profileType01 → Phase 4 で分離） */
#mainContents .author-profile {
  width: 100%;
  margin: 60px 0;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid var(--color-ui-mid);
  line-height: var(--lh-ui);
}
#mainContents .author-profile p.text01 {
  margin: 0;
  padding: 0 0 5px;
  font-size: var(--font-body-small);
}
#mainContents .author-profile p.text02 {
  margin: 0;
  padding-top: 10px;
  font-size: var(--font-body-small);
}
#mainContents .author-profile p.text03 {
  margin: 0;
  font-size: var(--font-body);
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  #mainContents .author-profile {
    margin: 20px 0;
    padding: 20px;
  }
  #mainContents .author-profile p.text01,
  #mainContents .author-profile p.text02 {
    font-size: var(--font-body-tag);
  }
  #mainContents .author-profile p.text03 {
    font-size: var(--font-body-sp);
  }
}

/*==========================================
 記事本文共通コンポーネント
 article-lead / article-definition / article-cta / article-update
===========================================*/

/* リード文 */
.detail__main_cont .article-lead {
  font-size: var(--font-body-lead);
  line-height: 2;
  margin-bottom: 3em;
  color: var(--color-text);
}
@media only screen and (max-width: 767px) {
  .detail__main_cont .article-lead {
    font-size: var(--font-body-sp);
    line-height: 1.9;
    margin-bottom: 2em;
  }
}

/* 定義ブロック（article-definition）正本クラス（旧: profileType01 互換 → Phase 3で正本化） */
.detail__main_cont .article-definition {
  width: 100%;
  margin: 60px 0;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid var(--color-ui-mid);
  line-height: var(--lh-ui);
}
.detail__main_cont .article-definition p {
  margin: 0 0 0.6em;
}
.detail__main_cont .article-definition p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .detail__main_cont .article-definition {
    margin: 20px 0;
    padding: 20px;
  }
}
.article-definition-subtitle {
  padding-top: 2.5em;
  margin: 0;
  font-weight: 700;
}
.article-emphasis {
  padding: 2em 0;
  font-weight: 700;
}

/* CTAブロック（article-cta）正本クラス（旧: profileLink 互換 → Phase 3で削除済み） */
.detail__main_cont .article-cta {
  width: min(100%, 700px);
  margin: clamp(48px, 8vw, 100px) auto;
  padding: clamp(24px, 6vw, 40px);
  box-sizing: border-box;
  background-color: var(--color-gray-700);
  text-align: center;
  color: var(--color-white);
  border-radius: var(--card-radius);
}
.detail__main_cont .article-cta a {
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  width: min(100%, 50rem);
  min-height: 8rem;
  padding: 2rem clamp(2rem, 6vw, 4rem);
  box-sizing: border-box;
  line-height: 1.8;
  color: var(--color-white);
  background: var(--color-cyan);
  text-decoration: none;
  border-radius: var(--radius-sm);
  outline: 1px solid var(--color-white);
}
.detail__main_cont .article-cta a:hover {
  background-color: var(--color-gray-500);
}
/* 参考リンク */
.article-reference {
  margin: 50px 0 ;
  padding: 40px ;
  background-color: var(--color-gray-100);
}
/* 更新履歴 */
.detail__main_cont .article-update {
  margin: 10rem 0;
  font-size: var(--font-body-small);
  color: var(--color-gray-500);
  font-style: italic;
}

/* 画像幅ユーティリティ（inline style="width:80%" 代替） */
.detail__main_cont .img-80 {
  width: 80%;
  display: block;
  margin: 0 auto;
}

/*==========================================
 Definition系コンポーネント
 definition-block / comparison / causal / hierarchy / network
===========================================*/

/* 定義本文ブロック */
.detail__main_cont .definition-block {
  border-left: 4px solid var(--color-brand);
  padding: 1.2em 1.5em;
  margin: 2em 0;
  background: var(--color-gray-100);
  font-size: var(--font-body);
  line-height: var(--lh-body);
}
.detail__main_cont .definition-block strong {
  display: block;
  font-size: var(--font-body-lead);
  margin-bottom: 0.5em;
}

/* 比較ブロック */
.detail__main_cont .definition-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5em;
  margin: 2.5em 0;
}
.detail__main_cont .definition-comparison > * {
  border: 1px solid var(--color-gray-500);
  border-radius: var(--card-radius);
  padding: 1.2em 1.5em;
}
@media only screen and (max-width: 767px) {
  .detail__main_cont .definition-comparison {
    grid-template-columns: 1fr;
  }
}

/* 因果ブロック */
.detail__main_cont .definition-causal {
  margin: 2.5em 0;
}
.detail__main_cont .definition-causal > * + *::before {
  content: "↓";
  display: block;
  text-align: center;
  font-size: var(--font-body-large);
  color: var(--color-brand);
  margin: 0.5em 0;
}

/* 階層ブロック */
.detail__main_cont .definition-hierarchy {
  margin: 2.5em 0;
  padding-left: 1.5em;
  border-left: 2px solid var(--color-gray-500);
}
.detail__main_cont .definition-hierarchy > * {
  margin-bottom: 1em;
}

/* 関連概念ネットワーク（内部リンク群） */
.detail__main_cont .definition-network {
  margin: 3em 0;
  padding: 1.5em;
  background: var(--color-gray-100);
  border-radius: var(--card-radius);
}
.detail__main_cont .definition-network ul {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  list-style: none;
}
.detail__main_cont .definition-network ul li {
  list-style: none;
  margin: 0;
}
.detail__main_cont .definition-network ul li a {
  display: inline-block;
  padding: 0.3em 0.9em;
  border: 1px solid var(--color-brand);
  border-radius: 2em;
  font-size: var(--font-body-small);
  color: var(--color-brand);
  text-decoration: none;
}
.detail__main_cont .definition-network ul li a:hover {
  background: var(--color-brand);
  color: var(--color-white);
}

/*==========================================
 Top KV Slider
===========================================*/
#topMv {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kv-slider {
  position: relative;
  width: 100%;
}

/* 最初のスライドはフロー内に置いてコンテナに高さを与える */
.kv-slide:first-child {
  position: relative;
}

/* 2枚目以降は最初のスライドの上に重ねる */
.kv-slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.kv-slide {
  opacity: 0;
  transition: opacity 1.2s ease;
}
.kv-slide.is-active {
  opacity: 1;
}

.kv-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* ズームアニメーション（is-active になった瞬間に起動） */
.kv-slide.is-active img {
  animation: kv-zoom 5.5s ease-in-out forwards;
}
@keyframes kv-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}

/* 10% ダークオーバーレイ */
.kv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

/* SVGタイトルオーバーレイ */
.kv-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15%;
  z-index: 2;
  pointer-events: none;
}
.kv-title img {
  width: clamp(400px, 50vw, 800px);
  height: auto;
}

@media only screen and (max-width: 767px) {
  #topMv {
    height: 60vh;
  }

  .kv-slider,
  .kv-slide,
  .kv-slide:first-child {
    height: 100%;
  }

  .kv-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .kv-title {
    padding-top: 8%;
  }

  .kv-title img {
    width: clamp(160px, 70vw, 380px);
  }
}


/*==========================================
 Top/branding_tokyo
===========================================*/
#topMv_LP {
  position: relative;
  width: 100%;
  height: 857px;
  margin-top: -107px;
  background-image: url("/branding_tokyo/topMv01.jpg");
  background-size: cover;
  background-position: center top;
}
#topMv_LP #topLogo {
  position: relative;
  width: 1250px;
  height: 750px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}
#topMv_LP #topLogo h2 img {
  position: absolute;
  left: 20px;
  top: 54px;
  width: 142px;
  height: auto;
}
#topMv_LP #topBk_sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  #topMv_LP {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 0;
    background-image: none;
  }
  #topMv_LP #topLogo {
    display: none;
  }
  #topMv_LP #topBk_sp {
    display: block;
  }
  #topMv_LP #topBk_sp img {
    width: 100%;
    height: auto;
  }
}

#mainContents .serviceTyp12 {
  position: relative;
  width: 100%;
  height: 550px;
}
#mainContents .serviceTyp12 .mvArea {
  margin-left: calc((100vw - 880px) / 2);
  overflow: visible !important;
  opacity: 0;
}
#mainContents .serviceTyp12 .bx-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
#mainContents .serviceTyp12 .mvArea img {
   width: 880px;
   height: 550px;
}
#mainContents .serviceTyp12 .mvAreaText {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 880px;
  height: 550px;
  margin: 0 0 0 -440px;
}
#mainContents .serviceTyp12 .mvAreaText img {
  width: 880px;
  height: 550px;
}
@media only screen and (max-width: 767px) {
  #mainContents .serviceTyp12 {
    height: auto;
  }
  #mainContents .serviceTyp12 .mvArea {
    margin-left: 0;
  }
  #mainContents .serviceTyp12 .mvArea img {
     width: 100%;
     height: auto;
  }
  #mainContents .serviceTyp12 .mvAreaText {
    left: 0;
    bottom: auto;
    top: 0;
    width: 100%;
    height: auto;
    margin: 0;
  }
  #mainContents .serviceTyp12 .mvAreaText img {
    width: 100%;
    height: auto;
  }
}


.worksTyp01 {
  width: calc(100vw - 220px);
  margin: 160px auto 0;
}
.worksTyp01 ul {
  width: 1115px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1280px) {
  .worksTyp01 ul {
    width: 100%;
  }
}
.worksTyp01 ul li {
  position: relative;
  padding: 0 12px 20px 0;
}
/* .worksTyp01 ul li::before {
  position: absolute;
  right: 15px;
  top: 2px;
  content: "／"
} */
.worksTyp01 ul li:first-child::before,
.worksTyp01 ul li:last-child::before {
  display: none;
}
.worksTyp01 ul li a {
  display: block;
  padding: 6px 7px 8px;
  border: 1px solid var(--color-white);
  border-radius: var(--card-radius);
  font-size: var(--font-caption);
  color: var(--color-text);
  transition: all 0.3s ease;
}
.worksTyp01 ul li a:hover {
  text-decoration: none;
  border: 1px solid var(--color-brand);
  color: var(--color-brand);
}
.worksTyp01 ul li.active a {
  border: 1px solid var(--color-brand);
  color: var(--color-brand);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .worksTyp01 {
    width: calc(100% - 40px);
    margin: 100px auto 0;
  }
  .worksTyp01 ul li {
    position: relative;
    padding: 0 12px 10px 0;
  }
  .worksTyp01 ul li::before {
    top: 0px;
  }
  .worksTyp01 ul li a {
    padding: 5px 7px 6px;
    font-size: 1.1rem; /* exception: Works一覧リンクSP最小 */
  }
}

.worksTyp02 {
  width: 1200px;
  margin: 40px auto 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.worksTyp02 .column {
  width: calc(50% - 40px);
  margin: 0 80px 80px 0;
  background-color: var(--color-white);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.worksTyp02 .column:nth-child(2n) {
  margin: 0 0 80px 0;
}
.worksTyp02 .column a {
  display: block;
}
.worksTyp02 .column a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.worksTyp02 .column img {
  display: block;
  width: 100%;
  height: 274px;
  object-fit: cover;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}
.worksTyp02 .column p {
  padding: 20px 30px 0;
  font-size: var(--font-body-small);
  line-height: var(--lh-ui);
}
.worksTyp02 .column h3 {
  padding: 10px 30px 30px;
  font-size: var(--font-heading-card);
  line-height: var(--lh-body-tight);
}
@media only screen and (max-width: 1266px) {
  .worksTyp02 {
    width: 100%;
    padding: 0 25px;
    box-sizing: border-box;
  }
  .worksTyp02 .column {
    width: calc(50% - 40px);
  }
}
@media only screen and (max-width: 767px) {
  .worksTyp02 {
    width: calc(100% - 40px);
    margin: 20px auto 0;
    padding: 0;
  }
  .worksTyp02 .column h3 {
  padding: 10px 30px 20px;
 }
  .worksTyp02 .column {
    width: 100%;
    margin: 0 0 40px 0;
  }
  .worksTyp02 .column:nth-child(2n) {
    margin: 0 0 40px 0;
  }
  .worksTyp02 .column img {
    height: 28vh;
  }
}

/* -- naming カテゴリ一覧（詳細ページなし・本文表示） -- */
.worksTyp02--naming .column {
  cursor: default;
}
.worksTyp02--naming .column h3 {
  padding: 16px 30px 8px;
  font-size: var(--font-heading-card);
  line-height: var(--lh-body-tight);
}
.worksTyp02--naming .column .naming-body {
  padding: 0 30px 8px;
  margin: 0;
  font-size: var(--font-body-small);
  line-height: var(--lh-body-tight);
  color: var(--color-text);
}
.worksTyp02--naming .column .naming-tag {
  padding: 10px 30px 24px;
  margin: 0;
  font-size: var(--font-body-tag);
  line-height: var(--lh-ui);
  color: var(--color-text-muted);
}
@media only screen and (max-width: 767px) {
  .worksTyp02--naming .column h3 {
    padding: 12px 20px 6px;
  }
  .worksTyp02--naming .column .naming-body {
    padding: 0 20px 8px;
  }
  .worksTyp02--naming .column .naming-tag {
    padding: 0 20px 20px;
  }
}

.worksTyp03 {
  position: relative;
  width: 100%;
  height: 780px; /* 720px image + 60px pager area (pager: bottom:-40px, height:~40px) */
  margin: 0;
  background-color: var(--color-white);
  top: -100px;
  overflow: hidden;
}
.worksTyp03 .column .column_MV {
  margin-left: 120px; /* (1200px container - 960px image) / 2 */
  overflow: visible !important;
  opacity: 0;
}
.worksTyp03 .column .bx-wrapper {
  max-width: 100% !important;
  margin: 0 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
.worksTyp03 .column .bx-wrapper .bx-pager {
  padding-top: 30px !important;
}
.worksTyp03 .column .bx-wrapper .bx-pager.bx-default-pager a {
  background: var(--color-gray-500) !important;
}
.worksTyp03 .column .bx-wrapper .bx-pager.bx-default-pager a:hover,
.worksTyp03 .column .bx-wrapper .bx-pager.bx-default-pager a.active,
.worksTyp03 .column .bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: var(--color-text) !important;
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  bottom: -40px !important;
}
.worksTyp03 .column .column_MV img {
   width: 960px;
   height: 720px;
}
.worksTyp03 .column .column_MV a {
  cursor: pointer;
  position: relative;
  display: block;
}
.worksTyp03 .column .column_MV_NO img {
   width: 960px;
   height: 720px;
}
@media only screen and (max-width: 767px) {
  .worksTyp03 {
    height: auto;
    top: -60px;
  }
  .worksTyp03 .column .column_MV {
    margin-left: 0;
    overflow: visible !important;
    opacity: 0;
  }

  .worksTyp03 .column .bx-wrapper .bx-pager {
    padding-top: 20px !important;
  }
  .worksTyp03 .column .column_MV img {
     width: 100%;
     height: auto;
  }
  .worksTyp03 .column .column_MV_NO img {
     width: 100%;
     height: auto;
  }
}

.worksTyp03 .column .column_MV_NO {
  position: relative;
  display: block;
  text-align: center;
}

.worksTyp03 .column .column_MV a::after,
.worksTyp03 .column .column_MV_NO::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  z-index: 2;
}

.worksTyp04 {
  width: 690px;
  margin: 0 auto 120px;
}
.worksTyp04 .titleBox p {
  font-size: var(--font-caption-small);

  line-height: var(--lh-ui);
}
.worksTyp04 .titleBox h3 {
  padding: 5px 0 0;
  font-size: var(--font-heading-card);
  line-height: var(--lh-ui);
}
.worksTyp04 .entryBox {
  padding: 30px 0 0;
}
.worksTyp04 .entryBox p {
  padding: 0 0 30px;
}
.worksTyp04 .entryBox p a:visited {
  color: var(--color-text);
  text-decoration: underline;
}
.worksTyp04 .link01 {
  width: 200px;
  height: 50px;
  margin: 120px auto 0;
}
.worksTyp04 .link01 a {
  position: relative;
  display: block;
  width: 200px;
  height: 50px;
  padding: 17px 0 0;
  box-sizing: border-box;
  background-color: var(--color-ui-dark);
  font-size: var(--font-ui);
  color: var(--color-white);
  text-align: center;
  transition: all 0.3s;
}
.worksTyp04 .link01 a::before {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 9px;
  height: 18px;
  background-image: url("../img/icon02.svg");
  background-size: 100% 100%;
  content: "";
}
.worksTyp04 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
  background-color: var(--color-brand);
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .worksTyp04 {
    width: calc(100% - 40px);
    margin: 0 auto 60px;
  }
  .worksTyp04 .titleBox p {
    font-size: var(--font-caption-small);
  }
  .worksTyp04 .titleBox h3 {
    font-size: var(--font-heading-card);
  }
  .worksTyp04 .link01 {
    margin: 60px auto 0;
  }
}

.worksTyp05 {
  width: 684px;
  margin: 0 auto;
  padding: 60px 0 0;
}
.worksTyp05 ul {
  width: 100%;
  height: 38px;
  display: flex;
  border-radius: var(--radius-sm);
}
.worksTyp05 ul li {
  width: 33.333%;
  height: 38px;
  text-align: center;
}
.worksTyp05 ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 13px 0 0;
  box-sizing: border-box;
  background-color: var(--color-white);
  font-size: var(--font-caption);
}
.worksTyp05 ul li.active a,
.worksTyp05 ul li a:hover {
  background-color: var(--color-white);
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .worksTyp05 {
    width: 95%;
    height: 68px;
    margin: 0 0 0 5%;
    padding: 30px 0 0;
    overflow: scroll;
  }
  .worksTyp05 ul {
    width: 450px;
  }
}

.worksTyp06 {
  width: 920px;
  margin: 0 auto;
  padding: 80px 0 0;
}
.worksTyp06 .column {
  width: 100%;
  margin: 0 0 40px;
  padding: 0 0 40px;
  border-bottom: 1px solid var(--color-white);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.worksTyp06 .column .column_L {
  width: 280px;
  height: 188px;
  border: 1px solid var(--color-white);
  box-sizing: border-box;
}
.worksTyp06 .column .column_L img {
  width: 100%;
  height: 100%;
}
.worksTyp06 .column .column_R {
  width: 600px;
}
.worksTyp06 .column .column_R h3 {
  font-size: 2.0rem; /* exception: 大型カード見出し（視認性優先） */

  line-height: var(--lh-ui);
}
.worksTyp06 .column .column_R p {
  padding: 10px 0 0;
  font-size: var(--font-body);
}
@media only screen and (max-width: 767px) {
  .worksTyp06 {
    width: 90%;
    padding: 40px 0 0;
  }
  .worksTyp06 .column {
    width: 100%;
    margin: 0 0 40px;
    padding: 0 0 40px;
  }
  .worksTyp06 .column .column_L {
    width: 100%;
    height: auto;
    margin: 0 0 20px;
  }
  .worksTyp06 .column .column_R {
    width: 100%;
  }
  .worksTyp06 .column .column_R h3 {
    font-size: var(--font-body-large);
  }
  .worksTyp06 .column .column_R p {
    font-size: var(--font-body-small);
  }
}

/*==========================================
 ページネーションのスタイル
===========================================*/
nav#pagination {
  padding: 60px 0 120px;
}
nav#pagination ul {
  text-align: center;
}
nav#pagination ul li {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  vertical-align: middle;
  display: inline-block;
}
nav#pagination ul li a {
  width: 40px;
  height: 40px;
  padding: 5px 0 0 0;
  font-size: var(--font-ui);
  text-align: center;
  display: block;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-ui-mid);
  box-sizing: border-box;
  position: relative;
}
nav#pagination ul li.Active a,
nav#pagination ul li a:hover {
  background: var(--color-ui-mid);
  color: var(--color-white);
}

nav#pagination ul li.prev {
  margin: 0 20px 0 0;
}
nav#pagination ul li.prev a {
  border: none;
  background-color: transparent;
}
nav#pagination ul li.prev a:before {
  content: "";
  height: 16px;
  width: 16px;
  display: block;
  border: 2px solid var(--color-ui-mid);
  border-left-width: 0;
  border-top-width: 0;
  position: absolute;
  top: 50%;
  left: 20px;
  margin: -8px 0 0 0;
  transform: rotate(-225deg);
}
nav#pagination ul li.next {
  margin: 0 0 0 20px;
}
nav#pagination ul li.next a {
  border: none;
  background-color: transparent;
}
nav#pagination ul li.next a:after {
  content: "";
  height: 16px;
  width: 16px;
  display: block;
  border: 2px solid var(--color-ui-mid);
  border-left-width: 0;
  border-top-width: 0;
  position: absolute;
  top: 50%;
  left: 11px;
  margin: -8px 0 0 0;
  transform: rotate(-45deg);
}

nav#pagination .flLink {
  width: 100%;
  padding: 40px 0 0;
  display: flex;
  justify-content: center;
}
nav#pagination .flLink a {
  position: relative;
  display: block;
  padding: 0 30px;
  width: 180px;
  font-size: var(--font-heading-section);
  text-align: center;
}
nav#pagination .flLink a:nth-child(1)::before {
  position: absolute;
  right: 0;
  top: 1px;
  width: 1px;
  height: 17px;
  background-color: var(--color-ui-mid);
  content: "";
}
nav#pagination .flLink a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* スマホ用 */
@media only screen and (max-width: 767px) {
  nav#pagination ul li.pagination-pc-only {
    display: none;
  }
  nav#pagination {
    padding: 30px 0 60px;
  }
  nav#pagination ul li {
    width: 30px;
    height: 30px;
    margin: 0 3px;
  }
  nav#pagination ul li a {
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: var(--font-body-small);
  }

  nav#pagination ul li.prev {
    margin: 0 10px 0 0;
  }
  nav#pagination ul li.next {
    margin: 0 0 0 10px;
  }
  nav#pagination ul li.next a:after {
    left: -5px;
  }
  nav#pagination .flLink {
    padding: 20px 0 0;
  }
  nav#pagination .flLink a {
    padding: 0 20px;
    font-size: var(--font-body-small);
  }
}

/*==========================================
 Contact
===========================================*/
#mainContents .contactTyp01 {
  width: 800px;
  margin: 0 auto;
  padding: 0 0 70px;
}
#mainContents .contactTyp01 h1 {
  padding: 0 0 50px;
  font-size: 4.0rem; /* exception: ContactページH1固定 */
  font-weight: 700;
  text-align: center;
  color: var(--color-gray-700);
  line-height: var(--lh-ui);
}
#mainContents .contactTyp01 h2 {
  padding: 40px 0 10px;
  font-size: var(--font-heading-card);
  font-weight: 700;
}
#mainContents .contactTyp01 p {
  font-size: var(--font-body);
  line-height: var(--lh-body);
}
#mainContents .contactTyp01 .textBox {
  width: 100%;
  margin: 30px 0 0;
  padding: 20px 25px;
  border: 5px solid var(--color-gray-500);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .contactTyp01 .textBox .column {
  width: 47%
}
#mainContents .contactTyp01 .textBox .column p {
  font-size: var(--font-body-small);
  line-height: var(--lh-body);
}
#mainContents .contactTyp01 .link01 {
  width: 235px;
  height: 60px;
  margin: 50px auto 0;
}
#mainContents .contactTyp01 .link01 a {
  display: block;
  width: 235px;
  height: 60px;
  padding: 13px 0 0;
  box-sizing: border-box;
  background-color: var(--color-brand);
  box-shadow: var(--card-shadow);
  font-size: var(--font-ui);
  color: var(--color-white);
  text-align: center;
  transition: all 0.3s;
}
#mainContents .contactTyp01 .link01 a:hover {
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  #mainContents .contactTyp01 {
    width: calc(100% - 40px);
    padding: 20px 0;
  }
  #mainContents .contactTyp01 h1 {
    font-size: 3.6rem; /* exception: ContactページH1固定SP */
    line-height: var(--lh-body-tight);
  }
  #mainContents .contactTyp01 p {
    font-size: var(--font-body-small);
    line-height: var(--lh-body);
  }
  #mainContents .contactTyp01 .textBox {
    margin: 20px 0 0;
    padding: 20px 20px 0;
  }
  #mainContents .contactTyp01 .textBox .column {
    width: 100%;
    padding: 0 0 20px;
  }
}

#mainContents .contactTyp02 {
  width: 800px;
  margin: 0 auto;
  padding: 0 0 50px;
}
#mainContents .contactTyp02 h2 {
  padding: 0 0 40px;
  font-size: 2.6rem; /* exception: Contact h2固定 */
  font-weight: 700;
}
#mainContents .contactTyp02 h3 {
  padding: 0 0 5px;
  font-size: var(--font-heading-card);
  font-weight: 700;
  line-height: var(--lh-ui);
}
#mainContents .contactTyp02 p {
  font-size: var(--font-body);
  font-weight: 300;
}
#mainContents .contactTyp02 td p {
  font-size: var(--font-body-detail);
  margin: 10px 0;
}
#mainContents .contactTyp02 p a {
  text-decoration: underline;
  color: var(--color-text);
}
#mainContents .contactTyp02 p a:hover {
  opacity: 0.7;
}
#mainContents .contactTyp02 .download_Select {
  margin: 30px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--color-gray-500);
}
#mainContents .contactTyp02 .checkBox02 {
  padding: 20px 0 30px 0;
  font-size: var(--font-ui);
  font-weight: 500;
  line-height: var(--lh-ui);
}
#mainContents .contactTyp02 .checkBox02 span {
  padding: 0 0 15px;
}
#mainContents .contactTyp02 .checkBox02 span.error {
  padding: 5px 0 0;
  font-size: var(--font-ui);
  color: var(--color-error);
  display: block;
}
#mainContents .contactTyp02 .checkBox02 input[type="checkbox"] {
  margin: -2px 7px 0 0;
}

#mainContents .contactTyp02 table {
  width: 100%;
  margin: 0 0 15px;
  border-bottom: 1px solid var(--color-gray-500);
}
#mainContents .contactTyp02 table th {
  border-top: 1px solid var(--color-gray-300);
  position: relative;
  width: 300px;
  padding: 20px 0;
  font-size: var(--font-body);
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
  line-height: var(--lh-body);
}
#mainContents .contactTyp02 table th span {
  margin: 0 0 0 10px;
  padding: 2px 15px 3px;
  border-radius: 30px;
  background-color: #E17E5E; /* exception: お問い合わせフォーム「必須」バッジ・オレンジアクセント */
  font-size: var(--font-body-small);
  font-weight: 700;
  color: var(--color-white);
}
#mainContents .contactTyp02 table td {
  border-top: 1px solid var(--color-gray-300);
  padding: 10px 0 10px;
  font-size: var(--font-body);
  line-height: var(--lh-body);
  vertical-align: middle;
  /* font-weight: 700; */
}
#mainContents .contactTyp02 table td span.mwform-checkbox-field label,
#mainContents .contactTyp02 table td span.mwform-radio-field label {
  display: block;
  padding: 0 0 10px;
}
#mainContents .contactTyp02 table td input[type="text"],
#mainContents .contactTyp02 table td input[type="email"],
#mainContents .contactTyp02 table td input[type="tel"] {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid var(--color-gray-500);
  background-color: var(--color-gray-100);
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  font-size: var(--font-ui);
  font-weight: 400;
}
#mainContents .contactTyp02 table td input[type="text"]::placeholder,
#mainContents .contactTyp02 table td input[type="email"]::placeholder,
#mainContents .contactTyp02 table td input[type="tel"]::placeholder {
  color: var(--color-gray-500);
}
#mainContents .contactTyp02 table td .formBox {
  position: relative;
}
#mainContents .contactTyp02 table td .formBox::after {
  position: absolute;
  right: 20px;
  top: 27px;
  width: 17px;
  height: 9px;
  background-image: url("../img/icon07.svg");
  background-size: cover;
  content: "";
}
#mainContents .contactTyp02 table td select {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid var(--color-gray-500);
  background-color: var(--color-gray-100);
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  font-size: var(--font-body-large);
  font-weight: 700;
}
#mainContents .contactTyp02 table td select::placeholder {
  color: var(--color-gray-500);
}
#mainContents .contactTyp02 table td textarea {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  height: 210px;
  padding: 10px 20px;
  border: 1px solid var(--color-gray-500);
  background-color: var(--color-gray-100);
  box-sizing: border-box;
  border-radius: var(--radius-sm);
  resize: none;
  font-size: var(--font-ui);
  font-weight: 400;
  line-height: var(--lh-body-tight);
}
#mainContents .contactTyp02 table td textarea.typ02 {
  height: 100px;
}
#mainContents .contactTyp02 table td textarea::placeholder {
  color: var(--color-gray-500);
}

#mainContents .contactTyp02 .checkBox {
  padding: 20px 0 30px 220px;
}
#mainContents .contactTyp02 .mwform-checkbox-field input[type="checkbox"],
#mainContents .contactTyp02 .mwform-radio-field input[type="radio"]  {
  transform: scale(1.6);
  margin-right: 10px;
}
input[type="file"]::file-selector-button {
  padding: 8px 20px;
  font-size: 16px;
}
#mainContents .contactTyp02 .mwform-checkbox-field label,
#mainContents .contactTyp02 .mwform-checkbox-field-text {
  font-size: var(--font-body);
}

#mainContents .contactTyp02 .checkBox label {
  font-size: var(--font-caption);
  line-height: var(--lh-ui);
}
#mainContents .contactTyp02 .checkBox input[type="checkbox"] {
  margin: -2px 7px 0 0;
}
#mainContents .contactTyp02 .submitArea {
  width: 235px;
  margin: 0 auto;
  padding: 40px 0 0;
}
#mainContents .contactTyp02 .submitArea input[type="submit"] {
  -webkit-appearance: none;
  width: 100%;
  height: 60px;
  background-color: var(--color-brand-hover);
  border: none;
  font-size: 2.0rem; /* exception: お問い合わせ送信ボタン視認サイズ固定 */
  color: var(--color-white);
  cursor: pointer;
  box-shadow: var(--card-shadow);
}
#mainContents .contactTyp02 .submitArea input[type="submit"]:hover {
  text-decoration: none;
  opacity: 0.7;
}
#mainContents .contactTyp02 input:focus,
#mainContents .contactTyp02 select:focus,
#mainContents .contactTyp02 textarea:focus {
  outline: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .contactTyp02 {
    width: calc(100% - 40px);
  }
  #mainContents .contactTyp02 h2 {
    padding: 40px 0 20px;
    font-size: 2.3rem; /* exception: Contact h2固定SP */
  }
  #mainContents .contactTyp02 p {
    font-size: var(--font-body-small);
  }
  #mainContents .contactTyp02 .download_Select {
    margin: 30px 0 0;
    padding: 30px 0 0;
    border-top: 1px solid var(--color-gray-500);
  }
  #mainContents .contactTyp02 .checkBox02 {
    padding: 20px 0 30px 0;
  }
  #mainContents .contactTyp02 .checkBox02 span {
    padding: 0 0 10px;
    font-size: var(--font-body-small);
  }
  #mainContents .contactTyp02 table th {
    display: block;
    width: 100%;
    padding: 10px 0 10px;
    border-top: 1px solid var(--color-gray-300);
  }
  #mainContents .contactTyp02 table td {
    display: block;
    width: 100%;
    padding: 10px 0 10px;
    border-top: none;
  }
  #mainContents .contactTyp02 .checkBox {
    padding: 20px 0 30px 0;
  }
}

/* MW WP FORM関連 */
#mainContents .mw_wp_form_preview .preview_None {
  display: none;
}
#mainContents .mw_wp_form_input .input_None {
  display: none;
}
#mainContents .mw_wp_form_preview .contactTyp01 {
  padding: 70px 0 20px;
}
#mainContents .mw_wp_form .error {
  padding: 5px 0 0;
  font-size: var(--font-ui);
  color: var(--color-error);
  display: block;
}
#mainContents .mw_wp_form_preview .contactTyp02 table {
  /*border-top: 1px solid var(--color-gray-500);*/
}
#mainContents .mw_wp_form_preview .contactTyp02 table th span {
  display: none;
}
#mainContents .mw_wp_form_preview .contactTyp02 table tr {
  border-bottom: 1px solid var(--color-gray-500);
}
#mainContents .mw_wp_form_preview .contactTyp02 table tr th,
#mainContents .mw_wp_form_preview .contactTyp02 table tr td {
  padding: 20px 0;
  font-size: var(--font-body);
  vertical-align: middle;
  line-height: var(--lh-body-tight);
}
#mainContents .mw_wp_form_preview .contactTyp02 table td .formBox::after {
  display: none;
}
#mainContents .contactTyp01 h3 {
  margin: 60px 0 0;
  padding: 20px 0;
  border-top: 1px solid var(--color-gray-500);
  font-size: var(--font-heading-card);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #mainContents .mw_wp_form_preview .contactTyp02 table tr th {
    padding: 20px 0 10px;
  }
  #mainContents .mw_wp_form_preview .contactTyp02 table tr td {
    padding: 0 0 20px;
  }
}

#mainContents .utilityLayout01 {
  width: 850px;
  margin: 0 auto;
  padding: 0;
}
#mainContents .utilityLayout01 h2 {
  padding: 0 0 35px;
  font-size: var(--font-heading-emphasis);
  font-weight: 700;
}
#mainContents .utilityLayout01 h3 {
  padding: 0 0 15px;
  font-size: var(--font-heading-sub);
  font-weight: 700;
}
#mainContents .utilityLayout01 p {
  padding: 0 0 50px;
  font-size: var(--font-body);
  font-weight: 400;
}
#mainContents .utilityLayout01 p.text_Right {
  padding: 30px 0 30px;
  font-size: var(--font-body);
  font-weight: 400;
  text-align: right;
}
#mainContents .utilityLayout01 .textBox {
  padding: 0 0 0 40px;
}
#mainContents .utilityLayout01 h4 {
  padding: 0 0 15px;
  font-size: var(--font-heading-sub);
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #mainContents .utilityLayout01 {
    width: calc(100% - 40px);
    padding: 50px 0 0;
  }
  #mainContents .utilityLayout01 h2 {
    padding: 0 0 30px;
    font-size: var(--font-heading-card);
  }
  #mainContents .utilityLayout01 h3 {
    padding: 0 0 10px;
    font-size: var(--font-heading-card);
  }
  #mainContents .utilityLayout01 p {
    padding: 0 0 40px;
    font-size: var(--font-body-small);
  }
  #mainContents .utilityLayout01 p.text_Right {
    padding: 0 0 40px;
    font-size: var(--font-caption);
  }
  #mainContents .utilityLayout01 .textBox {
    padding: 0 0 0 20px;
  }
  #mainContents .utilityLayout01 h4 {
    padding: 0 0 10px;
    font-size: var(--font-heading-card);
  }
}

/*==========================================
 Download
===========================================*/
#mainContents .downloadTyp01 {
  width: 800px;
  margin: 0 auto;
  padding: 0 0 70px;
}
#mainContents .downloadTyp01 h1 {
  font-size: 4.0rem; /* exception: ContactページH1固定 */
  font-weight: 700;
  text-align: center;
  color: var(--color-gray-700);
  line-height: var(--lh-ui);
}
#mainContents .downloadTyp01 h2 {
  padding: 20px 0 0;
  font-family: 'Poppins', sans-serif;
  font-size: 6.4rem; /* exception: DownloadページH1固定 */
  font-weight: 700;
  text-align: center;
  color: var(--color-gray-700);
}
#mainContents .downloadTyp01 p {
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 0;
  font-size: var(--font-body);
  font-weight: 500;
}
#mainContents .downloadTyp01 .columnBox {
  width: 800px;
  margin: 0 auto;
  padding: 70px 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#mainContents .downloadTyp01 .columnBox .column {
  width: 360px;
  padding: 0 0 70px;
}
#mainContents .downloadTyp01 .columnBox .column img {
  width: 360px;
  height: auto;
}
#mainContents .downloadTyp01 .columnBox .column h3 {
  padding: 15px 0 0 15px;
  font-size: 2.0rem; /* exception: Downloadカード見出し（本文より強調） */
  font-weight: 700;
  line-height: var(--lh-body-tight);
  border-left: 2px solid var(--color-gray-300);
}
#mainContents .downloadTyp01 .columnBox .column p {
  width: auto;
  padding: 15px 0 0 15px;
  font-size: var(--font-body-small);
  font-weight: 500;
  line-height: var(--lh-body);
  border-left: 2px solid var(--color-gray-300);
}
#mainContents .downloadTyp01 .pageDownLink {
  display: none;
}
@media only screen and (max-width: 767px) {
  #mainContents .downloadTyp01 {
    width: calc(100% - 40px);
    padding: 20px 0 0;
  }
  #mainContents .downloadTyp01 h1 {
    font-size: 3.6rem; /* exception: ContactページH1固定SP */
    line-height: var(--lh-body-tight);
  }
  #mainContents .downloadTyp01 h2 {
    padding: 20px 0 0;
    font-size: 5.6rem; /* exception: Downloadページ大数字SP */
  }
  #mainContents .downloadTyp01 p {
    width: 100%;
    font-size: var(--font-body-sp);
  }
  #mainContents .downloadTyp01 .columnBox {
    width: 100%;
    padding: 40px 0 0;
  }
  #mainContents .downloadTyp01 .columnBox .column {
    width: 100%;
    padding: 0 0 35px;
  }
  #mainContents .downloadTyp01 .columnBox .column img {
    width: 100%;
  }
  #mainContents .downloadTyp01 .columnBox .column h3 {
    padding: 15px 0 0 15px;
    font-size: var(--font-heading-card);
  }
  #mainContents .downloadTyp01 .columnBox .column p {
    padding: 10px 0 0 15px;
    font-size: var(--font-caption-small);
  }
  #mainContents .downloadTyp01 .pageDownLink {
    display: block;
    position: fixed;
    z-index: 100;
    right: 7px;
    bottom: 75px;
    width: 80px;
    height: 80px;
  }
  #mainContents .downloadTyp01 .pageDownLink img {
    width: 80px;
    height: 80px;
  }
}


.worksTyp02 .column .over {
  position: relative;
  overflow: hidden;
}

.worksTyp02 .column .over::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   works詳細：見出しバー（インラインスタイル移行用）
   ============================================================ */
.c-heading-bar {
  width: 100%;
  height: 40px;
  background-color: var(--color-gray-300);
  margin-bottom: 20px;
  padding: 3px 0 3px 15px;
  text-align: left;
  font-size: var(--font-ui-large);
  font-weight: 700;
  color: var(--color-text);
  box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
  .c-heading-bar {
    height: auto;
    padding: 5px 10px;
    font-size: var(--font-body);
  }
}

/* ==========================================
   About / Capability image scroll
========================================== */
#AboutArea02 .AboutTyp02 {
  width: 1200px;
  margin-left: -200px;
  overflow: hidden;
  position: relative;
}

#AboutArea02 .AboutMv01 {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

#AboutArea02 .AboutMv01 img {
  display: block;
  width: auto;
  height: 307px;
  flex: 0 0 auto;
}

@media only screen and (max-width: 767px) {
  #AboutArea02 .AboutTyp02 {
    width: 100%;
    margin-left: 0;
  }
  #AboutArea02 .AboutMv01 img {
    height: 180px;
  }
}

#mainContents .AboutTyp02 {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 60px;
  align-items: start;
}
@media only screen and (max-width: 767px) {
  #mainContents .AboutTyp02 {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}

.AboutTyp03 .expList {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 0;
  margin: 0;
  padding: 20px 0 20px;
  align-items: start;
}

.AboutTyp03 .expList > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.AboutTyp03 .expList > div strong {
  display: block;
  margin: 0 0 12px;
  margin-right: auto;
  font-weight: 700;
}

.AboutTyp03 .expList > div ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.AboutTyp03 .expList > div ul li {
  margin: 0 0 6px;
  list-style: none;
  font-size: var(--font-body-detail);
}

.AboutTyp03 .btmTxt {
  margin: 10px 0 0;
}

@media only screen and (max-width: 767px) {
  .AboutTyp03 .expList {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
  .AboutTyp03 .expList > div {
    margin-bottom: 1.0em;
  }
}
.c-business-list {
  padding-left: 1.2em;
}
.c-business-list li {
  list-style-type: decimal !important;
}
@media only screen and (max-width: 767px) {
    #mainContents .detail__main_cont > h3:not(.c-heading-bar) {
        font-size: var(--font-heading-card);
        line-height: var(--lh-body-tight);
    }
    #mainContents .detail__main_cont h4 {
        font-size: var(--font-body-sp);
        line-height: var(--lh-body-tight);
        font-weight: 700;
    }
}
/* ============================================================
   workingstyle: メンバー3カラムグリッド
   ============================================================ */
#mainContents .expList {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  column-gap: 40px;
  row-gap: 40px;
  margin: 0;
  padding: 20px 0 20px;
  align-items: start;
}

#mainContents .expList > div {
  min-width: 0;
  float: none !important;
  width: auto !important;
}

#mainContents .expList > div img {
  width: 150px;
  margin: 0;
  display: block;
}

#mainContents .expList p,
#mainContents .AboutTyp02 p {
  font-size: var(--font-body-detail);
  margin: 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  #mainContents .expList {
    grid-template-columns: 1fr !important;
    row-gap: 10px;
  }
}

/* ============================================================
   会社情報・採用概要：外側dl/dt/dd 2カラム
   ============================================================ */
.c-info-list {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-bottom: 1px solid var(--color-white);
}

.c-info-list dt {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-300);
  font-weight: 700;
}

.c-info-list dd {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-300);
  min-width: 0;
}

/* ============================================================
   about/index 活動拠点：入れ子dl専用
   ============================================================ */
.c-info-sublist {
  margin: 0;
  padding: 0;
}

.c-info-sublist::after {
  content: "";
  display: block;
  clear: both;
}

.c-info-sublist dt {
  margin: 0;
  padding: 0 0 20px;
  border: none;
  float: left;
  width: calc(100% - 220px);
  font-weight: 400;
  line-height: 1.65;
}

.c-info-sublist dd {
  margin: 0;
  padding: 0 0 20px;
  border: none;
  float: right;
  width: 180px;
}

.c-info-sublist dd img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .c-info-list {
    grid-template-columns: 1fr;
  }

  .c-info-list dt {
    padding: 16px 0 6px;
    border-bottom: none;
  }

  .c-info-list dd {
    padding: 0 0 16px;
  }

  .c-info-sublist dt,
  .c-info-sublist dd {
    float: none;
    width: 100%;
  }

  .c-info-sublist dd {
    margin-top: 8px;
  }
}

/* ========================================
   common
======================================== */
/* ==========================================
   #tcd 共通ユーティリティ
=========================================== */
#tcd {
  margin-bottom: 0;
}


#tcd a:hover img {
  opacity: 0.8;
}

#tcd article {
  padding-top: 160px;
}
#tcd article.post,
#tcd article.pt_0 {
  padding-top: 0;
}
#tcd article.pt_40 {
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  #tcd article {
    padding-top: 90px;
  }
  #tcd article.pt_0 {
    padding-top: 0;
  }
  #tcd article.pt_40 {
    padding-top: 54px;
  }
}

#tcd img.img_center {
  display: block;
  margin: 0 auto;
}

#tcd .txt_just {
  text-align: justify;
}

#tcd .font_jp {
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", "メイリオ", meiryo, sans-serif;
}

#tcd a.back_history {
  text-align: center;
  background-color: var(--color-white);
  display: block;
  width: 100%;
  padding: 1em;
  font-size: var(--font-body-small);
  color: var(--color-text);
}

#tcd a.back_history:before {
  margin: 0 0 0 -25px;
  position: absolute;
  content: url("/img_site/common/back_history.png");
}

#tcd a.back_history:hover {
  color: var(--color-white);
  background-color: var(--color-text-muted);
}

#tcd a.link_arrow {
  padding: 0 0 0 1em;
  background: url(/img_site/common/arrow_grey.png) no-repeat left 0.5em;
}

#tcd nav.navigation .nav-next {
  text-align: right;
  width: 40%;
  float: right;
  padding: 0 1em 0 0;
  background: url(/img_site/common/arrow_grey.png) no-repeat right 0.5em;
}

#tcd nav.navigation .nav-previous {
  width: 40%;
  float: left;
  padding: 0 0 0 1em;
  background: url(/img_site/common/arrow_grey_l.png) no-repeat left 0.5em;
}

#tcd em.note {
  font-size: var(--font-caption-small);
  font-style: normal;
}

#tcd .layerTxt {
  font-size: var(--font-ui);
  font-weight: bold;
}

.a-center {
  display: block;
  margin: 0 auto 2em;
}

/* ==========================================
   スプラッシュ画面
=========================================== */
.splash {
  opacity: 0;
}

.splash #tcd {
  margin-bottom: 0 !important;
  height: 100%;
  position: relative;
}

.splash #tcd #splash-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -455px;
  margin-top: -209px;
}

.splash #tcd #splash-slide div {
  width: 910px;
  height: 378px;
  overflow: hidden;
}

.splash #tcd #splash-slide div ul {
  position: relative;
}

.splash #tcd #splash-slide div ul li {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.splash #tcd #splash-slide div ul #s1 {
  z-index: 10;
}

.splash #tcd #splash-slide div ul #s2 {
  z-index: 20;
}

.splash #tcd #splash-slide div ul #s3 {
  z-index: 30;
}

.splash #tcd #splash-slide div ul #s4 {
  z-index: 40;
}

.splash #tcd #splash-slide div ul #s5 {
  z-index: 50;
}

.splash #tcd #splash-slide div ul #s6 {
  z-index: 60;
}

/* ==========================================
   ユーティリティ / ボタン
=========================================== */
.btnlike {
  margin-top: 80px;
  padding: 0;
  background-color: #b04b4b; /* exception: 告知ボタン・赤アクセント（エラー色とは別用途） */
  font-size: var(--font-ui-small);
  text-align: center;
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.btnlike a:link,
.btnlike a:visited {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
}

.pagetop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: none;
}

.foot_contact {
  position: fixed;
  right: 80px;
  bottom: 25px;
  width: 160px;
  padding: 0 0.5em;
  background-color: var(--color-accent-cv);
  height: 40px;
  line-height: 40px;
  display: none;
  z-index: 9999;
}

.foot_contact a:link,
.foot_contact a:visited {
  padding-left: 2em;
  background: url("/img_site/common/btm_contact.svg") no-repeat left top;
  background-size: 40px auto;
  color: var(--color-white);
}

/* ==========================================
   点滅アニメーション
=========================================== */
.blinking {
  animation: blink 1.3s ease-in-out infinite alternate;
}

@keyframes blink {
  0%, 34% {
    color: var(--color-white);
  }
  35%, 100% {
    color: var(--color-error);
  }
}
/* ==========================================
   ソーシャルボタン
=========================================== */
.social-area-syncer {
  width: 100%;
  min-height: 190px;
  padding: 1.5em 0;
}

ul.social-button-syncer {
  width: 100%;
  margin: 40px auto;
  padding: 0;
  list-style-type: none;
}

ul.social-button-syncer li {
  float: left;
  width: 13%;
  margin: 0 8px;
  padding: 0;
}

ul.social-button-syncer li #socialarea_tw,
ul.social-button-syncer li #socialarea_fb,
ul.social-button-syncer li #socialarea_hate,
ul.social-button-syncer li #socialarea_po {
  background: url("/img_site/common/sns_fukidasi.png") no-repeat left top;
  padding-top: 10px;
  height: 50px;
}

ul.social-button-syncer li:nth-last-of-type(1) {
  margin-top: -4px;
}

@media screen and (min-width: 480px) {
  .social-area-syncer {
    min-height: 119px;
  }
  .sc-li {
    display: none;
  }
}
/* ==========================================
   PC / SP 表示分岐
=========================================== */
.pc {
  display: block;
}

.sp {
  display: none;
}

/* ==========================================
   コンテンツレイアウト共通
=========================================== */

.bg_gy {
  background: var(--color-white);
}

.c-container__block + .c-container__block {
  margin-top: 6rem;
}

.heading__ttl {
  font-size: var(--font-body-small);
  line-height: 1.15385;
  font-weight: normal;
  margin-bottom: 1em;
}

.heading__ttl_sub {
  font-size: var(--font-caption-small);
  font-weight: 300;
}


#tcd .navigation {
  margin: 6em 0 4em;
}


/* ==========================================
   クリアフィックス
=========================================== */
.clearfix::before {
  content: "";
  display: table;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ==========================================
   900系、480系
=========================================== */
@media only screen and (max-width: 900px) {
  html {
    height: 100%;
  }
  body {
    height: 100%;
    margin: 0;
  }
  #page {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

@media (max-width: 480px) {
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

@media (max-width: 480px) {
  .blog h1.entry-title {
    margin-top: 1em !important;
  }

  .blog .colum dt.thumbnail {
    width: 20%;
    float: left;
  }

  .blog .colum dd {
    min-width: auto;
    width: 75%;
    float: right;
  }

  .blog dl dd .thum {
    float: none;
    width: 100%;
  }

  .blog dl dd .thum a img {
    max-width: 100%;
  }

  .blog dl dd .entry-content {
    float: none;
    width: 100%;
    padding-top: 0.5em;
  }
}

/* ==========================================
   ブログ / Branding ページ レイアウト
=========================================== */
#page {
  padding: 25px 0 0;
}

h1 {
  border: none !important;
}

h1.bnone {
  border: none !important;
  margin: 0 0 1.5em !important;
  padding-bottom: 0.5em !important;
}

.page-wrap-wide {
  width: 910px;
  margin: 120px auto 0;
}

#wrap-wide {
  padding: 0;
}

/* ==========================================
   プロフィール / スタッフ / クルー
=========================================== */
.about-crew {
  padding-bottom: 8em;
}

.about-crew h1 {
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 3.2rem; /* exception: クルー紹介 h1・明朝体ブランドタイポグラフィ */
  border: none;
  line-height: 1.75em;
  margin-bottom: 1em;
}

.about-crew dl {
  display: table-cell;
}

.about-crew dl dt {
  width: 475px;
  display: table-cell;
}

.about-crew dl dd {
  vertical-align: bottom;
  display: table-cell;
  font-size: var(--font-body-small);
}

.about-crew dl dd small {
  font-size: var(--font-caption-xs);
}

.about-crew p {
  margin-top: 2em;
  margin-bottom: 4em;
  line-height: 2em;
}

.about-crew-list-wrap {
  background: linear-gradient(var(--color-white), var(--color-white));
  padding: 2.5em 0;
}

.about-crew-list-wrap .about-crew-list {
  width: 1130px;
  margin: 0 auto;
}

.about-crew-list-wrap .about-crew-list ul li {
  width: 290px;
  float: left;
  display: block;
  margin-bottom: 2em;
}

.about-crew-list-wrap .about-crew-list ul li img {
  width: 260px;
}

.about-crew-list-wrap .about-crew-list ul li:nth-child(4n) {
  width: 260px;
}

.about-crew-list-wrap .about-crew-list ul li.current img {
  opacity: 0.5;
}

.about-crew-list-top {
  padding: 0 17%;
  margin: 0 auto;
}

.about-crew-list-top ul li {
  width: 35%;
  float: left;
  display: block;
  margin-bottom: 2em;
}

.about-crew-list-top ul li img {
  width: 85%;
}

.about-crew-list-top ul li:nth-child(3n) {
  width: 30%;
}

.about-crew-list-top ul li:nth-child(3n) img {
  width: 100%;
}

/* プロフィール詳細 */
#tcd .staff_ttl {
  width: 12em;
  float: left;
}

#tcd a.link_green {
  display: block;
  width: 100%;
  text-align: center;
  color: var(--color-white);
  margin-top: 0.5em;
  padding: 0.75em 0;
  background-color: var(--color-accent-cv);
  border-radius: var(--radius-sm);
}

#tcd a.link_green:link,
#tcd a.link_green:visited {
  color: var(--color-white);
}

#tcd a.link_green:hover {
  opacity: 0.8;
}

#tcd a.link_staff {
  float: right;
  display: block;
  width: 14em;
  text-align: center;
  color: var(--color-white);
  padding: 0.25em 0;
  background-color: var(--color-accent-cv);
  border-radius: var(--radius-sm);
}

#tcd a.link_staff:link,
#tcd a.link_staff:visited {
  color: var(--color-white);
}

#tcd a.link_staff:hover {
  opacity: 0.8;
}

#tcd a.link_b {
  line-height: 2em;
  padding-left: 1.25em;
  text-decoration: underline;
  background: url(/img_site/mother/common/icon_arrow_gray.png) no-repeat left 4px;
}

#tcd a.link_b:hover {
  text-decoration: none;
}

#tcd .profile dl dt {
  font-size: var(--font-ui);
  line-height: 1.8em;
  width: 160px;
  float: left;
  clear: both;
  font-weight: bold;
  padding: 15px 0 0;
  margin: 0 0 15px;
  border-top: 1px solid var(--color-white);
}

#tcd .profile dl dd {
  font-size: var(--font-ui);
  line-height: 1.8em;
  width: 530px;
  float: left;
  padding: 15px 0 0;
  margin: 0 0 15px;
  border-top: 1px solid var(--color-white);
}

#tcd .profile dl dd ul li {
  width: 530px;
  border-top: 1px dotted var(--color-white);
  padding: 0.5em 0 0;
}

#tcd .profile dl dl.place {
  margin-bottom: 1em;
}

#tcd .profile dl dl.place dt {
  font-weight: normal;
  width: 325px;
  float: left;
  margin: 0;
  padding: 0;
  border-top: none;
  line-height: 1.65em;
}

#tcd .profile dl dl.place dd {
  width: 180px;
  float: right;
  margin: 0;
  padding: 0;
  border-top: none;
}

#tcd .profile dl dl.place dd img {
  width: 100%;
}

#tcd .profile dl dl.ginza {
  margin-bottom: 0 !important;
}

#tcd .profile dl dl.ginza dd {
  margin-top: 0.5em;
}

#tcd .profile dl .credentialsBtn {
  width: 235px;
  height: 65px;
  z-index: 3;
  overflow: hidden;
  display: block;
  position: absolute;
  top: -20px;
  left: 440px;
}

#tcd .profile dl a.credentialsBtn:hover img {
  margin: -65px 0 0;
}

#tcd .profile-en dl dt {
  font-size: var(--font-ui);
  line-height: 1.75em;
  width: 180px;
  float: left;
  clear: both;
  font-weight: bold;
  padding: 15px 0 0;
  margin: 0 0 15px;
  border-top: 1px solid var(--color-gray-300);
}

#tcd .profile-en dl dd {
  font-size: var(--font-ui);
  font-weight: 400;
  line-height: 2em;
  width: 510px;
  float: left;
  padding: 15px 0 0;
  margin: 0 0 15px;
  border-top: 1px solid var(--color-gray-300);
}

#tcd .profile-en dl dd ul li {
  padding: 0 0 0.5em;
  line-height: 1.5em;
}

#tcd .profile-en dl dl.history dt {
  font-weight: normal;
  width: 50px;
  float: left;
  margin: 0;
  padding: 0;
  border-top: none;
}

#tcd .profile-en dl dl.history dd {
  width: 450px;
  float: left;
  margin: 0;
  padding: 0;
  border-top: none;
}

#tcd .profile-en dl dl.place dt {
  font-weight: normal;
  width: 170px;
  float: left;
  margin: 0;
  padding: 0;
  border-top: none;
}

#tcd .profile-en dl dl.place dd {
  width: 340px;
  float: right;
  margin: 0;
  padding: 0;
  border-top: none;
}

#tcd .client .clientList {
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid var(--color-white);
}

#tcd .client .clientList strong {
  display: block;
  font-weight: bold;
  font-size: 1.3em;
  margin: 0 0 10px;
}

#tcd .client .clientList ul {
  width: 330px;
  float: left;
}

#tcd .client .clientList ul li {
  width: 100%;
  font-size: var(--font-body-small);
  line-height: 1.4em;
  padding: 0 0 0.75em;
}

#tcd .client .clientList ul.rList {
  float: right;
}

#tcd .location dl.locationSet {
  padding: 0 0 35px;
  margin: 0 0 35px;
  border-bottom: 1px solid var(--color-white);
}

#tcd .location dl.locationSet dt {
  float: left;
  width: 50%;
  margin: 0;
  font-weight: normal;
}

#tcd .location dl.locationSet dd {
  float: right;
  width: 50%;
  margin: 0;
}

#tcd .location dl.locationSet dd img {
  float: right;
}

#tcd .recruit {
  margin-bottom: 10em;
}

#tcd .recruit p {
  line-height: 2em;
  padding-bottom: 2em;
}

#tcd .recruit .recruit-lead {
  position: relative;
}

#tcd .recruit .recruit-lead a.anch {
  display: block;
  position: absolute;
  top: -4.5em;
  right: 0;
}

#tcd .recruit .recruit-lead a.entry {
  display: block;
  position: absolute;
  bottom: 2em;
  right: 0;
}

#tcd .recruit .recruit-lead a.entry:link,
#tcd .recruit .recruit-lead a.entry:visited {
  display: block;
  background: url(/img_site/common/arrow_blue.png) no-repeat left 0.5em;
  padding-left: 1.25em;
  color: var(--color-brand);
}

#tcd .recruit .recruit-lead a.entry:hover {
  text-decoration: underline;
}

#tcd .recruit dl.recruit-list dd a:link,
#tcd .recruit dl.recruit-list dd a:visited {
  display: block;
  background: url(/img_site/common/arrow_blue.png) no-repeat left 0.5em;
  padding-left: 1.25em;
  color: var(--color-brand);
}

#tcd .recruit dl.recruit-list dd a:hover {
  text-decoration: underline;
}

#tcd .recruit ul.linklist li {
  margin: 0;
  padding: 0 0 0.5em 1em;
  background: url(/img_site/common/arrow_grey.png) no-repeat left 0.5em;
}

#tcd .recruit ul.linklist li a:link,
#tcd .recruit ul.linklist li a:active,
#tcd .recruit ul.linklist li a:visited {
  color: var(--color-text) !important;
  text-decoration: none !important;
}

#tcd .recruit ul.linklist li a:hover {
  text-decoration: underline !important;
}

#tcd .recruit ul.linklist li.area {
  padding-top: 0.75em;
}

/* Staff */
.about-staff ul.staffMenu {
  width: 330px;
  float: right;
  margin: 0 0 30px;
}

.about-staff ul.staffMenu li {
  width: 70px;
  height: 50px;
  float: left;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.about-staff ul.staffMenu li a {
  cursor: pointer;
}

.about-staff ul.staffMenu li a:hover img,
.about-staff ul.staffMenu li a.current img {
  margin-top: -55px;
}

.about-staff ul.staffMenu li.end {
  width: 50px;
}

.about-staff .sL {
  float: left;
}

.about-staff .sR {
  float: right;
}

.about-staff .pho {
  width: 180px;
}

.about-staff .mes {
  width: 400px;
}

.about-staff .mes dl {
  font-size: var(--font-ui);
  line-height: 2em;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px dotted;
}

.about-staff .mes dl dt {
  font-weight: bold;
  padding: 0 0 0 50px;
  line-height: 32px;
  float: none;
}

.about-staff .mes dl dd {
  float: none;
}

/* ==========================================
   コンテンツ / サービスページ
=========================================== */
.page-content-full {
  width: 700px;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 0 60px;
}

.page-content-full h1 {
  font-size: var(--font-ui);
  font-weight: bold;
  margin: 0 0 2em;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 0.75em;
}

.page-content-full h1 em {
  font-size: 1rem;
  margin: 0 0 0.75em;
  display: block;
  font-style: normal;
  font-weight: normal;
}

.page-content-full h2 {
  font-size: var(--font-body);
  font-weight: bold;
  background-color: var(--color-ui-dark);
  padding: 0.5em;
  margin: 40px 0 1em;
  border: none;
}

.page-wrap-inner,
.service-page {
  width: 750px;
  margin: 0 auto 4em;
}

.service-page h1 {
  text-align: center;
  font-size: var(--font-heading-sub);
  line-height: 2em;
  border: none;
}

.service-page h2.ttl1 {
  font-size: 2rem; /* exception: サービスページ内h2固定（背景画像アイコン付き） */
  font-weight: bold;
  padding-left: 1.5em;
  background: url("/img_site/common/h2_ttl1.png") no-repeat left center;
}

.service-page h2.ttl2 {
  font-size: 3rem;
  color: var(--color-text-muted);
  font-weight: bold;
  border-bottom: solid 1px var(--color-white);
  margin-bottom: 20px;
}

.service-page h3 {
  font-size: 2rem; /* exception: サービスページ内h3固定（h2.ttl1と同スケール） */
  font-weight: bold;
  margin-top: 0.5em;
}

.service-page .gray-box {
  background-color: var(--color-white);
  padding: 20px;
}

.service-page .gray-box .task_icon {
  background-color: var(--color-ui-dark);
  color: var(--color-white);
  font-size: var(--font-body-small);
  padding: 3px 8px;
  display: inline;
}

.service-page p {
  font-size: var(--font-body);
  line-height: 2.5em;
}

.serviceLink h2 {
  background-color: var(--color-white) !important;
  margin: 0 0 25px !important;
  padding: 0 !important;
  border: none;
}

.serviceLink h3 {
  background-color: var(--color-text-muted) !important;
  color: var(--color-white);
  font-size: var(--font-ui);
  font-weight: normal;
  line-height: 2em;
  margin: 0 !important;
  padding: 0 5px !important;
}

.serviceEx {
  margin: 0;
  font-size: var(--font-ui);
}

.serviceEx li {
  list-style-position: outside;
  list-style-type: disc;
  margin: 0 0 0.75em 1.5em;
}

ol.serviceEx2 {
  margin: 0 0 40px;
  font-size: var(--font-ui);
  list-style: decimal;
}

ol.serviceEx2 li {
  list-style-position: outside;
  margin: 0 0 0.75em;
  line-height: 1.5em;
}

.serviceCase {
  margin: 0 0 15px;
}

.serviceCase dl {
  width: 330px;
  float: left;
  font-size: var(--font-ui);
}

.serviceCase dl dt img {
  width: 100%;
  border: 1px solid var(--color-white);
}

.serviceCase dl dd {
  margin: 0.5em 0 0;
  line-height: 1.5em;
  background: url(/img_site/mother/common/icon_arrow_gray.png) no-repeat left 4px;
}

.serviceCase dl dd em {
  display: block;
  padding: 0 0 0 1.25em;
  font-size: 0.8em;
  font-style: normal;
}

.serviceCase dl dd a:link,
.serviceCase dl dd a:active,
.serviceCase dl dd a:visited {
  color: var(--color-text) !important;
  text-decoration: none !important;
}

.serviceCase dl dd a:hover {
  text-decoration: underline !important;
}

.serviceCase dl.rPos {
  float: right;
}

.lpo {
  float: none !important;
  margin: 40px 0 80px;
}

.lead {
  margin: 0 0 40px;
}

.lead p {
  font-size: var(--font-body);
}

dl.task {
  width: 100%;
  margin: 15px 0 20px;
  padding: 15px 0 0;
  border-bottom: 1px var(--color-text-muted) dotted;
}

dl.task dt {
  font-size: var(--font-ui);
  line-height: 1.75em;
  width: 35%;
  float: left;
}

dl.task dd {
  width: 60%;
  float: right;
}

.cBtn {
  margin: 60px 0;
}

.fb-like {
  margin-top: 25px;
}

.about-b img.spacing {
  display: block;
  margin: 2em 0 1em;
}

.about-policy dl dt {
  float: left;
  width: 330px;
}

.about-policy dl dt img {
  width: 295px;
}

.about-policy dl dd p {
  font-size: var(--font-body-detail) !important;
}

/* ==========================================
   サービス英語タイトル（h1直下の英語副題）
=========================================== */
.detail__main_cont .service-en-title {
  font-size: var(--font-body);
  line-height: var(--lh-body);
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 0;
}

/* リード文 */
.service-lead {
  font-size: var(--font-body-lead);
  line-height: 2;
  margin-bottom: 3em;
  color: var(--color-text);
}

/* セクション共通 */
.service-section {
  margin: 2em 0 2em;
}

/* Cases セクション（チェックリスト + 暗背景） */
.service-cases {
  background: var(--color-gray-700);
  /*color: var(--color-gray-700);*/
  padding: 3em 3em;
  border-radius: var(--card-radius);
  margin-bottom: 5em !important;
}
.service-cases h2 {
  color: var(--color-white);
  border-bottom-color: var(--color-white);
  margin-top: 0;
}
.service-cases h3,
.service-cases h4 {
  color: var(--color-white);
}
.service-cases ul {
  margin-bottom: 0;
}
.service-cases ul li {
  list-style: none;
  padding-left: 1.4em;
  position: relative;
  color: var(--color-white);
}
.service-cases ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-text-muted);
}
.service-cases p {
  color: var(--color-white);
  font-size: var(--font-body-small);
  line-height: 1.85;
  padding-bottom: 0;
}

.service-process {
  position: relative;
  padding: 7em 0;
  background: transparent;
}

.service-process::before {
  content: "";
  position: absolute;
  top: 3em;
  bottom: 0;
  left: 50%;
  width: 1200px;
  transform: translateX(-50%);
  background: var(--color-offwhite);
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .service-process {
    margin-left: -5.555%;
    margin-right: -5.555%;
    padding: 2em 2em;
  }

  .service-process::before {
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
  }
}

.service-process h2 {
  margin-top: 0;
}

.service-steps {
  margin-top: 1.5em;
}

.service-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1em 2em;
  border-top: 1px dotted var(--color-gray-500);
  padding: 1em 0 0.5em;
  align-items: start;
}

.service-step h3,
.service-step h4 {
  margin: 0;
  font-size: var(--font-body);
  font-weight: bold;
  line-height: 1.5;
  border-left: 3px solid var(--color-text-muted);
  padding-left: 0.6em;
}
.service-step p {
  margin: 0;
  font-size: var(--font-body);
  line-height: 1.75;
}
@media only screen and (max-width: 767px) {
.service-step h3,
.service-step h4,
.service-step p {
  font-size: var(--font-body-sp);
}
}

.service-step:last-child {
  /*border-bottom: 1px dotted var(--color-white);*/
}

/* 目次ナビ (ブランディングとは？等の記事ページ) */
.service-toc {
  width: 80%;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-500);
  padding: 1.2em 1.8em;
  display: block;
  margin: 3em auto 4em;
  box-sizing: border-box;
}
.service-toc p {
  font-size: var(--font-body);
  font-weight: bold;
  margin: 0 0 0.5em;
}
.service-toc ul {
  margin: 0;
  padding-left: 1.2em;
}
.service-toc ul li {
  list-style: decimal;
  font-size: var(--font-body);
  margin-bottom: 0.3em;
  line-height: 1.6;
}
.service-toc ul li a {
  color: var(--color-text);
  text-decoration: underline;
}
.service-toc ul li a:hover {
  color: var(--color-cyan);
}

/* レスポンシブ */
@media (max-width: 767px) {
  .service-en-title {
    font-size: var(--font-display-service-sp);
  }
  .service-cases {
    padding: 2em 1.5em;
  }
  .service-step {
    grid-template-columns: 1fr;
    gap: 0.4em;
  }
  .service-step h3 {
    border-left: 3px solid var(--color-text-muted);
    padding-left: 0.6em;
  }
  .service-toc {
    width: 100%;
    box-sizing: border-box;
  }
  .service-toc p,
  .service-toc ul li {
    font-size: var(--font-body-sp);
  }
}

.service-definition {
  border: 1px solid var(--color-cyan);
  padding: 0 30px 30px;
  margin: 50px 0;
}
.service-definition h3.c-heading-section2 {
  margin-top: 30px;
}
.service-definition ul {
  margin-left: 30px;
}

/* ========================================
   top
======================================== */
/* ==========================================
   Top記事 (#tcd .top-article)
=========================================== */
#tcd .top-article {
  width: 740px;
  margin: 0 auto 100px;
}

#tcd .top-article div {
  float: left;
  width: 500px;
  padding-top: 50px;
}

#tcd .top-article div h1 {
  color: var(--color-text-muted);
  font-size: var(--font-heading-sub);
  margin-bottom: 70px;
}

#tcd .top-article div ul {
  padding-left: 76px;
}

#tcd .top-article div ul li {
  display: block;
  width: 50%;
  float: left;
  font-weight: bold;
  font-size: var(--font-body);
  padding: 30px 0;
  margin-bottom: 60px;
}

#tcd .top-article div ul li:nth-child(even) {
  text-align: right;
  border-left: 1px solid var(--color-white);
}

#tcd .top-article img {
  width: 175px;
  display: block;
  float: right;
}


/* ========================================
   works
======================================== */
/* ==========================================
   ネーミングカテゴリページ (.works-officeart)
=========================================== */

#tcd .works-officeart {
  width: 820px;
  margin: 60px auto 140px;
  padding-top: 0;
}

#tcd .works-officeart h1 {
  font-size: 2.0rem; /* exception: Worksオフィスアートh1固定 */
  font-weight: normal;
  margin-bottom: 0.5em;
}

#tcd .works-officeart h2 {
  font-size: var(--font-body-small);
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 2em;
}

#tcd .works-officeart img.title {
  display: block;
  margin-bottom: 3em;
}

#tcd .works-officeart p {
  font-size: var(--font-body-small);
  line-height: 1.75em;
  margin-bottom: 2em;
}

#tcd .works-officeart ul.works-officeart-list {
  margin-top: 4em;
}

#tcd .works-officeart ul.works-officeart-list li {
  width: 285px;
  float: left;
  padding-bottom: 4em;
}

#tcd .works-officeart ul.works-officeart-list li img {
  display: block;
  margin-bottom: 0.5em;
}

#tcd .works-officeart ul.works-officeart-list li:nth-child(3n) {
  width: 250px;
}

.works-officeart-list {
  overflow: hidden;
}

.works-officeart-list::after {
  content: "";
  display: block;
  clear: both;
}


/* ==========================================
   ネーミングカテゴリ一覧 (.works-naming)
=========================================== */

.works-naming {
  width: 690px;
  margin: 0 auto;
}

.works-naming h1.entry-title {
  font-size: var(--font-body);
  line-height: 1.5em;
  margin: 0 0 0.5em;
}

.works-naming h1.entry-title .corp {
  font-size: 1rem;
  line-height: 1.4em;
  color: var(--color-text-muted);
}

.works-naming dl {
  margin-bottom: 4em;
}

.works-naming dl dt h1.entry-title {
  font-size: var(--font-body);
  line-height: 1.5em;
  margin: 0 0 1em;
  padding-top: 1em;
  border-top: 1px dotted var(--color-text) !important;
}

.works-naming dl dd .thum {
  float: left;
  width: 260px;
}

.works-naming dl dd .thum a img {
  width: 80%;
}

.works-naming dl dd .entry-content {
  float: right;
  width: 400px;
  font-size: var(--font-body-detail);
  line-height: 1.85em;
}

.works-naming dl dd .entry-content a {
  display: block;
  margin-top: 1em;
}



/* ========================================
   c-card-tile
======================================== */
.column .h-label {
  margin: 0;
  /*padding-bottom: 20px;*/
}
@media only screen and (max-width: 767px) {
  .column .h-label {
  padding: 0;
}
}

/* ========================================
   contact / download
======================================== */

/* ==========================================
   Service featured CTA
========================================== */
.service-featured-cta {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 0;
}
.service-featured-cta + .service-featured-cta {
  margin-top: 20px;
}
.service-featured-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background: var(--color-white);
  border: 8px solid var(--color-gray-300);
  text-decoration: none;
  transition: box-shadow 0.3s, opacity 0.3s;
}

.service-featured-cta__link:hover {
  box-shadow: var(--card-shadow);
  text-decoration: none;
  color: var(--color-brand);
  border: 8px solid var(--color-brand);
  opacity: 0.8;
}

.service-featured-cta__body {
  flex: 1;
}

.service-featured-cta__title {
  font-size: var(--font-heading-card);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: var(--lh-body-tight);
}

.service-featured-cta__text {
  font-size: var(--font-body-small);
  line-height: var(--lh-body-tight);
}

.service-featured-cta__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-left: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-text);
  position: relative;
}

.service-featured-cta__arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  transform: translate(-65%, -50%) rotate(45deg);
  content: "";
}

@media only screen and (max-width: 767px) {
  .service-featured-cta {
    width: 100%;
    margin: 0 auto;
    margin-top: var(--space-section-inner-sp);
  }

  .service-featured-cta__link {
    padding: 28px 24px;
  }

  .service-featured-cta__title {
    font-size: var(--font-ui-large);
    margin-bottom: 10px;
  }

  .service-featured-cta__arrow {
    width: 36px;
    height: 36px;
    margin-left: 20px;
  }

  .service-featured-cta__arrow::after {
    width: 8px;
    height: 8px;
  }
}

/* ==========================================
   Service Top – auto-group layout
========================================== */
.service-area-layout {
  width: 1146px;
  margin: 30px auto 0;
}

.service-area-layout__inner {
  width: 100%;
}

.service-area-group {
  margin: 0 0 60px;
}

.service-area-group .h-label {
  margin: 0 0 20px;
}

.service-area-group__cards {
  display: grid;
  gap: 40px;
}

.service-area-group--brand-strategy .service-area-group__cards {
  grid-template-columns: repeat(3, 1fr);
}

/* Brand Development + Brand Communication を同一行に並べるラッパー */
.service-area-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin: 0 0 60px;
}

.service-area-row .service-area-group {
  margin: 0;
}

.service-area-group--brand-development .service-area-group__cards {
  grid-template-columns: repeat(2, 1fr);
}

.service-area-group--brand-communication .service-area-group__cards {
  grid-template-columns: 1fr;
}

.service-area-group__cards .column {
  width: 100%;
  margin: 0;
  background-color: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.service-area-group__cards .column a {
  display: block;
  text-decoration: none;
}

.service-area-group__cards .column a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.service-area-group__cards .column img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.service-area-group__cards .column .h-card {
  font-size: var(--font-heading-card);
  line-height: var(--lh-body-tight);
  padding-top: var(--card-space-top);
  padding-right: var(--card-padding-x);
  padding-left: var(--card-padding-x);
  text-align: center;
}

.service-area-group__cards .column p {
  font-size: var(--font-body-detail);
  line-height: var(--lh-body-tight);
  padding-right: var(--card-padding-x);
  padding-bottom: var(--card-space-bottom);
  padding-left: var(--card-padding-x);
  text-align: center;
}

@media only screen and (max-width: 1266px) {
  .service-area-layout {
    width: calc(100% - 40px);
  }
  .service-area-group__cards {
    gap: 30px;
  }
  .service-area-row {
    gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .service-area-layout {
    width: calc(100% - 40px);
    margin-top: 20px;
  }
  .service-area-group {
    margin: 0 0 40px;
  }
  .service-area-row {
    display: block;
    margin: 0;
  }
  .service-area-row .service-area-group {
    margin: 0 0 40px;
  }
  .service-area-group--brand-strategy .service-area-group__cards,
  .service-area-group--brand-development .service-area-group__cards,
  .service-area-group--brand-communication .service-area-group__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-area-group__cards .column img {
    height: auto;
  }
  .service-area-group__cards .column .h-card {
    padding-top: var(--card-space-top-sp);
    padding-right: var(--card-padding-x-sp);
    padding-left: var(--card-padding-x-sp);
  }
  .service-area-group__cards .column p {
    padding-right: var(--card-padding-x-sp);
    padding-bottom: var(--card-space-bottom-sp);
    padding-left: var(--card-padding-x-sp);
  }
}

/* ==========================================
   Service Top – TCD Definition heading
========================================== */
.service-definition-heading {
  width: 916px;
  margin: 50px auto 20px;
}

.service-definition-heading .h-label {
  margin: 0;
}

@media only screen and (max-width: 1266px) {
  .service-definition-heading {
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 767px) {
  .service-definition-heading {
    width: calc(100% - 40px);
    margin: 40px auto 15px;
  }
}

/* ==========================================
   Service Nav Separator
========================================== */
#mainContents .filter-nav ul li.service-nav-separator {
  margin-left: 10px; /* li margin-right:10px + 10px = 20px */
  padding-left: 20px;
  position: relative;
}

.service-nav-separator::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-left: 1px dotted var(--color-ui-mid);
}

/* ==========================================
   Section Layout
========================================== */
.section-base {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: var(--color-gray-100);
}

@media only screen and (max-width: 767px) {
  .section-base {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
