@charset "UTF-8";

/* 共通 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    font-family: "Noto Sans","Helvetica Neue","Segoe UI",sans-serif;
    margin: auto;
    background-color: #e5f6fd;
  }

body {
    width: 100%;
    max-width: 400px;
    margin: auto;
    font-family: "Noto Sans","Helvetica Neue","Segoe UI",sans-serif;
    line-height: 1rem;
    
}

img{
    max-width: 90%;
    text-align: center;
    
}

div {
    text-align: center;
    background-color: #CAEBF9;
  }


/*header*/
.header {
    width: 100%;
    height: 100px;   
}
.page-header{
    display: block;
    justify-content: space-between;
    background-color: #fff;
}
.page-header img{
    float: none;
	max-width: 80%;
	text-align: center;
    margin: 80px 0px 80px 0px;
}

.lineup{
    display: block;
    padding-bottom: 80px;
    background-color: #CAEBF9;
}

.titel {
    text-align: center;
    margin: 80px 0px 80px 0px;
}

.language {
    display: block;
    padding-bottom: 80px;
    background-color: #fff;
    background-image:
    radial-gradient(#CAEBF9 20%, transparent 20%),
    radial-gradient(#CAEBF9 20%, transparent 20%);
    background-size: 10px 10px;
    background-position: 0 0, 35px 35px;

}
.language-titel {
    text-align: center;
    margin: 80px 0px 40px 0px;
}

.language-sub_titel {
    text-align: center;
    width: 70%;
    margin-bottom: 40px;
}
.p{
    color:#000000;
    font-size: 2rem;
    font-weight:400;
    font-family: "Noto Sans","Helvetica Neue","Segoe UI",sans-serif;
}

a.btn_01 {
    position: relative;
    display: block;
    text-align: center;
    text-decoration: none;
    margin: 1rem;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 3px solid #27acd9;
    color: #27acd9;
    background-color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
}

a.btn_01:hover {
    color: #fff;
    background: #27acd9;
}

footer{
    height: 50px;   
    background: #e5e5e5;
}

p{
    font-size: 10px;
    font-weight: bold;
}


