@charset "utf-8";

/* CSS Document */


* {
    box-sizing: border-box;
}


img {
    max-width: 100%;
}


a {
    text-decoration: none;
}

a:link,
a:visited {
    color: #444;
}

a:hover {
    opacity: 0.7;
}


body {
  width: 100%;
  height: 100%;
  font-size: 13px;
  word-break: break-word;
  padding: 0;
  margin: 0;
  font-family: Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


/* -------------------- header -------------------- */

header {
    position: fixed;
    left:0;
    top: 0;
    z-index: 9999;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 10%);
    padding-bottom: 0.5%;
    background-color: #fff;
}

.logo {
    width: 98%;
    margin: 1% auto 0;

}

.logo img {
    max-width: 130px;
}


@media (max-width:1023px) {

.logo {
    width: 98%;
    margin: 2% auto 0;
}

}



/* -------------------- footer -------------------- */

footer {
    margin-top: 2rem;
    width: 100%;
    background: #f5f5f5;
    padding: 2rem 0 8rem;
}

.footer__innerWrap {
    width: 80%;
    margin: 0 auto;
    font-size: .8rem;
    color: #999;
    text-align: center;
}

.footer__snsList li,
.footer__linkList li {
    font-size: 2rem;
    margin: 0 .4rem;
    display: inline-block;
}


.footer__linkList li {
    font-size: .8rem;}



.footer__linkList {
    margin-top: 1rem;
}


.footer__copyright {
    margin-top: 1rem;
    margin-bottom: 8rem;
    font-size: .6rem;
}


/* -------------------- pagetop -------------------- */


#pagetop--fixed {
    position: fixed;
    width: 2.4rem;
    height: 2.4rem;
    bottom: 80px;
    right: 1vw;
    background: #222;
    opacity: 0.7;
    border-radius: 50%;
    z-index: 998;
}


#pagetop--fixed a {
    position: relative;
    display: block;
    padding: 1rem 2rem;
}

#pagetop--fixed a::before,
#pagetop--fixed a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}



#pagetop--fixed a::before {
    left: 1.15rem;
    width: 1px;
    height: 1.2rem;
    top: .2rem;
    background: #fff;
}


#pagetop--fixed a::after {
    left: .85rem;
    top: 0rem;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



/* ページの上部へ　テキスト版 */
.pagetop--fixed i {
    font-size: 5rem;
}


.pagetop {
    text-align: right;
    padding-top: 4rem;
}

.pagetop::before {
    padding-right: .4rem;
    padding-bottom: -.2rem;
    content: "\f062";
    font-size: 1rem;
    font-family: "Font Awesome 5 Free";
    color: #999;
    font-weight: 600;
}



/* -------------------- behavior -------------------- */


@media (max-width:1023px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

@media (min-width:1024px) {
    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    #pagetop--fixed {
        bottom: 3vh;
    }


}