/* PC用の表示 */

/* -----全体共通----- */

* {
  padding: 0;
  margin: 0;
}

header {
  display: flex;
}

.logo_1 {
  margin-left: 50px;
  width: 25%;
  height: 25%;
}

h1 {
  margin: auto 0;
  color: red;
  font-family: serif;
  font-size: 500%;
  font-weight: 20px;
  text-align: center;
  white-space: nowrap;
  background-color: white;
}

header img {
  max-width: 100%;
  max-height: 100%;
  vertical-align: bottom;
}

nav {
  background-color: white;
  color: black;
  width: 100%;
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
}

li {
  flex-basis: 150px;
}

header li {
  margin-top: 25px;
}

nav li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  cursor: pointer;
}

.Twitter {
  width: 75px;
  height: 75px;
  margin: 0 25px 50px 50px;
  cursor: pointer;
  box-shadow: 5px 5px gray;
}

.Twitter:active {
  box-shadow: none;
}

.Face {
  width: 75px;
  height: 75px;
  margin: 0 25px 50px 25px;
  cursor: pointer;
  box-shadow: 5px 5px gray;
}

.Face:active {
  box-shadow: none;
}

hr {
  margin-bottom: 30px;
  height: 3px;
  background-color: green;
  width: 100%;
  border: none;
}

.logo_2 {
  float: left;
  width: 140px;
  height: 100px;
  margin-left: 50px;
  margin-right: 400px;
}

footer ul li {
  font-size: 15px;
  list-style-type: none;
}

address {
  font-size: 14px;
  margin-left: 50px;
}

aside {
  font-size: 14px;
}

aside p {
  margin: 5px 0 20px 50px;
}

aside h3 {
  margin-left: 50px;
}

footer p small {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* -----index.html----- */

.woman {
  max-width: 60%;
  max-height: 60%;
  text-align: center;
  margin: auto;
  display: block;
}

.business {
  font-family: serif;
  color: white;
  padding: 0 100px;
  display: inline-block;
  background-color: #ef8300;
  margin-bottom: 15px;
}

.information {
  font-family: serif;
  color: white;
  padding: 0 100px;
  display: inline-block;
  background-color: green;
  margin-bottom: 15px;
}

section ul {
  padding: 0 0 100px 100px;
  list-style-type: disc;
  font-size: 20px;
}

/* -----company.html----- */

.com_1 {
  margin: 50px;
}

.com_2 {
  margin: 50px;
}

/* -----information.html----- */

.info_1 {
  margin: 25px 0 25px 50px;
  font-size: 25px;
}

.info_2 {
  font-size: 25px;
  margin: 0 0 50px 50px;
}

/* -----contact.html----- */

.con_1 {
  margin: 0 0 10px 50px;
}

.con_2 {
  margin: 0 0 50px 50px;
}

/* -----privacypolicy.html */

.pri_0 {
  text-align: right;
}

.pri_1 {
  font-size: 30px;
  color: black;
}

.pri_2 {
  margin: 50px;
}

.pri_3 {
  line-height: 100px;
}

.pri_4 {
  margin-left: 20px;
  line-height: 35px;
}

.pri_5 {
  margin-left: 20px;
}

.pri_6 {
  margin-top: 15px;
}

/* --------------------------------------- */

/* タブレット用の表示 */

@media screen and (min-width: 600px) and (max-width: 1024px) {
}

/* --------------------------------------- */

/* スマホ用の表示 */

/* -----全体共通----- */

@media screen and (max-width: 599px) {
  header {
    display: block;
  }

  h1 {
    display: flex;
    display: inline-block;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 350%;
  }

  nav ul li a {
    position: fixed;
    bottom: 0;
    overflow: hidden;
    width: 350%;
    font-size: 15px;
    color: white;
    background-color: #262626;
  }

  .logo_2 {
    margin-right: 100px;
  }

  footer ul li {
    margin-left: 300px;
  }

  /* -----contact.html----- */

  table {
    overflow: auto;
    white-space: nowrap;
  }
}
