@charset "UTF-8";

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

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

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


/* グリッド */
.post_other {
	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_other-otherimg {
	grid-column: 1 / 4;
	grid-row: 1 / 3;
	margin-left: -10px;
    margin-top: 80px;
}

.post_other-otherimg img {
    height: 100%;
    object-fit: cover;
}

/* ページタイトル */
.post_other-title {
	grid-column: 4 / 6;
	grid-row: 1 / 3;
	justify-self: center;
	align-self: center;
	width: 3.375em;
	height: 9.375em;
    z-index: 999;
}

/* 文章01 */
.post_other-text01 {
	grid-column: 1 / 4;
	grid-row: 3 / 4;
	font-size: 0.75em;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
}
.post_other-text01-02 {
	grid-column: 1 / 4;
	grid-row: 4 / 6;
	font-size: 0.75em;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
}

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

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

/* 画像02 */
.post_other-fig02 {
	grid-column: 1 / 4;
	grid-row: 6 / 8;
	align-self: center;
}


/* 文章03 */
.post_other-text03 {
	grid-column: 1 / 4;
	grid-row: 8 / 11;
	font-size: 0.75em;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
    margin-top: -80px;
}

/* 画像03 */
.post_other-fig03 {
	grid-column: 4 / 6;
	grid-row: 9 / 10;
	align-self: right;
/*    margin-top: 30px; */    
}

/* 画像04 */
.post_other-fig04 {
	grid-column: 2 / 6;
	grid-row: 11 / 13;
	align-self: right;
}

/* 文章04 */
.post_other-text04 {
	grid-column: 1 / 6;
	grid-row: 12 / 15;
	font-size: 0.75em;
	font-weight: 200;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
    z-index: 100;
    margin-top: 80px;
}

/* マーク画像 */
.post_other::after {
	grid-column: 3 / 5;
	grid-row: 1 / 3;
	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_other {
		width: 1000px;
		box-sizing: border-box;
		margin: auto;
		font-size: 20px;
	}

}


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


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

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

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

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

	/* トップ画像 */
	.post_other-otherimg {
		margin-left: -20px;
		margin-right: -20px;
	}
    
	/* 画像01 */
	.post_other-fig01 {
		margin-left: 0px;
	}
    
    .post_other-text01 {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0px;
    }
    
    .post_other-text02 {
        grid-column: 1;
        grid-row: 5;
        margin-top: 0px;
    }
    
    .post_other-text03 {
        margin-top: 0px;
    }
    
    .post_other-text04 {
        margin-top: 0px;
    }

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

}
