@charset "UTF-8";
/*body要素*/
body {
    font-family: 'メイリオ','Meiryo';
    background-image: url(paper-d6.png);
}

/*下地divの型紙*/
.div-shitaji {
    margin: auto;
    width: 900px;
    border: 3px dashed skyblue;
    border-radius: 10px;
    padding: 4% 4% 1% 4%;
    line-height: 1.8em;
}

.div-header {
    text-align: center;
    margin: auto;
    width: 85%;
    margin-top: 20px;
    margin-bottom: 40px;
    border-top: 5px dashed skyblue;
    border-bottom: 5px dashed skyblue;
}

.div-header2 {
    text-align: right;
    font-size: small;
    margin: auto;
    margin-bottom: 60px;
    width: 85%;
}

.div-header4 {
    text-align: right;
    font-size: x-small;
    margin: auto;
    width: 90%;
}
/*imgがdivからはみ出ないようにするためのもの*/
img {
    max-width: 100%;
    height: auto;
}

/*横並び要素*/
.flex {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
/*flexに入れるdiv*/
.inflex {
    width: 300px;
    font-size: small;
    margin: 10px;
}

/*文中で見出しを作る際に使う。基本的にこのdivでくくるだけで見出しになるが、文字数が多いときなど改行が発生するため要調整*/
.div-h3 {
    font-weight: bold;
    font-size: large;
    font-size-adjust: auto;
    margin: auto;
    width: 40%;
    margin-top: 60px;
    margin-left: 5%;
    margin-bottom: 30px;
    border-bottom: 3px dashed skyblue;
}

/*<hr class="hr-hasen">というhrを水色の破線(縫い目みたいなやつ)に*/
.hr-hasen {
    border-top: 3px dashed skyblue;
}


/*アクセスしたことがないリンクはどじゃーすぶるー*/
a:link {
    color: dodgerblue;
}

/*アクセスしたことがあるリンクはぶるーばいおれっと*/
a:visited {
    color: blueviolet;
}
