/* ===============================
   基本設定
=============================== */

body{
font-family:'Noto Sans JP',sans-serif;
margin:0;
color:#333;
line-height:1.8;
padding-top:80px;
}

/* 背景ロゴ */

body::before{
content:"";
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:700px;
height:700px;
background:url("images/logo3.gif") no-repeat center;
background-size:contain;
opacity:0.06;
z-index:-1;
}

/* ===============================
   ヘッダー
=============================== */

header{
background:#ffffff;
box-shadow:0 2px 10px rgba(0,0,0,.08);
padding:18px 8%;
display:flex;
align-items:center;
justify-content:space-between;
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
}

.logo img{
height:44px;
}

/* ナビ */

nav{
display:flex;
align-items:center;
margin-left:auto;
flex-wrap:nowrap;
}

nav a{
margin-left:16px;
text-decoration:none;
color:#1f2d3d;
font-weight:500;
font-size:15px;
}

nav a:hover{
color:#1f6f4a;
}

/* お問い合わせボタン */

.btn{
background:#1f6f4a;
color:#fff;
padding:8px 18px;
border-radius:6px;
}

/* ハンバーガー */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}

/* ===============================
   HERO
=============================== */

.hero{
background:linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.25)),
url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80') center/cover;
height:70vh;
display:flex;
align-items:center;
color:white;
padding:0 8%;
}

.hero-inner{
max-width:800px;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
}

.hero p{
margin-top:10px;
font-size:18px;
line-height:1.8;
}

/* ===============================
   共通セクション
=============================== */

section{
padding:80px 8%;
}

.section-title{
text-align:center;
font-size:34px;
margin-bottom:40px;
}

/* グリッド */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
padding:25px;
}

/* ===============================
   テーブル
=============================== */

.company-table{
width:100%;
max-width:900px;
margin:auto;
border-collapse:collapse;
}

.company-table th,
.company-table td{
border-bottom:1px solid #ddd;
padding:14px;
text-align:left;
}

/* ===============================
   フォーム
=============================== */

.contact-form label{
display:block;
margin-top:10px;
margin-bottom:6px;
font-weight:600;
}

/* ===============================
   フッター
=============================== */

footer{
background:#0b0b0b;
color:#bbb;
padding:60px 8%;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
max-width:1200px;
margin:0 auto 40px auto;
}

.footer-title{
color:#fff;
font-weight:700;
margin-bottom:14px;
}

.footer-link{
display:block;
color:#bbb;
text-decoration:none;
margin-bottom:8px;
}

.footer-link:hover{
color:#fff;
}

.footer-brand{
font-size:20px;
font-weight:700;
color:#fff;
margin-bottom:10px;
}

.footer-bottom{
text-align:center;
font-size:13px;
border-top:1px solid #333;
padding-top:20px;
}
/* ===============================
   フェードアニメーション
=============================== */

.fade{
opacity:0;
transform:translateY(30px);
transition:1s;
}

.fade.show{
opacity:1;
transform:none;
}

/* ===============================
   採用ページテキスト
=============================== */

.entry-text{
margin:20px 0 30px;
font-size:20px;
}

/* ===============================
   スマホ対応
=============================== */

@media(max-width:768px){

/* ヘッダー */

header{
padding:12px 5%;
}

.logo img{
height:36px;
}

/* ハンバーガー */

.menu-toggle{
display:block;
}

/* ナビ */

nav{
display:none;
flex-direction:column;
background:#fff;
position:absolute;
top:60px;
left:0;
width:100%;
border-top:1px solid #eee;
}

nav a{
padding:15px;
border-bottom:1px solid #eee;
margin:0;
font-size:15px;
}

nav.active{
display:flex;
}

/* HERO */

.hero{
height:auto;
padding:120px 5% 80px;
text-align:center;
}

.hero h1{
font-size:26px;
}

.hero p{
font-size:15px;
}

/* セクション */

section{
padding:70px 5%;
}

/* グリッド */

.grid{
grid-template-columns:1fr;
}

/* テーブル */

.company-table th,
.company-table td{
display:block;
width:100%;
}

.company-table th{
font-weight:bold;
padding-bottom:0;
}

.company-table td{
padding-top:4px;
margin-bottom:10px;
}

/* フッター */

footer{
padding:30px 5%;
font-size:12px;
}

/* 採用ページ */

.entry-text{
font-size:16px;
}

}