:root {
    /* BPS設定 */
    --neutral-01default-font-color: rgba(51, 51, 51, 1);
    --key-color: rgba(255, 98, 67, 1);
    --secondary-color: rgba(0, 136, 154, 1);
    --neutral-02secondary-font-color: rgba(120, 120, 120, 1);
    --neutral-03: rgba(202, 202, 202, 1);
    --neutral-04line-color: rgba(217, 217, 217, 0.88);
    --back-ground01: rgba(251, 249, 248, 1);
    --back-ground02: rgba(245, 242, 240, 1);
    --back-ground03: rgba(234, 229, 225, 1);
    --orange-01: rgba(255, 145, 67, 1);
    --lightorange-01: rgba(255, 213, 178, 1);
    --lightorange-02: rgba(252, 233, 221, 1);
    --blue-01: rgba(220, 237, 239, 1);
    --alerterror: rgba(232, 0, 0, 1);
    --secondary-font-color: rgba(120, 120, 120, 1);
    --: 0px 8px 30px 0px rgba(111, 111, 111, 0.2);

    /* DAIO設定　（カラーガイドライン基準） */

    /* キーカラー */
    --daio-color01: #FF6243;
    /* primary   大王カラー　　： テキスト強調、リンク */
    --daio-color02: #00889A;
    /* secondary 大王サブカラー： テキストサブ強調 */

    /* バックグラウンド */
    --background01: #FBF9F8;
    --background02: #F5F2F0;
    --background03: #EAE5E1;
    --blue01: #E7F5F6;
    --blue02: #BDE8EB;
    --orange01: #FCE9DD;
    --orange02: #FF9143;

    /* モノクロ */
    --font-color01: #333333;
    /* neutral01 テキスト標準：　関係者向け */
    --font-color02: #787878;
    /* neutral02 テキストサブ：　廃盤製品 */
    --neutral03: #CACACA;
    --neutral04: #D9D9D9;
    --neutral05: #FFFFFF;
    /* 製品カテゴリー */

    /* セマンティックカラー */
    --success: #000000;
    --err: #E80000;

    /* カテゴリー・区分カラー：ベーシック */
    --orangered: #FF6243;
    /* プレスリリース */
    --orange: #FF9143;
    /* お知らせ */
    --lightpurple: #D57DB2;
    /* イベント */
    --purple: #9D75D5;
    /* メディア掲載 */
    --blue: #1F70B9;
    /* 製品情報 */
    --darkcyan: #000889A;
    /* 製品事例 */
    --greenywllow: #79BF4D;
    /* インタビューあり */

    /* カテゴリー・区分カラー：パステル */
    --pastelorange: #FCB17B;
    /* 体験ギフト */
    --pastelLightPurple: #C7AEEB;
    /* ジュエリー販売 */
    --pastelblue: #649FD4;
    /* パーツ販売 */
    --pasteldarkcyan: #46B5C3;
    /* オリジナルグッズ製作 */

    /*あとで修正する*/
    /* 大王green */
    --main-color: #000;
    --accent-color: rgba(233, 215, 206, 0.3);
    --text-color: #333;
    --unbar-color: #e5e5e5;
    --bg-color: #fff;
    --link-color: rgba(0, 136, 154, 1);
    --link-h-color: #FF6343;
    --btn-color: #e5e5e5;
    --btn-h-color: #dddddd;
}


/*---------------------------------------
 DAIO設定
-----------------------------------------*/

/*---------------------------------------
 ナビ、ページ内ナビ
-----------------------------------------*/

/* ナビ */
.c-prose nav {
    background-color: var(--color-bg-01);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3em 0;
}

.c-prose nav a {
    color: var(--main-color);
    padding: 12px 24px;
    margin: 5px;
    border-radius: 30px;
    transition: background 0.3s;
    text-decoration: none;
    line-height: 0.3;
    border: solid 1px var(--btn-color);
    width: auto;
    /* デフォルトでは1行に並ぶ */
    margin-right: 12px;
    margin-bottom: 12px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    /* font-size: 14px; */
}

.c-prose nav a:hover {
    /* background-color: var(--btn-h-color); */
    text-decoration: none;
    border-color: #ff7e65;
}

.c-prose nav a.active {
    background-color: #FF6343;
    color: #fff;
}

@media (max-width: 768px) {
  .c-prose nav {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }

  .c-prose nav a {
      padding: 8px;
      margin: 0px;
      background: none;
      width: 100%;
      line-height: 1;
  }
}

/* ページ内ナビ */
.c-prose .tabs {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin: 1em 0;
}

.c-prose .tabs a {
    color: var(--main-color);
    padding: 5px 15px;
    margin: 5px;
    transition: background 0.3s;
    text-decoration: none;
    line-height: 1;
    display: flex;
    align-items: center;
    /* 縦中央揃え */
}

.c-prose .tabs a:hover {
    text-decoration: underline;
}

.c-prose .tabs a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-key);
    /* ▼の色 */
    margin-right: 8px;
}

@media (max-width: 768px) {
  .c-prose .tabs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
  }

  .c-prose .tabs a {
      margin: 0;
  }
}

/* 後ろに矢印 */
.c-prose .tabs-after {
    background-color: var(--bg-color);
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin: 0;
}

.c-prose .tabs-after a {
    color: var(--main-color);
    padding: 3px 0;
    margin: 0;
    transition: background 0.3s;
    text-decoration: none;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.c-prose .tabs-after a:hover {
    text-decoration: underline;
}

.c-prose .tabs-after a::before {
    border: none;

}

.c-prose .tabs-after a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--color-key);
    margin-left: 0;
}

@media (max-width: 768px) {
  .c-prose .tabs-after a {
      padding: 6px 0;
  }
}

/* タブ切り替え */
.c-prose .tab-button {
    flex: 1;
    padding: 10px;
    background: #e2e6ea;
    border: none;
    cursor: pointer;
    transition: .3s;
    text-align: center;
    font-weight: bold;
}

.c-prose .tab-button.active {
    background: #676768;
    color: #fff;
}

.c-prose .tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.c-prose .tab-content.active {
    display: block;
}

/*---------------------------------------
 コンテンツ
-----------------------------------------*/

.c-prose .content {
    padding: 2em;
}

@media (max-width: 768px) {
  .c-prose .content {
      padding: 0.5em;
  }
}

/*---------------------------------------
 セクション 
-----------------------------------------*/

.c-prose section {
    background: var(--color-bg-01);
    border-radius: 8px;
    padding: 2em;
    margin-bottom: 2em;
}

.c-prose section.shadow {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.c-prose section.shadow-none {
    box-shadow: none;
}

@media (max-width: 768px) {
  .c-prose section {
      padding: 2em 0;
  }
}

/*---------------------------------------
 タイトル
-----------------------------------------*/

.c-prose h2 {
    --bar-gap: 24px;
    --line-gap: 20px;

    position: relative;
    padding-left: var(--bar-gap);
    padding-bottom: var(--line-gap);

    margin-bottom: 48px;

    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.c-prose h2::before {
    content: "";
    position: absolute;

    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 4px;
    height: 1.4em;

    background: #f58220;
    border-radius: 999px;
}

.c-prose h2::after {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;
    background: #e5e5e5;
}

.c-prose h3 {
    position: relative;

    padding-bottom: 16px;
    margin-bottom: 40px;

    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.04em;

    color: #333;
}

/* グレー線 */
.c-prose h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: #d9d9d9;
}

/* オレンジ線 */
.c-prose h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;

    width: 60px;
    /* オレンジ線の長さ */
    height: 3px;
    /* オレンジ線の太さ */

    background: #f58220;
    border-radius: 999px;
}

.c-prose h4 {
    white-space: normal;
    font-weight: 700;
    margin: 30px 0 20px 0;
    /* font-size: 16px; */
}

.c-prose h4::before {
    content: "■";
    margin-right: 0.2em;
    color: rgba(255, 145, 67, 1);
}

h5 {
    position: relative;
    display: inline-block;
    /* 文字幅に合わせる */
    padding-bottom: 10px;
}

h5::after {
    content: "";
    display: block;
    width: 100%;
    margin-top: 8px;
    border-bottom: 2px dotted #f39800;
    /* オレンジ色のドット線 */
}

/*---------------------------------------
 段落
-----------------------------------------*/

.c-prose div {
    padding: 0;
    margin: 0 0 1em 0;
}

.c-prose p {
    padding: 0;
    margin: 0 0 1em 0;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .c-prose p {
      line-height: 1.8;
  }

  .c-prose p br {
      display: block;
      margin-bottom: 1em;
  }
}

/*
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 768px) { 
.pc { display: none !important; }
.sp { display: block !important;}
}
*/

/*---------------------------------------
 ul ol dl
-----------------------------------------*/

.c-prose ul,
.c-prose ol {
    margin: 2em 0;
}

.c-prose ul.list,
.c-prose ol.list {
    padding-left: 2em;
}

@media (max-width: 767px) {

  .c-prose ul.list,
  .c-prose ol.list {
      padding-left: 1.25em;
  }
}

/* 箇条書き */
.c-prose ul.disc {
    list-style-type: disc;
}

/* 番号付き */
.c-prose ol.decimal {
    list-style-type: decimal;
    padding-left: 2em;
}

/* カタカナ */
.c-prose ol.katakana {
    list-style-type: katakana;
    padding-left: 2em;
}

/* ※ */
.c-prose ul.attention {
    list-style: none;
}

.c-prose ul.attention li {
    position: relative;
    padding-left: 1.5em;
    margin-left: 0;
}

.c-prose ul.attention li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
    color: #E80000;
    font-weight: 700;
}

.c-prose ul.indent {
    padding-left: 2em;
}

/* インデント */
.c-prose ul li.indent {
    padding-left: 1em;
    text-indent: -1em;
}

.c-prose dl {
    margin: 1em 0;
}

.c-prose dt {
    font-weight: bold;
}

.c-prose dt::before {
    content: "■";
    margin-right: 0.2em;
    /* color: #00889A; */
}

.c-prose dd {
    margin-bottom: 1em;
    padding: 8px;
}

/*---------------------------------------
 リンク
-----------------------------------------*/

.c-prose a {
    color: var(--link-color);
    text-decoration: none;
}

.c-prose a:hover {
    color: var(--link-h-color);
}

/*---------------------------------------
 マーク・矢印
-----------------------------------------*/

/* ※マーク */
.c-prose span.attention {
    font-weight: 700;
    color: rgb(253, 2, 2);
    margin-right: 0.2em;
}

/* オレンジ丸の中に白の右向き矢印「＞」  */
.c-prose .link_title {
    color: #00889a;
    font-weight: bold;
    margin-top: 0;
    /* font-size: 16px; */
}

.c-prose .link_title .circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--color-key);
    border-radius: 50%;
    position: relative;
    margin: 0 6px;
    vertical-align: middle;
}

/* 右向き矢印 */
.c-prose .link_title .circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 45%;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/*---------------------------------------
 画像
-----------------------------------------*/

/* 画像横中央 */
.c-prose img {
    display: block;
    margin: 0 auto;
    border-radius: 32px;
}

/* 画像角丸なし */
.c-prose img.img-none {
    border-radius: 0px;
}

/* 画像正方形 */
.c-prose img.aspect1-1 {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    /* cover */
}

/* 画像長方形 */
.c-prose img.aspect16-9 {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    /* cover */
}

.c-prose img.aspect9-16 {
    aspect-ratio: 9 / 16;
    object-fit: contain;
    /* cover */
}


/* aspectなし */
.c-prose img.aspect-none {
    aspect-ratio: auto;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0;
}

/* コンセプト画像 */
.c-prose .concept-img img {
    width: 50%;
    margin: 0 auto;
    display: block;
    border-radius: 0px;
}

@media (max-width: 768px) {
  .c-prose .concept-img img {
      width: 90%;
  }
}

/* 2画像横並び */
.c-prose .image-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.c-prose .image-row .image {
    width: 35%;
    max-width: 400px;
    cursor: pointer;
}

.c-prose .image-row .image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
  .c-prose .image-row {
      flex-direction: column;
      gap: 15px;
      align-items: center;
  }

  .c-prose .image-row .image {
      width: 80%;
      max-width: none;
  }
}

/* 3画像横並び */
.c-prose .image-row3 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.c-prose .image-row3 .image {
    width: 30%;
    max-width: 400px;
    cursor: pointer;
}

.c-prose .image-row3 .image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
  .c-prose .image-row3 {
      flex-direction: column;
      gap: 15px;
      align-items: center;
  }

  .c-prose .image-row3 .image {
      width: 80%;
      max-width: none;
      flex: none;
  }
}

/* 画像を左、テキストを右 */
.c-prose .image-text-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.c-prose .image-text-container .image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-items: center;
}

.c-prose .image-text-container img {
    width: 100%;
    height: auto;
    min-width: 400px;
    max-width: 400px;
}

.c-prose .image-text-container img.pdf-icon {
    width: 35px;
    height: 35px;
    border-radius: 0;
    min-width: 0;
    max-width: none;
}

.c-prose .image-text-container .text {
    flex: 1;
    line-height: 1.6;
    max-width: 60%;
}

@media (max-width: 768px) {
  .c-prose .image-text-container {
      flex-direction: column;
      align-items: center;
  }

  .c-prose .image-text-container img {
      width: 100%;
      max-width: none;
      margin-bottom: 15px;
  }

  .c-prose .image-text-container .text {
      text-align: left;
      max-width: 100%;
  }
}

/* テキストを左、画像を右 */
.c-prose .text-image-container {
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0;
}

.c-prose .text-image-container .text {
    flex: 1;
    line-height: 1.6;
    width: 60%;
}

.c-prose .text-image-container .image {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 40%;
}

.c-prose .text-image-container img {
    width: 100%;
    height: auto;
    min-width: 400px;
    max-width: 400px;
}

@media (max-width: 768px) {
  .c-prose .text-image-container {
      flex-direction: column;
      align-items: center;
  }

  .c-prose .text-image-container .text {
      text-align: left;
      max-width: 100%;
  }

  .c-prose .text-image-container .image {
      justify-content: center;
      margin-top: 15px;
  }

  .c-prose .text-image-container img {
      width: 80%;
      max-width: none;
  }
}

/* 画像左右 */
.c-prose .card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 20px 0;
}

.c-prose .card-row .card {
    border: 1px solid #ddd;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    max-width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.c-prose .card-row .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.c-prose .card-row .card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
  .c-prose .card-row .card {
      width: 45%;
      max-width: none;
  }
}

/* ギャラリー */
.c-prose .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* justify-content: center; */
}

.c-prose .gallery img {
    transition: 0.3s;
    cursor: pointer;
    display: block;
    width: 23%;
    height: auto;
    border-radius: 0px;
}

.c-prose .gallery img:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
  .c-prose .gallery img {
      width: calc(50% - 5px);
  }
}

/* youtube */
.c-prose .youtube {
    width: 100%;
}

.c-prose .youtube iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

/* map */
.c-prose .map {
    width: 100%;
    aspect-ratio: 16 / 9;
}

/*---------------------------------------
 モーダル
-----------------------------------------*/

/* モーダル背景 */
.c-prose .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

/* モーダル画像 */
.c-prose .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: block;
    max-width: 90vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;
}

/* 閉じるボタン */
.c-prose .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

@media (max-width: 768px) {
  .c-prose .close {
      top: 80px;
      right: 15px;
      font-size: 48px;
      line-height: 1;
      padding: 10px;
  }
}

/*---------------------------------------
 highlight-text
-----------------------------------------*/

.c-prose .highlight-text {
    font-size: 24px;
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
}

.c-prose .highlight-text .first-letter {
    font-size: 40px;
    color: #00889a;
}

/*---------------------------------------
 比較カード
-----------------------------------------*/

.c-prose .comparison {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.c-prose .comparison .card {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    background: #f7f7f7;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.c-prose .comparison .card h3 {
    margin-bottom: 10px;
    /* font-size: 18px; */
}

.c-prose .comparison .card ul {
    padding-left: 18px;
}

.c-prose .comparison .card li {
    margin-bottom: 8px;
}

/* 色分け */
/*
  .c-prose .comparison .card.high {
border-top: 4px solid #2a9d8f;
  }

  .c-prose .comparison .card.low {
border-top: 4px solid #e76f51;
  }
  */

@media (max-width: 768px) {
  .c-prose .comparison {
      flex-direction: column;
  }
}

/*---------------------------------------
 HPリンクのスタイル
-----------------------------------------*/

/* HPアイコン */
.c-prose .hp-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1em;
    margin-left: 2em;
    ;
}

/* タイトル */
.c-prose .hp-group .title {
    /* font-weight: bold; */
    margin-right: 8px;
}

/* ボタン風リンク */
.c-prose .hp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    background: #fff;
    transition: all 0.2s ease;
}

/* アイコン */
.c-prose .hp-link img {
    width: 32px;
    height: 32px;
}

/* ホバー */
.c-prose .hp-link:hover {
    background: #f5f5f5;
    border-color: #bbb;
    transform: translateY(-1px);

}

@media (max-width: 768px) {
  .c-prose .hp-group {
      margin-left: 0;
      gap: 8px;
  }

    /* タイトルを上に */
  .c-prose .hp-group .title {
      width: 100%;
      margin-bottom: 5px;
  }

    /* ボタンを少しコンパクトに */
  .c-prose .hp-link {
      padding: 6px 8px;
      /* font-size: 13px; */
  }

    /* アイコン縮小 */
  .c-prose .hp-link img {
      width: 28px;
      height: 28px;
  }
}

/* アイコン左、テキスト右 */
.c-prose .hp-link-l {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

/* テキスト左、アイコン右 */
.c-prose .hp-link-r {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

/* アイコン */
.c-prose img.hp-icon {
    width: 100%;
    height: auto;
    min-width: 20px;
    max-width: 20px;
    width: 18px;
    height: 18px;
    border-radius: 0;
}

/*---------------------------------------
 PDFリンクのスタイル
-----------------------------------------*/

/* PDFアイコン */
.c-prose .pdf-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1em;
    margin-left: 2em;
}

/* タイトル */
.c-prose .pdf-group .title {
    /* font-weight: bold; */
    margin-right: 8px;
}

/* ボタン風リンク */
.c-prose .pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

/* アイコン */
.c-prose .pdf-link img {
    width: 35px;
    height: 35px;
    border-radius: 0;
}

/* ホバー */
.c-prose .pdf-link:hover {
    background: #f5f5f5;
    border-color: #bbb;
    transform: translateY(-1px);

}

@media (max-width: 768px) {
  .c-prose .pdf-group {
      margin-left: 0;
      gap: 8px;
  }

  /* タイトルを上に */
  .c-prose .pdf-group .title {
      width: 100%;
      margin-bottom: 5px;
  }

  /* ボタンを少しコンパクトに */
  .c-prose .pdf-link {
      padding: 6px 8px;
      /* font-size: 13px; */
  }

  /* アイコン縮小 */
  .c-prose .pdf-link img {
      width: 28px;
      height: 28px;
  }
}

/*---------------------------------------
 問い合わせ窓口
-----------------------------------------*/

.c-prose .contact-background {
    background-color: #f5f5f5;
    padding: 1em;
    border-radius: 8px;
}

.c-prose .comment {
    padding: 2em;
}

/*---------------------------------------
 タイムライン
-----------------------------------------*/

/* company history */
.c-prose .timeline {
    padding-left: 0em;
}

.c-prose .timeline .item {
    display: grid;
    grid-template-columns: 220px 1fr;
    /* ←日付幅を固定 */
    margin-bottom: 1.2em;
    line-height: 1.8;

    background-image: linear-gradient(to right, #ccc 33%, rgba(255, 255, 255, 0) 0%);
    background-position: left bottom;
    background-size: 5px 1px;
    background-repeat: repeat-x;
}

.c-prose .timeline .date {
    white-space: nowrap;
}

.c-prose .timeline .text-r {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .c-prose .timeline .item {
        grid-template-columns: 1fr;
        /* 縦並び */
        gap: 6px;
        padding-bottom: 10px;
        background-image: none;
    }

    .c-prose .timeline .date {
        display: inline-block;
        background: #ebebeb;
        padding: 2px 8px;
        border-radius: 4px;
        width: fit-content;
        width: 100%;
    }

    .c-prose .timeline .text-r {
        text-align: center;
    }
}

/*---------------------------------------
 テーブル
-----------------------------------------*/

.c-prose table {
    border-collapse: collapse;
    margin-top: 10px;
    margin-bottom: 30px;
}

.c-prose th,
.c-prose td {
    border: 1px solid #ddd;
    padding: 8px 10px;
    vertical-align: top;
}

.c-prose th {
    background: #f5f5f5;
    width: auto;
    text-align: left;
    letter-spacing: 3px;
    font-weight: normal;
    color: var(--main-color);
    white-space: nowrap;
}

.c-prose td {
    background-color: #fff;
}

.c-prose caption {
    text-align: left;
}

/* セルを折り返さない */
.c-prose .table-nowrap {
    white-space: nowrap;
}


/* テーブル100%-行単位 */
.c-prose .table-full {
    width: 100%;
}

@media screen and (max-width: 768px) {

    /* 行単位表示 */
    .c-prose .table-full th {
        display: block;
        width: 100%;
        /* 98%; */
        background: #eee;
    }

    .c-prose .table-full td {
        display: block;
        width: 100%;
        border-top: none;
        border-left: none;
        border-right: none;
    }
}

/* テーブル 横にスクロール */
.c-prose .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.c-prose .table-scroll {
    width: 100%;
    overflow-x: auto;
    /* 横スクロール可能に */
    -webkit-overflow-scrolling: touch;
    /* スマホでスムーズスクロール */
    border-radius: 8px;
}

.c-prose .table-scroll table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

/*
.c-prose .table-scroll::after {
    content: "← スワイプできます →";
    display: block;
    text-align: right;
    color: #888;
    padding: 4px;
}
*/

.c-prose .table-scroll th,
.c-prose .table-scroll td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
}

.c-prose .table-scroll thead {
    background-color: #f5f5f5;
}

/* 固定列 */
.c-prose .table-scroll .fixed-column {
    position: sticky;
    left: 0;
    background-color: #fff;
    z-index: 2;
    border-left: none;
    border-right: none;
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
}

.c-prose .table-scroll .fixed-column::before,
.c-prose .table-scroll .fixed-column::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    /* 線の太さ */
    background-color: #ddd;
}

.c-prose .table-scroll .fixed-column::before {
    left: 0;
    /* 左側線 */
}

.c-prose .table-scroll .fixed-column::after {
    right: 0;
    /* 右側線 */
}

.c-prose .table-scroll th.fixed-column {
    background-color: #f5f5f5;
    border-right: 1px solid #ddd;
}

.c-prose .table-scroll thead .fixed-column {
    z-index: 3;
    /* ヘッダーが本文より前に出るように */
    background-color: #f5f5f5;
}

@media (max-width: 600px) {
    .c-prose .table-scroll::after {
        content: "← スワイプできます →";
        display: block;
        /* font-size: 12px; */
        text-align: right;
        color: #888;
        padding: 4px;
    }

    .c-prose .table-scroll th,
    .c-prose .table-scroll td {
        padding: 8px 12px;
    }
}

/* テーブル 縦にスクロール */
.c-prose .table-scroll-y {
    max-height: 600px;
    /* 縦スクロール高さ */
    overflow: auto;
    border: 1px solid #ccc;
}

/* ヘッダー固定 */
.c-prose .table-scroll-y thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    /* 左列より前面に表示 */
}

/* ヘッダー下線を擬似要素で表示 */
.c-prose .table-scroll-y thead th::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ccc;
}

/* テーブル 横と縦にスクロール */
.c-prose .table-scroll-xy {
    max-height: 650px;
    overflow: auto;
}

/* border-collapse を separate にして罫線が消えないようにする */
.c-prose .table-scroll-xy table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    min-width: 1440px;
}

.c-prose .table-scroll-xy table th,
.c-prose .table-scroll-xy table td {
    padding: 8px;
    vertical-align: top;
    background: #fff;
    border: 1px solid #ddd;
}

/* ヘッダー固定 */
.c-prose .table-scroll-xy table thead th {
    position: sticky;
    top: 0;
    background: #f5f5f5;
    z-index: 4;
    border-bottom: 1px solid #ddd;
}

/* 左列固定 */
.c-prose .table-scroll-xy table .fixed-column {
    position: sticky;
    left: 0;
    z-index: 3;
    border-right: 1px solid #ddd;
}

/* 左上セル（ヘッダー×固定列） */
.c-prose .table-scroll-xy table thead th.fixed-column {
    z-index: 5;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 600px) {
    .c-prose .table-scroll-xy::after {
        content: "← スワイプできます →";
        display: block;
        /* font-size: 12px; */
        text-align: right;
        color: #888;
        padding: 4px;
    }
}

/* テーブル　行ごとに背景カラー変更 */
.c-prose .table-wrapper-dec th,
.c-prose .table-wrapper-dec td {
    padding: 15px;
    text-align: left;
}

.c-prose .table-wrapper-dec th {
    background-color: #ddd;
    border: 1px solid #ccc;
    width: auto;
}

.c-prose .table-wrapper-dec td {
    background-color: #f9f9f9;
}

.c-prose .table-wrapper-dec tr:nth-child(even) td {
    background-color: #f1f1f1;
}

/*
.c-prose .table-wrapper-dec tr:hover {
        background-color: #eaeaea;
}
*/

@media (max-width: 768px) {
    .c-prose .table-wrapper {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .c-prose .table-wrapper-dec {
        width: 100%;
        /* テーブルが親要素に収まるように設定 */
        min-width: 0;
        border-collapse: collapse;
        /* 余計な間隔を削除 */
    }

    /* th を非表示にする */
    .c-prose .table-wrapper-dec thead {
        display: none;
    }

    /* 行単位でボックス化 */
    .c-prose .table-wrapper-dec tr {
        display: block;
        /* 行をブロック要素にして縦並びに */
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background-color: #f9f9f9;
        padding: 0px;
    }

    /* 各列のスタイル調整 */
    .c-prose .table-wrapper-dec td {
        display: block;
        padding: 8px 15px;
        border: none;
        word-wrap: break-word;
        /* 単語の折り返しを有効にする */
        word-break: break-word;
        /* 文字列の途中で折り返しを強制する */
    }

    /* 固定列に背景色と余白を追加 */
    .c-prose .fixed-column {
        background-color: #fff;
        padding-left: 15px;
        border-left: 3px solid #ddd;
    }

    .c-prose .table-wrapper-dec td {
        padding: 8px 15px;
    }
}

/*---------------------------------------
 グリッド
-----------------------------------------*/

/* グリッド 自動調整 */
.c-prose .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.c-prose .grid-item {
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.c-prose .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .c-prose .grid {
        padding: 20px 0;
    }
}

/* グリッド 横並び2列 */
.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .grid2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid2 div {
        padding: 0 20px 30px;
    }
}

/* グリッド 横並び3列 */
.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid3 div {
    padding: 0 40px 40px;
    border: 1px solid #ddd;
    transition: 0.3s;
    background: #fff;
    box-sizing: border-box;
}

.grid3 div.border-none {
    border: none;
}

.grid3 div:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .grid3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .grid3 div {
        padding: 0 20px 30px;
    }
}

/* グレー線 */
.c-prose .grid3 h3 {
    text-align: center;
}

.c-prose .grid3 h3::before {
    background: none;
}

/* オレンジ線 */
.c-prose .grid3 h3::after {
    width: 100%;
    /* オレンジ線の長さ */
    height: 2px;
    /* オレンジ線の太さ */
}

.c-prose .grid3 ul.list,
.c-prose .grid3 ol.list {
    padding-left: 1em;
}

/* グリッド 横並び3列 index  */
.c-prose .grid3-2 {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.c-prose .grid3-2 .card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid #d7e0e8;
    box-shadow:
        0 5px 15px rgba(0, 0, 0, .08);
    transition: .3s;
}

.c-prose .grid3-2 .card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .15);
}

.c-prose .grid3-2 .card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 0;
}

.c-prose .grid3-2 .card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .4s;
    border-radius: 0;
}

.c-prose .grid3-2 .card:hover img {
    transform: scale(1.05);
}

/* 本文 */
.c-prose .grid3-2 .card-body {
    padding: 0;
}

.c-prose .grid3-2 .card-body h2 {
    font-size: 1.25em;
    font-weight: 700;
    color: #222;
    line-height: 1.5;

    margin: 0 0 0px;
    padding: 8px 10px 8px;
    text-align: center;
}

.c-prose .grid3-2 .card-body h2::before,
.c-prose .grid3-2 .card-body h2::after {
    content: none;
}

.c-prose .grid3-2 .card-body p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.8;

    margin: 0;
    padding: 0 8px;
}

/* タブレット */
@media screen and (max-width:1200px) {
    .c-prose .grid3-2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* タブレット縦 */
@media screen and (max-width:900px) {
    .c-prose .grid3-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:600px) {
    .c-prose .grid3-2 {
        grid-template-columns: 1fr;
    }
}

/*---------------------------------------
 flow
-----------------------------------------*/

.c-prose .flow-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5em;
    margin-bottom: 2em;
}

.c-prose .flow-container .flow-step {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 1.5em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-prose .flow-container .flow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.c-prose .flow-container h3 {
    color: #004080;
    margin-top: 0;
    margin-bottom: 0.8em;
}

.c-prose .flow-container p {
    margin-bottom: 1em;
}

.c-prose .flow-container .btn {
    display: inline-block;
    padding: 0.6em 1.2em;
    background-color: #004080;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.c-prose .flow-container .btn:hover {
    background-color: #0060c0;
}

@media (max-width: 600px) {
    .c-prose .flow-container .flow-step {
        padding: 1.2em;
    }
}

/*---------------------------------------
 contact banner
-----------------------------------------*/

.c-prose .contact-banner {
    position: relative;
    overflow: hidden;
    padding: 50px 60px;
    border-radius: 32px;
    background-color: #ff6a3d;
    background-image: url(../assets/img/orange-mask-group.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    max-width: 1300px;
    margin: 60px auto;
}

/* 背景の薄い模様 */
.c-prose .contact-banner::before,
.c-prose .contact-banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.c-prose .contact-banner::before {
    width: 420px;
    height: 420px;
    top: -220px;
    right: -120px;
}

.c-prose .contact-banner::after {
    width: 300px;
    height: 300px;
    bottom: -160px;
    left: 20%;
}

/* 横並び */
.c-prose .contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* 左 */
.c-prose .contact-text {
    flex: 1;
    padding-left: 40px;
}

.c-prose .contact-sub {
    font-weight: 700;
    margin-bottom: 14px;
}

.c-prose .contact-text h2 {
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    color: #fff;
    border: none;
}

.c-prose .contact-desc {
    font-weight: 700;
}

/* 右 */
.c-prose .contact-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

/* ボタン */
.c-prose .contact-btn {
    min-width: 230px;
    padding: 18px 30px;
    background: #f4f4f4;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-decoration: none;
    color: #222;
    font-weight: 700;
    transition: 0.3s;
}

.c-prose .contact-btn:hover {
    transform: translateY(-4px);
    background: #fff;
}

.c-prose .arrow {
    color: #ff5b47;
    line-height: 1;
}

/* TABLET */
@media screen and (max-width: 1024px) {
    .c-prose .contact-banner {
        padding: 40px;
    }

    .c-prose .contact-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .c-prose .contact-buttons {
        width: 100%;
    }

    .c-prose .contact-btn {
        flex: 1;
    }
}

@media screen and (max-width: 768px) {

    .c-prose .contact-banner {
        padding: 32px 24px;
        border-radius: 24px;
        background-image: url(../assets/img/orange-mask-group-sps.png);
    }

    .c-prose .contact-text h2 {
        margin-bottom: 16px;
    }

    .c-prose .contact-buttons {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .c-prose .contact-btn {
        /*
        width: 100%;
        min-width: auto;
        padding: 20px 22px;
        */
    }
}

/*---------------------------------------
 ステップ
-----------------------------------------*/

.c-prose .step-images {
    display: flex !important;
    gap: 20px;
}

.c-prose .step-image-item {
    width: 50%;
}

.c-prose .step-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

.c-prose .step-image-item p {
    margin: 0;
    text-align: left;
}

@media (max-width: 768px) {
    .c-prose .step-images {
        flex-direction: column;
    }

    .c-prose .step-image-item {
        width: 100%;
    }
}

/* ------------------------------------------
   アコーディオン
------------------------------------------ */

.c-prose .accordion-item {
    background: #fff;
    border-radius: 24px;
    margin: 0 0 24px 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

/* 質問部分 */
.c-prose .accordion-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px;
    border: none;
    background: #fff;
    cursor: pointer;
    text-align: left;
    position: relative;
}

/* ＋ */
.c-prose .accordion-question::after {
    content: "＋";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    color: #ff6b4a;
    line-height: 1;
}

/* 開いたら － */
.c-prose .accordion-item.active .accordion-question::after {
    content: "－";
}

.c-prose .accordion-icon-q {
    font-size: 36px;
    font-weight: 700;
    color: #0b8ca5;
    line-height: 1;
    flex-shrink: 0;
}

.c-prose .accordion-title {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    padding-right: 40px;
}

/* 回答部分 */
.c-prose .accordion-answer {
    display: none;
    padding: 0 32px 32px;
}

.c-prose .accordion-item.active .accordion-answer {
    display: block;
}

.c-prose .accordion-item.active .accordion-question {
    padding-bottom: 24px;
}

/* 回答エリア */
.c-prose .accordion-answer-inner {
    border-top: 2px dotted #ddd;
    padding-top: 32px;
    display: flex;
    gap: 24px;
}

.c-prose .accordion-icon-a {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b4a;
    line-height: 1;
    flex-shrink: 0;
}

.c-prose .accordion-text {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.c-prose .accordion-text a {
    color: #ff6b4a;
    text-decoration: none
}

.c-prose .accordion-answer {
    padding: 0 32px 32px;
}

.c-prose .accordion-answer-inner {
    padding-top: 32px;
}

@media (max-width: 768px) {

    .c-prose .accordion-item {
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .c-prose .accordion-question {
        padding: 20px;
        gap: 12px;
    }

    .c-prose .accordion-question::after {
        right: 20px;
        font-size: 24px;
    }

    .c-prose .accordion-icon-q,
    .c-prose .accordion-icon-a {
        font-size: 28px;
    }

    .c-prose .accordion-title {
        font-size: 18px;
        line-height: 1.5;
        padding-right: 30px;
    }

    .c-prose .accordion-answer {
        padding: 0 20px 20px;
    }

    .c-prose .accordion-answer-inner {
        gap: 12px;
        padding-top: 20px;
    }

    .c-prose .accordion-text {
        font-size: 16px;
        line-height: 1.8;
    }
}

/*---------------------------------------
 br改行
-----------------------------------------*/

/* PCでは改行 */
.c-prose .pc-br {
    display: block;
}

/* SPでは改行しない */
@media screen and (max-width: 768px) {
    .c-prose .pc-br {
        display: none;
    }
}

/* PCは改行しない */
.c-prose .sp-br {
    display: none;
}

/* SPだけ改行 */
@media screen and (max-width: 768px) {
    .c-prose .sp-br {
        display: block;
    }
}

/* ------------------------------------------
  ラベルボタン 
------------------------------------------ */
.c-prose .btn-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75em;
    min-width: 220px;
    height: 56px;
    padding: 0 28px;
    background: #FF6243;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    border-radius: 9999px;
    /* transition: all .3s ease; */
    margin: 10px;
}

.c-prose .btn-label:hover {
    background: #FF6243;
    transform: translateY(-2px);
    color: #fff;
    /* box-shadow: 0 8px 20px rgba(255,107,74,.35); */
}

.c-prose .btn-label__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform .3s ease;
}

.c-prose .btn-label:hover .btn-label__icon {
    transform: translate(3px, -3px);
}

/* ------------------------------------------
  Web-factory 
------------------------------------------ */

.c-prose.web-factory .accordion-text img {
    margin: 20px;
}

.c-prose.web-factory .accordion-text p {
    margin: 20px;
}

/* ------------------------------------------
  sitemap 
------------------------------------------ */

.sitemap {
    padding: 80px 20px;
    background: #f7f8fa;
}

.sitemap-group {
    background: #fff;
    padding: 32px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,.05); */
    /* transition: .3s; */
}

.sitemap-group:hover {
    transform: none !important;
    /* translateY(-4px); */
    box-shadow: none !important;
    /* 0 10px 25px rgba(0,0,0,.08); */
}

.sitemap-group h2 {
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 1.5em;
}

.sitemap-group h2::before {
    background: none;
}

.sitemap-group h2::after {
    height: 2px;
    background: #f58220;
}

.sitemap-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-group li {
    margin-bottom: 12px;
}

.sitemap-group li:last-child {
    margin-bottom: 0;
}

.sitemap-group a {
    display: inline-block;
    text-decoration: none;
    color: #444;
    line-height: 1.7;
    transition: .2s;
}

.sitemap-group a:hover {
    color: #f39800;
    /* transform: translateX(4px); */
}


@media (max-width: 1024px) {}

@media (max-width: 768px) {

    .sitemap {
        padding: 60px 16px;
    }

    .sitemap-group {
        padding: 24px;
    }

    .sitemap-group h2 {
        font-size: 1.125em;
    }
}

/* ------------------------------------------
  policy 
------------------------------------------ */

.c-prose.c-policy h4::before {
    content: "";
    margin-right: 0.2em;
    color: #fff;
}

.c-prose.c-policy .prohibitions p {
    padding-left: 1.5em;
}

/* ------------------------------------------
   terms-of-sale-payment
------------------------------------------ */

.c-prose.terms-of-sale-payment table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.c-prose.terms-of-sale-payment th {
    width: 80%;
    text-align: left;
    white-space: nowrap;
}

.c-prose.terms-of-sale-payment td {
    width: 20%;
    text-align: left;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .c-prose.terms-of-sale-payment th {
        width: 65%;
        /* font-size: 14px; */
    }

    .c-prose.terms-of-sale-payment td {
        width: 35%;
        /* font-size: 14px; */
        white-space: nowrap;
    }
}

/* ------------------------------------------
   access
------------------------------------------ */

.c-prose.access section {
    background: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2em;
    overflow: hidden;
    padding: 0;
}

.c-prose.access section.shadow-none {
    box-shadow: none;
}

.c-prose.access h2 {
    background: var(--color-key);
    color: #fff;
    padding: 15px;
    margin: 0;
    text-align: center;
    border-left: none;
}

.c-prose.access .address-info {
    display: flex;
    justify-content: space-between;
    margin: 60px;
}

.c-prose.access .address {
    width: 42%;
}

@media (max-width: 768px) {
    .c-prose.access .address-info {
        flex-direction: column;
        margin: 20px;
    }

    .c-prose.access .address {
        width: 100%;
        margin-bottom: 20px;
    }

    .c-prose.access .address:last-child {
        margin-bottom: 0;
    }
}

/* map */
.c-prose.access .map-container {
    /* max-width: 900px; */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.c-prose.access .google-map {
    aspect-ratio: 16 / 9;
}

.c-prose.access .google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    display: block;
}

/* imge */
.c-prose.access .image-gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
}

.c-prose.access .image-gallery .image {
    width: 30%;
    margin: 10px 0;
    border-radius: 8px;
}

/* youtube */
.c-prose.access .youtube-container {
    max-width: 900px;
    margin: 0 auto 2em;
    padding: 0 20px;
    box-sizing: border-box;
}

.c-prose.access .youtube-container iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 8px;
    display: block;
}

@media (max-width: 768px) {
    .c-prose.access .image-gallery {
        justify-content: center;
        margin-top: 20px;
    }

    .c-prose.access .image-gallery img.image {
        width: 48%;
        margin: 10px 0;
    }

    .c-prose.access .youtube-container {
        padding: 0 10px;
    }
}

.c-prose.access .grid3 div {
    padding: 1em;
    border-radius: 6px;
    border: solid 1px #eee;
}

.c-prose.access .grid3 h2 {
    padding-left: 0px;
    font-size: 1.5em;
    background: #eee;
    color: var(--text-color);
}

.c-prose.access .grid3 h2::before {
    background: #eee;
}

.c-prose.access .route-btn-container {
    text-align: center;
    margin-top: 10px;
}

.c-prose.access .route-btn {
    padding: 10px 20px;
    background-color: var(--btn-color);
    color: var(--main-color);
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.c-prose.access .route-btn:hover {
    background-color: var(--btn-h-color);
}

/* ------------------------------------------
   bcp
------------------------------------------ */

.c-prose.bcp .alert-banner {
    background-color: #ffcc00;
    padding: 0.8em;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 1em;
}

/* ------------------------------------------
  hazardous 
------------------------------------------ */

/* lead-alternative */
.c-prose.hazardous .lead-alternative img {
    min-width: 160px;
    max-width: 160px;
}

/* 1列目（固定列） */
.c-prose.hazardous .lead-alternative th:nth-child(1),
.c-prose.hazardous .lead-alternative td:nth-child(1) {
    min-width: 140px;
}

/* 2列目 */
.c-prose.hazardous .lead-alternative th:nth-child(2),
.c-prose.hazardous .lead-alternative td:nth-child(2) {
    min-width: 160px;
}

/* 3列目（特徴：折り返しOK） */
.c-prose.hazardous .lead-alternative th:nth-child(3),
.c-prose.hazardous .lead-alternative td:nth-child(3) {
    min-width: 200px;
    max-width: 240px;
    white-space: normal;
    word-break: break-word;
}

/* 5列目（代替案） */
.c-prose.hazardous .lead-alternative th:nth-child(5),
.c-prose.hazardous .lead-alternative td:nth-child(5) {
    min-width: 260px;
    max-width: 260px;
}

@media (max-width: 768px) {
    .c-prose.hazardous .lead-alternative td img {
        min-width: 80px;
        max-width: 80px;
    }
}

/* contains-lead */
.c-prose.hazardous .contains-lead td {
    vertical-align: middle;
}

.c-prose.hazardous .contains-lead td:nth-child(2),
.c-prose.hazardous .contains-lead td:nth-child(3) {
    text-align: center;
}

@media (max-width: 768px) {}

/* lead-metal */
/* 1列目（日付） */
.c-prose.hazardous .lead-metal th:nth-child(1),
.c-prose.hazardous .lead-metal td:nth-child(1) {
    min-width: 110px;
    white-space: nowrap;
}

/* 2列目（所轄） */
.c-prose.hazardous .lead-metal th:nth-child(2),
.c-prose.hazardous .lead-metal td:nth-child(2) {
    min-width: 140px;
    max-width: 240px;
    white-space: normal;
    word-break: break-word;
}

/* 3列目（内容：長文） */
.c-prose.hazardous .lead-metal th:nth-child(3),
.c-prose.hazardous .lead-metal td:nth-child(3) {
    min-width: 300px;
    max-width: 560px;
    white-space: normal;
    word-break: break-word;
}

/* 4列目（リンク） */
.c-prose.hazardous .lead-metal th:nth-child(4),
.c-prose.hazardous .lead-metal td:nth-child(4) {
    min-width: 110px;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 768px) {}

/* rohs-directive */
.c-prose.hazardous .rohs-directive th,
.c-prose.hazardous .rohs-directive td {
    padding: 12px 16px;
}

.c-prose.hazardous .rohs-directive th:nth-child(1) {
    text-align: right;
}

/* lead-handling_02 */
.c-prose.hazardous .lead-handling_02 td:nth-child(6) {
    text-align: center;
}

.c-prose.hazardous .regulation {
    max-width: 900px;
    margin: 40px 0;
    line-height: 1.8;
}

.c-prose.hazardous .regulation h5 {
    border-left: 6px solid #ccc;
    padding-left: 12px;
    margin-bottom: 20px;
    font-weight: 700;
}

.c-prose.hazardous .regulation-box {
    background: #f7f7f7;
    border: 1px solid #d6d6d6;
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.c-prose.hazardous .regulation-light-box {
    background: #fff4f4;
    border: 1px solid #e0a4a4;
    padding: 18px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* 矢印 */
.c-prose.hazardous .regulation-arrow {
    text-align: center;
    font-size: 26px;
    margin: 10px 0 20px;
    color: #666;
}

@media (max-width: 768px) {

    /* 各項目を見やすくするためにラベルを追加 */
    .c-prose.hazardous .table-wrapper {
        border: 1px solid #ddd;
    }

    .c-prose.hazardous .table-wrapper th {
        display: none;
    }

    .c-prose.hazardous .table-wrapper td:nth-child(1):before {
        content: "材質　　: ";
        font-weight: bold;
    }

    .c-prose.hazardous .table-wrapper td:nth-child(2):before {
        content: "製品規格: ";
        font-weight: bold;
    }

    .c-prose.hazardous .table-wrapper td:nth-child(3):before {
        content: "販売価格: ";
        font-weight: bold;
    }

    .c-prose.hazardous .table-wrapper td:nth-child(4):before {
        content: "メーカー: ";
        font-weight: bold;
    }

    .c-prose.hazardous .table-wrapper td:nth-child(5):before {
        content: "特徴　　: ";
        font-weight: bold;
    }

}

/* ------------------------------------------
  iso 
------------------------------------------ */

.c-prose.iso .certifications {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin: 30px 0;
}

.c-prose.iso .certification-item {
    text-align: center;
    max-width: 180px;
}

.c-prose.iso .certification-item img {
    width: 32%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.c-prose.iso .certification-item p {
    margin: 0;
    font-size: 0.8em;
    line-height: 1.2;
}

/* ------------------------------------------
   philosophy
------------------------------------------ */

.c-prose.philosophy img {
    width: 70%;
}

@media (max-width: 768px) {
    .c-prose.philosophy img {
        width: 100%;
    }
}

/* ------------------------------------------
   SDS
------------------------------------------ */

.c-prose.sds li {
    padding-bottom: 20px;
}

/* 一連の分析結果からわかった傾向 */

.c-prose.sds .analysis-wrap {
    max-width: 1200px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.c-prose.sds .analysis-card {
    border-radius: 12px;
    padding: 20px;
}

.c-prose.sds .green {
    background: #edf7ed;
}

.c-prose.sds .yellow {
    background: #fff0cf;
}

.c-prose.sds .analysis-head {
    text-align: center;
    font-size: 14px;
    line-height: 2;
    font-weight: 700;
    color: #333;
    min-height: 120px;
}

.c-prose.sds .small-note {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
}

.c-prose.sds .arrow-down {
    width: 0;
    height: 0;
    margin: 0 auto 15px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #3f7d92;
}

.c-prose.sds .result-title {
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.c-prose.sds .green-bg {
    background: #58aa59;
}

.c-prose.sds .orange-bg {
    background: #ff9444;
}

.c-prose.sds .result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.c-prose.sds .judge-box {
    background: #fff;
    border-radius: 6px;
    padding: 18px;
    min-height: 220px;
}

.c-prose.sds .ng {
    border: 2px solid #ef4a4a;
}

.c-prose.sds .ok {
    border: 2px solid #68ba66;
}

.c-prose.sds .warning {
    border: 2px solid #e4a134;
}

.c-prose.sds .icon-cross {
    text-align: center;
    color: #e32020;
    font-size: 54px;
    line-height: 1;
    margin-bottom: 15px;
}

.c-prose.sds .icon-circle {
    text-align: center;
    color: #5caf55;
    font-size: 54px;
    line-height: 1;
    margin-bottom: 15px;
}

.c-prose.sds .icon-triangle {
    text-align: center;
    color: #e5a32b;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
}

.c-prose.sds .judge-box ul {
    padding-left: 18px;
}

.c-prose.sds .judge-box li {
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 13px;
    color: #333;
}

.c-prose.sds .judge-box li::marker {
    color: #5caf55;
}

.c-prose.sds .ng li::marker {
    color: #ef4a4a;
}

.c-prose.sds .warning li::marker {
    color: #e4a134;
}

.c-prose.sds .judge-box p {
    margin-top: 16px;
    padding: 10px;
    background: #f7f7f7;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

@media (max-width:768px) {

    .c-prose.sds .analysis-wrap {
        grid-template-columns: 1fr;
    }

    .c-prose.sds .result-grid {
        grid-template-columns: 1fr;
    }

    .c-prose.sds .analysis-head {
        min-height: auto;
        margin-bottom: 15px;
    }
}

/*
画像に変更するなら

<div class="judge-icon">
  <img src="images/icon-ng.png" alt="">
</div>
.judge-icon{
  text-align:center;
  margin-bottom:15px;
}

.judge-icon img{
  width:52px;
  height:auto;
}
*/


/*  */
.c-prose.sds .rubber td {
    text-align: center;
}

.c-prose.sds .strap td:nth-child(4),
.c-prose.sds .strap td:nth-child(5) {
    text-align: center;
}


.c-prose.sds td img {
  max-width:80px;
  mix-width:80px;
  display: inline-block;
} 

.c-prose.sds .tbl-img {
    aspect-ratio: 1 / 1; 
    object-fit: cover;
} 

@media (max-width: 600px) {
    .c-prose.sds td img {
        min-width: 100px;
        max-width: 100px;
    }
}

/*  */
.c-prose.sds .img-title p {
    margin-bottom: 0;
}

.c-prose.sds .img-title .image-row {
    margin-top: 0;
    justify-content: left;
    text-align: center;
}

/* ------------------------------------------
   hazardous
------------------------------------------ */

/* lead-alternative */
.c-prose.hazardous .lead-alternative img {
  min-width: 160px;
  max-width: 160px;
}

/* 1列目（固定列） */
.c-prose.hazardous .lead-alternative th:nth-child(1),
.c-prose.hazardous .lead-alternative td:nth-child(1) {
  min-width: 140px;
}

/* 2列目 */
.c-prose.hazardous .lead-alternative th:nth-child(2),
.c-prose.hazardous .lead-alternative td:nth-child(2) {
  min-width: 160px;
}

/* 3列目（特徴：折り返しOK） */
.c-prose.hazardous .lead-alternative th:nth-child(3),
.c-prose.hazardous .lead-alternative td:nth-child(3) {
  min-width: 200px;
  max-width: 240px;
  white-space: normal;
  word-break: break-word;
}

/* 5列目（代替案） */
.c-prose.hazardous .lead-alternative th:nth-child(5),
.c-prose.hazardous .lead-alternative td:nth-child(5) {
  min-width: 260px;
  max-width: 260px;
}

@media (max-width: 768px) {
  .c-prose.hazardous .lead-alternative td img {
    min-width: 80px;
    max-width: 80px;
  }
}

/* contains-lead */
.c-prose.hazardous .contains-lead td {
  vertical-align: middle;
}

.c-prose.hazardous .contains-lead td:nth-child(2),
.c-prose.hazardous .contains-lead td:nth-child(3) {
  text-align: center;
}

@media (max-width: 768px) {}

/* lead-metal */
/* 1列目（日付） */
.c-prose.hazardous .lead-metal th:nth-child(1),
.c-prose.hazardous .lead-metal td:nth-child(1) {
  min-width: 110px;
  white-space: nowrap;
}

/* 2列目（所轄） */
.c-prose.hazardous .lead-metal th:nth-child(2),
.c-prose.hazardous .lead-metal td:nth-child(2) {
  min-width: 140px;
  max-width: 240px;
  white-space: normal;
  word-break: break-word;
}

/* 3列目（内容：長文） */
.c-prose.hazardous .lead-metal th:nth-child(3),
.c-prose.hazardous .lead-metal td:nth-child(3) {
  min-width: 300px;
  max-width: 560px;
  white-space: normal;
  word-break: break-word;
}

/* 4列目（リンク） */
.c-prose.hazardous .lead-metal th:nth-child(4),
.c-prose.hazardous .lead-metal td:nth-child(4) {
  min-width: 110px;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 768px) {}

/* rohs-directive */
.c-prose.hazardous .rohs-directive th,
.c-prose.hazardous .rohs-directive td {
  padding: 12px 16px;
}

.c-prose.hazardous .rohs-directive th:nth-child(1) {
  text-align: right;
}

/* lead-handling_02 */
.c-prose.hazardous .lead-handling_02 td:nth-child(6) {
  text-align: center;
}

.c-prose.hazardous .regulation {
  max-width: 900px;
  margin: 40px 0;
  line-height: 1.8;
}

.c-prose.hazardous .regulation h5 {
  border-left: 6px solid #ccc;
  padding-left: 12px;
  margin-bottom: 20px;
  font-weight: 700;
}

.c-prose.hazardous .regulation-box {
  background: #f7f7f7;
  border: 1px solid #d6d6d6;
  padding: 18px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.c-prose.hazardous .regulation-light-box {
  background: #fff4f4;
  border: 1px solid #e0a4a4;
  padding: 18px 20px;
  border-radius: 6px;
  margin-bottom: 15px;
}

/* 矢印 */
.c-prose.hazardous .regulation-arrow {
  text-align: center;
  font-size: 26px;
  margin: 10px 0 20px;
  color: #666;
}

@media (max-width: 768px) {

  /* 各項目を見やすくするためにラベルを追加 */
  .c-prose.hazardous .table-wrapper {
    border: 1px solid #ddd;
  }

  .c-prose.hazardous .table-wrapper th {
    display: none;
  }

  .c-prose.hazardous .table-wrapper td:nth-child(1):before {
    content: "材質　　: ";
    font-weight: bold;
  }

  .c-prose.hazardous .table-wrapper td:nth-child(2):before {
    content: "製品規格: ";
    font-weight: bold;
  }

  .c-prose.hazardous .table-wrapper td:nth-child(3):before {
    content: "販売価格: ";
    font-weight: bold;
  }

  .c-prose.hazardous .table-wrapper td:nth-child(4):before {
    content: "メーカー: ";
    font-weight: bold;
  }

  .c-prose.hazardous .table-wrapper td:nth-child(5):before {
    content: "特徴　　: ";
    font-weight: bold;
  }

}

.c-prose.hazardous .accordion-title {
  font-weight: normal;
}

/* 比較レイアウト */
.c-prose.hazardous .comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 260px 1fr;
  gap: 30px;
  align-items: stretch;
}

/* カード */
.c-prose.hazardous .comparison-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.c-prose.hazardous .comparison-card.left {
  border-top: 6px solid #5caf55;
}

.c-prose.hazardous .comparison-card.right {
  border-top: 6px solid #2196f3;
}

.c-prose.hazardous .card-label {
  display: inline-block;
  background: #f39800;
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.c-prose.hazardous .comparison-card h6 {
  margin-bottom: 20px;
}

.c-prose.hazardous .comparison-card p {
  line-height: 1.9;
}

.c-prose.hazardous .card-note {
  margin-top: 25px;
  padding: 18px;
  background: #f7f7f7;
  line-height: 1.8;
}

/* 真ん中 */
.c-prose.hazardous .comparison-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff4d8;
/*   border: 3px solid #f39800; */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
}

.c-prose.hazardous .question-icon {
  width: 70px;
  height: 70px;
  background: #f39800;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.c-prose.hazardous .comparison-center h6 {
  color: #d35400;
  margin-bottom: 15px;
}

.c-prose.hazardous .comparison-center p {
  line-height: 1.8;
}

/* 結論 */
.c-prose.hazardous .comparison-result {
  margin-top: 0px;
  background: #fff4d8;
  padding: 35px;
  border-radius: 10px;
}

.c-prose.hazardous .comparison-result h6 {
  margin-bottom: 20px;
  /* font-size: 1.4em; */
}

.c-prose.hazardous .comparison-result p {
  line-height: 2;
}

.c-prose.hazardous .comparison-result strong {
  /* font-size: 1.05em; */
}

/* Responsive */
@media (max-width:900px) {
  .c-prose.hazardous .comparison-wrapper {
    grid-template-columns: 1fr;
  }

  .c-prose.hazardous .comparison-center {
    order: 2;
  }

  .c-prose.hazardous .comparison-card.left {
    order: 1;
  }

  .c-prose.hazardous .comparison-card.right {
    order: 3;
  }

  .c-prose.hazardous .comparison-result {
    order: 4;
  }
}

@media (max-width:768px) {
  .c-prose.hazardous .comparison-section {
    margin: 50px auto;
  }

  .c-prose.hazardous .comparison-section h4 {
    /* font-size: 1.6em; */
  }

  .c-prose.hazardous .comparison-card,
  .c-prose.hazardous .comparison-center,
  .c-prose.hazardous .comparison-result {
    padding: 22px;
  }

  .c-prose.hazardous .comparison-card h5,
  .c-prose.hazardous .comparison-center h5,
  .c-prose.hazardous .comparison-result h5 {
    font-size: 1.15em;
  }

  .c-prose.hazardous .question-icon {
    width: 56px;
    height: 56px;
    /* font-size: 1.6em; */
  }
}

/* ------------------------------------------
   sustainability
------------------------------------------ */

    .c-prose.sustainability .bg-light {
      background: #f5f5f5;
    }

    .c-prose.sustainability .sdgs_logo {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0;
      margin: 20px 0 0 0;
      list-style: none;
      justify-content: flex-start;
    }

    .c-prose.sustainability .sdgs_logo li {
      list-style: none;
    }

    .c-prose.sustainability .sdgs_logo img {
      width: 100px;
      height: auto;
      display: block;
    }

    @media (max-width: 768px) {
      .c-prose.sustainability .sdgs_logo {
        gap: 8px;
      }

      .c-prose.sustainability .sdgs_logo img {
        width: 80px;
      }

      .c-prose.sustainability .goals img {
        width: 100%;
      }
    }

    /* 目標 */
    .c-prose.sustainability #sdgs-gallery img {
      width: 100%;
    }

    .c-prose.sustainability #social .activities p {
      width: 100%;
    }

    .c-prose.sustainability dd img {
      width: 100%;
    }

    /* slide */
    .c-prose.sustainability .works-slider {
        width: 100%;
        padding: 20px 0;
    }

    .c-prose.sustainability .works-slider img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 10px;
        display: block;
    }

/* ------------------------------------------
   catalog
------------------------------------------ */

    .c-prose.catalog .catalog-section {
      max-width: 1280px;
      margin: auto;
      padding: 80px 20px;
    }

    .c-prose.catalog .catalog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 40px;
    }

    .c-prose.catalog .catalog-grid-old {
      display: grid;
       grid-template-columns: repeat(auto-fit, 340px);
      gap: 40px;
    }

    .c-prose.catalog .catalog-card {
      background: #fff;
      border-radius: 0;
      overflow: hidden;
      box-shadow:
        0 15px 45px rgba(0, 0, 0, .08);
      transition: .35s;
      padding: 20px;
    }

    .c-prose.catalog .catalog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    }

    .c-prose.catalog .catalog-image {
      aspect-ratio: 3/4;
      overflow: hidden;
      border:solid 1px #e6e5e5;
    }

    .c-prose.catalog .catalog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .5s;
      border-radius: 0;
    }

    .c-prose.catalog .catalog-card:hover img {
      transform: scale(1.05);
    }

    .c-prose.catalog .catalog-body {
      padding: 8px 0;
    }

    .c-prose.catalog .catalog-body small {
      color: #ff6b00;
      font-weight: 700;
      letter-spacing: .15em;
    }

    .c-prose.catalog .catalog-body h3 {
      margin: 15px 0;
      line-height: 1.4;
      font-size: 1.3em;
    }

    .c-prose.catalog .catalog-body p {
      color: #666;
      line-height: 1.9;
      margin-bottom: 16px;
    }

    .c-prose.catalog .catalog-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 52px;
      padding: 0 35px;
      background: #ff6b00;
      color: #fff;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      transition: .3s;
    }

    .c-prose.catalog .catalog-btn:hover {
      background: #222;
    }

    @media (max-width:1024px) {
      .c-prose.catalog .catalog-section {
        padding: 60px 24px;
      }

      .c-prose.catalog .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
      }

      .c-prose.catalog .catalog-body {
        padding: 24px;
      }

      .c-prose.catalog .catalog-body h3 {
        font-size: 1.4em;
      }
    }

    @media (max-width:768px) {
      .c-prose.catalog .catalog-section {
        padding: 50px 16px;
      }

      .c-prose.catalog .catalog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .c-prose.catalog .catalog-card {
        border-radius: 16px;
      }

      .c-prose.catalog .catalog-image {
        aspect-ratio: 16/10;
      }

      .c-prose.catalog .catalog-body {
        padding: 22px;
      }

      .c-prose.catalog .catalog-body small {
        font-size: .8em;
      }

      .c-prose.catalog .catalog-body h3 {
        font-size: 1.35em;
        margin: 12px 0;
      }

      .c-prose.catalog .catalog-body p {
        font-size: .95em;
        line-height: 1.8;
        margin-bottom: 22px;
      }

      .c-prose.catalog .catalog-btn {
        width: 100%;
        height: 50px;
        font-size: .95em;
      }
    }

/* ------------------------------------------
   quality index
------------------------------------------ */

.c-prose.quality .feature-grid {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.c-prose.quality .feature-card {
  position: relative;
  background: #f5e7dc;
  border-radius: 20px;
  padding: 40px 35px 35px;
}

.c-prose.quality .icon-circle {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.c-prose.quality .icon-circle img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 0px;
}

.c-prose.quality h3 {
    margin-top: 120px;
    padding-bottom: 0;
    line-height: 1.0;
    letter-spacing: 0.04em;
}

.c-prose.quality h3::before,
.c-prose.quality h3::after {
  background: none;
  padding:0;
}

.c-prose.quality h3.card-title {
  font-size: 2em;
  text-align: center;
  color: #f26b4f;
  font-size: 38px;
  font-family: Georgia, serif;
  margin-bottom: 35px;
}

.c-prose.quality .content-block {
  padding: 20px 0;
}

.c-prose.quality .content-block + .content-block {
  border-top: 1px solid #e3cfc0;
}

.c-prose.quality .content-block h4 {
  position: relative;
  font-size: 24px;
  line-height: 1.6;
  margin-top: 0px;
  margin-bottom: 15px;
  padding-left: 18px;
}

.c-prose.quality .content-block h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: #f26b4f;
}

.c-prose.quality .content-block p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 20px;
}

.c-prose.quality .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.c-prose.quality .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 999px;
  text-decoration: none;
  color: #444;
  font-size: 13px;
  border: 1px solid #eee;
  transition: .3s;
}

.c-prose.quality .btn::after {
  content: "?";
  color: #f26b4f;
  font-weight: bold;
}

.c-prose.quality .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

@media (max-width: 768px) {
  .c-prose.quality .feature-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    padding: 0 20px;
  }

  .c-prose.quality .card-title {
    font-size: 30px;
  }

  .c-prose.quality .content-block h4 {
    font-size: 20px;
  }
}

/* ------------------------------------------
   commitment
------------------------------------------ */

.c-prose.commitment .concept-img img {
    margin: 0;
}

.c-prose.commitment .image-row {
    margin-top: 0;
    justify-content: left;
    text-align: center;
}

/* ------------------------------------------
   design-support
------------------------------------------ */

.c-pose.design-support table.table-wrapper-dec th {
    text-align: center;
}

@media (max-width: 768px) {
  .c-prose.design-support .table-wrapper-dec td {
      padding: 8px 15px;
  }

  /* 各項目を見やすくするためにラベルを追加 */
  .c-prose.design-support td:nth-child(1):before {
      content: "データ種別: ";
      font-weight: bold;
  }

  .c-prose.design-support td:nth-child(2):before {
      content: "対応形式: ";
      font-weight: bold;
  }

  .c-prose.design-support td:nth-child(3):before {
     content: "備考: ";
      font-weight: bold;
  }

}

.c-prose.design-support .image-row {
    margin-top: 0;
    justify-content: left;
    text-align: center;
}

/* ------------------------------------------
   equipment
------------------------------------------ */
.c-prose.equipment .image-row {
    margin-top: 0;
    justify-content: left;
    text-align: center;
}

/* ------------------------------------------
   flow
------------------------------------------ */

    .c-prose .workflow-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      align-items: start;
    }

    .c-prose .flow-step h3 {
      font-size: 1.25em;
    }

    .c-prose .workflow-container h4::before {
      content: none;
    }

    .c-prose .workflow-container .column {
      flex: 1;
      border-left: 1px dashed #ddd;
      padding: 0 10px;
    }

    .c-prose .workflow-container .column:first-child {
      border-left: none;
    }

    .c-prose .workflow-container .title {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;

      color: #fff;
      text-align: center;
      padding: 15px 10px;
      border-radius: 8px;
      margin-bottom: 5px;

      min-height: 110px;
      /* PC */
    }

    .c-prose .workflow-container .title span {
      display: block;
      font-size: 0.8em;
      font-weight: normal;
      margin-top: 5px;
      color: #555;
    }

    .c-prose .workflow-container .title.pc {
      display: none;
    }

    .c-prose .workflow-container .pink {
      background: linear-gradient(to bottom, #ff9a9e, #ff7e7e);
    }

    .c-prose .workflow-container .orange {
      background: linear-gradient(to bottom, #ffbc8f, #ffa372);
    }

    .c-prose .workflow-container .yellow {
      background: linear-gradient(to bottom, #ffe082, #ffcb52);
    }

    .c-prose .workflow-container .step {
      border: solid 1px #ccc;
      color: #ccc;
    }

    .c-prose .workflow-container ul.steps {
      list-style: none;
      padding: 0;
      margin: 0;
      position: relative;
    }

    .c-prose .workflow-container .steps li {
      display: flex;
      align-items: center;
      border-radius: 4px;
      margin-bottom: 6px;
      min-height: 60px;
      padding: 10px;
      box-sizing: border-box;
    }

    .c-prose .workflow-container .production {
      background-color: #f7d3d3;
      border: 1px solid #f7d3d3;
    }

    .c-prose .workflow-container .business {
      background-color: #f8cdba;
      border: 1px solid #f8cdba;
    }

    .c-prose .workflow-container .output {
      background-color: #fcecb8;
      border: 1px solid #fcecb8;
    }

    /* 吹き出しのツノ */
    .c-prose .workflow-container .output::before {
      content: "";
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translateY(-50%);
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent;
      border-right: 10px solid #fcecb8;
    }

    /* 無料相談の赤い線 */
    .c-prose .workflow-container .free-limit-line {
      border-top: 2px solid #ff4b4b;
      color: #ff4b4b;
      font-size: 0.8em;
      font-weight: bold;
      text-align: right;
      padding-top: 5px;
      margin: 20px -10px 10px -10px;
      position: relative;
    }

    .c-prose.flow .youtube {
      width: 80%;
    }


    @media (max-width: 768px) {
      .c-prose .workflow-container {
        display: flex;
        gap: 0px;
        padding: 20px 0;
      }

      .c-prose .workflow-container .column {
        flex: 1;
        min-width: 0;
      }

      .c-prose .workflow-container .title {
        min-height: 130px;
        font-size: 1em;
      }

      .c-prose .c-prose .workflow-container .title.pc {
        display: block;
      }

      .c-prose .workflow-container .steps li {
        line-height: 1.3;
        height: 70px;
      }

    }

    .c-prose.flow .image-text-container {
      display: flex;
      gap: 30px;
      align-items: flex-start;
    }

    .c-prose.flow .left-column {
      width: 400px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .c-prose.flow .left-column img {
      width: 100%;
      height: auto;
      display: block;
    }

    .c-prose.flow .left-column .youtube iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
      height: auto;
      border: 0;
    }

    .c-prose.flow .text {
      flex: 1;
      line-height: 1.8;
    }

    @media (max-width:768px) {

      .c-prose.flow .image-text-container {
        flex-direction: column;
      }

      .c-prose.flow .left-column {
        width: 100%;
      }

      .c-prose.flow .text {
        width: 100%;
      }
    }

/* ------------------------------------------
   sample
------------------------------------------ */

    .c-prose.sample div.machine-image {
      text-align: center;
      margin: 20px 0;
    }

    .c-prose.sample .machine-image img {
      max-width: 100%;
      height: auto;
    }

    .c-prose.sample .machine-image img.w30 {
      width: 30%;
    }

    .c-prose.sample .machine-image img.w36 {
      width: 36%;
    }

    .c-prose.sample .machine-image img.w40 {
      width: 40%;
    }

    .c-prose.sample .machine-image img.w50 {
      width: 50%;
    }


    @media (max-width: 768px) {

      .c-prose.sample .machine-image img.w30,
      .c-prose.sample .machine-image img.w36,
      .c-prose.sample .machine-image img.w40,
      .c-prose.sample .machine-image img.w50 {
        width: 80%;
      }

    }

/* ------------------------------------------
   recruit
------------------------------------------ */

      .c-prose.recruit section {
        padding: 40px 0;
      }

      @media(max-width:768px) {
        .c-prose.recruit .recruit section {
          padding: 70px 0;
        }
      }

      .c-prose.recruit h2 {
        margin: 30px 0;
        text-align: left;
      }

      .c-prose.recruit h3::before {
        background: none;
      }

      .c-prose.recruit h3::after {
        background: none;
      }

.c-prose.recruit .info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 60px;
}

.c-prose.recruit .info-table th {
  width: 240px;
  background: #f6f6f6;
  padding: 18px;
  text-align: left;
  border: 1px solid #ddd;
  vertical-align: top;
}

.c-prose.recruit .info-table td {
  padding: 18px;
  border: 1px solid #ddd;
  line-height: 1.8;
}

.c-prose.recruit .info-table td ul {
  margin: 0;
}

@media (max-width: 768px) {
  .c-prose.recruit .info-table,
  .c-prose.recruit .info-table tbody,
  .c-prose.recruit .info-table tr,
  .c-prose.recruit .info-table th,
  .c-prose.recruit .info-table td {
    display: block;
    width: 100%;
  }

  .c-prose.recruit .info-table {
    margin-top: 40px;
  }

  .c-prose.recruit .info-table tr {
    margin-bottom: 24px;
    border: 1px solid #ddd;
  }

  .c-prose.recruit .info-table th {
    width: auto;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 14px 16px;
    background: #f6f6f6;
  }

  .c-prose.recruit .info-table td {
    border: none;
    padding: 16px;
  }

  .c-prose.recruit .info-table td ul {
    margin: 0;
    padding-left: 1.2em;
  }
}

/* Hero */
.c-prose.recruit .recruit-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  min-height: 700px;
}

.c-prose.recruit .recruit-hero img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.c-prose.recruit .recruit-hero__content {
  padding: 80px;
}

.c-prose.recruit .sub-title {
  color: #e67e22;
  font-weight: bold;
  letter-spacing: .15em;
}

.c-prose.recruit .recruit-hero h2 {
  font-size: 3em;
  margin: 25px 0;
}

.c-prose.recruit .recruit-hero h2::before,
.c-prose.recruit .recruit-hero h2::after {
  background: none;
  margin-left: 0;
}

.c-prose.recruit .recruit-hero p {
  line-height: 2;
}

@media (max-width: 768px) {
  .c-prose.recruit .recruit-hero h2 {
    font-size: 1.8em;
  }

  .c-prose.recruit .recruit-hero {
    grid-template-columns: 1fr;
  }

  .c-prose.recruit .recruit-hero img {
    height: 350px;
  }

  .c-prose.recruit .recruit-hero__content {
    padding: 40px 20px;
  }
}

/* メッセージ */
.c-prose.recruit .recruit-message {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0;
}

.c-prose.recruit .recruit-message-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.c-prose.recruit .recruit-message-content .text {
  width: min(1200px, 92%);
  margin: auto;
  flex: 1;
}

.c-prose.recruit .recruit-message-content .image {
  flex: 1;
}

.c-prose.recruit .recruit-message-content .image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .c-prose.recruit .recruit-message-content {
    flex-direction: column;
    gap: 30px;
  }
}

/* 大王製作所を知る */
.c-prose.recruit .recruit-company .company-message {
  margin-bottom: 60px;
}

.c-prose.recruit .company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.c-prose.recruit .company-grid article {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.c-prose.recruit .company-grid img {
  width: 100%;
  border-radius: 0;
  padding: 8px;
  /*
      aspect-ratio: 16/9;
      object-fit: cover;
  */
}

.c-prose.recruit .company-grid h3 {
  padding: 0px 30px 10px;
  margin-bottom: 0;
}

.c-prose.recruit .company-grid p {
  padding: 0 30px 30px;
  line-height: 1.8;
  margin-top: 0;
}

@media(max-width:768px) {
  .c-prose.recruit .company-grid {
    grid-template-columns: 1fr;
  }
}

/* 仕事内容 , 研修制度 */
.c-prose .training-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.c-prose .training-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.c-prose.recruit .training-card img {
  width: 80%;
  aspect-ratio: 1 / 1; 
  object-fit: cover;   
  display: block;
}

.c-prose .training-card .text-box {
  margin-top: 16px;
}

.c-prose .training-card .text-box p {
  text-align: left;
}

.c-prose .training-card .text-box ul {
  margin: 0;
  padding: 0 3px;
  text-align: left;
}

.c-prose .training-card .text-box li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  line-height: 1.8;
  color: #555;
  font-size: 0.95em;
}

.c-prose .training-card .text-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  transform: translateY(-50%);
}

.c-prose .training-card .text-box li:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .c-prose .training-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .c-prose .training-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .c-prose .training-card .training-card {
    padding: 25px 20px;
  }

  .c-prose .training-card .training-card img {
    width: 80%;
  }
}

/* 求める人物像・社風 */
.c-prose.recruit .culture {
  padding: 30px 0;
}

.c-prose.recruit .culture .message-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.c-prose.recruit .culture .message-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  box-sizing: border-box;
}

.c-prose.recruit .culture .message-box h3 {
  margin: 0 0 15px;
  color: #333;
  font-size: 1.3em;
}

.c-prose.recruit .culture .message-box p {
  margin: 0;
  line-height: 1.9;
  color: #555;
}

@media (max-width: 1024px) {
  .c-prose.recruit .culture .message-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .c-prose.recruit .culture .message-box {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .c-prose.recruit .culture {
    padding: 20px 0;
  }

  .c-prose.recruit .culture .message-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .c-prose.recruit .culture .message-box {
    padding: 20px;
  }

  .c-prose.recruit .culture .message-box h3 {
    font-size: 1.15em;
    margin-bottom: 12px;
  }

  .c-prose.recruit .culture .message-box p {
    line-height: 1.8;
  }
}

/* 働く環境 */
/* 福利厚生・待遇 */
.c-prose.recruit .working-conditions td ul {
  margin-top: 0;
}

.c-prose.recruit .working-conditions .time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 20px 0;
}

.c-prose.recruit .working-conditions .time-grid div {
  padding: 0px 16px;
  font-weight: 600;
  margin: 0;
}

.c-prose.recruit .working-conditions .salary-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  width: 50%;
}

.c-prose.recruit .working-conditions .salary-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 18px;
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .c-prose.recruit .working-conditions .time-grid {
    grid-template-columns: 1fr;
  }

  .c-prose.recruit .working-conditions .salary-list {
    width: 80%;
  }
}

/* 人員構成 */
.c-prose.recruit .company-data h3::before {
  background: none;
}

/* オレンジ線 */
.c-prose.recruit .company-data h3::after {
  content: "";
  display: block;
  width: 15%;
  margin-top: 8px;
  border-bottom: 2px dotted #f39800;
  /* オレンジ色のドット線 */
}

.c-prose.recruit .company-data {
  padding: 30px 0;
}

/* 社員旅行 */
.c-prose.recruit .recruit-trip .trip-message {
  margin-bottom: 60px;
}

.c-prose.recruit .trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.c-prose.recruit .trip-grid article {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  text-align: center;
  padding:8px;
}

.c-prose.recruit .trip .video_img2023 {
      list-style: none;
      display: inline-block;
      width: 100%;
      background-color: #fff;
}

.c-prose.recruit .trip-grid img {
  width: 85%;
  border-radius: 0;
}

.c-prose.recruit .trip .video_img2024 {
      list-style: none;
      display: inline-block;
      width: 85%;
      background-color: #fff;
}

.c-prose.recruit .trip .video_img2025 {
      padding-top:10px;
      margin-bottom: 0;
      list-style: none;
      display: inline-block;
      width: 98%;
}

.c-prose.recruit .trip button#playButton {
    margin-left: 42%;
    width: 40%;
    visibility: hidden;
}

.c-prose.recruit .trip-grid h3 {
  padding: 0px 30px 10px;
  margin-top: 0;
  margin-bottom: 0;
}

.c-prose.recruit .trip-grid p {
  padding: 0 30px 0px;
  line-height: 1.8;
  margin-top: 0;
}

@media(max-width:768px) {
  .c-prose.recruit .trip-grid {
    grid-template-columns: 1fr;
  }
}

  @media screen and (max-width: 600px) {
    .c-prose.recruit button#playButton {
      margin-left: 60%;
    }
  }

 /* 青少年雇用情報 */
.c-prose.recruit .employment-sheet {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.c-prose.recruit .employment-sheet .lead {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* 社員紹介 */
.c-prose.recruit .info-menber-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.c-prose.recruit .info-member {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.c-prose.recruit .info-member img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.c-prose.recruit .info-member strong {
  display: block;
  margin-top: 24px;
  font-size: 2em;
  color: #0f4c81;
}

.c-prose.recruit .info-member span {
  display: block;
  margin: 8px 0 16px;
  color: #666;
}

.c-prose.recruit .info-member p {
  padding: 0 24px 24px;
  margin: 0;
  line-height: 1.8;
}

@media(max-width:768px) {
  .c-prose.recruit .info-menber-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .c-prose.recruit .info-menber-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

  .c-prose.recruit .info-member strong {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .c-prose.recruit .info-menber-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

.c-prose.recruit .info-member strong {
    font-size: 1.75em;
}

  .c-prose.recruit .info-member p {
    padding: 0 20px 20px;
  }
}

/* 募集情報 */
.c-prose.recruit .recruit-link {
  padding: 80px 0;
}

.c-prose.recruit .link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.c-prose.recruit .link-grid a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: 40px;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: .3s;
}

.c-prose.recruit .link-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  transition: .3s;
}

.c-prose.recruit .link-grid a:hover {
  transform: translateY(-6px);
}

.c-prose.recruit .link-grid a:hover::before {
  background: rgba(0,0,0,.3);
}

.c-prose.recruit .link-grid h3,
.c-prose.recruit .link-grid p {
  position: relative;
  z-index: 1;
  color: #fff;
}

.c-prose.recruit .link-grid h3 {
  font-size: 2em;
  margin-bottom: 10px;
}

.c-prose.recruit .link-grid p {
  margin: 0;
  line-height: 1.8;
}

.c-prose.recruit .link-grid .new-graduate {
  background-image: url("../../../assets/img/front/recruit/recruit/new-graduate.png");
}

.c-prose.recruit .link-grid .career {
  background-image: url("../../../assets/img/front/recruit/recruit/career.png");
}

@media (max-width: 768px) {
  .c-prose.recruit .link-grid {
    grid-template-columns: 1fr;
  }

  .c-prose.recruit .link-grid a {
    min-height: 240px;
    padding: 30px;
  }

  .c-prose.recruit .link-grid h3 {
    font-size: 1.6em;
  }
}

/* ------------------------------------------
   new-graduate
------------------------------------------ */

/* hero */
.c-prose.recruit .graduate-hero {
  margin: 0;
}

.c-prose.recruit .hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.c-prose.recruit .hero-image img {
  display: block;
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.c-prose.recruit .hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.c-prose.recruit .hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 600px;
  color: #fff;
  z-index: 2;
}

.c-prose.recruit .hero-text span {
  display: inline-block;
  color: #f39c12;
  font-weight: bold;
  letter-spacing: .2em;
}

.c-prose.recruit .hero-text h1 {
  margin: 20px 0;
  font-size: 3em;
  line-height: 1.4;
  color: #fff;
}

.c-prose.recruit .hero-text p {
  line-height: 2;
  color: #fff;
}

@media (max-width: 768px) {
  .c-prose.recruit .hero-image img {
    height: 350px;
  }

  .c-prose.recruit .hero-text {
    left: 30px;
    right: 30px;
    max-width: none;
  }

  .c-prose.recruit .hero-text h1 {
    font-size: 2em;
  }

  .c-prose.recruit .hero-text p {
    font-size: 0.95em;
    line-height: 1.8;
  }
}

/* message */
.c-prose.recruit .message p {
  margin: 0;
  line-height: 2;
}

.c-prose.recruit .training {
  background: #f7f7f7;
}

/* 求める人物像 */
.c-prose.recruit .person-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.c-prose.recruit .person-grid article {
  padding: 20px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.c-prose.recruit .person-grid article h3 {
  margin-top: 8px;
  padding-bottom: 0;
}

@media(max-width:768px) {
  .c-prose.recruit .person-grid {
    grid-template-columns: 1fr;
  }
}

/* 募集要項 , 会社説明会 , 応募・選考について */
.c-prose.recruit .recruit-guideline {
  margin: 80px 0;
  padding: 0 ;
}

.c-prose.recruit .section-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.c-prose.recruit .guideline-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-prose.recruit .guideline-item {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.c-prose.recruit .guideline-item h3 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
}

/* グレー線 */
.c-prose.recruit .guideline-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}

/* オレンジ線 */
.c-prose.recruit .guideline-item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 60px;
  height: 3px;
  background: #f58220;
  border-radius: 999px;
}

.c-prose.recruit .guideline-item p {
  line-height: 2;
  margin-bottom: 15px;
}

.c-prose.recruit .guideline-item ul {
  margin: 20px 0;
  padding-left: 20px;
}

.c-prose.recruit .guideline-item li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.c-prose.recruit .contact {
  margin-top: 25px;
  text-align: center;
}

.c-prose.recruit .btn-contact {
  display: inline-block;
  margin-top: 15px;
  padding: 14px 32px;
  background: #f28c28;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: .3s;
}

.c-prose.recruit .btn-contact:hover {
  background: #d86e09;
}

.c-prose.recruit .note {
  margin-top: 15px;
  font-size: .9em;
  color: #666;
}

@media(max-width:768px) {
  .c-prose.recruit .recruit-guideline {
    margin: 50px auto;
    padding: 0 16px;
  }

  .c-prose.recruit .guideline-item {
    padding: 25px;
  }

  .c-prose.recruit .section-title {
    font-size: 1.7em;
    margin-bottom: 35px;
  }

  .c-prose.recruit .guideline-item h3 {
    font-size: 1.2em;
  }

}

/* 募集職種 */
.c-prose.recruit .recruit-job {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.c-prose.recruit .section-text {
  max-width: 800px;
  margin: 0 0 40px;
  line-height: 2;
}

.c-prose.recruit .job-table-wrap {
  overflow-x: auto;
}

.c-prose.recruit .job-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  background: #fff;
}

.c-prose.recruit .job-table th,
.c-prose.recruit .job-table td {
  border: 1px solid #ddd;
  padding: 20px;
  vertical-align: top;
}

.c-prose.recruit .job-table thead th {
  text-align: center;
}

.c-prose.recruit .job-table tbody th {
  width: 180px;
  background: #fafafa;
}

.c-prose.recruit .job-table ul {
  margin: 0;
  padding-left: 20px;
}

.c-prose.recruit .job-table li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.c-prose.recruit .job-place {
  display: block;
  margin-top: 10px;
  font-size: .85em;
  color: #666;
  font-weight: normal;
}

.c-prose.recruit .status {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: .8em;
  font-weight: bold;
}

.c-prose.recruit .status.job-open {
  background: #27ae60;
  color: #fff;
}

.c-prose.recruit .status.job-close {
  background: #999;
  color: #fff;
}

.c-prose.recruit .job-note {
  margin-top: 50px;
  padding: 35px;
  background: #f8f8f8;
  border-radius: 10px;
}

.c-prose.recruit .job-note h3 {
  color: #f28c28;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 5px solid #f28c28;
}

.c-prose.recruit .job-note p {
  line-height: 2;
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .c-prose.recruit .recruit-job {
    margin: 50px auto;
    padding: 0 16px;
  }

  .c-prose.recruit .job-table {
    font-size: 14px;
    min-width: 800px;
  }

  .c-prose.recruit .job-table th,
  .c-prose.recruit .job-table td {
    padding: 15px;
  }

  .c-prose.recruit .job-note {
    padding: 25px;
  }
}

/* フロー */
.c-prose.recruit .selection-flow {
  margin: 80px 0;
  padding: 0 20px;
}

.c-prose.recruit .flow-item {
  display: flex;
  gap: 25px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding:  0 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.c-prose.recruit .flow-item h3 {
  margin: 8px 0 10px;
  font-size: 1.2em;
  line-height: 2;
  padding: 0;
  width:15%;
}

.c-prose.recruit .flow-item p {
  margin: 0;
  line-height: 1.8;
}

.c-prose.recruit.new-graduate .flow-arrow {
  text-align: center;
  font-size: 28px;
  color: #1c61f5;
  margin: 15px 0;
}

.c-prose.recruit.career .flow-arrow {
  text-align: center;
  font-size: 28px;
  color: #f58220;
  margin: 15px 0;
}

.c-prose.recruit .flow-note {
  margin-top: 40px;
  padding: 20px;
  border-radius: 8px;
  line-height: 1.8;
}

@media (max-width:768px) {
  .c-prose.recruit .flow-item {
    flex-direction: column;
    text-align: center;
  }
.c-prose.recruit .flow-item h3 {
  width:100%;
}
.c-prose.recruit .flow-item p {
  margin-bottom: 16px;
}
}

/* entry */
.c-prose.recruit .entry {
  text-align: center;
}

.c-prose.recruit .entry p {
  font-size: 1.7em;
  font-weight: 700;
}

.c-prose.recruit .btn-entry {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 45px;
  background: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 50px;
}

/* ------------------------------------------
   new-graduate , career
------------------------------------------ */

/* 求める人物像 */
.c-prose.recruit .person {
  padding: 60px 0;
}

.c-prose.recruit .person-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.c-prose.recruit .person-card {
  display: flex;
  align-items: center;
  gap: 20px;

  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.c-prose.recruit .icon-box {
  flex-shrink: 0;
}

.c-prose.recruit .icon-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 0;
  padding-left: 8px;

}

.c-prose.recruit .text-box {
  flex: 1;
}

.c-prose.recruit .text-box h3 {
  margin: 0 0 8px;
  font-size: 1.25em;
  color: #333;
}

.c-prose.recruit .text-box p {
  margin: 0;
  line-height: 1.7;
  color: #666;
}

@media (max-width: 991px) {
  .c-prose.recruit .person-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .c-prose.recruit .person-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .c-prose.recruit .person-card {
    display: flex;
    flex-direction: row;   /* 横並びのまま */
    align-items: center;
    gap: 15px;
    text-align: left;
    padding: 20px;
  }

  .c-prose.recruit .icon-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    padding-left: 0;
  }

  .c-prose.recruit .text-box h3 {
    font-size: 1.1em;
  }

  .c-prose.recruit .text-box p {
    font-size: 0.9em;
    line-height: 1.6;
  }
}

/* 部門紹介 */
.c-prose.recruit .organization {
  max-width: 1200px;
  margin: 80px auto;
  padding: 30px 0px;
}

.c-prose.recruit .organization .section-messege {
  margin-bottom: 50px;
}

.c-prose.recruit .organization .section-messege p {
  margin: 20px 0;
  line-height: 2;
  color: #666;
  text-align: left;
}

.c-prose.recruit .organization .department-title {
  padding: 25px;
  /* color:#fff; */
}

.c-prose.recruit .organization .department-title h3 {
  margin: 0;
  font-size: 1.5em;
}

.c-prose.recruit .organization .department-title span {
  display: block;
  margin-top: 8px;
  opacity: .9;
}

.c-prose.recruit .organization dt::before {
  /* color: #e67e22; */
  content: "";
}

@media(max-width:768px) {
  .c-prose.recruit .organization {
    margin: 50px auto;
    padding: 0 16px;
  }

  .c-prose.recruit .organization .department-title {
    padding: 20px;
  }

}

.c-prose.recruit .organization .recruit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.c-prose.recruit .organization .recruit-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.c-prose.recruit .organization .recruit-card h3 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.2em;
  text-align: center;
}

.c-prose.recruit .organization .recruit-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #f58220;
}

.c-prose.recruit .organization .recruit-card ul {
  margin: 0;
  padding-left: 20px;
}

.c-prose.recruit .organization .recruit-card li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.c-prose.recruit .organization .recruit-card p {
  line-height: 1.9;
}
