/* =========================
   リセット
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Noto Sans JP",sans-serif;
color:#222;
line-height:1.7;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:inherit;
}


/* =========================
   レイアウト
========================= */
.business-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.business-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.narrow{
max-width:700px;
margin:auto;
text-align:center;
}

.container{
width:92%;
max-width:1100px;
margin:auto;
}

.section{
padding:120px 0;
}

.gray{
background:#f7f7f7;
}

h2{
font-size:22px;
margin-bottom:20px;
}


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

.header{
position:fixed;
top:0;
left:0;
width:100%;
background:white;
border-bottom:1px solid #eee;
z-index:1000;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:1;
}

.hero-text{
position:relative;
z-index:2;
}

.header a{
color:#222;
}

.header.scrolled{
background:white;
border-bottom:1px solid #eee;
color:#222;
}

.header.scrolled a{
color:#222;
}

.header-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
font-weight:bold;
font-size:20px;
}

.nav{
display:none;
flex-direction:column;
position:absolute;
top:60px;
right:20px;
background:white;
border:1px solid #eee;
padding:20px;
}

.nav a{
margin:10px 0;
font-size:15px;
}

.nav.open{
display:flex;
}

.logo img{
height:40px;
}

@media(max-width:768px){

.logo img{
height:32px;
}

}

/* ハンバーガー */

.menu-btn{
display:flex;
flex-direction:column;
cursor:pointer;
}

.menu-btn span{
width:26px;
height:3px;
background:black;
margin:4px 0;
}


/* =========================
   ヒーロー
========================= */

.hero{
height:80vh;
background:url("../images/hero.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
position:relative;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-text{
position:relative;
}

.hero h1{
font-size:56px;
font-weight:600;
letter-spacing:0.08em;
line-height:1.3;
}
.hero p{
font-size:18px;
margin-top:18px;
letter-spacing:0.04em;
opacity:0.9;
}

.hero h1,
.hero p{
text-shadow:0 5px 20px rgba(0,0,0,0.35);
}


/* =========================
   事業
========================= */

.business-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
margin-top:20px;
}

.business-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.business-card img{
height:170px;
object-fit:cover;
}

.business-card h3{
margin:15px;
font-size:17px;
}

.business-card p{
margin:0 15px 20px;
font-size:14px;
color:#555;
}


/* =========================
   ブランド
========================= */

.brand-grid{
display:grid;
grid-template-columns:1fr;
gap:25px;
}

.brand-card{
display:block;
text-decoration:none;
color:inherit;
border:1px solid #eee;
border-radius:10px;
overflow:hidden;
transition:0.3s;
}

.brand-card img{
width:100%;
height:220px;
object-fit:cover;
}

.brand-card h3{
margin:20px;
}

.brand-card p{
margin:0 20px 20px;
color:#555;
}

.brand-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* =========================
   ニュース
========================= */

.news{
list-style:none;
margin-top:15px;
}

.news li{
margin-bottom:10px;
font-size:14px;
}

.news span{
margin-right:10px;
color:#888;
font-size:13px;
}


/* =========================
   採用
========================= */

.recruit{
background:#111;
color:white;
text-align:center;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 26px;
background:white;
color:black;
font-weight:bold;
}


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

footer{
text-align:center;
padding:30px;
font-size:12px;
background:#f1f1f1;
}


/* =========================
   フェード
========================= */

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

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


/* =========================
   ローディング
========================= */

#loading{
position:fixed;
width:100%;
height:100%;
background:white;
display:flex;
align-items:center;
justify-content:center;
z-index:200;
}

.loader{
width:40px;
height:40px;
border:4px solid #eee;
border-top:4px solid black;
border-radius:50%;
animation:spin 1s linear infinite;
}

@keyframes spin{

0%{transform:rotate(0deg)}
100%{transform:rotate(360deg)}

}


/* =========================
   タブレット
========================= */

@media(min-width:768px){

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

.business-grid{
grid-template-columns:repeat(2,1fr);
}

.brand-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* =========================
   PC
========================= */

@media(min-width:1024px){

.section{
padding:100px 0;
}

.nav{
display:flex;
position:static;
border:none;
padding:0;
flex-direction:row;
}

.nav a{
margin-left:25px;
}

.menu-btn{
display:none;
}

.business-grid{
grid-template-columns:repeat(3,1fr);
}

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

}
/* =========================
   店舗一覧
========================= */

.store-grid{
display:grid;
grid-template-columns:1fr;
gap:25px;
margin-top:30px;
}

.store-card{
background:white;
border:1px solid #eee;
padding:20px;
border-radius:8px;
}

.store-card h3{
margin-bottom:10px;
}

.store-card iframe{
width:100%;
height:200px;
border:none;
margin-top:10px;
}


/* タブレット */

@media(min-width:768px){

.store-grid{
grid-template-columns:repeat(2,1fr);
}

}


/* PC */

@media(min-width:1024px){

.store-grid{
grid-template-columns:repeat(3,1fr);
}

}
/* =========================
   会社概要
========================= */

.company-table{
width:100%;
border-collapse:collapse;
margin-top:30px;
}

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

.company-table th{
width:180px;
color:#666;
}

.message{
font-size:18px;
font-weight:bold;
margin-bottom:20px;
line-height:1.8;
}

.btn{
display:inline-block;
margin-top:25px;
padding:14px 30px;
background:#111;
color:white;
font-weight:bold;
border-radius:4px;
}