/*
 * --------------------------------------------------
 * 1. General Elements
 *--------------------------------------------------
 */

/* https://zenn.dev/catnose99/articles/ec601c8f2085ae */
/* https://coliss.com/articles/build-websites/operation/css/gradient-background-hue-css.html */

body{
	font-family: 'Noto Sans JP', sans-serif;
  background-color:#f5f5f7;
  /*background-image: linear-gradient(180deg, rgba(61, 200, 194, 1), rgba(61, 156, 194, 1) 30%, rgba(245, 245, 245, 1) 80%);*/
}

#navigation {
  /* 1. Navigation wrapper */
}
#highlighted {
  /* 2. Highlighted (below header) wrapper */
}
#content {
  /* 3. Content wrapper */
	padding-top: 100px;
}
#content-below {
  /* 4. Content Below wrapper */
}

#footer {
	background: #bfd8df;
	padding: 40px 0;
	border:0;
	color:#444;
}

#footer a{
	color:#444;
}

#footer .container .row .sitemap{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap:4%;
	justify-content: flex-start;
	align-items: flex-start;
	margin:0;
}

#footer .container .row .sitemap li{
	margin:0;
	padding: 0;
	list-style: none;
	text-align: left;
	font-size: 13px;
}

#footer .container .row .sitemap li ul{
	margin:0;
	padding: 0;
}

#footer .container .row .sitemap li dl dt{
	font-size: 13px;
	margin:0 0 15px 0;
	padding: 0;
}

#footer .container .row .sitemap li dl dd{
	font-size: 13px;
	padding: 0;
	margin:0;
}

#footer .container .row .sitemap li dl dd ul li{
	margin:0 0 10px 0;
}

#footer .container .row .sitemap li dl dd ul li a i{
	margin-right:5px;
	font-size:14px;
}

#footer .row-fluid{
	margin-top:40px;
}

#footer .row-fluid.attention{
	margin-top:0;
	margin-bottom: 20px;
	font-size:13px;
	padding: 0 0 20px 0;
	border-bottom:1px solid #444;
}

.title-divider{
  background: none;
}

.title-divider span{
  display: inline-block;
  background-color: none;
  background: -webkit-linear-gradient(45deg, #54d0ff, #9f92ff 20%, #ff7689 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 未対応ブラウザのために一応テキスト色を指定しておく */
  color: blue;
}

.container--full{
	margin-left:140px;
	overflow: hidden;
	width:calc(100% - 140px);
}

.container .block,
.container--full .block{
	margin-bottom: 3em;
}

@media (max-width: 767px) {
	
	.container--full{
		margin-left: 0px;
		overflow: hidden;
		width:100%;
	}
	
}

/*
 * --------------------------------------------------
 * 1-2. global nav
 *--------------------------------------------------
 */

.header {
	position: relative;
	z-index: 10;
}

.header .header-inner .h_logo {
	position: absolute;
	top:15px;
	left:20px;
	padding: 0;
}
.header .header-inner .h_logo h1 {
	margin: 0;
}

/*
 * --------------------------------------------------
 * 1-3. global nav button
 *--------------------------------------------------
 */

.g_nav_btn {
	position: absolute;
	top: 15px;
	right: 20px;
	display: block;
	width: 50px;
	height: 50px;
	background-color: #255ba7;
	border-radius: 5px;
	transition: right ease 0.2s;
	z-index: 1;
}

.nav_open .g_nav_btn {
	position: fixed;
	right: 310px;
}

.g_nav_btn span {
	position: absolute;
	left: 10px;
	display: block;
	width: 30px;
	height: 2px;
	border-radius: 1px;
	background-color: #fff;
	transition: all ease 0.4s;
}

.g_nav_btn span:nth-child(1) {
	top: 14px;
}
.g_nav_btn span:nth-child(2) {
	top: 24px;
}
.g_nav_btn span:nth-child(3) {
	top: 34px;
}

.nav_open .g_nav_btn span:nth-child(1) ,
.nav_open .g_nav_btn span:nth-child(2) {
	top: 24px;
	transform: rotate(45deg);
}
.nav_open .g_nav_btn span:nth-child(3) {
	top: 24px;
	transform: rotate(-45deg);
}

/*
 * --------------------------------------------------
 * 1-4. global nav
 *--------------------------------------------------
 */

.g_nav {
	position: fixed;
	top: 0;
	right: 0;
	float: none;
	width: 0;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	overflow: hidden;
}

.nav_open .g_nav {
	width: 100%;
}

.g_nav_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	opacity: 0;
	z-index: 0;
}

.nav_open .g_nav_overlay {
	opacity: 1;
}

.g_nav .g_nav_inner {
	position: absolute;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100%;
	background-color: #fff;
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 1;
	transition: right ease 0.2s;
}

.nav_open .g_nav .g_nav_inner {
	right: 0;
}

.g_nav .g_nav_inner .sp_logo {
	display: block;
	margin: 0;
	padding: 20px;
	border-bottom: 2px solid #ededed;
	text-align: center;
}

.g_nav .g_nav_inner .sp_logo img {
	width: auto;
	max-width: inherit;
	height: 40px;
}

.g_nav .g_nav_list {
	width: auto !important;
	margin: 0;
	font-size: 0;
	letter-spacing: 0;
}

.g_nav .g_nav_list > li {
	display: block;
	margin-right: 0;
	padding: 0;
	border-bottom: 1px solid #ededed;
}

.g_nav .g_nav_list > li:last-child {
	margin-right: 0;
}

.g_nav .g_nav_list > li a {
	display: block;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.08em;
	line-height: 18px;
	padding: 15px 0;
}

.g_nav .g_nav_list > li a:hover {
	text-decoration: none;
}

.g_nav .g_nav_list > li .dr_nav {
	position: relative;
	display: block;
	color: #333;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.08em;
	line-height: 18px;
	padding: 15px 0;
}

.g_nav .g_nav_list > li .dr_nav::before {
	content: '';
	display: none;
	width: 100%;
	height: 36px;
	position: absolute;
	bottom: -36px;
	left: 0;
}
.g_nav .g_nav_list > li .dr_nav::after {
	content: '';
	display: none;
	width: 1px;
	height: 1px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #f0f0f0;
	position: absolute;
	bottom: -36px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.g_nav .g_nav_list > li:hover .dr_nav::before ,
.g_nav .g_nav_list > li:hover .dr_nav::after {
	display: block;
}

.g_nav .g_nav_list > li .dr_nav::after {
	display: block !important;
	top: 0;
	bottom: 0;
	left: auto;
	right: 10px;
	margin: auto 0;
	transform: rotate(180deg);
}
.g_nav .g_nav_list > li.open .dr_nav::after {
	transform: rotate(0);
}

.g_nav .g_nav_list > li .en {
	display: block;
	padding-top: 10px;
	color: #255ba7;
	font-family: 'Roboto', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 10px;
}

.g_nav .g_nav_list > li ul {
	position: static;
	top: auto;
	max-height: 0;
	background-color: #fff;
	overflow: hidden;
	transition: max-height ease 0.4s;
}

.g_nav .g_nav_list > li.open ul {
	max-height: 1000px;
}

.g_nav .g_nav_list > li ul.product_nav {
	display: none;
	margin: 0 auto;
	box-sizing: border-box;
	z-index: 1;
	max-width: inherit;
	left: auto;
	right: auto;
	padding: 0;
	border: none;
	border-radius: 0;
}

.g_nav .g_nav_list > li ul.product_nav.show {
	display: block;
}

.g_nav .g_nav_list > li ul.product_nav li {
	vertical-align: top;
	display: block;
	width: 100%;
	margin: 0;
	border-bottom: 1px solid #ddd;
}

.g_nav .g_nav_list > li ul.product_nav li:last-child {
	border-bottom: none;
}

.g_nav .g_nav_list > li ul.product_nav li a {
	padding: 20px 10px;
	border: none;
	border-radius: 0;
}

.g_nav .g_nav_list > li ul.product_nav li a:hover {
	background-color: #fafafa;
	color: #255ba7;
}

.g_nav .g_nav_list > li ul.product_nav li img {
	display: none;
}

.g_nav .g_nav_list > li ul.product_nav li span {
	font-size: 14px;
}


/*
 * --------------------------------------------------
 * 3. Responsiveness/media queries
 *--------------------------------------------------
 */
@media (max-width: 979px) {
  /* Navbar Collapsed (mobile) */

	.header .header-inner {
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}

	.g_nav .g_nav_inner {
		right: -220px;
		width: 220px;
	}

	.nav_open .g_nav_btn {
		position: fixed;
		right: 230px;
	}

	#footer .row-fluid.attention{
		width:calc(100% - 40px);
		margin:0 auto 40px auto;
		text-align: left;
	}

	#footer .container .row .sitemap{
		grid-template-columns: 1fr 1fr;
		gap:10px;
		width:calc(100% - 40px);
		margin:0 auto;
	}

	#footer .container .row .sitemap > li:first-child{
		grid-column: 1/3;
		text-align: center;
	}

	#footer .container .row .sitemap li dl dd ul li{
		margin-bottom: 5px;
	}

}

/*
 * --------------------------------------------------
 * 4. Misc
 * Other stuff
 *--------------------------------------------------
 */

 span.red{
 	color:#ff0000;
 	font-size:14px;
 }

 .medifuge dt{
  	width:150px;
  	color:#fff;
  	padding:5px 10px;
 	background-color:#181D62;
 	text-align:center;
 	margin-bottom:10px;
}

.medifuge dd{
 	clear:both;
 	color:#181D62
}

.medifuge dd span{
 	font-size:15px;
 	display:block;
 	margin-bottom:5px;
}

.stripping_tip dt{
  	width:150px;
  	color:#fff;
  	padding:5px 10px;
 	background-color:#2358A0;
 	text-align:center;
 	margin-bottom:10px;
}

.stripping_tip dd{
 	clear:both;
 	color:#181D62
}

.stripping_tip dd span{
 	font-size:15px;
 	display:block;
 	margin-bottom:5px;
}


/*
 * --------------------------------------------------
 * 5. popup
 *--------------------------------------------------
 */

.popup_overlay{
	display:none;
	width:100%;
	height:100%;
	background: rgba(0,0,0,0.6);
	position:fixed;
	z-index:100;
	text-align: center;
}
.btn_area_wrap{
	width:700px;
	padding: 60px 30px 30px;
	border-radius: 5px;
	position:absolute;
	top:50%;
	left:50%;
	background-color:#fff;
	z-index:11;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
}

.btn_area_wrap p {
	margin-bottom: 40px;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 26px;
}

.btn_area_wrap .btn_area {
	padding: 50px 30px 30px;
	background-color: #f2f2f2;
}

.btn_area_wrap .btn_area p{
	color: #255ba7;
	font-size: 18px;
	font-weight: bold;
}

.btn_area_wrap .btn_area .btn_list {
	font-size: 0;
	letter-spacing: 0;
}

.btn_area_wrap .btn_area .btn_list button {
	-webkit-appearance: none;
	margin-right: 30px;
}

.btn_area_wrap .btn_area .btn_list button,
.btn_area_wrap .btn_area .btn_list a {
	display: inline-block;
	width: 270px;
	height: 90px;
	border: 2px solid #255ba7;
	border-radius: 10px;
	background-color: #255ba7;
	vertical-align: top;
	color: #fff;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 86px;
	box-sizing: border-box;
}

.btn_area_wrap .btn_area .btn_list button:hover,
.btn_area_wrap .btn_area .btn_list a:hover {
	background-color: #fff;
	color: #255ba7;
	text-decoration: none;
}


@media (max-width: 767px) {

	.btn_area_wrap{
		width: calc(100% - 40px);
		max-width: 480px;
		padding: 40px 20px 20px;
	}
	.btn_area_wrap p {
		margin-bottom: 20px;
		font-size: 14px;
		line-height: 24px;
		text-align: left;
	}

	.btn_area_wrap p .br_pc {
		display: none;
	}

	.btn_area_wrap .btn_area {
		padding: 30px 15px 20px;
	}

	.btn_area_wrap .btn_area p{
		font-size: 16px;
		text-align: center;
	}

	.btn_area_wrap .btn_area .btn_list button {
		margin-right: 15px;
	}

	.btn_area_wrap .btn_area .btn_list button,
	.btn_area_wrap .btn_area .btn_list a {
		display: inline-block;
		width: calc((100% - 15px) / 2);
		height: 60px;
		font-size: 20px;
		font-weight: bold;
		line-height: 56px;
	}

}


/*
 * --------------------------------------------------
 * 6. トップページ
 *--------------------------------------------------
 */

.hero .inner{
	width:calc(100% - 140px);
	margin-left:140px;
	padding: 150px 0 40px 0;
	position: relative;
}

.hero .inner .title{
	margin-bottom: 80px;
}

.hero .inner .title h2{
	font-size:60px;
	font-weight:700;
	color:#777;
	line-height: 160%;
}

.hero .inner .title h2 span{
	display: inline-block;
	background-color: none;
	background: -webkit-linear-gradient(45deg, #54d0ff, #9f92ff 20%, #ff7689 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	/* 未対応ブラウザのために一応テキスト色を指定しておく */
	color: blue;
}

.hero .inner .products ul li{
	list-style: none;
	margin:0;
	padding: 0;
}

.hero .inner .products ul li a{
	display: block;
}

.hero .inner .products ul li a figure{
	margin:0;
	padding:0;
}
.hero .inner .products ul li a figure img{
	background:#f6f6f6;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(249,249,249,1)), color-stop(100%, rgba(240,240,240,1)));
	background:-webkit-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:   -moz-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:    -ms-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:     -o-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:        linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	-webkit-border-radius:5px;
		 -moz-border-radius:5px;
					border-radius:5px;
	-webkit-box-shadow:0 -3px 1px rgba(255,255,255,.6), inset 0 2px 1px rgba(255,255,255,.97), 0 0 3px -1px rgba(0,0,0,.7);
		 -moz-box-shadow:0 -3px 1px rgba(255,255,255,.6), inset 0 2px 1px rgba(255,255,255,.97), 0 0 3px -1px rgba(0,0,0,.7);
					box-shadow:0 -3px 1px rgba(255,255,255,.6), inset 0 2px 1px rgba(255,255,255,.97), 0 0 3px -1px rgba(0,0,0,.7);

	-webkit-box-shadow:rgba(0,0,0,.15) 0 1px 3px;
		 -moz-box-shadow:rgba(0,0,0,.15) 0 1px 3px;
					box-shadow:rgba(0,0,0,.15) 0 1px 3px;
					box-shadow:rgba(0,0,0,.15) 0 1px 6px \0/IE9;
	-webkit-border-radius:5px;
		 -moz-border-radius:5px;
					border-radius:5px;
}

.hero .inner .products ul li a figure figcaption{
	text-align: center;
	margin-top:10px;
	color:#444;
}

.hero .inner .channel{
	position:absolute;
	right:20px;
	top:170px;
}

.block.video ul{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap:40px;
	margin:0;
	padding:0;
	width:calc(100% - 40px);
}

.block.video ul li{
	margin:0;
	padding: 0;
	list-style: none;
}

.block.video ul li iframe{
	aspect-ratio:560/315;
	width:100%;
	height: 100%;
}


@media (max-width: 767px) {
	
	#content.content--index{
		padding-top:50px;
		padding-right: 0;
	}
	
	.hero .inner{
		width:calc(100% - 20px);
		margin:0 auto;
		padding-left: 20px;
	}
	
	.hero .inner .title{
		margin-bottom: 40px;
		padding-right: 20px;
	}

	.hero .inner .title h2{
		font-size:30px;
	}

	.hero .inner .title h2 br{
		display: none;
	}
	
	.hero .inner .products{
		width:100%;
		overflow: hidden;
	}
	
	.hero .inner .channel{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		margin-bottom: 40px;
		padding-right: 20px;
	}
	
	.hero .inner .channel a{
		width:100%;
	}

	.block.video ul{
		grid-template-columns: 1fr;
		width:calc(100% - 20px);
		padding-right: 20px;
	}

}


/*
 * --------------------------------------------------
 * 7. ニュース・セミナーの詳細記事
 *--------------------------------------------------
 */

 .page-news .container{
	 width:calc(100% - 40px);
	 max-width: 800px;
	 margin:0 auto;
 }

 .page-news .container .blog-post{
	 width:100%;
	 margin:0 auto;
 }

 .page-news #content .container .row{
	 margin-left: 0;
 }

/*
 * --------------------------------------------------
 * 8. 対応表
 *--------------------------------------------------
 */

 .features table{
	 background: #fff;
 }


/*
* --------------------------------------------------
* 9. サムネイルレイアウト(thumbnails)
*--------------------------------------------------
*/

.thumbnails--flex{
	width:100%;
	position: relative;
}

.thumbnails--flex .slides{
	width:100%;
	overflow: hidden;
}

.thumbnails--flex .flex-direction-nav .flex-next,
.thumbnails--flex .flex-direction-nav .flex-prev,
.thumbnails--products .flex-direction-nav .flex-next,
.thumbnails--products .flex-direction-nav .flex-prev{
	opacity: 1;
	font-size: 0;
	line-height: 43px;
	background: #eee;
	border-radius: 50%;
	text-shadow: none;
	text-align: center;
}
.thumbnails--flex .flex-direction-nav .flex-next:before,
.thumbnails--flex .flex-direction-nav .flex-prev:before,
.thumbnails--products .flex-direction-nav .flex-next:before,
.thumbnails--products .flex-direction-nav .flex-prev:before{
	font-size:18px;
}
.thumbnails--flex .flex-direction-nav .flex-prev,
.thumbnails--products .flex-direction-nav .flex-prev{
	left: 10px;
}
.thumbnails--flex .flex-direction-nav .flex-next,
.thumbnails--products .flex-direction-nav .flex-next{
	right: 10px;
}

@media (max-width: 767px) {
	
	.thumbnails--flex .flex-direction-nav .flex-prev,
	.thumbnails--products .flex-direction-nav .flex-prev{
		left: -10px;
	}
	.thumbnails--flex .flex-direction-nav .flex-next,
	.thumbnails--products .flex-direction-nav .flex-next{
		right: -10px;
	}
	
}

/* aタグで画像だけの想定 */

.thumbnails--square .slides .slide{
	
}

.thumbnails--square .slides .slide a{
	display: block;
	aspect-ratio:149/85;
}

.thumbnails--square .slides .slide a img{
	width:100%;
	height:100%;
	object-fit: cover;
	
	background:#f6f6f6;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(249,249,249,1)), color-stop(100%, rgba(240,240,240,1)));
	background:-webkit-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:   -moz-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:    -ms-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:     -o-linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	background:        linear-gradient(top, rgba(249,249,249,1) 50%, rgba(240,240,240,1) 100%);
	-webkit-border-radius:5px;
		 -moz-border-radius:5px;
					border-radius:5px;
	-webkit-box-shadow:0 -3px 1px rgba(255,255,255,.6), inset 0 2px 1px rgba(255,255,255,.97), 0 0 3px -1px rgba(0,0,0,.7);
		 -moz-box-shadow:0 -3px 1px rgba(255,255,255,.6), inset 0 2px 1px rgba(255,255,255,.97), 0 0 3px -1px rgba(0,0,0,.7);
					box-shadow:0 -3px 1px rgba(255,255,255,.6), inset 0 2px 1px rgba(255,255,255,.97), 0 0 3px -1px rgba(0,0,0,.7);

	-webkit-box-shadow:rgba(0,0,0,.15) 0 1px 3px;
		 -moz-box-shadow:rgba(0,0,0,.15) 0 1px 3px;
					box-shadow:rgba(0,0,0,.15) 0 1px 3px;
					box-shadow:rgba(0,0,0,.15) 0 1px 6px \0/IE9;
	-webkit-border-radius:5px;
		 -moz-border-radius:5px;
					border-radius:5px;
}


/*
* --------------------------------------------------
* 10. メニュー(商品以外)
*--------------------------------------------------
*/

.menu .section-menu .nav{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	border: 0;
}

.menu .section-menu .nav li a{
	border:1px solid #e6e6e6;
	background: none;
	box-shadow: none;
}

.menu .section-menu .nav li.active a{
	border-right-color: #e6e6e6;
}

@media (max-width: 1024px) {
	
	.menu .section-menu .nav{
		grid-template-columns: 1fr 1fr 1fr;
	}
	
}

@media (max-width: 767px) {
	
	.menu .section-menu .nav{
		grid-template-columns: 1fr 1fr;
	}
	
}

/*
* --------------------------------------------------
* 11. メニュー(商品、htmlは触らずに)
*--------------------------------------------------
*/

.tabbable.row-fluid{
	width:100%;
	overflow: hidden;
}

.tabbable.row-fluid .nav-tabs{
	width:100%;
	display:flex;
	float: none;
	border:0;
}

.tabbable.row-fluid .nav-tabs li{
	border:1px solid #e6e6e6;
	background: none;
	box-shadow: none;
	min-width: 200px;
}

.tabbable.row-fluid .nav-tabs:before,
.tabbable.row-fluid .nav-tabs:after{
	display: none;
}

.tabbable.row-fluid .nav-tabs li a{
	display: block;
}

.tabbable.row-fluid .nav-tabs li:hover,
.tabbable.row-fluid .nav-tabs li.active{
	color: #005bac;
	border-top: 4px solid #005bac;
	background: #fff;
}

.tabbable.row-fluid .nav-tabs li a:hover,
.tabbable.row-fluid .nav-tabs li.active a,
.tabbable.row-fluid .nav-tabs li.active a:hover{
	border:0;
	margin:0;
	background: none;
}

.tabbable.row-fluid .tab-content.span8,
.tabbable.row-fluid .tab-content.span9{
	margin:0 auto;
	float: none;
}

@media (max-width: 767px) {
	
	.tabbable.row-fluid .nav-tabs{
		flex-wrap: nowrap;
		overflow-x: scroll;
		padding: 4px;
	}
	/* 無効化 */
	.tabbable.row-fluid .nav-tabs.hidden-phone{
		display: flex !important;
	}
	
	.tabbable.row-fluid .tab-content .tab-pane{
		display: none;
	}
	
	.tabbable.row-fluid .tab-content .tab-pane.active{
		display: block;
	}
	
}