@charset "utf-8";
body {
  margin: 0;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,sans-serif
}
main {
  background: #FFF;
}
img {
  max-width: 100%;
  margin:0;
	padding:0;
}
strong{
	font-weight: 700;
}
@media only screen and (max-width:769px) {
  img {
    max-width: 100%;
    text-align: center;
    display: block;
  }
}
p {
  color: #333;
  font-size: 16px;
  line-height: 2rem;
}
@media only screen and (max-width:769px) {
  p {
    font-size: 15px;
    line-height: 1.8rem;
  }
}
.flex {
  display: flex;
  box-sizing: border-box;
}
h2 {
  margin-bottom: 80px;
		 padding-top:40px;
}
@media only screen and (max-width:769px) {
  h2 {
    margin-bottom: 30px;
	  height:25px;
	  padding-top:20px;
  }
}
h2 img {
  display: block;
  margin: 0 auto;
  height: 5rem;
}
@media only screen and (max-width:769px) {
  h2 img {
    height: 2rem;
  }
}
section {
  box-sizing: border-box;
  padding: 0 40px;
  margin: 0 auto 160px;
}
@media only screen and (max-width:769px) {
  section {
    padding:0 15px;
	margin:0 0 100px;
  }
}

.box{
	opacity:0;
}
.slideUp{
	opacity:1;
	animation:slideUp 1s ease-in-out forwards;
}
@keyframes slideUp{
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/*==========================================HEADER======================================================*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #f2f2f2;
  z-index: 999;
}
header .flex {
  justify-content: space-between;
}
header img {
  display: block;
  height: 50px;
}
header .h_info {
  width: 1350px;
  margin: auto;
  padding: 10px;
  box-sizing: border-box;
}
header nav ul li {
  font-size: 1rem;
  margin-right: 3rem;
  align-items: center;
  line-height: 50px;
}
header nav ul li:last-child {
  margin-right: 0;
}
header nav ul li img {
  vertical-align: bottom;
}
@media only screen and (max-width:769px) {
  header .logo img {
    padding: 0px 10px;
	margin:0;
	  height:36px;
  }
  header nav ul li {
    line-height: 80px;
    margin-right: 0;
  }
  header nav ul li a {
    font-size: 1.2rem;
	font-weight: bold;
    letter-spacing: .2rem;
  }
  header nav ul {
    margin-top: 50px;
  }
  nav {
    clear: both;
    overflow: hidden;
  }
  nav .flex {
    display: block;
  }
  a#btn span {
    background: #000;
    width: 18px;
    height: 2px;
    display: block;
    position: relative;
    top: 11px;
    left: 4px;
  }
  a#btn span:before {
    content: "";
    display: block;
    position: absolute;
    top: -7px;
    background: #000;
    width: 18px;
    height: 2px;
    transition: all 0.3s ease-in-out;
  }
  a#btn span:after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    background: #000;
    width: 18px;
    height: 2px;
    transition: all 0.3s ease-in-out;
  }
  a#btn span.change {
    height: 0;
  }
  a#btn span.change:before {
    transform: rotate(-45deg);
    top: 0;
  }
  a#btn span.change:after {
    transform: rotate(45deg);
    top: 0;
  }
  a#btn {
    background: #fff;
    display: none;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 10px;
    padding: 0;
    cursor: pointer;
    width: 36px;
    height: 36px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 50%;
    z-index: 9999;
  }
}
@media only screen and (max-width:769px) {
  p.spnav {
    display: block;
  }
  p.logo img {
    max-width: 150px;
  }
  p.logo span {
    font-size: 10px;
    top: -6px;
  }
  a#btn img {
    max-width: 100%;
  }
  a#btn, p#close {
    display: block;
  }
}
@media only screen and (max-width:769px) {
  input[type=text], textarea, input[type=button] {
    -webkit-appearance: none;
  }
}
/*==========================================FOOTER======================================================*/
footer{
	background:#3f3d3d;
}
.copyright p{
  color:#fff;
	font-size:12px;
	line-height: 3rem;
	text-align: center;
}
@media only screen and (max-width:769px) {
  .copyright p{
    font-size: 10px;
    line-height: 2rem;
  }
}