@charset "UTF-8";

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    color: var(--color-text);
    line-height: 1.7;

}

main {
    margin-top: 67px;
}

@media screen and (max-width: 768px) {
    main {
        margin-top: 64px;
    }
}

@media screen and (max-width: 480px) {
    main {
        margin-top: 60px;
    }
}

/*-------------------------------------------
text
/*-------------------------------------------*/
p {
    font-size: 1.6rem;
}


@media (max-width: 768px) {
    p {
        font-size: 1.5rem;
    }
}


@media (max-width: 480px) {
    p {
        font-size: 1.3rem;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

/*-------------------------------------------
link
-------------------------------------------*/
a {
    text-decoration: none;
    transition: var(--transition-normal);
    color: #000;
}

a:visited {
    color: #fff;
}

a:hover {
    transition-duration: var(--transition-normal);
}


/*-------------------------------------------
layout_base
-------------------------------------------*/

main {
    overflow: hidden;
}

/*-------------------------------------------
list
-------------------------------------------*/
li {
    list-style: none;
}

/*-------------------------------------------
image
-------------------------------------------*/
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/*-------------------------------------------
box-sizing
-------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}




/*--------------------------------------------------- */
/* アニメーション */
/*--------------------------------------------------- */
@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}