@charset "utf-8";
@import url("default.css");
@import url("../fonts/fonts.css");
body {
  font-family: "MyNotoJP", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
}
.logo01 {
  width: 200px;
}
.divider {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
/*----------ボタン１----------*/
.btn01 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  background: #fff;
  border: 1px solid rgba(216, 216, 216, 1);
  transition: all .25s ease;
}
.btn01::before {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  transition: transform .25s ease;
}
.btn01:hover {
  background: rgba(0, 0, 0, .04);
  text-decoration: none;
  color: #000;
}
.btn01:hover::before {
  transform: translateX(-3px);
}
/* 右矢印ボタン */
.btn-next::before {
  content: none;
}
.btn-next::after {
  content: "\f105"; /* 右矢印 */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  transition: transform .25s ease;
}
.btn-next:hover::after {
  transform: translateX(3px);
}
.navbar {
  padding-left: 10px;
  padding-right: 10px;
}
.home-slider {
  margin-bottom: 40px;
}
/* ===== ナビゲーション：下線アニメーション ===== */
.navbar-nav li a {
  position: relative;
  display: inline-block; /* 擬似要素の基準 */
  text-decoration: none; /* デフォルト下線を消す */
  padding-bottom: 0.25em; /* 線用の余白 */
}
/* 下線 */
.navbar-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px; /* 線の太さ */
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
/* hover / focus */
.navbar-nav li a:hover::after, .navbar-nav li a:focus-visible::after {
  transform: scaleX(1);
}
/* ======================== */
/*news部分*/
.news_box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  padding: 20px 20px 10px;
}
.news_box__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
  margin-bottom: 6px;
}
.news_box__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
}
.news_box__more {
  font-size: 13px;
  text-decoration: none;
  opacity: .8;
}
.news_box__more:hover {
  opacity: 1;
  text-decoration: underline;
}
.news_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(216, 216, 216, 1);
}
.news_item:last-child {
  border-bottom: none;
}
.news_date {
  flex: 0 0 90px;
}
.news_cat_col {
  flex: 0 0 70px;
  display: flex;
  align-items: center;
}
.news_cat {
  display: inline-block;
  width: auto;
  font-size: 0.6rem;
  padding: 1px 5px;
  border-radius: 999px;
}
.cat-0 .news_cat {
  background-color: rgba(14, 79, 255, 1.00);
  color: #FFFFFF;
}
.cat-1 .news_cat {
  background-color: rgba(49, 147, 0, 1.00);
  color: #FFFFFF;
}
.cat-2 .news_cat {
  background-color: rgba(255, 0, 84, 1.00);
  color: #FFFFFF;
}
.news_text {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-width: 0;
}
/* 既存の $data['title'] の a を整える */
.news_text a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .25s ease, opacity .25s ease;
}
.news_text a:hover {
  background-size: 100% 1px;
  opacity: .85;
}
/*-----news詳細ページ-------*/
.cat-0_icon {
  background-color: rgba(14, 79, 255, 1.00);
  color: #FFFFFF;
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 5px;
}
.cat-1_icon {
  background-color: rgba(49, 147, 0, 1.00);
  color: #FFFFFF;
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 5px;
}
.cat-2_icon {
  background-color: rgba(255, 0, 84, 1.00);
  color: #FFFFFF;
  display: inline-block;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 5px;
}
.news_detailTitle01 {
  border-bottom: 1px solid rgba(216, 216, 216, 1);
  padding-bottom: 20px;
  margin-bottom: 50px;
}
.detailText {
  margin-bottom: 4rem;
}
.detailUpfile {
  text-align: center;
  margin-bottom: 4rem;
}
/*--------------NEWS一覧ページ--------------*/
/* ページャー全体 */
.pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
/* ページ番号 */
.pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  border: 1px solid rgba(216, 216, 216, 1);
  border-radius: 8px;
  background: #fff;
  transition: all .2s ease;
}
.pager a:hover {
  background: rgba(0, 0, 0, .05);
}
.pager a.current {
  background: #000;
  color: #fff;
  border-color: #000;
  pointer-events: none;
}
#detail {
  margin-bottom: 50px;
}
/*-----ホームバナー部分-------*/
.home_banner {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
/*-----ホームのリンクバナー-------*/
.home_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* 狭いと折り返す */
}
.home_links li {
  flex: 0 1 auto;
}
.home_links img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* navbar-toggler のフォーカス枠を消す */
.navbar-toggler:focus, .navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
/*----------フッター----------*/
.site-footer {
  background: #f6f7f9;
  border-top: 1px solid rgba(0, 0, 0, .06);
  margin-top: 50px;
}
.footer-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.footer-card__title {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
}
.footer-actions {
  display: grid;
  gap: 10px;
}
.footer-actions dl {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.footer-actions dl:not(:last-child) {
  border-bottom: 1px solid rgba(216, 216, 216, 1);
}
.footer-btn {
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  text-decoration: none;
  color: inherit;
  background: #fff;
}
/*お問い合わせボタン*/
.footer-btn--primary {
  background: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
  position: relative;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}
.footer-btn--primary::before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 20px;
}
.footer-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.footer-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}
/*Googleマップボタン*/
.footer-btn--gmap {
  border-color: #B3B3B3;
  position: relative;
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}
.footer-btn--gmap::before {
  content: "\f3c5";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 20px;
}
.footer-btn--gmap:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}
.footer-btn--gmap:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}
.footer-btn:hover {
  text-decoration: none;
  opacity: .85;
}
.footer-dl {
  margin: 0;
}
.footer-dl__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(216, 216, 216, 1.00);
}
.footer-dl__row:last-child {
  border-bottom: none;
}
.footer-dl dt {
  font-weight: 600;
  color: rgba(0, 0, 0, .65);
}
.footer-dl dd {
  margin: 0;
}
.footer-address {
  margin: 0 0 12px 0;
  line-height: 1.6;
}
.footer-note {
  margin: 12px 0 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, .6);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  color: rgba(0, 0, 0, .75);
  font-size: 14px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-copy {
  text-align: center;
  color: rgba(0, 0, 0, .6);
}
/* =========================
  Page (Common Section UI)
========================= */
.page {
  background: #f6f7f9;
}
.page-container {
  /* [disabled]max-width: 1080px; */
  margin: 0 auto;
  padding: 0 16px;
}
.page-hero {
  padding: 42px 0 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.page-eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .55);
}
.page-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.2;
}
.page-lead {
  margin: 0;
  color: rgba(0, 0, 0, .7);
  line-height: 1.7;
}
.section {
  padding: 28px 0;
}
.section-title {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5px;
  width: 4px;
  height: 1.2em;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
}
.section-text {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, .68);
  line-height: 1.8;
}
.card-title {
  margin: 0 0 12px;
  font-size: 16px;
}
.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  padding: 16px;
}
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.data-table th, .data-table td {
  padding: 12px 10px;
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.data-table tr:first-child th, .data-table tr:first-child td {
  border-top: 0;
}
.data-table th {
  width: 240px;
  font-weight: 600;
  color: rgba(0, 0, 0, .78);
}
.data-table td {
  color: rgba(0, 0, 0, .78);
  line-height: 1.75;
}
/* Outline table tweaks */
.data-table--outline th {
  width: 240px;
}
/* Timeline look */
.data-table--timeline th {
  width: 170px;
  white-space: nowrap;
}
.data-table--timeline tr {
  position: relative;
}
.data-table--timeline th {
  color: rgba(0, 0, 0, .72);
}
.data-table--timeline th::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .25);
  margin-right: 10px;
  translate: 0 -1px;
}
/* Lists / DL */
.list {
  margin: 0;
  padding-left: 1.1em;
}
.list li {
  margin: 2px 0;
}
.list--cols {
  column-count: 2;
  column-gap: 18px;
}
.deflist {
  margin: 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 6px 12px;
}
.deflist--split {
  grid-template-columns: 90px 1fr;
}
.deflist dt {
  margin: 0;
  font-weight: normal;
}
/* shop-slider：カードっぽく整える（見栄え優先） */
.shop-slider .splide__slide {
  border-radius: 12px;
  overflow: hidden;
}
.shop-slider .splide__slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
/*店舗案内ページ*/
.shop-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
}
.shop-cat {
  padding-top: 18px;
  border-top: 1px solid rgba(216, 216, 216, 1);
}
.shop-cat__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em;
}
.shop-cat__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
  font-size: 14px;
}
/* =========================
  営業部門ページ（eigyo2）
  - ページ固有（Global）
========================= */
.eigyo2 .page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}
/* Section / Head */
.eigyo2-subttl {
  margin: 18px 0 10px;
  font-weight: 800;
}
/* Text / List */
.eigyo2-kicker {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 1.02rem;
}
.eigyo2-list {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, .82);
}
.eigyo2-list li {
  margin: .16rem 0;
}
/* Block */
.eigyo2-block {
  padding-top: 6px;
}
.eigyo2-block + .eigyo2-block {
  margin-top: 18px;
}
/* Links */
.eigyo2 a {
  color: rgba(0, 0, 0, .82);
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, .25);
  text-underline-offset: .18em;
}
.eigyo2 a:hover {
  text-decoration-color: rgba(0, 0, 0, .55);
}
/* Photo */
.eigyo2-photo {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}
/* Chips */
.eigyo2-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.eigyo2-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .78);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}
/* Work cards */
.eigyo2-work-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.eigyo2-work-title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.35;
}
.eigyo2-work-icon {
  text-align: center;
}
.eigyo2-work-icon img {
  width: 80px;
}
.eigyo2-work-card .eigyo2-list {
  margin: 0;
  font-size: 14px;
}
.eigyo2-work-card .eigyo2-list li {
  margin: .12rem 0;
}
/* 資材４カード：高さ揃え */
section[aria-labelledby="eigyo2-materials"] .row > [class*="col-"] {
  display: flex;
}
section[aria-labelledby="eigyo2-materials"] .eigyo2-block {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  height: 100%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
  width: 100%;
}
section[aria-labelledby="eigyo2-materials"] .eigyo2-kicker {
  margin: 0;
  background: rgba(15, 23, 42, .86);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  text-align: center;
  padding: 12px 14px;
}
section[aria-labelledby="eigyo2-materials"] .eigyo2-list {
  padding: 14px 18px 16px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
  line-height: 1.75;
}
/* 建築土木工事関連資材：高さ揃え + 左アクセント */
section[aria-labelledby="eigyo2-related"] .row > [class*="col-"] {
  display: flex;
}
section[aria-labelledby="eigyo2-related"] .eigyo2-block {
  background: rgba(255, 255, 255, .55);
  padding: 16px 16px 14px 18px;
  border-top: 1px solid rgba(15, 23, 42, .18);
  border-bottom: 1px solid rgba(15, 23, 42, .18);
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
section[aria-labelledby="eigyo2-related"] .eigyo2-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  background: rgba(15, 23, 42, .28);
  border-radius: 999px;
}
section[aria-labelledby="eigyo2-related"] .eigyo2-block .eigyo2-kicker {
  margin: 0 0 10px;
}
section[aria-labelledby="eigyo2-related"] .eigyo2-block .eigyo2-list {
  margin: 0;
  font-size: 14px;
}
/* =========================
  Scroll Reveal (Common)
  - IntersectionObserver用
  - prefers-reduced-motion対応
========================= */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition:
    opacity .6s cubic-bezier(.2, .7, .2, 1), transform .6s cubic-bezier(.2, .7, .2, 1), filter .6s cubic-bezier(.2, .7, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* 別バリエーション */
.reveal--fade {
  transform: none;
  filter: none;
}
.reveal--zoom {
  transform: translateY(10px) scale(.98);
  filter: blur(1px);
}
/* ユーザーが「動きを減らす」設定のときは即表示 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* =========================
   採用ページ
   ========================= */
.recruit-page {
  background: #f6f7f9;
  color: rgba(0, 0, 0, .88);
}
.recruit-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.recruit-hero {
  padding: 42px 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.recruit-section {
  padding: 26px 0;
}

.recruit-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  padding: 20px;
  height: 100%;
}
.recruit-card--lg {
  padding: 24px;
}
.recruit-card--contact {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}
.recruit-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
.recruit-status--closed {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
}
.recruit-grid {
  display: grid;
  gap: 16px;
}
.recruit-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.recruit-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.recruit-card-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .05);
  color: rgba(0, 0, 0, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.recruit-card-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}
.recruit-card-subtitle {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}
.recruit-card-text {
  margin: 0;
  color: rgba(0, 0, 0, .74);
  line-height: 1.85;
}
.recruit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.recruit-point {
  padding: 16px;
  border-radius: 14px;
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, .06);
}
.recruit-point-title {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}
.recruit-point-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0, 0, 0, .68);
}
.recruit-summary {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 10px;
}
.recruit-summary li {
  position: relative;
  padding-left: 1.1em;
  color: rgba(0, 0, 0, .78);
  line-height: 1.8;
}
.recruit-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .35);
}
.recruit-anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 14px;
}
.recruit-anchor::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  transition: transform .25s ease;
}
.recruit-anchor:hover {
  text-decoration: none;
  color: #000;
  opacity: .8;
}
.recruit-anchor:hover::after {
  transform: translateX(3px);
}
.recruit-job + .recruit-job {
  margin-top: 18px;
}
.recruit-job-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
  margin-bottom: 14px;
}
.recruit-job-name {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}
.recruit-job-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .06);
  color: rgba(0, 0, 0, .7);
  font-size: 12px;
  font-weight: 700;
}
.recruit-note {
  margin: 10px 0 0;
  color: rgba(0, 0, 0, .62);
  font-size: 13px;
  line-height: 1.8;
}
.recruit-data {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.recruit-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.recruit-term {
  margin: 0;
  font-weight: 700;
  color: rgba(0, 0, 0, .78);
  line-height: 1.7;
}
.recruit-desc {
  margin: 0;
  color: rgba(0, 0, 0, .76);
  line-height: 1.85;
}
.recruit-desc p:last-child {
  margin-bottom: 0;
}
.recruit-desc ul {
  margin: 0;
  padding-left: 1.2em;
}
.recruit-desc li + li {
  margin-top: 4px;
}
.recruit-contact-list {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.recruit-contact-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.recruit-contact-term {
  margin: 0;
  font-weight: 700;
  color: rgba(0, 0, 0, .78);
}
.recruit-contact-desc {
  margin: 0;
  color: rgba(0, 0, 0, .76);
  line-height: 1.85;
}
.recruit-contact-desc a {
  color: inherit;
}
.recruit-contact-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.recruit-small {
  font-size: 13px;
  color: rgba(0, 0, 0, .62);
  line-height: 1.8;
  font-weight: bold;
}
/* shop2 */
.shop2-page {
  color: rgba(0, 0, 0, .88);
}
.shop2-hero {
  padding: 42px 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.shop2-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  padding: 22px;
  height: 100%;
}
.shop2-card--soft {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}
.shop2-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .05);
  color: rgba(0, 0, 0, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.shop2-card-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}
.shop2-card-text {
  margin: 0;
  color: rgba(0, 0, 0, .74);
  line-height: 1.85;
}
.shop2-subtitle {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}
.shop2-subtitle--line {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.shop2-maker-group {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  background: #fff;
  height: 100%;
}
.shop2-maker-title {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}
.shop2-maker-list {
  margin: 0;
  padding-left: 1.2em;
}
.shop2-maker-list li {
  margin-bottom: 6px;
  line-height: 1.75;
  color: rgba(0, 0, 0, .74);
}
.shop2-guide {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}
.shop2-guide img {
  display: block;
  width: 100%;
  height: auto;
}
/* =========================
   Shishu Page
   ========================= */
.shishu-hero {
  padding: 42px 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.shishu-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  padding: 22px;
}
.shishu-card--soft {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
}
.shishu-card-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  font-weight: 700;
}
.shishu-card-text {
  margin: 0;
  color: rgba(0, 0, 0, .74);
  line-height: 1.85;
}
.shishu-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.shishu-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8f9fb;
  border: 1px solid rgba(0, 0, 0, .06);
}
.shishu-point-num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #212529;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 2px;
}
.shishu-point-text {
  margin: 0;
  color: rgba(0, 0, 0, .76);
  line-height: 1.7;
}
.shishu-info {
  display: grid;
  gap: 12px;
}
.shishu-list {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, .76);
}
.shishu-price {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
.shishu-price th, .shishu-price td {
  padding: 12px 10px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  vertical-align: top;
  line-height: 1.7;
}
.shishu-price tr:first-child th, .shishu-price tr:first-child td {
  border-top: 0;
}
.shishu-price th {
  width: 150px;
  font-weight: 700;
  color: rgba(0, 0, 0, .78);
}
.shishu-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(0, 0, 0, .58);
  line-height: 1.7;
}
.shishu-alert {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(13, 110, 253, .16);
  background: rgba(13, 110, 253, .05);
}
.shishu-alert-title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}
.shishu-alert ul:last-child {
  margin-bottom: 0;
}
.shishu-table-wrap {
  overflow-x: auto;
}
.shishu-print-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.shishu-print-table th, .shishu-print-table td {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  line-height: 1.7;
}
.shishu-print-table thead th {
  background: #f8f9fb;
  font-weight: 700;
}
.shishu-cta {
  text-align: center;
}
.shishu-cta-title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}
.shishu-cta-text {
  margin: 0 auto 18px;
  max-width: 760px;
  color: rgba(0, 0, 0, .72);
  line-height: 1.8;
}
.shishu-box-notice {
  margin-top: 4px;
  padding: 18px 20px;
  background: #fff8f8;
  border: 1px solid rgba(220, 53, 69, .14);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}
.shishu-box-notice p {
  margin: 0 0 10px;
  line-height: 1.8;
  color: rgba(0, 0, 0, .82);
}
.shishu-box-notice strong {
  font-weight: 700;
  color: #b02a37;
}
.shishu-box-note {
  font-size: 13px;
  color: rgba(0, 0, 0, .58);
}
@media (max-width: 767.98px) {
  /*-----news部分-------*/
  .news_item {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .news_date {
    flex: 0 0 auto;
  }
  .news_cat {
    flex: 0 0 auto;
  }
  .news_date, .news_cat_col {
    align-self: center;
  }
  .news_text {
    flex: 0 0 100%;
    margin-top: 6px;
  }
  .data-table {
    table-layout: auto;
  }
  .data-table tr {
    display: block;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
  }
  .data-table tr:first-child {
    border-top: 0;
  }
  .data-table th, .data-table td {
    display: block;
    width: 100%;
    border-top: 0;
    padding: 0;
  }
  .data-table th {
    margin-bottom: 6px;
    font-weight: 600;
  }
  .data-table td {
    line-height: 1.75;
  }
  /*採用ページ*/
  .recruit-hero {
    padding: 32px 0 22px;
  }
  .recruit-card, .recruit-card--lg {
    padding: 18px;
  }
  .recruit-card-title {
    font-size: 20px;
  }
  .recruit-card-subtitle {
    font-size: 17px;
  }
  .recruit-job-name {
    font-size: 20px;
  }
  /*shop2*/
  .shop2-hero {
    padding: 32px 0 22px;
  }
  .shop2-section {
    padding: 22px 0;
  }
  .shop2-card {
    padding: 18px;
  }
  .shop2-card-title {
    font-size: 21px;
  }
  /*刺繍ページ*/
  .shishu-card {
    padding: 18px;
  }
  .shishu-price th, .shishu-price td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .shishu-price th {
    padding-bottom: 4px;
  }
  .shishu-price td {
    padding-top: 0;
  }
}
@media (min-width:768px) {
  .home_links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 20px;
  }
  .shop2-maker-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 20px;
  }
}
@media (min-width:992px) {
  .logo01 {
    width: 300px;
  }
  .navbar-nav li {
    margin-right: 1rem;
  }
  .navbar-nav li a {
    text-decoration: none;
    color: #000000;
  }
  .navbar-nav {
    margin-left: 50px;
  }
  /*-----ホームバナー部分-------*/
  .home_banner li {
    margin-bottom: 12px;
  }
  .section-history .col-lg-6:first-child {
    order: 2;
  }
  .section-history .col-lg-6:last-child {
    order: 1;
  }
}
@media (max-width:991.98px) {
  /*-----ホームバナー部分-------*/
  .home_banner {
    margin-top: 20px;
  }
  .home_banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  /*ハンバーガーメニュー内*/
  .navbar-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px 0;
  }
  .navbar-nav li {
    margin: 0;
  }
  /* a：タップしやすく */
  .navbar-nav li a {
    display: block;
    padding: 14px 40px 14px 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    position: relative;
    line-height: 1.2;
  }
  .navbar-nav li a:hover {
    background-color: #E7E7E7;
  }
  .navbar-nav li a::after {
    content: none !important;
  }
  .navbar-nav li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .65;
    pointer-events: none;
  }
  .home_banner {
    padding-left: 0; /* リスト特有の左余白を削除 */
    justify-content: center; /* グリッド全体を中央寄せ */
  }
  .home_banner li {
    display: flex;
    justify-content: center; /* 画像をマスの中で中央配置 */
    width: 100%;
  }
  /*店舗案内ページ*/
  .shop-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /*採用ページ*/
    .recruit-card{margin-bottom: 20px;}
  .recruit-grid--3, .recruit-grid--2, .recruit-points {
    grid-template-columns: 1fr;
  }
  .recruit-row, .recruit-contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .recruit-job-name {
    font-size: 22px;
  }
}
@media (max-width:575.98px) {
  /*-----ホームバナー部分-------*/
  .home_banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .list--cols {
    column-count: 1;
  }
  /*店舗案内ページ*/
  .shop-slider .splide__slide {
    padding: 0;
  }
  .shop-slider .splide__slide img {
    height: 160px;
  }
  .shop-cats {
    grid-template-columns: 1fr;
  }
  .shop-cat__list {
    grid-template-columns: 1fr;
  }
}