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

html,body{
  width:100%;
}

/* ===============================
   HEADER高さ定義
=============================== */
:root{
  --header-height-pc:90px;
  --header-height-sp:78px;
}

/* 固定ヘッダー分の余白 */
body{
  padding-top:var(--header-height-pc);
}

/* ===============================
   HEADER（ロゴ中央固定）
=============================== */
.site-header{
  width:100%;
  height:var(--header-height-pc);
  background:#fff;
  border-bottom:1px solid #000;
  position:fixed;
  top:0;
  left:0;
  z-index:99999;
}

.header-inner{
  max-width:1100px;
  height:100%;
  margin:0 auto;
  padding:0 16px;
  display:flex;
  justify-content:center; /* ← 中央配置 */
  align-items:center;
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo img{
  max-height:55px;
  display:block;
}

/* ===============================
   FOOTER
=============================== */
.site-footer{
  background:#000;
  color:#fff;
  margin-top:10px;
}

.footer-container{
  max-width:1100px;
  margin:0 auto;
  padding:60px 16px;
  text-align:center;
}



/* コピーライト */
.footer-bottom{
  font-size:12px;
  color:#aaa;
  border-top:1px solid #333;
  padding-top:5px;
  margin-top:20px;
}


.site-footer{
  font-size:13px; /* お好みで 8px&#12316;12px に調整可 */
}


/* ===============================
   MOBILE
=============================== */
@media(max-width:768px){

  body{
    padding-top:var(--header-height-sp);
  }

  .site-header{
    height:var(--header-height-sp);
  }

  .logo img{
    max-height:43px;
  }

  /* フッター簡略 */
  .footer-nav{
    display:none;
  }

  .footer-logo img{
    max-height:90px;
  }

  .footer-sns img{
    width:42px;
    height:42px;
  }

  .footer-container{
    padding:50px 16px;
  }
}
