﻿/* Base
----------------------------------------------------------------*/

* {
	margin: 0;
}

html {
  height: 100%;
}

body {
  background: #fff;
	color: #394163;
  font: 14px/1.5 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-weight: normal;
  min-height: 100%;
  text-rendering: auto;
}

a {
  color: #007aff;
  text-decoration: none;
  transition: color .3s;
}
a:hover {
  color: #ff7a00;
}

@media only screen and (max-width: 800px) {
  body {
    font-size: 12px;
  }
}


/* Icons
----------------------------------------------------------------*/

.mt-icon::before {
  display: inline-block;
  font-family: 'Material Icons';
  font-size: 150%;
  font-style: normal;
  height: 1em;
  text-align: left;
  text-transform: none;
  vertical-align: text-bottom;
  width: 1em;
  
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  text-rendering: optimizeLegibility;
}
.mt-icon.delete-icon::before {
  content: '\00E872';
}
.mt-icon.edit-icon::before {
  content: '\00E254';
}
.mt-icon.more-icon::before {
  content: '\00E619';
}

/* Article
----------------------------------------------------------------*/

article {
  padding: 40px;
}

article h1 {
  font-size: 30px;
  text-align: center;
}

article h2 {
  border-left: 4px solid #007aff;
  font-size: 24px;
  font-weight: normal;
  padding: 4px 0 4px 16px;
}

article h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 8px;
}

article p {
  margin-bottom: 16px;
}

article section {
  margin-top: 80px;
}
article section > section {
  margin-top: 40px;
}

@media only screen and (max-width: 800px) {
  article {
    padding: 40px 20px;
  }

  article h1 {
    font-size: 20px;
  }

  article h2 {
    font-size: 18px;
  }

  article h3{
    font-size: 16px;
  }

  article section {
    margin-top: 40px;
  }
  article section > section {
    margin-top: 24px;
  }
}
