@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Barlow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vujahday+Script&display=swap');

/* 基本設定 */

body {
  background-color: #ece4dc;
  font-size: 80%;
    font-family: 'メイリオ', 'ヒラギノ角ゴ', sans-serif;
    letter-spacing: 0.2em;
    line-height: 1.8;
  min-height: 100vh;
  margin: 30px;   /* 外側の余白を40pxにする */
  padding: 0;      /* 内側の余白を消す(念のため) */
}

    a:link {
     color: #513743;
    }
    a:visited {
     color: #666666;
    }
    .link a:link {
     color: #FFFFFF;
    }
    .link a:visited {
     color: #EEEEEE;
    }

h2 {
    position: relative;
     top: 0;
    padding: 1px;
    margin: 50px 0 30px;
    font-size: 1.3em;
    line-height: 2.5rem;
    text-align: center;
    text-indent: .2em;
    z-index: 2;
}
h2::after {
    content: '';
    display: block;
    position: absolute;
     top: 70%;
    width: 50%;
    height: 1px;
    border-top: #cad4d8 solid 1px;
    box-sizing: border-box;
    transform: translateX(50%);
    z-index: -1;
}