
/* CSSリセット
================================================*/
html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,
p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,
img,ins,kbd,q,s,small,strike,strong,sub,sup,tt,var,b,u,i,center,
dl,dt,dd,ol,ul,li,fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td,figure {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
    list-style: none;
}
html {
    scroll-behavior: smooth;
}
body {
    font-size: 15px;
    line-height: 2em;
    color: #252525;
    text-align: center;
    letter-spacing: 0.1em;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, "Arial", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
a {color: #252525;text-decoration: none;}
header {
    width: 100vw;
    height: 100vh;
    background: #e1e7ec;
}
.inner {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;
}
h1 {
    width: 100%;
    font-size: 40px;
    text-align: center;
    font-weight: bold;
}
p {
    margin: 50px;
}
.link {
    width: 90%;
    margin: 30px auto 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.link li a {
    width: 250px;
    display: block;
    margin: 0 25px 50px;
    line-height: 1em;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    background: #6f76de;
    border-radius: 5px;
}
.link li a:hover {
    background: #474fc2;
}
/* タブレット向け
================================================*/
@media screen and (max-width:1199px) {
.inner {
    width: 95%;
    margin: 0 auto;
    padding: 100px 0;
}
h1 {
    width: 100%;
    font-size: 36px;
}
.link {
    width: 98%;
}
.link li a {
    width: 150px;
    margin: 0 15px 50px;
    padding: 15px;
}

}

/* スマートフォン向け
================================================*/
@media screen and (max-width:640px) {
.inner {
    width: 98%;
    margin: 0 auto;
    padding: 80px 0;
}
h1 {
    width: 100%;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
}
p {
    margin: 50px 20px;
    font-size: 14px;
}
.link {
    width: 98%;
}
.link li a {
    width: 250px;
    display: block;
    margin: 0 25px 20px;
    line-height: 1em;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    background: #6f76de;
    border-radius: 5px;
}
.link li a:hover {
    background: #474fc2;
}
.copy {
    font-size: 13px;
}
    
}