@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-image: url("../img/activetop2.png");
  background-repeat: no-repeat;
  background-position: 40% 40%;
  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% 40% 20% 80%;
    background-image: url(../img/activetop_sp2.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-image: url("../img/activetop_sp2.png");
	background-repeat: no-repeat;
	background-position: 10% 50%;
	background-size: cover  
  }
}
/* ------ title ------ */
.animationtitle .title .l1 {
	width: auto;
	hight: auto;
	position: relative;
	}
/* ------ column ------ */
.animation {
    width: 100%;
	display: inline-block;
    padding-bottom: 35px;
}
.animation .column {
	color: #3E7CFF;
	width: 50%;	
	margin-top: 10px;
	text-align: center;
	float: left;
}
.animation .column table {
    width: auto;
    border: 1px solid #807FFF;
	margin-top: 5%;
    margin-right: 5%;
    margin-left: 5%;
    margin-bottom: 5%;
}
.animation .column .t1 {
	background-image: url(../img/15.png);
	background-repeat: no-repeat;
	background-position: center;
	margin-top: 5%;
	margin-bottom: 5%;
}
.animation .column .t2 {
	background-image: url(../img/17.png);
	padding-left: 4%;
	padding-right: 4%;
}
.animation .column .t3 {
	background-image: url(../img/15.png);
	background-repeat: no-repeat;
	background-position: center top;
	padding-bottom: 10px;
}
.animation .column .t3 p {
	margin-bottom: 5px;
}
.animation .column .a3 {
	font-size: 17px;
	font-weight: normal;
	margin-top: 5%;
	margin-bottom: 5%;
}
.animation .column .a4 {
	font-size: 14px;
	color: #000000;
	font-weight: normal;
	margin-top: 5%;
	margin-bottom: 5%;
}
.animation .column .animationimage {
	width: 100%
}
.animation .column .newsbox {
	width: auto;
	height: auto;
	background-color: #004d25;
	font-size: 14px;
	margin: 5%;
	padding: 5%;
	color: #FFF;
	border-right-width: 1px;
	border-bottom-width: 10px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #CCC;
	border-bottom-color: #ae7c58;
}
.animation .column .newsbox p {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ffd900;
    text-align: left;
    font-style: normal;
    font-weight: normal;
    line-height: 30px;
	padding: 3%;
}
.midashi {
	border-bottom: dashed 2px #ffd900;
	font-weight: bold;
	color: #ffd900;
	font-size: 15px;
}

.animation .column .anime {
	width: auto;
}

.animation .column .right table {
	width: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	border: 0px solid;
}
.animation .column .right table td {
	width: 50%;
	padding: 3%;
	border: 0px solid;
}

.animation .column .right .box27 {
    position: relative;
	color: #333;
    border: 2px solid #ffd900;
    width: 100%;
	height: auto;
    margin-left: 0;
	margin-right: 5%;
	margin-top: 5%;
	margin-bottom: 5%;
    padding: 6%;
    background-color: #fff7ef;
    font-family: "ヒラギノ角ゴシック W1", "ヒラギノ角ゴシック W2", "ヒラギノ角ゴシック W6";
    font-weight: normal;
    font-style: normal;
    text-align: left;
}
.animation .column .right .box27 .box-title {
	position: absolute;
	display: inline-block;
	top: -27px;
	left: -2px;
	padding: 0 16px;
	height: 25px;
	line-height: 30px;
	vertical-align: middle;
	font-size: 14px;
	color: #8d6449;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
	background-color: #ffd900;
}
.animation .column .right .box27 p {
    margin: auto;
    padding: 0;
    font-size: 15px;
    line-height: 25px;
}

.animation .column .right .box27 li {
	font-size: 14px;
	font-style: normal;
	color: #333;
	margin-left: -5px;
	margin-top: 0px;

}
.animation .column .right .ex-anima {
	max-width: 750px;
	font-size: 14px;
	margin: 3%;
	padding: 5%;
	font-weight: normal;
	background-repeat: repeat-y;

}
.midashi2 {
    font-weight: normal;
    color: #FF6699;
    font-size: 17px;
    border-bottom-width: 2px;
    border-bottom-style: double;
    border-bottom-color: #FF6699;
    margin-top: 5%;
    margin-right: 5%;
    margin-left: 8%;
    margin-bottom: 5%;
    padding-top: 0%;
    padding-right: 4%;
    padding-left: 5%;
    padding-bottom: 1%;
}

.midashimoji {
    font-size: 14px;
    color: #333;
    padding-left: 5%;
}

hr {
	height: 1px;
	border: 1px dashed #FF6699;
	margin: 5%;
}
.under {
	background-color: #F00;
	background-position: 70%;
}
.photo img {
	width: 90%;
	margin-left: 0%;
	margin-top: 5%;
	margin-bottom: 0%;
	margin-right: 5%;
	}
.photo2 img {
	width: auto;	
	}	

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

.column {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
}
.intro .column p {
	width: 100%;
	text-align: center;
	padding-left: 0px;
}
.animation {
    width: 100%;
}
.animation .column {
	width: 100%;
}
.animation .column .anime {
	width: auto;
}
.animation .column table {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}
.animation .column .right table {
	width: 100%;
}
.animation .column .right .ex-anima {
	max-width: 500px;
	margin: 3%;
	padding: 3%;
	background-repeat: repeat-y;
}
.midashi2 {    
	font-size: 15px;
}
.midashimoji {
    padding-left: 7%;	
}
.column .box27 {
	width: auto;
}
.photo img {
	width: auto;

	}
.photo2 img {
	width: auto;	
	}	
}
@media screen and (max-width: 479px) {
.column {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
}
.intro .column p {
	width: 100%;
	text-align: center;
	padding-left: 0px;
}
.animation {
    width: 100%;
}
.animation .column {
	width: 100%;
}
.animation .column .anime {
	width: auto;
}
.animation .column table {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
}
.animation .column .right table td {
	width: 100%;
	margin: 5%;
}
.animation .column .right .ex-anima {
	max-width: 350px;
	margin: 3%;
	padding: 3%;
	background-repeat: repeat-y;
}
.midashi2 {    
	font-size: 15px;
}
.midashimoji {
    padding-left: 7%;	
}
.column .box27 {
	width: auto;
}
.photo img {
	width: 95%;
	height: auto;
	margin-left: -5%;
}
.photo2 img {
	width: auto;	
	height: auto;
	}	
}

/* 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;
}
.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;
}
	
