@charset "utf-8";

/*============================================
全般的なスタイル
============================================*/
* {
	margin:0; padding:0; 		/*全要素のマージン・パディングをリセット*/
}
body {
	background-color:#ffffff;
	/*background-image:url("images/bg_body.png");	ウェブページ全体の背景画像*/
	font-size:100%;	/*100%*/
	font-family:"メイリオ","Meiryo","游ゴシック","Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",sans-serif; /* フォントの種類をゴシック系にする */
	line-height:normal; 		 /*行の高さを1.0倍にする */
	color: #000; 
}
/* スマホだけに適用するCSS */
/*@media screen and ( max-width:479px )
{
body {
*/	/*max-width:1000px;*/
/*	font-size:90%;	
}
}*/





/*#main {
	width:1200px; margin:0 auto;	内容全体をセンタリング
}
*/
#main {
	/*max-width:90%;*/
	height:auto;
	margin:0 auto;

}


footer {
	/*width:1200px;*/
	margin:0 auto;	/*内容全体をセンタリング*/
}

table th{
	font-weight: normal;
}

p.clear{
	clear:both;
}

/*============================================
ヘッダ
============================================*/
div#header {
	/*max-width:90%;*/
	height:auto;
	/*width:90%; */
	margin:0 auto;
	background-color:#ffffff;
}

img {border:0;} 			/*画像のボーダーを0にする*/

/*============================================
ヘッダーロゴ
============================================*/
div.header-logo {
	float: left;			
}
/* スマホだけに適用するCSS */
@media screen and ( max-width:479px )
{
div.header-logo  img{
	width:300px;
	height:auto;
}
}
/*============================================
ヘッダーTEL情報
============================================*/
#header-tel-sp{
	display:none;
}

#header-tel ul{
	display: block;
	margin: 45px 20px 0;
	float: right;			
}
 #header-tel li{
	list-style-type:none;		/*リストマーカー無しにする*/
}
.my-phone {
	color: #555;
}
/* スマホだけに適用するCSS */
@media screen and (max-width:1000px){
div.header-logo {
	float: none;			
}
#header-tel ul{
	float:right;
	margin:0 5px 0 0;
}
}

@media screen and (max-width:641px){
div.header-logo {
	float: none;			
}
#header-tel ul{
	float:right;
	margin:0 5px 0 0;
	font-size:90%;
	color:#063;
}
}

@media screen and (max-width:480px){
div.header-logo {
	float: none;			
}
#header-tel{
	display:none ;
}
#header-tel-sp{
	display:block;
}
 #header-tel-sp li{
	list-style-type:none;		/*リストマーカー無しにする*/
}
#header-tel-sp ul{
	float:right;
	margin:0 2px 0 0;
	font-size:90%;
	color:#063;
}
}
@media screen and (max-width:370px){
div.header-logo {
	float: none;			
}
#header-tel{
	display:none ;
}
#header-tel-sp{
	display:block;
}
 #header-tel-sp li{
	list-style-type:none;		/*リストマーカー無しにする*/
}
#header-tel-sp ul{
	float:right;
	margin:0 2px 0 0;
	font-size:85%;
	color:#F00;
}
}



/*============================================
ナビゲーション   PC
============================================*/
nav {
	width:100%;
	height:auto;
	font-size:90%;
	}

nav ul {
    clear: both;
    overflow: hidden;
    margin: 0 0 10px 0;   
    padding: 0;
	line-height: 1.0;
	background: url(../img/li-bg.jpg) repeat-x bottom;
}

nav li, nav a {
	display: block;
}

nav li {
	float: left;
	border-right: 1px solid #003366;
	list-style-type:none;	
}

nav a {
	padding: 15px 25px;
    color: #ffffff;
	text-decoration: none;
}


nav a:hover {
	background: url(../img/li-bg-hover.jpg) repeat-x bottom;
}

nav #current a {
	background: #0066cc;
	
}
/*============================================
ナビゲーション   スマホ
============================================*/
.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 12px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 960;
    background:#09f;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 3px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 27px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}


/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


/*************************/





/******************************/
div.globalMenuSp {
    position: fixed;
    z-index: 950;
    top: 0;
    left: 0;
    background: #fff;                                                                                        
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}
 
div.globalMenuSp ul {
	background:#333;
	/*background:rbga(10,10,10,0.5 );*/
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
 
div.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #666;
}
 
/* 最後はラインを描かない */
div.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
div.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
	text-decoration: none;
}
div.globalMenuSp ul li a:hover {
	background:#0068b7;
}


 
/* このクラスを、jQueryで付与・削除する */
div.globalMenuSp.active {
    transform: translateY(0%);
}


/******************************/



/******************************
 * スマホ用メニュー
 ******************************/
.globalMenuSp, .navToggle{
	display:none;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:1000px){
nav{
	display:none ;
}
.globalMenuSp, .navToggle{
	display:inline-block;
 
}
}


/*============================================
パンくずリスト
============================================*/
.breadcrumb {
  margin-left:1%;
  margin-bottom:3px;
  padding-left:0;
}
@media screen and ( max-width:641px )
{
.breadcrumb {
	font-size:13px;
}
}
.breadcrumb li {
  display:inline;/*横に並ぶように*/
  list-style: none;
  /*font-weight: bold;*//*太字*/
}

.breadcrumb li:after {
  /* >を表示*/
  content: '>';
  padding: 0 3px;
  color: #555555;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: gray;
}

.breadcrumb li a:hover {
  text-decoration: underline;
  color: #f63;
 }

.my-home {
	color: #17b;
}

/******************************
 * h2タイトル
 ******************************/
#main h2 {
	margin:15px 0 0 0;	/*マージン*/
    text-align: left;
	padding:10px 0px 10px 0px;	/*パディング20px 0px 20px 0px;	*/
	font-size:120%;			/*フォントサイズ130%;*/
	background-color:#0068b7;	/*背景色#0068b7#003399;*/
	border-left: 50px solid #ccc;
	color:#ffffff;			/*文字色*/
   font-weight:normal;
 /*text-shadow: #000 2px 2px 2px;*/
}
@media screen and (max-width:641px){
#main h2{
	line-height:0.7; 
	font-size:100%;　
}
}
/******************************
 * タイトル01
 ******************************/
 .title-01 {
  /*background: url(../images/bg_head_01.gif) 10px center no-repeat #0068b7;*/
  background: -moz-linear-gradient(bottom, #0068b7, #ffffff);
  background: -webkit-linear-gradient(bottom, #0068b7, #ffffff);
  background: linear-gradient(to top, #0068b7, #ffffff);
  font-size: 1.2rem;
  font-weight:normal;
  color: #fff;
  margin-bottom: 20px;
  padding: 8px 10px 8px 8px;
 -moz-border-radius:8px; /* 角を丸く*/
 -webkit-border-radius:8px;
 border-radius:8px;
}

.my-plan {
	color: #fff;
}
@media screen and (max-width:641px){
 .title-01 {
   line-height:0.7; 
  font-size: 100%;
    margin-right: 0px;
    margin-left: 0px;
}
}
@media screen and (max-width:480px){
 .title-01 {
   line-height:0.6; 
  font-size: 90%;
}
}

/*============================================
　　ボックスメニュー
============================================*/
#box-menu ul{
	margin: 10px 8px 5px 25px;
	padding: 0px;
}

#box-menu li,#box-menu a{
	display: block;
	height:120px;
    width:230px;
}

#box-menu li{
	float:left;
	list-style-type:none;
	margin: 10px 8px 5px 25px;
}

/*#ep-low-sm ul li{
	float:left;
	margin: 10px 8px 5px 25px;
	padding: 10px;
	list-style-type:none;
    font-weight: bold;
	height:120px;
	width:27%;
}*/

#box-menu a{
	/*padding: 10px;*/
	text-decoration:none;
	color:#fff;
}

#button-01{
	background-color:#06f; /*#069;*/
	box-shadow:5px 5px 10px #666;
	text-align:center;
}
#button-02{
	background-color:#0c6;/*#63c;*/
	box-shadow:3px 3px 10px #666;
	text-align:center;
}
#button-03{
	background-color:#f39;/*#063;*/
	box-shadow:3px 3px 10px #666;
	text-align:center;
}
#button-01:hover{
  background-color: #f63;
  /*box-shadow:5px 5px 15px #f63;*/
  box-shadow: none;
 color:#fff;
}
#button-02:hover{
  background-color: #f63;
  box-shadow: none;
  color:#fff;
}
#button-03:hover{
  background-color: #f63;
  box-shadow: none;
  color:#fff;
}

/******************************
 * サイドボタン
 ******************************/
#side-button {
	display:block;
   position: fixed;
   bottom: 170px;
   right: 20px;
   z-index:900;
 }

.s-simu {
	background-color: #609;
}

.s-e-mail {
	background-color: #06f;
}
.s-member {
	background-color: #0c6;
}
.s-insta {
	background-color: #f39;
}

.s-simu:hover {
	background-color: #f63;
 }
.s-e-mail:hover {
	background-color: #f63;
 }
.s-member:hover {
	background-color: #f63;
 }
.s-insta:hover {
	background-color: #f63;
 }
 
/* スマホだけに適用するCSS */
@media screen and (max-width:1000px){
#side-button {
	display:block;
   position: fixed;
   bottom: 0px;
   left: 20px;
   z-index:900;
 }
 
.s-simu, .s-e-mail, .s-member, .s-insta{
	margin-left:5px;
   float:left;
   }
 #side-button img{
	 height:63px;
	 width:70px;
 }
   }
@media screen and (max-width:480px){
#side-button {
	display:block;
   position: fixed;
   bottom: 0px;
   left: 5px;
   z-index:900;
 }
 
.s-simu, .s-e-mail, .s-member, .s-insta{
	margin-left:0px;
   float:left;
   }
 #side-button img{
	 height:54px;
	 width:60px;
 }
   }
   
 /******************************
 * トップへ戻るbottom: 20px;
 ******************************/
#page-top {
  position: fixed;
  bottom: 0px;
  right: 10px;
  z-index:900;
 }
#page-top img{
   width:60px;
   height:auto;
 }


/******************************
 * ボタンICON-01
 ******************************/
.icon-01  {
	width: 200px;
   margin:0 auto ;
 padding: 8px 18px 8px 18px;
  background-color:#0068b7;
 /*text-shadow: #000 2px 2px 2px;*/
 -moz-border-radius:5px;
 -webkit-border-radius:5px;
 border-radius:5px;
 box-shadow:5px 5px 10px #999;
 border-bottom:1px solid #fff;
 border-right:1px solid #fff;
  text-align:center;
}

.icon-01 a{
  font-size: 1.2rem;
 /* text-align:center;*/
  text-decoration:none;
  color: #fff;
  font-weight: bold;
   }

.icon-01:hover{
  background-color: #f63;
 }
 
@media screen and (max-width:641px){
.icon-01{
	width: 160px;/*140*/
   margin:0 auto ;
 padding: 5px 10px 5px 10px;
}
.icon-01 a{
  font-size: 95%;
   }
}
 
/*============================================
フッタ
============================================*/
footer {
	clear:both;			/*フロート配置をクリアする*/
	display:block;
	margin:50px auto 0 auto;
	border-top-color: #0068b7; 
	border-top-width: 2px;
	border-top-style: solid;
}

.footer-logo {
	margin-left: 20px;
}
@media screen and ( max-width:641px )
{
.footer-logo {
	margin-left: 10px;
}

.footer-logo img{
	width:250px;
	height:auto;
} 
}
@media screen and ( max-width:479px )
{
.footer-logo {
	margin-left: 10px;
}

.footer-logo img{
	width:230px;
	height:auto;
} 
}

#pcfooter-area {
  /*max-width: 1200px;*/
  padding-top: 20px;
  padding-bottom:40px;
  background-color: #fff;
}

ul.pcfooter-area-in {
  hight: 100%;
  /*max-width: 1200px;*/
 /* padding-left:200px;*/
  overflow: hidden;
  list-style:none;		/*リストマーカー無しにする*/
}

li.footer-menu {
    margin-top: 1px;
	/*margin-left: 50px;*/
	margin-left: 60px;
	float: left;
}

.footer-menu ul{
  list-style:none;		/*リストマーカー無しにする*/
  line-height:1.2; 
}

a.footer-titile {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  text-decoration:none; 
	}
a.footer-titile-b {
  color: #fff;
  font-size: 14px;
	}
	
a.footer-titile:hover {
  font-weight: bold; 
  text-decoration: underline;
  color: #f63;
}
a.footer-titile-b:hover {
  color: #fff;
}
@media screen and (max-width:641px){
a.footer-titile {
  font-size: 13px;
}
a.footer-titile-b {
  font-size: 13px;
}
}
@media screen and (max-width:479px){
a.footer-titile {
  font-size: 12px;
}
a.footer-titile-b {
  font-size: 12px;
}
}

#footer-extra  {
	text-align: center;
	color: #fff;
	background-color: #0068b7;
	font-size: 16px;
	line-height: 1.2;
   height: 50px;
 padding-top:15px;
}

.footer-extra-in  a{
	text-decoration: none;
	color: #fff;
}

.footer-extra-in :hover {
  text-decoration: underline;
  color: #f63;
}	
@media screen and (max-width:641px){
#footer-extra  {
	font-size: 13px;
}
}
@media screen and (max-width:479px){
#footer-extra  {
	font-size: 11px;
}}

#footer-extra2  {
	background-color: #eee;
   height: 0;
}

/* スマホだけに適用するCSS */
@media screen and (max-width:1000px){
#footer-extra2  {
   height: 70px;
}
}

/*============================================
　　約款
============================================*/
.yakkan{
	text-decoration: none;
	color: #0068b7;
    font-weight: bold;

}

.yakkan:hover{
  text-decoration: underline;
  color: #f63;
}
/*============================================
　　ふわふわ・ブルブル
============================================*/
.fuwafuwa {
-webkit-animation:fuwafuwa 3s infinite linear alternate;
animation:fuwafuwa 3s infinite linear alternate;
}

@-webkit-keyframes fuwafuwa {
0% {-webkit-transform:translate(0, 0) rotate(-5deg);}
50% {-webkit-transform:translate(0, -5px) rotate(0deg);}
100% {-webkit-transform:translate(0, 0)rotate(5deg);}
}

@keyframes fuwafuwa {
0% {transform:translate(0, 0) rotate(-5deg);}
50% {transform:translate(0, -5px) rotate(0deg);}
100% {transform:translate(0, 0)rotate(5deg);}
}

.buruburu:hover{
    -webkit-animation:buruburu 0.1s infinite linear alternate;
    animation:buruburu 0.1s infinite linear alternate;
}

@-webkit-keyframes buruburu {
    0% {-webkit-transform:translate(0, 0) rotate(-3deg);}
    50% {-webkit-transform:translate(0, -1px) rotate(0deg);}
    100% {-webkit-transform:translate(0, 0)rotate(3deg);}
}

@keyframes buruburu {
    0% {transform:translate(0, 0) rotate(-3deg);}
    50% {transform:translate(0, -1px) rotate(0deg);}
    100% {transform:translate(0, 0)rotate(3deg);}
}







