@charset "utf-8";

/* =========================
   Reset CSS (Modern)
========================= */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin / Padding リセット */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* body 基本設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
}

/* リスト */
ul,
ol {
  list-style: none;
}

/* 画像 */
img,
picture {
  display: block;
}

/* フォーム系 */
input,
button,
textarea,
select {
  font: inherit;
}

/* ボタン */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* リンク */
a {
  text-decoration: none;
  color: inherit;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* 強調 */
strong {
  font-weight: bold;
}

/* フォーカス（アクセシビリティ） */
:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}




/* CSS Document */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Noto Sans JP',sans-serif;
color:#333;
line-height:1.8;
background:#fff;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

.container{
width:min(1200px,92%);
margin:auto;
}

.container h2{
  font-weight: bold;
}
@media(max-width:768px){

  .container{
    width:calc(100% - 40px);
    max-width:none;
    margin:0 auto;
  }

}

section{
padding:40px 0;
}

.pc{
display:block;
}

.sp{
display:none;
}

/* =====================
FV
===================== */

.fv{
padding:0;
  background: #f7fafe;
}

.fv img{
  width: 100%;
max-width: 1404px;
display:block;
  margin: 0 auto;
}

/* =====================
CTA
===================== */

.cta{
text-align:center;
padding:60px 0 0;
}
@media(max-width:768px){
  .cta{
  padding:30px 0 0;
}
}
.btn{
display:inline-block;
background:#ff6516;
color:#fff;
font-size:30px;
font-weight:700;
padding:15px 80px;
border-radius:10px;
transition:.3s;
}

.btn:hover{
opacity:.85;
}

/* =====================
見出し
===================== */

.sec-title{
text-align:center;
font-size:30px;
font-weight:700;
margin-bottom:30px;
}

.sec-title span{
font-size:40px;
font-weight:900;
color:#0E3FA9;
}

/* =====================
悩み
===================== */

.worry-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.worry-card{
background:#f7f9fd;
border-radius:10px;
padding:25px;
text-align:center;
}

.worry-card img{
margin:0 auto 15px;
}

.worry-card p{
font-size:14px;
font-weight:500;
  line-height: 130%;
}
@media(max-width:768px){
  .worry-card{
padding:10px;
}
  .worry-card p{
font-size:12px;
}
}

/* =====================
解決
===================== */

.solution{
padding-top:30px;
padding-bottom:40px;
text-align:center;
}

.solution h2{
font-size:30px;
font-weight:700;
  display: flex;
  justify-content: center; /* 横方向を中央 */
  align-items: center;     /* 縦方向を中央 */
  gap: 8px;
}



.solution .starlinktxt{
font-size:40px;
color:#0E3FA9;
}

@media(max-width:768px){
  .solution{
    padding-bottom: 20px;
  }
  
  .solution h2{
font-size:20px;
}

.solution .starlinktxt{
font-size:26px;
  line-height: 130%;
}
}

/* =====================
理由
===================== */

.reason{
background:#0E3FA9;
color:#fff;
margin-bottom: 30px;
}


.reason-title{
text-align:center;
font-size:30px;
font-weight:700;
margin-bottom:30px;
}

.reason-title span{
font-size:40px;
color:#ffe100;
}

.reason-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
  max-width:920px;
  margin:0 auto;
}

@media(max-width:768px){
  .reason-title{
font-size:20px;
margin-bottom:10px;
    line-height: 130%
}

.reason-title span{
font-size:28px;
}

}

.reason-card{
background:#fff;
color:#333;
padding:20px;
border-radius:10px;
display: flex;
  font-size: 12px;
  line-height: 150%;
  grid-gap: 15px;
}

.reason-no{
width:50px;
height:50px;
border-radius:50%;
background:#0E3FA9;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:22px;
margin-bottom:20px;
}

.reason-card h3{
font-size:16px;
color:#0E3FA9;
margin-bottom:15px;
  line-height: 140%;
  font-weight: bold;
}

.leftbox{
  width:88px;
  min-width:88px;
  flex:0 0 88px;
}

.reason-card .leftbox img{
  width:88px;
  height:88px;
  max-width:none;
  flex-shrink:0;
}

@media(max-width:768px){
  .reason-card{
  grid-gap: 10px;
}
}

/* =====================
数字
===================== */

.line-title{
display:flex;
align-items:center;
justify-content:center;
gap:30px;
margin-bottom:30px;
}

.line-title:before,
.line-title:after{
content:"";
width:180px;
height:2px;
background:#cbd9ff;
}

.line-title span{
font-size:24px;
font-weight:700;
}

.data-grid{
display:flex;
justify-content:center;
gap:100px;
text-align:left;
  font-size: 12px;
  
}
  .data-item{
    display: flex;
    grid-gap: 20px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

.data-item .leftbox{
  width:60px;      /* アイコン領域を固定 */
  flex-shrink:0;
}

.data-item .rightbox{
  text-align:left; /* 文字を左揃え */
}
.data-item img{
margin:auto;
}

  .data-item p{
    display: block;
    line-height: 100%;
  }
.data-item strong{
display: inline-block;
font-size:30px;
font-weight:900;
color:#0E3FA9;
line-height:1.2;
}
@media(max-width:768px){

  .data-item{
    justify-content:flex-start;
    width:220px;
    margin:0 auto;
  }

  .data-item .leftbox{
    width:60px;
    flex-shrink:0;
  }

  .data-item .rightbox{
    width:140px;
    text-align:left;
  }
  .data-item strong{
font-size:20px;
}

}

/* =====================
社員の声
===================== */

.voice-title{
text-align:center;
font-size:30px;
font-weight:700;
color:#0E3FA9;
margin-bottom:30px;
}

.voice-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.voice-card{
border:3px solid #bfd2ff;
border-radius:10px;
padding:25px 20px 10px 10px;
}

.voice-card h3{
font-size:16px;
color:#0E3FA9;
text-align:center;
margin-bottom:20px;
  font-weight: bold;
  line-height: 150%;
}

.voice-profile{
display:flex;
gap:5px;
margin-bottom:20px;
align-items:flex-start;
font-size: 12px;
  line-height: 150%;
}
.profleft{
  width:100px;
  flex-shrink:0;    /* ←縮まない */
  display:flex;
  flex-direction:column;
  align-items:center; /* 横方向中央 */
  text-align:center;
}
.voice-profile p{
  font-size: 12px;
  line-height: 150%;
  margin-top: 15px;
  text-align: center;
}

.voice-thumb{
width:90px;
height:90px;
object-fit:cover;
border-radius:50%;
}

.voice-info{
  flex:1;           /* ←残り幅を使用 */
  min-width:0;

}

.voice-info p{
  font-size:12px;
line-height: 160%;
  text-align: left;
}

@media(max-width:768px){
  .voice-title{
font-size:20px;
    margin-bottom: 20px;
}
}

/* =====================
福利厚生
===================== */

.benefit-title{
text-align:center;
font-size:30px;
font-weight:700;
color:#0E3FA9;
margin-bottom:30px;
}
  


.benefit-wrap{
border:3px solid #bfd2ff;
  border-radius:10px;
  display:grid;
  grid-template-columns:repeat(3,1fr);

  max-width:920px;
  margin:0 auto 60px;
}

.benefit-item{
padding:40px;
text-align:center;
position:relative;
  font-size: 14px;
  line-height: 130%;
  font-weight: bold;
}

.benefit-item img{
width:45px;
margin:auto;
margin-bottom:15px;
}

.benefit-item:not(:last-child)::after{
content:"";
position:absolute;
right:0;
top:25px;
bottom:25px;
width:1px;
background:#bfd2ff;
}
@media(max-width:768px){
  .benefit-title{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .benefit-wrap{
  margin:0 auto 30px;
}
}
/* =====================
下CTA
===================== */

.bottom-cta{
background:#0E3FA9;
text-align:center;
color:#fff;
}

.bottom-cta h2{
font-size:30px;
font-weight: bold;
margin-bottom:40px;
}

.bottom-cta span{
color:#ffe100;
}

/* =====================
footer
===================== */

footer{
padding:40px 20px;
text-align:center;
font-size:12px;
}

/* =====================
SP
===================== */
@media(max-width:900px){
.voice-grid{
grid-template-columns:1fr;
}
}


@media(max-width:768px){

section{
padding:30px 0;
}

.pc{
display:none;
}

.sp{
display:block;
}

.btn{
font-size:20px;
padding:12px 30px;
}

.sec-title{
font-size:20px;
  margin-bottom: 20px;
}
.sec-title span {
    font-size: 26px;
}

.worry-grid{
grid-template-columns:repeat(2,1fr);
}

.reason-grid{
grid-template-columns:1fr;
}

.data-grid{
flex-direction:column;
gap:30px;
}

.voice-grid{
grid-template-columns:1fr;
}

.benefit-wrap{
grid-template-columns:1fr;
}

.benefit-item:not(:last-child)::after{
display:none;
}

.benefit-item{
border-bottom:1px solid #bfd2ff;
  font-size: 14px;
}

.bottom-cta h2{
font-size:20px;
  line-height: 130%;
  margin-bottom: 20px;
}

.line-title:before,
.line-title:after{
width:50px;
}

.line-title span{
font-size:18px;
  line-height: 130%;
  text-align: center;
}

}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/*フッター*/
.footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 50px;
}

@media (max-width: 767px) {
    .footer-nav {
        display: block;
        margin-bottom: 60px;
    }
}

/*追従ボタン*/
.floating-btn {
  position: fixed;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  display: none;
}
@media (max-width: 767px) {
    .floating-btn {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 10px;
    }
}

.pageTop {
  bottom: 86px;
  display: none;
}
.top-js {
  position: fixed;
  bottom: 140px;
  right: 16px;
  z-index: 10;
  width: 50px;
  height: 50px;
}
.top-button-js {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  color: transparent;
  text-indent: 100%;
  white-space: nowrap;
  background-color: #606060;
  border-radius: 4px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0.5;
}

.top-button-js::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;

  width: 12px;
  height: 12px;

  border-top: 3px solid #fff;
  border-left: 3px solid #fff;

  transform: translateX(-50%) rotate(45deg);
}

@media (max-width: 767px) {
  .top-js {
    position: fixed;
    bottom: 80px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
  }

  .top-button-js::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 50%;
  }
}
