@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}


/* PC　ボディ*/
body {
  color: #333; /* RGB */
  background-color: #EDE8DF;
  font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 2.1rem;
  text-align: center;
}



/* スマホ　ボディ*/
@media screen and (max-width: 520px) {

 body {
  color: #333; /* RGB */
  background-color: #EDE8DF;
  font-family: "Noto Serif JP", Noto Sans JP, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.75rem;
  text-align: left;
  min-width: auto;
 }
/*img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}	*/
	
	
	
}


/* PC　inner*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}



/* スマホ　inner*/
@media screen and (max-width: 520px) {
	
.inner{
  width: 100%;
  min-width: auto;
  padding: 0 24px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}	
	
}



section h2 {
  font-family:Noto Serif JP, Helvetica, 'sans-serif';
  font-size: 2.4rem;
  letter-spacing:0.3rem;
}
a:hover {
  opacity: 0.5;
}
.none{
  display:none;
}