﻿@charset "utf-8";

body{
	font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

.clearfix::after {
  content: “”;
  display: block;
  clear: both;
}

html{
  font-size: 1vw;
}

body {
  overflow-x: hidden;
}

#wrap {
  width: 100%;
  overflow-x: hidden;
}

@media screen and (min-width: 769px){

.fadein {
  opacity: 0;
  transform: translate(0, 4vw);
  transition: all 1300ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: fixed;
  top: 1.4vw;
  right: 1vw;
  width: 3vw;
  height: 2vw;
  z-index: 110;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 0.9vw;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(0.9vw) rotate(-315deg);
  -moz-transform: translateY(-0.9vw) rotate(315deg);
  transform: translateY(0.9vw) rotate(-315deg);
  background-color: #ffffff;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-0.9vw) rotate(315deg);
  -moz-transform: translateY(-0.9vw) rotate(315deg);
  transform: translateY(-0.9vw) rotate(315deg);
  background-color: #ffffff;
}

nav {
  width: 30%;
  height: 100%;
  position: fixed;
  top: 0px;
  right: -30%;
  background-color: rgba(0,0,0,0.9);
  z-index: 101;
  opacity: 0;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-sizing: border-box;
  text-align: center;
}

nav.open {
  width: 30%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 101;
  opacity: 1.0;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

nav ul {
  width: 80%;
  margin: 0px auto;
  margin-top: 3vw;
}

nav ul li {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.0vw;
  border-bottom: 1px solid #ffffff;
  box-sizing: border-box;
  padding-bottom: 1.0vw;
}

nav ul li:last-child{
  border-bottom: 0px;
}

nav ul li img {
  width: 2.5vw;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
}

nav ul li a:hover {
  color: #ffffff;
}

.small {
  font-size: 1rem;
}

header {
  width: 100vw;
  height: 5vw;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: #ffffff;
}

h1 {
  font-weight: normal;
  font-size: 2rem;
  margin: 1.5vw;
}

h1 a {
  color: #000000;
  text-decoration: none;
}

#visual {
  width: 100vw;
  height: 57vw;
  background-image: url(../img/main.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  text-align: center;
  box-sizing: border-box;
  padding-top: 3vw;
}

#catch {
  margin-top: 10vw;
  margin-left: 5vw;
}

#catch p {
  font-size: 3rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.4;
  text-shadow: #e37c51 1px 0 12px;
}

h2 {
  font-size: 2.2rem;
  font-weight: normal;
  margin: 2vw 0 2vw 0;
  border-bottom: 1px solid #000000;
  padding: 0 0 0.5vw 0.5vw;
}

h3 {
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0 0 2vw 0;
}

h4 {
  font-size: 1.8rem;
  font-weight: normal;
  margin: 0 0 2vw 0;
}

section {
  width: 70vw;
  margin: 0 auto;
  margin-bottom: 2vw;
  font-size: 1.5rem;
  line-height: 1.8;
}

section a {
  color: #000000;
  text-decoration: underline;
}

section a:hover {
  color: #5aa1a8;
  text-decoration: underline;
}

section p {
  margin-bottom: 1.6vw;
}

footer {
  width: 100%;
  height: 5vw;
  text-align: center;
  box-sizing: border-box;
  padding-top: 2vw;
}

.sp-br {
  display: none;
}

.big {
  font-size: 2.1rem;
}

.middle {
  font-size: 1.8rem;
}

.small {
  font-size: 1.5rem;
}

.image-left {
  width: 25vw;
  float: left;
  margin: 0 1vw 0.5vw 0;
}

}

















@media screen and (max-width: 768px){

.fadein {
  opacity: 0;
  transform: translate(0, 20vw);
  transition: all 1000ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: fixed;
  top: 5vw;
  right: 3vw;
  width: 12vw;
  height: 8vw;
  z-index: 110;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 3.7vw;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(4vw) rotate(-315deg);
  -moz-transform: translateY(-4vw) rotate(315deg);
  transform: translateY(4vw) rotate(-315deg);
  background-color: #ffffff;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-3.7vw) rotate(315deg);
  -moz-transform: translateY(-3.7vw) rotate(315deg);
  transform: translateY(-3.7vw) rotate(315deg);
  background-color: #ffffff;
}

nav {
  width: 85%;
  height: 100%;
  position: fixed;
  top: 0px;
  right: -85%;
  background-color: rgba(0,0,0,0.9);
  z-index: 101;
  opacity: 0;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  box-sizing: border-box;
  text-align: center;
}

nav.open {
  width: 85%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  z-index: 101;
  opacity: 1.0;
  -moz-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

nav ul {
  width: 80%;
  margin: 0px auto;
  margin-top: 15vw;
}

nav ul li {
  font-size: 4.0rem;
  line-height: 1.4;
  margin-bottom: 4vw;
  border-bottom: 1px solid #ffffff;
  box-sizing: border-box;
  padding-bottom: 4vw;
}

nav ul li:last-child{
  border-bottom: 0px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
}

nav ul li a:hover {
  color: #ffffff;
}

.small {
  font-size: 3.2rem;
}

header {
  width: 100vw;
  height: 18vw;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  background-color: #ffffff;
}

h1 {
  font-weight: normal;
  font-size: 5rem;
  margin: 3vw;
  line-height: 1.2;
}

h1 a {
  color: #000000;
  text-decoration: none;
}

#visual {
  width: 100vw;
  height: 95vh;
  background-image: url(../img/mainsp.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  box-sizing: border-box;
  padding-top: 18vw;
}

#catch {
  margin-top: 70vw;
  margin-left: 5vw;
  margin-right: 5vw;
}

#catch p {
  font-size: 6rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.4;
  text-shadow: #e37c51 1px 0 10px;
}

h2 {
  font-size: 5rem;
  font-weight: normal;
  margin: 5vw 0 6vw 0;
  border-bottom: 1px solid #000000;
  padding: 0 0 1.5vw 1.5vw;
  line-height: 1.4;
}

h3 {
  font-size: 4rem;
  font-weight: normal;
  margin: 0 0 5vw 0;
}

h4 {
  font-size: 4.5rem;
  font-weight: normal;
  margin: 0 0 5vw 0;
}

section {
  width: 90vw;
  margin: 0 auto;
  margin-bottom: 7.5vw;
  font-size: 4rem;
  line-height: 1.8;
}

section a {
  color: #000000;
  text-decoration: underline;
}

section a:hover {
  color: #5aa1a8;
  text-decoration: underline;
}

section p {
  margin: 0 3vw 5vw 3vw;
  font-size: 4rem;
  line-height: 1.6;
}

footer {
  width: 100%;
  height: 15vw;
  text-align: center;
  box-sizing: border-box;
  padding-top: 5vw;
  padding-bottom: 16vw;
  font-size: 3.2rem;
  line-height: 1.6;
}

footer p {
  margin: 0 3vw 5vw 3vw;
}

.big {
  font-size: 6rem;
}

.middle {
  font-size: 5rem;
}

.small {
  font-size: 4rem;
}

.image-left {
  width: 100%;
  margin: 0 0 3vw 0;
}

}