/*リセットcss(ここから)*/
*{
  margin: 0; 
  padding: 0;
  box-sizing: border-box;
}
/*リセットcss(ここまで)*/
/*共通(ここから)*/
/* ハンバーガーメニュー(ここから) */
.btn {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  background-color: rgb(255, 255, 255);
  border: solid 1.5px;
  z-index: 10; /* ボタンが上に来るように設定 */
}
.btn i {
  position: absolute;
  top: 20px;
  left: 6.5px;
  width: 33px;
  height: 1px;
  background-color: black;
  transition: .5s;
}
.btn i:nth-of-type(1) {
  top: 10.5px;
}
.btn i:nth-of-type(2) {
  top: 22px;
}
.btn i:nth-of-type(3) {
  top: 33.5px;
}
/* ボタンのアクティブ(ここから) */
.btn.active i:nth-of-type(1) {
  opacity: 0;
}
.btn.active i:nth-of-type(2) {
}
.btn.active i:nth-of-type(3) {
  opacity: 0;
}
/* ボタンのアクティブ(ここまで) */
.container {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  z-index: 9; /* メニューがボタンの下に来るように設定 */

  transition: .5s;
  
  opacity: 0;
  pointer-events: none;
}
.container.active {
  opacity: 1;
  pointer-events: auto;
}
.item {
  max-width: 270px;
  width: 80%;
  margin: 50px auto;
  text-align: center;
  line-height: 33px;
  
  border: solid rgb(0, 0, 0) 1.5px;
}
/* ハンバーガーメニュー(ここまで) */
/*リンク(ここから)*/
a{
  color: black;
  text-decoration: none;
  transition: transform 0.3s ease;
}
a:hover {
  transform: scale(1.1);
  color: blue;
}
ul{ 
  list-style-type: none;}
/*リンク(ここまで)*/
/*ページヘッダー(ここから)*/
.page-header {
  background-color: black;
}
.page-header-container {
  padding-top: 21px;
  padding-bottom: 21px;
  border: solid 1px white;
}
.page-header-container img {
  max-width: 1000px;
  width: 90%;
  max-height: 390px;
  border: solid 1px white;

  display: block;
  margin: 0 auto;
}
/*ページヘッダー(ここまで)*/
/*共通(ここまで)*/
/*ヘッダー(ここから)*/
.header-logo {
  max-width: 60px;
  width: 100%;
  border: solid 1px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
}
.header-nav {
  display: flex;
}
.header-nav li {
  margin-left: 12px;
  margin-right: 12px;
}
/*ヘッダー(ここまで)*/
/*フッダー(ここから)*/
.footer {
  padding-bottom: 30px;
}
.footer-logo {
  max-width: 150px;
  width: 100%;
  margin: 21px;
}
.footer-nav {
  display: flex;
}
.footer-nav li {
  margin-left: 12px;
  margin-right: 12px;
  color: white;

  transition: transform 0.3s ease;
}
.footer-nav li:hover{
  transform: scale(1.1);
  color: blue;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: black;

  padding-bottom: 12px;
}
.footer p {
  color: white;
}
/*フッダー(ここまで)*/
/*スマホ表示(ここから)*/
@media screen and (max-width: 780px){
  .header-nav,.footer-nav {
    display: none;
  }
}
@media screen and (min-width: 780px){
  .btn {
    display: none;
  }
}
/*スマホ表示(ここまで)*/