@charset "UTF-8";
/*
* this css file is footer
*
*
*/
.page_top{
  position: fixed;
  bottom:10px;
  right: 10px;
  z-index: 9;
  width: 50px;
  height: 50px;
  background-color: rgba(var(--primary-color-rgb), 0.5);
}
.page_top > a{
  position: relative;
  display: block;
  width:100%;
  height: 100%;
  text-indent:100%;
  white-space:nowrap;
  overflow:hidden;
}
.page_top > a::after {
  content: "";
  width: 35%;
  height: 35%;
  border-top: 5px solid var(--primary-color-comp);
  border-left: 5px solid var(--primary-color-comp);
  position: absolute;
  top: 16%;
  left: 50%;
  -webkit-transform: translateY(50%) translateX(-50%) rotate(45deg);
  transform: translateY(50%) translateX(-50%) rotate(45deg);
}
footer  {
  position: relative;
  z-index: 0;
  background: #000000;
  line-height: 1.5rem;
}
footer > .information {
  position: relative;
  background: #F2F2F2;
  padding-top: 3em;
  padding-bottom: 5em;
  z-index: 1;
}
footer .information::after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100vw;
  height: 30vh;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100vw 18vh;
}
footer > .information > .inner{
  max-width: 1200px;
  margin: 0 auto 1.5em;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}
footer > .information > .inner > section {
  width: calc(30% - 1em);
  padding: 1em;
}
footer > .information > .inner > section:nth-child(2){
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
footer > .information > .inner > section > iframe{
  border: none;
  overflow: hidden;
  width: 100%;
  min-height: 350px;
}
footer > .information > .inner > section.facebook_box{
  text-align: center;
}
footer > .information > .inner > section.info .footer_hdg{
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
footer > .footer{
  background: #000000;
  padding: 1em;
}
footer > .footer > .sns-follow{
  max-width: 60%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
footer > .footer > .sns-follow > li{
  margin: 0.5em;
  max-width: 24px;
}
footer > .footer > .sns-follow > li > a {
  width: 40px;
}
footer > .footer > .copyright{
  margin: 0 auto;
  font-size: 0.6rem;
  color: #ffffff;
  text-align: center;
}
/********************************************************
*
* middle size
*
********************************************************/
@media screen and (max-width:640px) {
  footer > .information > .inner {
    max-width: inherit;
    width: inherit;
    display: block;
  }
  footer > .information > .inner > section{
    width: inherit;
    padding: 1em;
  }
  footer > .information > .inner > section:nth-child(2){
    border: 0;
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
}
