@charset "UTF-8";


/*.l-main{
	width:880px;
	margin:0 auto;
	padding:32px 0 96px;
	flex:1;
}*/



/***********************************************************************
  l-container
***********************************************************************/


.l-container{
	/*width:1120px;*/
	width:860px;
	margin-left:auto;
	margin-right:auto;
}
.l-container--half{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:25px;
}
.l-container--half__inner{
	display:flex;
	flex-direction:column;
}

@media screen and (max-width:750px){
	/*.l-main{
		width:min(880px,100% - 20px);
		padding:20px 0 64px;
	}*/
	.l-container{
		width:calc(100% - 20px);
	}

	.l-container--half{
		grid-template-columns:1fr;
	}

}


/***********************************************************************
  l-flex-row
***********************************************************************/


.l-flex-row{
	display:flex;
	width:100%;

	justify-content: flex-start;
	align-items: stretch; 
	flex-wrap: wrap;
}


@media screen and (max-width:750px){
	/*.l-flex-row{
		flex-direction:var(--sp-flex-direction, column)
	}*/
}


/***********************************************************************
  button
***********************************************************************/

.c-button{
	display:flex;
	justify-content:center;
	align-items:center;
	width:320px;
	min-height:0;
	padding:11px 20px;
	border-radius:4px;
	border:1px solid transparent;
	background:var(--color-toshiba-blue);
	color:var(--color-white);
	/*font-size:16px;*/
	font-weight:400;
	line-height:1.5;
	gap:15px;
	cursor:pointer;
	appearance:none;
	transition:opacity .2s ease,background .2s ease,border-color .2s ease;
}

.c-button[data-color="gray"]{
	background:var(--color-toshiba-gray-dark-80);

}

.c-button--icon:after{
	content:"";
	position:relative;
	width:7px;
	height:12px;
	aspect-ratio:19/33;
	flex:0 0 7px;
	background:url("data:image/svg+xml,%3csvg%20width='7'%20height='12'%20viewBox='0%200%207%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.910156%200L6.91016%206L0.910156%2012L0.00115633%2011.091L5.09116%206L0.000156403%200.909L0.910156%200Z'%20fill='white'/%3e%3c/svg%3e") center/contain no-repeat;
	top:1px;
}
.c-button__inner{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	position:relative;
	top:-1px;
}
.c-button__sublabel{
	display:block;
	font-size:14px;
	line-height:1.5;
}
.c-button--round{
	min-height:68px;
	border-radius:68px;
}
.c-button--round .c-button__label{
	font-size:18px;
	font-weight:700;
	line-height:1.5;
}
@media screen and (max-width:750px){
	.c-button{
		width:285px;
		padding:11px 15px 10px;
		margin:0 auto;
	}

	.c-button--round .c-button__label{
		font-size:16px;
		line-height:1.5;
	}

}
.c-button--outline{
	background:transparent;
	color:var(--color-toshiba-blue);
	border-color:var(--color-toshiba-blue);
	background-color:var(--color-white);
}
.c-button--outline.c-button--icon:after{
	background:url("data:image/svg+xml,%3csvg%20width='7'%20height='12'%20viewBox='0%200%207%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M0.910156%200L6.91016%206L0.910156%2012L0.00115633%2011.091L5.09116%206L0.000156403%200.909L0.910156%200Z'%20fill='%230064d2'/%3e%3c/svg%3e") center/contain no-repeat;
}
.c-button--light{
	background:var(--color-white);
	color:var(--color-toshiba-blue);
}
.c-button--disabled{
	pointer-events:none;
	background:var(--color-toshiba-gray-25);
	color:var(--color-black);
}
.c-button--disabled .c-button__label{
	font-weight:400;
}
.c-button--disabled:after{
	display:none;
}
.c-button--fit{
	width:fit-content;
	padding:11px 53px;
}
.c-button--large{
	width:auto;
	padding:11px 53px;
}
.c-button--align-center{
	margin-left:auto;
	margin-right:auto;
}


.l-button-grid{
	width:100%;
	display:flex;
	justify-content:center;
	gap:80px
}
@media screen and (max-width:750px){
	.l-button-grid{
		gap:20px;
		flex-direction:column
	}

}
@media(min-width:751px){
	.l-button-grid{
	margin-left:auto;
	margin-right:auto
	}

}


/***********************************************************************
  ul, ol
***********************************************************************/

/** ol **/
.c-ol-list{
	list-style-type:decimal;
	margin-left:20px;
	padding-left:0;
}
.c-ol-list li{
	/*font-size:16px;*/
	font-size: 1rem;
	font-weight:400;
	line-height:1.5;
}
.c-ol-list li+li{
	margin-top:10px;
}
/*.c-ol-list li.c-text--small,.c-ol-list li .c-text--small,.c-ol-list li small{
	font-size:14px;
	line-height:1.5;
}*/

/** ol data-color **/
.c-ol-list[data-color]{
	counter-reset:number; 
	list-style-type: none!important;
	padding:0.5em;
}
.c-ol-list[data-color] li{
	position: relative;
	padding-left: 2rem;
}
.c-ol-list[data-color] li:before{
	position: absolute;
	counter-increment: number;
	content: counter(number);

	display:inline-block;
	background: var(--color-toshiba-blue);
	color: var(--color-white);
	font-weight:bold;
	border-radius: 50%;
	left: 0;

	font-size: 1rem;
	width: 1.5rem;
	height:1.5rem;

	text-align: center;
	/*top: 50%;*/
	top: 0.8rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.c-ol-list[data-color="blue"] li:before{
	background: var(--color-toshiba-blue);
	color: var(--color-white);
}

.c-ol-list[data-color="yellow"] li:before{
	background: var(--color-toshiba-yellow);
	color: var(--color-black);
}




/** ul **/
.c-ul-list{
	list-style-type:disc;
	margin-left:20px;
	padding-left:0
}
.c-ul-list li{
	/*font-size:16px;*/
	font-size: 1rem;
	font-weight:400;
	line-height:1.5;
}
.c-ul-list li+li{
	margin-top:10px;
}
/*.c-ul-list li.c-text--small,.c-ul-list li .c-text--small,.c-ul-list li small{
	font-size:14px;
	line-height:1.5;
}
*/


/***********************************************************************
  c-top-section-heading
***********************************************************************/

.c-top-section-heading{
	margin-bottom:25px;
}

/*.c-top-section-heading__title{
	margin:0;
	padding-left:21px;
	font-size:30px;
	line-height:45px;
	font-weight:700;
	position:relative;
}
.c-top-section-heading__title:before{
	content:"";
	position:absolute;
	left:0;
	top:0;
	width:6px;
	height:45px;
	background:#e61e1e
}
@media screen and (max-width:750px){
	.c-top-section-heading__title{
		padding-left:20px;
		font-size:24px;
		line-height:36px
	}

	.c-top-section-heading__title:before{
		width:6px;
		height:36px
	}

}
*/

.c-top-section-heading--sub{
	margin-top:25px;
	margin-bottom:25px;
	border-top:1px solid var(--color-toshiba-gray);
	border-bottom:1px solid var(--color-toshiba-gray);
}
.c-top-section-heading--sub .c-top-section-heading__title{
	margin:0;
	padding:13px 0 13px 15px;
	font-size:24px;
	font-weight:700;
	line-height:1.5;
}
@media screen and (max-width:750px){
	.c-top-section-heading--sub .c-top-section-heading__title{
		font-size:20px;
		line-height:1.5;
	}

}
/*.c-top-section-heading--sub .c-top-section-heading__title:before{
	display:none
}
*/


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





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