@charset "UFT-8";

html {
	font-size: 100%;
}

body {
	background: #fff;
	color: #000;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

/* RESET */

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	line-height: 1;
	font-size: 1em;
	text-decoration: none;
	z-index: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
table,td,tr,th{
	border: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img{
	vertical-align: top;
}

/*COMMON*/

.jumpContents {
	display: none;
}

.pc {
	display: none !important;
}

@media only screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
	.pc {
		display: block !important;
	}
}

/*NOSCRIPT*/

.nonscript_text {
	display: block;
	width: 960px;
	margin: 0 auto;
}

.nonscript_text p {
	padding: 1em;
	margin-top: 1em;
	padding-bottom: 1em;
	border: 2px solid red;
}


.w960 {
	width: 960px;
}

@media only screen and (max-width: 768px) {
	.w960 {
		width: 100%;
	}
}

p {
	line-height: 2;
}

p.huge {
	font-size: 240%;
	line-height: 1.7;
}

p.medium {
	font-size: 120%;
}
p.small {
	font-size: 80%;
}
span.small {
	font-size: 80%;
}

.bold {
	font-weight: bold;
}


/*global*/


#global a {
	color: #000;
	text-decoration: none;
}

#global ul {
	flex: 1;
	text-align: right;
	white-space: nowrap;
}


@media only screen and (max-width: 768px) {
	#global {
		height: 44px;
	}
	#global h1,
	#global ul {
		display: none;
	}
	#logo-toshiba img {
		width: 132px;
		height: 44px;
		padding: 0 0 0;
	}
}

@media only screen and (min-width: 769px) {
	#logo-toshiba img {
		width: auto;
		height: auto;
	}
	#global {
		display: flex;
		align-items: center;
		background: #fff;
		flex-wrap: nowrap;
		width: 960px;
	}
	#global ul li {
		display: inline-block;
		padding-left: 10px;
		font-size: 80%;
	}
}

@media only screen and (min-width: 960px) {
	#global {
		margin: 0 auto;
	}
	#global h1 {
		padding-left: 49px;
	}
}






/*#menu*/

#menu .menu-btn {
	display: none;
}

#menu {
	color: #fff;
	display: block;
}

#menu ul {
	width: 100%;
	display: flex;
	flex-direction: column;
/*	cursor: pointer;*/
}

#menu li {
	transition: height .3s ease-in-out;
	;
}

#menu dt {
	background: #000;
}

#menu dt,
#menu a,
#menu span {
	color: #fff;
	height: 47px;
	vertical-align: middle;
	line-height: 47px;
	display: block;
}

#menu span {
	cursor: default;
	background: #4177C8;
}

#menu li> a {
	background: #000;
	color: #fff;
	border-bottom: 1px solid #4d4d4d;
}
#menu li>a:hover {
	background: rgba(31, 40, 51, 0.6);
	background: #1d4581;
	color: #fff;
}
#menu dd span {
	background: #999;
	border-bottom: 1px solid #4d4d4d;
}
#menu dd a {
	background: rgba(31, 40, 51, 0.92);
	color: #fff;
}

#menu a:hover {
	transition: background 0.3s ease-in-out,color 0.3s ease;
	background: rgba(31, 40, 51, 0.92);
}

#menu li.single a {
	background: #000;
}

@media only screen and (max-width: 768px) {
	#menu .menu-btn {
		display: block;
		position: absolute;
		width: 50px;
		height: 44px;
		background: #4D4D4D;
		top: 0;
		right: 0;
		cursor: pointer;
		text-align: center;
	}

	#menu .menu-btn img{
		width: 44px;
		height: 44px;
	}

	#menu ul {
		display: none;
	}
	#menu dt,
	#menu a,
	#menu span {
		padding-left: 1.2em;
	}
	#menu dt {
		background: url(../img/common/bg_btn_menu_DOWN.png) right -5px center no-repeat #000;
	}
	#menu li.open dt {
		background: url(../img/common/bg_btn_menu_UP.png) right -5px center no-repeat #000;
	}
	#menu dd a {
		background: url(../img/common/bg_btn_menu_RIGHT.png) right -5px center no-repeat #666;
		/*		border-bottom: 1px solid #4d4d4d;*/
	}
	#menu dd a:hover {
		background: url(../img/common/bg_btn_menu_RIGHT.png) right -5px center no-repeat #666;
	}
	#menu dt {
		border-bottom: 1px solid #4d4d4d;
	}
	#menu dd {
		overflow: hidden;
		height: 0;
		transition: height 0.3s ease-in-out;
	}
	#menu li.menu-li-00.open dd {
		height: 47px;
	}
	#menu li.menu-li-01.open dd {
		height: 47px;
	}
	#menu li.menu-li-02.open dd {
		height: 94px;
	}
	#menu li.menu-li-03.open dd {
		height: 376px;
	}
	#menu li.menu-li-04.open dd {
		height: 47px;
	}
	#menu li.menu-li-05.open dd {
		height: 94px;
	}
}

@media only screen and (min-width: 769px),print {
	#menu .menu-btn {
		display: none;
	}
	#menu {
		position: relative;
		background: #000;
		z-index: 9999;
		height: 50px;
	}
	#menu ul {
		width: 960px;
		margin: 0 auto;
		text-align: center;
		display: flex !important;
		flex-direction: row;
		align-content: stretch;
		color: #fff;
	}
	#menu li {
/*		display: table-cell;*/
		display: block;
		position: relative;
		height: 50px;
		overflow: hidden;
		transition: height .3s ease-in-out;
		white-space: nowrap;
		text-align: center;
		width: 130px;
	}
	#menu li > a,
	#menu li > span{
		height: 50px;
	}
	#menu li dt,
	#menu li >a,
	#menu li >span
	{
		border-left: 1px solid #666;
	}
	#menu li.active dt{
		background: #4177C8;
	}
	#menu li dt:last-of-type{
		border-right: 1px solid #666;
	}
	#menu li a:last-of-type{
		border-right: 2px solid #666;
	}
	#menu li.menu-li-02{
		width: 185px;
	}
	#menu li.menu-li-03{
		width: 155px;
	}
	#menu li.menu-li-03 a{
		padding:0 0.5em;
	}
	#menu li.menu-li-02:hover {
		height: 150px;
	}
	#menu li.menu-li-03:hover {
		height: 550px;
	}
	#menu li.menu-li-05:hover {
		height: 150px;
	}
	#menu li.menu-li-06{
		width: 155px;
	}

	#menu a {
		color: #fff;
	}
	#menu li dd {
		display: flex;
		flex-direction: column;
	}
	#menu dt {
		height: 50px;
		vertical-align: middle;
		line-height: 50px;
	}
	#menu li dd {
		visibility: hidden;
		overflow: hidden;
		opacity: 0;
		transition: opacity 0.5s ease-in-out;
		;
	}
	#menu li:hover dd {
		visibility: visible;
		opacity: 1;
		transition: opacity 0.5s ease-in-out;
		;
	}
	#menu dd a {
		white-space: nowrap;
		height: 45px;
		line-height: 45px;
		vertical-align: middle;
		background: #666;
		border-bottom: 1px solid #4d4d4d;
	}
	#menu .menu-li-03 dd a:nth-child(4),#menu .menu-li-03 dd a:nth-child(5),#menu .menu-li-03 dd span:nth-child(4) {
		line-height: 25px;
		height: 50px;
		font-size: 97%;
	}
}

@media only screen and (min-width: 960px) {
	#menu {
		margin: 0 auto;
	}
}

/* HEADER END */

/*FOOTER*/

#FOOTER a {
	color: #fff;
}

#FOOTER a:hover {
	opacity: 0.5;
	transition: opacity 0.3s ease-in-out;
	;
}

#FOOTER {
	background: #231815;
	color: #fff;
	line-height: 1;
	font-size: 80%;
	/*	margin-top:40px;*/
}

#FOOTER .content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 960px;
	height: 80px;
	margin: 0 auto;
}

#FOOTER li {
	display: inline-block;
}

#FOOTER li:first-of-type:after {
	content: "|";
	padding-left: 5px;
}


#FOOTER .copy {
	padding-right: 10px;
}

@media only screen and (max-width: 768px) {
	#FOOTER {
		font-size: 120%;
		margin-top: 20px;
		width: 100%;
		background: #fff;
	}
	#FOOTER img {
		width: 100%;
	}

	#FOOTER .content {
		display: block;
		/*		flex-direction: column;*/
		width: 100%;
	}
	#FOOTER ul {
		color: #000;
		background: #E6E6E6;
		display: block;
		text-align: center;
		width: 100%;
		line-height: 3em;
	}
	#FOOTER ul a {
		color: #000;
		text-decoration: underline;
		font-size: 80%;
	}
	#FOOTER .company_logo {
		padding: 1.5em;
	}
	#FOOTER .copy {
		height: 100px;
		background: #231815;
		display: block;
		padding: 10px 2em 30px;
		line-height: 80px;
	}
}







#toTOP {
	display: block;
	position: fixed;
	/*	bottom: 50px;*/
	bottom: 150px;
	right: 20px;
	display: none;
	width: 60px;
	height: 60px;
}

#toTOP img {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	#toTOP {
		bottom: 3px;
		right: 3px;
		display: none;
		width: 60px;
		height: 60px;
		border-radius: 100%;
		box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.2);
	}
}

#MAIN {
	text-align: center;
}

#MAIN .w960 {
	margin: 0 auto;
	width: 960px;
}

#MAIN .w820 {
	margin: 0 auto;
	width: 820px;
}
#MAIN .w760 {
	margin: 0 auto;
	width: 760px;
}

#MAIN .h2 {
	padding-top: 80px;
	padding-bottom: 40px;
	font-weight: bold;
	text-align: center;
}

#MAIN .h2 h2 {
	font-size: 300%;
}

#MAIN .h2 p {
	font-size: 130%;
	line-height: 1;
	text-align: center;
}

#MAIN h3 {
	font-size: 240%;
	line-height: 1.7;
	padding-top: 0.5em;
	padding-bottom: 1em;
}
#MAIN h3:after,
#MAIN p.huge.underbar:after {
	content: "";
	display: block;
	width: 80px;
	height: 5px;
	background: #4177C8;
	margin: 15px auto 0;
}
#MAIN h4{
	text-align: left;
	padding-left: 1em;
	border-left: 5px solid #4177C8;
	border-bottom: 1px solid #666666;
	font-size: 150%;
	line-height: 2;
	font-weight: bold;
	margin-top: 1em !important;
	}


#MAIN div.sec {
	padding: 40px 40px 80px;
}

#MAIN div.sec.underbar {
	border-bottom: 1px solid #ccc;

}

#MAIN p {
	padding: 1em;
	text-align: left;
}

#MAIN p.center {
	text-align: center;
}
#MAIN p.right {
	text-align: right;
}

#MAIN p.img {
	margin: 70px auto;
}

#MAIN a.toTopPage {
	display: inline-block;
	color: #fff;
	background: #231815;
	padding: 1em 2em;
	margin: 80px auto 110px;
	font-size: 80%;
}
@media only screen and (max-width: 768px) {
	#MAIN .w760 {
		margin: 0;
		width: 100%;
	}
	#MAIN a.toTopPage {
		margin: 1em auto 1em;
		font-size: 80%;
	}
	#MAIN div.sec {
	padding: 8% 8% 8%;
	}

	#MAIN h3 {
	    padding-top: 1em;
	    padding-bottom: 0.5em;
	}

}



#MAIN a.btn {
	display: inline-block;
	color: #fff;
	background: #231815;
	font-size: 80%;
	padding: 1em 2em;
}

#MAIN a.btn:hover {
	opacity: 0.75;
	transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
	#MAIN {
		width: 100%;
		overflow: hidden;
	}
	#MAIN .w960 {
		width: 100%;
	}
	#MAIN .w820 {
		width: 94%;
		margin: 0 auto;
	}
	#MAIN p.img img {
		width: 100%;
	}
}


#MAIN .flex{
	display: flex;
	align-items: flex-start;
	text-align: left;
}
#MAIN .flex >*{
	flex: 1;
}
#MAIN .flex >*{
	margin-right: 10px;
}
#MAIN .flex >*:last-of-type{
	margin-right: 0;
}
#MAIN .btn-flex {
	display: flex;
	align-content: stretch;
	align-items: stretch;
}
#MAIN .btn-flex a {
	flex: 1;
	margin-right: 20px;
	padding-left: 1em;
	text-align: center;
	background: #4177C8;
}
#MAIN .btn-flex a:last-of-type {
	margin-right: 0;
}
@media only screen and (max-width: 768px) {
}
@media only screen and (min-width: 769px) and (max-width: 960px),print {
}
@media only screen and (min-width: 961px) and (max-width: 1400px) {
}
@media only screen and (min-width: 1401px) {
}

.bg-w {
	background: #fff;
}
.blue{
	color: #4177C8;
}

.pt0{padding-top: 0 !important;}
.pt20{padding-top: 20px !important;}
.pb20{padding-bottom: 20px !important;}
.pt40{padding-top: 40px !important;}
.pb40{padding-bottom: 40px !important;}

#MAIN .sec{
	padding-bottom: 80px;
}

.underline a,
#global ul li a,
#FOOTER ul li a{
	text-decoration: underline;
}