/*! sanitize.css v3.0.0 | CC0 1.0 Public Domain | github.com/10up/sanitize.css */
/*
 * Normalization
 */
audio:not([controls]) {
  display: none;
}

button {
  overflow: visible;
  -webkit-appearance: button;
}

details {
  display: block;
}

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

input {
  -webkit-border-radius: 0;
}

input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
}

input[type="number"] {
  width: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

main {
  display: block;
}

pre {
  overflow: auto;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

summary {
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

template {
  display: none;
}

textarea {
  overflow: auto;
}

[hidden] {
  display: none;
}

/*
 * Universal inheritance
 */
*,
::before,
::after {
  box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/*
 * Opinionated defaults
 */
*,
::before,
::after {
  border-style: solid;
  border-width: 0;
}

* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

:root {
  background-color: #FFFFFF;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  background-color: transparent;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

::-moz-selection {
  background-color: #B3D4FC;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background-color: #B3D4FC;
  color: #ffffff;
  text-shadow: none;
}

[aria-busy="true"] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}

/*
  style.scss make start
*/
body {
  background-color: black;
}

.wrap {
  margin: auto;
  width: 1080px;
}

@media only screen and (max-width: 767px) {
  .wrap {
    width: 320px;
  }
}

.exampages {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

@media only screen and (max-width: 767px) {
  .exampages {
    display: inline-block;
  }
  .exampages img {
    width: 50%;
  }
}

article {
  padding: 10px 20px 10px 20px;
}

article h1 {
  margin-bottom: 20px;
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  article h1 {
    line-height: 1;
  }
}

article div {
  text-align: left;
  float: left;
  width: 50%;
}

@media only screen and (max-width: 767px) {
  article div {
    float: none;
    width: 100%;
  }
}

article div:nth-child(3) {
  border: 1px solid black;
  padding: 10px 0 10px 10px;
}

@media only screen and (max-width: 767px) {
  article div:nth-child(3) {
    margin-top: 10px;
  }
}

.tsuhan {
  background-color: #333;
  width: 85%;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.2;
  padding: 5px 0;
}

.tsuhan a {
  color: #FFF;
  display: block;
}

@media only screen and (max-width: 767px) {
  .tsuhan {
    width: 80%;
    font-size: 18px;
  }
}

.clearfix {
  margin: 0;
  padding: 0;
  height: 0;
  float: none;
  clear: both;
}
