@charset "utf-8";


body {
	line-height: 1.6;
	font-weight: 200;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
  	min-height: -webkit-fill-available;
    animation: fadeIn 1.6s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.6s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

html{
  height: -webkit-fill-available;
}

body, html {
	position: relative;
	color: #333;
	font: 14px/1.8 'メイリオ', "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	padding: 0 0 0 0;
	background-color: #fff;
}


a {
  color: #0a3782;
  text-decoration: none;
}

a:active, 
a:hover {
  color: #0a3782;
  text-decoration: none;
}
/*
iframe, img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s
}
*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s
}


.clearfix:after, .inner:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden
}

.text-center {
  text-align: center
}

ul {
	list-style: none;
}



.i-space4 {
	padding-left: 4px;
}

.i-space6 {
	padding-left: 6px;
}

.i-space8 {
	padding-left: 8px;
}

.i-space12 {
	padding-left: 12px;
}

.i-space18 {
	padding-left: 18px;
}

.i-space99 {
	padding: 0 6px 0 12px;
	font-size: 0.8em;
}



.i-space4r {
	padding-right: 4px;
}

.i-space6r {
	padding-right: 6px;
}

.i-space8r {
	padding-right: 8px;
}

.i-space12r {
	padding-right: 12px;
}

.i-space18r {
	padding-right: 18px;
}

.i-space8navi {
	padding-right: 10px;
	font-size: 0.8em;
}










/*========= ローディング画面のためのCSS ===============*/

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	/*background:#0081c2;*/
	background:#fff;
	z-index: 9999999;
	text-align:center;
	/*color: #fff;*/
	color: #333;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    font-size: 5em;
    letter-spacing: -2px;
	/*font-family: 'Carattere', cursive;*/
	font-family: 'Grechen Fuemen', cursive;
	line-height: 1.2em;
}



@media screen and (max-width:1200px) {
	
	#splash-logo {
	    font-size: 3.8em;
	    letter-spacing: -2px;
		line-height: 1.2em;
	}	
	
}
	
@media screen and (max-width:880px) {
	
	#splash-logo {
	    font-size: 3em;
	    letter-spacing: -2px;
		line-height: 1.2em;
	}	

}	

@media screen and (max-width:670px) {
	
	#splash-logo {
	    font-size: 5em;
	    letter-spacing: -2px;
		line-height: 1em;
	}	

}	




/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2
{
	display:block;
}

/*上に消えるエリア*/
body.appear .splashbg1 {
	animation-name:PageAnime;
	animation-duration:1.4s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    bottom:50%;
	left:0;
    transform: scaleY(1);
    /*background-color:#0081c2;*/
    background-color:#fff;
}

@keyframes PageAnime {
	
	0% {
		transform-origin:top;
		transform:scaleY(1);
	}

	100% {
		transform-origin:top;
		transform:scaleY(0);
	}
}

/*下に消えるエリア*/
body.appear .splashbg2 {
    animation-name:PageAnime2;
	animation-duration:1.4s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 50%;
	left:0;
    transform: scaleY(1);
    /*background-color:#0081c2;*/
    background-color:#fff;
}

@keyframes PageAnime2 {
	
	0% {
		transform-origin:bottom;
		transform:scaleY(1);
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
	
}


#container {
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
}


body.appear #container {
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear {
	
		0% {
		opacity: 0;
		}
		100% {
		opacity: 1;
	}
	
}


#sub_container {
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: auto;
    overflow-x: hidden;
}



/*===========================================================*/
/*　機能編  スクロール　ヘッダー　*/
/*===========================================================*/


/* header */


#header {
	position: fixed;
	width:100%;
    height: 94px;
	display: flex;
	justify-content: space-between;
	align-items: center;
    background:rgba(255,255,255,0.7);
    /*border-bottom: 1px solid #a9a9a9;*/
    z-index: 2000;
	box-shadow: 0px 4px 10px -5px rgba(0,0,0,0.2);
}

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

	#header {
	    height:70px;    
	}
    
}

/*　上に上がる動き　*/

#header.UpMove {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	
	from {
	opacity: 1;
	transform: translateY(0);
	}
	to {
	opacity: 0;
	transform: translateY(-100px);
	}
  
}

/*　下に下がる動き　*/

#header.DownMove {
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
	
	from {
		opacity: 0;
	transform: translateY(-100px);
	}
	to {
		opacity: 1;
	transform: translateY(0);
	}
  
}












/*===========================================================*/
/*　openbtn　*/
/*===========================================================*/

/*
.openbtn{
    display: none;
}
*/

.openbtn {
    display: block;
	position:fixed;
	top:0;
	left:0;
	z-index: 9999;
	cursor: pointer;
    width: 94px;
    height:94px;
    background: #0a3782;
    border-right: 1px solid #fff;
    /*border-bottom: 1px solid #fff;*/
    box-sizing: border-box;
}

.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 23px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:33px;	
}

.openbtn span:nth-of-type(2) {
	top:46px;
}

.openbtn span:nth-of-type(3) {
	top:58px;
}

.openbtn.active span:nth-of-type(1) {
    top: 40px;
    left: 32px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 52px;
    left: 32px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}


@media screen and (max-width:768px) {
	
    .openbtn {
        width:70px;
        height: 70px;
    }
	/*×に変化*/	
	.openbtn span{
	left: 17px;
	}
	
	.openbtn span:nth-of-type(1) {
	top:20px;	
	}
	
	.openbtn span:nth-of-type(2) {
	top:33px;
	}
	
	.openbtn span:nth-of-type(3) {
	top:45px;
	}
	
	.openbtn.active span:nth-of-type(1) {
	top: 28px;
	left: 24px;
	}
	
	.openbtn.active span:nth-of-type(3){
	top: 40px;
	left: 24px;
	}
    
}


/*===========================================================*/
/*　クリック円形背景（左下）*/
/*===========================================================*/

.circle-bg {
    position: fixed;
	z-index:3000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color:rgba(10,55,130,0.9);
	transform: scale(0);
	left:-50px;
    bottom:-50px;
    transition: all .6s;
}

.circle-bg.circleactive{
	transform: scale(50);
}

#header .header-inner {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	width: 100%;
	height: 94px;
	top: 0;
	left: 0;
}




/*==================================================
印象動き
===================================*/

.flipDown {
animation-name: flipDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipDownAnime{
  from {
    transform: perspective(2500px) rotateX(100deg);
 	opacity: 0;
  }

  to {
    transform: perspective(2500px) rotateX(0);
	opacity: 1;
  }
}


.fadeUp {
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


.fadeLeft {
animation-name: fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}


.fadeRight {
animation-name: fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}


.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
    opacity: 0;
}


/*　header　ページヘッダーロゴ廻り　*/

#header .header-inner .header-mark {
	display: block;
	position: absolute;
	padding: 0 0 0 0;
	margin: 22px 0 0 110px;
	width: 60px;
	height: auto;
	z-index: 3001;
}

#header .header-inner .header-mark img {
	display: block;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: auto;
}

#header .header-inner .header-logo {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 174px;
	top: 28px;
	font-size: 1.8em;
	line-height: 1.1em;
	font-weight: 700;
	font-family: "BIZ UDPGothic", serif;
	z-index: 3001;
}

#header .header-inner .header-logo .he {
	display: inline-block;
	padding:  0 8px 0 0;
	margin:  0 0 0 0;
	font-size: 1em;
	line-height: 1em;
}

#header .header-inner .header-logo .en {
	display: block;
	padding:  4px 0 0 0;
	margin:  0 0 0 0;
	font-size: 0.4em;
	line-height: 1em;
}

@media only screen and (max-width: 768px) {
	
	#header .header-inner .header-mark {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  18px 0 0 82px;
		width: 40px;
		height: auto;
		z-index: 3001;
	}
	
	#header .header-inner .header-mark img {
		display: block;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: auto;
	}
	
	#header .header-inner .header-logo {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  4px 0 0 130px;
		top: 16px;
		font-size: 1.4em;
		line-height: 1.1em;
		font-weight: 700;
		font-family: "BIZ UDPGothic", serif;
		z-index: 3001;
	}

	#header .header-inner .header-logo .he {
		display: none;
	}
	
	#header .header-inner .header-logo .en {
		display: block;
		padding:  4px 0 0 0;
		margin:  0 0 0 0;
		font-size: 0.4em;
		line-height: 1em;
	}
	
}

@media screen and (max-width:320px) {
	
	#header .header-inner .header-logo {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  4px 0 0 126px;
		top: 16px;
		font-size: 1.2em;
		line-height: 1.1em;
		font-weight: 700;
		font-family: "BIZ UDPGothic", serif;
		z-index: 3001;
	}
	
	#header .header-inner .header-logo span {
		display: block;
		padding:  4px 0 0 0;
		margin:  0 0 0 0;
		font-size: 0.4em;
		line-height: 1em;
	}

}
	
	
	
/*　header　PCページヘッダー　SNSボタン廻り　*/	
#header .header-inner .header-sns-link {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	top: 24px;
	right: 10px;
	z-index: 3001;
}

#header .header-inner .header-sns-link ul {
	display: block;
	position: relative;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
}

#header .header-inner .header-sns-link ul li {
	display: block;
	padding:  0 0 0 0;
	margin:  0 8px 0 0;
	width: 48px;
	height: 48px;
	text-align: center;
	float: left;
}

#header .header-inner .header-sns-link ul li a {
	display: block;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	width: 48px;
	height: 48px;
	color: #333333;
	background: #fff;
	font-size: 1.6em;
	line-height: 48px;
	border: 1px solid #e1e1e1;
	border-radius: 24px;
	text-align: center;
	float: left;
}

#header .header-inner .header-sns-link ul li.insta a:hover {
	width: 48px;
	height: 48px;
	border: 1px solid #f9f9f9;
	border-radius: 24px;
	color: #fff;
	background: #CF2E92;
	text-decoration: none;
}

#header .header-inner .header-sns-link ul li.tik a:hover {
	width: 48px;
	height: 48px;
	border: 1px solid #f9f9f9;
	border-radius: 24px;
	color: #fff;
	background: #85F9F5;
	text-decoration: none;
}

#header .header-inner .header-sns-link ul li.youtube a:hover {
	width: 48px;
	height: 48px;
	border: 1px solid #f9f9f9;
	border-radius: 24px;
	color: #fff;
	background: #DA1725;
	text-decoration: none;
}

#header .header-inner .header-sns-link ul li.twitter a:hover {
	width: 48px;
	height: 48px;
	border: 1px solid #f9f9f9;
	border-radius: 24px;
	color: #fff;
	background: #1DA1F2;
	text-decoration: none;
}

#header .header-inner .header-sns-link ul li.facebook a:hover {
	width: 48px;
	height: 48px;
	border: 1px solid #f9f9f9;
	border-radius: 24px;
	color: #fff;
	background: #1877f2;
	text-decoration: none;
}


@media only screen and (max-width: 768px) {
	
	#header .header-inner .header-sns-link {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		top: 12px;
		right: 10px;
		z-index: 3001;
	}
	
}

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

	#header .header-inner .header-sns-link {
		display: none;
	}

}





/*　header　PCページヘッダー　ナビゲーション廻り　*/	

.header-nav {
	display: block;
	position: absolute;
	top: 36px;
	right: 80px;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
	text-align: right;
}

.header-nav ul {
	list-style: none;
	display: block;
	text-align: center;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size:0;
}

.header-nav ul ul {
	display: block;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
}

.header-nav ul li {
	display: block;
	position: relative;
	display: inline-block; 
	padding: 0 0 0 0;
	margin: 0 0 0 0;
    font-size: 15px;
	font-weight: 400;
	font-family: "BIZ UDPGothic", serif;
	letter-spacing: 0.5px;
}

/*
.header-nav ul li:last-child {
	border-right: none;
}
*/

/*ナビゲーションのリンク設定*/
.header-nav ul li a {
	display: block;
	text-decoration: none;
	color: #333;
	padding: 0 22px 0 18px;
	margin: 0 0 0 0;
	width: auto;
	min-width: 130px;
    height: 58px;
	transition:all .2s;
    line-height: 58px;
}


@media only screen and (max-width: 1600px) {
	
	.header-nav ul li a {
		display: block;
		text-decoration: none;
		color: #333;
		padding: 0 18px 0 12px;
		margin: 0 0 0 0;
		width: auto;
		min-width: 80px;
	    height: 58px;
		transition:all .2s;
	    line-height: 58px;
	}		
	
}
	
	
.header-nav ul li li a {
	/*padding: 10px 0.8em;*/
}

/*
.header-nav ul li a:active {
	color: #333;
	text-decoration: none;
	border-bottom: 6px solid #0081c2;
	box-sizing: border-box;
	background: #f8f8f8;
}
*/

.header-nav ul li a:hover {
	color: #fff;
	text-decoration: none;
	/*border-bottom: 6px solid #f8f8f8;*/
	/*box-sizing: border-box;*/
	background: #0a3782;
}



.header-nav ul li a.hyouji {
	color: #333;
	text-decoration: none;
	border-bottom: 6px solid #0a3782;
	box-sizing: border-box;
	background: #f8f8f8;
	visibility: visible;
	opacity: 1;
	z-index: 100;
}




/**/

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
.header-nav li.has-child ul {
	position: absolute;
	display: block;
	left: 0;
	top: 58px;
	z-index: 100;
	width: 210px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	text-align: left;
	border-bottom: 1px solid #acacac;
}

/*hoverしたら表示*/
.header-nav li.has-child:hover > ul,
.header-nav li.has-child ul li:hover > ul,
.header-nav li.has-child:active > ul,
.header-nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}

/*ナビゲーションaタグの形状*/

.header-nav li.has-child ul li a {
	display: block;
	width: 210px;
	height: 46px;
	line-height: 46px;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	font-size: 0.9em;
	background-color:rgba(255,255,255,0.8);
	border-top: 1px solid #acacac;
	border-left: 1px solid #acacac;
	border-right: 1px solid #acacac;
	box-sizing: border-box;
}

.header-nav li.has-child ul li a:hover,
.header-nav li.has-child ul li a:active,
.header-nav li.has-child ul li a.current {
	display: block;
	width: 210px;
	height: 46px;
	background-color:rgba(10,55,130,0.95);
	border-top: 1px solid #acacac;
	border-left: 1px solid #acacac;
	border-right: 1px solid #acacac;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
}


/*==3階層目*/

/*3階層目の位置*/

/*
.header-nav li.has-child ul ul {
	top:0;
	left:182px;
	background:#66ADF5;
}

.header-nav li.has-child ul ul li a:hover,
.header-nav li.has-child ul ul li a:active {
	background:#448ED3;
}
*/



@media only screen and (max-width: 1400px) {
	
	.header-nav .home {
		display: none;
	}
	
}

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

/*
#header {
	border-bottom: none;
	background: rgba(255, 255, 255, 0);
}
*/

	.header-link,
	.header-nav {
		display: none;
	}

}













/*===========================================================*/
/*機能編  クリックしたらナビが出現 */
/*===========================================================*/


#g-nav {
    position:fixed;
    z-index: 3000;
    /*ナビのスタート位置と形状*/
	bottom: -200%;
	width:100%;
    height: 100vh; /*ナビの高さ*/
	/*background-color:rgba(0,76,160,0.95);*/
	/*background-color:rgba(6,48,132,0.85);*/
	
	/*background-color:rgba(0,71,140,0.9);*/
    /*動き*/
	transition: all 1.2s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
    top: 0;
    transition: all 1.2s;
}

/*ナビゲーションの縦スクロール*/

#g-nav #g-nav-content {
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 56px;
}

#g-nav #g-nav-content::-webkit-scrollbar{
	display: none;
}


#g-nav .sm-header-mark {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	padding:  0 0 0 0;
	margin:  22px 0 0 110px;
	width: 60px;
	height: auto;
}

#g-nav .sm-header-mark img {
	display: block;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	width: 100%;
	height: auto;
}

#g-nav .sm-header-logo {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 174px;
	top: 28px;
	font-size: 1.8em;
	line-height: 1.1em;
	font-weight: 700;
	font-family: "BIZ UDPGothic", serif;
	color: #fff;
}

#g-nav .sm-header-logo .he {
	display: inline-block;
	padding:  0 8px 0 0;
	margin:  0 0 0 0;
	font-size: 1em;
	line-height: 1em;
}

#g-nav .sm-header-logo .en {
	display: block;
	padding:  4px 0 0 0;
	margin:  0 0 0 0;
	font-size: 0.4em;
	line-height: 1em;
	color: #fff;
}

#g-nav .sm-header-logo a,
#g-nav .sm-header-logo a:hover {
	color: #fff;
	text-decoration: none;
}

@media only screen and (max-width: 768px) {
	
	#g-nav .sm-header-mark {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		padding:  0 0 0 0;
		margin:  18px 0 0 82px;
		width: 40px;
		height: auto;
		z-index: 3001;
	}
	
	#g-nav .sm-header-mark img {
		display: block;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: auto;
	}
	
	#g-nav .sm-header-logo {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  4px 0 0 130px;
		top: 16px;
		font-size: 1.4em;
		line-height: 1.1em;
		font-weight: 700;
		font-family: "BIZ UDPGothic", serif;
		z-index: 3001;
	}

	#g-nav .sm-header-logo .he {
		display: none;
	}
	
	#g-nav .sm-header-logo .en {
		display: block;
		padding:  4px 0 0 0;
		margin:  0 0 0 0;
		font-size: 0.4em;
		line-height: 1em;
	}
	
}


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

	#g-nav .sm-header-logo {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  4px 0 0 126px;
		top: 16px;
		font-size: 1.2em;
		line-height: 1.1em;
		font-weight: 700;
		font-family: "BIZ UDPGothic", serif;
		z-index: 3001;
	}

}






#gnavSp {
	display: block;
	width: 100%;
	padding: 0 0 84px 0;
	margin: 30px 0 0 0;
}

@media only screen and (max-width: 768px) {
	
	#gnavSp {
		display: block;
		width: 100%;
		padding: 0 0 84px 0;
		margin: 30px 0 0 0;
	}
	
}	
	
	
/*
#gnavSp {
	display: block;
	width: 45%;
	padding: 0 5% 0 0;
	margin: 0 0 0 0;
	float: right;
}
 
 
 
@media only screen and (max-width: 920px) {
	
	#gnavSp {
		display: block;
		width: 95%;
		padding: 0 0 0 0;
		margin: 30px 2.5% 40px 2.5%;
	}
	
}
*/	
	
 
#gnavSp li {
	list-style: none;
}
      
#gnavSp .first {
	display: block;
	width: 100%;
	margin: 94px 0 0 0;
	border-top: 1px solid #f9f9f9;
	border-bottom: 1px solid #f9f9f9;
	border-bottom: none;
}

@media only screen and (max-width: 768px) {
	  
	#gnavSp .first {
		display: block;
		width: 100%;
		margin: 70px 0 0 0;
		border-top: 1px solid #f9f9f9;
		border-bottom: 1px solid #f9f9f9;
		border-bottom: none;
	}	  
	  
}  
	
@media screen and (max-width: 420px) {
	
	#gnavSp .first {
		display: block;
		width: 100%;
		margin: 70px 0 0 0;
		border-top: 1px solid #f9f9f9;
		border-bottom: 1px solid #f9f9f9;
		border-bottom: none;
	}	  

}


  
#gnavSp .first > li > a {
	display: block;
	/*background-color: #fff;*/
	padding: 0 0 0 32px;
	font-size: 1.3em;
	color: #fff;
	font-weight: 400;
	font-family: "BIZ UDPGothic", serif;
	border-bottom: 1px solid #f9f9f9;
	text-decoration: none;
	width: 100%;
	height: 80px;
	line-height: 80px;
}

/*
#gnavSp .first > li.inqnav > a {
	display: block;
	background-color: #f7b550;
	padding: 0.8em 0.7em;
	font-size: 1.3em;
	color: #fff;
	border-bottom: 1px solid #fff;
	width: 100%;
}      
*/       
        
#gnavSp .first > li > a strong,
#gnavSp .first > li > a em {
          display: block; }
          
#gnavSp .first > li > a:hover {
          text-decoration: none; }
          
#gnavSp .first > li > a em {
          font-size: 8px;
          line-height: 1.2; }
          
          
#gnavSp .first > li.a > a {
        color: #fff;
        /*background-color: #e9e9e9;*/
        border-bottom: 1px solid #f9f9f9; 
}
        
        
        
        
        
        
#gnavSp .first > li.b > a {
	color: #fff;
	background-color: #898989;
	border-bottom: 1px solid #6e6e6e;
	font-style: normal; 
}
        
#gnavSp .first > li.c > a {
	color: #fff;
	background-color: #eeb845;
	border-bottom: 1px solid #6e6e6e;
}  
        
#gnavSp .first > li.d > a {
	color: #fff;
	background-color:  #0168b7;
	border-bottom: 1px solid #6e6e6e;
}  
        
#gnavSp .first > li.e > a {
	color: #fff;
	background-color: #62cce7;
	border-bottom: 1px solid #6e6e6e;
}   
        
          
        

#gnavSp .first > li.drop > a {
        background-position: right 22px center;
        background-repeat: no-repeat;
        background-image: url(../images/icon-bg-plus_02.png); }
        
#gnavSp .first > li.drop > a.active {
          background-image: url(../images/icon-bg-mainas_02.png); }
          
#gnavSp .first > li.drop li {
        border-top: 1px solid #0081c2; }
        
#gnavSp .first > li.drop li br {
		display: none; }
        
#gnavSp .first > li.drop li:first-child {
         border-top: 0; }
         
#gnavSp .first > li.drop li:last-child {
         border-bottom: 1px solid #f9f9f9; }
          
#gnavSp .first > li.drop li a {
          display: block;
          background-color: #fff;
          padding: 0 0 0 32px;
          font-size: 1.2em;
		  font-weight: 400;
		  font-family: "BIZ UDPGothic", serif;
          color: #0a3782;
          text-decoration: none;
          height: 52px;
          line-height: 52px;
}
          
#gnavSp .first > li .dropList {
        display: none; }
        
        
        
        
        
        
        
#gnavSp .second {
      background-color: #fff;
      border-bottom: 1px solid #fff;
      display: table;
      width: 100%;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
              
#gnavSp .second a {
        display: table-cell;
        vertical-align: middle;
        width: 50%;
        padding: 0.8em 0.7em;
        color: #fff;
        line-height: 1.2; }
        
#gnavSp .second a:first-child {
          border-right: 1px solid #7a7a7a; }
          
#gnavSp .third {
      background-color: #11a4a7;
      padding: 1.2em; }
      
#gnavSp .fifth {
      background-color: #a9a9a9;
      padding: 1.2em; }
      
#gnavSp .third a {
        display: block;
        width: 100%;
        border-radius: 4px;
        text-align: center;
        line-height: 1.2;
        padding: 0.7em;
        font-size: 14px;
        background-color: #f6f5f5;
        border: 1px solid #d0d0d0;
        color: #11a4a7; }
        
#gnavSp .fifth a {
        display: block;
        width: 90%;
        border-radius: 4px;
        text-align: center;
        line-height: 1.2;
        padding: 0.7em 5% 0.7em 5%;
        font-size: 16px;
        background-color: #357e8b;
        border: 2px solid #fff;
        color: #fff; }   
 













/* #footer */

#footer {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: 340px;
	overflow: hidden;
}

#footer ul {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: auto;
	min-height: 340px;
	list-style: none;
}

#footer ul li {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 50%;
	height: auto;
	min-height: 340px;
	float: left;
	height: auto;
	text-align: center;
	color: #fff;
	overflow: hidden;
}

#footer ul .web {
	background: url(../images/f_bg_01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right center;
}

#footer ul .tel {
	background: url(../images/f_bg_02.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position:left center;
}


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

	#footer {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		width: 100%;
		height: 680px;
		border-bottom: 1px solid #fff;
	}

	#footer ul {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		width: 100%;
		height: 680px;
		list-style: none;
	}
	
	#footer ul li {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		width: 100%;
		height: 340px;
		float: none;
		text-align: center;
		color: #fff;
	}

}


#footer ul li h2 {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 80px 0 0 0;
	font-size: 2.4em;
	line-height: 1.1em;
	font-weight: 300;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

@media screen and (max-width: 1024px) {
	
	#footer ul li h2 {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 80px 0 0 0;
		font-size: 2em;
		line-height: 1.1em;
		font-weight: 300;
		font-family: 'M PLUS Rounded 1c', sans-serif;
	}
	
}

@media screen and (max-width: 420px) {
	
	#footer ul li h2 {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 80px 0 0 0;
		font-size: 1.7em;
		line-height: 1.1em;
		font-weight: 300;
		font-family: 'M PLUS Rounded 1c', sans-serif;
	}
	
}


#footer .web_form_bt {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 50px auto 0 auto;
	width: 330px;
	height: 78px;
	line-height: 77px;
	text-align: center;
	font-size: 1.4em;
	font-weight: 500;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	letter-spacing: -0.5px;
}

#footer .web_form_bt span {
	position: relative;
	padding: 0 22px 0 0;
	margin: 0 0 0 0;
	float: right;
	font-size: 1.8em;
}

#footer .web_form_bt a {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 330px;
	height: 78px;
	color: #fff;
	background: none;
	border-radius: 39px;
	border: 2px solid #fff;
}

#footer .web_form_bt a:hover {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 330px;
	height: 78px;
	color: #44b7b5;
	background: #fff;
	border-radius: 39px;
	border: 2px solid #fff;
}


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

	#footer .web_form_bt {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 50px auto 0 auto;
		width: 270px;
		height: 64px;
		line-height: 63px;
		text-align: center;
		font-size: 1.2em;
		font-weight: 500;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		letter-spacing: -1px;
	}
	
	#footer .web_form_bt span {
		position: relative;
		padding: 0 22px 0 0;
		margin: 0 0 0 0;
		float: right;
		font-size: 1.8em;
	}
	
	#footer .web_form_bt a {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		width: 270px;
		height: 64px;
		color: #fff;
		background: none;
		border-radius: 39px;
		border: 2px solid #fff;
	}
	
	#footer .web_form_bt a:hover {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		width: 270px;
		height: 64px;
		color: #44b7b5;
		background: #fff;
		border-radius: 39px;
		border: 2px solid #fff;
	}


}





#footer .tel_info {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 40px 0 0 0;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	font-size: 3.4em;
	line-height: 1.1em;
}

#footer .tel_info a {
	color: #fff;
}

#footer .tel_info span {
	position: relative;
	top: -4px;
	left: 0;
	padding: 0 8px 4px 0;
	margin: 0 0 0 0;
	font-size: 0.6em;
}
	
#footer .tel_info2 {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 4px 0 0 0;
	font-weight: 400;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 1.1em;
	line-height: 1.1em;
}

#footer .tel_info2 br {
	display: none;
}


/*Fax*/

#footer .fax_info {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 8px 0 12px 0;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	font-size: 2.1em;
	line-height: 0.8em;
}

#footer .fax_info a {
	color: #fff;
}

#footer .fax_info span {
	position: relative;
	top: -4px;
	left: 0;
	padding: 0 8px 4px 0;
	margin: 0 0 0 0;
	font-size: 0.8em;
}





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

	#footer .tel_info {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 40px 0 0 0;
		font-weight: 700;
		font-family: 'Roboto', sans-serif;
		font-size: 2.3em;
		line-height: 1.1em;
	}
	
	#footer .tel_info span {
		position: relative;
		top: -4px;
		left: 0;
		padding: 0 8px 4px 0;
		margin: 0 0 0 0;
		font-size: 0.6em;
	}
		
	#footer .tel_info2 {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 4px 0 0 0;
		font-weight: 400;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-size: 1em;
		line-height: 1.6em;
	}

	#footer .tel_info2 br {
		display: block;
	}


}





















#footer-end {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: auto;
	min-height: 280px;
	color: #fff;
	background: #505160;
	overflow: hidden;
}

.footer-end-inner {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 auto 0 auto;
	width: 90%;
	max-width: 1800px;
	height: auto;
}

@media screen and (max-width: 920px) {
	
	.footer-end-inner {
		display: block;
		position: relative;
		padding: 0 0 60px 0;
		margin: 0 0 0 0;
		width: 100%;
		height: auto;
		min-height: 800px;
	}	
	
}




/*　footer-end　ロゴ廻り　*/

#footer-end .footer-end-mark {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	padding:  0 0 0 0;
	margin:  100px 0 0 0;
	width: 60px;
	height: auto;
}

#footer-end .footer-end-mark img {
	display: block;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	width: 100%;
	height: auto;
}

#footer-end .footer-end-logo {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 70px;
	top: 104px;
	font-size: 2.2em;
	line-height: 1.1em;
	color: #fff;
	font-weight: 400;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

#footer-end .footer-end-logo .he {
	display: inline-block;
	padding:  0 8px 0 0;
	margin:  0 0 0 0;
	font-size: 1em;
	line-height: 1em;
}

#footer-end .footer-end-logo .en {
	display: block;
	padding:  4px 0 8px 0;
	margin:  0 0 0 0;
	font-size: 0.4em;
	line-height: 1em;
	text-align: left;
}

#footer-end .footer-end-logo a {
	color: #fff;
}


@media only screen and (max-width: 920px) {
	
	#footer-end .footer-end-mark {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  90px auto 0 auto;
		width: 12%;
		max-width: 80px;
		height: auto;
	}
	
	#footer-end .footer-end-mark img {
		display: block;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: auto;
	}
	
	#footer-end .footer-end-logo {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  18px auto 0 auto;
		top: 0;
		font-size: 2.4em;
		line-height: 1.1em;
		font-weight: 400;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		text-align: center;
	}
	
	#footer-end .footer-end-logo .en {
		display: block;
		padding:  4px 0 0 0;
		margin:  0 0 0 0;
		font-size: 0.4em;
		line-height: 1em;
		text-align: center;
	}
	
}

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

	#footer-end .footer-end-logo .he {
		display: none;
	}

}

@media screen and (max-width: 420px) {
	
	#footer-end .footer-end-logo {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  18px auto 0 auto;
		top: 0;
		font-size: 2em;
		line-height: 1.1em;
		font-weight: 400;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		text-align: center;
	}
	
	#footer-end .footer-end-logo .en {
		display: block;
		padding:  4px 0 0 0;
		margin:  0 0 0 0;
		font-size: 0.4em;
		line-height: 1em;
		text-align: center;
	}

}

















.footer-end-link {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	top: 190px;
	left: 0;
}

.footer-end-link ul {
	display: block;
	position: relative;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	list-style: none;
}

.footer-end-link ul li {
	display: block;
	position: relative;
	padding:  0 8px 0 8px;
	margin:  0 0 0 0;
	float: left;
	height: 22px;
	line-height: 22px;
	text-decoration: none;
	border-left: 1px solid #fff;
	font-size: 1em;
}

.footer-end-link ul li span {
	display: none;
}

.footer-end-link ul li a {
	color: #fff;
}

.footer-end-link ul li a:hover {
	color: #fff;
	text-decoration: underline;
}

.footer-end-link ul li:first-child {
	border-left: none;
}


@media screen and (max-width: 1200px) {
	
	.footer-end-link {
		display: block;
		position: absolute;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		top: 190px;
		left: 0;
	}

}

@media screen and (max-width: 920px) {
	
	.footer-end-link {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		overflow: hidden;
	}
	
	.footer-end-link ul {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		list-style: none;
		width: 100%;
		height: auto;
	}
	
	.footer-end-link ul li {
		display: block;
		position: relative;
		padding:  2px 0 6px 22px;
		margin:  0 0 0 0;
		float: none;
		height: 68px;
		line-height: 68px;
		text-decoration: none;
		border-left: none;
		border-bottom: 1px solid #fff;
		font-size: 1.2em;
		width: 100%;
	}

	.footer-end-link ul li span {
		display: inline-block;
		padding: 0 22px 0 0;
	}
	
	.footer-end-link ul li a {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		color: #fff;
		width: 100%;
		height: 68px;
		line-height: 68px;
	}
	
	.footer-end-link ul li a:hover {
		color: #fff;
		text-decoration: none;
	}

}
	
	








.footer-sns-link {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	top: 90px;
	right: 20px;
}

.footer-sns-link ul {
	display: block;
	position: relative;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
}

.footer-sns-link ul li {
	display: block;
	padding:  0 0 0 0;
	margin:  0 14px 0 14px;
	text-align: center;
	float: left;
}

.footer-sns-link ul li span {
	display: none;
}

.footer-sns-link ul li a {
	display: block;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	color: #fff;
	font-size: 2.6em;
	text-align: center;
	float: left;
}

.footer-sns-link ul li.f-insta a:hover {
	color: #CF2E92;
	text-decoration: none;
}

.footer-sns-link ul li.f-tik a:hover {
	color: #85F9F5;
	text-decoration: none;
}

.footer-sns-link ul li.f-youtube a:hover {
	color: #DA1725;
	text-decoration: none;
}

.footer-sns-link ul li.f-facebook a:hover {
	color: #1877f2;
	text-decoration: none;
}

.footer-sns-link ul li.f-twitter a:hover {
	color: #1DA1F2;
	text-decoration: none;
}

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

	.footer-sns-link {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		top: 0;
		right: 0;
		width: 100%;
		overflow: hidden;
	}
	
	.footer-sns-link ul {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		list-style: none;
		width: 100%;
		height: auto;
	}
	
	.footer-sns-link ul li {
		display: block;
		position: relative;
		padding:  2px 0 6px 22px;
		margin:  0 0 0 0;
		float: none;
		height: 68px;
		line-height: 68px;
		text-decoration: none;
		border-left: none;
		border-bottom: 1px solid #fff;
		font-size: 1em;
		width: 100%;
	}
	
	.footer-sns-link ul li a {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		color: #fff;
		width: 100%;
		height: 68px;
		line-height: 68px;
		font-size: 1.2em;
		text-align: left;
	}

	.footer-sns-link ul li a:hover {
		color: #fff;
		text-decoration: none;
	}
	
	.footer-sns-link ul li span {
		display: inline-block;
		padding: 0 0 0 18px;
	}	
	
	.footer-sns-link ul li.f-insta a:hover,
	.footer-sns-link ul li.f-tik a:hover,
	.footer-sns-link ul li.f-youtube a:hover,
	.footer-sns-link ul li.f-facebook a:hover,
	.footer-sns-link ul li.f-twitter a:hover {
		color: #fff;
		text-decoration: none;
	}
	
}






.footer-copy {
	display: block;
	position: absolute;
	padding:  0 0 0 0;
	margin:  0 0 0 0;
	top: 192px;
	right: 20px;
	font-size: 1em;
	line-height: 1.1em;
}

.footer-copy br {
	display: none;
}

@media screen and (max-width: 1200px) {
	
	.footer-copy {
		display: block;
		position: absolute;
		padding:  0 0 0 8px;
		margin:  0 0 0 0;
		top: 220px;
		right: 0;
		left : 0;
		font-size: 1em;
		line-height: 1.1em;
	}	
	
}

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

	.footer-copy {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  50px 0 100px 0;
		top: 0;
		right: 0;
		font-size: 1.3em;
		line-height: 1.6em;
		text-align: center;
	}
	
	.footer-copy br {
		display: block;
	}

}


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



}






































/*　スマートデバイス時_最下3連ボタン　*/

.sm_end {
		display: none;
}

@media screen and (max-width:768px) {
	
	.sm_end {
		display: block;
		position: fixed;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 64px;
		z-index: 3100;
	}

	.sm_end ul {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: 64px;
		list-style: none;
	}
	
/*
	.sm_end ul li {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 33.3%;
		height: 64px;
		line-height: 64px;
		float: left;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		text-align: center;
		color: #fff;
		font-weight: 400;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-size: 1.1em;
	}
*/

	.sm_end ul li {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 50%;
		height: 64px;
		line-height: 64px;
		float: left;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		text-align: center;
		color: #fff;
		font-weight: 400;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-size: 1.1em;
	}
		
	.sm_end ul li:first-child {
		border-left: none;
	}
	
	.sm_end ul li a {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: 64px;
		color: #fff;
	}
	
	.sm_end ul li a,
	.sm_end ul li a:hover {
		text-decoration: none;
	}
	
	.sm_end ul li a.sm_end_tel {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: 64px;
		color: #fff;
		/*background: #51a0c5;*/
	}
	
	.sm_end ul li a.sm_end_mail {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: 64px;
		color: #fff;
		/*background: #44b7b5;*/
	}	
	
	.sm_end ul li a.sm_end_line {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 100%;
		height: 64px;
		color: #fff;
		/*background: #00e210;*/
	}
	
	.sm_end ul li span.sm_txt {
		display: inline-block;
		padding-left: 6px;
	}
		
	

	/* 01うすいブルー */
	.sm_end ul li a.ba01 {
		background: #51a0c5;
	}
	/*02濃いブルー*/	
	.sm_end ul li a.ba02 {
		background: #053ba9;
	}
	/* 03エメラルド */	
	.sm_end ul li a.ba03 {
		background: #44b7b5;
	}
	/*04オレンジ*/	
	.sm_end ul li a.ba04 {
		background: #fc9a00;
	}
	/* 05LINEカラー */
	.sm_end ul li a.ba05 {
		background: #00e210;
	}	
		
		
}


@media screen and (max-width:320px) {
	
	.sm_end ul li {
		display: block;
		position: relative;
		padding:  0 0 0 0;
		margin:  0 0 0 0;
		width: 33.3%;
		height: 64px;
		line-height: 64px;
		float: left;
		border-top: 1px solid #fff;
		border-left: 1px solid #fff;
		text-align: center;
		color: #fff;
		font-weight: 400;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		font-size: 1.8em;
	}
	/*
	.sm_txt {
		display: none;
	}
*/
}




