﻿@charset "utf-8";

/*google fontsの読み込み*/
@import url('https://fonts.googleapis.com/css?family=Poiret+One&display=swap');

/*slide.cssの読み込み*/
@import url(slide.css);


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background-image: url(../images/4.jpg) no-repeat center center;	
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,input,textarea {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: #32CD32;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container。サイト全体を囲むブロック
---------------------------------------------------------------------------*/
/*containerブロック共通*/
#container {
	position: fixed;
	width: 100%;
	height: 100%;
}
/*company.htmlの背景画像指定*/
.timetable #container {
	background: url(../images/4.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/4.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*works.htmlの背景画像指定*/
.instructor0 #container {
	background: url(../images/4.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/4.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*link.htmlの背景画像指定*/
.system #container {
	background: url(../images/4.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/4.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*contact.htmlにも背景画像を指定したい場合は、以下にスタイルを追加して下さい。*/
.event #container {
	background: url(../images/4.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/4.jpg) no-repeat center center / cover;
}
/*works2.htmlの背景画像指定*/
.rentalspace #container {
	background: url(../images/4.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/4.jpg) no-repeat center center / cover;	/*背景画像*/
}
/*works3.htmlの背景画像指定*/
.information #container {
	background: url(../images/4.jpg) no-repeat center center;	/*背景画像（※IE8以下の古いブラウザ用）*/
	background: url(../images/4.jpg) no-repeat center center / cover;	/*背景画像*/
}

/*contentsブロック
---------------------------------------------------------------------------*/
#contents {
	height: 100%;
	width: 100%;
}
/*トップページのcontentsブロック。Whats's Newブロックの表示箇所です。*/


/*header（大きな端末用：左ブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header.pc {
	position: fixed;	/*スクロールしても固定表示させる指定*/
	left: 0px;
	top:0px;
	z-index: 100;
	width: 100px;		/*幅*/
	height: 100%;		/*高さ*/
	border-right: 1px solid #32CD32;	/*右側の線の幅、線種、色*/
	transition: 1s;	/*hove時に１秒かけて動く*/
	background-color: rgba(50,205,50,0.5);	/*背景色68,141,179は、リンクカラーをrgb値にしたもの。0.5は色が50%出た状態。*/
}
/*マウスオン時のheaderブロック*/
header.pc:hover {
	width: 20%;	/*幅*/
	overflow: auto;	/*ウィンドウの高さよりコンテンツが増えた場合に切れないように自動でスクロールバーを出す設定*/
	background-color: #000;	/*背景色（古いブラウザ用）*/
	background-color: rgba(50,205,50,0.5);	/*背景色68,141,179は、リンクカラーをrgb値にしたもの。0.5は色が50%出た状態。*/
}
/*ロゴ画像ブロック*/
header.pc .logo {
	text-align: center;	/*内容をセンタリング*/
	border-bottom: 1px solid #32CD32;	/*下線の幅、線種、色*/
	height: 100px;	/*高さ*/
    position: relative;
}
header.pc .logo img {
	width: 100px;	/*画像の幅。マウスオン時に同じ大きさを保つ為。*/
    background-position: center;
}
/*header内のp(段落)タグ*/
header.pc p {
	padding: 10px;	/*余白*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	font-size: 12px;	/*文字サイズ*/
	position: relative;
}
#menubar li a {
	display:  block;text-decoration: none;
	border-bottom: 1px solid #32CD32;	/*下線の幅、線種、色*/
	width: auto;	/*幅*/
	height: 100px;	/*高さ*/
	padding-left: 100px;	/*左に空ける余白*/
}
/*マウスオン時*/
header:hover #menubar li a:hover {
	background-color: #32CD32;	/*背景色*/
	color: #fff;				/*文字色*/
}
/*現在表示中メニュー（current）*/
#menubar li.current a {
	background-color: rgba(50,205,50,0.5);	/*背景色68,141,179は、リンクカラーをrgb値にしたもの。0.5は色が50%出た状態。*/
}
/*テキスト*/
#menubar li a span {
	display: none;	/*通常時は非表示*/
}
/*マウスオン時のテキスト*/
header:hover #menubar li a span {
	display: block;	/*表示させる*/
	padding-top: 40px;	/*上に空ける余白。上下のバランスをとります。*/
	color: #fff;				/*文字色*/
}
/*メニュー用アイコン設定（menu1〜memu4までの共通設定）*/
.menuimg a {
	width: 60px;	/*幅*/
	height: 60px;	/*高さ*/
	display: inline-block;
	background-image: url(../images/icon.png);	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-size: 100px 700px;	/*実際のアイコン画像（icon.png）全体の大きさの幅、高さのそれぞれ「半分」。解像度を高くするため半分の数字にしています。*/
}
/*menu1*/
.menu1 a {
	background-position: 0px 5px;		/*背景画像の左から20px、上から20pxの部分を読み込む指定*/
}
/*menu2*/
.menu2 a {
	background-position: 0px -100px;	/*背景画像の左から20px、上から-40px（上のmenu1の20からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu3*/
.menu3 a {
	background-position: 0px -200px;	/*背景画像の左から20px、上から-100px（上のmenu2の-40からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu4*/
.menu4 a {
	background-position: 0px -300px;	/*背景画像の左から20px、上から-160px（上のmenu3の-100からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu5*/
.menu5 a {
	background-position: 0px -400px;	/*背景画像の左から20px、上から-220px（上のmenu1の-160からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu6*/
.menu6 a {
	background-position: 0px -500px;	/*背景画像の左から20px、上から-280px（上のmenu1の-160からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*menu7*/
.menu7 a {
	background-position: 0px -600px;	/*背景画像の左から20px、上から-40px（上のmenu1の20からアイコンの高さ分の60をずらした）の部分を読み込む指定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*facebookやtwitterなどのアイコンブロック
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	text-align: center;	/*内容をセンタリング*/
	border-bottom: 1px solid #32CD32;	/*下線の幅、線種、色*/
	padding: 10px 0;	/*上下、左右への余白*/
}
/*アイコン１個あたりの設定*/
header .icon li {
	display: inline;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 20%;		/*画像の幅*/
}

/*mainブロック
---------------------------------------------------------------------------*/
/*アニメーション設定------------------------*/
/*@keyframes main {
/*0コマ目*/
/*0% {
	opacity: 0;
	top: 20px;
}
/*100コマ目*/
/*100% {
	opacity: 1;
	top: 0px;
}
}
/*mainブロック*/
#main {
	overflow: auto;
	padding: 2% 5% 0 15%;		/*上、右、下、左へのブロック内の余白*/
	height: 100%;				/*高さ*/
	/*animation-duration: 0.5S;	/*アニメーションの実行時間。秒。*/
	/*animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを、完了後は最後のキーフレームを維持する*/
	/*animation-name: main;		/*上のアニメーション設定で使っているkeyframesの名前。contents。*/
	/*animation-delay: 0.8s;		/*アニメーションを遅れて開始させる指定。0.5sは0.5秒の事。*/
	position: relative;
}

#main h1.toph1 {
	font-family: 'Poiret One';	/*冒頭のgoogle fontsの指定*/
    text-align: center;
    padding-bottom: 5%;
    font-size: 60px;	
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	color: #32CD32;
    margin-top: 30px;
}


/*slider部分*/
.slider { 
    max-width: 80%;
    margin: 0 auto;
    padding-bottom: 10%;
}
.slider img{ 
    width: 100%;
    height: auto;
}

.topic{
	width: 80%;
	height: auto;
	margin: 0 auto 5%;
}
.topic h3{
	font-weight: 800;
	background-color: #ffbf48;
}
.topic p{
	font-size: 1.5em;
}



/*#calender{
    margin-bottom: 5%;
}

/*h2タグ*/
#main h2 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 24px;		/*文字サイズ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定*/
	color: #32CD32;			/*文字色*/
	text-shadow: 1px 1px 2px #fff;	/*テキストの影。右へ、下へ、ぼかし幅、色。*/
}
/*h2タグの１文字目への指定*/
#main h2::first-letter {
	border-left: 3px solid #32CD32;	/*左の線の幅、線種、色*/
	padding-left: 20px;				/*線と文字の間の余白*/
}
/*h2タグにclass="title"をつけたタイプ。大見出し。*/
#main h2.title {
	font-family: 'Poiret One';	/*冒頭のgoogle fontsの指定*/
	font-size: 60px;			/*文字サイズ*/
	margin-bottom: 40px;		/*見出しの下に空けるスペース*/
	border-bottom: 1px solid #32CD32;	/*下線の幅、線種、色*/
}
#main h2.title::first-letter {
	border-left: none;
	padding-left: 0;
}
/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
#main h2.title span {
	display: block;
	font-size: 15px;	/*文字サイズ*/
	float: right;		/*右に回り込み*/
	margin-top: 60px;	/*上に空ける余白。上下のバランスをここでとります。*/
}
/*h3タグ*/
#main h3 {
	clear: both;
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
	font-size: 20px;		/*文字サイズ*/
}
/*段落(p)タグ*/
#main p {
	padding: 0 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#main p + p {
	margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
	margin-top: -10px;
}
#main section + section {
	clear: both;
	padding-top: 40px;
}


/*timetable---------------------------------*/
.box .studio{
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.studio div{
    width: 45%;
    height: auto;
}

.left{
    float: left;
    position: relative;
}

.studio .left span{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #32CD32;
    color: #fff;
    padding: 5px;
    font-size: 15px;
}

.right{
    float: right;    
    position: relative;
}

.studio .right span{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #32CD32;
    color: #fff;
    padding: 5px;
    font-size: 15px;
}

.box .timetable00{
    padding: 5% 0 0;
    margin: 0 auto;
    width: 90%;
    display: block;
}
.timetable00 a{
    display: block;
}




/*listブロック（works.htmlで使用）
---------------------------------------------------------------------------*/
.instructor{
    overflow: hidden;
    max-width: 1120px;
    padding: 30px 0;
    margin: 0 auto;
}
.instructor div{
    float: left;
    display: block;
    width: 14.2%;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 1%;
}
.instructor div a{
    display: inline-block;
}

#main .instructor div img{
	width:100%;
	display:block;
}

.instructor ul{
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10%;
    background-color: #000;
    height: 90%;
}
.instructor ul .name{
    font-size: 18px;
    padding-top: 5%;
}
.instructor li{
    text-align: center;
    font-size: 1em;
    color: #fff;
}
/*event-----------------------------*/

section.event2{
	width:80%;
	margin: 0 auto;
}
section.event2 div{
	display: block;
	padding: 5%;
	text-align:center;
}

section.event2 div a{
	display: inline-block;
}
section.event2 div img{
	width:100%;
	display:block;
}
/*getlady-----------------------------*/

section.get1 ,
section.get2{
	width:80%;
	margin: 0 auto;
}
section.get1 div{
	display: block;
	padding: 5%;
	text-align:center;
}
section.get2 div{
	text-align:center;
}

section.get1 .gl{
	width: 60%;
	margin: 0 auto;
}

section.get1 div img{
	width:100%;
	display:block;	
}

#main section.get1 p{
	font-size:1.5em;
	padding:0 10px;
	display:inline-block;
	background-color:rgba(255,165,0);
	color:#fff;
	font-weight: bold;
}

#main section.get2 p{
	padding:0;
	text-align:center;
}

#main section.get2 div{
	margin-bottom:5%;
}
#main section.get2 ul{
	margin-bottom:2%;
}
#main section.get2 .redbold{
	font-size:1.5em;
	font-weight: bold;
	color:red;
}
#main section.get2 .red{
	font-size:1.2em;
	color:red;
}
#main section.get2 .lady1 h3{
	font-size:2.5em;
	font-weight: bold;
	text-align: center;
	margin-bottom: 0;
}
#main section.get2 .lady1 p{
	font-size:1.5em;
	font-weight: bold;
}
#main section.get2 .bold{
	font-size:1.2em;
	font-weight: bold;
}
#main section.get2 .lady2 p{
	font-size:2em;
	font-weight: bold;
	text-align: center;
	color: #ff0000;
}

#main section#yosen{
	padding-top: 0;
}
.yosen .tobutton1{
    width: 90%;
    margin: 0 auto;
}
.yosen .tobutton1 div{
    margin: 1% auto;
    width: 50%;
}
.yosen .tobutton1 div a{
    text-align: center;
    display: block;
    font-size: 1.3em;
}
.yosen p{
	text-align: center;
}
.btn-square-pop {
	position: relative;
	display: inline-block;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #FFF;
	background: #fd9535;/*背景色*/
	border-bottom: solid 2px #d27d00;/*少し濃い目の色に*/
	border-radius: 4px;/*角の丸み*/
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
	font-weight: bold;
  }
  
 .btn-square-pop:active {
	border-bottom: solid 2px #2c96cf;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
  }

  .btn-square-pop:hover{
	background: #fd9535;
	color: #000;
}

  .btn-square-pop1 {
	position: relative;
	display: inline-block;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #fff;
	background: #448db3;/*背景色*/
	border-bottom: solid 2px #0B2AA;/*少し濃い目の色に*/
	border-radius: 4px;/*角の丸み*/
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
	font-weight: bold;
  }
  
 .btn-square-pop1:active {
	border-bottom: solid 2px #0B2AA;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
  }

  .btn-square-pop1:hover{
	background: #448db3;
	color: #000;
}



/*maebaru-----------------------------*/

section.maebaru1{
	width:80%;
	margin: 0 auto;
}
section.maebaru2 ,
section.maebaru3 ,
section.maebaru4{
	width:90%;
	margin:0 auto;
}
section.maebaru1 div{
	width:80%;
	display: block;
	padding: 5%;
	margin:0 auto;
}
section.maebaru2 div{
	text-align:center;
}

section.maebaru1 div img{
	width:100%;
	display:block;	
}

#main section.maebaru2 p{
	padding:0;
	text-align:center;
}
#main .maebaru2 .maebaru12 p{
    font-size: 1.2em;
}

#main section.maebaru2 div{
	margin-bottom:7%;
}
#main section.maebaru2 ul{
	margin-bottom:5%;
}
#main section.maebaru2 .redbold{
	font-size:1.3em;
	font-weight: bold;
	color:red;
}
#main section.maebaru2 .red{
	font-size:1.2em;
	color:red;
}
#main section.maebaru2 .maebaru11 p{
	font-size:1.5em;
	font-weight: bold;
	line-height:1.5;
}
#main section.maebaru2 .bold{
	font-size:1.2em;
	font-weight: bold;
    margin-top: 50px;
}


#main section.maebaru4 .entry p{
	font-size:1.5em;
	padding:0 10px;
	display:inline-block;
	background-color:rgba(50,205,50);
	color:#fff;
	font-weight: bold;
	line-height:1.5;
}
section.maebaru4  div{
	display: block;
	text-align: center;
	padding-bottom:20px;
}
section.maebaru3{
	padding: 10% 0 5%;
	overflow: hidden;
}
#main section.maebaru3 span{
	width:15%;
	padding:0 2% 0 3%;
	float:left;
	display: block;
}
#main section.maebaru3 span a{
	display: block;
}

/*0216---------------------------------------------------*/
#main section .lady1 p{
	font-size:1.5em;
	font-weight: bold;
	padding: 0;
	text-align:center;
}
#main section.maebaru00{
	width: 90%;
	margin: 0 auto;
	padding:0;
}

#main section.maebaru00{
	width: 90%;
	margin: 0 auto;
	padding:0;
}

#main section.maebaru00 div{
	margin: 8%;
	text-align: center;
}
#main section.maebaru00 p{
	text-align: center;
    padding-left: 0;
    padding-right: 0;
}

#main section.maebaru4 .entry01 p{
	font-size:2em;
	padding:0 10px;
	display:inline-block;
	background-color:rgba(50,205,50);
	color:#000;
	font-weight: bold;
	line-height:1.5;
}

.btn-circle-stitch {
  display: inline-block;
  text-decoration: none;
  background: #FFA500;
  color: #FFF;
  width: 70%;
  line-height: 3;
  text-align: center;
  font-size:2em;
  overflow: hidden;
  box-shadow: 0px 0px 0px 5px #FFA500;
  border: dashed 1px #FFF;
  transition: .4s;
}

.btn-circle-stitch:hover {
  background: #000;
  box-shadow: 0px 0px 0px 5px #32CD32;
}



/*system-----------------------------*/

.systemtb .nyukai ,
.systemtb .nenkai ,
.systemtb .taiken ,
.systemtb .gessha ,
.systemtb .bijita ,
.systemtb .ticket{
    margin-bottom: 15px;
    overflow: hidden;
}

.page{
    width: 20%;
    float: left;
    padding-left: 15%;
    font-size: 1.5em;
}
.pagete{
    width: 65%;
    float: left;
    font-size: 1.5em;
}
#main .page p {
    display: inline-block;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid;
}
#main .pagete p{
    padding: 0 20px;
}
#main .pagete .syskome{
    font-size: 14px;
    padding: 0 0 0 5%;
}
#main .lastte{
    padding: 5% 0 0 15%;
    font-size: 15px;
}



/*rental space-----------------------*/

 .rentalimg{
	width: 100%;
	height: auto;
	overflow : hidden;
}

.rentalimg .reimg{
	float: left;
	width: 45%;
	padding-left: 3%;
	padding-right: 2%;
}

.reimg img{
	width: 100%;
}
 
.rentalimg .naiyou{
	float: left;
	width: 45%;
	padding-left: 3%;
	padding-right: 2%;
}

#main .rentalimg .naiyou p{
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
}
.naiyou ul{
    padding-bottom: 5%;
}

.naiyou li{
    padding-left: 5%;
    font-size: 15px;
	line-height: 1.5;
}

.rentalimg ,
.retable{
	margin: 0 0 20px;
    width: 100%;
}
.retable{
    text-align: center;
}

.moushikomi ,
.chui{
	width: 80%;
	margin : 0 auto 30px;
}

.rental hr{
    margin-bottom: 20px;
}

#main .moushikomi p {
	padding: 0 5%;
}
#main .chui p{
	padding: 5%;
}

#main .moushikomi ol ,
#main .chui li{
	padding: 0 5%;
}
.retable div ,
.moushikomi div ,
.chui div{
    display: inline-block;
    font-size: 25px;
    line-height: 1.2;
    border-bottom: 1px solid;
}

.moushikomi ul ,
.chui ul{
    padding: 10px 0 5px;
}

.moushikomi ul ,
.chui ul{
    font-size: 15px;
}

#main .retable p{
    text-align: left;
	padding: 0 0 0 10% ;
}

.retable table{
	width :80%;
	margin : 20px auto 0;
}

.retable table td{
	border : solid 1px;
	text-align : center;
}

.retable table th{
	border : solid 1px;
	background-color: rgba(50,205,50,0.3);
}

.retable table .tdtime{
	width : 30%;
}

/*information--------------------------------------------------------------*/

.information{
	overflow: hidden;
}
#main .info{
	float: left;
	width: 45%;
}
.info div{
	border: 10px solid #32CD32;
	height: 300px;
}
.info iframe{
	width: 100%;
}
#main .infotext{
	float: left;
	width: 45%;
	margin-left: 5%;
}
#main .infotop h3{
	font-size:30px;
	line-height: 1em;
	margin: 2% 0 5% 0;
}
.infotop ul{
	margin-left: 5%;
}
.infocontact{
	overflow: hidden;
}
.infologo{
	overflow: hidden;
}
.infologo a{
	display: block;
    width: 90%;
    margin: 0 auto;
}
.infocontact ul ,
.infologo li{
	float: left;
	width: 40%;
	margin: 5% 5% 0;
}
.infotop ul ,
.infocontact ul{	
	font-size: 1.2em;
	line-height: 1.5em;
}
.infologo ul{
    overflow: hidden;
}
.infologo li{
	margin: 5%;
}
#main .infochu p{
	padding: 0;
	margin-left: 5%;
	font-size: 1.2em;
	line-height: 1.8em;
}

.hover1{
	transition: all 0.6s ease 0s;
}
.hover1:hover{
	cursor: pointer;
	transform: scale(1.1, 1.1);
}


/*各ボックスの指定*/
.list {
	position: relative;
	float: left;	/*左に回り込み*/
	width: 17%;		/*幅*/
	margin-left: 2.5%;	/*左に空けるスペース*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: #000;	/*背景色*/
	color: #fff;		/*文字色*/
}
.list a {
	display: block;
	text-decoration: none;
	color: #fff;		/*文字色*/
}
/*マウスオン時*/
.list a:hover {
	color: #fff;	/*文字色*/
}
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	content: "→";	/*この文字を出力します。変更してもかまいませんが機種依存文字は使わないで下さい。*/
	position: absolute;
	right: 10px;	/*右からの配置場所指定*/
	top: 10px;		/*上からの配置場所指定*/
	font-size: 12px;	/*文字サイズ*/
	line-height: 30px;	/*行間。下のwidthと揃えて下さい。*/
	width: 30px;		/*幅。上のline-heightと揃えて下さい。*/
	border-radius: 50%;	/*角丸の指定。円形になります。*/
	background: #ccc;	/*背景色*/
	color: #000;		/*文字色*/
	text-align: center;
}
/*figure画像*/
.list a figure {
	opacity: 0.6;	/*リンクを指定した際は60%だけ色を出す。*/
}
/*マウスオン時のfigure画像*/
.list a:hover figure {
	opacity: 1;		/*リンクを指定した際のマウスオン時に色を100%出す。*/
}
/*h4タグ*/
.list h4 {
	position: absolute;
	bottom: 0px;	/*下からの配置場所指定。*/
	left: 0px;		/*左からの配置場所指定。*/
	width: 100%;
	background: #000;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で0.5は色が50%出た状態。*/
	text-align: center;	/*内容をセンタリング*/
	padding: 10px 0;	/*上下、左右への余白*/
}

/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: right;
	padding: 30px 0;
}
footer a {
	text-decoration: none;
}

/*home insta---------------------------------*/

div#instagram{
    overflow: hidden;
	padding-top: 40px;
	width:55%;
	float:left;
}
div#calender{
	width:350px;
	float:right;
	padding-top: 40px;
}

.home footer{
	clear: both;
}


/*フォーム関連
---------------------------------------------------------------------------*/
/*ボタン（btn）*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	padding: 5px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;	/*背景色*/
}
/*マウスオン時のボタン（btn）設定*/
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;	/*背景色*/
}
/*input,textarea共通*/
input,textarea {
	outline: none;background: transparent;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}
/*input,textareaのフォーカス時*/
input:focus,textarea:focus {
	border: 1px solid #000;	/*枠線の幅、線種、色*/
}

/*checkブロック。赤い注意書きブロックです。
---------------------------------------------------------------------------*/
p.check {
	background: #ff0000;
	color:#fff;
	padding: 10px 25px !important;
	margin-bottom: 20px;
}
p.check a {color: #fff;}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*トップページでは非表示に。*/

/*設定*/
.nav-fix-pos-pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 100;
	position: fixed;
	width: 40px;		/*ボタンの幅*/
	line-height: 40px;	/*ボタンの高さ*/
	bottom: 20px;		/*ウィンドウの下から20pxの場所に配置*/
	right: 3%;			/*ウィンドウの右から3%の場所に配置*/
	background: #32CD32;	/*背景色*/
	color: #fff;		/*文字色*/
	border-radius: 50%;	/*円形にする指定*/
}
/*マウスオン時の背景色*/
.nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
	color: #32CD32;		/*文字色*/
}


/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 45px;
}


/*box
---------------------------------------------------------------------------*/
.box {
	background: #fff;				/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.5);	/*背景色。255,255,255は白の事で0.5は色が50%出た状態の事。*/
	padding: 5%;					/*ボックス内の余白*/
	margin-bottom: 30px;			/*ボックスの下に空けるスペース*/
	border: 1px solid #32CD32;		/*線の幅、線種、色（古いブラウザ用）*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;padding: 5px 10px;border-radius: 4px;border: 1px solid #666;color: #fff;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #32CD32 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
#pagetop {display: block;margin-top: -2%;padding-top: 2%;}

/*画面幅990px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:990px){

/*home insta*/
div#instagram{
	width:100%;
	float: none;
}
div#calender{
	width:100%;
	float: none;
}
}


/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*header（小さな端末用：上部ブロック）
---------------------------------------------------------------------------*/
/*headerブロック*/
header.sh {
	background-color: rgba(50,205,50,0.5);	/*背景色68,141,179は、リンクカラーをrgb値にしたもの。0.5は色が50%出た状態。*/
}
/*ロゴ画像ブロック*/
header.sh .logo {
	width: 80px; /*ロゴ画像の幅*/
    padding-left: 3%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;
	position: fixed;
	z-index: 3;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: rgba(0,0,0,0.8);	/*背景色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;		/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;		/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
}
/*navブロックのみの追加指定*/
#menubar-s nav {
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	overflow: auto;
}
/*メニュー１個あたりの設定*/
#menubar-s nav li a {
	display: block;text-decoration: none;width: 100%;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	font-size: 16px;	/*文字サイズ*/
	height: 100px;		/*高さ*/
	height: 60px;		/*高さ*/
	color: #fff;		/*文字色*/
}
/*最後のnavメニューの下線を消す*/
#menubar-s nav li:last-child a {
	border-bottom: none;
}
/*テキスト*/
#menubar-s nav li a span {
	display: block;
	padding-top: 15px;	/*上に空ける余白。上下のバランスをとります。*/
	padding-left: 80px;	/*左に空ける余白*/
}
/*menu1*/
.menu1 a {
	background-position: -10px -20px;
}
/*menu2*/
.menu2 a {
	background-position: -10px -120px;
}
/*menu3*/
.menu3 a {
	background-position: -10px -220px;
}
/*menu4*/
.menu4 a {
	background-position: -10px -320px;
}
/*menu5*/
.menu5 a {
	background-position: -10px -420px;
}
/*menu6*/
.menu6 a {
	background-position: -10px -520px;
}
/*menu7*/
.menu7 a {
	background-position: -10px -620px;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 50;
	top: 10px;		/*上から10pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #32CD32 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #32CD32 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
	top: 10px;	/*配置場所の再指定*/
}

/*facebookやtwitterなどのアイコンブロック
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	clear: left;
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 50px;
}

/*mainブロック
---------------------------------------------------------------------------*/
/*mainブロック*/
#main {
	padding-left: 3%;
	padding-right: 3%;
}
/*main h1*/
#main h1{
    text-align: center;
    padding: 7% 0 3% 0;
    font-size: 2em;
}
    
/*h2タグ*/
#main h2 {
	font-size: 20px;		/*文字サイズ*/
	letter-spacing: normal;	/*文字間隔を標準に戻す*/
}
/*h2タグにclass="title"をつけたタイプ。大見出し。*/
#main h2.title {
	font-size: 30px;		/*文字サイズ*/
	margin-bottom: 20px;	/*見出しの下に空けるスペース*/
}
/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
#main h2.title span {
	margin-top: 20px;	/*上に空ける余白。上下のバランスをここでとります。*/
}

#main h1.toph1{
	padding: 5% 0;
    font-size: 3em;
    margin-top: 0;
}


/*footerブロック
---------------------------------------------------------------------------*/
footer {padding-bottom: 100px;}
footer .pr {display: block;}

/*「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
/*#new dl {
	overflow: auto;
}
    
/*home insta*/
    
#instagram {
	padding-top: 20px;
}

.instructor{
    width: 90%;
    }
    
.instructor div{
    width: 27%;
    height: auto;
}
    
.instructor ul .name{
    font-size: 14px;
}
    
.instructor li{
    text-align: center;
    font-size: 8px;
}
    
.instructor ul .sayuki{
    font-size: 6px;
}


/*system-----------------------------*/
.page{
    width: 20%;
    padding-left: 5%;
}
.pagete{
    width: 75%;
}


    
/*rental space-----------------------*/
    

#main .rental .retable p{
	padding: 0 0 0 5%;
}
.moushikomi ,
.chui{
	width: 95%;
}
/*information---------------------------------*/
#main .infotop h3{
	font-size:2.5em;
	margin:5% 0;
}
#main .info{
	float: none;
	width: 90%;
	margin : 0 auto;
}

#main .infotext{
	float: none;
	width: 90%;
}
.infocontact ul {
	width: 40%;
	margin: 5%;
}
.infotop ul ,
.infocontact ul {	
	font-size: 1em;
}
.infocontact ul .tuwa{
	font-size: 0.9em;
}
#main .infochu p{
	font-size: 1em;
	line-height: 1.6em;
}

/*getlady--------------------------------------*/
section.get1 ,
section.get2{
	width:100%;
}


/*その他
---------------------------------------------------------------------------*/
.sh {display:block;}
.pc {display:none;}

}


/*画面を横向きにした場合の高さが500px以下の場合の設定。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*メインメニュー。小さな端末用メニューを２列に。
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s nav li a {
	float: left;		/*左に回り込み*/
	width: 50%;			/*幅*/
}

}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*mainブロック
---------------------------------------------------------------------------*/
/*h2タグ*/
#main h2 {
	font-size: 16px;		/*文字サイズ*/
}
/*h2タグにclass="title"をつけたタイプ。大見出し。*/
#main h2.title {
	font-size: 20px;		/*文字サイズ*/
}
/*h2タグにclass="title"をつけたタイプ内にあるspanタグ*/
#main h2.title span {
	font-size: 11px;
	margin-top: 10px;	/*上に空ける余白。上下のバランスをここでとります。*/
}
/*h3タグ*/
#main h3 {
	font-size: 14px;		/*文字サイズ*/
}
/*段落(p)タグ*/
#main p {
	padding: 0 10px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/

#main h1.toph1{
	font-size: 2em;
}

#main section + section ,
#main #instagram {
	padding-top: 20px;
}

.slider { 
    max-width: 90%;
}


.topic{
	width: 90%;
}
.topic h3{
	font-weight: 800;
}
.topic p{
	font-size: 1em;
}
    
/*timetable---------------------------------*/
    
.box .studio{
    width :100%;
}
.box .timetable00{
    padding: 5% 0;
    width: 100%;
}
    
.box{
    margin-bottom: 0 ;
}
    
    
/*instrctor---------------------------------------*/ 
    
.instructor{
    padding: 0% 2.5% 0% 2.5%;
    }
    
.instructor div{
    float: left;
    padding: 0 10px;
    width: 27%;
    height: auto;
}
.instructor ul{
    margin-top: 0;
}    
.instructor ul .name{
    font-size: 12px;
}

/*event-------------------------------------*/

section.event2{
	width:90%;
}

section.event2 div{
	width: 80%;
}

/*getlady------------------------------------*/
#main section.get1 p ,
#main section.get2 .bold{
	font-size:1.2em;
}
section.get1 .gl{
	width: 75%;
}
#main section.get2 .lady1 p{
	font-size:1.3em;
}
#main section.get2 .lady2 p{
	font-size:1.4em;
}

#main section.get2 .red{
	font-size:1em;
	text-align:left;
	padding: 0 2%;
}
#main section.get2 .redbold{
    font-size:1em;
	text-align:center;
	padding: 0 2%;
    }
section.get2 div{
	text-align:left;
	padding: 0 2%;
}

.yosen .tobutton1 div{
    margin: 2% auto;
    width: 90%;
}

/*maebaru----------------------------------*/

#main section.maebaru2 .redbold{
	font-size:1em;
}

#main .maebaru2 .maebaru12 p{
    text-align: left;
    font-size: 13px;
}

#main section.maebaru4 .entry p{
	font-size:1.3em;
	line-height:1.5;
}
section.maebaru3{
	width:100%;
}

#main section.maebaru3 span{
	width:23%;
	padding:5%;
}

/*0216------------------------------*/
#main section .lady1 p{
	font-size:1.2em;
}
#main section .lady1{
	width:100%;
	padding:5% 0;
}

.btn-circle-stitch {
  width: 200px;
  line-height: 3;
  margin-bottom: 5%;
}

#main section.maebaru4 .entry01 p{
	font-size:1.6em;
}

    
/*system-------------------------------------*/
.page{
    width: 23%;
    padding-left: 2%;
    font-size: 1em;
}
.pagete{
    font-size: 1em;
}

#main .pagete p{
    padding: 0 20px;
}
#main .pagete .syskome{
    font-size: 10px;
    padding: 0 0 0 10%;
	line-height:1.5em;
}
#main .lastte{
    padding: 5% 0 0 0;
    font-size: 12px;
}
    
/*rental space-------------------*/
    
.rentalimg .reimg{
	float: none;
	width: 80%;    
    padding: 5% 10% 5%;
}
.rentalimg .naiyou{
    float: none;
    width: 80%;
    padding: 0 8% 0 12%;
    }
#main .rentalimg .naiyou p{
    font-size: 14px;
}
.naiyou ul{
    padding-bottom: 5%;
}
.naiyou li{
    font-size: 1em;
}
.retable table{
	width :100%;
	margin : 5% auto;
}
.retable table th{
	font-size: 10px;
}

.retable table .tdtime{
	width : 40%;
}
.retable table td{
    font-size: 10px;
}
#main .rental .retable p{
	padding: 0;
}
.moushikomi ,
.chui{
	width: 100%;
}
.retable div ,
.moushikomi div ,
.chui div{
    font-size: 1.5em;
}
.moushikomi ul ,
.chui ul{
    font-size: 1em;
}
#main .moushikomi p ,
#main .moushikomi ol ,
#main .chui li{
	padding: 0 0 0 2%;
}

#main .chui p {
	padding: 5% 0 0 2%;
}



/*information--------------------------------------------------*/

.info div{
	height: 200px;
	margin: 0 0 5% 0;
}
.info iframe{
	height: 200px;
}
.infologo li{
    margin: 2% 5% 5%;
    }
.infocontact ul{
    width: 45%;
    margin: 5% 0 0 5%;
    }
    
/*listブロック（works.htmlで使用）
---------------------------------------------------------------------------*/
/*リンクを指定した際に右上に出る「→」*/
.list a::after {
	right: 2px;			/*右からの配置場所指定*/
	top: 2px;			/*上からの配置場所指定*/
	line-height: 20px;	/*行間。下のwidthと揃えて下さい。*/
	width: 20px;		/*幅。上のline-heightと揃えて下さい。*/
}
/*h4タグ*/
.list h4 {
	padding: 0;
}



/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 10px 20px 30px;
}
ol {
	padding: 0 10px 20px 30px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}

}
