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


html {
    background-color: #fff;
    /* スクロールをスムーズに */
    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:link,
a:visited,
a:hover,
a: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-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(232, 232, 232, 1));
}

.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: #d3cfd9;
}

nav {
    display: flex;
    font-family: "Lexend", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    color: #eee;
    margin: 0; padding: 0;
}

a {text-decoration: none}
nav a:link,
nav a:visited,
nav a:hover,
nav a:active {
    width: 90px; height: 90px;
    color: #95949a;
    display: flex;
    justify-content:center; /*中央揃え*/
    align-items:center; /*中央揃え*/
    flex-direction:column;}


nav a:hover,
nav a:active {
    background-color: #e7e7eb;
    transition : 0.5s;
}

i {
    display: block;
    font-size: 24px;
    margin: 2px;
}
p {
    display: block;
    font-size: 80%;
}

.first-nav {
    border: 1px solid #eee;
}

.last-nav {
    border-top: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}


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

    .charapic{
        width:90%;
    }
}