@charset "UTF-8";

/* 基本設定 */
body {
	text-align: left;
	letter-spacing: -0.01em;
	overflow-x: hidden;
	font-family: 'メイリオ', 'ヒラギノ角ゴ ProN', '游ゴシック', 'ＭＳ Ｐゴシック', sans-serif;
	-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 {
	margin: 0;
	padding: 0;
	list-style-type: none;
}


/* -------------------------------------------------------------------
	■ display: grid; （ 伊豆の旅 ）
---------------------------------------------------------------------- */
body {
	display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows:
		[head] 80px
		[hero] auto
		20px
		[intro] auto
		[article] auto
		[foot] 50px;
	font-family: sans-serif;
}

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: 2;
	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;
}

/* パーツの配置*/
body > * {
	grid-column: 2 / -2;
}


/* -------------------------------------------------------------------
	■ ヘッド（ 伊豆の旅 ）
---------------------------------------------------------------------- */
header {
	text-align: center;
}
header img {
	width: 100%;
}

/* -------------------------------------------------------------------
	■ ヒーロー（ 伊豆の旅 ）
---------------------------------------------------------------------- */
figure.hero img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}


/* -------------------------------------------------------------------
	■ 表題（ intro / 伊豆の旅 ）
---------------------------------------------------------------------- */
.intro {
}

.intro h1 {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.3;
	text-align: center;
	color: #333333;
	padding: 7px 0 5px 0;
	border-top: dashed 1px #000000;
	border-bottom: dashed 1px #000000;
}
.intro h1 span {
	display: block;
	font-size: 20px;
	font-weight: 300;
	text-align: center;
	color: #930000;
}

.intro p {
	margin-top: 20px;
	font-size: 15px;
	color: #333333;
	line-height: 1.6;
}

/* -- 川端康成の画像 -- */
.topimg {
	margin-top: 20px;
}
.topimg img {
	width: 100%;
	height: 110px;
	object-fit: cover;
}
figcaption {
	margin-top: 3px;
	font-size: 15px;
	text-align: center;
	background-color: #eeeeee;
}


/* -------------------------------------------------------------------
	■ 記事（ article / 伊豆の旅 ）
---------------------------------------------------------------------- */
article {
}

article h1 {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
	border-bottom: solid 2px #eeccce;
	color: #333333;
}

/* -- 伊豆 / 東・南・中・西 -- */
.region {
	margin-top: 10px;
}
.izu-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 5px 10px;
}
.izu-list h3 {
	margin-top: 0px;
	font-size: 18px;
	font-weight: normal;
	color: #0033ff;
	padding: 5px 0 0px 0;
	text-align: center;
	background-color: #D9E5FF;
}
.izu-list h3 i {
	margin-left: 20px;
	color: #0033ff;
}
.izu-list img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.izu-list h3:hover {
	color: #333333;
	background-color: #eeeeee;
}

/* -- ☆彡 画像がヌルっと大きく ( nurutto ) -- */
.nurutto {
	overflow: hidden;
	width: 100%;
	height: auto;
}
.nurutto img {
	display: block;
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}
.nurutto img:hover {
	transform: scale(1.1);		/*画像の拡大率*/
	transition-duration: 0.3s;	/*変化に掛かる時間*/
}


/* -------------------------------------------------------------------
	■ TOPへ戻る ( #topbutton / 伊豆の旅 )
----------------------------------------------------------------------- */
#topbutton {
	position: fixed;
	bottom: 5%;
	right: 2%;
	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;
}


/* *************** Galaxy neto20 *************** */
@media (min-width: 412px) {

.izu-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5px 10px;
}
} /* 注意 */


/* *************** iPhone 5/5E *************** */
@media (min-width: 568px) {

/* -- 川端康成の画像 -- */
.topimg img {
	width: 100%;
	height: 140px;
}
}/* -- 注意 -- */


/* *************** Nexus 7 *************** */
@media (min-width: 600px) {

/* -- 文字サイズの変更 -- */
.intro h1, article h1 {
	font-size: 22px;
}
.intro p {
	font-size: 16px;
}
}/* -- 注意 -- */


/* *************** iPad Mini *************** */
@media (min-width: 768px) {

/*-- PC 設定 / 伊豆の旅 --*/
body {
	display: grid;
	grid-template-columns: 70px 1fr 70px;
	grid-template-rows:
		[head] 100px
		[hero] auto
		30px
		[intro] auto
		30px
		[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-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: 230px;
}
.topimg img {
	width: 100%;
	height: auto;
}

.intro h1, article h1 {
	font-size: 28px;
}
.intro h1 span {
	font-size: 23px;
}
.intro p {
	margin-left: 20px;
	margin-right: 20px;
}

.region {
	margin-top: 15px;
}
.izu-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

/* -- TOPへ戻る ( #topbutton ) -- */
#topbutton {
	position: fixed;
	bottom: 5%;
	right: 1%;
	width: 10em;
	display: none;
}
}/* 注意 */


/* *************** Nexus 7 *************** */
@media (min-width: 960px) {

.intro p {
	font-size: 18px;
}

article {
	grid-column-start: 1;
	grid-column-end: -1;
	grid-row-start: article;
}

/* -- TOPへ戻る ( #topbutton ) -- */
#topbutton {
	position: fixed;
	bottom: 5%;
	right: 15%;
	width: 10em;
	display: none;
}
} /* 注意 */


/* *************** ▲ iPad Pro(12.9-inch) *************** */
@media (min-width: 1024px) {
body {
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

/* -- TOPへ戻る ( #topbutton ) -- */
#topbutton {
	position: fixed;
	bottom: 5%;
	right: 5%;
	width: 10em;
	display: none;
}
} /* 注意 */
