@charset "utf-8";
/* Webフォント 読み込み */
/* ゴシック系 */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap'); */
/* 明朝系 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');


/* 共通 --------------------------*/
/* ページ全体に関わるCSSの設定 */
html *,
::before,
::after {
	box-sizing: border-box;
}
/* ページ内リンクを時間をかけてながら表示する */
html {
	scroll-behavior: smooth;
}
/* フォント */
html {
	font-size: 14px;
}
@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}
/* フォント設定 */
body {
	font-family: 'Noto Serif JP', serif;   /* 明朝体 200 400 700 900 */
	font-weight: 200; /* 太さを指定 */
	/* font-family: 'Noto Sans JP', sans-serif;   ゴシック体 100 400 700  */
	
	line-height: 1.8rem;
	color: hsla(0,100%,0%,0.8);/* グレー */
}
/* おもな太字タグのフォントウェイトと余白設定 */
h1, h2, h3, h4, h5, h6, th, strong {
	font-weight: 700;
	margin: 0;
	padding: 0;
}
/* 段落タグの余白設定 */
p {
	margin: 0;
	padding: 0;
}

/* ベースのリンクカラー */
a {
	color: hsla(220,100%,50%,0.8); /* 青 */
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
}
/* レスポンシブイメージと画像下スペース防止 */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;/* 画像下のスペースを消す */
}

/* /ページ全体に関わるCSSの設定 */

/* /共通 --------------------------*/




/* ヘッダー --------------------------*/
@media (min-width: 768px) {
	.header-container {
		margin: 0 auto;
		padding: 0 20px;
		max-width: 1040px;
	}
}
/* ヘッダーロゴとモバイルナビボタン */
.sitetitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media (min-width: 768px) {
	.sitetitle {
		display: block;
		padding: 30px 0 0 0;
	}
}
/* ヘッダーロゴ */
.header-logo {
	margin: 0;
	padding: 10px 0px 0px 15px;
	font-size: 2rem;
	line-height: 1;
}
@media (min-width: 768px) {
	.header-logo {
		padding: 0;
	}
}

/* 追加 ここから -------------------*/ 
@media (max-width: 768px) {/* spのみ */
	.header-container {
		height: 60px;
		z-index: 2;
	}
	.header-logo img {
		padding-top: 17.5px;/* 60px - 25px(ロゴの高さ)＝35px->/2=17.5px */
	}
	.header-container .navbtn.close {
		background-color: hsla(0,100%,0%,0.5);/*追加*/
		background-size: 60px 60px;/*追加 必須 ボタンの大きさ*/
		background-image: url(../images/nav-mobile-close.svg);
		/*background-position: top left;ボタンの位置-左*//*追加*/
		background-position: top right;/*ボタンの位置-右*//*追加*/
		width: 100vw;
		height: 100vh;
	}
	.header-nav {
		position: fixed;
		top: 60px;
		width: 100vw;
		z-index: 2;
	}
	.header-nav {
	}
}
/* 追加 ここまで -------------------*/


/* モバイル向けボタン */
.navbtn {
	z-index: 1;
	position: fixed;
	top: 0px;
	/*left: 0px;ボタンの位置-左*/
	right: 0px;/*ボタンの位置-右*/
	display: block;
	width: 60px;
	height: 60px;
	background-image: url(../images/nav-mobile-open.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
.navbtn.close {
	background-image: url(../images/nav-mobile-close.svg);
}
@media (min-width: 768px) {
	.navbtn {
		display: none;
	}
}
/* ヘッダーナビゲーション */
.header-nav {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header-nav.collapse {
	display: none;
}
.header-nav li a {
	display: block;
	padding: 20px 30px;
	border-top: 1px solid #d8d8d8;
	background: #efefef;
	color: hsla(0,100%,0%,0.5);/* グレー */
	text-decoration: none;
}
.header-nav li a:hover {
	background: #b8e5ea;
	text-decoration: none;
}
@media (min-width: 768px) {
	/* PC向けレイアウト */
	.header-nav {
		display: flex !important;
		flex-direction: row;
		justify-content: flex-end;
	}
	.header-nav li a {
		padding: 6px 20px 2px 20px;
		border-top: none;
		border-bottom: 4px solid transparent;
		background: none;
	}
	.header-nav li a:hover {
		border-bottom: 4px solid #73cbd6;
		background: none;
	}
}


/* コンテンツ部分 --------------------------*/

.container {
	padding: 60px 4%;
	background-color:#fcf7f7;
}

.bana{
	margin :50px 5%;	
}
.bana-text1{
	font-weight: bold;
}

.bana-1 img{
	width:800px;
}

.bana-1 {
	margin: 30px 0;
}

@media (min-width: 768px) {
.container {
		max-width: 1040px;
		margin: 0 auto;
		padding: 60px 20px 120px 20px;
	}
}
/* レイアウト */
.wrapper {
	margin: 0 0 60px 0;
	display: grid;
	grid-template-columns: 1fr;
	grid-auto-rows: minmax(100px, auto);
	column-gap: 10px;
	row-gap: 30px;
	padding: 0 0 30px 0;
	border-bottom: 1px solid hsla(0,100%,0%,0.3);
}
@media (min-width: 768px) {
	.wrapper {
		grid-template-columns: 1fr 1fr;
		column-gap: 20px;
	}
}

/* copy */
.copy {
	padding: 0px 0 0px 0;
	margin: 0px 0 0px 0;
	font-family: courier, "courier new", monospace;
	color: hsla(0,100%,0%,0.3);
	font-size: 0.8rem;
	text-align: center;
}
/* ボタンの上の余白 */
.btn {
	margin: 1rem 0 0 0;
}

/* ここまで */



