@charset "UTF-8";

/**************/
/* コンテンツ部 */
/**************/

/* トップページ・コンテンツ部 */
.post_meal * {
	margin: 0;
}

.post_meal img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/* グリッド */
.post_meal {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(13, 1fr);
	grid-column-gap: 40px;
	grid-row-gap: 30px;
	padding: 0 30px;
	font-family: "Noto Sans JP", 'メイリオ', 'Hiragino Kaku Gothic Pro', sans-serif;
/*	font-family: "Sawarabi Mincho", sans-serif; */
	font-size: 18px;
    letter-spacing: 0.2em;
}

/* メイン写真 */
.post_meal-mealimg {
	grid-column: 1 / 4;
	grid-row: 1 / 4;
	margin-left: -10px;
    margin-top: 80px;
}

/* ページタイトル */
.post_meal-title {
	grid-column: 4 / 6;
	grid-row: 2 / 3;
	justify-self: center;
	align-self: center;
	width: 3.375em;
	height: 3.375em;
    z-index: 999;
/*    margin-top: 50px; */
}

/* お食事時間 */
.post_meal-time {
	grid-column: 4 / 6;
	grid-row: 4 / 6;
	justify-self: center;
	align-self: center;
	width: 17em;
    height: 15em;
/*	height: 12.375em; */
    z-index: 999;
}

/* 文章01 */
.post_meal-text01 {
	grid-column: 1 / 4;
	grid-row: 4 / 7;
	font-size: 0.75em;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
/*    margin-top: 30px; */
}

/* 画像01 */
.post_meal-fig01 {
	grid-column: 4 / 6;
	grid-row: 5 / 8;
/*	margin-left: -10px; */
/*    margin-top: 30px; */
}

/* .post_meal-fig01 img {
	height: 100%;
	object-fit: cover;
} */

/* 文章02 */
.post_meal-text02 {
	grid-column: 4 / 6;
	grid-row: 7 / 11;
	font-size: 0.75em;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
/*    margin-top: 30px; */
}

/* 文章03 */
.post_meal-text03 {
	grid-column: 1 / 4;
	grid-row: 9 / 12;
	font-size: 0.75em;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
/*    margin-top: 30px; */
    z-index: 100;
}

/* 画像02 */
.post_meal-fig02 {
	grid-column: 1 / 4;
	grid-row: 6 / 9;
	align-self: center;
/*    margin-top: 30px; */
}

/* 画像03 */
.post_meal-fig03 {
	grid-column: 4 / 6;
	grid-row: 11 / 13;
	align-self: baseline;
    z-index: 5;
/*    margin-top: 30px; */    
}


/* マーク画像 */
.post_meal::after {
	grid-column: 3 / 5;
	grid-row: 1 / 4;
	justify-self: center;
	align-self: center;
	width: 7.375em;
	height: 7.375em;
	content: url(img/anchor.svg);
	opacity: 1.00;
    margin-top: 50px;
}


/* ##### 画面の横幅1000ピクセル以上 ##### */
@media (min-width: 1000px) {

	.post_meal {
		width: 1000px;
		box-sizing: border-box;
		margin: auto;
		font-size: 20px;
	}

}


/* ##### 画面の横幅768～999ピクセル ##### */
@media (min-width: 768px) and (max-width: 999px) {
	.post_meal {
		font-size: calc(16px + 4 * (100vw - 768px) / 232);
	}
}


/* ##### 画面の横幅767ピクセル以下 ##### */
@media (max-width: 767px) {

	.post_meal {
		grid-template-columns: none;
		grid-template-rows: none;
		grid-row-gap: 20px;
		padding: 20px;
		font-size: 14.4px;
	}

	.post_meal > *,
	.post_meal::after {
		grid-column: auto;
		grid-row: auto;
	}

	/* マーク画像 */
	.post_meal::after {
        margin-top: 0px;
		grid-column: 1;
		grid-row: 1;
		justify-self: end;
		margin-bottom: -80px;
        width: 4.375em;
        height: 4.375em;
	}
    
    /* タイトル */
    .post_meal-title {
        grid-column: 1;
        grid-row: 1;
        margin-top: 80px;
    }

	/* トップ画像 */
	.post_meal-mealimg {
        grid-row: 2;
		margin-left: -20px;
		margin-right: -20px;
	}
    
    .post_meal-text01 {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0px;
    }
    
	/* 画像01 */
	.post_meal-fig01 {
        grid-row: 4;
		margin-left: 0px;
	}
    
    /* 朝食・夕食時間 */
    .post_meal-time {
        grid-row: 5;
    	width: 20.375em;
        margin-top: 2em;
        height: 8em;
    }
    
    .post_meal-text02 {
        grid-column: 1;
        grid-row: 6;
        margin-top: 0px;
    }
    
    .post_meal-text03 {
        margin-top: 0px;
    }

	/* 文章01 & 文章02 & 文章03 */
	.post_meal-text01,
	.post_meal-text02,
    .post_meal-text03 {
		font-size: 15px;
	}

}
