﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
}

img {
  max-width: 100%;
}

#wrapper {
  position: relative;
  max-width: 720px;
  margin: 12px auto;
  border: 1px solid #777;
  padding: 0;
  overflow: hidden;
  text-align: left;
  font-size: 13px;
  line-height: 1.3;
  color: #200E00;
  font-family: "Noto Sans", sans-serif;
  background-color: #fff;
}

.fix {
  position: absolute;
  top: 200px;
  right: -32px;
  transform: rotate(270deg);
  font-size: 10px;
  color: #979493;
}

header .logo {
  position: absolute;
  top: 67px;
  left: 50px;
}

article {
  padding: 16px 40px 16px 273px;
  position: relative;
}

footer {
  position: relative;
  color: #87878A;
  font-size: 11px;
  padding: 26px 40px 36px 273px;
}

footer a {
  color: #87878A;
}

.info {
  position: absolute;
  top: 112px;
  left: 50px;
  font-size: 13px;
  color: #000;
  width: 189px;
  text-align: justify;
}

.word {
  white-space: nowrap;
}

p {
  margin: 0 0 16px;
  padding: 0;
}

h1 {
  margin: 16px 0 5px 0;
  padding: 0;
  font-size: 26px;
  line-height: 1.125;
  color: #F18900;
}

h2 {
  font-size: 13px;
  line-height: 18px;
  color: #F18900;
  margin-bottom: 16px;
}

h1 + h2{
  margin-bottom: 30px;
}

.margin {
  margin: 0;
}

.color {
  color: #F18900;
}

h3 {
  margin: 16px 0;
  font-size: 16px;
  line-height: 20px;
}

a {
  color: #200E00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

ul li {
  padding-left: 24px;
}

li:before {
  content: "\2022";
  color: #F18900;
  float: left;
  margin-top: -1px;
  font-size: 18px;
  text-indent: -24px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

@media all and (max-width:720px) {
  #wrapper {
    padding: 0;
    border: none;
    margin: 0;
  }

  h1 br{
    display: none;
  }
}

@media all and (max-width:638px) {
  header .logo {
    position: static;
    padding: 0 16px;
  }

  .fix {
    top: 150px;
  }

  h1 {
    margin: 16px 0;
  }

  article {
    padding: 16px;
    position: relative;
  }

  .info {
    position: static;
    width: 100%;
    text-align: left;
  }

  footer {
    padding: 0 16px 16px;
  }

  footer br {
    display: none;
  }
}