@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Hachi+Maru+Pop&display=swap");

            /* user styles */

            /* styles are what change the color and sizes of stuff on your site. */

            /* these are variables that are being used in the code
    these tended to confuse some people, so I only kept 
    the images as variables */

            :root {
                --header-image: url('img/header.png');
                --body-bg-image: url('img/background.gif');

                /* colors */
                --content: #404040;
            }

            /* if you have the URL of a font, you can set it below */
            /* feel free to delete this if it's not your vibe */

            /* this seems like a lot for just one font and I would have to agree 
    but I wanted to include an example of how to include a custom font.
    If you download a font file you can upload it onto your Neocities
    and then link it! Many fonts have separate files for each style
    (bold, italic, etc. T_T) which is why there are so many!
    
    */

            body {
                font-family: "Kiwi Maru";
                font-weight: 400;
                font-style: normal;
                margin: 0;
                background-color: #9f9f9f;
                /* you can delete the line below if you'd prefer to not use an image */
                background-size: 65px;
                color: #4b4b4b;
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
                max-width: 900px;
                
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.253);
  border-color: #a4a4a4;
  border-style: outset;
  border-radius: 20px;
                /* this is the width of your layout! */
                /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
                margin: 0 auto;
                /* this centers the entire page */

                margin-top: 30px;
                margin-bottom: 30px;
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: #ff98d4;
                font-weight: bold;
            }

            #container a:hover {
                color: #ffcdea;
}
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */

            #header {
                width: 100%;
                background-color: #f7f7f7;
                /* header color here! */
                height: 120px;
                border-radius: 15px 15px 0px 0px;

                content: " ";
  display: block;

                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: #ffffff;
                /* navbar color */
                width: 100%;
                border-color: #a4a4a4;
                border-style: solid;
                border-left: none;
                border-right: none;
                border-width: 2px;
                padding-bottom: 45px;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: #ff98d4;
                /* navbar text color */
                font-weight: 800;
                text-decoration: none;
                /* this removes the underline */
                text-shadow: 1px 1px 4px #ffcdea;
                background-color: inherit;
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
                color: #ffcdea;
                text-decoration: none;
            }

            #flex {
                display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
                background-color: #f7f7f7;
                width: 200px;
                padding: 20px;
                font-size: smaller;
                /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
                background-color: #fefefe;
                flex: 1;
                padding: 20px;
                order: 2;
            }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

            */ #leftSidebar {
                order: 1;
            }

            #rightSidebar {
                order: 3;
            }

            footer {
                background-color: #ffffff;
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
                border-radius: 0px 0px 15px 15px;
                
                border-color: #a4a4a4;
                border-style: outset;
                border-left: none;
                border-right: none;
                border-bottom: none;
                border-width: 2px;
            }

            h1,
            h2,
            h3 {
                color: #ff98d4;
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: #ff98d4;
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                background-color: #ffffff;
                border: 1px solid #ff98d4;
                padding: 5px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: #f7f7f7;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }

            /* 追加 */
            ::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

html::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,0.1) 50%);
    background-size: auto;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  z-index: 999999999;
}

.title-text {
  font-size: 60px;
  color: #ff98d4;
  filter: drop-shadow(0px 2px rgba(255, 255, 255, 0.577)) drop-shadow(0 -2px rgba(255, 255, 255, 0.577)) drop-shadow(2px 0 rgba(255, 255, 255, 0.577)) drop-shadow(-2px 0 rgba(255, 255, 255, 0.577));
  text-shadow: 1px 1px 4px #ffffff;
  font-family: "Hachi Maru Pop", cursive;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: 20px;
  position: absolute; /*自由に配置する指定*/
  top: 40px; /*上からの位置*/
}

.character{
    text-align: center;
}

.character img{
    width: 140px;
    border-radius: 20px;/* キャラ画像の丸さ */
}

.character a:hover{
    text-align: center;
     width:			100%;
    height:			100%;
    top:			0;
    left:			0;
    background-color:	rgba(0,0,0,0.4);	/* マスクは半透明 */
    -webkit-transition:	all 0.2s ease;
    transition:		all 0.2s ease;
    opacity:		1;	/* マスクを表示する */

}

hr{
    color: #cdcdcd;
}