@charset "UTF-8";
/* =========================================================
    未ログインページ用CSS(ログイン前トップは除く) 
    
========================================================= */
/* browser css reset　*/
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: 12px "M PLUS Rounded 1c";
}

/* ------------------------------------------
    共通ヘッダー（ロゴ＋新規登録・ログインボタン）
------------------------------------------ */

/* style2.css内の記述をリセット -------------*/
@media screen and (max-width: 1024px) {
  .header {
    border-top: 0;
  }
}

.header {
  width: 100%;
  height: 40px;
  background: #ffffff;
  position: fixed;
  z-index: 100000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; 
}

/* ヘッダーロゴ -------------*/
.header-logo {
  width: 100px;
  padding: 6px;
}

.header-logo img {
  width: 100px;
/*  line-height: 42px;*/
/*  vertical-align: middle;*/
/*  width: 20%;*/
}


@media screen and (min-width: 769px) {
  .header {
    height: 56px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .header-logo {
    width: auto;
    padding-left: 20px;
  }
  
  .header-logo img {
    width: auto;
  }  

}


/* 登録・ログインボタン =============*/
.header-buttons {
  padding-right: 10px;
}

.header-buttons li {
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.header-buttons li:first-child {
  margin-right: 5px;
}

.header-buttons li i {
  margin-right: 5px;
}

.header-buttons li a {
  display: inline-block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 11px 20px;
  border: none;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 1px;

}

/*　新規登録ボタン　*/
.btn-yamabuki {
  background-color: #FDB647;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-yamabuki:hover {
  background-color: #f79803;
}

.btn-yamabuki:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-yamabuki:visited {
  color: #ffffff;
}

/*　緑　*/
.btn-green {
  background: #49b9b7;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-green:hover {
  background-color: #22a2a0;
}


.btn-green:active {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-green:visited {
  color: #ffffff;
}

@media screen and (min-width: 769px) {
  .header-buttons {
  padding-right: 20px;
  }

  .header-buttons li a {
    padding: 11px 40px;
    font-size: 14px;
  }
}

/* ------------------------------------------
    コンテンツ
------------------------------------------ */
/* 固定ナビゲーション分 上部に余白 */
main {
  padding: 40px 0 0;
}

@media screen and (min-width: 769px) {
  main {
    padding: 56px 0 0;
  }
}
