@charset "UTF-8";
* {
  box-sizing: border-box;
}

.page_top_btn {
  position: fixed;
  right: 5%;
  bottom: 13%;
  width: 50px;
  height: 50px;
  z-index: 500;
}

.page_top_btn .page_top_body {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page_top_btn .page_top_body::before,
.page_top_btn .page_top_body::after {
  display: block;
  position: absolute;
  content: "";
}

.page_top_btn .page_top_body::before {
  left: 50%;
  top: 16px;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.page_top_btn .page_top_body::after {
  top: 15px;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#footer {
  padding-top: 25px;
  background-color: #f0f0f0;
}

#footer .footer_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#footer .footer_logo {
  margin-bottom: 25px;
  text-align: center;
}

#footer .footer_logo img {
  width: 62%;
  max-width: 210px;
}

#footer .footer_nav_box {
  position: relative;
  overflow: hidden;
}

#footer .footer_nav {
  overflow: hidden;
  padding: 0 !important;
}

#footer .footer_nav .nav_item {
  float: left;
  width: 50%;
  border-top: 1px solid #000;
  text-align: center;
}

#footer .footer_nav .nav_item:nth-child(even) {
  border-left: 1px solid #000;
}

#footer .footer_nav .nav_item.l_2 .nav_body {
  padding-top: 12px;
}

#footer .footer_nav .nav_body {
  display: block;
  width: 100%;
  height: 4em;
  padding: 20px 2% 0;
  font-size: 13px;
}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

#footer .footer_sub_nav {
  padding: 15px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  line-height: 20px;
}

.footer_share_wrap {
  padding-top: 20px;
  padding-bottom: 35px;
  text-align: center;
}

.footer_share_wrap .share_ttl {
  margin-bottom: 10px;
}

.footer_txt {
  font-size: 12px;
  line-height: 1.66;
  margin-top: 10px;
  margin-bottom: 10px;
}

.copyright {
  margin-top: 15px;
  font-size: 9px;
}

.footer_copyright_area {
  position: relative;
  padding: 20px 0;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.footer_privacy_mark {
  margin-top:20px;
  max-width: 60px;
  max-height: 60px;
}

/* SPサイズ */
@media screen and (max-width: 769px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* PCサイズ */
@media screen and (min-width: 770px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  .content_footer_area {
    padding: 50px 0;
    background-image: url(/images/content_footer_area_bg_pc.png);
    background-position: center top;
    background-size: cover;
  }

  .content_footer_inner .content_footer_ttl {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .content_footer_inner .content_footer_img {
    margin-bottom: 25px;
  }

  .content_footer_inner .content_footer_txt {
    font-size: 16px;
  }

  .page_top_btn {
    width: 60px;
    height: 60px;
  }

  .page_top_btn .page_top_body::before {
    top: 18px;
    width: 20px;
    height: 20px;
  }

  .page_top_btn .page_top_body::after {
    top: 16px;
    height: 30px;
  }

  #footer {
    padding-top: 70px;
  }

  #footer .footer_logo {
    margin-bottom: 20px;
  }

  #footer .footer_nav_box {
    padding-top: 35px;
    margin-bottom: 40px;
    border-top: 1px solid #000;
    text-align: center;
  }

  #footer .footer_nav {
    display: inline-block;
    margin-right: 65px;
    vertical-align: top;
  }

  #footer .footer_nav:last-child {
    position: relative;
    float: none;
    width: auto;
  }

  #footer .footer_nav:last-child .nav_item {
    width: auto;
    border-left: none;
  }

  #footer .footer_nav .nav_item {
    display: block;
    float: none;
    width: auto;
    border-top: none;
    text-align: left;
  }

  #footer .footer_nav .nav_item:nth-child(even) {
    border-left: none;
  }

  #footer .footer_nav .nav_item.l_2 .nav_body {
    padding-top: 5px;
  }

  #footer .footer_nav .nav_body {
    display: block;
    height: auto;
    padding: 5px 0;
  }

  #footer .footer_nav .nav_body:hover {
    color: #e3407e;
  }

  #footer .footer_sub_nav {
    padding: 20px 0;
  }

  .footer_share_wrap {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .footer_share_wrap .share_ttl {
    display: inline-block;
    margin-right: 1em;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .footer_share_wrap .share_btn_wrap {
    display: inline-block;
    vertical-align: middle;
  }

  .footer_txt {
    font-size: 14px;
    line-height: 1.5;
  }

  .copyright {
    margin-top: 15px;
    font-size: 11px;
  }

  .footer_copyright_area {
    padding: 40px 0;
  }

  .footer_privacy_mark {
    display: block;
    position: absolute;
    -webkit-left: calc(50% + 245px);
    left: calc(50% + 245px);
    top: 0;
    max-width: 80px;
    max-height: 80px;
  }
}
