#index .button {
  display: inline-block;
  position: relative;
  padding: 0.25em 1em;
  border-bottom: solid 2px #78652e;
  text-decoration: none;
  font-weight: bold;
  color: black;
  background-color: #ffec4d69;
  margin: 20px;
}

#index a.button {
  border-top: solid 2px #78652e;
}

#index .button:before, .button:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #78652e;
  transition: .3s;
}

#index .button:before {
  left: 7px;
}

#index .button:after {
  right: 7px;
}

#index .button:hover:before {
  top: 0px;
  left: 0;
  height: 100%;
}

#index .button:hover:after {
  top: 0px;
  right: 0;
  height: 100%;
}

#page .btn-web a {
  display: block;
  font-size: 17px;
  padding: 1rem 2rem;
}

#pankuzu br, .sitemap-main-box ul li br {
  display: none;
}

/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/

@media screen and (min-width: 600px) {

  /*/////////////PC用のCSSをここに作成してください。/////////////*/
  /*/////////////必ず中括弧の中に作成してください。/////////////*/
  .sp_br {
    display: none
  }

  .copy_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  .copy_wrapper p:first-child {
    order: 2;
  }

  .copy_wrapper p:last-child {
    order: 1;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 5px 0;
  }

  p.link-text-sitemap a {
    color: #fff;
    text-decoration: none;
  }

  p.link-text-sitemap a:hover {
    opacity: 0.7;
  }

  p.link-text-sitemap a:before {
    content: "\0bb";
    margin-right: 2px;
  }

}



/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/

@media screen and (max-width: 599px) {

  /*/////////////SP用のCSSをここに作成してください。/////////////*/
  /*/////////////必ず中括弧の中に作成してください。/////////////*/
  body {
    word-break: break-all;
  }

  .pc_br {
    display: none
  }

  p.link-text-sitemap {
    text-align: right;
    margin: 0 auto 10px;
    width: 96%;
  }

  p.link-text-sitemap a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  p.link-text-sitemap a:before {
    content: "\0bb";
    margin-right: 2px;
  }


}