@charset "UTF-8";

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

block-vue：ユーザー側
ql-editor：管理側

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

.block-vue .paragraph-wrap	{
}


.block-vue	{
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top:30px;
}

.block-vue a	{
	color: #009FE6;
}
.block-vue a:hover	{
	text-decoration:underline;
}

.block-vue .paragraph-wrap	{
	margin-bottom:30px;

}

.block-vue .paragraph-wrap,
.block-vue .column-wrap,
.block-vue ul,
.block-vue ol,
.block-vue table,
.block-vue html-wrap	{
	margin-bottom:30px;
}


/* 見出し
.block-vue h3 {
	font-size: 1.8rem;
	line-height: 1.6666666667;
	font-weight: 700;
	color: #009FE6;
	border-bottom: 1px solid #EAEAEA;
	padding-left: 15px;
	padding-bottom: 5px;
	position: relative;
	margin-bottom: 1rem;
}
.block-vue h3::before {
	content: "";
	position: absolute;
	top: 7px;
	left: 0;
	width: 2px;
	height: calc(100% - 15px);
	background: #009FE6;
}
.block-vue h4 {
	font-size: 1.6rem;
	line-height: 1.6666666667;
	font-weight: 700;
	border-bottom: 1px solid #EAEAEA;
	padding-left: 15px;
	padding-bottom: 5px;
	position: relative;
	margin-bottom: 1rem;
}
*/
.block-vue h3 {
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 40px;
}
.block-vue h4 {
	font-size: 1.6rem;
	line-height: 1.6666666667;
	font-weight: 700;
	padding-bottom: 5px;
	position: relative;
	margin-bottom: 1rem;
}


.block-vue .text	{
	padd
}

/* 画像登録時にのプレビュー画像サイズ制御*/
.BEV-image-edit-inner .BEV-image	{
	max-height:300px;
}

.block-vue .ve-bold {
	font-weight:bold;
}
.ql-editor .ve-underline,
.block-vue .ve-underline {
	text-decoration:underline;
}

/* button 1 */
.block-vue a.ve-button1 {
	font-weight: 700;
	padding-left: 20px;
	position: relative;
}
.block-vue a.ve-button1::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	width: 16px;
	height: 16px;
	background: url("../img/common/ico_arw_circle_main.svg") no-repeat center center/contain;
}
.ql-editor a.ve-button1 {
	font-weight: 700;
	position: relative;
}

/* button 2 */
.block-vue a.ve-button2 {
	width: 310px;
	font-weight: 700;
	line-height: 1.6;
	position: relative;
	display: block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	box-sizing:border-box;
	/****/
	color: #fff;
	font-size: 1.8rem;
	background: #009FE6;
	border: 1px solid #009FE6;
	border-radius: 4px;
	padding: 2rem 2rem;
	margin:auto;
}
.block-vue a.ve-button2::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	width: 11px;
	height: 10px;
	background: url("../img/common/ico_arw_white.svg") no-repeat center center/contain;
	-webkit-transform: translate3d(0, 0, 0) translateY(-50%);
	transform: translate3d(0, 0, 0) translateY(-50%);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.block-vue a.ve-button2:hover {
	color: #009FE6;
	background-color: #fff;
}
.block-vue a.ve-button2:hover::before,
.block-vue a.ve-button2:hover::after	{
	background: url("../img/common/ico_arw_main.svg") no-repeat center center/contain;
}
.ql-editor a.ve-button2	{
	width: 150px;
	color: #fff;
	text-align: center;
	background: #009FE6;
	display: block;
	margin:auto;
	padding: 0.5rem 1rem;
}



/* YouTube */
.ql-editor span.ve-movbox	{
	width: 100%;
	color:#333;
	text-align: center;
	background: #ccc;
	border:solid 2px #ff0000;
	display: block;
	margin:auto;
	padding: 0.5rem 1rem;
}
.block-vue .c-singleMovie {
	position: relative;
	width: 100%;
	padding: 56.25% 0 0;
}
.block-vue .c-singleMovie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* 揃え */
.block-vue .text-left	{
}
.block-vue .text-center	{
	text-align:center;
}
.block-vue .text-right	{
	text-align:right !important;
}

/* list */
.block-vue ul,
.block-vue ol	{
	list-style-position:outside;
	padding-left:2em;
}
.block-vue li	{
	line-height:1.5;
}
.block-vue ul li	{
	list-style-type:disc;
}
.block-vue ol li	{
	list-style-type:decimal;
}

/* table	*/
.block-vue table	{
	width: 100%;
	border: 2px solid #767676;
	border-collapse: collapse;
	table-layout: fixed;
}
.block-vue table th,
.block-vue table td {
	font-size: 1rem;
	border: 1px solid #767676;
	padding: 2px;
	min-width: 3em;
}
.block-vue table th {
	background: #C6E9FA;
}

/* column	*/
.block-vue .column-wrap	{
	display: flex;
	justify-content: space-between;
	gap:10px;
}
.block-vue .column-wrap .column-item	{
	width:100%;
}
@media only screen and (max-width: 767px){
	.block-vue .column-wrap	{
		flex-wrap:wrap;
	}
}


/* 画像＆テキスト */
.block-vue .paragraph-wrap.align-left,
.block-vue .paragraph-wrap.align-right	{
	display: flex;
	justify-content: space-between;
	gap:15px;
}
.block-vue .paragraph-wrap .images,
.block-vue .paragraph-wrap .images .image,
.block-vue .paragraph-wrap .text	{
	width:100%;
}
.block-vue .paragraph-wrap .images .image	{
	text-align:center;
}
.block-vue .paragraph-wrap.align-left	{
	flex-direction:row;
}
.block-vue .paragraph-wrap.align-right	{
	flex-direction:row-reverse;
}
.block-vue .paragraph-wrap.align-left .text	{
	padding-left:1em;
}
.block-vue .paragraph-wrap.align-right .text	{
	padding-right:1em;
}
@media only screen and (max-width: 767px){
	.block-vue .paragraph-wrap.align-left,
	.block-vue .paragraph-wrap.align-right	{
		flex-wrap:wrap;
	}
}


/*
.ql-editor p	{
	padding-bottom:1em !important;
}	
*/
/* 揃え
.block-vue .ve-left,
.ql-editor .ve-left	{
	display:block;
}
.block-vue .ve-center,
.ql-editor .ve-center	{
	display:block;
	text-align:center;
}
.block-vue .ve-right,
.ql-editor .ve-right	{
	display:block;
	text-align:right;
}

.block-vue a.ve-left,
.ql-editor a.ve-left,
.block-vue a.ve-center,
.ql-editor a.ve-center,
.block-vue a.ve-right,
.ql-editor a.ve-right	{
	display:initial;
}
*/