@charset "UTF-8";			/* コードの文字化けを防ぐ	*/

/* 共通部分 */
html{
	font-size: 100%;		/* ユーザーの設定した文字サイズを正しく反映 */
}
body{
							/* 書体の指定			*/
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
	line-height: 1.7;		/* 行の高さの指定		*/
	color: #333	;		/* 色の指定			*/
}
a{
	text-decoration: none;	/* タグの傍線の指定	*/
}
img{
	max-width: 100%;		/* 画像の大きさの指定			*/
	pointer-events: none;	/* 右クリック、長押しで画像コピー不可		*/
}

/* レイアウト	*/
.wrapper{					/* ヘッダーのclass	*/
	padding: .5rem 1.5rem;		/* 上下、左右に余白			*/
}
/*
.wrapper-gal{					/* ヘッダーのclass	
	padding: 0 0;		/* 上下、左右に余白			
}
*/
.align-center {
	text-align: center;		/* 中央揃えに		*/
}


/* 見出し	*/
.font-english{				/* 欧文フォントの指定	*/
	font-family: 'Philosopher', sans-serif;
	font-weight: normal;
}
.page-title,
.heading-medium{			/* What's New、感想・コメント	*/
	font-size: 1.3rem;
	text-align: center;		/* センタリング		*/
	line-height: 1;
	margin-bottom: 1rem;
}
.page-title-2{				/* Photo by Shigeru Sone */
	font-size: 1.1rem;
	text-align: center;		/* センタリング		*/
	line-height: 1;
	margin-bottom: 1rem;
}
/* ボタン */
.btn {
    display: inline-block;
    font-size: 1.0rem;
    background-color: #0bd;
    color: #fff;
    border-radius: 8px;
    padding: .3rem 2.0rem;
    transition: .5s;
}
.btn:hover {
    background-color: #0090aa;
}

.page-title{
	margin-top: 4rem;		/* 余白の指定			*/
	line-height: 0;			/* 余白の指定(文字の上） Org.1.4	*/
	color: #fff;
}
.page-title-2{
	margin-top: 2rem;		/* 余白の指定			*/
	line-height: 0;			/* 余白の指定(文字の上） Org.1.4	*/
	color: #fff;
}
/* ヘッダー	*/
.main-nav,
.gallery-nav{					/* ナビゲーションメニューを装飾する	*/
	display: flex;			/* liタグを横並びに(Flexbox)		*/
	justify-content: right;	/* menu全体を右に				*/
	gap: 1.2rem;			/* menuの間隔					*/
	font-size: 1.0rem;		/* fontサイズ					*/
	list-style: none;
}
.main-nav a{
	color: #fff;			/* 白		*/
}
.main-nav a:hover{			/* リンクテキストにカーソルを合わせた時の文字色を指定 */
	color: #0bd;
}
.gallery-nav a{
	color: #000;
}
.gallery-nav a:hover{			/* リンクテキストにカーソルを合わせた時の文字色を指定 */
	color: #0bd;
}
.cover{						/* coverクラスに画面いっぱいに広げる指定	*/
	background-size: cover;
	background-position: center; /* bottom; */
	height: 650px;
}
.cover-home{
	background-image: url(images/home-kurosagiSQ.webp);		/* クラスに背景画像を指定		*/
}
/* 記事部分	*/
.post{
	margin-bottom: 3rem;
}
.post p{
	margin-bottom: 1.5rem;
	line-height: 2;			/* 行間			*/
}
.copyright{
	background-color: #fff;		/* Org.#432	*/
	text-align: center;
	padding: 0.3rem 0;				/* エリアの高さ			*/
	margin-top: 0rem;				/* エリアまでの距離	Org.3rem	*/
	color: #000					/* 文字の色=白 16*3で表す	*/
}

.grid{
	display: grid;			/* タイル型に並べる		*/
	gap: 2rem 1.5rem;		/* 縦、横の余白			*/
	grid-template-columns: repeat(2,1fr);	/* 1frのboxが1列に２つ並ぶ	 */
	text-align: center;
}
.item img{
	border-radius: 16px;	
}
.item p{
	font-size: .875;
}
.soto{
	width: 94%;
	margin: 1.0rem auto 1.0rem;
}
.yoko{						/* 写真横表示		*/
	margin: 0 auto;
}
.yokoo-ichi{				/* 写真横表示		*/
	margin: 1rem auto;
}
.tate{						/* 写真縦表示		*/
	width: 60%;
	margin: 0 auto;
}
.gyokan-m05{				/* 写真の下の文字表示の行間	*/
	margin-top: -0.5rem;
}
.gyokan-05{				/* 写真の下の文字表示の行間	*/
	margin-top: 0.5rem;
}
.small{
	padding-top: .2rem;
	font-size: .85rem;
	line-height: 135%;
}

/***** レスポンシブ　デスクトップ版(中)向け	*****/
@media (min-width:700px){
	/* 見出し	*/
	.page-title{			/* Welcome to the wildbird photo garraly の文字サイズ、上の間隔	*/
		margin-top: 4rem;
		font-size: 2.0rem;
	}
	.page-title-2{			/* Photo by Shigeru Sone の文字サイズ、上の間隔	*/
		margin-top: 3rem;
		font-size: 1.6rem;
	}
	.heading-large{
		font-size: 2rem;
	}
	.page-header{
		display: flex;		/* Flexbox 横並びに		*/
		justify-content: right;	/* 両端に配置	*/
		/* padding-top: 0.7rem; */
	}
	/* ヘッダー	*/
	.main-nav{
		gap: 1.5rem;			/* menuの間隔					*/
		font-size: 1.2rem;
	}
	/* ホーム	*/

	.cover{						/* coverクラスに画面いっぱいに広げる指定*/	
		height: 720px;
	}

	.cover-home{
		background-image: url(images/home-kurosagi.webp);
	}
	/* Profile	*/
	.cover-profile{
		background-color: #fff;	/* 背景 白（なくても良い）	*/
	}
	/* Profile	*/
	.cover-gallery{
		background-color: #fff;	/* 背景 白（なくても良い）	*/
	}
	/* What's New	*/
	.cover-whatsnew{
		background-color: #fff;	/* 背景 白（なくても良い）	*/
	}
	.about{
		margin: 4rem auto 0;
	}
	/* フッター	*/
	.page-footer{
		background-image: url(images/footer-l.webp);
		padding-top: 12rem;
	}
	.info th{
		padding-left: 2.5rem;
	}
	.grid{
		gap: 3rem 2rem;
		grid-template-columns: repeat(3, 1fr);
	}
}
/***** レスポンシブ　デスクトップ版(中大)向け	*****/
@media (min-width:1000px){			/* MacBook Air 〜1445くらい */
	/* ホーム	*/
	.cover{						/* coverクラスに画面いっぱいに広げる指定	*/
		height: 860px;
	}
	/* 見出し	*/
	.page-title{			/* Welcome to the wildbird photo garraly の文字サイズ、上の間隔	*/
		margin-top: 5.5rem;
		font-size: 2.0rem;
	}
	.grid{
		gap: 3rem 2rem;
		grid-template-columns: repeat(4, 1fr);
	}
}
/***** レスポンシブ　デスクトップ版(大)向け	*****/
@media (min-width:1445px){			/* MacBook Air 〜1445くらい */
	/* ホーム	*/
	.cover{						/* coverクラスに画面いっぱいに広げる指定	*/
		height: 1000px;
	}
	/* 見出し	*/
	.page-title{			/* Welcome to the wildbird photo garraly の文字サイズ、上の間隔	*/
		margin-top: 7rem;
		font-size: 2.0rem;
	}
	.grid{
		gap: 3rem 2rem;
		grid-template-columns: repeat(4, 1fr);
	}
}
/***** レスポンシブ　スマホ向け	*****/
@media(max-width:700px){
	.flex{
	display:block;          /* flexを解除   */
	margin-left: 1rem;
	width: 95%;
	}
	.flex>p{
	width: 95%;            /* 文字列の幅の比率  */
	}
	.small{
	font-size: .7rem;
	}
}

