<style type="text/css">

/* フォントの読み込み */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap');

/* 全体設定 */
*{
font-family: 'Zen Old Mincho', serif;
color: #454545;/* ★全体の文字色 */
font-size: 12px;
font-weight: 400;
letter-spacing: 0.05em;
line-height: 2.0em;
box-sizing: border-box;
padding: 0;
margin: 0;
list-style-type: none;
text-decoration: none;
}

body{
background-color: #F5F5F5;/* ★全体の背景色 */
width: 100vw;
overflow-x: hidden;
}

.wrap{
max-width: 700px;
min-height: 100vh;
padding: 40px 25px 0;
margin: 0 auto;
}

/* リンク文字 */
a{
transition: 0.2s;
border-bottom: 1px solid rgba(0,0,0,0.2);/* ★リンク文字の下線の色 */
}

a:hover{
color: #23CAE2;/* ★リンクをホバーした時の文字色 */
}


/* link button */
.link {
    display: inline-block;
    height: 25px;
    line-height: 21px;
    margin: .2rem auto;
    padding: .1rem .3rem;
    border-radius: 5px;
    border: 1px solid #f6acc8 !important;
    color: #f6acc8;
    transition: all .5s;
}
.link:hover {
    background-color: #f6acc8;
    color: #fff !important;
}
.btn {
    color: #fff;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    position: relative;
    white-space: nowrap;
    border: none;
    margin: 1rem;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.1rem;
    font-weight: 400;
    background: #af8baf;
    border: 1px solid #af8baf;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: all .5s  !important;
    transition: all .5s !important;
    font-family: 'Source Sans Pro','Noto Sans JP', sans-serif !important;
}
.btn:hover {
    border-radius: 5px;
    border: solid 1px #f6acc8;
    background: #f6acc8;
    color: #fff !important;
}
.btn:hover svg {
    fill: #fff;
}
.btn svg {
    position: relative;
    left: -4px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    margin: 2px 0;
    fill: #fff;
    transition: all .5s;
}


/* 強調文 */
strong{
font-weight: 700;
text-decoration: underline;/* ★強調文の文字色と波線 */
decoration-color: #454545;
text-decoration-style: wavy;
}

/* text */
p {
    text-align: justify;
    margin: 0 0;
    padding: 0rem 0;
    font-size: 13px;
    line-height: 1.5rem; /*行間*/
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-family: 'Cinzel Decorative','Noto Serif JP', serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05em; /*文字間隔*/
    color: var(--text-color-headline);
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    border-bottom: 0;
    color: inherit;
    text-decoration: none;
}
h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin: .5rem 0rem .5rem;
}
h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin: .5rem 0rem .5rem;
}
h3 {
    font-size: 1.5rem;
    margin: .5rem 0rem .5rem;
}
h4 {
    font-size: 1.2rem;
    margin: .5rem 0rem .5rem;
}
h5 {
    font-size: 1.1rem;
    margin: .5rem 0rem .5rem;
}
h6 {
    font-size: 0.9rem;
    margin: .5rem 0rem .5rem;
}

/* ブログ */
.memo-wrap{
max-width: 500px;
}

.memo-wrap h1{
font-family: 'Special Elite', 'Zen Old Mincho', serif;
font-size: 20px;
text-align: center;
}

.memo{
padding: 35px 0;
border-bottom: 1px solid rgba(0,0,0,0.15);/* ★記事の区切り線 */
}

.more{
text-align: right;
display: inline;
margin-left: 10px;
}

.page{
font-family: 'Special Elite', 'Zen Old Mincho', serif;
text-align: center;
padding-top: 10px;
margin-top: 30px;
color: #A8A8A8;
}

.more a,.page a{
font-family: 'Special Elite', 'Zen Old Mincho', serif;
padding: 0 5px;
background-color: #FFF;
border-bottom: none;
margin-top: 10px;
display: inline-block;
}

.page a{
background-color: transparent;
}

.date{
font-family: 'Special Elite', serif;
font-size: 14px;
}

.memo-back{
font-family: 'Special Elite', serif;
margin-left: 0;
}

/* 500px以下のデバイスでの見え方 */
@media screen and (max-width: 500px) {
header,main{
width: 90%;
}

header img{
width: 260px;/* ★スマホ画面でのTOP画像の横幅 */
}

.top{
top: 110px;
}

h1{
font-size: 22px;
}
}
</style>
