@charset "UTF-8";
body {
  font-family: "BIZ UDPMincho", serif;
  line-height: 1.75;
  background-color: var(--white);
  color: var(--text);
}

html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
}
@media (max-width: 767px) {
  a {
    font-size: 13px;
  }
}

ul {
  list-style-type: square;
  list-style-position: inside;
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 767px) {
  ul {
    font-size: 12px;
  }
}

ol {
  list-style-position: inside;
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
}

dl {
  font-size: 15px;
}
@media (max-width: 767px) {
  dl {
    font-size: 12px;
  }
}

:root {
  --main: #C7F0FF;
  --sub: #003960;
  --text: #003960;
  --white: #ffffff;
  --bg: #e4f8ff;
  --line: #DDDDDD;
  --red: #FF0000;
  --gradation: linear-gradient(90deg, #071a33 0%, #123a72 45%, #4f86d9 100%);
}

h2 {
  font-size: 30px;
  margin-bottom: 55px;
  text-align: center;
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
  }
}

p {
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 1.5;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  p {
    font-size: 13px;
  }
}

/* 部品
------------------------------------------ */
.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: inline-block;
  }
}

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

.sp-br,
.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .sp-br,
  .br-sp {
    display: inline;
  }
}

section {
  margin-bottom: 60px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}

/* セクションタイトル
------------------------------------------ */
.stack-title {
  /* 調整しやすい変数 */
  --blue-w: min(720px, 82vw);
  /* 青帯の横幅 */
  --blue-h: 110px;
  /* 青帯の高さ */
  --gray-h: 105px;
  /* 灰色帯の高さ */
  --gray-offset-x: 345px;
  /* 灰色帯の開始位置（左から） */
  --gray-offset-y: 37px;
  /* 灰色帯の縦ずらし（下へ） */
  position: relative;
  margin: 50px 0 60px;
  height: calc(var(--blue-h) + var(--gray-offset-y));
  /* 灰色が下に出る分確保 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 3;
}
@media (max-width: 767px) {
  .stack-title {
    margin: 25px 0 40px;
  }
}
.stack-title__text {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--blue-h);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: clamp(18px, 2.4vw, 26px);
  text-align: center;
  padding: 0 24px 20px;
}
@media (max-width: 767px) {
  .stack-title__text {
    font-size: 20px;
    padding: 0 0 10PX;
  }
}
.stack-title {
  /* 青い帯（上） */
}
.stack-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 65%;
  height: var(--blue-h);
  background: var(--gradation);
  z-index: 2;
}
@media (max-width: 767px) {
  .stack-title::before {
    width: 81%;
  }
}
.stack-title {
  /* 灰色の帯（下：右方向に伸ばす） */
}
.stack-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: var(--gray-offset-y);
  width: 65%;
  height: var(--gray-h);
  background: #F0F0F0;
  z-index: 1;
}
@media (max-width: 767px) {
  .stack-title::after {
    width: 70%;
  }
}

/* モバイル調整 */
@media (max-width: 480px) {
  .stack-title {
    --blue-w: min(640px, 92vw);
    --blue-h: 75px;
    --gray-h: 75px;
    --gray-offset-x: 120px;
    --gray-offset-y: 30px;
  }
}
.heading {
  position: relative;
  padding: 0px 0px 0px 37px;
  margin: 35px 0 15px;
}
.heading::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  width: 25px;
  height: 10px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #071a33, #123a72 13%, #4f86d9);
  border-radius: 999px;
  /* 端を丸く */
}
.heading_h3 {
  text-align: center;
  font-size: 18px;
  padding-bottom: 10px;
}

.bold {
  font-weight: bold;
}

.red {
  color: var(--red);
}

.paragraph {
  text-indent: -1em;
  padding-left: 1em;
}

.flex {
  display: flex;
}

.logo-name {
  width: 180px;
}
@media (max-width: 767px) {
  .logo-name {
    width: 130px;
  }
}

.btn-line {
  text-decoration: underline;
}

/*ボタン
------------------------------------------ */
.button {
  display: block;
  max-width: 240px;
  width: 100%;
  height: 52px;
  line-height: 55px;
  background-color: var(--sub);
  text-align: center;
  position: relative;
  color: var(--white);
  padding-right: 8px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .button {
    max-width: 100%;
    font-size: 12px;
    height: 48px;
  }
}

/* ボタンの矢印（疑似要素の場合） */
.button::before,
.button::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background-color: var(--white);
  right: 20px;
}
@media (max-width: 767px) {
  .button::before,
  .button::after {
    height: 11px;
    right: 9px;
  }
}

.button::before {
  transform: rotate(45deg);
  top: 23px;
}

.button::after {
  transform: rotate(-45deg);
  bottom: 23px;
}
@media (max-width: 767px) {
  .button::after {
    bottom: 20px;
  }
}

/* ボタンにカーソルをのせたとき */
.button:hover {
  background-color: #008ae6;
  color: var(--white);
}

/* ヘッダー
------------------------------------------ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main);
  z-index: 1000;
}
@media (max-width: 767px) {
  .header {
    height: 67px;
  }
}

@media (max-width: 843px) {
  .header-sp {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header .name {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--sub);
}

.header .name h1 {
  font-size: 20px;
  margin: 0;
  line-height: 1;
}

/* mainvisualがヘッダーに隠れないように */
main {
  padding-top: 72px;
}

/* =========================
   Hamburger Button（SP）
========================= */
.hamburger-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-btn span {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--sub);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.hamburger-btn span + span {
  margin-top: 6px;
}

/* ボタンがopenの時（×にする） */
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   SP：メニュー（最初は非表示）
   - overlay + 右からスライド
========================= */
.hamburger-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

/* 背景（暗幕） */
.hamburger-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* パネル本体 */
.hamburger-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100%;
  background: var(--sub);
  padding: 92px 20px 24px;
  /* ヘッダー分余白 */
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
@media (max-width: 843px) {
  .hamburger-nav {
    padding: 56px 30px 20px 50px;
  }
}

/* open時だけ表示 */
.hamburger-menu.open {
  pointer-events: auto;
}

.hamburger-menu.open::before {
  opacity: 1;
}

.hamburger-menu.open .hamburger-nav {
  transform: translateX(0);
}

/* メニューリスト */
.header__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 38px;
}
@media (max-width: 843px) {
  .header__list {
    gap: 10px;
  }
}

.header__item a {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--sub);
  font-weight: 600;
}
@media (max-width: 843px) {
  .header__item a {
    color: var(--white);
  }
}

.header__item a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* スクロール抑止（JSで付け外し） */
body.is-locked {
  overflow: hidden;
}

/* =========================
  PC：メニュー常時表示（横並び）
========================= */
@media (min-width: 843px) {
  /* ハンバーガーボタンは不要 */
  .hamburger-btn {
    display: none;
  }
  /* overlay解除して通常ナビにする */
  .hamburger-menu {
    position: static;
    inset: auto;
    pointer-events: auto;
    z-index: auto;
  }
  .hamburger-menu::before {
    display: none;
  }
  .hamburger-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    transform: none;
    transition: none;
  }
  .header__list {
    display: flex;
    align-items: center;
    gap: 38px;
  }
  .header__item a {
    padding: 8px 0;
    border-radius: 0;
  }
  .header__item a:hover {
    background: none;
    opacity: 0.85;
  }
  body.is-locked {
    overflow: auto;
  }
}
/* mainVisual
------------------------------------------ */
.mainvisual {
  position: relative;
}
.mainvisual-img {
  height: 90vh;
  position: relative;
}
.mainvisual p {
  font-size: 32px;
  position: absolute;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .mainvisual p {
    font-size: 20px;
  }
}
.mainvisual-text {
  position: absolute;
  top: 64%;
  right: 8%;
}

/* greet
------------------------------------------ */
.greet-box {
  display: flex;
  gap: 60px;
}
.greet-img {
  height: 180px;
  width: auto;
}
@media (max-width: 767px) {
  .greet-img {
    height: 135px;
    width: 190px;
    margin: 0 auto;
  }
}
.greet p {
  font-size: 1.5rem;
  letter-spacing: 5px;
  line-height: 1.5;
  max-width: 830px;
}
@media (max-width: 767px) {
  .greet p {
    font-size: 13px;
  }
}

/* 強み
------------------------------------------ */
/* =========
  Strengths section
========= */
.greet,
.strengths {
  padding: 56px 0;
  background: var(--white);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  color: var(--sub);
  position: relative;
}

@media (max-width: 767px) {
  .greet-box {
    flex-direction: column;
  }
}

.greet-box,
.strengths__container {
  margin: 0 0 0 155px;
  background: var(--bg);
  /* 薄い水色の面 */
  padding: 75px 56px 55px;
}
@media (max-width: 767px) {
  .greet-box,
  .strengths__container {
    margin: 0 0 0 40px;
    padding: 50px 30px 35px;
  }
}

/* 左上の帯 */
.greet__title,
.strengths__title {
  position: absolute;
  top: 15px;
  left: 0;
  margin: 0;
  z-index: 10;
}

.greet__title-text,
.strengths__title-text {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: min(520px, 70vw);
  height: 75px;
  padding: 0 0 0 265px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 30px;
  background: var(--gradation);
}
@media (max-width: 843px) {
  .greet__title-text,
  .strengths__title-text {
    padding: 0 0 0 184px;
  }
}
@media (max-width: 767px) {
  .greet__title-text,
  .strengths__title-text {
    padding: 0 0 0 67px;
    height: 62px;
    font-size: 24px;
  }
}

/* 中のレイアウト */
.strengths__grid {
  display: grid;
  gap: 35px;
  width: 831px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .strengths__grid {
    width: 100%;
  }
}

/* =========
  Point block
========= */
.point {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .point {
    gap: 10px;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .point--left {
    flex-direction: column-reverse;
  }
}

.point__label {
  margin: 0 0 10px;
  font-size: 50px;
  /* POINT の大きさ */
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--sub);
  /* 見出し青 */
}

.point__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: var(--sub);
}
@media (max-width: 767px) {
  .point__text {
    font-size: 12px;
  }
}

.point__media {
  margin: 0;
}

.point__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  max-width: 350px;
}
@media (max-width: 767px) {
  .point__media img {
    width: 220px;
  }
}

/* =========
  Responsive
========= */
@media (max-width: 860px) {
  .strengths__container {
    padding: 48px px 56px 20px;
  }
  .point,
  .point--left {
    grid-template-columns: 1fr;
  }
  .point__label {
    font-size: 32px;
  }
  .strengths__title-text {
    width: min(420px, 84vw);
  }
}
/* ボタン------------------ */
/* 説明文の左右に斜線 */
.entry-cta__lead {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 25px;
  color: #333;
  font-size: 14px;
}
.entry-cta__lead::before {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--sub);
  transform: rotate(-135deg);
  opacity: 0.7;
}
.entry-cta__lead::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--sub);
  transform: rotate(-35deg);
  opacity: 0.7;
}
.entry-cta {
  /* ボタン＋バッジの親（ここを基準に重ねる） */
}
.entry-cta__action {
  text-align: center;
  margin: 25px 0 60px;
}
.entry-cta {
  /* ボタン */
}
.entry-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  height: 54px;
  padding: 0 24px 0 37px;
  /* 左にバッジ分の余白 */
  border-radius: 6px;
  background: var(--sub);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}
.entry-cta__btn:hover {
  background-color: #008ae6;
  color: var(--white);
}
@media (max-width: 767px) {
  .entry-cta__btn {
    font-size: 13px;
  }
}
.entry-cta {
  /* バッジ（円） */
}
.entry-cta__badge {
  position: absolute;
  left: -27px;
  top: 50.5%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sub);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--sub);
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .entry-cta__badge {
    left: -24px;
    top: 50.5%;
  }
}

/* バッジ内の文字 */
.entry-cta__badge .badge-sub {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.entry-cta__badge .badge-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-weight: 800;
}

.entry-cta__badge .one {
  font-size: 26px;
}

.entry-cta__badge .minute {
  font-size: 12px;
}

.buttons-bottom {
  display: flex;
  gap: 20px;
  max-width: 410px;
  margin: 0 auto;
}
.buttons {
  width: auto;
  margin: 0 auto;
}
/* footer
------------------------------------------ */
.footer {
  min-height: 170px;
  margin: 0 auto;
  text-align: left;
  background-color: var(--main);
  color: var(--sub);
}
@media (max-width: 767px) {
  .footer {
    min-height: 150px;
  }
}
.footer-list {
  display: flex;
  gap: 20px;
  list-style: none;
  text-indent: 0em;
  margin-bottom: 20px;
  letter-spacing: 2px;
  justify-content: space-between;
  padding: 0 35px 20px;
}
@media (max-width: 767px) {
  .footer-list {
    flex-direction: column;
  }
}
.footer-list a {
  color: var(--sub);
}
.footer-copyright {
  font-size: 10px;
  text-align: center;
}

.company_name {
  text-align: left;
  padding-top: 20px;
  margin-bottom: 15px;
}

.corporate {
  margin: 0px 0 100px;
}
.corporate a {
  text-decoration: underline;
}

/* ===== 会社案内（dl） ===== */
.lead-box {
  /* 中央寄せ + 幅 */
  max-width: 980px;
  margin: 0 auto 48px;
  padding: 0;
  /* 表っぽい見た目 */
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  /* dt / dd を2列に */
  display: grid;
  grid-template-columns: 220px 1fr;
}

/* dt, dd 共通 */
.lead-box dt,
.lead-box dd {
  margin: 0;
  padding: 20px 22px;
  border-top: 1px solid var(--line);
  line-height: 1.9;
  font-size: 15px;
}
@media (max-width: 767px) {
  .lead-box dt,
  .lead-box dd {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .lead-box dt ul,
  .lead-box dd ul {
    font-size: 12px;
  }
}

/* 左カラム */
.lead-box dt {
  background: var(--bg);
  font-weight: 700;
  text-align: center;
}

/* 右カラム */
.lead-box dd {
  background: var(--white);
}

/* 最初の行の上線を消す（見た目調整） */
.lead-box dt:first-of-type,
.lead-box dd:nth-of-type(1) {
  border-top: none;
}

/* iframe（Google Map）を“枠内で大きく・レスポンシブ”に */
.lead-box iframe {
  display: block;
  width: 100%;
  height: 360px;
  /* 好みで */
  margin-top: 18px;
  border: 0;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .lead-box {
    grid-template-columns: 1fr;
    margin: 0 auto 10px;
  }
  .lead-box dt {
    border-right: none;
    padding: 14px 16px;
  }
  .lead-box dd {
    padding: 14px 16px 18px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .lead-box iframe {
    height: 280px;
  }
}
.greeting-link {
  margin-left: 15px;
}
.greeting-box {
  display: flex;
  gap: 60px;
}

.bussiness {
  margin: 0px 0 120px;
}
.bussiness p {
  padding-bottom: 40px;
}
.bussiness-box {
  display: flex;
  gap: 2%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .bussiness-box {
    flex-direction: column;
    gap: 30px;
  }
}
.bussiness-item {
  background-color: var(--bg);
  padding: 15px;
  width: 48%;
}
@media (max-width: 767px) {
  .bussiness-item {
    width: 100%;
  }
}
.bussiness-item h4 {
  padding-bottom: 10px;
}
.bussiness-list li {
  padding-bottom: 5px;
}

.protection-list {
  margin-bottom: 20px;
}

/* 社長ご挨拶
------------------------------------------ */
.president {
  text-align: right;
  padding: 10px 0 30px;
}

.greeting {
  margin-top: 30px;
}
.greeting-img {
  width: 200px;
  height: auto;
  padding-bottom: 10px;
}

.philosophy dd {
  margin-bottom: 15px;
}

.partner-item-btn {
  display: flex;
  max-width: 545px;
  margin-bottom: 20px;
  gap: 5px;
}
.partner-item-btn a {
  margin: 0 auto;
}

.contract-btn {
  font-size: 14px;
}
@media (max-width: 767px) {
  .contract-btn {
    font-size: 10px;
  }
}

.partner-item {
  margin: 20px 5px 20px 30px;
}
@media (max-width: 767px) {
  .partner-item {
    margin: 0;
  }
}
.partner-item p {
  padding-bottom: 30px;
}

#employee,
#contract {
  padding-top: 50px;
}

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

.partner-box {
  display: flex;
}
@media (max-width: 767px) {
  .partner-box {
    flex-direction: column;
    margin: 0 auto;
  }
}
.partner-box img {
  width: 300px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .partner-box img {
    margin: 0 auto;
    padding-bottom: 15px;
    width: 235px;
  }
}
.partner-inner {
  padding: 15px 10px 5px 30px;
}
@media (max-width: 767px) {
  .partner-inner {
    padding: 10px 0px 5px 0px;
    font-size: 13px;
  }
}
.partner-btn {
  width: 155px;
}

#lead-bp,
#engineer-bp,
#sales-bp {
  padding-top: 50px;
}

/* ===== FAQ ===== */
.faq {
  padding: 46px 0 45px;
  background: var(--white);
}

.qa-heading {
  font-size: 20px;
  position: relative;
  margin: 0 0px 0 100px;
}
@media (max-width: 767px) {
  .qa-heading {
    font-size: 17px;
    margin: 0 0px 0 55px;
  }
}
.qa-heading::before {
  background-color: var(--line);
  position: absolute;
  content: "";
  height: 3px;
  width: 45px;
  top: 16px;
  left: -52px;
}
@media (max-width: 767px) {
  .qa-heading::before {
    width: 33px;
    left: -41px;
  }
}
.qa-heading::after {
  background-color: var(--line);
  position: absolute;
  content: "";
  height: 3px;
  top: 16px;
}
@media (max-width: 767px) {
  .qa-heading::after {
    display: none;
  }
}
.qa {
  /* ライン左------------------------ */
}
.qa-general::after {
  width: 455px;
  left: 333px;
}
.qa-staff::after {
  width: 362px;
  left: 435px;
}
.qa-desired::after {
  width: 492px;
  left: 305px;
}
.qa-welfare::after {
  width: 570px;
  left: 228px;
}
.qa-other::after {
  width: 665px;
  left: 130px;
}
.qa_list {
  list-style: none;
  padding: 0 0 30px;
  margin: 0;
  text-indent: 0em;
  padding-left: 0em;
}
.qa_item {
  margin: 14px 0 14px 50px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #e6ecef;
}
.qa_item p {
  padding-bottom: 0px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .qa_item p {
    font-size: 12px;
  }
}
.qa_question {
  width: 100%;
  display: grid;
  grid-template-columns: 22px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 10px 18px;
  background: var(--main);
  text-align: left;
  color: #313131;
  font-size: 15px;
  line-height: 1.6;
}
.qa_question:focus-visible {
  outline: 2px solid #376FB9;
  outline-offset: 2px;
}
.qa_qmark {
  padding-right: 20px;
  color: #376FB9;
  font-weight: bold;
}
.qa_amark {
  color: #FF914B;
  padding-right: 20px;
  font-weight: bold;
}

/* 右側のV（開閉） */
.qa_chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid #376FB9;
  border-bottom: 2px solid #376FB9;
  transform: rotate(45deg);
  justify-self: end;
  transition: transform 0.2s ease;
}

/* 開いたら上向きっぽく */
.qa_question[aria-expanded=true] .qa_chev {
  transform: rotate(-135deg);
}

/* 回答（アニメ用に高さを制御） */
.qa_answer {
  background: #f4fafd;
  overflow: hidden;
  height: 0;
  /* JSで制御 */
}

.qa_answer__inner {
  display: flex;
  padding: 16px 18px 18px;
  font-size: 15px;
  line-height: 1.8;
  border-top: 1px solid #e6ecef;
}

@media (max-width: 600px) {
  .qa_question {
    padding: 14px 14px;
    font-size: 14px;
    grid-template-columns: 20px 1fr 16px;
    gap: 10px;
  }
  .qa_answer__inner {
    padding: 14px 14px 16px;
    font-size: 14px;
  }
  .qa_item {
    margin: 14px 0 14px 15px;
  }
}
/* =========
  Job Detail案件情報

========= */
.job-detail {
  margin: 24px auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

.job-detail__cta {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #6b6b6b;
  color: #111;
  background-color: #eee;
  text-decoration: none;
  border-radius: 2px;
  font-size: 13px;
  line-height: 1;
}
@media (max-width: 767px) {
  .job-detail__cta {
    font-size: 12px;
  }
}

.job-detail__cta:hover {
  background: #e9e9e9;
}

.job-detail__table-wrap {
  border: 1px solid #3a3a3a;
  margin: 0 auto 50px;
  max-width: 765px;
}

/* =========
  Table
========= */
.job-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: var(--white);
  font-size: 13px;
}
.job-table-item {
  display: flex;
  justify-content: space-between;
}
.job-table p {
  padding-bottom: 0px;
}
.job-table th {
  border: 1px solid #3a3a3a;
  padding: 10px 12px;
  vertical-align: top;
  width: 25%;
  background: var(--bg);
  /* 左の水色 */
  text-align: center;
}
.job-table td {
  border: 1px solid #3a3a3a;
  padding: 10px 12px;
  vertical-align: top;
  background: var(--white);
}

.job-detail-box {
  margin-bottom: 50px;
}

.job-detail-btn {
  margin: 0 auto 50px;
}

/* =========
  Responsive
========= */
@media (max-width: 560px) {
  .job-table th {
    width: 82px;
    white-space: normal;
  }
  .job-table__footer-grid {
    grid-template-columns: 1fr;
  }
  .job-table__footer-item + .job-table__footer-item {
    border-left: none;
    border-top: 1px solid #3a3a3a;
  }
}
/* ページネーション
------------------------------------------ */
.pager {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.pager__list {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.pager__item {
  margin: 0 10px;
}

.pager__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  margin: 0 auto;
  background: #fff;
  color: #333;
  text-decoration: none;
  line-height: 1;
}

.pager__link.is-current {
  background: #dcdcdc;
  border-color: #cfcfcf;
  font-weight: 600;
  pointer-events: none;
}

.pager__link--next {
  padding: 0 10px;
  letter-spacing: 0.02em;
  width: 80px;
}

.pager__link:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

.blue {
  color: #008ae6;
}

.entry-form__inner {
  max-width: 665px;
  margin: 0 auto 80px;
  position: relative;
  padding: 35px 45px;
  background-color: var(--bg);
}

.mail-address-box {
  display: flex;
}
.mail-address-box img {
  width: 140px;
  height: 25px;
  padding-top: 5px;
}
.mail-address-box p {
  font-size: 14px;
}

.entry-form__inner > * {
  position: relative;
}

.entry-form__note {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

/* ===== フォームレイアウト ===== */
.form {
  display: block;
}

.form__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  /* 左ラベル幅 */
  gap: 10px 14px;
  align-items: center;
  margin: 15px 0;
}

.form__row--top {
  align-items: start;
}

.form__label {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

/* 入力類 */
.form__input,
.form__select,
.form__textarea {
  border: 1px solid #7a7a7a;
  background: #fff;
  color: #111;
  border-radius: 2px;
  font-size: 14px;
  padding: 6px 8px;
  outline: none;
}

.form__input {
  width: 220px;
  /* 画像の短め入力 */
  max-width: 100%;
  height: 28px;
}

.form__input--wide {
  width: 420px;
  /* mailだけ横長 */
  max-width: 100%;
}

.form__select {
  width: 234px;
  height: 35px;
  padding-right: 30px;
}

/* セレクト4つは縦に並ぶ */
.form__field--selects {
  display: grid;
  gap: 8px;
  justify-items: start;
}

/* テキストエリア */
.form__textarea {
  width: 420px;
  max-width: 100%;
  resize: vertical;
  min-height: 155px;
}
@media (max-width: 767px) {
  .form__textarea {
    width: 240px;
  }
}

.form__textarea--m {
  min-height: 110px;
}

.form__textarea--l {
  min-height: 140px;
}

/* ラジオ */
.form__radios {
  display: inline-flex;
  gap: 14px;
  align-items: center;
}

.radio {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.radio input {
  width: 16px;
  height: 16px;
}

/* 送信 */
.form__actions {
  margin-top: 14px;
  display: block;
  text-align: center;
}

.form__submit {
  width: 180px;
  height: 38px;
  border: 1px solid #333;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  color: var(--white);
  background-image: linear-gradient(0deg, #0e74f9, #093b80 50%, #050f22);
}

/* ===== スマホ対応：1列に ===== */
@media (max-width: 560px) {
  .form__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .form__actions {
    grid-template-columns: 1fr;
  }
  .form__input {
    width: 100%;
  }
  .form__submit {
    width: 100%;
  }
  .entry-title h2 {
    font-size: 15px;
  }
}
.btn-line-protection {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.entry-container {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .entry-container {
    padding: 10px;
  }
}
.entry-container-text-bottom {
  font-size: 12px;
}

.padding {
  padding-left: 64px;
}/*# sourceMappingURL=style.css.map */