@charset "UTF-8";
/* CSS Document */

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  zoom: 65%;
  overflow-x: hidden;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif, Arial;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #e9e9e9;
  overflow-x: hidden;
}
.header {
  position: relative;
}
.scrolldown4 {
  /*描画位置※位置は適宜調整してください*/
  position: fixed;
  bottom: 1%;
  left: 15rem;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 5s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 3%;
  }
  100% {
    bottom: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown4 span {
  /*描画位置*/
  position: absolute;
  left: -28px;
  bottom: 10px;
  /*テキストの形状*/
  color: #e9e9e9;
  font-size: 2rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrolldown4:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: -14px;
  /*矢印の形状*/
  width: 1px;
  height: 50px;
  background: #e9e9e9;
  transform: skewX(-31deg);
}
.scrolldown4:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  right: 0;
  /*矢印の形状*/
  width: 1px;
  height: 120px;
  background: #e9e9e9;
}
.side__sns-links {
  position: fixed;
  z-index: 999;
  width: 10rem;
  height: 100%;
  background-color: #e9e9e9;
}
.side__sns-links h3 {
  display: flex;
  position: fixed;
  width: 8rem;
  flex-direction: column;
  bottom: 27rem;
  padding: 5rem 1rem;
  list-style: none;
}
.side__sns-list {
  display: flex;
  position: fixed;
  width: 8rem;
  flex-direction: column;
  bottom: 0.2rem;
  padding: 5rem 1rem;
  list-style: none;
}
.side__sns-list img {
  width: 50%;
  height: 50%;
  margin-bottom: 4rem;
}
.side__sns-list li {
  margin: 0px;
}

@media screen and (max-width:534px){
  .scrolldown4 {
  display:none;
}
.side__sns-links {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 6rem;
  background-color: #e9e9e9;
}

.side__sns-links h3 {
  display: none;
}
.side__sns-list {
  display: flex;
  position: absolute;
  top:1rem;
  right: 1rem;
  bottom:0;
  width:auto;
  flex-direction: row;
  padding: 0 0 0 5rem;
  list-style: none;
}
.side__sns-list img {
  margin-bottom: 0rem;
  width: 40px;
  height: 38px;
}
.side__sns-list li {
  margin: 0 0 0 3rem;
}
}
.footer {
  background-color: #e9e9e9;
  height: 400px;
  position: relative;
  text-align: center;
}
.footer__site-map{
  position: relative;
}
.footer-title {
  position: absolute;
  left:10rem;
  padding-left: 14rem;
  text-align: right;
  margin-top: 9rem;
}
.footer-title a{
  text-decoration:none;
  color: #333;
}
.footer-title h1 {
  font-size: 9rem;
  font-weight: bold;
  font-family: Arial, Helvetica, "sans-serif";
  letter-spacing: 0.3rem;
  color: #191919;
}
.footer-title h2 {
  font-size: 3rem;
  font-weight: bold;
  font-family: Arial, Helvetica, "sans-serif";
  letter-spacing: 0.3rem;
  color: #191919;
  padding-top: 5rem;
}
.footer__main-link {
  display: flex;
  position: absolute;
  right: 10rem;
  top:25rem;
}
.footer__main-link a {
  font-family: Century;
  font-size: 3rem;
  color: #171717;
  text-decoration: none;
  margin-right: 6rem;
}
.footer__copyright{
  position: absolute;
  bottom:2rem;
  font-size: 2rem;
}
.footer-mb{
  display:none;
}
@media only screen and (max-width:768px) {
  .footer-title {
    position: absolute;
    display: block;
    padding: 0;
    right: 3rem;
  }
  .footer-title h1 {
    font-size: 6rem;
  }
  .footer-title h2 {
    font-size: 3rem;
   padding-top: 3rem;
  }
  .footer__main-link {
    right: 0;
  }
  .footer__main-link a {
  margin-right: 3rem;
  font-size: 2.5rem;
  top:20rem;
}
 .footer-mb{
  display:none;
}
}
@media only screen and (max-width:534px) {
  .footer{
     display:none;
  }
  .footer-title {
     display: none;
}
   .footer__main-link {
    display: none;
  }
   .footer-mb{
    display:block;
    position: absolute;
    bottom:3px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
}