@charset "UTF-8";

/* 基本設定 */
body {
	text-align: left;
	letter-spacing: -0.01em;
	overflow-x: hidden;
	font-family: 'メイリオ', 'ヒラギノ角ゴ ProN', '游ゴシック', 'MS Pゴシック', sans-serif;
	background-image: url(images/bg.jpg);
	background-repeat: repeat;
}

/* テキストの自動拡大を無効化 */
body {
	-webkit-text-size-adjust: none;
	text-size-adjust: none; 
}

/*-- 基本設定 --*/
*, *:before, *:after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: #333333;
	vertical-align: bottom;
}
ol, ul, li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
figure, figcaption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}


/* -------------------------------------------------------------------
	■ ページ全体の基本設定 428px（iPhone 12/13 Pro Max）
---------------------------------------------------------------------- */
body {
	display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows: 
		[head] 150px
		[title] auto
		[main] auto
		[foot] 50px;
	row-gap: 30px;
	/* font-family: sans-serif; */
}

/*-- パーツの配置 --*/
body > * {
	grid-column: 2 / -2;
}


/* -------------------------------------------------------------------
	■ ヘッダー（ ロゴ ）
---------------------------------------------------------------------- */
header {
	grid-row: head;
	justify-self: center;
	align-self: center;
}

.logo p {
	font-size: 15px;
	font-weight: normal;
	margin-bottom: -10px;
	text-align: center;
}
.logo h1 {
	background-image: url(../images/icon.png); /* 西村 */
	background-repeat: no-repeat;
		/* background-position: left center; 基本設定 */
		background-position: 5% center;
	padding-left: 60px; /* h1の位置 */
	background-size: 35px; /* 以下追加 */
	font-size: 30px;
	padding-top: 8px;
	color: #333333;
}


/* -------------------------------------------------------------------
	■ ヘッダー（ 電話 ）
---------------------------------------------------------------------- */
div.tel {
	grid-row: head;
	justify-self: center;
	align-self: end;
}

div.tel p {
	font-size: 15px;
	text-align: center;
		margin-bottom: -5px;
}

div.tel p.number {
	font-size: 20px;
}
div.tel p.number i {
	margin-right: 10px;
}


/* -------------------------------------------------------------------
	■ ヒーロー（ hero ）
---------------------------------------------------------------------- */
figure.hero {
	grid-column: 2 / -2;
	grid-row: title;
}

figure.hero img {
	height: 220px;
	object-fit: cover;
	filter: brightness(100%); /* 画像の明るさ */
	z-index: -1;
	position: relative; /* Edge用の設定 */
}


/* -------------------------------------------------------------------
	■ 本文（ main ）
---------------------------------------------------------------------- */
main {
	grid-row: main;
}


/* -------------------------------------------------------------------
	■ 代表メッセージ（ article ）
---------------------------------------------------------------------- */
article#yamachan {
	grid-row: main;
	background-color: #f5f4f2;
	padding: 20px 30px;
}
article h2 {
	font-size: 40px;
	font-weight: normal;
	color: #333333;
}
article h2.highlight {
	text-decoration: underline;
	text-underline-offset: -0.2em;
	text-decoration-thickness: 0.5em;
	text-decoration-color: rgba(255, 228, 0, 0.4);
	text-decoration-skip-ink: none;
}

article p {
	margin-top: 20px;
	font-size: 18px;
	color: #333333;
	line-height: 1.5;
}

article p.bold {
	font-weight: bold;
	color: #333333;
}
article p.top0 {
	margin-top: 0px;
}


/* -------------------------------------------------------------------
	■ サイトについて（ article.yamachan02 ）
---------------------------------------------------------------------- */
article.yamachan02 {
	margin-top: 30px;
	padding: 20px 10px;
}
article h2 {
	font-size: 40px;
	font-weight: normal;
	color: #333333;
}

/* -- テーブル -- */
table {
	border-collapse: collapse;
	max-width: 100%;
	margin-top: 20px;
}
th, td {
	font-size: 16px;
	color: #333333;
	border: solid 1px #cccccc;
	padding: 15px 15px;
}
th {
	text-align: left;
	background-color: #555d6b;
	color: #ffffff;
	width: 6em;
}
td {
	background-color: #e8eef9;
}


/* -------------------------------------------------------------------
	■ 戻る ( homeに戻る )
----------------------------------------------------------------------- */
.modoru {
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #333333;
	border: solid 1px #333333;
	border-radius: 5px;
	padding-top: 5px;
}
.modoru:hover {
	background-color: #f5f4f2;
}


/* -------------------------------------------------------------------
	■ フッター ( ピッカリツアー )
----------------------------------------------------------------------- */
footer {
	grid-row: foot;
	font-size: 13px;
	justify-self: center;
	align-self: center;
	text-align: center;
}

/* フッターのバー */
body::after {
	content: "";
	background-color: #cccccc;
	grid-column: 1 / -1;
	grid-row: foot;
	z-index: -1;
}


/* *************** ▼ iPhone 12/13 *************** */
@media (max-width: 428px) {

} /* 注意 */


/* *************** ▼ iPhone 6/7/8 iOS *************** */
@media (max-width: 375px) {

} /* 注意 */


/* *************** ▼ Galaxy Note3 *************** */
@media (max-width: 360px) {

} /* 注意 */


/* *************** ▼ iPhone 5/5E *************** */
@media (max-width: 320px) {

article h2 {
	font-size: 30px;
}
} /* 注意 */



/* *************** △ Nexus 7  *************** */
@media (min-width: 600px) {

} /* 注意 */


/* *************** △ iPad Mini iPadOS *************** */
@media (min-width: 768px) {

/* -- grid / PC版ページの設定 -- */
body {
	display: grid;
	grid-template-columns: 30px 1fr 30px;
	column-gap: 5%; /*  PC版 のみ追加 */
	grid-template-rows: 
		[head] 100px
		[title] auto
		[main] auto
		[foot] 30px;
}


/*-- PC版 / ヘッダー / ロゴ --*/
header {
	justify-self: start;
		margin-bottom: 0px; /* 修正 */
}

.logo h1 {
	background-image: url(images/icon.png); /* 西村 */
	background-repeat: no-repeat;
		background-position: left center; /* 基本設定 */
	padding-left: 45px; /* h1の位置 */
	background-size: 35px; /* 以下追加 */
	font-size: 30px;
		font-weight: normal;
	padding-top: 8px;
	color: #333333;
}

/*-- PC版 / ヘッダー / 電話 --*/
div.tel {
	justify-self: end;
	align-self: center;
}

div.tel p.number {
	font-size: 30px;
}

/*-- PC版 / ヒーロー --*/
figure.hero {
	grid-row: title;
	margin-top: -30px; /* gap の調整 */
}

figure.hero img {
	height: 300px;
}

/*-- テーブル --*/
table {
	border-collapse: collapse;
	max-width: 100%;
	margin-top: 20px;
}
th, td {
	font-size: 18px;
	color: #333333;
	border: solid 1px #cccccc;
	padding: 20px 20px;
}
th {
	text-align: left;
	background-color: #555d6b;
	color: #ffffff;
	width: 8em;
	text-align: center;
}
td {
	background-color: #e8eef9;
}
} /* 注意 */


/* *************** △ Galaxy S20+ Android *************** */
@media (min-width: 854px) {

} /* 注意 */


/* *************** △ Nexus 7 *************** */
@media (min-width: 960px) {

} /* 注意 */




/* *************** iPad Pro(12.9-inch) *************** */
@media (min-width: 1024px) {

body {
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
}
} /* 注意 */
