@charset "UTF-8";
/* CSS Document */

/************************
	header　*/
#header {
	position: relative;
	z-index: 2;
	text-align: center;
}
#header .inner {
	padding: 15px 0;
}
#header .logo {
	float: left;
}
.header_nav {
	float: right;
}
.header_nav li {
	float: right;
	width: 180px;
	margin-left: 10px;
	text-align: center;
}
.header_nav li a {
	display: block;
}
.header_nav li.hankyu a {
	padding: 5px;
}
nav .contact a {
	display: block;
	padding: 10px;
	font-size: 14px;
	color: #fff;
}
.gnav {
	box-shadow: 0px 3px 5px rgba(0,0,0,0.3);
}
.gnav li {
	float: left;
	width: 50%;
	text-align: center;
	font-size: 22px;
  background-image: -moz-linear-gradient( 90deg, rgb(113,37,107) 0%, rgb(192,105,159) 100%);
  background-image: -webkit-linear-gradient( 90deg, rgb(113,37,107) 0%, rgb(192,105,159) 100%);
  background-image: -ms-linear-gradient( 90deg, rgb(113,37,107) 0%, rgb(192,105,159) 100%);
	/*background: linear-gradient(to right, rgba(184,25,62,1) 0%, rgba(139,6,44,1) 100%);*/
	box-sizing: border-box;
	transition: all .6s;
}
.gnav li:first-child {
	border-right: 1px solid #fff;
}
.gnav a {
	display: block;
	color: #fff;
	padding: 20px 10px;
	transition: all .6s;
	-webkit-transition: all .6s;
}
.gnav a:hover {
  background: #661b60;
}
@media screen and (max-width: 768px) {
	.header_nav li.hankyu {
		display: none;
	}
	#header .logo img {
		width: auto;
		height: 32px;
	}
}
@media screen and (max-width: 480px) {
	#header .inner {
		padding: 15px 0;
	}
	#header .logo {
		float: none;
	}
	.header_nav {
		float: none;
		position: fixed;
		bottom: 0;
		left: 70%;
		width: 30%;
	}
	.header_nav li {
		float: none;
		width: 100%;
		margin: 0;
	}
	nav .contact a {
		font-size: 10px;
	}
	.gnav {
		position: fixed;
		bottom: 0;
		left: 0;
		/*width: 70%;*/
    width: 100%;
	}
	.gnav li {
		width: 50%;
		font-size: 10px;
		border-width: 0!important;
	}
	#header a {
		padding: 20px 0!important;
		border-width: 0!important;
	}
}

/************************
	main　*/

#main {
	position: relative;
	padding: 5% 0 30%;
	background: #001e4d url(../../img/main-img2.jpg) no-repeat bottom center;
	background-size: 100% auto;
	text-align: center;
}
#main_black{
  position: absolute;
  top:0; left: 0;
  width:100%;
  height: 100%;
  z-index: 0;
  background-color: #000000;
  -webkit-transition: 5.0s ease opacity 0.3s;
          transition: 5.0s ease opacity 0.3s;
}
#main_black.anime{opacity: 0;}

#main_sky{
  overflow: hidden;
  position: absolute;
  top:0; left: 0;
  width:100%;
  height: 100%;
  /*background: url(../../img/main-img2-sky.png) no-repeat top center;
	background-size: 100% auto;*/
  z-index: 0;
  -webkit-transition: 1.0s ease opacity;
          transition: 1.0s ease opacity;
  opacity: 0;
}
#main_sky.anime{opacity: 1;}

#main_sky_inner{
  position: relative;
  z-index: 1;
  width:100%;
  height: 100%;
}
#main_sky_bg{
  position: absolute;
  top:-10%; left: 0;
  width:100%;
  height: 100%;
  background: url(../../img/main-img2-sky.png) no-repeat top center;
	background-size: 100% auto;
}

.main_star{
  position: absolute;
  top:-0%; left: 0;
  width:100%;
  height: 100%;
  /*max-height: 540px;*/
  background-size: 100% auto;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.main_star img{width:100%; height: auto;}

#main_star1{
  /*background: url(../../img/main-img2-star1.png) no-repeat top center;*/
  -webkit-animation: star_motion 3s linear 0s infinite alternate;
          animation: star_motion 3s linear 0s infinite alternate;
}
#main_star2{
  /*background: url(../../img/main-img2-star2.png) no-repeat top center;*/
  -webkit-animation: star_motion 4s linear 0s infinite alternate;
          animation: star_motion 4s linear 0s infinite alternate;
}
#main_star3{
  /*background: url(../../img/main-img2-star3.png) no-repeat top center;*/
  -webkit-animation: star_motion2 6s linear 0s infinite alternate;
          animation: star_motion2 6s linear 0s infinite alternate;
}
@-webkit-keyframes star_motion{
  0%  {opacity:1;}
  20% {opacity:0.2;}
  40% {opacity:1;}
  60% {opacity:0.2;}
  80% {opacity:1;}
  100%  {opacity:0.2;}
}
@keyframes star_motion{
  0%  {opacity:1;}
  20% {opacity:0.2;}
  40% {opacity:1;}
  60% {opacity:0.2;}
  80% {opacity:1;}
  100%  {opacity:0.2;}
}

@-webkit-keyframes star_motion2{
  0%  {opacity:0.5;}
  20% {opacity:0.2;}
  40% {opacity:0.5;}
  60% {opacity:0.2;}
  80% {opacity:0.5;}
  100%  {opacity:0.2;}
}
@keyframes star_motion2{
  0%  {opacity:0.5;}
  20% {opacity:0.2;}
  40% {opacity:0.5;}
  60% {opacity:0.2;}
  80% {opacity:0.5;}
  100%  {opacity:0.2;}
}


#catch {
  position: relative;
	color: #fff;
}
#catch h2 {
	font-size: 30px;
	line-height: 1.6;
	letter-spacing: 0.1em;
  opacity: 0;
  -webkit-transition: 4.0s ease opacity;
          transition: 4.0s ease opacity;
}
#catch h2.anime {opacity: 1;}

#catch .p {
	line-height: 2.5;
  opacity: 0;
  -webkit-transition: 5.0s ease opacity 1.5s;
          transition: 5.0s ease opacity 1.5s;
}
#catch .p.anime{opacity: 1;}

#group {
  position: relative;
	margin: 5% auto;
	padding: 30px 0;
	/*background: rgba(255,255,255,0.50);*/
}
#group_bg{
  position: absolute;
  top:0; left: 0;
  width:100%;
  height: 100%;
  background: rgba(255,255,255,0.50);
  opacity: 0;
  -webkit-transform: scale(1 , 0.5);
          transform: scale(1 , 0.5);
  -webkit-transition: 4.0s ease opacity 3.0s , 1.0s ease-out transform 3.0s;
          transition: 4.0s ease opacity 3.0s , 1.0s ease-out transform 3.0s;
}
#group_bg.anime{
  opacity: 1;
  -webkit-transform: scale(1 , 1);
          transform: scale(1 , 1);
}

#group h3 {
  position: relative;
	font-size: 22px;
  opacity: 0;
  -webkit-transition: 3.0s ease opacity 3.0s;
          transition: 3.0s ease opacity 3.0s;
}
#group h3.anime{opacity: 1;}

#group ul {
  position: relative;
	letter-spacing: -.4em;
  /*opacity: 0;
  -webkit-transition: 3.0s ease opacity 3.5s;
          transition: 3.0s ease opacity 3.5s;*/
}
#group ul.anime{opacity: 1;}

#group li {
	display: inline-block;
	vertical-align: top;
	max-width: 144px;
	margin: 10px 5px;
  opacity: 0;
  transform: translateY(50%);
  -webkit-transition: 3.0s ease opacity 3.5s , 1s ease-in-out transform 3.5s;
          transition: 3.0s ease opacity 3.5s , 1s ease-in-out transform 3.5s;
}
#group li:nth-child(1){
  -webkit-transition: 3.0s ease opacity 3.5s , 1s ease-in-out transform 3.5s;
          transition: 3.0s ease opacity 3.5s , 1s ease-in-out transform 3.5s;
}
#group li:nth-child(2){
  -webkit-transition: 3.0s ease opacity 3.7s , 1s ease-in-out transform 3.7s;
          transition: 3.0s ease opacity 3.7s , 1s ease-in-out transform 3.7s;
}
#group li:nth-child(3){
  -webkit-transition: 3.0s ease opacity 3.9s , 1s ease-in-out transform 3.9s;
          transition: 3.0s ease opacity 3.9s , 1s ease-in-out transform 3.9s;
}
#group li:nth-child(4){
  -webkit-transition: 3.0s ease opacity 4.1s , 1s ease-in-out transform 4.1s;
          transition: 3.0s ease opacity 4.1s , 1s ease-in-out transform 4.1s;
}
#group li:nth-child(5){
  -webkit-transition: 3.0s ease opacity 4.3s , 1s ease-in-out transform 4.3s;
          transition: 3.0s ease opacity 4.3s , 1s ease-in-out transform 4.3s;
}
#group li:nth-child(6){
  -webkit-transition: 3.0s ease opacity 4.5s , 1s ease-in-out transform 4.5s;
          transition: 3.0s ease opacity 4.5s , 1s ease-in-out transform 4.5s;
}

#group li.anime{
  opacity: 1;
  transform: translateY(0%);
}




@media screen and (max-width: 768px) {
	#catch h2 {
		font-size: 25px;
	}
	#catch .p {
		line-height: 2;
	}
	#group {
		width: 95%;
		/*box-shadow: 1px 1px 3px rgba(0,0,0,0.30);*/
	}
  #group_bg{
    box-shadow: 1px 1px 3px rgba(0,0,0,0.30);
  }
  
	#group h3 {
		font-size: 16px;
	}
  
  #main_sky_bg{top:0;}
  .main_star{ top:5%;}
}
@media screen and (max-width: 480px) {
	#catch h2 {
		font-size: 21px;
		letter-spacing: normal;
	}
	#group li {
		width: 46%;
		margin: 10px 2%;
	}
}

/************************
	footer　*/

.footNav {
	border: #6d0070 solid;
	border-width: 3px 0;
	background: #6d0070;
}
.footNav ul {
	max-width: 1384px;
	margin: auto;
}
.footNav li {
	float: left;
	border: #6d0070 solid 1px;
	width: 50%;
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(219,219,219,1) 100%);
	box-sizing: border-box;
}
.footNav li:hover {
	background: #fff;
}

@media screen and (max-width: 480px) {
	.footNav {
		border-width: 1px 0;
	}
	.footNav li {
		width: 100%;
		border-width: 1px 0;
	}
}

/*問い合わせ削除*/
#footer .tel .pc_contact {
  display: none;
}
#footer .tel li:nth-child(2) {
    border-width: 0;
}



#jigyo_area_contents {
  text-align: center;
  max-width: 800px;
  width: 94%;
  margin: auto;
}
#jigyo_area_contents h3 {
  background: #521472;
  color: #fff;
  padding: 14px 0 10px;
  font-size: 24px;
  line-height: 1;
  margin: 30px auto 0;
}
#jigyo_area_contents h4 {
  font-size: 20px;
  margin: 30px auto 10px;
}
#jigyo_area_contents img {
  width: 100%; height: auto;
}
#jigyo_area_contents figure {
  max-width: 800px;
  margin: 30px auto 50px;
  border: 1px solid #ccc;
}
#jigyo_area_contents p {
  line-height: 1.7;
}