@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=DotGothic16&family=Potta+One&family=Yusei+Magic&display=swap');
@import url(https://fonts.googleapis.com/icon?family=Material+Icons+Sharp);

 .yusei-magic-regular {
    font-family: "Yusei Magic", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .dotgothic16-regular {
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .potta-one-regular {
    font-family: "Potta One", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  .dela-gothic-one-regular {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 100;
    font-style: normal;
  }  
  
  

html{
    font-family: "DotGothic16", sans-serif;
    color: midnightblue;
    font-size: 16px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: rgb(247, 247, 247);
}

/*大まかな設定*/
body{
    box-sizing: border-box;
    margin: auto;
    width: 90vh;
    height: 90vh;
}
a{
    color: rgb(65, 85, 245);
    text-decoration: none;
}
a:hover{
    color: rgb(60, 170, 255);
    transition: 0.5s;
}

/*サイトロゴ*/
#top{
    display: block;
    box-sizing: border-box;
    text-align: center;
    padding-top: 25vh;
    margin: 1.5em auto;
    margin-bottom: 70%;
    width: 50vh;
}

/*各タイトル*/
h2{
    display: block;
    box-sizing: border-box;
    font-family: "Potta One", system-ui;
    color: rgb(47, 30, 242);
    font-size: 1em;
    border-left: 3px dashed rgba(0, 85, 255, 0.70);
    border-bottom: 3px dashed rgba(0, 85, 255, 0.70);
    padding: 0.5em;
    margin: 0.3em auto;
}
h3{
    display: inline-block;
    font-family: "Dela Gothic One", sans-serif;
    color: rgba(70, 60, 160, 0.85);
    font-size: 0.9em;
    border-left: 1px solid rgba(32, 32, 190, 0.815);
    padding: 0.5em;
    margin: 0.3em 0.3em;
}

/*下線*/
u{
    text-decoration-line: underline;
    text-decoration-color: rgb(10, 165, 255);
}

/*ボックス*/
.box{
    display: block;
    font-size: 0.9em;
    box-sizing: border-box;
    background-color: rgba(4, 0, 255, 0.785);
    border: 1px solid blue;
    border-radius: 0.2em;
    padding: 1.2em 3em;
    margin: 0.7em 0;
    width: 80%;
}
.box p{
    color: rgba(210, 230, 240, 0.76) !important;
}
.box a{
    font-size: 0.9em;
    color: aquamarine;
    text-decoration: underline;
}
.box a:hover{
    color: aliceblue;
    transition: 0.2s;
}
.box h3{
    color: aquamarine !important;
    border-color: aqua !important;
    padding: 0.5em !important;
    margin-top: 1em !important;
}

/*ボタン*/
button.link{
    display: inline-block;
    background-color: antiquewhite;
    color: blue;
    border: 1px solid black;
    border-radius: 0.2em;
    margin-bottom: 1.3em;
    width: auto;
    cursor: pointer;
    white-space: nowrap;
}

button.link:hover{
    color: #777;
    transition: 1s;
}

/*画像*/
.illust ul{
    padding: 0.5em;
}

.illust li{
    border: 1px solid #000000;
    border-radius: 3px;
    padding: 0.5em;
}

/*中身*/
.mainarea{
    background-image: url("/backimg01.png");
    background-position-x: center;
    background-position-y: center;
    background-attachment: cover;
    background-origin: border-box;
    background-size: 100vh;
    background-repeat: no-repeat;
    display: block;
    box-sizing: border-box;
    border: 5px solid blue;
    width: 90vh;
    height: 80vh;
    text-align: start;
    margin: auto;
    padding: 1.5em 3em;
    width: auto;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

/* PC表示時のスクロールバー */
    .mainarea::-webkit-scrollbar {
    width: 7px;
    }
        
    .mainarea::-webkit-scrollbar-thumb {
    background-color: gold;
    }
        
    .mainarea::-webkit-scrollbar-track {
    background-color: rgba(200, 200, 200, 0.74);
    }
    

.section{
    display: block;
    box-sizing: border-box;
    border: 1px solid mediumblue;
    border-radius: 0.3em;
    background-color: rgba(240, 248, 255, 0.510);
    padding: 4.5em 5.7em;
    margin: 50% 0 auto;
}
.section p{
    font-size: 0.9em;
    color: rgb(74, 74, 100);
}


/*メニュー*/
.navigation{
    display: block;
    position: relative;
    margin: 0 auto;
    width: auto;
}

ul.menu{
    display: flex;
    font-family: "Potta One", system-ui;
    list-style: none;
    margin: 0 auto;
    padding-left: 1em;
    font-size: 1.3em;
    word-break: break-all;
}

ul.menu li{
    line-height: 1.5;
    padding: 0.8em;
}

ul.menu li a{
    color: blue;
}
ul.menu li a:hover{
    color: rgb(60, 170, 255);
    text-decoration: underline;
    text-decoration-color: aqua;
    transition: 0.5s;
}

ul.menu li a span{
    color: blue;
    font-size: 1.5em;
}
ul.menu li a span:hover{
    color: rgb(60, 170, 255);
    transition: 0.5s;
}

ul.menu a.diary::after{
    font-family: "Material Icons Sharp";
	content: '\f1e1';
	font-size: 16px;
}

.mobilemenu{
    display: none;
}

.blinks p{
    text-align: right;
}

/*リンクリスト*/
#links ul.search{
    list-style: disc !important;
    font-size: 3em;
    color: blue !important;
    margin: 0.3em;
}
#links ul.bkms{
    list-style: disc;
    color: azure;
}
#links ul.bkms li a{
    font-size: 0.9em;
    color: aqua;
    text-decoration: none;
}
#links ul.bkms li a:hover{
    color: whitesmoke;
    transition: 0.2s;
}

/*フッターエリア*/
footer{
    margin: 0 auto;
    width: 90vh;
}
footer .bottom{
    background-color: blue;
}

.material-icons-sharp{
    font-size: 1.1em;
    display: inline-block;
    color: whitesmoke;
    margin: auto;
    padding: 0;
}

ul.social{
    display: i;
    list-style: none;
    margin: 0 1em 0.3em 0;
    text-align: end;
}
ul.social li{
    color: skyblue;
    font-size: 0.9em;
    display: inline-flex;
    margin: 0.5em 0 auto 0;
    padding: 0;
}
ul.social li a{
    font-size: 0.9em;
    color: rgb(130, 222, 255);
    text-decoration: none;
}
ul.social li a:hover{
    color: whitesmoke;
    text-decoration: none;
    transition: 0.7s;
}


p.powerd{
    text-align: end;
    color: rgba(245, 245, 245, 0.885);
    font-size: 0.8em;
    margin: 0 7px;
}


@media screen and (max-width: 800px) {
/*背景*/
body{
    margin: auto;
    width: auto;
}

/*サイトロゴ*/
#top{
    display: block;
    width: 100%;
    margin-bottom: 50vh;
}

.mainarea{
    width: auto;
    margin: 0 auto;
    padding: 1.5em 2em;
    width: auto;
    overflow-y: scroll;
}

.section{
    padding: 1.7em;
    margin: 50% auto;
    width: auto;
}
.section p{
    font-size: 0.7em;    
}

/*各タイトル*/
h2{
    font-size: 0.9em;
    padding: 0.3em;
    margin: 0.3em auto;
}
h3{
    font-size: 0.8em;
    padding: 0.3em;
    margin: 0.3em;
}

a{
    font-size: 0.8em;
}

/*ボックス*/
.box{
    font-size: 0.75em;
    padding: 0.7em 2em;
    margin: 0.7em 0;
    width: auto;
}

.box a{
    font-size: 0.75em;
}

.box h3{
    font-size: 0.8em !important;
    padding: 0.5em !important;
    margin-top: 1em !important;
}

/*ボタン*/
button.link{
    margin-bottom: 1em;
    font-size: 0.8em;
    width: auto;
    white-space: nowrap;
}

/*画像*/
.illust ul{
    padding: 0.5em;
    width: 100%;
}

.illust li{
    padding: 0.5em;
    width: 100%;
}


/*メニュー*/
.navigation {
    display: none;
}

ul.mobilemenu{
    display: block;
    margin: auto;
    width: auto;
    background-color: blue;
    border-bottom: 1px dashed whitesmoke;
}

ul.mobilemenu{
    display: flex;
    font-family: "Potta One", system-ui;
    list-style: none;
}
.mobilemenu a{
    color: aqua;
}
.mobilemenu a:hover{
    color: white;
}

.mobilemenu li{
    padding: 0.5em;
}

/*フッターエリア*/
footer{
    width: auto;
}

}
