<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/* テキストの自動拡大を無効化 */
body {
	-webkit-text-size-adjust: none;
	text-size-adjust: none; 
}

/* 基本設定 */

* {
	margin: 0;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: #333333;
}
ul, li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}


/* -------------------------------------------------------------------
	■ display: grid;（ サイトについて ）
---------------------------------------------------------------------- */
body {
	display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows: 
		[head] 80px
		[hero] auto
		[intro] auto
		30px
		[article] auto
		30px
		[foot] 50px;
	font-family: sans-serif;
}

/* パーツの配置*/
body &gt; * {
	grid-column: 2 / -2;
}

header {
	grid-column-start: 2;
	grid-row-start: head;
	justify-self: center;
	align-self: center;
}
.hero {
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: hero;
}
.intro {
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: intro;
}
article {
	grid-column-start: 2;
	grid-row-start: article;
}
footer {
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: foot;
	justify-self: center;
	align-self: center;
}


/* -------------------------------------------------------------------
	■ ヘッド（ サイトについて ）
---------------------------------------------------------------------- */
header {
	text-align: center;
}
header img {
	width: 100%;
}


/* -------------------------------------------------------------------
	■ ヒーロー像（ サイトについて ）
---------------------------------------------------------------------- */
figure.hero {
	margin-top: 0px;
}

figure.hero img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}


/* -------------------------------------------------------------------
	■ 表題（ intro / サイトについて ）
---------------------------------------------------------------------- */
.intro h1 {
	margin-top: 20px;
	padding: 7px 0 5px 0;
	font-size: 25px;
	font-weight: 300;
	text-align: center;
	color: #ae3159;
	border-top: dashed 1px #000000;
	border-bottom: dashed 1px #000000;
}

.intro p {
	margin-top: 20px;
	margin-left: 20px;
	margin-right: 20px;
	font-size: 16px;
	color: #333333;
	line-height: 1.6;
}


/* -------------------------------------------------------------------
	■ 記事（ article / テーブル サイトについて ）
---------------------------------------------------------------------- */
table {
	border-collapse: collapse;
	max-width: 100%;
}
th, td {
	border: solid 1px #cccccc;
	padding: 20px 20px;
}
th {
	text-align: left;
	background-color: #555d6b;
	color: #ffffff;
	width: 4em;
}
td {
	background-color: #e8eef9;
	font-size: 15px;
	color: #333333;
}


/* -------------------------------------------------------------------
	■ TOPへ戻る ( #topbutton / ある営業さんの物語 )
----------------------------------------------------------------------- */
#topbutton {
	position: fixed;
	bottom: 5%;
	right: 1%;
	width: 5em;
	display: none;
}
#topbutton a {
	color: white;
	text-decoration: none;
}
#topbutton a:hover {
	color: yellow;
	text-decoration: underline;
}


/* -------------------------------------------------------------------
	■ フッター ( サイトについて )
----------------------------------------------------------------------- */
footer {
	font-size: 13px;
	font-family: 'Raleway', sans-serif;
}

/* フッターのバー */
body::after {
	content: "";
	background-color: #eeeeee;
	grid-column: 1 / -1;
	grid-row: foot;
	z-index: -1;
}


/* *************** iPhone 12/13 *************** */
@media (max-width: 428px) {

} /* 注意 */


/* *************** Galaxy Note3 *************** */
@media (max-width: 360px) {

figure.hero img {
	width: 100%;
	height: 140px;
}

article {
	margin-top: 15px;
}

p.self-introduction {
	margin-top: 10px;
	margin-bottom: 10px;
}
} /* 注意 */


/* *************** iPhone 5/5E *************** */
@media (max-width: 320px) {

figure.hero img {
	width: 100%;
	height: 130px;
}
} /* 注意 */


/* *************** ▲ iPhone 5/5E *************** */
@media (min-width: 568px) {

figure.hero img {
	width: 100%;
	height: 250px;
}
} /* 注意 *


/* *************** ▲  Nexus 7  *************** */
@media (min-width: 600px) {

p.inquiry, td {
	font-size: 16px;
}
} /* 注意 */


/* *************** Galaxy Note3 *************** */
@media (min-width: 640px) {

} /* 注意 */


/* *************** iPad Mini iPadOS *************** */
@media (min-width: 768px) {

/* -- grid / PC版ページの設定 -- */
body {
	display: grid;
	grid-template-columns: 80px 1fr 80px;
	grid-template-rows:
		[head] 100px
		[hero] auto
		[intro] auto
		50px
		[article] auto
		80px
		[foot] 50px;
}


header {
	grid-column-start: 2;
	grid-row-start: head;
}
.hero {
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: hero;
}
.intro {
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: intro;
}
article {
	grid-column-start: 2;
	grid-row-start: article;
}
footer {
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: foot;
	justify-self: center;
	align-self: center;
}


figure.hero img {
	height: 300px;
}

.intro p {
	margin-left: 0px;
	margin-right: 0px;
	font-size: 18px;
}
} /* 注意 */


/* *************** Nexus 7 *************** */
@media (min-width: 960px) {

body {
	display: grid;
	grid-template-columns: 150px 1fr 150px;
	grid-template-rows:
		[head] 100px
		[hero] auto
		[intro] auto
		50px
		[article] auto
		80px
		[foot] 50px;
}

article p {
	font-size: 18px;
}

/* -- TOPへ戻る ( #topbutton ) -- */
#topbutton {
	bottom: 5%;
	right: 20%;
	width: 5em;
}
} /* 注意 */


/* =============== PC版の設定 ============= */
@media (min-width: 1024px) {

body {
	max-width: 1024px;
	margin-left: auto;
	margin-right: auto;
}
} /* 注意 */
</pre></body></html>