@charset "UTF-8";
/* CSS Document */

/*フォント種類*/

.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
	}
	
body {
  font-family: "Zen Kaku Gothic New";
}
/*以下一旦放置
.font-L300 {
  font-family: 〇〇〇〇;
}
.font-R400 {
  font-family: 〇〇〇〇;
}
.font-M500 {
  font-family: 〇〇〇〇;
}
.font-B700 {
  font-family: 〇〇〇〇;
}
.font-B900 {
  font-family: 〇〇〇〇;
}
*/
/*フォント種類*/


body{
    margin-left: 0;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    
}

a {
	text-decoration:none;
color: #525252;
  text-decoration: none;}

*{
    margin: 0;
    padding: 0;
}

header{
    width: 100%;
    height: 80px;
    padding: 0 5%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
}

nav{
    width: 50%;
}

nav ul{
    display: flex;
    list-style-type: none;
    justify-content: space-around;
}

nav ul li a{
    text-decoration: none;
    color: #000;
}









