
:root {
    --blue-color: #0091DB;
    --yellow-color: #FFE100;
    --pink-color: #CF6493;
    --green-color: #89B22E;
    --purple-color: #976C9F;
    --container_size: 1000px;
    --font_family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
}
body {
    position: relative;
    font-family:var(--font_family);
   font-size: 16px;
    line-height: 1.7;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    color: inherit;
    text-decoration: none;
    word-break: break-all;
}
a img {
    transition: all 200ms 0s ease;
}
a:hover {
    /*  text-decoration: underline; */
}
a:hover {
    opacity: 0.7;
}

h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-color);
}
h2{
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-color);
    line-height: 1.4;
}
h3{
    font-size: 1.7rem;
    font-weight: 600;
}
h4{
    font-size: 1.5rem;
    font-weight: 600;
}
h5{
    font-size: 1.2rem;
    font-weight: 600;
}

input,textarea{
    border: none !important;
    box-shadow: none !important;
    padding:10px 20px !important;
    font-size: 1rem !important;
}

.pages_blue_strong{
    color:var(--blue-color);
    font-size:1.2rem;
    font-weight: 600;
}


@media screen and (max-width: 670px) {
    body {
    }

    h1{
        font-size: 2rem;
        font-weight: 700;
        color: var(--blue-color);
    }
    h2{
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--blue-color);
        line-height: 1.4;
    }
    h3{
        font-size: 1.2rem;
        font-weight: 600;
    }
    h4{
        font-size: 1.1rem;
        font-weight: 600;
    }
    h5{
        font-size: 1rem;
        font-weight: 600;
    }


    .pages_blue_strong{
        font-size:1.1rem;
    }


}