
@charset "UTF-8";

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

/* ページ全体の設定 */
body {
	margin: 0;
	font-family: sans-serif;
	color: #655c5f;
}

/* 「ヘッダー」ブロック */
header {
	padding: 25px 15px;
	color: #7b7073;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
	font-family: 'Exo 2', sans-serif;
	background: linear-gradient(114deg, #feecf7, #ffffff, #ffffff, #a9e9fe);
		
}

/* リンク */
a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	opacity: 0.7;
}

/* ナビゲーションメニュー */
nav ul {
	list-style-type: none;
	padding: 0;
	color: #666666;
	font-size: 16px;
	display: flex;
	justify-content: center;
}

nav li:not(:last-child) {
	margin-right: 20px;
}

/* 「コンテンツ」ブロック */
.contents {
	background-color: #e0f4f3;
	padding: 40px 15px;
}

/* 記事 */
article {
	background-color: #ffffff;
	padding: 20px;
}

h1 {
	font-family: sans-serif;
	font-size: 30px;
	color: #7b7073;
}

p {
	line-height: 2;
}

/* 画像 */
img {
	width: 100%;
	height: auto;
}

figure {
	margin: 0;
}

/* 投稿日 */
time {
	color: #666666;
	margin-bottom: 15px;
	display: block;
}

/* サブメニュー */
aside {
	background-color: #ffffff;
	padding: 20px;
	margin-top: 40px;
}

h2 {
	color: #29abe2;
	font-family: 'Exo 2', sans-serif;
	font-weight: normal;
	text-align: center;
}

/* サブメニュー：プロフィール */
.profile img {
	width: 100px;
	height: 100px;
	border-radius: 50%; 
}

.profile figure {
	text-align: center;
}

.profile p {
	font-size: 14px;
	text-align: center;
}

/* サブメニュー：注目記事メニュー */
.topics ul {
	list-style-type: none;
	padding: 0;
}

.topics a {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.topics figure {
	width: 100px;
	flex: none;
}

.topics img {
	vertical-align: bottom;
}

.topics h3 {
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
}


/* 「フッター」ブロック */
footer {
	background: linear-gradient(114deg, #feecf7, #fbf4f8, #e0f7ff, #a9e9fe);
	padding: 25px 15px;
	color: #665b5e;
	font-size: 14px;
	text-align: center;
	font-family: 'Exo 2', sans-serif;
	
}


/* トップページ： ヒーローイメージ */
.hero {
	background-image: url(img/春夏秋冬.png);
	background-size: cover;
	background-position: center;
	height: 350px;
	color: #ffffff;
	padding: 15px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.hero h1 {
	font-size: 48px;
	font-family: 'Exo 2', sans-serif;
	text-shadow: 0 0 10px #444444;
	text-align: center;
	width: 100%; /* IE11用の設定 */
}

.hero p {
	font-weight: bold;
	text-shadow: 0 0 10px #444444;
	margin-top: 0;
}

.hero a {
	border: solid 2px #ffffff;
	padding: 10px 40px;
	border-radius: 10px;
	background-color: rgba(41, 171, 226,0.7);
	margin-top: 10px;
}

/* トップページ： 記事一覧 */
.toppost {
	padding: 15px;
}

.toppost div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.toppost article {
	padding: 0;
	width: 48%;
	flex: none;
}

.toppost article:not(:nth-last-child(-n+2)) {
	margin-bottom: 12px;
}

.toppost h3 {
	margin: 0;
	font-size: 14px;
}


/* 「サイトについて」ページ */
table{
  width: 100%;
  border-collapse: collapse;
}

table tr{
  border-bottom: solid 2px white;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #52c2d0;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #52c2d0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}

/* 「お問い合わせ」ページ */
input, textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
}

textarea {
	height: 120px;
}

input[type="submit"] {
	background-color: #00B7CE;
	border: none;
	-webkit-appearance: none;
}


/* ==== PC版 ==== */
@media (min-width: 600px) {

/* PC版：コンテナ */
.container {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* PC版：「ヘッダー」ブロック内のコンテナ */
header .container {
	display: flex;
	justify-content: space-between;
}

/* PC版：記事 */
article {
	padding-left: 60px;
	padding-right: 60px;
}

h1 {
	font-size: 30px;
}

p {
	font-size: 18px;
}

/* PC版：トップページ： ヒーローイメージ */
.hero h1 {
	font-size: 72px;
}

/* PC版：トップページ： 記事一覧 */
.toppost article {
	width: 23%;
}

.toppost article:not(:nth-last-child(-n+2)) {
	margin-bottom: 0;
}

/* PC版：「お問い合わせ」ページ */
input[type="submit"] {
	width: 250px;
}

}
/* ===== PC版の設定ここまで ===== */



/* ==== PC版（大） ==== */
@media (min-width: 1025px) {

/* PC版（大）：コンテナ */
.container {
	max-width: 1100px;
}

/* PC版（大）：「コンテンツ」ブロック内のコンテナ */
.contents .container {
	display: flex;
	justify-content: space-between;
}

/* PC版（大）：記事 */
article {
	width: 68%;
	box-sizing: border-box;
}

/* PC版（大）：サブメニュー */
.sub {
	width: 28%;
}

/* PC版（大）：プロフィール */
.profile {
	margin-top: 0;
}

}
/* ===== PC版（大）の設定ここまで ===== */

