@charset "utf-8";

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*TOPロゴフェード
------------------------------------------------------------------------------------------------------------------------------------------*/
.start {
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}


/*スマホ固定
---------------------------------------------------------------------------*/
.floating-banner {
	display: none;
	position: fixed;	
	position: fixed; /* バナーを追従させる */
	z-index: 8999; /* 他の要素の下に隠れないように */
	bottom: 0; /* バナーの上下の位置 */
	right: 0; /* バナーの左右の位置 */
  }


  @media screen and (max-width: 560px) { /* スマホ用のブレイクポイントを指定 */
	.floating-banner {
	  display: block;/* 消していたバナーを表示させる */
	  width: 100%; /* スマホの画面幅いっぱいにバナーを表示 */
background: #06c755;
text-align: center;
   	}
  }

/*全体の設定
---------------------------------------------------------------------------*/
html,body,#container {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
	
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
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: #666;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
	text-decoration: none;
}
a:hover {
	color: #bd1784;		/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

em{
    color: #d92aad;
    font-size: 12px;
    text-decoration: none;
    font-style: normal;
}
/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: relative;
	margin: 0 auto;
	height: 100px;	/*ヘッダーの高さ*/
	background-color: #fff;
	

}
/*ロゴ画像*/
header #logo {
width: 300px;		/*ロゴ画像の幅*/
top: 8%;
text-align: center;
margin:2% auto 1%;
display: block;
}
/*TELブロック*/
header address {
	font-style: normal;
	position: absolute;
	right: 2%;		/*ヘッダーブロックの右からの配置指定*/
	top: 0px;
	text-align: center;	/*内容をセンタリング*/
	font-size: 80%;		/*文字サイズ*/
	line-height: 1.5;	/*行間を少し狭く*/
	text-shadow: 1px 1px 3px #fff, -1px -1px 3px #fff;
}
/*TELブロックの電話番号部分*/
header address .tel a{
	color:#bd1784;		/*文字色*/
	font-size: 250%;	/*文字サイズ*/
	background: url(../images/icon_tel.png) no-repeat left center / 26px;	/*電話アイコンの読み込み。左(left)に、上下中央(center)に配置。画像幅26px。*/
	padding-left: 35px;	/*電話アイコン部分の余白をここで作る*/
}


/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;
	z-index: 30;
	text-align: center;	/*文字を中央に*/
	background: #fff;
	font-family: "Tenali Ramakrishna",sans-serif,"google";
	color: #666;

}
#menubar ul {
	background: #fff;	/*背景色*/
	overflow: hidden;
max-width: 1020px;
margin-left: auto;
margin-right: auto;
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 14.2%;		/*幅。下の「#menubar ul.ddmenu」と合わせる。/
	
}
#menubar ul li a {
	text-decoration: none;
	display: block;
	border-left: 1px solid #e1dfdf;	/*左側の線の幅、線種、色*/
	line-height: 50px;	/*高さ（行間）*/
	margin: 10px 0 0 0;		/*上下、左右、aタグの外側にに空けるスペース。*/
	font-size: 12px;
color: #666;
 transition: 0.5s;
 position: relative;
letter-spacing: 2px;
  }


#menubar li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  border-bottom: solid 5px #bd1784;
  transition: 0.5s;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#menubar li a:hover::after {
  width: 100%;
}
#menubar ul li:first-child a {
	border-left: none;	/*１個目のメニューの左の線を消す指定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ドロップダウンメニュー用
----------------------------------------------------------------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar ul.ddmenu {
	position:absolute;visibility: hidden;margin-top: 1px;
	border-top: 2px solid #fff;	/*上の線の幅、選手、色。marginでもいいのですが見づらいのであえて線にしています。*/
	width:16.6%;	/*幅。上の「#menubar li」と合わせる。*/
}
/*メニュー１個あたりの設定*/
#menubar ul.ddmenu li {
	float: none;width: 100%;overflow: hidden;
	border-bottom: 2px solid #fff;	/*下の線の幅、選手、色。marginでもいいのですが見づらいのであえて線にしています。*/
}
#menubar ul.ddmenu li a {
	border: none;margin: 0;width: 100%;line-height: normal;
	padding: 10px 0;	/*上下、左右への余白*/
	background: #6aabe8;	/*背景色*/
	color: #fff;	/*文字色*/
}
/*マウスオン時*/
#menubar ul.ddmenu li a:hover {
	background: #75bcff;
}


/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
body.is-fixed #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	border-bottom: 1px solid #9c9c9c;	/*下の線の幅、線種、色*/
}
body.is-fixed #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}
body.is-fixed .inner#first {
	margin-top: 72px;	/*メニューの高さ（「#menubar ul li aのline-height: 50px;」と「marginの計20px分」と、「#menubarのborderの上下2px分」）を合計した数字を設定する*/
}
/*上の３つのスタイルの「.is-fixed」を「.is-fixed-menu」と変更して同じスタイルを設定して下さい。*/
body.is-fixed-menu #menubar.nav-fix-pos {
	position: fixed;
	width: 100%;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
	border-bottom: 1px solid #d7d7d7;
	background:#fff;
	height: 75px;
}
body.is-fixed-menu #menubar.nav-fix-pos ul {
	background: rgba(255,255,255,0.95);
}

.sticky{
    display: none;
}
/*inner
---------------------------------------------------------------------------*/
.inner {
	position: relative;z-index: 20;
	
}
/*innerにbg1スタイルを追加した場合の背景色*/
.inner.bg1 {
	background: #fff !important;
}
/*innerにbg2スタイルを追加した場合の背景色*/
.bg2 {
	background:#f2f2f2  !important;
}
/*innerにbg3スタイルを追加した場合の背景色*/
.inner.bg3 {
	background: rgb(243, 228, 251)!important;
}
.inner.bg4 {
background: url(../images/bg4.jpg) center 0 no-repeat;

}

.inner.bg5 {
background: url(../images/bg5.jpg) center 0 no-repeat;
height: 800px;
background-attachment: fixed;
}

.inner.bg6 {
background: url(../images/bg6.jpg)center 0 repeat ;
padding: 5% 0;
background-attachment: fixed;

}

.inner.bg7 {
background: url(../images/bg7.jpg)center 0 no-repeat ;
background-attachment: fixed;

}

.inner.bg8 {
background: url(../images/bg8.jpg)center 0 no-repeat ;

}
.inner.bg9 {
background: url(../images/bg9.jpg)center 0 no-repeat ;

}


.subbg1{
background: url(../images/henna/submain.jpg)center 0 no-repeat ;
background-attachment: fixed;

}
.subbg2{
background: url(../images/menu/submain.jpg)center 0 no-repeat;
background-attachment: fixed;

}
.subbg3{
background: url(../images/self/submain.jpg)center 0 no-repeat ;
background-attachment: fixed;

}
.subbg4{
background: url(../images/access/submain.jpg)center 0 no-repeat ;
background-attachment: fixed;

}

.subbg5{
background: url(../images/mail/submain.jpg)center 0 no-repeat ;
background-attachment: fixed;

}

.subbg6{
background: url(../images/slowly/submain.jpg)center 0 no-repeat ;
background-attachment: fixed;

}
.subbg7 {
background: url(../images/school/submain.jpg)center 0 no-repeat;
 background-attachment: fixed;
}
/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	overflow: hidden;margin: 0 auto;
	max-width: 1200px;	/*サイトの最大幅*/
	padding: 50px 5%;	/*上下、左右へのコンテンツ内の余白*/
}

ul.greet li {
  margin: 7px 0 7px 0px;
  font-size:14px;
  line-height: 30px;
}

/*mamaへの思いindex.html
---------------------------------------------------------------------------*/
.mama{
overflow: hidden;
margin: 0 auto;
max-width: 1200px;
padding: 50px 5%;
}

.mamabox{
    padding: 3% 5%;
    background: #ffffffc4;
	line-height: 2;
letter-spacing: 2px;
margin: 5% auto 0;
}
/*コロナ対策index.html
---------------------------------------------------------------------------*/
.cov{
overflow: hidden;
margin: 0 auto;
max-width: 1200px;
padding: 50px 5%;
}

.cov h3{
clear: both;
margin-bottom: 20px;
padding: 5px 20px;
font-size: 110%;
border: 1px solid #ccc;
border-radius: 10px;
border-left: 10px solid #a83f9c;/* 線 */
}

.cov h3::before,.cov h3::after {
    display: none;


}
/*blogバナー*/
.blog a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}



/*h2タグ*/
h2 {
	clear: both;
	margin-bottom: 20px;
	text-align: center;	/*文字をセンタリング*/
	font-size: 38px;
letter-spacing: 2px;
line-height: 1.4;
color:#666;
font-family: 'Alegreya Sans SC', sans-serif;
text-shadow: 1px 1px 3px #fff, -1px -1px 3px #fff;
}
/*h2タグのspan（装飾用）タグ*/
h2 span {
	display: block;
	margin-top: -10px;
	font-size: 14px;	/*文字サイズ*/
	letter-spacing: 0.3em;	/*文字間隔を広くとる設定*/
}

/*h3タグ*/
.contents h3{
  position: relative;
  display: inline-block;
  padding: 0 55px;
  font-size: 20px;
font-weight: bold;
border: none;
}

.contents h3:before, h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}

.contents h3:before {
  left:0;
}
.contents h3:after {
  right: 0;
}

h3{
    clear: both;
    margin-bottom: 20px;
    padding: 5px 20px;
    font-size: 110%;
    border: 1px solid #ccc;
    border-radius: 10px;
	border-left: 10px solid #a83f9c;
}

/*段落タグ*/
.contents p {
	padding: 0 20px 20px;
	letter-spacing: 2px;
	    line-height: 2.3em;
}
/*section同士の余白*/
.contents section + section {
	margin-top: 50px;
}




/*henna
---------------------------------------------------------------------------*/
.list {
    position: relative;
    overflow: hidden;
    float: left;
    width: 28%;
    margin: 0 2.5% 20px;
    height: 370px;
}
.list figure img {
    display: block;
    border-radius: 50%;
    margin-bottom: 10px;
}

.list h4 {
    text-align: center;
    border-bottom: 2px dotted #fff;
    margin-bottom: 10px;
    font-size: 20px;
}
.list p {
    padding: 0 !important;
    line-height: 1.5;
}

.list figure span {
    display: block;
    text-align: center;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-size: 12px;
    background: #000;
    background: rgb(30, 14, 14);
    position: absolute;
    right: 5%;
    top: 2%;
	color: #fff;
}
.list1 {
	overflow: hidden;
	width:32%;		/*ブロック幅*/
	float: left;	/*左に回り込み*/
	margin-left: 1%;	/*ボックスの外側(左側)に空けるスペース*/
	background: #fff;
box-shadow: 0 0 5px rgba(0,0,0,0.2);
margin-bottom: 7%;
height: 650px;
margin-top: 3%;

}
/*h4見出し*/
.list1 h4 {
	font-size: 18px;	/*文字サイズ*/
	text-align: center;	/*文字を中央に*/
	padding: 10px 0 0;
	font-weight: bold;
	
}

.list1 figure img {
	
}
.list1 p{
padding: 0 12% 1% 12% !important;
font-size: 12px;
}


/*henna.html　旅行写真
---------------------------------------------------------------------------*/

.tvphoto{
	display: flex;
	flex-wrap:wrap;
}
.tvphoto li {
	width: calc(100%/4);/*←画像を横に4つ並べる場合*/
	box-sizing:border-box;
	width: 33%;
}
.tvphoto li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
	border:solid 1px #ccc; /*←画像を1pxのグレーの枠線で囲む指定の場合*/
}


/*self.html　
---------------------------------------------------------------------------*/

#b2,#b1 {margin-top:-100px;
padding-top:100px;}


/*menuに使用*/
.box1{
    overflow: hidden;
    background: #fff;
    color: #666;
    margin: 0 2% 20px;
    border: 1px solid #eeeae2;
    padding: 3%;
}
.box1 h4 {
    color: #7d6147;
    border-bottom: 2px dotted #7d6147;
    margin-bottom: 10px;
}
.box1 p {line-height: 2em;
font-size: 13px;}

.name img{
width: 30%;
}


/*menu.html
---------------------------------------------------------------------------*/

.box4{margin: 50px auto;
padding: 8% 8%;
border: 1px solid #dbdbdb;
}


.box4 span{font-weight: bold;
font-size: 16px;}

.box1 em{
    font-size: 12px;
    color: #bb26a4;
	line-height: 1.5 !important;

}


.box2 {
	color: #666;			/*文字色*/
	margin: 0 2% 20px;		/*上、左右、下へのボックスの外に空けるスペース*/
	padding: 3%;
	
}

.box2 h4 {
	color: #cc11b8;		/*文字色*/
	font-size: 24px;	/*文字サイズ*/
	margin-bottom: 10px;	/*下に空けるスペース*/
}
/*box1内のp(段落)タグ*/
.box2 p {padding: 0 !important;
letter-spacing: 2px;
line-height: 2em;}
.box2 p a {color: #666;}
/*box2内のbtn1。本体の設定はこの下の下のブロックにあります。*/
.box2 p.btn1 {margin-top: 20px;}
.box2 img.fr, figure.fr {
    float: right;
    margin: 10px;
}
.box2 span {
    font-weight: bold;
}
.box2 p a{
color: #df267d;
 text-decoration: underline;
}

.box2 p a:link {
color: #df267d;
 text-decoration: underline;
}
.box2 p a:hover {
text-decoration:none;
color:#CC0000;
}
.no-list {
    padding-left: 2em;
    padding-bottom: 2em;
}

/*indexに使用*/
.box5{
    overflow: hidden;
  background: #eee7e7;
    color: #666;
    margin: 0 2% 20px;
    border: 1px solid #eeeae2;
    padding: 3%;
}
.box5 h4 {
    color: #7d6147;
    margin-bottom: 10px;
	font-size: 20px;
}
.box5 p {line-height: 2em;
font-size: 13px;}


/*menu内のボタンで使用。
---------------------------------------------------------------------------*/

.btn-surround {
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  font-weight: 700;
  background-color:#464040;
  text-align: center;
  width: inherit;
  min-width: 250px;
  padding: 16px 16px;
  position: relative;
  opacity: 1 !important;
  transition: all 0.3s;
  margin-bottom: 10px;
}
.btn-surround:before,
.btn-surround:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #464040;
  top: 0;
  pointer-events: none;
}
.btn-surround:before {
  left: 0;
  width: 0;
  height: 2px;
}
.btn-surround:after {
  right: 0;
  width: 2px;
  height: 0;
}
.btn-surround:hover {
  background-color: #FFF;
  color: #464040;
}
.btn-surround:hover:before {
  width: 100%;
  transition: width 0.2s 0.2s;
}
.btn-surround:hover:after {
  height: 100%;
  transition: height 0.1s 0.4s;
}
.btn-surround:hover span:before {
  width: 100%;
  transition: width 0.2s 0.5s;
}
.btn-surround:hover span:after {
  height: 100%;
  transition: height 0.1s 0.7s;
}
.btn-surround span:before,
.btn-surround span:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #464040;
  bottom: 0;
  pointer-events: none;
}
.btn-surround span:before {
  right: 0;
  width: 0;
  height: 2px;
}
.btn-surround span:after {
  left: 0;
  width: 2px;
  height: 0;
}


/*school.html
---------------------------------------------------------------------------*/
.btn {
  text-align: center;
  background: #076d7e;
  width: 30%;
  margin: 0 auto;
  padding: 1%;

}
.btn a{

  color: #fff;
}

/*ヘナ
---------------------------------------------------------------------------*/
h2.wh {
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 3px #373535, -1px -1px 3px #484747;
}

.henna{
    background: #fdfbfbd4;
    padding: 2% 1%;
    width: 60%;
    margin: 0 auto;
    border-radius: 10px;
    color: #000;
}
ul.henna {
 counter-reset: number;
list-style-type: none;
list-style: inside;
}

ul.henna li {
    border-bottom: 2px dashed;
        border-bottom-color: currentcolor;
    border-color: #cdcdcd;
    position: relative;
    margin: 0.5em 0 !important;
    max-width: 500px;
    padding: 0 0 0.5em 1.8em;
    line-height: 1.8;
}


.clender iframe{
width: 900px;
height: 600px;
text-align: center;
margin: 0 auto;
   
}


/*フッター設定
---------------------------------------------------------------------------*/
footer .pr {display: block;font-size: 80%;}
footer {
	position: relative;z-index: 20;
	clear: both;
	line-height: 1.5;	/*行間を基準より少し狭くする*/
	padding: 50px 0 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 85%;		/*文字サイズ*/
	background: #8f6fbd;
	color: #fff;	/*文字色*/
}
footer a {
	color: #fff;	/*リンクの文字色*/
}
footer a:hover {
	color: #fff;	/*マウスオン時のリンクの文字色*/
}
/*footer内のh3タグ*/
footer h3 {
	margin-bottom: 10px;
	font-size: 24px;	/*文字サイズ*/
	border-radius: 10px;
border-left: none;
border: none;
}

/*footer内のh3タグの１文字目*/
footer h3::first-letter {
	border-left: 2px solid #fff;	/*左側の線の幅、線種、色*/
	padding-left: 10px;				/*線とテキストの間の余白*/
}
/*footer内の段落タグ*/
footer p {
	padding: 0px 10px 20px;	/*上、左右、下への余白*/
}
/*footer内の左側のブロック指定*/
#footer-left {
	width: 43%;	/*幅*/
	float: left;	/*左に回り込み*/
	padding-left: 5%;	/*左に空ける余白*/
	padding-bottom: 50px;	/*下に空ける余白*/
}
/*フッターのロゴブロック*/
#footer-logo {
	 padding-bottom: 10px;
	 margin-bottom: 10px;
	}
/*フッターのロゴ画像*/
#footer-logo img {
	 width: 300px;	/*画像の幅*/
}
/*footer内の右側のブロック指定*/
#footer-right {
	width: 43%;	/*幅*/
	float: right;	/*右に回り込み*/
	padding-right: 5%;	/*右に空ける余白*/
	padding-bottom: 50px;	/*下に空ける余白*/
	font-size: 15px;
}

/*フッター内のfacebookなどのアイコン設定
---------------------------------------------------------------------------*/
/*アイコン画像１個あたりの設定*/
#icon img {
	margin-right: 10px;	/*アイコン同士の余白*/
}


#icon a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}


.map {width: 500px;	 
height: 450px;}

/*バナー
---------------------------------------------------------------------------*/
.top-banner{
	display: flex;
	flex-wrap:wrap;
	max-width: 1200px;
margin: 20px auto;
}
.top-banner li {
	width: calc(100%/2);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.top-banner li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
	border:solid 1px #ccc; /*←画像を1pxのグレーの枠線で囲む指定の場合*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	clear: both;
	text-align: center;
	padding-bottom: 20px;
}
#footermenu li {
	display: inline;
	margin: 10px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	position: relative;z-index: 20;
	clear: both;overflow: hidden;
	padding-top: 50px;
	background: #f5f4f0;	/*背景色*/
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #6aabe8;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 100px;	/*幅*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への設定*/
	margin-right: 5%;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #a50e0e;	/*背景色*/
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background:#2b2929;
padding: 1% 0;
}
#copyright a {text-decoration: none;}
#copyright a:hover {color: #666;}



	
/*テーブル（ta1）　アクセスページ
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1{
  width: 80%;
  border-spacing: 0;
  margin: 0 auto;
  letter-spacing: 0.1em;
}

.ta1 th{
  border-bottom: solid 2px #bd1784;
  padding: 20px 0;
}

.ta1 td{
  border-bottom: solid 2px #ddd;
  text-align: center;
  padding: 20px 0;
}
/*ta2設定*/

.ta2{
width: 100%;
border-collapse: collapse;
border: solid #CCC;
border-width: 1px;
}
.ta2 tr th,
.ta2 tr td{
padding: 0.5em;
text-align: center;
vertical-align: top;
border: solid #CCC;
border-width: 1px;
background: #fff;
padding: 2% 0;
}
.ta2 tr th{
width: 35%;

}

/*inviewのスタイル
---------------------------------------------------------------------------*/
/*共通設定（待機中）*/
.up, .left, .right, .transform1, .transform2 {
	opacity: 0;		/*透明度（透明の状態）*/
}
/*共通設定（要素が見えたら実行するアクション）*/
.upstyle, .leftstyle, .rightstyle, .transform1style, .transform2style {
	opacity: 1;		/*透明度（色が100%出た状態）*/
	transition: 0.5s 0.5s;	/*0.5sはアニメーションの実行時間0.5秒。0.5sは0.5秒遅れてスタートする指定。*/
}
/*upスタイル。下から上にフェードインしてくるスタイル（待機中）*/
.up {
	bottom: -50px;	/*基準値の下50pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.upstyle {
	bottom: 0px;	/*基準値まで戻す*/
}
/*leftスタイル。左からフェードインしてくるスタイル（待機中）*/
.left {
	left: -100px;	/*基準値より左に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.leftstyle {
	left: 0px;		/*基準値まで戻す*/
}
/*rightスタイル。右からフェードインしてくるスタイル（待機中）*/
.right {
	right: -100px;	/*基準値より右に100pxの場所からスタート*/
}
/*要素が見えたら実行するアクション*/
.rightstyle {
	right: 0px;		/*基準値まで戻す*/
}
/*transform1スタイル。その場で回転するスタイル（待機中）*/
.transform1 {
	transform: scaleX(0);	/*幅を0%でスタート*/
}
/*要素が見えたら実行するアクション*/
.transform1style {
	transform: scaleX(1);	/*幅を100%に戻す*/
}
/*transform2スタイル。倒れた状態から起き上がるスタイル（待機中）*/
.transform2 {
	transform: perspective(400px) rotateX(100deg);
}
/*要素が見えたら実行するアクション*/
.transform2style {
	transform: perspective(0px) rotateX(0deg);
}


/*inputボタン
---------------------------------------------------------------------------*/
.contents input[type="submit"].btn,
.contents input[type="button"].btn,
.contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
.contents input[type="submit"].btn:hover,
.contents input[type="button"].btn:hover,
.contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}



/*のボタンのリンク先がヘッダーに重ならないようにする調整。
---------------------------------------------------------------------------*/
.link {
	display: block;
	margin-top: -80px;
	padding-top: 80px;
}



/*インスタグラム
---------------------------------------------------------------------------*/
.insta_btn2{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px;/*高さ*/
  width: 190px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 25px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
  top: 4px;/*アイコン位置の微調整*/
}

.insta_btn2 span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.mt50 {margin-top: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #6aabe8 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.l {text-align: left !important;}
.w15{width: 15%;}
.w45 { width: 45%;}
.w50 {overflow: hidden;width: 50%;}
.w30 {overflow: hidden;width: 30% !important;}
.fl {float: left;}
img.fl {float: left;width:40%;margin-right: 50px;margin-bottom: 50px;}
.fr {float: right;}
img.fr {float: right;width:40%;margin-left: 50px;margin-bottom: 20px;}
.photo {padding: 10px;background: #fff;border: 5px solid #fff;box-shadow: 2px 4px 5px rgba(0,0,0,0.2);}
.big1 {font-size: 30px;}
.big2 {font-size: 35px;}
.w{font-weight: 600;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.yl{color:#ffe300;}
.or{color: #fb8f04}
.rd{color: #ff0606}
.white{color: #fff}
.f25{font-size: 25px;}
.b{font-weight: bold;}
.f15{font-size: 15px!important;}
.w30p { width: 30%;}
.w65p { width: 65%;}
.bb{border-bottom: 1px solid #575555;margin-bottom: 10px;}
.pt50 {    padding-top: 50px;}
.wh { color: #fff;}
.ffi{font-family: inherit;}
.w1200{width: 1200px;
    margin: 0 auto;}
/*画面を横向きにした場合の高さが500px以下の場合の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*h1　（トップページのメイン画像上に出てくるサイト名）
---------------------------------------------------------------------------*/
#top header h1 {
	bottom: 30%;		/*下から30%の場所に配置*/
}

/*トップページの「ホームページ開設キャンペーン」ボックス設定
---------------------------------------------------------------------------*/
#topics {
	display: none;	/*画面が狭いので非表示にする*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li a {
	float: left;	/*左に回り込みさせて２列にする*/
	width: 40%;		/*幅*/
	margin-left: 4%;	/*メニューの左側に空けるスペース*/
}

}


/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:1000px){
/*フッター設定
---------------------------------------------------------------------------*/
/*footer内の左右のブロック指定*/
#footer-left,#footer-right {
	width: auto;	/*幅*/
	float: none;	/*回り込みの解除*/
	padding: 0 5%;	/*上下、左右へのブロック内の余白*/
}
footer {
    font-size: 100%;

}
#footermenu {
       display: none;
}
#footer-logo img {
    width:100%;
}
#footer-logo {
    text-align: center;
}
#footer-right {

}
footer p {
    padding:0;
}
.w1200 {
    width:100%;
    margin: 0 auto;
}
}

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

/*ヘッダー
---------------------------------------------------------------------------*/
header {
    position: static;
    height: auto;
    background: none;
    padding: 10px 0;
    text-align: left;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: static;
	height: auto;
	background: none;
	padding: 20px 0;
	text-align: left;
	background-color: #fff;
}
/*ロゴ画像*/
header #logo {
	position: static;
	margin: 0 auto;
}
/*TELブロック*/
header address {
	position: static;
	font-size: 100%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: fixed;z-index: 50;
	top: 0;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5s;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	margin-bottom: 30px;
	left: 0;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px;	/*メニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;	/*文字色*/
	font-size: 15px;
}
/*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: 40px;	/*幅*/
	height: 40px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #8a6f6c url(../images/icon_menu.png) no-repeat center top/40px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #8a6f6c url(../images/icon_menu.png) no-repeat center bottom/40px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*fixmenuから折りたたみメニューになるのでリセット。*/
body.is-fixed .inner#first,body.is-fixed-menu .inner#first {
	margin-top: 0;
}

/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 50px;}
body#top .inner#first {padding-top: 0px;}

/*コンテンツ
---------------------------------------------------------------------------*/
/*h2タグ*/
.contents h2 {
	font-size: 30px;	/*文字サイズ*/
}
section + section {
	padding-top: 20px;
}




/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}

.cont {
 
    margin: 50% 0;
   }
 .cont-inner {
  width: 300px;
    padding: 10% 3%;
   
} 
.flow {
        padding: 8% 0;
}
.flow h2 {
    font-size: 25px;

}

.inner.bg5 {
 
    height:auto;
} 

.big2 {
    font-size: 20px;
}

.list3 {
   
    width: 100%;
   
}

.dw {
   
    margin: 0 auto 8%;
}


.mod_btns01 li:nth-child(3n+1) {
        margin-left: 15px;
}
.ta1 th {
  
    text-align: left;
  

}
.ms a{

padding: 5% 8%;

}

.ta2 {
    width: 100%;
   }
  .adobe a {
    float: none;
    background: url(../images/business/adobe.gif) no-repeat left top;
    text-indent: -999999px;
    margin: 5px 6px 6px 3px;
} 
.box1 {
  padding: 2%;
line-height: 3;
letter-spacing: 1.7px;
width: auto;
margin: 0;
}

.box4 {
   
    padding: 2%;
 
}
.list3 p {
    padding: 5% !important;
   
}
.w65p {
    width:100%;
}
.w30p {
    width: 100%;
}

#copyright {
    text-align: center;
    background: #2b2929;
    padding:0;
    width: 100%;
}
.name img {
    width: 90%;
}
.w45 {
    width: 100%;
	margin: 0 auto;
}

.map {width: 100%;
height: 5%;	 
}
.henna {
    background: #fdfbfbd4;
    padding: 2% 1%;
    width:95%;
    margin: 0 auto;
    border-radius: 10px;
    color: #000;
}
.list {
      width: 100%; 
    height: auto;
}

.contents h3::before, h3::after {
 
    position: initial;
   }

.tvphoto {
      margin-left: -40px;
}

.w30 {
     width: 100% !important;
}
.list1 {
  
    width: 90%;
    float: none;
   margin: 20px auto;
    height: 100%;

}
.list1 h4 {
       padding: 0;
	   line-height: 0;

}
.lh0 {
line-height: 0!important;
}
.box2 p {
line-height: 3em;}
.contents p {
	    line-height: 2.3em;
}
.inner.bg6 {
    background: url(../images/bg6.jpg);
	background-attachment: inherit;
 }
 
 .top-banner li {
  width: calc(100%/1);
  padding: 0 5px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
.top-banner {
  display: contents;
 width: 100%;
}
.btn {

  width: 65%;
  padding: 2%;
}
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 12px;	/*文字サイズ*/
	line-height: 2;	/*行間*/
}

/*ヘッダー
---------------------------------------------------------------------------*/
/*h1画像（トップページ以外で使用するロゴ画像）*/
header h1 img {
	width: 100%;	/*画像幅*/
}

/*トップページのメイン画像
mainimg_sは古い端末用で準備した小さい画像ですが、小さな端末では大きな画像を使う必要がないので小さい方を適用しました。
---------------------------------------------------------------------------*/
#mainimg {
	background: url(../images/mainimg_s.jpg) no-repeat center center / cover;
}

/*トップページのSVGロゴアニメーション設定
---------------------------------------------------------------------------*/
#svg-logo {
	width: 50%;	/*画像の幅*/
	left: 25%;	/*左から40%の場所に配置*/
}

/*トップページの「ホームページ開設キャンペーン」ボックス設定
---------------------------------------------------------------------------*/
/*ボックス内のh2見出し*/
#topics h2 {
	font-size: 18px;	/*文字サイズ*/
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	top: 6px;	/*上から6pxの場所に配置*/
}

/*inner
---------------------------------------------------------------------------*/
.inner#first {padding-top: 70px;}

/*コンテンツ
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 1.5%;	/*上下、左右へのコンテンツ内の余白*/
}
/*h2タグ*/
.contents h2 {
	font-size: 25px !important;
}
/*h2タグのspan（装飾用）タグ*/
.contents h2 span {
	margin-top: 0px;
	font-size: 10px;	/*文字サイズ*/
}
/*h3タグ*/
.contents h3 {
	font-size: 16px !important;
	padding-left: 10px;
	margin-bottom: 10px;
}
/*h3タグの１文字目*/
.contents h3::first-letter {
	padding-left: 10px;	/*線と文字との余白*/
}
/*段落タグ*/
p{
	line-height: 2;
letter-spacing: 1.7px;

}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}


/*inputボタン
---------------------------------------------------------------------------*/
.contents input[type="submit"].btn,
.contents input[type="button"].btn,
.contents input[type="reset"].btn {
	font-size: 16px;		/*文字サイズ*/
}

.box1 h4 {
    text-align: center;
    font-size: 18px;
}
.box2 img.fr, figure.fr {
       float: none;
    margin: 0 auto;
}
footer h3::before, footer h3::after {
    position: absolute;
}

.subbg1{
background: url(../images/henna/submain_s.jpg)center 0 no-repeat ;
background-attachment:none;

}
.subbg2{
background: url(../images/menu/submain_s.jpg)center 0 no-repeat;
background-attachment:none;

}
.subbg3{
background: url(../images/self/submain_s.jpg)center 0 no-repeat ;
background-attachment:none;

}
.subbg4{
background: url(../images/access/submain_s.jpg)center 0 no-repeat ;
background-attachment:none;

}

.subbg5{
background: url(../images/mail/submain_s.jpg)center 0 no-repeat ;
background-attachment:none;

}
.subbg7{
background: url(../images/school/submain_s.jpg)center 0 no-repeat;
background-attachment:none;
}
.inner.bg7 {
    background: url(../images/bg7.jpg)center 0 no-repeat;
   background-attachment:none;
}

/*その他
---------------------------------------------------------------------------*/
.photo {padding: 5px;border: 2px solid #fff;}
.ws,.wl {width: 94%;}
.fl {float: none;margin: 0 auto;}
img.fl {float: none;display: block;width:90%;margin: 0 auto 20px;}
.fr {float: none;}
img.fr {float: none;display: block;width:90%;margin: 0 auto 20px;}
.big1 {font-size: 16px;}
.sh {display:block;}
.pc {display:none;}

}

	
@media screen and (min-width: 750px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 750px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

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