

/*トップページのメニューバーCSS*/

@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,500);
.snip1198 {
  font-family: 'Raleway', Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
	background: #000;}
.snip1198 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.snip1198 li {
  display: inline-block;
  list-style: outside none none;
  margin: 0.4em 0.8em;
  padding: 0;
}
.snip1198 a {
  padding: 0 0.7em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.snip1198 a:before {
  position: absolute;
  content: '';
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  opacity: 0;
  left: 15%;
  right: 15%;
  top: 0;
  bottom: 0;
  border-left: 1px solid #3ee4e6;
  border-right: 1px solid #8372ff;
}
.snip1198 a:hover,
.snip1198 .current a {
  color: #ffff;
}
.snip1198 a:hover {
  color: #fdb0c7;
}


.snip1198 a:hover:before,
.snip1198 .current a:before {
  opacity: 1;
  left: 0;
  right: 0;
}



/*マルチカラム（4～6）の行間変更*/
.col6-wrap,
.col5-wrap,
.col4-wrap{
	margin: 0 0 1em;
	line-height: 0.7
}



/*リンクの基本色*/
a{
	color: #fdb0c7;
}






h2{
	margin-bottom: 23px;
	padding: 5px 10px 5px;
	color: #fff;
	font-size: 2.4rem;
}





/*基本文字サイズ、文字間隔*/
.keni-main{
font-size: 1.5rem;
line-height: 1.８;
}








/*マウス・ホバー　hover style1 */

.hover {
  position: relative;
  width: 100%;
  height:100%;
  overflow: hidden;
}
.hover .hover-img {
  margin: 0;
  padding: 0;
}
.hover-img img {
  width: 100%;
  height: 100%;
}
.hover .hover-text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #3ee4e6;
  background-color: rgba(0,0,0,0.65);
  /*透明にして表示させない*/
  opacity: 0;
  /*ホバーの動き方*/
  transition: .3s ease-in-out;
}
.hover .hover-text .text1 {
  font-size: 22px;
  padding: 0 20px 10px;
}
.hover .hover-text .text2 {
  font-size: 16px;
  padding: 0 20px;
}
/*ホバーエフェクト*/
.hover:hover .hover-text {
  /*不透明にして表示*/
  opacity: 1;
  /*padding-topで上からスライド*/
  padding-top: 10px;
}







