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

#g_navi ul {
	margin: 0 auto;
	padding: 0 3%;
	width: 94%;
	max-width: 960px; 
}
	#g_navi ul li {
		position: relative;
		display: inline-block;
		width: 20%;
	}
		#g_navi ul li a {
	 		display: block;
			padding: 17px 5%;
			width: 90%;
			color: #222;
			text-align: center;
			text-decoration: none;
		}

.cp_navi {
	background-color: #ffffff;
	border: 1px solid #dedede;
	border-radius: 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	color: #888888;
	display: block;
	margin: 1em 1%;
	overflow: hidden;
	width: 100%;
}
.cp_navi ul {
	margin: 0;
	padding: 0;
}
.cp_navi ul li {
	display: inline-block;
	list-style-type: none;
	-webkit-transition: all 0.2s;
	        transition: all 0.2s;
}
.cp_navi > ul > li > a > .caret {
	border-top: 4px solid #aaaaaa;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: '';
	display: inline-block;
	height: 0;
	width: 0;
	vertical-align: middle;
	-webkit-transition: color 0.1s linear;
	        transition: color 0.1s linear;
}
.cp_navi > ul > li > a {
	color: #aaaaaa;
	display: block;
	line-height: 56px;
	padding: 0 10px;
	text-decoration: none;
}
.cp_navi > ul > li:hover {
	background-color: rgb(218, 60, 65);
}
.cp_navi > ul > li:hover > a {
	color: rgb( 255, 255, 255 );
}
.cp_navi > ul > li:hover > a > .caret {
	border-top-color: rgb( 255, 255, 255 );
}
.cp_navi > ul > li > div {
	background-color: rgb(218, 60, 65);
	border-top: 0;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	display: none;
	margin: 0;
	opacity: 0;
	position: absolute;
	width: 165px;
	visibility: hidden;
	-webkit-transiton: opacity 0.2s;
	       transition: opacity 0.2s;
}
.cp_navi > ul > li:hover > div {
	display: block;
	opacity: 1;
	visibility: visible;
}
.cp_navi > ul > li > div ul > li {
	display: block;
}
.cp_navi > ul > li > div ul > li > a {
	color: #ffffff;
	display: block;
	padding: 12px 24px;
	text-decoration: none;
}
.cp_navi > ul > li > div ul > li:hover > a {
	background-color: rgba( 255, 255, 255, 0.1);
}

.parent {
    text-align: center;         /* 子要素を左右中央揃えにする */
    border: solid 0px;          /* 枠線指定 */
    padding:  20px;             /* 余白指定 */
	width: 100%;
}

.inline-block_test {
    display: inline-block;      /* インラインブロック要素にする */
    padding:  0px;             /* 余白指定 */
    height: 130px;              /* 高さ指定 */
}

.flex-container {
  display: flex;
  justify-content: center;
}

.inline-lock_test2{
	display: inline-block
}

.object-fit-img {
	width: 100%;
	height: 100%;
  object-fit: cover;
}

.img {
  object-fit: cover;
}

#container {
display: grid;
grid-template-rows: 33% 3px 33% 3px 33%;
grid-template-columns: 33% 0.5% 33% 0.5% 33%;
}

#container2 {
display: grid;
grid-template-columns: 33% 0.5% 33% 0.5% 33%;
}

#container2B {
display: grid;
grid-template-columns: 25% 25% 25% 25%;
}

#item2Ba {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

#item2Bb {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

#item2Bc {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
}

#item2Bd {
    grid-row: 1 / 2;
    grid-column: 4 / 5;
}

#item1 {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

#item1x2 {
    grid-row: 1 / 4;
    grid-column: 1 / 4;
}

#item2 {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
}

#item3 {
    grid-row: 1 / 2;
    grid-column: 5 / 6;
}

#item4 {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

#item5 {
    grid-row: 3 / 4;
    grid-column: 3 / 4;
}

#item6 {
    grid-row: 3 / 4;
    grid-column: 5 / 6;
}

#item7 {
    grid-row: 5 / 6;
    grid-column: 1 / 2;
}

#item8 {
    grid-row: 5 / 6;
    grid-column: 3 / 4;
}

#item9 {
    grid-row: 5 / 6;
    grid-column: 5 / 6;
}

#container3 {
display: grid;
grid-template-columns: 16.66% 16.66% 16.66% 16.66% 16.66% 16.66%;
}

#itemA {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

#itemB {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

#itemC {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
}

#itemD {
    grid-row: 1 / 2;
    grid-column: 4 / 5;
}

#itemE {
    grid-row: 1 / 2;
    grid-column: 5 / 6;
}

#itemF {
    grid-row: 1 / 2;
    grid-column: 6 / 7;
}

#container4 {
display: grid;
grid-template-columns: 49% 2% 49%;
}

.img_wrap{
	width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.img_wrap img{
  width: 100%;
  cursor: pointer;
  transition-duration: 0.5s;
}
.img_wrap img:hover{
  transform: scale(1.1);
  transition-duration: 0.5s;
}

#container5 {
display: flex;
		  justify-content: center;
}

#container5a {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

#boxB {
		display: grid;
    grid-template-rows: 60px;
	  min-width: 180px;
	background-color: #fff;
margin: 5px;
		border: 5px #fff solid;
	border-radius: 10px;
}

#boxBa {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #fff;
    grid-row: 1 / 2;
  	font-size: 20px;
			min-width: 150px;
		border: 1px #fff solid;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
} 

#boxA {
		display: grid;
    grid-template-rows: 100px 40px 40px;
	  min-width: 180px;
	background-color: #eee;
margin: 5px;
		border: 5px #eee solid;
	border-radius: 10px;
}

#boxA2 {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #fff;
    grid-row: 2 / 5;
    grid-column: 1 / 2;
  	font-size: 20px;
			min-width: 150px;
		border: 5px #eee solid;
	border-radius: 10px;
}

#boxA-a {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #fff;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  	font-size: 20px;
			min-width: 150px;
} 

#boxAa {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #fff;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  	font-size: 20px;
			min-width: 150px;
		border: 1px #eee solid;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
} 

#boxAb {
		display: flex;
	  align-items: center;
	  justify-content: center;
    background-color: #fff;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    font-size: 20px;
		min-width: 150px;
		border: 1px #eee solid;
} 

#boxAc {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #eee;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    font-size: 20px;
	  min-width: 150px;
} 

#box1 {
		display: grid;
    grid-template-rows: 60px 60px 60px;
	  min-width: 300px;
	background-color: #eee;
margin: 20px;
		border: 5px #eee solid;
	border-radius: 10px;
}

#box2 {
		display: grid;
    grid-template-rows: 60px 60px 60px;
	  min-width: 300px;
	background-color: #eee;
	margin: 20px;
		border: 5px #eee solid;
	border-radius: 10px;
}

#box3 {
		display: grid;
    grid-template-rows: 100px 100px 100px;
	  min-width: 300px;
	background-color: #eee;
	margin: 20px;
}

#box3a {
		display: grid;
    grid-template-rows: 100px 100px 100px;
	  min-width: 40%;
	background-color: #eee;
	margin: 20px;
}

#box3b {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #eee;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    font-size: 15px;
	  min-width: 200px;
} 

#box3c {
		display: grid;
    grid-template-rows: 100px 100px 100px;
	  min-width: 300px;
	background-color: #fff0f5;
	margin: 20px;
}

#box8 {
		display: grid;
    grid-template-rows: 100px 10px 100px 10px 100px 10px 100px;
	  grid-template-columns: 50% 50%;
	  min-width: 300px;
	margin: 20px;
}

#box8-1a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

#box8-1b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box8-2a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

#box8-2b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 3 / 4;
    grid-column: 2 / 3;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box8-3a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 5 / 6;
    grid-column: 1 / 2;
}

#box8-3b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 5 / 6;
    grid-column: 2 / 3;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box8-4a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 7 / 8;
    grid-column: 1 / 2;
}

#box8-4b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 7 / 8;
    grid-column: 2 / 3;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box7 {
		display: grid;
    grid-template-rows: 80px 120px 60px;
	  width: 100px;
	margin: 20px;
			border: 5px #eee solid;
	border-radius: 10px;
}

#box7-1 {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 4;
    grid-column: 1 / 2;
			border: 5px #eee solid;
	border-radius: 10px;
}

#box7-1a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

#box7-1b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
	    font-size: 20px;
		border: 5px #eee solid;
}

#box7-1c {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box7-2 {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 4;
    grid-column: 3 / 4;
}

#box7-2a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 2;
    grid-column: 3 / 4;
}

#box7-2b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 2 / 3;
    grid-column: 3 / 4;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box7-2c {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 3 / 4;
    grid-column: 3 / 4;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box7-3 {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 4;
    grid-column: 5 / 6;
}

#box7-3a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 2;
    grid-column: 5 / 6;
}

#box7-3b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 2 / 3;
    grid-column: 5 / 6;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box7-3c {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 3 / 4;
    grid-column: 5 / 6;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box7-4 {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 4;
    grid-column: 7 / 8;
}

#box7-4a {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #eee;
    grid-row: 1 / 2;
    grid-column: 7 / 8;
}

#box7-4b {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 2 / 3;
    grid-column: 7 / 8;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box7-4c {
		display: flex;
	  align-items: center;
	  justify-content: center;
		background-color: #fff;
    grid-row: 3 / 4;
    grid-column: 7 / 8;
		    font-size: 20px;
		border: 5px #eee solid;
}

#box4-1a {
		display: flex;
	  align-items: center;
	  justify-content: center;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

#box4-1b {
		display: flex;
	  align-items: center;
	  justify-content: center;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

#box4-1c {
		display: flex;
	  align-items: center;
	  justify-content: center;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
}

#box1a {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #fff;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  	font-size: 30px;
	border: 1px #eee solid;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
} 

#box1b {
		display: flex;
	  align-items: center;
	  justify-content: center;
    background-color: #fff;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    font-size: 30px;
		min-width: 200px;
		border: 1px #eee solid;
} 

#box1c {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #eee;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    font-size: 15px;
	  min-width: 200px;
} 

#box1c-1 {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #eee;
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    font-size: 20px;
	  min-width: 200px;
} 

#box1d {
		display: flex;
	  align-items: center;
	  justify-content: center;
	  background-color: #eee;
    grid-row: 1 / 4;
    grid-column: 1 / 2;
    font-size: 15px;
	  min-width: 200px;
} 

.boxA {
	display: flex;
	flex-direction: column;
	margin: 20px;
}

#container6 {
	display: grid;
	height: 60px;
	grid-template-columns: 33.3% 33.3% 33.3%;
}

#box2a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #FFEEFF;
	grid-row: 1 / 2;
	grid-column: 1 / 2;
	font-size: 20px;
}

#box2b {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #EEFFFF;
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	font-size: 20px;
}

#box2c {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #E6FFE9;
	grid-row: 1 / 2;
	grid-column: 3 / 4;
	font-size: 20px;
}

#box2d {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #E6FFE9;
	grid-row: 1 / 4;
	grid-column: 3 / 4;
	font-size: 20px;
}

#box2d {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	grid-row: 1 / 2;
	grid-column: 1 / 4;
	font-size: 20px;
	border: 1px #eee solid;
}

#container7 {
display: flex;
		  justify-content: center;
	
}

#box3 {
	min-width: 45%;
		padding: 20px;
margin: 10px;
}

#box4 {
	display: flex;
	align-items: center;
	justify-content: left;
	background-color: #666;
	height: 30px;
	padding: 10px;
	margin-bottom: 10px;
	font-size: 15px;
	color: white;
			border-top-right-radius: 30px;
}

#container8 {
display: flex;
		  justify-content: center;
	align-items: center;
background-color: #666;
	height: 540px;
	background:linear-gradient(to top left, #333, #666)
}

#container8 span {
	color: #fff;
}

#box5 {
	width: 350px;
		height: 470px;
		padding: 20px;
margin: 10px;
}

#box6 {
	display: flex;
	align-items: center;
	justify-content: left;
	background-color: #fff;
	height: 30px;
	padding: 10px;
	margin-bottom: 10px;
	font-size: 15px;
		border-top-right-radius: 30px;
}

#container10 {
	display: grid;
	grid-template-columns: 100%;
}

.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 20px;
  background: #e0edff;
		border-radius: 10px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

.balloon1 p {
  margin: 0;
  padding: 0;
}

#container2 {
display: grid;
grid-template-columns: 33% 0.5% 33% 0.5% 33%;
}

#containerdance1 {
display: grid;
grid-template-columns: 6% 39.5% 4% 44.5% 6%;
}

#boxdance1 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

#boxdance2 {
    grid-row: 1 / 2;
    grid-column: 4 / 5;
}

p.sample1 {margin-bottom: 10px;}
p.sample2 {margin-top: -2px;}
p.sample3 {margin-bottom: 50px;}
p.sample4 {margin-bottom: 30px;}

#containerdance2 {
display: grid;
grid-template-columns: 6% 21.25% 1% 21.25% 1% 21.25% 1% 21.25% 6%;
}

#boxdance3 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

#boxdance4 {
    grid-row: 1 / 2;
    grid-column: 4 / 5;
}

#boxdance5 {
    grid-row: 1 / 2;
    grid-column: 6 / 7;
}

#boxdance6 {
    grid-row: 1 / 2;
    grid-column: 8 / 9;
}

#containerdance3 {
display: grid;
grid-template-columns: 6% 28% 2% 28% 2% 28% 6%;
}

#boxdance7 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
}

#boxdance8 {
    grid-row: 1 / 2;
    grid-column: 4 / 5;
}

#boxdance9 {
    grid-row: 1 / 2;
    grid-column: 6 / 7;
}

#containercolor {
	  background: #f0f8ff;
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 20px;
}

#bgimage {
background-image: url(https://suma-dance.com/wp/wp-content/uploads/2021/04/dance-hp_beginner_bg3.jpg); 
	width: 100%;
		padding-top: 20px;
	padding-bottom:20px;
	border-radius: 20px;
}

body {
font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
color:#630;
line-height:25px;
font-size:0.95em;
}

#sumakitacontainer1 {
display: grid;
grid-template-columns: 48% 4% 48%;
}

#sumakitaA {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
}

#sumakitaB {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
}




/* クラスコンテンツ */

.sumadance-class{
margin-bottom:50px;
}

.sumadance-class-contents-title{
display:flex;
justify-content:center;
align-items:center;
text-align:center;
width:100%;
padding:10px 30px;
background-color:#999;
color:#fff;
font-size:20px;
margin-bottom:15px;
}

.sumadance-class-contents1{
display:flex;
flex-flow:column;
justify-content:center;
margin-bottom:50px;
}

.sumadance-class-contents1 span{
display:flex;
text-align:justify;
font-size:17px;
line-height:1.8em;
padding:0;
margin-bottom:15px;
}



/* 講師 */

.sumadance-class-instructor ul{
display:flex;
flex-flow:row;
justify-content:space-between;
width:100%;
height:350px;
margin-bottom:25px;
list-style:none;
padding-left:0;
}

.sumadance-class-instructor ul li:first-child{
display:flex;
justify-content:center;
align-items:center;
text-align:center;
width:40%;
}

.sumadance-class-instructor ul li:first-child img{
object-fit:cover;
width:100%;
height:300px;
}

.sumadance-class-instructor ul li:last-child{
display:flex;
flex-flow:column;
width:60%;
font-weight:700;
padding:0px 0px 0px 30px;
margin:auto;
}

.sumadance-class-instructor li a:first-child{
align-items:center;
color:#333;
font-size:24px;
font-weight:700;
}

.sumadance-class-instructor li a{
text-align:justify;
color:#333;
font-size:17px;
font-weight:400;
line-height:1.7em;
}

.sumadance-class-instructor li a:last-child{
}



/* イントラプロフィール */

.sumadance-modal_wrap input {
display: none;
}

.sumadance-modal_overlay {
display: flex;
justify-content: center;
overflow: auto;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
opacity: 0;
transition: opacity 0.5s, transform 0s 0.5s;
transform: scale(0);
}

.sumadance-modal_trigger {
position: absolute;
width: 100%;
height: 100%;
}

.sumadance-modal_content {
align-self: center;
width: 60%;
padding: 30px 30px;
box-sizing: border-box;
background: #fff;
line-height: 1.4em;
transition: 0.5s;
}

.close_button {
position: absolute;
top: 14px;
right: 16px;
font-size: 18px;
cursor: pointer;
}

.sumadance-modal_wrap input:checked ~ .sumadance-modal_overlay {
opacity: 1;
transform: scale(1);
transition: opacity 0.5s;
}

.sumadance-modal_wrap input:checked ~ .sumadance-modal_overlay .sumadance-modal_content {
transform: translateY(20px);
}

.open_button {
color: #4f96f6;
background-color: #eeeeee;
font-weight: bold;
text-align: center;
cursor :pointer;
transition: all 0.3s;
display: block;
margin-top: 15px;
margin-bottom: 15px;
padding: 12px 2px;
width:100%;
text-decoration: none;
}

.open-button:active {
-webkit-transform: translateY(2px);
transform: translateY(2px);

}

.open-button:after {
font-family: "Font Awesome 5 Free";
content: "\f2d0";
padding-left: 8px;
}

.open-button:hover {
color: #FFFFFF;
background-color: #4f96f6;
transition: .6s;
}

.sumadance-instructor-profile{
display:flex;
flex-wrap:wrap;
}

.sumadance-instructor-profile-photo{
width:30%;
padding-right:25px;
}

.sumadance-instructor-profile-photo img{
object-fit:cover;
width:100%;
}

.sumadance-instructor-profile-text{
display:flex;
flex-flow:column;
width:70%;
font-size:18px;
line-height:1.7em;
letter-spacing:0.05em;
}

.sumadance-instructor-profile-text ul{
display:flex;
flex-wrap:wrap;
list-style:none;
padding-left:0;
}

.sumadance-instructor-profile-text ul li:first-child{
width:150px;
}

.sumadance-instructor-profile-text ul li:last-child{
display:flex;
align-items:center;
margin-left:20px;
padding:3px;
}

.sumadance-instructor-profile-text ul li a{
display:flex;
justify-content:center;
background-color:#333;
width:100%;
text-align:center;
padding:3px;
font-size:15px;
color:#fff;
}




/* クラス紹介 */

.sumadance-class-time{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
margin-bottom:50px;
}

.sumadance-class-time-title{
display:flex;
flex-flow:row;
justify-content:center;
text-align:center;
width:100%;
border-bottom:solid 1px #333;
color:#333;
padding:25px 0px;
margin-top:50px;
margin-bottom:25px;
font-size:24px;
font-weight:700;
}

.sumadance-class-time-title a{
display:flex;
justify-content:center;
align-items:center;
text-align:center;
font-size:17px;
font-weight:400;
color:#333;
margin-left:10px;
}

.sumadance-class-time ul {
display:flex;
flex-flow:column;
list-style:none;
width:49%;
border:solid 5px #0064ff;
margin-bottom:15px;
padding-left:0;
}

.sumadance-class-time ul li{
display:flex;
flex-flow:row;
justify-content:center;
font-weight:700;
line-height:1.3em;
text-align:center;
width:100%;
padding:25px 20px;
font-weight:700;
color:#333;
margin:0;
}

.sumadance-class-time ul li:first-child{
text-align:center;
justify-content:center;
width:100%;
padding:10px 0px;
background-color:#0064ff;
font-size:18px;
line-height:1.3em;
letter-spacing:0.05em;
font-weight:400;
color:#fff;
}

.sumadance-class-time ul li:last-child{
display:flex;
height:250px;
padding:0px 20px 20px 20px;
}

.sumadance-class-time ul li:last-child img{
object-fit:cover;
width:100%;
height:100%;
}

.sumadance-class-time ul li a{
display:flex;
justify-content:center;
align-items:center;
text-align:center;
width:60%;
font-size:19px;
font-weight:700;
color:#333;
margin:auto;
}



.sumadance-class-time ul li a:last-child{
border-left:solid 1px #999;
}

.sumadance-class-time ul li a:last-child{
width:40%;
font-size:17px;
font-weight:400;
color:#333;
}



/* クラス写真 */

.sumadance-class-image{
display:flex;
width:100%;
}

.sumadance-class-image ul{
display:flex;
flex-flow:row;
width:100%;
list-style:none;
padding-left:0;
}

.sumadance-class-image ul li{
display:flex;
width:33%;
margin-right:15px;
}

.sumadance-class-image ul li:last-child{
margin-right:0px;
}

.sumadance-class-image ul li img{
object-fit:cover;
width:100%;
height:auto;
}
  
.sumakita-br{
display:none;
}


/* イントラメニュー */


.sumadance-instructor-menu{
display:flex;
width:950px;
max-width:100%;
margin:auto;
}

.sumadance-instructor-menu ul{
display:flex;
flex-wrap:wrap;
justify-content:flex-start;
width:100%;
list-style:none;
padding-left:0;
margin:auto;
}

.sumadance-instructor-menu ul li{
width:88px;
min-width:14.28%;
height:180px;
padding:1px;
margin:3px 0px;
}


.sumadance-instructor-menu ul li img{
object-fit:cover;
width:100%;
height:130px;
}


.sumadance-instructor-menu ul li span{
display:flex;
flex-flow:column;
justify-content:center;
align-items:center;
text-align:center;
width:100%;
height:50px;
bottom:0;
background-color:#333;
color:#fff;
font-size:12px;
line-height:15px;
letter-spacing:0.05em;
padding:auto;
}

/* YouTube */

.sumakita-youtube{
	display:flex;
	justify-content:center;
	margin:auto;
	width:1080px;
	max-width:95%;
	height:607px; 
}


/* スマホ */

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


/* YouTube */

	.sumakita-youtube{
	height:300px; 
}
	
	
/* 講師 */
	
	
	.sumadance-class-instructor ul{
	flex-flow:column;
		height:auto;
		
	}

	.sumadance-class-instructor ul li{
		text-align:center;
		margin:auto;
	}
	
.sumadance-class-instructor ul li:first-child{
width:100%;
	margin-bottom:20px;
}

.sumadance-class-instructor ul li:last-child{
width:100%;
padding:0px 10px;
}

.sumadance-class-instructor li a:first-child{
font-size:17px;
}

.sumadance-class-instructor li a{
text-align:center;
	font-size:14px;
}

.sumadance-class-instructor li a:last-child{
text-align:justify;
	font-size:16px;
}



/* イントラプロフィール */
	
.sumadance-modal_content {
width: 90%;
padding: 15px 15px;
}

.sumadance-instructor-profile-photo{
width:100%;
height:200px;
padding-right:0;
padding-bottom:25px;
margin-bottom:25px;
}

.sumadance-instructor-profile-photo img{
height:200px;
}

.sumadance-instructor-profile-text{
width:100%;
font-size:16px;
line-height:1.4em;
letter-spacing:0.02em;
}

.sumadance-instructor-profile-text ul{
}

.sumadance-instructor-profile-text ul li:first-child{
width:34%;
}

.sumadance-instructor-profile-text ul li:last-child{
width:60%;
text-align:justify;
margin-left:7px;
padding:2px;
}

.sumadance-instructor-profile-text ul li a{
width:100%;
padding:2px;
font-size:12px;
}

.sumadance-modal_content {
margin-top:200px;
}
	
	
	
/* クラスコンテンツ */

.sumadance-class-contents-title{
width:100%;
}

.sumadance-class-contents1 span{
font-size:14px;
}

.sumadance-class-time ul {
width:100%;
}

.sumadance-class-time ul li a:last-child{
font-size:14px;
}

.sumadance-class-image ul li{
margin-right:5px;
}

.sumakita-br{
display:block;
}
	
.sumadance-instructor-menu ul li span{
font-size:12px;
line-height:14px;
letter-spacing:0.05em;
}

}


/* ダンススケジュール */
.sumadance-schedule{
display:flex;
flex-flow:column;
justify-content:center;
margin:auto;
}

.sumadance-schedule-week{
display:flex;
justify-content:center;
align-items:center;
width:1200px;
max-width:100%;
}

.sumadance-schedule-day{
width:10%;
margin-right:15px;
}

.sumadance-schedule-week ul{
display:flex;
flex-flow:column;
width:90%;
list-style:none;
margin:0;
padding:0;
}

.sumadance-schedule-week ul li{
display:flex;
width:100%;
}

.sumadance-schedule-week ul li:first-child{
}

.sumadance-schedule-week ul li a{
width:25%;
padding-right:10px;
}

.sumadance-schedule-week ul li a:last-child{
}

.sumadance-schedule-week ul li img{
width:100%;
}

.sumadance-schedule-line1{
border-bottom:solid 5px #f5f5f5;
padding:0px;
margin:10px 0px;
}

.sumadance-schedule-line2{
border-bottom:solid 15px #f5f5f5;
padding:0px;
margin:25px 0px;
}



/* スマホ */

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

/* ダンススケジュール */
.sumadance-schedule{
}

.sumadance-schedule-week{
}

.sumadance-schedule-day{
width:6%;
margin-right:5px;
}

.sumadance-schedule-week ul{
width:94%;
}

.sumadance-schedule-week ul li{
display:flex;
width:100%;
}

.sumadance-schedule-week ul li:first-child{
}

.sumadance-schedule-week ul li a{
padding-right:3px;
}

.sumadance-schedule-week ul li a:last-child{
}

.sumadance-schedule-week ul li img{
}

.sumadance-schedule-line1{
border-bottom:solid 3px #f5f5f5;
margin:5px 0px;
}

.sumadance-schedule-line2{
border-bottom:solid 6px #f5f5f5;
margin:5px 0px;
}


}



.sumadance-instructor-title{
font-size:30px;
margin:30px auto;
font-weight:600;
line-height:1.5em;
text-align:center;
}

.sumadance-instructor-title span{
font-size:20px;
margin:auto;
}

.sumadance-instructor-pickup{
display:flex;
flex-flow:column;
margin:25px auto;
justify-content:center;
width:900px;
max-width:98%;
}

.sumadance-instructor-pickup a{
margin:25px auto;
text-align:center;
font-size:24px;
font-weight:600;
color:#333;
}

.sumadance-instructor-pickup ul{
display:flex; flex-flow:row;
list-style:none; padding-left:0;
font-size:17px;
justify-content:center;
}

.sumadance-instructor-pickup ul li{
display:flex;
flex-flow:column;
justify-content:center;
align-items:center;
font-size:17px;
font-weight:500;
width:25%;
border-left:solid 1px #333;
padding:5px;
text-align:center;
vertical-align:middle;
margin:auto;
line-height:2em;
text-align:justify;
}

.sumadance-instructor-pickup ul li img{
width:30%;
margin:auto auto 10px auto;
}

.sumadance-instructor-pickup ul li span{
font-size:27px;
font-weight:600;
}

.sumadance-instructor-pickup ul li:first-child{
border-left:none;
}

.sumadance-instructor-faq{
display:flex;
flex-flow:column;
margin:auto;
width:900px;
max-width:95%;
padding:30px 50px;
border-radius:15px;
border:solid 2px #333;
font-size:30px;
font-weight:600;
}


.sumadance-instructor-faq ul{
display:flex;
flex-flow:column;
justify-content:flex-start;
margin:auto;
width:100%;
list-style:none;
padding-left:0;
}

.sumadance-instructor-faq ul li{
display:flex;
flex-flow:column;
font-size:17px;
margin-top:15px;
line-height:1.7em;
font-weight:500;
}

.sumadance-instructor-faq ul li:first-child{
margin-top:30px;
}

.sumadance-instructor-faq ul li span{
font-size:20px;
font-weight:600;
}



.sumadance-instructor-message{
text-align:justify;
color:#333;
font-size:17px;
line-height:1.7em;
width:900px;
max-width:100%;
margin:30px auto 100px auto;
padding:30px 50px;
border-radius:15px;
border:solid 2px #333;
}

.sumadance-instructor-message ul{
display:flex;
flex-flow:column;
list-style:none;
padding-left:0;
}

.sumadance-instructor-message ul li{
margin:15px auto auto 0px;
}

.sumadance-instructor-message ul li a{
font-size:20px;
font-weight:600;
color:#333;
border-bottom:solid 1px #333;
padding-bottom:10px;
line-height:3.5em;
}




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

.sumadance-instructor-title{
font-size:24px;
}

.sumadance-instructor-title span{
font-size:17px;
}

.sumadance-instructor-pickup ul li{
font-size:14px;
padding:2px;
line-height:1.5em;
}

.sumadance-instructor-pickup ul li span{
font-size:16px;
}

.sumadance-instructor-faq{
padding:30px 20px;
}

.sumadance-instructor-message{
padding:20px;
}

}