@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Lexend:wght@100..900&display=swap');


html {
    /* スクロールをスムーズに */
    scroll-behavior: smooth;
    text-align: center;
    /* フォント */
    font-family: "Kiwi Maru", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 1.6em ;
    color: #333;
}

body {
  /* ページ遷移でふわっと表示するために必要 */
    display: none;
}

a{ text-decoration: none;}

.a-text:link,
.a-text:visited{
    color:#333;
}

.a-text:hover,
.a-text:active{
    color:#333;
}

h1, h2{
    /* フォント */
    font-family: "Kiwi Maru", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 14px;
    line-height: 1.6em ;
}

.box-parent {
    display: flex;
    flex-direction: column;
    justify-content:center; /*これを指定*/
    align-items:center; /*これを指定*/
    height: 100dvh;
    width: 100dvw;
    justify-content: space-around;
    /* 背景 */
      background: linear-gradient(45deg, #2B2E40, #797E8C);
}

.card {
    width: 360px;
    height: auto;
    background-color: #fff;
    margin: 0 auto;
}

header {
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px dashed #eee;
}

main {
    display: inline-block;
    text-align: left;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

ul {
    display: block;
    padding: 0px 30px 30px 50px;
    position: relative;
}

ul li {
    line-height: 1.5;
    padding: 0.25em 0;
    list-style-type: none!important;
  }
  
  ul li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f14a";/*アイコンの種類*/
    position: absolute;
    left: 30px;
    color: #c8c2c6;/*アイコン色*/
  }

h1 { /* サイト名 */
    display: block;
    }

h2 { /* HN */
    display: block;
    color: #c8c2c6;
    font-size: 75%;
    margin-bottom: 20px;
}

h3 { /* caution */
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 10px auto;
    padding-top: 20px;
    font-size: 18px;
    text-align: center;
    color: #CCCFD9;
}

nav {
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    margin-bottom:40px; padding: 0;
}

.btn {
    display: inline-block;
    padding: 5px 15px;
    margin: 0 10px;
    border-radius: 25px;
    text-decoration: none;
    color: #eee;
    background-color: #333;
    transition: .8s;
    }
    
.btn:hover {
    color: #333;
    background-color: #eee;
    }

i {
    display: block;
    margin: 2px;
}

/* めでぃあくえり */
@media screen and (max-width: 959px) {
    html {
    }

    .charapic{
        width:90%;
    }
}
