@charset "UTF-8";
/*メニューをページ下部に固定*/
#fixed_menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  opacity: 0.9;
  z-index: 99; }

/*メニューを横並びにする*/
#fixed_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%; }

#fixed_menu li {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 14px;
  border-right: 1px solid #fff; }

/*メニュー背景色*/
#fixed_menu li:nth-child(1) {
  background: #CCAA3F;
  width: 45%; }

#fixed_menu li:nth-child(2) {
  background: #CCAA3F;
  width: 35%; }

#fixed_menu li:nth-child(3) {
  background: #CCAA3F;
  width: 20%; }

/*ボタンを調整*/
#fixed_menu li a {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0px; }

#footer {
  margin-bottom: 4em; }

.pagetop {
  display: none !important; }

#fixed_menu_pc {
  display: none; }

/*PCの場合にはメニューを表示させない*/
@media (min-width: 768px) {
  .for_sp {
    display: none; }
  #footer {
    margin-bottom: 0; }
  .pagetop {
    display: block !important; }
  /*メニューをページ右側に固定*/
  #fixed_menu_pc {
    display: block;
    position: fixed;
    width: 50px;
    top: 0px;
    right: 0;
    z-index: 99; }
  /*メニューを横並びにする*/
  #fixed_menu_pc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 50px; }
  #fixed_menu_pc li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    height: 80%; }
  /*左側メニュー背景色*/
  #fixed_menu_pc li:nth-child(1) {
    background: #CCAA3F;
    border-bottom: 3px solid #fff; }
  #fixed_menu_pc li:nth-child(2) {
    background: #CCAA3F;
    border-bottom: 3px solid #fff; }
  #fixed_menu_pc li:nth-child(3) {
    background: #CCAA3F; }
  #fixed_menu_pc a:hover {
    opacity: 0.8; }
  /*ボタンを調整*/
  #fixed_menu_pc li a {
    display: block;
    padding: 0px; } }
