@charset "utf-8";
body {
	font-size: 10px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka2", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #f5f5f7;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
	margin:0;
	padding:0;
}

.font_01{
	font-family: 'Klee One', cursive;
	font-weight:lighter;
}

.font_02{
	font-family: 'Klee One', cursive;
	font-weight:lighter;
}

wrapper{
	width: 100%;
}

/*-----------text_box----------*/

h2 {
	display: inline;
	font-size: 4em;
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
	font-family: "MS Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	font-weight:bold;
	color: #000000;
	letter-spacing: 0.1em;
}
h3 {
	font-size: 3em;
	text-align: left;
	/*margin-bottom: 5px;*/
	font-family: 'Klee One', cursive;
	font-weight:bold;
	color: #000000;
}
h4 {
	font-size: 1.7em;
	text-align: left;
	margin-bottom: 5px;
	font-family: 'Klee One', cursive;
	font-weight:lighter;
	color: #000000;
}

.t_indent{
	text-indent: 0.5em;	
}

.t_indent_2{
	text-indent: 1em;	
}

.sub_text {
	display: inline;
	font-size: 2em;
	text-align: left;
	color: #000000;
	letter-spacing: 0.1em;
	font-family: 'Klee One', cursive;
	font-weight:lighter;
}
.sub_text_2 {
	font-size: 1.6em;
	text-align: left;
	margin-top: 10px;
	padding-left: 10px;
	color: #000000;
	letter-spacing: 0.1em;
	line-height: 20px;
	font-weight:lighter;
}


@media (max-width: 768px){
	
h2 {
	font-size: 2.5em;
}

h3 {
	font-weight:bold;
	font-size: 1.6em;
}
h4 {
	font-size: 1em;
}
	
.sub_text {
	font-size: 0.7em;
	padding-bottom:10px;
}
	
.sub_text_2 {
	font-size: 1em;
	text-align: left;
	margin-top: 8px;
	padding-left: 10px;
	color: #000000;
	letter-spacing: 0.1em;
	line-height: 12px;
}

	}
/*------------headerエリア------------*/
header {
	background: #FFFFFF;
	position: fixed;
	width: 100%;
	height:35px;
	z-index: 99;
	box-shadow: 0px 0px 2px 0px #000;
}
#left_container {
	width: 85%;
	float: left;
	
}
#logo_box {
	width: 30%;
	max-width: 230px;
	height:35px;
	float: left;
	line-height: 35px;
}

#logo_box a img {
	width: 90%;
	margin-left: 10%;
	
}
#menu_box {
	width: 70%;
	float: right;
	line-height: 35px;
}
#menu_box ul {
	width: 70%;
	margin-right: 30%;
}
#menu_box ul li {
	display: inline;
	color: #000000;
	margin: 0 3%;
	line-height: 35px;
}
#menu_box ul li a {
	font-size: 1.4em;
	color: #000000;
}
#menu_box ul li a:hover {
	transition: opacity 0.2s 0s ease-out;
	opacity: 0.5;
}

#gnav_s{
	display: none;
	}

#nav_toggle{
	display: none;
}

#right_container {
	width: 15%;
	float: right;
	text-align: center;
	line-height: 35px;
}
#right_container a img {
	width: 20px;
	margin-right:5px;
}
#right_container a:hover {
	transition: opacity 0.2s 0s ease-out;
	opacity: 0.5;
}


@media (max-width: 768px){
	
#left_container {
	width: 100%;
}
#logo_box {
	width: 50%;
	float: right;
}

#logo_box a img {
	width: 80%;
	min-width: 150px;
}
#menu_box {
	width: 50%;
	float: left;
}
	
#menu_box ul {
	display:none;
}

#right_container {
	display: none;
}
	
	
/*ここからハンバーガーメニュー*/

#gnav_s{
		display: none;
		position: absolute;
		top:35px;
		width: 100%;
		background: linear-gradient(-135deg, #000000, #434343);
		left: 0;
		opacity:0.9;
	}
	#gnav_s ul{
		display: block;
		margin: 0 auto;
		width: 90%;
	}
	#gnav_s ul li{
		margin-left: 40px;
		text-align: left;
		font-size:1.8em;
		padding:25px 0;
		border-bottom: 1px dotted #F2F2F2;
	}
	#gnav_s ul li a{
		display: block; 
		color:#FFFFFF;
	}
	
	#gnav_s ul li:last-child{
		border: none;
	}

	#gnav_s ul li:last-child{
		margin-bottom: 10px;
	}

/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 30px;
		height: 30px;
		position: relative;
		top: 6px;
		margin-left: 5px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 2px;
		background: #000000;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:10px;
	}
	#nav_toggle span:nth-child(3){
		top:20px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 10px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 10px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}

}



/*--------------mainエリア------------*/

#hero_contaner {
	width: 100%;
}

/*---------------slide-------------------*/

/* パソコンで見たときは"item1"のclassがついた画像が表示される */
.item1 { display: block !important; }
.item2{ display: none !important; }

/* スマートフォンで見たときは"item2"のclassがついた画像が表示される */
@media only screen and (max-width: 580px) {
    .item1 { display: none !important; }
    .item2 { display: block !important; }
}


.slideBox_1{
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slideBox_2{
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* パソコンで見たときは"item1"のclassがついた画像が表示される */
.slideBox_1 { display: block !important; }
.slideBox_2{ display: none !important; }

/* スマートフォンで見たときは"item2"のclassがついた画像が表示される */
@media only screen and (max-width: 580px) {
    .slideBox_1 { display: none !important; }
    .slideBox_2 { display: block !important; }
}


/* imgのみ */
.item1 {
  opacity: 0;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 30s 0s infinite;
  animation: anime 30s 0s infinite;
}

.item1:nth-of-type(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.item1:nth-of-type(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}

.item2 {
  opacity: 0;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 30s 0s infinite;
  animation: anime 30s 0s infinite;
}

.item2:nth-of-type(2) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.item2:nth-of-type(3) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
	
/*------------slideここまで-------------------*/

wrapper{
	width: 100%;
}

/*------------概要---------------------------*/

#overView_contaner{
	width: 90%;
	margin: 0 auto;
	margin-top: 200px;
	margin-bottom: 200px;
}

.text_box_0{
	width: 70%;
	margin: 0 auto;
	padding: 50px 0;
	border-top: 1px solid #A4A4A4;
	border-bottom: 1px solid #A4A4A4;
}

.text_box_0 p{
	font-size: 2em;
	line-height: 45px;
	color: #000000;
	letter-spacing: 0.1em;
	text-align: center;
	/*text-indent: 1em;*/
}

.overView{
	font-family: 'Klee One', cursive;
	font-weight:bold;
}

.sp{
	margin: 15px 0;
}

@media (max-width: 768px){

#overView_contaner{
	width: 90%;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 100px;
}
	

.text_box_0{
	width: 100%;
	padding: 25px 0;
}

.text_box_0 p{
	font-size: 1.1em;
	line-height: 20px;
	color: #000000;
	letter-spacing: 0.1em;
}

.sp{
	margin: 5px 0;
}	
	
	
}


/*--------------セクションエリア----------*/

#section_area{
	width: 100%;
	background: linear-gradient(-135deg, #017590, #D4EEF4);
	padding: 250px 0 100px 0;
}

.section_contaner{
	width: 60%;
	margin: 0 auto;
	margin-bottom: 150px;
	background-color: #fff;
	box-shadow: 0px 0px 5px #BDBDBD;
}

.section_contaner:hover{
	transition:  0.2s 0s ease;
	width: 60.5%;
	height :60.5%;
	box-shadow: 0px 0px 10px #848484;
}

.img_box{
	width: 100%;
	margin: 0 auto;
	padding: 20px;
}

.img_box img{
	width: 100%;
}


@media (max-width: 768px){

#section_area{
	width: 100%;
	padding: 80px 0 50px 0;
}	
	
.section_contaner{
	width: 90%;
	margin: 0 auto;
	margin-bottom: 30px;
	background-color: #fff;
}

.img_box{
	width: 100%;
	margin: 0 auto;
	padding: 10px;
}

.img_box img{
	width: 100%;
}	
}

/*--------------moveエリア--------------*/

#move_area{
	width: 100%;
}

#move_area video{
	width: 100%;
	}

@media (max-width: 768px){
	
}


/*--------------稽古場エリア-----------*/
#keikoba_area{
	width: 100%;
	/*background-color: #f5f5f7;*/
	padding: 150px 0 100px 0;
}

.keikoba_contaner{
	width: 60%;
	margin: 0 auto;
	padding: 10px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 0px 10px #BDBDBD;
}

.text_box_2 {
	width: 100%;
	margin: 0 auto;
	margin: 5px 0px 15px 0px;
}

.gmap_box {
	width: 100%;
	text-align: center;
}
.gmap_box iframe {
	width: 100%;
	height: 600px;
}

.keikobi {
	font-size: 2em;
	padding-bottom: 20px;
	color:#000000;
	font-family: 'Klee One', cursive;
	font-weight:bold;
}

.keikobiRink {
	font-size: 2.5em;
	padding-bottom: 20px;
	color:#1877f2;
	font-family: 'Meiryo', cursive;
	font-weight:bold;
}
	
.keikobiRink a:hover{
	transition: opacity 0.2s 0s ease-out;
	opacity: 0.5;
	}

@media (max-width: 768px){
	
#keikoba_area {
	padding: 80px 0 50px 0;
}

.keikoba_contaner{
	width: 80%;
}	
	
.text_box_2 {
	margin-bottom: 5px;
}

.gmap_box iframe {
	height: 200px;
}
.keikobi {
	font-size: 1em;
	text-align: center;
	margin: 10px 0;
}
	
}
	
/*--------------footerエリア----------------*/
footer {
	background: #FFFFFF;
	width: 100%;
	/*height:500px;*/
	z-index: 99;
	box-shadow: 0px 0px 2px 0px #000;
}
#f_ikon_box {
	width: 10%;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
}
#f_ikon_box a img {
	width: 20px;
	margin: 0 3px;
}
#f_ikon_box a:hover {
	transition: opacity 0.2s 0s ease-out;
	opacity: 0.5
}
#f_nav_box {
	margin: 0 auto;
	width: 70%;
	padding-bottom: 20px;
}
#f_nav_box ul {
	text-align: center;
}
#f_nav_box ul li {
	display: inline;
	font-size: 1.2em;
	text-align: center;
	margin: 0 2%;
}
#f_nav_box ul li a {
	color: #000000;
}
#f_nav_box ul li a:hover {
	transition: opacity 0.2s 0s ease-out;
	opacity: 0.5;
}
#f_title_box {
	width: 15%;
	margin: 0 auto;
	padding-bottom: 0.5%;
}
#f_title_box a img {
	width: 100%;
}
#copy_box {
	width: 30%;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 1%;
}
small {
	color: #000000;
	width: 100%;
	font-size: 1em;
}
#right_area ul {
	vertical-align: bottom;
}

@media (max-width: 768px){
	
#f_ikon_box {
	width: 40%;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}
#f_ikon_box a img {
	width: 25px;
	margin:0 3px;
}

#f_nav_box ul {
	text-align: center;
}
#f_nav_box ul li {
	display: block;
	font-size: 1.6em;
	padding: 15px 0;
	border-bottom:1px dotted #D8D8D8;
	}
	
#f_nav_box ul li:last-child{
	border-bottom:none;
	padding-bottom:25px;
	}
	
#f_title_box {
	width: 150px;
	margin: 0 auto;
	padding-bottom: 7px;
}
	
#copy_box {
	width: 200px;
	padding-bottom: 20px;
}
small {
	font-size: 10px;
}
	
}


/*---------------rekishiページ----------------*/
.t_contaner{
	width: 100%;
	padding-top: 80px;
	margin-bottom: 200px;
}

.text_box_1 {
	width: 70%;
	padding-left: 30px;
	padding-bottom: 8px;
	border-bottom: 1px solid #A4A4A4;
}

.s_t_contaner{
	width: 100%;
	height: 150px;
	padding-left: 150px;
}

.s_t_box{
	margin: 0 auto;
	width: 100%;
	padding-bottom :5px;
	border-bottom: 1px dotted #A4A4A4;
}

.s_t_box:hover{
	transition: border 0.2s 0s ease-out;
	border-bottom: 1px solid #A4A4A4; 
}

.lastContent{
	margin-bottom: 100px;
}

/*---------------rekishi_1~18ページ----------------*/

.t_contaner_2{
	width: 100%;
	padding-top: 80px;
	margin-bottom: 60px;
}

.s_t_contaner_2{
	width: 100%;
	margin-bottom: 30px;
	padding-left: 150px;
}

.text_box_3 {
	width: 100%;
	margin: 0 auto;
	padding-left: 35px;
}

.sentence_contaner{
	width: 100%;
	margin-bottom: 225px;
}

.sentence_box {
	width: 80%;
	margin: 0 auto;
}
.sentence_content {
	font-family: 'Klee One', cursive;
	font-weight:lighter;
	font-size: 2em;
	letter-spacing: 0.1em;
	line-height: 150%;
	margin-bottom: 30px;
	color:#000000;
}

.p_turn_contaner{
	width: 100%;
	margin-bottom: 100px;
}

.p_turn_box{
	width: 300px;
	margin: 0 auto;
}

.p_turn_content{
	width: 100%;
	text-align: center;
}

.p_turn_content li{
	display: inline;
	margin: 0 15px;
}

.p_turn_content li a:hover{
	transition: opacity 0.2s 0s ease-out;
	opacity: 0.5
}

.f_size{
	font-size: 40px;
	color: #6694A7;
}

.pageCount{
	font-size: 20px;
	color: #A4A4A4;
	vertical-align: 7px;
}

.opacity_0{
	opacity: 0;
}

@media (max-width: 768px){
/*---------------rekishiページ----------------*/
.t_contaner{
	padding-top: 60px;
	margin-bottom: 70px;
}

.text_box_1 {
	width: 90%;
	padding-left: 10px;
	padding-bottom: 5px;
}

.s_t_contaner{
	width: 100%;
	height: 75px;
	padding-left: 80px;
}

.s_t_box{
	margin: 0 auto;
	width: 100%;
	padding-bottom :3px;
	border-bottom: 1px dotted #A4A4A4;
}

.lastContent{
	margin-bottom: 50px;
}	
	
/*---------------rekishi1~18ページ----------------*/	
.t_contaner_2{
	padding-top: 55px;
	margin-bottom: 30px;
}	

.s_t_contaner_2{
	margin-bottom: 20px;
	padding-left: 20px;
}	
	
.text_box_3 {
	width: 100%;
	margin: 0 auto;
	padding-left: 10px;
}
		
.sentence_contaner{
	margin-bottom: 125px;
}
		
.sentence_box {
	width: 90%;
}
.sentence_content {
	font-size: 1.2em;
	letter-spacing: 0em;
	margin-bottom: 15px;
	color:#000000;
}
	
.pageCount{
	font-size: 10px;
	vertical-align: 11px;
}
	
}

@media(min-width: 1900px){
	
.sentence_contaner{
	margin-bottom: 400px;
}
	
	
}


/*---------------mokutekiページ----------------*/

.sentence_contaner_mokuteki{
	width: 100%;
	margin-bottom: 100px;
}

.t_contaner_3{
	width: 100%;
	padding-top: 80px;
	margin-bottom: 100px;
}

.sentence_contentHeading{
	font-family: 'Klee One', cursive;
	font-weight:bolder;
	font-size: 2em;
	letter-spacing: 0.1em;
	line-height: 150%;
	margin: 100px 0 30px 0;
	color:#000000;
}

.sentence_contentRight_1{
	font-family: 'Klee One', cursive;
	font-weight:lighter;
	font-size: 2em;
	letter-spacing: 0.1em;
	line-height: 150%;
	margin-bottom: 50px;
	color:#000000;
	text-align: right;
}

.sentence_contentRight_2{
	font-family: 'Klee One', cursive;
	font-weight:lighter;
	font-size: 1.6em;
	letter-spacing: 0.1em;
	line-height: 150%;
	color:#000000;
	text-align: right;
}

@media (max-width: 768px){

.sentence_contaner_mokuteki{
	margin-bottom: 50px;
}

.t_contaner_3{
	padding-top: 80px;
	margin-bottom: 40px;
}

.sentence_contentHeading{
	font-size: 1.4em;
	margin: 50px 0 20px 0;
}

.sentence_contentRight_1{
	font-size: 1.2em;
	letter-spacing: 0em;
	margin-bottom: 30px;
}

.sentence_contentRight_2{
	font-size: 1em;
	letter-spacing: 0em;
}
	
	}


/*---------------keikokataページ----------------*/
.kataArea{
	background-color: #f5f5f7;
}

.kata_contaner{
	width: 800px;
	margin: 0 auto;
	margin-bottom: 175px;
}

.kata_contaner ul li{
	float: left;
}

.kata_box{
	width: 180px;
	height: 180px;
	position: relative;
	margin-left: 15px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 5px #BDBDBD;
}

.kata_img_box{
	width: 150px;
	position: absolute;
	left: -20px;
}

.kata_img_box img{
	width: 120px;
}

.kata_box:hover{
	transition:  0.2s 0s ease;
	box-shadow: 0px 0px 10px #848484;
}

.kata_content{
	width: 75px;
	position: absolute;
	bottom: 35px;
	right: 23px;
}

.kataTitle{
	font-size: 3.5em;
	color: #000000;
}

@media (min-width: 1900px){
	
.kata_contaner{
	margin-bottom: 350px;
}
	
}

@media (max-width: 768px){
	
.kata_contaner{
	width: 350px;
	margin-bottom: 80px;
	padding: 30px;
}

.kata_box{
	width: 120px;
	height: 120px;
	position: relative;
	margin-left: 15px;
	margin-bottom: 15px;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0px 0px 5px #BDBDBD;
}

.kata_img_box{
	width: 100px;
	position: absolute;
	left: -10px;
}

.kata_img_box img{
	width: 80px;
}
	
.kata_content{
	width: 50px;
	position: absolute;
	bottom: 30px;
	right: 15px;
}

.kataTitle{
	font-size: 2.5em;
}
}


/*---------------keikokata_1~4ページ----------------*/
.s_t_boxKeikokata{
	margin: 0 auto;
	width: 100%;
	/*padding-left: 60px;*/
	padding-bottom :10px;
	border-bottom: 1px dotted #ffffff;
}

.colorBrack{
	border-bottom: 1px dotted #424242;
}

.kata_contaner_1{
	width: 80%;
	margin: 0 auto;
	margin-top: 80px;
	margin-bottom: 50px;
}

.kata_type{
	text-align: center;
	font-family: 'Klee One', cursive;
	font-weight:bold;
	font-size: 3em;
	margin: 0 auto;
	color: #000000;
	margin-bottom: 30px;
}

.kata_name{
	text-align: center;
	margin: 0 auto;
	font-family: 'Klee One', cursive;
	font-weight:lighter;
	font-size: 2.5em;
	color: #000000;
	line-height: 50px;
}

.colorWhite{
	color: #ffffff;
}

.kata_turn_contaner{
	width: 100%;
	margin: 100px 0;
}

.kata_turn_box{
	width: 400px;
	margin: 0 auto;
}

.kata_turn_content{
	width: 100%;
	text-align: center;
}

.kata_turn_content li{
	display: inline;
	font-family: 'Klee One', cursive;
	font-weight:lighter;
	font-size: 20px;
	margin: 0 10px;
	padding: 0 5px;
}

.kata_turn_content li{
	color: #6E6E6E;
}

.kata_turn_content li a{
	color: #6E6E6E;
}

.mHover_black a:hover{
	transition: opacity 1.0s 0.5s ease-out;
	color: #000000;
}

.mHover_white a:hover{
	transition: opacity 1.0s 0.5s ease-out;
	color: #ffffff;
}

@media (max-width: 768px){

.kata_contaner_1{
	margin-top: 50px;
	margin-bottom: 100px;
}

.kata_type{
	font-size: 2.5em;
	margin-bottom: 20px;
}

.kata_name{
	font-size: 2em;
	line-height: 45px;
}

.colorWhite{
	color: #ffffff;
}

.kata_turn_content li{
	font-size: 1.5em;
}
	
}
