/* version 1.1.0 */

html, body  {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

body {
	top:0;
	left:0;
	width: 100%;
	height: 100%;
    font-family: sans-serif;
}

p {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    background:transparent;
}

h2, h4 {
    margin: 0 auto;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

form {
    width: 360px;
    margin: auto;
    padding: 3em 2em 2em 2em;
    background: #fafafa;
    border: 1px solid #ebebeb;
    box-shadow: rgba(0,0,0,0.14902) 0px 1px 1px 0px,rgba(0,0,0,0.09804) 0px 1px 2px 0px;
  }

input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: #fafafa;
    color: #636363;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
  }
  
input:focus { outline: none; }

header {
    width: 100%;
    position: fixed;
}

#app-title {
    font-size: xx-large;
}

#container {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
}

#top-theme {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-image: url("top-theme.jpg");
    background-color:rgba(255,255,255,0.5);
    background-blend-mode:lighten;
    background-size: cover;
    background-repeat: no-repeat;
}

#top-theme p {
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: xx-large;
    font-weight: bold;
    text-shadow: #008b8b 2px 2px;
}

#top-theme ul {
    list-style: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: x-large;
    font-weight: 600;
    text-decoration: underline #008b8b;
}

#top-theme li {
    padding-top: 16px;
}

#download {
    text-align: center;
}

.container-element {
    padding: 16px;
}

.EN {
    display: none;
}

.button-container {
    display: flex;
    justify-content: center; /* ボタンを中央揃え */
    margin: 16px;
}

.pass_forget {
    color: mediumblue;
    cursor: pointer;
}

@media screen and (min-width:481px) {

    header {
        height: 50px;
        padding: 0 10px;
        background-color: #008b8b;
        color: #fefefe;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
      
    .menu-btn {
        display: flex;
        align-items: center;
    }

    .menu-btn input {
        margin-left: 16px;
    }
    
    footer {
        position:relative;
        height: 100px;
        background: #fff;
        border-top: #008b8b solid 6px;
        text-align: center;
        font-size:medium;
    }

    .footer-parts {
        display: flex;
        justify-content: space-between;
    }

    #menu-show-btn-for-phone{
        display: none;
    }
    
    #menu {
        z-index:3;
        position:absolute;
	    top:0;
        left: 0px;
        color:#000;
        background:#fefefe;
        width: 300px;
        min-height:100%;
        transition:.05s;
        display: none;
    }
}

@media screen and (max-width:480px) {    
    
    #mapcontainer {
        height:100%;
    }
    header {
        display: none;
    }
    
    footer {
        display: none;
    }
    
    #menu {
        z-index:3;
        position:absolute;
        top:0;
        left: 0px;
        color:#000;
        background:#fefefe;
        width: 100%;
        min-height:100%;
        transition:.05s;
        display: none;
    }

    .menu-btn {
        z-index: 2;
        position: absolute;
        left:8px;
        top: 6px;
    }
    
    #explain-show {
        display: none;
    }
    
}

/*menu*/
#menu-show-btn, #menu-close-btn{
	cursor:pointer;
}
.menu-wrapper{
    position: absolute;
    width: 90%;
    top:55px;
    left:10px;
    padding: 10px;
}

.menu-btn i {
    font-size: 30px;
}
#cover{
	background:#000;
	opacity:0.6;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	z-index:2;
	display:none;
    cursor: pointer;
}
/* .menu-check{
    display: none;
} */
.menu-label{
    color: #fefefe;
    display: block;
    width:90%;
    margin-bottom: 5px;
    padding: 10px;
    cursor: pointer;
    position: relative;
}

.green-btn{
    position: static;
    color: #fefefe;
    background-color: #008b8b;
    border-bottom: 4px solid #434343;
}

.green-btn:active {
    border-bottom: none;
}

.circle-btn {
    background-color: gray;
    opacity: 0.8;
    border-radius: 50%;
    color: white;
}