@charset "UTF-8";

/* リセット */
* {
	margin: 0;
}

/* ページ全体grid */
body {
	display: grid;
	grid-template-columns: 20px 1fr 20px;
	grid-template-rows:
		[head] 70px
		[recent] auto
		[foot] 40px;
	grid-row-gap: 20px;
	row-gap: 20px;
}

/* パーツ全体の配置 */
body > * {
	grid-column: 2 / -2;
}

/* 全体の設定 */
body {
   background-color: #3F3531;
}

html {
	font-size: 62.5%;
}

p , li {
	font-family: fot-tsukubrdgothic-std, sans-serif;
}

p {
	font-size: 1.25rem;
	line-height: 1.7em;
	text-align: center;
}

/* ヘッダー1アイコン */
#h-nav {
	width: 50px;
	position: fixed;
	top: 25px;
	right: 15px;
	z-index: 3;
	filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.3));
}


/* メニュー4項目 */
@media screen and (max-width: 767px)
	{#menu-conts-PC {display: none;} }

#menu-conts {
	display: none;
	background: #F5A200;
	width: 230px;
	height: 270px;
	position: absolute;
	top: 15px;
	right: 0;
	z-index: 2;
	filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.6));
	border-radius: 5px;
	opacity: 0.9;
}

ul {
	list-style: none;
	margin-top: 8px;
	padding-left: 30px;
}

#menu-conts a {
	display: block;
	font-size: 1.6em;
	font-weight: bold;
	color: #3F3531;
	padding: 15px 0;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

p.dotted-bottom-1 {
	grid-row: recent;
	border-bottom: solid 1px #F5A200;
	margin-bottom: 15px;
  }

p.dotted-bottom-2 {
	grid-row: recent;
	border-bottom: solid 1px #9B90BD;
	margin-bottom: 15px;
  }

p.dotted-bottom-3 {
	grid-row: recent;
	border-bottom: solid 1px #D07E8C;
	margin-bottom: 15px;
  }

/* セクションgrid */
section {
	grid-row: recent;
	display: grid;
	grid-template-columns: 10px 1fr 10px;
}

/* セクションパーツ全体配置 */
section > * {
	grid-column: 2 / -2;
}

/* セクション */
h1 {
	font-family: fot-tsukubrdgothic-std, sans-serif;
	font-size: 1.4rem;
	line-height: 1.5em;
	color: #3F3531;
	margin: 10px 0 0 0;
	padding: 10px;
	border-radius: 5px;
	text-align: center;
}

.shibuya {
	background-color: #F5A200;
}
.omote {
	background-color: #9B90BD
}
.ranking {
	background-color: #D07E8C;
}

section p {
	padding: 10px 5px 0 5px;
}

/* 一覧 */
.all-p {
	grid-row: recent;
}

.all-p p {
	line-height: 1.4em;
}

.all-p a {
	color: #FFFCEE;
	font-size: 1.25rem;
	font-weight: bold;
}

.shibuya-color {
	color: orange;
}

.omote-color {
	color: #9B90BD;
}

.ranking-color {
	color: #D07E8C;
}

/* フッター */
footer {
	grid-row: foot;
	grid-column: 1/-1;
	width: 100%;
	background-color: #F5A200;
}

footer p {
	color: #3F3531;
	text-align: center;
	margin-top: 5px;
	font-weight: bold;
}



/* ============= PC版 ============= */
@media screen and (min-width: 768px){


/* PC版　ページ全体grid */
body {
	grid-template-columns: 0.2fr repeat(6,1fr) 0.2fr;
	grid-template-rows:
		[head] 100px
		[recent] auto
		[foot] 80px;
	grid-row-gap: 40px;
	row-gap: 40px;
	grid-column-gap: 5%;
	column-gap: 5%;
	max-width: 1140px;
	margin: 0 auto;
}

/* PC版　ヘッダー1アイコン */
#h-nav {
	display: none;
}

#menu-conts {
	display: none;
}

/* メニュー4項目 */
#menu-conts-PC {
	background-color: #FFFCEE;
	opacity: 0.9;
	width: 580px;
	height: 50px;
	position: fixed;
	top: 40px;
	right: 40px;
	z-index: 3;
	filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.4));
	border-radius: 15px;
}

#menu-conts-PC li {
	display: inline;
}

#menu-conts-PC a {
	display: inline;
	margin-right: 20px;
	color: #3F3531;
	font-size: 1.6em;
	font-weight: bold;
}

#menu-conts-PC a:hover {
	opacity: 0.6;
}

/* PC版　記事 */
.all-p p {
	text-align: center;
}

.all-p a {
	font-size: 1.7rem;
	line-height: 2em;
}

.all-p a:hover {
	opacity: 0.6;
}

/* PC版　セクションgrid */
section {
	display: grid;
	grid-template-columns: 23% 1fr 23%;
}

/* PC版　セクション */
h1 {
	font-size: 2.5rem;
	line-height: 1.8em;
	text-align: center;
	margin: 30px 0 0 0;
	padding: 20px;
	border-radius: 20px;
}

section p {
	text-align: center;
	padding: 30px 0 0 0;

}

.ranking-copy {
	font-size: 1.5rem;
}


/* PC版　フッター */
footer {
	background: linear-gradient(to right, #3F3531,  #F5A200, #F5A200, #F5A200, #F5A200, #F5A200, #3F3531);
}

footer p {
	font-size: 1.7em;
	margin-top: 25px;
}

}

