@charset "UTF-8";
/*-------------------------------------------
Common
-------------------------------------------*/
.page {
    padding-top: 88px;
    background-color: #fff;
}

.page a {
  color: #333;
}

.page p {
  color: #333;
}

.l-container-1320 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.page section {
  padding: 50px 16px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-text {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 29px;
}

.page h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #16459C;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}

.page h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #16459C;
  margin: 16px auto 0;
}

.page-company h3 {
	text-align:left;
}
.page-company h3:after {
	display:none;
}

/* ボタン */
.page .btn-line {
  background: #16459C;
  border:none;
  padding: 12px 30px;
}

.page .btn-line a {
  color: #FFF;
}

.btn-line a::after {
  width: 14px;
  height: 14px;
  right: 3px;
}

/* ===== ヘッダー ===== */
.page #header {
  background: #000;
}

.page .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1000;
}

.page .header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.page .header a,.page .header p {
  color: #fff;
}

/* メインビジュアル */
.page-mv {
  position: relative;
  margin-bottom: 50px;
}

.page-mv img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-family: YuMincho;
  font-size: 5rem;
}

/* パンくずリスト */
.breadcrumb {
  margin-bottom: 38px;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: "/";
  margin: 0 8px;
  color: #999;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* お問い合わせ */
.page .contact {
  background: #000;
}

.page .contact a {
  color: #FFF;
}

/*-------------------------------------------
事業案内
-------------------------------------------*/
/* リード文 */
.business-lead h3,.strength-lead h3,.business-service .sub  {
  color: #333;
  font-family: YuMincho;
  font-size: 3rem;
  font-weight: 800;
}

.business-lead h3::after,.strength-lead h3::after {
  display: none;
}

.business-lead {
  padding-bottom: 70px;
}

/* サービス */
.business-service {
  background: #F6F9FF;
}

.business-service .sub {
  text-align: center;
  margin-bottom: 24px;
}

.business-service h4 {
  font-size: 2rem;
}

.service-item {
  background-color: #fff;
  padding: 15px;
  text-align: center;
  gap: 14px;
  display: grid;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-img {
  background: #ddd;
  aspect-ratio: 4 / 3;
}

/* 製造フロー */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-item {
  border: 2px solid #1f4bb8;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-label {
  display: inline-block;
  background: #e6efff;
  color: #1f4bb8;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.process-item:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: #1f4bb8;
  font-size: 20px;
}

/* 解決事例 */
.business-case span {
  text-align: center;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.case-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 12px;
  margin-bottom: 40px;
  align-items: stretch;
  padding: 20px;
  border-radius: 5px;
  background: #16459C;
}


.case-box {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  position: relative;
}

.case-box.right {
  display: flex;
  flex-direction: column;   
  justify-content: center; 
  align-items: center;     
}

.case-title {
  font-size: 1.8rem;
  color: #1f4bb8;
  margin-bottom: 8px;
}

.case-sub {
  font-weight: bold;
  padding-bottom: 16px;
  position: relative;
  font-size: 2rem;
}

.case-sub::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;  
  bottom: 0;
  height: 2px;
  background-color: #16459C;
}

.case-title,.case-sub,.case-strong {
  text-align: center;
}

.case-strong {
  color: #1f4bb8;
  font-size: 2rem;
  margin-bottom: 12px;
}

.case-text {
  margin-top: 16px;
}

.case-arrow {
  position: relative;
}

.case-arrow::before {
  content: "▶";
  font-size: 24px;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*-------------------------------------------
赤羽の強み
-------------------------------------------*/
/* リード文 */
.strength-lead {
  display: flex;
}

.strength-lead .lead-text {
  max-width: 642px;
}

.lead-img img {
  width: 366px;
  margin-right: 24px;
}

/* 6つの強み */
.page .strength-image h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  font-size: 3.2rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  color: #FFF;
}

.page .strength-image h4::after {
  display: none;
}

.page .strength .section-title {
  margin: 0;
  color: #FFF;
}

.page .strength .section-title::after {
  display: none;
}

.page .strength .section-lead {
  color: #FFF;
}

/* ベテラン技術者による...&工程を考える力 */
.strength-detail {
  margin: 80px auto 0;
}

.strength-detail h3,.strength-quality h3{
  color: #FFF;
  padding-bottom: 10px;
}

.strength-detail h3::after,.strength-quality h3::after {
  display: none;
}

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 80px;
}

.detail-row.reverse {
  direction: rtl;
}

.detail-row.reverse * {
  direction: ltr;
}

.detail-row img,.strength-quality img {
  width: 460px;
  height: auto;
}

.detail-title {
  background: #16459C;
  color: #fff;
  padding: 10px 16px;
  margin-bottom: 16px;
}

.strength-flow h4 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 2rem;
}

.strength-flow .border-blue {
  border: #16459C solid 2px;
  padding: 45px;
  gap: 19px;
  display: grid;
  text-align: center;
}

.strength-flow .border-blue img {
  width: 720px;
  margin: 0 auto;
}

.strength-flow .border-blue span {
  font-size: 1.8rem;
  font-weight: 700;
}

.quality-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin: 0 auto 80px;
}

.quality-title {
  background: #16459C;
  color: #fff;
  padding: 10px 16px;
  margin-bottom: 16px;
}

.quality-text {
  text-align: center;
}

.quality-text p {
  text-align: left;
}

.policy {
  display: grid;
  gap: 24px;
}

.policy-list {
  border: 1px solid #1f3c88;
  padding: 30px 40px;
  margin: 8px auto 0;
  max-width: 800px;
  list-style-position: inside;
}

.policy-list li {
  text-align: left;   
}

.policy-title {
  text-align: center;
  font-size: 2rem;
}
/*-------------------------------------------
加工実績
-------------------------------------------*/

/* ===== 説明 ===== */
.work-desc {
  padding: 0 0 50px;
}

.work-desc dl {
  max-width: 900px;
  margin: 0 auto;
}

.work-desc dt {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 24px;
  position: relative;
  padding-bottom: 8px;
}

.work-desc dt::after {
  content: "";
  display: block;
  width: 220px;
  height: 2px;
  background-color: #16459C;
  margin-top: 4px;
}

.work-desc dd {
  line-height: 1.8;
}

/* ===== 製品紹介 ===== */
.work-gallery {
  background: #000;
  padding: 80px 0;
}

.work-gallery h3 {
  color: #fff;
  text-align: left;
  margin-bottom: 45px;
}

.work-gallery h3::after {
  display: none;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.work-list li img {
  width: 100%;
  display: block;
}

.work-list li p {
  color: #fff;
  font-size: 1.4rem;
  margin-top: 8px;
}

/* ===== モーダル ===== */
.works .equip-card {
    background: none;
}

.works .equip-info .name {
  color: #FFF;
}
/*-------------------------------------------
設備紹介
-------------------------------------------*/
.group-block h6,
.equipment-list h6 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

/* 見出しスタイル */
.main-heading {
    font-size: 2.4rem;
    color: #16459C;
    border-bottom: 2px solid #16459C;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

.section-primary h3,.section-list h3,.company h3 {
  text-align: left;
  padding: 0 0 10px 0;
  color: #333;
}

.section-primary h3::after,.section-list h3::after,.company h3::after {
  display: none;
}

.sub-heading {
    font-size: 1.8rem;
    color: #16459C;
    border-left: 5px solid #16459C;
    padding-left: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.group-title {
    font-size: 1.5rem;
    color: #16459C;
    margin-top: 20px;
}

/* 主要設備 */
.primary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px;
    margin-bottom: 60px;
}

.item-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.item-header .bar {
    width: 15px;
    height: 37px;
    background: #16459C;
    margin-right: 10px;
    display: inline-block;
}

.item-flex {
  display: flex;
  gap: 8px;
}

.item-content img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.item-text p {
    font-size: 14px;
    margin-bottom: 5px;
}

/* 設備一覧グリッド */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 200px);
  gap: 15px;
  justify-content: start;
  margin-bottom: 30px;
}

.equip-card {
    background: #fff;
}

.equip-img {
    background: #eee;
    width: 100%;
    overflow: hidden;
}

.equip-img img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s;
}

.primary-item .equip-img img {
  width: 240px;
    height: 200px;
}

.equip-card:hover .equip-img img {
    transform: scale(1.05);
}

.equip-info {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 13px;
}

.equip-info .name {
    font-weight: bold;
    color: #333;
}

.equip-info .count {
    white-space: nowrap;
    margin-left: 10px;
}

.equipment-list--five {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

/* モーダル全体の背景 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ポップアップの箱 */
.modal-content {
    background-color: #000;
    color: #fff;
    padding: 40px;
    width: 90%;
    max-width: 1040px;
    position: relative;
}

/* 閉じるボタン */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    color: #FFF;
}

/* 中身のレイアウト */
.modal-body {
    display: flex;
    gap: 30px;
}

.modal-left {
    flex: 1;
    margin: auto;
}

.modal-left img {
    width: 454px;
    height: auto;
    object-fit: cover;
}

.modal-right {
    flex: 1;
}

.modal-right table {
    width: 100%;
    border-collapse: collapse;
}

.modal-right th, .modal-right td {
    padding: 15px 10px;
    text-align: left;
    border-bottom: 1px solid #666;
}

.modal-right th {
    width: 30%;
    font-weight: normal;
}
.modal-table {
  display: none;
}

@media (max-width: 1100px) {
    .equipment-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

/*-------------------------------------------
会社概要
-------------------------------------------*/
/* 代表挨拶 */
.greeting-content {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.greeting-image img {
  width: 353px;
}

.greeting-image .caption {
  margin-top: 18px;
}

.greeting-image .caption .post {
  font-family: YuMincho;
  font-size: 2rem;
  font-weight: 600;
}

.greeting-image .caption .name {
  font-family: YuMincho;
  font-size: 2.4rem;
  font-weight: 600;
  margin-left: 20px;
}

.greeting-text {
  width: 630px;
}

.greeting-text span {
  font-size: 2.8rem;
  font-family: YuMincho;
  font-weight: 800;
	margin: 40px 0;
	display: block;
}

/* 企業理念 */
.philosophy {
  padding: 30px;
}

.philosophy-box {
  display: flex;
  justify-content: center;
}

.catchphrase {
  font-weight: 700;
  font-size: 2.4rem;
}

.company-policy ul {
  width: 750px;
  margin: 0 auto;
}

.company-policy li {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 700;
}

.company-access-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.company-access-flex image {
  width: 398px;
}

.company-access-address {
  margin-bottom: 29px;
}

.profile-table, .history-table {
    width: 100%;
    border-collapse: collapse;
}

.profile-table th, .profile-table td,
.history-table th, .history-table td {
    border-bottom: 1px solid #eee;
    padding: 12px;
    text-align: left;
}

.profile-table th {
    width: 30%;
    background-color: #f4f4f4;
}

.history-table th {
    width: 20%;
    font-weight: bold;
}
/*-------------------------------------------
新着一覧
-------------------------------------------*/
.news-list-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.news-container {
    border-top: 1px solid #ccc;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.news-item time {
    flex: 0 0 120px;
    color: #666;
}

.category-label {
    flex: 0 0 80px;
    background-color: #004098;
    color: #fff;
    text-align: center;
    padding: 5px 11px;
    font-size: 12px;
    margin-right: 20px;
}

.news-link {
    color: #333;
    text-decoration: none;
    flex: 1;
}

.news-link:hover {
    text-decoration: underline;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.page-number {
    display: inline-block;
    padding: 5px 12px;
    text-decoration: none;
    color: #333;
}

.page-number.current {
    background-color: #004098;
    color: #fff;
}
/*-------------------------------------------
新着詳細
-------------------------------------------*/
.single .breadcrumb {
  margin-top: 25px;
}

.two-column h3 {
  font-size: 1.6rem;
  color: #333;
  text-align: left;
  padding-bottom: 10px;
}

.two-column h3::after {
  display: none;
}

/* 詳細ページ・2カラム */
.two-column {
    display: flex;
    gap: 50px;
}

.main-content {
    flex: 1;
}

.sidebar {
    width: 20%;
}

.single .btn-line {
  text-align: center;
  display: flex;
  width: 280px;
  margin: 70px auto 30px;
}

.post-title {
    font-size: 24px;
    margin: 15px 0 30px;
    text-align: left; 
}

.post-image {
    width: 100%;
    margin: 30px 0;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a, .pagination .current {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-color);
}

.pagination .current {
    background: #16459C;
    color: #fff;
    border-color: var(--main-blue);
}

/* サイドバー */
.widget-title {
    font-size: 16px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.side-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.side-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.side-list a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
}
/*-------------------------------------------
採用情報
-------------------------------------------*/
.recruit {
  background-color: #F6F9FF;
}

.recruit-intro .box {
  margin: 0 auto;
  width: 623px;
  font-size: 1.8rem;
  font-weight: 700;
}

.catch {
  font-size: 2.6rem;
  margin-bottom: 14px;
}

.message-flex {
  display: flex;
  gap: 16px;
  background: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
}

.message-flex img {
  width: 395px;
}

.message-text {
  padding: 16px;
  display: grid;
  align-items: center;
}

/* グリッドレイアウト */
.grid-3col {
    display: flex;
   	flex-wrap:wrap;
    justify-content:center;
	gap:20px;
}
.grid-3col>* { max-width:calc( 100% / 3 ) }
.card {
    background: #fff;
    border: 1px solid var(--border-gray);
    padding: 11px;
    text-align: center;
}

.grid-3col .card img {
  width: 100%;
  height: 220px; /* お好みで調整 */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.job-card {
  display: flex;
}

.requirements-section h4 {
  padding-bottom: 11px;
  border-bottom: 2px solid #1f4fa3;
}

.requirements-section .card {
  padding: 0;
}

.requirements-section .card p {
  padding: 22px;
  font-weight: 700;
  text-align: left;
}

.job-card {
  display: flex;
  justify-content: center;   /* 2つのカードを中央寄せ */
  gap: 30px;
}

.card {
  background: #fff;          /* 白背景 */
  width: 320px;              /* カード幅（必要に応じて調整） */
  border: 1px solid #e5e5e5;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
	margin-bottom: 15px;
}

.card h4 {
	margin-bottom: 8px;
}

/* アコーディオン全体の枠組み */
.recruit-accordion {
    max-width: 800px;
    margin: 20px auto;
    font-family: sans-serif;
}

.accordion {
    border-top: 1px solid #ddd;
}

/* ヘッダー（ボタン） */
.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #16459C;
    border: none;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFF;
    transition: background-color 0.3s;
    text-align: left;
}

.accordion-header:hover {
    background: #16459C;
}

/* アイコン（+ / - の切り替え） */
.icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon::before,
.icon::after {
    content: "";
    position: absolute;
    background-color: #FFF; 
    transition: transform 0.3s;
}

/* 横棒 */
.icon::before {
    width: 100%;
    height: 2px;
    top: 9px;
    left: 0;
}

/* 縦棒（開いているときは回転して消える） */
.icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 9px;
}

.accordion-header.is-active .icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* コンテンツ部分 */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #fff;
}

/* 開いている状態 */
.accordion-content.is-open {
    max-height: 1000px; /* 十分な高さを指定 */
    padding: 20px 0;
}

/* 募集要項のテーブル（dl）のスタイル */
.recruit-table {
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
}

.recruit-table dt {
    width: 30%;
    font-weight: bold;
    padding: 15px 0;
    border-bottom: 1px dotted #ccc;
}

.recruit-table dd {
    width: 70%;
    margin-left: 0;
    padding: 15px 0;
    border-bottom: 1px dotted #ccc;
}

/* 1日のスケジュール */
.schedule-container {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.schedule-box {
    flex: 1;
    background: #fff;
    padding: 14px;
    border: 1px solid #eee;
}

.schedule-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.schedule-flex {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.schedule-image img {
    width: 267px;
    height: auto;
    object-fit: cover;
}

.schedule-list {
    flex: 1;
}

.schedule-list dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 38px 10px;
    font-size: 1.6rem;
}

.schedule-list dt {
    font-weight: normal;
    color: #333;
}

.schedule-list dd {
    margin: 0;
    color: #333;
}

.voice-container {
  display: flex;
  gap: 21px;
}

.voice-card {
  flex: 1;
  background: transparent;
}

.voice-img {
  margin-bottom: 20px;
}

.voice-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.voice-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.voice-info {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}

/* お問い合わせ */
.recruit .contact-section h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: #16459C;
  margin: 16px auto 0;
}

.contact-section .text {
  width: 488px;
  margin: 0 auto 50px;
}

/*-------------------------------------------
お問い合わせ
-------------------------------------------*/
.contact-section h3::after {
  display: none;
}

/* フォーム共通 */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.sub-title {
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.sub-title::before {
    content: '▶';
    color: var(--main-blue);
    margin-right: 10px;
    font-size: 0.8em;
}

.note {
    font-size: 13px;
    margin-bottom: 30px;
}

/* 入力フィールド */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 15px;
}

.required {
    color: #d00;
    margin-left: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #C0C0C0;
    background-color: #F8F8F8;
    box-sizing: border-box;
    font-size: 16px;
}

/* プライバシー・送信ボタン */
.privacy-policy {
    text-align: center;
    margin: 40px 0;
}

.privacy-link {
    display: block;
    color: #666;
    margin-bottom: 15px;
    text-decoration: underline;
}

.btn-submit {
    display: block;
    width: 320px;
    margin: 0 auto;
    background: #154599;
    color: #fff;
    padding: 18px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.btn-submit::after {
    content: '>';
    position: absolute;
    right: 20px;
}

/* 電話お問い合わせボックス */
.phone-box {
    background-color: #154599;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.phone-box-note {
    margin-bottom: 25px;
    font-weight: bold;
}

.phone-box p {
  color: #FFF;
}

.phone-numbers {
    background: #fff;
    color: #333;
    display: inline-block;
    padding: 20px 40px;
}

.num-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.tag {
    background: #000;
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
    font-weight: bold;
}

.number {
    font-size: 24px;
    font-weight: bold;
}

.single-main {
  margin-top: 80px;
}


/*-------------------------------------------
プライバシーポリシー
-------------------------------------------*/
.privacy-content h3,.facility-section h3 {
  text-align: left;
  color: #333;
  padding-bottom: 0;
}

.privacy-content h3::after,.facility-section h3::after {
  display: none;
}

.privacy-content h4 {
  font-size: 2rem;
  margin-top: 20px;
}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media (max-width: 768px) {
  /*-------------------------------------------
  共通
  -------------------------------------------*/
  /* ===== ヘッダー ===== */
  .page {
    padding-top: 23px;
  }

  .page .header {
    height: 69.5px;
  }

  /* ===== ページMV ===== */
  .page-mv {
    position: relative;
    height: 220px;
    margin-bottom: 0;
  }

  .page-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-title {
    font-size: 2.4rem;
    letter-spacing: 0.2em;
    text-align: center;
  }

  /* ===== パンくず ===== */
  .breadcrumb {
    padding: 10px 20px;
    font-size: 1.2rem;
  }
  
  /*-------------------------------------------
  事業案内
  -------------------------------------------*/  
  /* ===== リード文 ===== */
  .business-lead {
    padding-bottom: 40px;
  }

  .business-lead h3 {
    font-size: 2.2rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
  }

  .business-lead p {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  /* ===== サービス ===== */
  .business-service {
    padding: 50px 0;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-item {
    padding: 20px;
    gap: 12px;
  }

  .service-item h4 {
    font-size: 1.8rem;
  }

  .service-item p {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .service-img {
    aspect-ratio: 4 / 3;
  }

  /* ===== 製造フロー ===== */
  .process-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-item {
    padding: 20px;
    gap: 12px;
  }

  .step-label {
    font-size: 1.2rem;
    padding: 6px 14px;
    margin-bottom: 10px;
  }

  .process-item img {
    width: 44px;
    height: 44px;
  }

  .process-item h4 {
    font-size: 1.7rem;
  }

  .process-item p {
    font-size: 1.4rem;
    line-height: 1.7;
  }

    /* 横矢印（▶）を上書きして下向きに */
  .process-item:not(:last-child)::after {
    content: "▼";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -35px;
    transform: translateX(-50%);
    font-size: 22px;
    color: #1f4bb8;
  }

  /* ===== 解決事例 ===== */
  .business-case {
    padding: 50px 0;
  }

  .business-case span {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .case-row {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 0;
  }

  .case-arrow {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  /* 横向き矢印 → 下向き矢印に変更 */
  .case-arrow::before {
    content: "▼";
    font-size: 24px;
    color: #fff;
    position: static;   
    transform: none;
    display: block;
    margin: 10px auto;
  }

  .case-box {
    padding: 18px;
  }

  .case-title {
    font-size: 1.6rem;
  }

  .case-sub {
    font-size: 1.7rem;
    padding-bottom: 12px;
  }

  .case-sub::after {
    left: -12px;
    right: -12px;
  }

  .case-text,
  .case-text li {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .case-strong {
    font-size: 1.7rem;
  }

  /*-------------------------------------------
  赤羽の強み
  -------------------------------------------*/    
  /* リード文　*/
  .strength-lead {
    flex-direction: column;
    gap: 20px;
  }

  .lead-img img {
    width: 100%;
    margin-right: 0;
  }

  .strength-lead .lead-text {
    max-width: 100%;
  }

  .strength-lead .lead-text h3 {
    font-size: 2.2rem;
    line-height: 1.5;
  }


  /*　6つの強み　*/
  .page .strength-image h4 {
    font-size: 2rem;
    white-space: normal;
    padding: 0 10px;
  }

  .strength-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }


  /*　強み詳細（2カラム → 縦）*/
  .strength-detail {
    margin-top: 50px;
  }

  .detail-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
  }

  .detail-row.reverse {
    direction: ltr;
  }

  .detail-row img {
    width: 100%;
  }

  .detail-title {
    font-size: 1.8rem;
    padding: 10px 14px;
  }

  .detail-text p {
    font-size: 1.5rem;
    line-height: 1.8;
  }


  /*　フロー図 */
  .strength-flow h4 {
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .strength-flow .border-blue {
    padding: 16px;
  }

  .strength-flow .border-blue img {
    width: 100%;
  }

  .strength-flow .border-blue span {
    font-size: 1.5rem;
  }


  /* 品質 */
  .quality-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }

  .strength-quality img {
    width: 100%;
  }

  .quality-title {
    font-size: 2rem;
  }

  .quality-text {
    text-align: left;
  }

  .quality-text p {
    font-size: 1.5rem;
    line-height: 1.8;
  }


  /* 方針 */
  .policy {
    gap: 32px;
  }

  .policy-title {
    font-size: 1.8rem;
  }

  .policy-list {
    max-width: 100%;
    padding: 20px;
    font-size: 1.4rem;
  }
  /*-------------------------------------------
  加工実績
  -------------------------------------------*/ 
  /* ===== 説明 ===== */
  .work-desc {
    padding: 0 0 40px;
  }

  .work-desc dt {
    font-size: 1.6rem;
  }

  .work-desc dt::after {
    width: 120px;
  }

  .work-desc dd {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  /* ===== 製品紹介 ===== */
  .work-gallery {
    padding: 50px 0;
  }

  .work-gallery h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  /* PC:4カラム → SP:2カラム */
  .work-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .work-list li p {
    font-size: 1.3rem;
    text-align: center;
  }

  /* ===== equip-card（共通を活かして微調整） */
  .works .equip-info {
    justify-content: center;
  }

  .works .equip-info .name {
    font-size: 1.3rem;
    text-align: center;
  }

  /* ===== モーダル ===== */
  .works .modal-content {
    padding: 20px;
  }

  .works .modal-body {
    flex-direction: column;
    gap: 20px;
  }

  .works .modal-left img {
    width: 100%;
  }

  .works .modal-right th,
  .works .modal-right td {
    font-size: 1.3rem;
    padding: 10px 6px;
  }

  .works .close-btn {
    font-size: 32px;
    top: 6px;
    right: 10px;
  }

  /*-------------------------------------------
  設備紹介
  -------------------------------------------*/   
/* 見出し */
  .main-heading {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .group-title {
    font-size: 1.5rem;
    margin-top: 15px;
  }

  .group-block h6,
  .equipment-list h6 {
    font-size: 1.4rem;
  }
	

  /* ===== 主要設備 ===== */
  .primary-grid {
    grid-template-columns: 2fr;
    gap: 30px;
    margin-bottom: 40px;
  }

  .item-flex {
	grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    display: grid;
  }
	.primary-item .equip-img img {
  width: 100%;
    height: 120px;
}

  /* ===== 設備一覧 ===== */
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .equipment-list--five {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .equip-info {
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .equip-info .count {
    margin-left: 0;
  }

  /* ===== モーダル ===== */
  .modal-content {
    padding: 20px;
  }

  .modal-body {
    flex-direction: column;
    gap: 20px;
  }

  .modal-left img {
    width: 100%;
    max-width: 100%;
  }

  .modal-right table {
    font-size: 13px;
  }

  .modal-right th,
  .modal-right td {
    padding: 10px 8px;
  }
	.modal-right th {
		width:35%;
	}	
	

  .close-btn {
    font-size: 32px;
    top: 5px;
    right: 10px;
  } 
  /*-------------------------------------------
  会社概要
  -------------------------------------------*/  
  .company .l-container-1040 {
    padding: 0;
  } 
   
  /* 代表挨拶 */
  .greeting-content {
    flex-direction: column;
    gap: 20px;
  }

  .greeting-image img {
    width: 100%;
    max-width: 100%;
  }

  .greeting-image .caption {
    text-align: center;
    margin-top: 12px;
  }

  .greeting-image .caption .post {
    font-size: 1.6rem;
  }

  .greeting-image .caption .name {
    font-size: 2rem;
    margin-left: 0;
  }

  .greeting-text {
    width: 100%;
  }

  .greeting-text span {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
    text-align: center;
  }

  .greeting-text p {
    font-size: 1.4rem;
    line-height: 1.8;
  }

  /* 企業理念 */
  .philosophy {
    padding: 20px;
  }

  .catchphrase {
    font-size: 1.8rem;
    line-height: 1.6;
  }

  /* 経営方針 */
  .company-policy ul {
    width: 100%;
  }

  .company-policy li {
    font-size: 1.6rem;
    margin-bottom: 14px;
    line-height: 1.6;
  }

  /* アクセス */
  .company-access-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .company-access-flex img {
    width: 100%;
    height: auto;
  }

  /* 会社情報・沿革（テーブル）*/
  .profile-table tr,
  .history-table tr {
    display: block;
    margin-bottom: 16px;
  }

  .profile-table th,
  .profile-table td,
  .history-table th,
  .history-table td {
    display: block;
    width: 100%;
    padding: 8px 0;
    font-size: 1.4rem;
  }

  .profile-table th,
  .history-table th {
    background: none;
    font-weight: 700;
    color: #16459C;
    border-bottom: none;
  }  
  
  /*-------------------------------------------
  新着一覧
  -------------------------------------------*/ 
  .news-list-section {
    padding: 40px 10px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 14px;
  }

  .news-item time {
    flex: none;
    font-size: 13px;
  }

  .category-label {
    flex: none;
    margin-right: 0;
    font-size: 11px;
    padding: 4px 10px;
  }

  .news-link {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 4px;
  }

  /* ページネーション */
  .pagination {
    margin-top: 30px;
    gap: 10px;
  }

  .page-number {
    padding: 8px 14px;
    font-size: 14px;
  }    
  /*-------------------------------------------
  新着詳細
  -------------------------------------------*/   
  /* パンくず */
  .single .breadcrumb {
    margin-top: 15px;
  }

  /* 2カラム → 1カラム */
  .two-column {
    display: block;
  }

  .main-content {
    width: 100%;
  }

  .sidebar {
    width: 100%;
    margin-top: 60px;
  }

  .sidebar section {
    padding: 20px 0;
  }
 
  /* 見出し */
  .two-column h3 {
    font-size: 1.5rem;
  }

  /* 記事タイトル */
  .post-title {
    font-size: 2rem;
    margin: 12px 0 20px;
  }

  /* 記事本文 */
  .post-body p {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  /* 画像 */
  .post-image {
    height: auto;
    margin: 20px 0;
  }

  .post-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 一覧へ戻るボタン */
  .single .btn-line {
    width: 100%;
    margin: 50px auto 20px;
  }

  /* サイドバー */
  .widget-title {
    font-size: 1.5rem;
  }

  .side-list li {
    padding: 12px 0;
  }

  .side-list a {
    font-size: 1.4rem;
    line-height: 1.6;
  }  
  /*-------------------------------------------
  お問い合わせ
  -------------------------------------------*/ 
  .contact .l-container-1040 {
    padding: 0;
  }  
  .btn-submit { width: 100%; }
  .phone-numbers { width: 100%; padding: 20px; box-sizing: border-box; }
  .number { font-size: 20px; }
  /*-------------------------------------------
  採用情報
  -------------------------------------------*/   
  .recruit .l-container-1040 {
    padding: 0;
  }

  /* 導入 */
  .recruit-intro .box {
    width: 100%;
    font-size: 1.6rem;
  }

  .catch {
    font-size: 2rem;
    line-height: 1.5;
  }

  /* 代表メッセージ */
  .message-flex {
    flex-direction: column;
    font-size: 1.6rem;
  }

  .message-flex img {
    width: 100%;
    height: auto;
  }

  .message-text {
    padding: 16px 14px;
  }

  /* 働く魅力（3カラム → 1カラム） */
  .grid-3col > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid-3col .card {
    margin: 0 auto;
  }

  .card img {
    width: 100%;
    height: auto;
  }

  /* 募集職種（横並び → 縦） */
  .job-card {
    flex-direction: column;
    gap: 24px;
  }

  .job-card .card {
    width: 100%;
  }

  /* 募集要項（アコーディオン）*/
  .recruit-accordion {
    width: 100%;
  }

  .accordion-header {
    font-size: 1.6rem;
    padding: 16px;
  }

  .recruit-table {
    display: block;
    padding: 0 16px;
  }

  .recruit-table dt {
    width: 100%;
    border-bottom: none;
    padding: 16px 0 4px;
  }

  .recruit-table dd {
    width: 100%;
    padding: 0 0 16px;
    font-size: 1.4rem;
  }

  /* 1日のスケジュール */
  .schedule-container {
    flex-direction: column;
    gap: 30px;
  }

  .schedule-name {
    text-align: center;
  }

  .schedule-flex {
    flex-direction: column;
    align-items: center;
  }

  .schedule-image img {
    width: 100%;
    height: auto;
  }

  .schedule-list dl {
    grid-template-columns: 60px 1fr;
    gap: 16px 12px;
    font-size: 1.5rem;
    text-align: left;
  }

  /* スタッフの声 */
  .voice-container {
    flex-direction: column;
    gap: 32px;
  }

  .voice-text {
    font-size: 1.4rem;
  }

  /* お問い合わせ */
  .contact-section .text {
    width: 100%;
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
  /*-------------------------------------------
  プライバシーポリシー
  -------------------------------------------*/ 
  /* h3（ページタイトル系） */
  .privacy-content h3 {
    font-size: 1.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* 各項目タイトル */
  .privacy-content h4 {
    font-size: 1.6rem;
    margin-top: 25px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  /* 本文 */
  .privacy-content p {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 15px;
  }

  /* 番号付きリスト */
  .privacy-list {
    padding-left: 0;
    margin-top: 20px;
  }

  .privacy-list > li {
    margin-bottom: 30px;
  }

  /* 箇条書き */
  .privacy-list ul {
    padding-left: 20px;
    margin-top: 10px;
  }

  .privacy-list ul li {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 6px;
  }    
}