@charset "utf-8";

/* リセットCSS */
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 共通設定 */
body {
  font-family: sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  background-color: #444;
}

img {
  max-width: 100%;
  /* 親要素より大きくならない設定 */
}








/* ここから自分用 */


/* header */ 

.header-site-menu ul{
    display: flex;
    justify-content: space-between;
}
  
  .header-site-menu li{
  font-weight: bold;
  display: inline-block;
  padding: 5px 30px 2px 27px;
  font-size: 24px;
  background: #000;
  line-height: 1.2;
  width: 100%;
  
  }
  
  .header-img img{
    position: relative;
    width: 100%
  }
  .header-text{
    position: absolute;
    top: 350px;
    left: 15%;
    width: 80%;
    z-index: 1;
  }
  
  /* footer */
  footer{
      background: #000;
  }
  
  .footer-inner{
      display: flex;
      justify-content: center;
      justify-content: space-between;
      padding: 30px 30px 0;
  }
  
  
  .footer-site-menu{
      font-weight: bold;
      display: inline-block;
      padding: 5px 30px 2px 27px;
      font-size: 24px;
      background: #000;
      line-height: 1.2;
      letter-spacing: 0;
      width: 250px;
  }
  
  .sns-logo{
      display: flex;
      width: 300px;
      justify-content: space-between;
      align-items: center;
  }
  .company-logo{
      display: flex;
      align-items: center;
  }
  
  .copyright{
      display: flex;
      justify-content: center;
  }


  /* main */
  /* メインコンテナ */
.container{
  max-width: var(--max-width);
  margin: 28px auto;
  padding: 40px 20px;
}

/* 見出し */
.intro h1{
  text-align:center;
  color: var(--accent);
  font-weight:600;
  letter-spacing: 6px;
  margin-bottom: 28px;
  font-size: 22px;
}

/* オーナー紹介 */
.owner{
  display:flex;
  gap: 28px;
  background: var(--panel);
  padding: 28px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
}
.owner-photo img{
  width: 500px;
  object-fit: cover;
  border-radius: 4px;
  display:block;
}
.owner-desc{
  color: #ddd;
  font-size: 14px;
  width: 500px;
}
.owner-desc h2{
  margin-bottom: 80px;
  font-size: 18px;
  color: #fff;
}

/* 区切り線 */
.divider{
  border: 0;
  height: 1px;
  background: #6b6b6b;
  margin: 40px 0;
}

/* スタッフグリッド */
.staff-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  align-items: start;
}

/* カード */
.staff-card{
  background: none;
  text-align: center;
}
.staff-card a{
  color: #eee;
  text-decoration: none;
  display:block;
}
.staff-card img{
  width:100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  display:block;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.staff-card img:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.staff-card h3{
  margin-top:12px;
  font-size: 15px;
  color:#dcdcdc;
}
.staff-card .sub{
  margin-top:6px;
  font-size:13px;
  color:var(--muted);
}

/* フッター */
.site-footer{
  margin-top: 60px;
  padding: 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background: #101010;
  color: var(--muted);
  gap: 12px;
}
.site-footer ul{
  list-style:none;
  display:flex;
  gap: 14px;
  font-size:13px;
}
.site-footer .socials{
  display:flex;
  gap:20px;
  font-weight:700;
  letter-spacing: 2px;
}

.owner p{
  line-height: 2;
}
