/* base */
body{
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: #222222;
}

a{
    text-decoration: none;
    color: #222222;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

/* header */
#header{
    position: fixed;
    z-index: 9999;
    width: 80%;
    margin-top: 0.8em;
}

#header .header_inner{
    width: 85%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 auto;
}

#header .header_logo img{
    width: 130px;
}

/* sns button */
.snsArea {
  display: none;
}
@media (min-width: 930px) {
  .snsArea {
    display: block;
    position: fixed;
    bottom: 30%;
    right: 35px;
    z-index: 999;
  }
  .snsArea__text {
    writing-mode: vertical-rl;
    font-size: 0.9em;
    position: relative;
    letter-spacing: 0.2em;
  }
  .snsArea__text::before {
    content: "";
    position: absolute;
    bottom: -65px;
    right: 11px;
    width: 1px;
    height: 45px;
    background: #222222;
  }
}
.snsArea__list {
  margin-top: 75px;
}
.snsArea__list li {
  padding: 5px 0;
}

.fa-instagram {
  transition: ease 0.4s;
  color: #222222;
}
@media (min-width: 930px) {
  .fa-instagram:hover {
    color: #CF2E92;
    transition: ease 0.4s;
  }
}

.fa-x-twitter {
  transition: ease 0.4s;
  color: #222222;
}
@media (min-width: 930px) {
  .fa-x-twitter:hover {
    color: #1DA1F2;
    transition: ease 0.4s;
  }
}

.fa-line {
  transition: ease 0.4s;
  color: #222222;
}
@media (min-width: 930px) {
  .fa-line:hover {
    color: #06C755;
    transition: ease 0.4s;
  }
}