@charset "utf-8";

.hide-area{
	display: none;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
}

.wrapper {
  background-color: #fff;
  width: 80%;
  min-height: 100vh;
  margin: auto;
  text-align: center;
  position: relative;
  padding-bottom: 100px;
  box-sizing: border-box;
}

header {
  position: sticky;
  top: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.header_box {
  display: flex;
  background-color: #eee;
  justify-content: space-around;
  align-items: center;
}

h1 {
  font-size: 3.5vw;
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
}

@media screen and (max-width:767px) {
  .pc_nav {
    display: none;
  }
  h1 {
    font-size: 6.5vw;
  }
  .header_box {
    background-color: transparent;
  }
}

h2 {
  margin: auto;
  padding-top: 20px;
}

h2 img {
  width: 90%;
}
@media screen and (max-width:767px) {
  h2 img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}

.text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  font-weight: normal;
  font-family: 'Kaisei Decol', serif;
  margin-bottom: 0;
}

.text:before,
.text:after {
  border-top: 1px solid #000;
  content: "";
  width: 150px;
}

.text:before {
  margin-right: 30px;
}

.text:after {
  margin-left: 30px;
}

.top_text {
  display: flex;
}

.oxdord {
  margin-top: 0;
  font-family: 'Kaisei Decol', serif;
  line-height: 5px;
  font-weight: 500;
}

ul{
  padding: 0;
  list-style: none;
}

nav ul {
  display: flex;
  list-style-type: none;
  line-height: 4vw;
  margin: auto;
  padding: 0;
}

nav ul li {
  padding: 5px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1.5vw;
  font-family: 'Kaisei Decol', serif;
}

#about li {
  width: 90%;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
}
@media screen and (max-width:767px) {
  #about li {
    flex-direction: column;
  }
  #about li p {
    width: 100%;
  }
}

#about li p {
  font-family: 'Zen Maru Gothic', sans-serif;
  padding: 0 5px;
}

.jigazo {
  margin: 0;
}

.jigazo img {
  width: 150px;
  border: 1px solid;
}

section li {
  display: flex;
  justify-content: space-evenly;
  width: 80%;
  margin: auto;
  padding: 85px 0;
}

section li p img {
  width: 85%;
}

section li p {
  margin-bottom: 0;
}
@media screen and (max-width:767px) {
  section li {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  section li p {
    width: 45%;
  }
  section li p img {
    width: 100%;
  }
}

.more {
  color: #000;
  text-decoration: none;
  font-size: large;
  margin: 2em auto;
  padding: 3px;
  width: 90%;
  border: 1px solid #ccc;
  background-color: #fff;
  box-shadow: 1px 1px 2px #ccc;
}

.more_right {
  text-align: right;
  margin-right: 100px;
  padding-bottom: 20px;
}

.address {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 10px;
}

.address p {
  font-family: 'Zen Maru Gothic', sans-serif;
}

@media screen and (max-width:767px) {
  #contact {
    margin-bottom: 50px;
  }
}

.footer_box {
  width: 100vw;
  background-color: salmon;
  margin-left: calc(-50vw + 50%);
  margin-top: 30px;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width:767px) {
  .footer_box {
    bottom: 90px;
  }
}

footer {
  margin: auto;
  max-width: 100%;
  padding: 10px;
}

.twitter {
  width: 10%;
}

.pixiv {
  width: 20%;
}

a {
  text-decoration: none;
}

.ilustbox {
  height: 50vh;
}

.sp_menu {
	position: fixed;
	left: 0;
	bottom: 0;
	background: white;
	width: 100%;
  display: flex;
  margin: 0;
}

.sp_menu li {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 5px;
	list-style: none;
	text-align: center;
}

.menu a span {
	display: block;
	font-size: 4px;
}

@media(min-width: 768px) {
	.sp_nav {
		display: none;
	}
}