@charset "utf-8";
/* CSS Document */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0;
}

.container p{
margin-bottom: 1em;
line-height: 1.8em;
}

.container img{
max-width: 900px;
width: 100%;
height: auto;
}
 .container img.logo{
max-width: 450px;
width: 100%;
height: auto;
margin: 0 auto;
display: block;
}

/* FV */
.fv {
  height: 30vh;
  position: relative;
  background: linear-gradient(135deg, #0f3c78, #2b6cb0);
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
/* オーバーレイ */
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* ← 濃さはここで調整 */
  z-index: 1;
}

/* テキストを前面に */
.fv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* 初期状態（非表示） */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 表示状態 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fv-inner {
  width: 100%;
}

.fv h1 {
  font-size: 42px;
  line-height: 2em;
  font-weight: 500;
  letter-spacing: 2px;
}

.fv p {
  font-size: 18px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.fv h1,
.fv p {
  font-family: "source-han-serif-jp-variable", sans-serif;
font-variation-settings: "wght" 500;
}

.sp-only{
display: none;
}

/* ボタン */
.btn {
  display: block;          /* ← これ重要 */
  width: fit-content;      /* 中身のサイズに */
  margin: 40px auto 20px;          /* 中央寄せ */
  padding: 10px 28px;
  background: #0f3c78;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn.large {
  font-size: 20px;
}

/* セクション */
section {
  background: #fff;
}

.section-title {
  display: block;
  width: fit-content;   /* 文字幅にする */
  margin: 0 auto 60px;  /* ← これで中央 */
  font-size: 40px;
  font-weight: 600;
  color: #222;
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

h3{
margin-top: 60px;
margin-bottom: 20px;
font-size: 26px;
}

/* 「システムリンク」に込めた思い */
.jobs{
background: #f6f6f6;
}
.img{
background: #f6f6f6;
}

/* ソリューション */
/* カード */
.job-card {
  background: #fff;
  padding: 30px 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  margin-top: 25px;
}

.job-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dotted #bbb;
  margin-top: 0;
}

.job-card:hover {
  transform: translateY(-5px);
}


/* フッター */
.cta {
  background: #0f3c78;
  color: #fff;
  text-align: left;
}
#footer .container p{
font-size: 16px;
}
#footer .container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 30px;
}


/* 初期状態 */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示状態 */
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   レスポンシブ（スマホ）
========================= */
@media screen and (max-width: 768px) {

  .container {
    padding: 30px 0;
  }

  .fv {
    height: auto;
    padding: 40px 20px;
  }

  .fv h1 {
    font-size: 26px;
    line-height: 1.4;
  }

  .fv p {
    font-size: 16px;
  }

 .section-title {
    font-size: 24px;
	margin-bottom: 40px;
	text-align: center;
	line-height: 1.2em;
  }

  .job-card {
    padding: 20px 20px 10px;
  }
  .job-card h3{
  text-align: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .btn.large {
    font-size: 18px;
	line-height: 1.2em;
  }
.sp-only{
display: inline;
}
 .container img.logo{
width: 80%;
}
h3{
margin-top: 30px;
margin-bottom: 20px;
font-size: 20px;
}
#footer .container p{
font-size: 14px;
line-height: 1.3em;
}
a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
}

}

/* =========================
   タブレット
========================= */
@media screen and (min-width: 769px) and (max-width: 1024px) {

  .fv h1 {
    font-size: 34px;
  }

}