@charset "utf-8";

/* 会社概要ページ固有（旧 profile.php のインラインstyleを移設） */

/* h1#title：base.cssの div#containerbox h2 スタイルをh1にも適用 */
	div#containerbox h1 {
		padding: 1em 0;
		margin: 0 auto;
		max-width: 980px;
		color: #fff;
		font-size: 2.2em;
		position: relative;
	}

	@media screen and (max-width: 767px) {
		div#containerbox h1 {
			padding: 0.5em;
			font-size: 1.6em;
		}
	}

	/* Google Maps iframe の枠 */
	.gmap {
		width: 100%;
		max-width: 480px;
		height: 240px;
		border: 1px solid #ccc;
		margin: 0 0 2em;
	}

	.gmap iframe {
		width: 100%;
		height: 100%;
		border: 0;
		display: block;
	}

	@media (min-width: 768px) {
		.gmap {
			max-width: 600px;
			height: 300px;
		}
	}

	/* 住所ブロック */
	address {
		font-style: normal;
		margin: 0 0 1em;
		line-height: 1.8;
	}

	/* スマホ：rowは縦、中のspanも1行ずつ */
	.address-zip-row,
	.address-tel-row {
		display: block;
	}

	.address-zip,
	.address-addr,
	.address-tel,
	.address-fax {
		display: block;
	}

	.address-zip {
		color: #666;
	}

	.address-tel::before {
		content: "TEL　";
		color: #888;
	}

	.address-fax::before {
		content: "FAX　";
		color: #888;
	}

	/* PC：郵便番号+住所 / TEL+FAX を横並び */
	@media (min-width: 768px) {

		.address-zip-row,
		.address-tel-row {
			display: flex;
			align-items: baseline;
			gap: 0.8em;
		}

		.address-zip,
		.address-addr,
		.address-tel,
		.address-fax {
			display: inline;
		}
	}
