@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');


:root{
	--mustard:#cdac13;
	--darkbrown:#463002;
	--lightyellow:#f9f5da;
}

html{
	scroll-padding-top: 120px;

}

body{
	font-family: 'Noto Sans JP', sans-serif;
	background: var(--lightyellow);
	color: var(--darkbrown);
	/*background: #ccc;*/
}

.weight100	 {font-weight:100}
.weight300	 {font-weight:300}
.weight400	 {font-weight:400}
.weight500	 {font-weight:500}
.weight600	 {font-weight:600}
.weight700	 {font-weight:700}
.weight900	 {font-weight:900}

ul{
	padding: 0;
	margin: 0;
}

li{
	list-style: none;
	margin-bottom: 2em;
}

p{
	margin: 0;
	line-height: 180%;
}


/*
{
border: 1px solid #333;
}
*/

.wrapper{
	max-width: 1920px;
	}

/*header*/

.header{
  position: relative;
  width: 100%;
	font-weight: 400;
}

.header a{
	text-decoration:none;
}

.header a:visited{
	text-decoration:none;
	color: inherit;
}


.title{
	height:60px;
  display: grid;
  place-items: center;
}

.nav{
  display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	font: 700 1.2rem 'Noto Serif JP';
	color: var(--darkbrown);
	height: 120px;
	padding: 10px 10px 10px 10px;
	position: fixed;
	top:0;
	left: 0;
	z-index: 1;
	background: linear-gradient(
	rgba(249,245,218,1) 20%, 
	rgba(249,245,218,0.8) 60%, 
	rgba(249,245,218,0) 100%);
}

h1{
	display: flex;
	align-items: center;
	font-size: 18px;
	flex: 1;
	margin: 0;
	padding: 0;
}

.nav-inner{
	display: flex;
	align-items: center;
	}

.nav-inner a{
	color: var(--darkbrown);
}

.logo{
	padding: 10px;
}

.nav-menu a{
	display: block;
	margin: 0px 5px;
	padding: 5px 20px;
	transition: color 0.3s ease-out;
	border-radius: 3px;
}


.nav-menu a:hover{
	background: var(--darkbrown);
	color: #fff;
}



/*contents*/

h2{
	text-align: center;
}

.contents-inner{
	margin: 20px auto;
	width: 95%;
}

.contents-inner a{
	color: #685224;	
}

.contents-inner a:hover{
	color: #b3a952;
	text-decoration: none;
}

.contents-inner a:visited{
	color: #b3a952;
}






/*button*/


a.button{
	position: relative;
	display: block;
	background: var(--mustard);
	width: fit-content;
	color: #fff;
	font: 700 1.2rem 'Noto Serif JP';
	padding: 1em 5em;
	margin: 1em auto;
	border-radius: 10px;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
	text-decoration: none;
}


a.button:hover{
	color: #fff;
	position: relative;
	top: 3px;
	box-shadow: none;
	background: #d9b950;
	transition: 0.3s ease-out;
}

a.button:visited{
	color: #fff;
}




/*exp footer*/

.footer{
	margin: 0 auto;
	margin-top: 50px;
	padding: 30px;
	text-align: center;
	background: var(--darkbrown);
	font: 600 1rem 'Noto Serif JP';
	color: var(--lightyellow);
}





	/* ヘッダーロゴ画像画像切り替え */
@media screen and (min-width: 1051px) {
 .logomobile{
	display: none;
	}
}


@media screen and (max-width: 1050px) {
	/* 1050px以下に適用されるCSS（ヘッダー変更）950px→1050pxに仕切り変更 */

.nav{
	flex-direction: column;
	font-size: 0.7em;
	padding: 0;
	height: inherit;
}

 .logopc{
	display: none;
	}

.logo{
	margin: 10px;
	padding: 0;
}

.title{
	font-size: 0.6em;
	height: inherit;
}

.nav-inner{
	width: 100%;
	justify-content: center;
}

.nav-menu{
	background: var(--darkbrown);
	color: var(--lightyellow);
	margin: 2px;
	font-size: 0.5em;
	width: 25%;
	text-align: center
	}

.nav-menu a,
.nav-menu a:visited{
	color: #fff;
	padding: 5px 0px;

}

.footer span{
	font-size: 0.7em;
	display: inline-block;
	}
}



@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */
.header{
	width: 100vw;
}

.header .nav-menu{
}

a.button{
	padding: 1em 3em;
}


}