@charset "UTF-8";
/*
 * ======================================
 * site.css — 株式会社一心 サイト固有CSS
 * （main.css の共通クラスで再現できないデザイン差分のみ追加）
 * ======================================
 *
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * ------------------------------------------------------
 * .isshin-grad            - ブランド青→緑グラデーション背景（115deg 3stop）
 * .isshin-btn(--grad/--ghost/--sm/--full) - ブランドpillボタン（radius 999px）
 * .isshin-header(__topbar/__right) - sticky+blurヘッダー／上部グラデ帯
 * .isshin-logo(__text/__name/__en) - ロゴ横テキスト
 * .isshin-nav             - ナビ（日本語上・英語下の2段表示）
 * .isshin-spnav           - SPナビのブランド配色調整
 * .isshin-sec / --soft / --dark - セクション余白・淡背景・ダーク背景
 * .isshin-sec-head / --center / .isshin-eyebrow / .isshin-h2 - セクション見出し
 * .isshin-mv / #slideshow - トップMV（本番はCMSスライダー差し替え／生成時は静止画1枚）
 * .isshin-intro           - 導入ストリップ
 * .isshin-service         - 事業紹介2カラム
 * .isshin-ph              - 写真プレースホルダ
 * .isshin-strength        - 強みカード
 * .isshin-flowsec         - フロー誘導セクション（円背景）
 * .isshin-flow__*         - 三つ巴フロー図（PC三角／SP縦）
 * .isshin-partners        - 取引先（ダーク）
 * .isshin-hero(__*)       - 下層ページヒーロー（グラデ＋ghost＋wave）
 * .isshin-crumb           - パンくず余白
 * .isshin-works           - パーキング業務カードグリッド
 * .isshin-guard           - マネーガード補償ボックス
 * .isshin-message         - 代表挨拶
 * .isshin-profile         - 会社情報テーブル風
 * .isshin-notice          - 注意事項ボックス
 * .isshin-contact / __aside - お問い合わせ2カラム
 * .isshin-form            - フォーム
 * .isshin-footer__*       - ダークフッター
 * .isshin-note            - 補足注釈テキスト
 *
 * 共通SCSSに不足していたもの（5分類）
 * ------------------------------------------------------
 * 装飾パターン不足：ブランド3stopグラデーション帯／三つ巴フロー図の三角配置
 * 構造不足：日本語上・英語下のナビ2段（共通は英語上）／ghost英字つきグラデヒーロー
 * 値の粒度不足：pill radius 999px・カード border #e6efed・footer #0e2c3e 等の固有色
 */

/* ============ ベース調整 ============ */
body {
  color: #3a4d59;
  line-height: 1.95;
}
::selection { background: rgba(6, 158, 85, .18); }

/* ============ ブランドグラデーション ============ */
.isshin-grad {
  background: linear-gradient(115deg, #2e449a 0%, #1f6fb6 52%, #069e55 100%);
}

/* ============ ボタン（ブランドpill） ============ */
.isshin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}
.isshin-btn--grad {
  background: linear-gradient(115deg, #2e449a 0%, #1f6fb6 52%, #069e55 100%);
  color: #fff;
  box-shadow: 0 12px 26px rgba(15, 80, 112, .3);
}
.isshin-btn--grad:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(15, 80, 112, .36); opacity: 1; }
.isshin-btn--ghost {
  background: rgba(255, 255, 255, .85);
  color: #0c2c3e;
  border: 1px solid rgba(255, 255, 255, .9);
}
.isshin-btn--ghost:hover { background: #fff; transform: translateY(-2px); opacity: 1; }
.isshin-btn--sm { padding: 11px 22px; font-size: 13.5px; }
.isshin-btn--full { width: 100%; }

.isshin-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #006c3a;
  text-decoration: none;
}
.isshin-textlink:hover { opacity: .75; gap: 12px; }
.isshin-textlink i, .isshin-textlink span.arrow { font-family: "Outfit", sans-serif; transition: transform .3s ease; }

/* ============ ヘッダー ============ */
.isshin-header.header-bar {
  position: sticky;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eef2f3;
  box-shadow: none;
}
.isshin-header__topbar {
  display: block;
  height: 3px;
  width: 100%;
}
.isshin-header .header__inner {
  max-width: 1200px;
  height: 74px;
  padding: 0 clamp(18px, 4vw, 34px);
}
/* ロゴ */
.isshin-logo { display: flex; align-items: center; gap: 12px; }
.isshin-logo img { height: 38px; width: auto; }
.isshin-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.isshin-logo__name { font-weight: 700; font-size: 17px; color: #1a2b3a; letter-spacing: .04em; }
.isshin-logo__en { font-family: "Outfit", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .32em; color: #069e55; }

/* PCナビ：日本語（上）＋英語（下） */
.isshin-nav { gap: 2px; }
.isshin-nav .header__nav-item a { padding: 8px 14px; gap: 1px; }
.isshin-nav .header__nav-ja { order: 0; margin-top: 0; font-size: 14px; font-weight: 700; color: #2b3a45; line-height: 1.2; }
.isshin-nav .header__nav-en { order: 1; font-family: "Outfit", sans-serif; font-size: 9px; font-weight: 600; letter-spacing: .16em; color: #9fb1bb; }
/* 下線は常に中央基準（left:50% + translateX(-50%)）で左右対称に伸縮させる */
.isshin-nav .header__nav-item a::after { background: linear-gradient(115deg, #2e449a, #069e55); left: 50%; transform: translateX(-50%); }
.isshin-nav .header__nav-item a:hover::after { width: calc(100% - 28px); left: 50%; }
.isshin-nav .header__nav-item--current .header__nav-ja,
.isshin-nav .header__nav-item--current .header__nav-en { color: #069e55; }
.isshin-nav .header__nav-item--current a::after { width: calc(100% - 28px); left: 50%; transform: translateX(-50%); }

.isshin-header__right { gap: 10px; }

/* ============ SPナビ調整 ============ */
.isshin-spnav.sp-nav {
  background: linear-gradient(150deg, rgba(46, 68, 154, .97), rgba(6, 158, 85, .96));
}
.isshin-spnav__tel {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
.isshin-spnav__tel .fa-phone { margin-right: .4em; font-size: .8em; }
.isshin-spnav .sp-nav__bottom { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.isshin-spnav .sp-nav__bottom .isshin-btn { max-width: 320px; }

/* ============ セクション共通 ============ */
.isshin-sec { padding: clamp(54px, 8vw, 110px) 0; }
.isshin-sec--sm { padding: clamp(48px, 7vw, 90px) 0; }
.isshin-sec--soft { background: linear-gradient(180deg, #f4f9f8, #eef6f4); }
.isshin-sec--dark { background: #0e2c3e; position: relative; overflow: hidden; }
.isshin-container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 34px); }
.isshin-container--narrow { max-width: 920px; }
.isshin-container--mid { max-width: 1100px; }
.isshin-container--guard { max-width: 1040px; }
.isshin-lead--wide { max-width: 760px; }

/* セクション見出し */
.isshin-sec-head { margin-bottom: clamp(34px, 5vw, 56px); }
.isshin-sec-head--center { text-align: center; }
.isshin-eyebrow {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2em;
  color: #069e55;
  margin: 0 0 12px;
}
.isshin-h2 {
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 40px);
  color: #1a2b3a;
  line-height: 1.45;
  margin: 0;
}
.isshin-lead { margin: 16px 0 0; font-size: 16px; max-width: 750px; }
.isshin-sec-head--center .isshin-lead { margin-left: auto; margin-right: auto; }
.isshin-note { margin: 16px 0 0; font-size: 13px; color: #8aa0ab; }

/* ============ MV ============ */
.isshin-mv {
  position: relative;
  min-height: clamp(440px, 90vh, 785px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #cfeaf1, #9fd6dd 45%, #3fa6c0);
}
/* MVスライダー外枠（本番はCMSスライダーに差し替え。中身は height:100% で追従） */
#slideshow {
  position: absolute; inset: 0;
  z-index: 0;   /* 独立した重なり文脈を作り、CMSスライダー内部のz-indexをこの中に閉じ込める（コピー・波を前面に保つ） */
  min-height: clamp(440px, 90vh, 785px);   /* レスポンシブで高さを明示（MVの min-height と一致） */
  overflow: hidden;
}
/* スライド1枚（CMS出力の .swiper-slide にもそのまま効く） */
#slideshow .swiper-slide { width: 100%; height: 100%; overflow: hidden; }
#slideshow .main_slider__inner { width: 100%; height: 100%; }
#slideshow .main_slider__inner img,
#slideshow .swiper-slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.isshin-mv__veil {
  position: absolute; inset: 0;
  z-index: 1;   /* スライダー(z-index:0)の上・コピーの下に暗幕を重ねる */
  background: linear-gradient(100deg, rgba(244, 251, 252, .92) 0%, rgba(244, 251, 252, .7) 34%, rgba(244, 251, 252, .18) 56%, rgba(12, 44, 62, .05) 100%);
}
.isshin-mv__inner { position: relative; z-index: 2; max-width: 1600px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 34px); width: 100%; }
.isshin-mv__copy { max-width: 760px; }
.isshin-mv__en { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .22em; color: #0c5170; margin: 0 0 16px; }
.isshin-mv__title { font-weight: 700; font-size: clamp(30px, 5.4vw, 58px); line-height: 1.38; color: #0c2c3e; margin: 0; letter-spacing: .01em; text-shadow: 0 1px 0 rgba(255, 255, 255, .4); }
.isshin-mv__title span { display: inline-block; white-space: nowrap; }
.isshin-mv__sub { font-size: clamp(15px, 1.8vw, 18px); color: #163e51; margin: 22px 0 0; line-height: 2; }
.isshin-mv__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
/* 2つのボタンを同じ幅に（大きい方「事業内容を見る」に合わせる） */
.isshin-mv__btns .isshin-btn { min-width: 180px; }
.isshin-mv__wave { position: absolute; left: 0; right: 0; bottom: -1px; z-index: 3; width: 100%; height: 64px; display: block; }

/* ============ 導入ストリップ ============ */
.isshin-intro { max-width: 1200px; margin: 0 auto; padding: clamp(48px, 7vw, 90px) clamp(18px, 4vw, 34px) 0; text-align: center; }
.isshin-intro__en { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .2em; color: #069e55; margin: 0 0 14px; }
.isshin-intro__lead { font-size: clamp(18px, 2.4vw, 26px); font-weight: 700; color: #1a2b3a; line-height: 1.85; margin: 0 auto; max-width: 760px; }

/* ============ 事業紹介（2カラム） ============ */
.isshin-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.isshin-service__title { font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); color: #1a2b3a; line-height: 1.45; margin: 0 0 22px; }
.isshin-service p { margin: 0 0 18px; font-size: 16px; }
.isshin-service p:last-of-type { margin-bottom: 26px; }

/* 写真プレースホルダ */
.isshin-ph {
  border-radius: 18px;
  background: linear-gradient(150deg, #e7f4f1, #cfe8e2);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e2eeea;
  overflow: hidden;
}
.isshin-ph img { width: 100%; height: 100%; object-fit: cover; }
.isshin-ph--4-3 { aspect-ratio: 4 / 3; }
.isshin-ph--3-4 { aspect-ratio: 3 / 4; max-height: 420px; }
.isshin-ph--3-2 { aspect-ratio: 3 / 2; }   /* 1920×1282 の横長写真用 */
.isshin-ph__label { font-family: "Outfit", sans-serif; font-size: 11px; letter-spacing: .2em; color: #5a8276; background: #fff; padding: 7px 15px; border-radius: 999px; }

/* ============ 強みカード ============ */
.isshin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.isshin-strength {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid #e6efed;
  box-shadow: 0 10px 30px rgba(20, 60, 80, .05);
}
.isshin-strength__no {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif; font-weight: 600; color: #fff; font-size: 20px;
}
.isshin-strength__title { font-weight: 700; font-size: 19px; color: #1a2b3a; margin: 0 0 12px; line-height: 1.5; }
.isshin-strength p { margin: 0; font-size: 15px; line-height: 1.9; }

/* ============ フロー誘導セクション ============ */
.isshin-flowsec { position: relative; overflow: hidden; padding: clamp(54px, 8vw, 110px) 0; }
.isshin-flowsec__bg { position: absolute; inset: 0; background-image: url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28318/bg-circle.png'); background-size: cover; background-position: center; opacity: .55; pointer-events: none; }
.isshin-flowsec__inner { position: relative; }
.isshin-flowsec__btn { text-align: center; margin-top: 40px; }

/* ============ 三つ巴フロー図 ============ */
.isshin-flow__sp { display: none; }
.isshin-flow__triangle { position: relative; width: 100%; max-width: 940px; margin: 0 auto; aspect-ratio: 1000 / 620; }
.isshin-flow__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.isshin-flow__center { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; pointer-events: none; }
.isshin-flow__center-en { display: block; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .24em; color: #9fb1bb; }
.isshin-flow__center-ja { display: block; font-weight: 700; font-size: 18px; color: #1a2b3a; letter-spacing: .1em; }

.isshin-flow__edge { position: absolute; transform: translate(-50%, -50%); }
.isshin-flow__edge span {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #e2eeea;
  box-shadow: 0 6px 16px rgba(20, 60, 80, .08);
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 700; color: #1a2b3a; white-space: nowrap;
}
.isshin-flow__arr-b { font-style: normal; color: #1f6fb6; }
.isshin-flow__arr-g { font-style: normal; color: #069e55; }
.isshin-flow__edge--m1 { left: 33%; top: 40%; }
.isshin-flow__edge--m2 { left: 50%; top: 87%; }
.isshin-flow__edge--m3 { left: 67%; top: 40%; }

.isshin-flow__node { position: absolute; }
.isshin-flow__node--top { top: 0; left: 50%; transform: translateX(-50%); width: 27%; min-width: 188px; }
.isshin-flow__node--bl { bottom: 0; left: 0; width: 30%; min-width: 206px; }
.isshin-flow__node--br { bottom: 0; right: 0; width: 30%; min-width: 206px; }

.isshin-flow__card { background: #fff; border: 1px solid #e2eeea; border-radius: 16px; padding: 18px; box-shadow: 0 12px 30px rgba(20, 60, 80, .08); }
.isshin-flow__card--center { text-align: center; }
.isshin-flow__icon { width: 60px; height: 60px; object-fit: contain; display: block; margin: 0 auto 8px; }
.isshin-flow__icon--sm { width: 50px; height: 50px; margin-bottom: 6px; }
.isshin-flow__role-en { display: block; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 10px; letter-spacing: .2em; color: #1f6fb6; }
.isshin-flow__role-ja { display: block; font-weight: 700; font-size: 18px; color: #1a2b3a; margin: 4px 0 3px; }
.isshin-flow__role-note { display: block; font-size: 12.5px; color: #5a6f7b; }
.isshin-flow__card-head { text-align: center; margin-bottom: 11px; }
.isshin-flow__card-head .isshin-flow__role-ja { margin: 3px 0 0; font-size: 17px; }
.isshin-flow__partners { list-style: none; margin: 0; padding: 11px 0 0; border-top: 1px solid #eef3f2; display: flex; flex-direction: column; gap: 5px; }
.isshin-flow__partners li { font-size: 11.5px; line-height: 1.5; color: #5a6f7b; }

.isshin-flow__card--brand { background: linear-gradient(135deg, #2e449a, #1f6fb6 55%, #069e55); border: none; padding: 20px; text-align: center; color: #fff; box-shadow: 0 16px 34px rgba(15, 80, 112, .28); }
.isshin-flow__logo-chip { display: inline-flex; background: #fff; border-radius: 10px; padding: 8px 14px; margin-bottom: 10px; box-shadow: 0 4px 12px rgba(0, 0, 0, .12); }
.isshin-flow__logo-chip img { height: 28px; width: auto; object-fit: contain; display: block; }
.isshin-flow__role-en--light { color: rgba(255, 255, 255, .85); letter-spacing: .24em; }
.isshin-flow__role-ja--light { color: #fff; margin: 3px 0 8px; }
.isshin-flow__brand-text { margin: 0; font-size: 12.5px; color: rgba(255, 255, 255, .92); line-height: 1.7; }

.isshin-flow__works { max-width: 760px; margin: 40px auto 0; background: #fbfdfd; border: 1px solid #e2eeea; border-radius: 16px; padding: 26px 30px; box-shadow: 0 10px 26px rgba(20, 60, 80, .07); }
.isshin-flow__works-head { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 11px; letter-spacing: .2em; color: #069e55; margin: 0 0 16px; }
.isshin-flow__works-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px 28px; }
.isshin-flow__works-list li { display: flex; gap: 9px; font-size: 14px; line-height: 1.6; color: #3a4d59; }
.isshin-flow__dot { color: #069e55; flex: 0 0 auto; }
.isshin-flow__guard { margin: 16px 0 0; padding-top: 13px; border-top: 1px dashed #d7e4e0; font-size: 13px; font-weight: 700; color: #006c3a; }

/* SP縦並びステップ用 */
.isshin-flow__step-arrow { display: flex; flex-direction: column; align-items: center; padding: 8px 0; }
.isshin-flow__step-arrow span { font-size: 12px; color: #069e55; font-weight: 700; }
.isshin-flow__step-arrow em { font-style: normal; color: #1f6fb6; font-size: 20px; line-height: 1; }

/* ============ 取引先（ダーク） ============ */
.isshin-partners__glow { position: absolute; inset: 0; background: radial-gradient(80% 120% at 90% 0%, rgba(6, 158, 85, .25), transparent 60%); }
.isshin-partners__inner { position: relative; }
.isshin-partners__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.isshin-partners__item {
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px; padding: 22px 14px; min-height: 84px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #dbe9ef; font-size: 14.5px; font-weight: 500; line-height: 1.6;
  white-space: nowrap;
}
.isshin-eyebrow--light { color: #7fd6b0; }
.isshin-h2--light { color: #fff; }

/* ============ 下層ページヒーロー ============ */
.isshin-hero { position: relative; overflow: hidden; padding: clamp(64px, 9vw, 108px) clamp(18px, 4vw, 34px) clamp(50px, 7vw, 78px); }
.isshin-hero__glow { position: absolute; inset: 0; background: radial-gradient(75% 130% at 92% 0%, rgba(255, 255, 255, .16), transparent 55%); }
.isshin-hero__ghost { position: absolute; right: clamp(10px, 4vw, 60px); top: 50%; transform: translateY(-50%); font-family: "Outfit", sans-serif; font-weight: 600; font-size: clamp(54px, 12vw, 150px); color: rgba(255, 255, 255, .09); letter-spacing: .04em; line-height: 1; white-space: nowrap; pointer-events: none; }
.isshin-hero__inner { position: relative; }
.isshin-hero__en { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .24em; color: rgba(255, 255, 255, .85); margin: 0 0 12px; }
.isshin-hero__ja { font-weight: 700; font-size: clamp(28px, 4.6vw, 46px); color: #fff; margin: 0; letter-spacing: .02em; }
.isshin-hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 48px; display: block; }

/* パンくず */
.isshin-crumb.breadcrumb { max-width: 1200px; margin: 0 auto; padding: 18px clamp(18px, 4vw, 34px) 0; font-size: 13px; }
.isshin-crumb .breadcrumb__item:not(:last-child)::after { color: #c2d0d6; }
.isshin-crumb .breadcrumb__link,
.isshin-crumb .breadcrumb__current { color: #8aa0ab; }

/* ============ パーキング：業務カード ============ */
.isshin-works { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.isshin-works--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.isshin-work { background: #fff; border-radius: 16px; padding: 28px 26px; border: 1px solid #e6efed; }
.isshin-work__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.isshin-work__no { width: 38px; height: 38px; border-radius: 10px; background: rgba(6, 158, 85, .1); display: flex; align-items: center; justify-content: center; font-family: "Outfit", sans-serif; font-weight: 600; color: #006c3a; font-size: 14px; flex-shrink: 0; }
.isshin-work__title { font-weight: 700; font-size: 17px; color: #1a2b3a; margin: 0; }
.isshin-work p { margin: 0; font-size: 14.5px; line-height: 1.85; }

/* ============ マネーガード補償 ============ */
.isshin-guard { border-radius: 24px; padding: clamp(34px, 5vw, 56px); color: #fff; position: relative; overflow: hidden; }
.isshin-guard__glow { position: absolute; inset: 0; background: radial-gradient(70% 120% at 100% 0%, rgba(255, 255, 255, .18), transparent 55%); }
.isshin-guard__inner { position: relative; }
.isshin-guard__eyebrow { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .2em; opacity: .85; margin: 0 0 12px; }
.isshin-guard__title { font-weight: 700; font-size: clamp(24px, 3.2vw, 36px); margin: 0 0 18px; }
.isshin-guard p { margin: 0; font-size: 16px; line-height: 2; max-width: 680px; }

/* ============ 会社概要：代表挨拶 ============ */
.isshin-message__title { font-weight: 700; font-size: clamp(23px, 3vw, 34px); color: #1a2b3a; line-height: 1.5; margin: 0 0 24px; }
.isshin-message p { margin: 0 0 18px; font-size: 16px; }
.isshin-message__sign-role { margin: 0; font-size: 14px; color: #5a6f7b; }
.isshin-message__sign-name { margin: 4px 0 0; font-size: 22px; font-weight: 700; color: #1a2b3a; }

/* 会社情報テーブル風 */
.isshin-profile { background: #fff; border-radius: 16px; border: 1px solid #e6efed; overflow: hidden; }
.isshin-profile__row { display: flex; flex-wrap: wrap; gap: 0 24px; padding: 20px clamp(20px, 4vw, 34px); border-bottom: 1px solid #eef3f2; }
.isshin-profile__row:last-child { border-bottom: none; }
.isshin-profile__k { min-width: 140px; flex: 0 0 140px; font-weight: 700; color: #1a2b3a; font-size: 15px; }
.isshin-profile__v { flex: 1 1 240px; font-size: 15px; line-height: 1.85; }

/* 注意事項 */
.isshin-notice { border: 1.5px solid #e6d6c2; background: #fdf9f3; border-radius: 16px; padding: clamp(26px, 4vw, 40px); }
.isshin-notice__title { font-weight: 700; font-size: 18px; color: #9a6a2a; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.isshin-notice__title i { color: #c89a4a; }
.isshin-notice p { margin: 0; font-size: 15px; line-height: 2; color: #6b5a44; }
.isshin-notice__strong { font-weight: 700; color: #9a6a2a; }

/* ============ お問い合わせ ============ */
.isshin-contact { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 80px); }
.isshin-contact__top { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.isshin-contact__form { max-width: 760px; margin-inline: auto; width: 100%; }
.isshin-contact__title { font-weight: 700; font-size: clamp(22px, 2.8vw, 30px); color: #1a2b3a; margin: 0 0 8px; }
.isshin-contact__desc { margin: 0 0 26px; font-size: 15px; }
.isshin-contact__tel-box { background: linear-gradient(180deg, #f4f9f8, #eef6f4); border: 1px solid #e6efed; border-radius: 18px; padding: 32px; }
.isshin-contact__tel-title { font-weight: 700; font-size: 18px; color: #1a2b3a; margin: 0 0 6px; }
.isshin-contact__tel { display: block; text-decoration: none; font-family: "Outfit", sans-serif; font-weight: 600; font-size: clamp(26px, 4vw, 34px); color: #006c3a; letter-spacing: .02em; margin: 8px 0 4px; }
.isshin-contact__tel .fa-phone { margin-right: .35em; font-size: .8em; }
.isshin-contact__tel-note { margin: 0; font-size: 14px; color: #5a6f7b; }

/* CMSフォーム差し替え後の汎用スタイル（CMS出力の input/textarea/select に適用） */
.isshin-formarea input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]),
.isshin-formarea textarea,
.isshin-formarea select {
  font-family: inherit; font-size: 15px; padding: 13px 15px;
  border: 1.5px solid #dde6e9; border-radius: 10px; outline: none;
  background: #fbfdfd; width: 100%; color: #2b3a45;
  transition: border-color .2s ease;
}
.isshin-formarea input:focus, .isshin-formarea textarea:focus, .isshin-formarea select:focus { border-color: #069e55; }

/* CMS送信ボタン（.submit-btn）をサイトのボタンデザインに合わせて上書き（!important で CMS デフォルトを無効化） */
.isshin-formarea .submit-btn,
.submit-btn[type="submit"] {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-width: 240px !important;
  margin: 8px auto 0 !important;
  padding: 16px 48px !important;
  background: linear-gradient(115deg, #2e449a 0%, #1f6fb6 52%, #069e55 100%) !important;
  border: none !important;
  border-radius: 999px !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-align: center !important;
  cursor: pointer !important;
  box-shadow: 0 12px 26px rgba(15, 80, 112, .22) !important;
  transition: transform .3s ease, opacity .3s ease !important;
}
.isshin-formarea .submit-btn:hover,
.submit-btn[type="submit"]:hover {
  opacity: .85 !important;
  transform: translateY(-2px) !important;
}
.isshin-formarea .submit-btn::before { display: none !important; }

/* CMSデフォルトの「必須」バッジ背景色をサイトのアクセントカラーに変更 */
.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  background: #069e55 !important;
}

/* フォーム */
.isshin-form { display: flex; flex-direction: column; gap: 18px; }
.isshin-form__label { display: block; font-size: 14px; font-weight: 700; color: #1a2b3a; }
.isshin-form__req { color: #c0392b; font-weight: 400; }
.isshin-form input, .isshin-form textarea {
  font-family: inherit; font-size: 15px; padding: 13px 15px;
  border: 1.5px solid #dde6e9; border-radius: 10px; outline: none;
  background: #fbfdfd; width: 100%; color: #2b3a45;
  margin-top: 7px;
  transition: border-color .2s ease;
}
.isshin-form input:focus, .isshin-form textarea:focus { border-color: #069e55; }
.isshin-form textarea { resize: vertical; }
.isshin-form__submit { margin-top: 6px; padding: 16px; border: none; border-radius: 999px; color: #fff; font-weight: 700; font-size: 16px; font-family: inherit; cursor: pointer; box-shadow: 0 12px 26px rgba(15, 80, 112, .22); transition: transform .3s ease, opacity .3s ease; }
.isshin-form__submit:hover { transform: translateY(-2px); }
.isshin-form__thanks { background: rgba(6, 158, 85, .08); border: 1px solid rgba(6, 158, 85, .3); border-radius: 14px; padding: 26px; text-align: center; }
.isshin-form__thanks-title { margin: 0 0 6px; font-weight: 700; color: #006c3a; font-size: 18px; }
.isshin-form__thanks p { margin: 0; font-size: 14px; }
.isshin-form__errors { background: rgba(192, 57, 43, .06); border: 1px solid rgba(192, 57, 43, .3); border-radius: 12px; padding: 16px 18px; margin-bottom: 20px; }
.isshin-form__errors ul { margin: 0; padding-left: 18px; color: #c0392b; font-size: 14px; line-height: 1.9; }

/* ============ お問い合わせ完了（thanks） ============ */
.isshin-thanks { max-width: 720px; margin-inline: auto; text-align: center; }
.isshin-thanks__title { font-weight: 700; font-size: clamp(22px, 2.8vw, 30px); color: #1a2b3a; margin: 6px 0 20px; }
.isshin-thanks__desc { margin: 0 0 24px; font-size: 16px; line-height: 2; }
.isshin-thanks__note { margin: 0 0 36px; font-size: 14px; line-height: 1.9; color: #5a6f7b; background: #f3f9f7; border: 1px solid #e6efed; border-radius: 14px; padding: 20px 24px; text-align: left; }

/* ============ フッター ============ */
.isshin-footer { background: #0e2c3e; color: #c3d4dd; padding: clamp(50px, 7vw, 80px) 0 0; }
.isshin-footer__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 38px; padding-left: clamp(18px, 4vw, 34px); padding-right: clamp(18px, 4vw, 34px); }
.isshin-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.isshin-footer__logo { height: 40px; width: auto; filter: brightness(1.15); }
.isshin-footer__name { display: block; font-weight: 700; color: #fff; font-size: 17px; line-height: 1.2; }
.isshin-footer__sub { display: block; font-family: "Outfit", sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .3em; color: #7fd6b0; }
.isshin-footer__addr { margin: 0 0 14px; font-size: 13.5px; line-height: 1.95; color: #9fb5c0; }
.isshin-footer__addr:last-child { margin-bottom: 0; }
.isshin-footer__heading { font-family: "Outfit", sans-serif; font-size: 12px; letter-spacing: .18em; color: #7fd6b0; margin: 0 0 16px; }
.isshin-footer__links { display: flex; flex-direction: column; gap: 11px; }
.isshin-footer__links a { text-decoration: none; color: #c3d4dd; font-size: 14px; }
.isshin-footer__links a:hover { color: #7fd6b0; opacity: 1; }
.isshin-footer__tel { display: flex; width: fit-content; align-items: center; text-decoration: none; color: #fff; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 22px; margin-bottom: 16px; }
.isshin-footer__tel .fa-phone { margin-right: .4em; font-size: .8em; }
.isshin-footer__mail { margin: 8px 0 16px; font-size: 13px; color: #9fb5c0; }
.isshin-footer__col .isshin-btn { font-size: 14px; padding: 12px 24px; }
.isshin-footer__bottom { margin-top: clamp(40px, 6vw, 64px); border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px clamp(18px, 4vw, 34px); text-align: center; }
.isshin-footer__bottom p { margin: 0; font-family: "Outfit", sans-serif; font-size: 12px; letter-spacing: .05em; color: #6f8b99; }

/* ============ ページトップ ============ */
.page-top__link { background: linear-gradient(115deg, #2e449a, #069e55); }

/* ============ レスポンシブ ============ */
@media (max-width: 880px) {
  .isshin-flow__pc { display: none; }
  .isshin-flow__sp { display: block; }
  .isshin-flow__sp { display: flex; flex-direction: column; align-items: stretch; gap: 0; max-width: 480px; margin: 0 auto; }
  .isshin-flow__sp .isshin-flow__works { margin-top: 14px; }
  .isshin-flow__sp .isshin-flow__works-list { display: flex; flex-direction: column; gap: 7px; }
}
@media (max-width: 700px) {
  .isshin-works { grid-template-columns: 1fr; }
  /* スマホでも各行を1行に保ち、<br>で2行に収める（spanはnowrapのまま）。
     1行目「駐車場管理の「困った」に、」13文字が画面幅に収まるサイズに縮小 */
  .isshin-mv__title { font-size: clamp(20px, 6.4vw, 30px); }

  /* フッターナビ（SITEMAP）をスマホで非表示 */
  .isshin-footer__col--nav { display: none; }

  /* トップ：FLOW誘導文をスマホで左寄せ（中央寄せの auto マージンを解除） */
  .isshin-sec-head--center .isshin-lead--sp-left { text-align: left; margin-left: 0; margin-right: 0; }

  /* parking：マネーガード見出しを1行に収める */
  .isshin-guard__title { font-size: clamp(17px, 5vw, 26px); white-space: nowrap; }

  /* company：注意見出しを1行に収める */
  .isshin-notice__title { font-size: clamp(14px, 4.4vw, 18px); white-space: nowrap; }
}
