@charset "UTF-8";

/* ------ common ------ */
* {
  margin: 0;
  padding: 0;
  word-break: break-all;
  line-break: strict;
  outline: none;
  box-sizing: border-box
}
html {
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo UI", "Meiryo", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  font-feature-settings: "palt";
  -webkit-overflow-scrolling: touch
}
body {
    height: 100%;
    color: #000;
    font-size: 1.5rem;
    font-style: normal;
    background: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    transform: none;
}
img { max-width: 100% }
ol,
ul,
li {
  list-style: none
}
table {
  border-spacing: 0;
  border-collapse: collapse
}
form label { cursor: pointer }
input,
textarea {
}
a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out
}
a:hover {
  color: #000;
  outline: none
}
a:focus { outline: none }
input[type=submit] { transition: all 0.3s ease-in-out }
a img { border: none }
.cf::after {
  content: "";
  display: block;
  clear: both
}
::-moz-selection {
  color: #fff;
  background: #000
}
::selection {
  color: #fff;
  background: #000
}
::-webkit-input-placeholder { color: #999 }
::-moz-placeholder {
  color: #999;
  opacity: 1
}
:-ms-input-placeholder { color: #999 }

/* ------ header ------ */
header {
    width: 100%;
    height: 80px;
    background-color: #fff;
    top: 0;
    box-shadow: 0 0 5px rgb(0,0,0,0.3);
    z-index: 100;
    position: fixed;
}

header .inner cf {
    width: 100%;
    font-size: 0;
    margin: 0;
}

header .logo {
    vertical-align: middle;
    padding: 0 0 0 20px;
    display: inline-block;
    z-index: 100
}
header .logo a { display: block }
header .logo h1,
header .logo p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0.2em;
  transition: all 0.3s;
  display: inline-block
}
header .logo h1 span,
header .logo p span {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 769px) {
  header .menuBtn { display: none }
}
@media screen and (max-width: 768px) {
  header { height: 60px }
  header .inner { padding: 0 0 0 4% }
  header .logo {
    width: 260px;
    padding: 0
  }	
  header .logo h1,
  header .logo p {
    font-size: 1.4rem;
    line-height: 10px
  }
  header .logo h1 span,
  header .logo p span {
    font-size: 2.0rem
  }
   /* menu trigger */
  .menuBtn {
    width: 60px;
    height: 60px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    z-index: 100
  }
  .menuTrigger,
  .menuTrigger span {
    transition: all .4s;
    display: inline-block
  }
  .menuTrigger .menuIcon {
    width: 25px;
    height: 20px;
    position: relative;
    top: 20px;
    display: inline-block
  }
  .menuTrigger span {
    width: 100%;
    height: 3px;
    background: #3E7CFF;
    position: absolute;
    left: 0
  }
  .menuTrigger span:nth-child(1) { top: 0 }
  .menuTrigger span:nth-child(2) { top: 9px }
  .menuTrigger span:nth-child(3) { bottom: 0 }
  .menuTrigger span:nth-child(1) { animation: menu-bar01 .75s forwards }
  .menuTrigger.active span:nth-child(1) { transform: translateY(9px) rotate(-45deg) }
  .menuTrigger.active span:nth-child(2) {
    left: 50%;
    animation: active-menu-bar02 .8s forwards;
    opacity: 0
  }
  }
  @-webkit-keyframes active-menu-bar02 {
    100% { height: 0 }
  }
  @keyframes active-menu-bar02 {
    100% { height: 0 }
  }
  .menuTrigger.active span:nth-child(3) { transform: translateY(-9px) rotate(45deg) }

/* ------ nav ------ */
header nav {
  text-align: center;
  vertical-align: top;
  display: inline-block;
  float: right
}
header nav .globalNav ul {
  height: 80px;
  font-size: 0
}
header nav .globalNav li {
  height: 80px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 80px;
  letter-spacing: 0.09em;
  text-align: center;
  position: relative;
  display: inline-block
}
header nav .globalNav li::before {
  content: "";
  width: 1px;
  height: 40%;
  margin: auto;
  background: #999;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0
}
header nav .globalNav li a {
  padding: 0 10px;
  display: block;
  z-index: 1
}
header nav .globalNav li a:hover { color: #3E7CFF }

@media screen and (min-width: 769px) {
  header nav .snsWrap { display: none }
}
@media screen and (max-width: 768px) {
  header nav {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    border-top: 1px solid #c1c1c1;
    position: fixed;
    top: 60px;
    right: -100%;
    transition: all 0.3s ease-in-out;
    float: none;
    overflow-y: scroll
  }
  header nav.open {
    min-height: 100vh;
    padding-bottom: 100px;
    background: #fff;
    right: 0;
    z-index: 99
  }
  header nav .globalNav ul {
    height: auto;
    margin-top: 60px
  }
  header nav .globalNav li {
    height: 60px;
    font-size: 1.8rem;
    line-height: 60px;
    display: block
  }
  header nav .globalNav li::before {
    width: 0;
    height: 0
  }
  header nav .snsWrap {
    margin-top: 30px;
    display: block
  }
  header nav .snsWrap ul { font-size: 0 }
  header nav .snsWrap li {
    width: 26px;
    vertical-align: middle;
    display: inline-block
  }
  header nav .snsWrap li + li { margin-left: 40px }
}
/* ------ menu ------ */
#menu {
  padding-top: 80px;
  margin-top: -80px
}
#menu .inner {
  text-align: center;
  padding: 80px 0
}
#menu h2 {
  font-size: 2.4rem;
  letter-spacing: 0.09em
}
#menu .menuMain {
    width: 100%;
    height: 680px;
    position: relative;
    margin-top: 60px;
    background-repeat: no-repeat;
    background-image: url(../img/activetop1.png);
	background-position: 50% 50%;
    background-size: cover
}
#menu .menuMainInner {
  width: 1200px;
  margin: 0 auto;
  position: relative
}
#menu .menuMainBox {
  width: 500px;
  height: 480px;
  text-align: left;
  padding: 80px;
  background: rgba(255,255,255,0.7);
  position: absolute;
  top: 0;
  right: 40px
}
#menu .menuMainBox h3 {
  font-size: 2.8rem;
  letter-spacing: 0.09em;
}
#menu .menuMainBox p {
  font-size: 1.6rem;
  letter-spacing: 0.09em;
  margin-top: 30px
}
@media screen and (max-width: 768px) {
  #menu {
    padding-top: 60px;
    margin-top: -60px
  }
  #menu .inner {
    text-align: center;
    padding: 60px 0 20px
  }
  #menu h2 { font-size: 2rem }
  #menu .menuMain {
    width: auto;
    height: 60vh;
    background-repeat: no-repeat;
    background-position: 60% 50%;
    background-image: url(../img/activetop_sp10.png);
	background-size: cover;
  }
  #menu .menuMainInner {
    width: 100%;
    padding: 0 4%;
  }
  #menu .menuMainBox {
    width: 90%;
    height: 400px;
    padding: 60px 40px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  #menu .menuMainBox h3 { font-size: 2rem }
  #menu .menuMainBox p { margin-top: 20px }
}
@media screen and (max-width: 479px) {
  #menu .menuMain {
    width: auto;
    height: 45vh;
    background-repeat: no-repeat;
	background-position: 60% 40%;
    background-image: url(../img/activetop_sp10.png);
	background-size: cover;
  }
}
/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {
  #menu .menuMain {
    width: auto;
	height: 45vh;
    background: url("../img/activetop_sp10.png") 10% 60% no-repeat;
	background-size: cover  
}
}
/* title */
.ac-title {
	margin-bottom: 30px;
	}

.ac-title h2 {
	font-size: 20px;
	color: #003399;
	margin-top: 20px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-left-width: 14px;
	border-bottom-style: solid;
	border-left-style: double;
	border-bottom-color: #00008B;
	border-left-color: #3E7CFF;	
}	
.ac-title h5 {
	font-size: 16px;
	color: #3E7CFF;
	margin-top: 10px;
	margin-right: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
}	

#name {
	background-color: #fafdff;
}
#mail {
	background-color: #fafdff;
}
#idea {
	background-color: #fafdff;
}
	
/* footer */
.button {
	width: 200px;
	margin-top: 40px;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
}
.button:hover {
    background-color: #6A99FF;
    color: #FFFFFF;
    cursor: pointer;
}
.copyright {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #FFFFFF;
    color: #000000;
    font-weight: lighter;
    letter-spacing: 2px;
    border-top-width: 2px;
    font-family: Arial, Helvetica, sans-serif;
}
footer {
	color: #000000;
	background-color: #3E7CFF;
	padding-top: 10px;
	padding-bottom: 10PX;
	margin-top: 5%
}
.intro {
	display: inline-block;
	background-color: #3E7CFF;
}

.hero_header {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    font-weight: lighter;
}

<style type="text/css">
#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
}
#formWrap p {
	width:700px;
	text-align: center;
	margin:0 auto;
	color:#000;
	line-height:120%;
}
table.formTable {
	width:90%;
	margin-top: 3%;
	margin-bottom: 5%;
	margin-right: 5%;
	margin-left: 5%;
	border-collapse: collapse;
}
table.formTable td,table.formTable th {
	border:1px solid #ccc;
	padding:10px;
	font-weight:normal;
}
table.formTable th {
	width:30%;
	font-weight:normal;
	background:#eaf4fc;
	text-align:left;
}
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
#formWrap p {
	width:auto;
	text-align: center;
	margin:0 auto;
	line-height:120%;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	text-align: center;
	width:auto;
	height:10px;

}
}
