.is-style-bp_intro {
	color: #777;
	font-size: 120%;
}

/* Sub Header for Block Editor */
.editor-styles-wrapper .wp-block-bp-blocks-bp-subheader,
.editor-styles-wrapper .wp-block-bp-blocks-bp-subheader {
	color: #4693f5;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.6em;
	margin-top: 0;
	text-transform: uppercase;
}

div[data-type="bp-blocks/bp-subheader"] {
	margin-bottom: 0 !important;
}
div[data-type="bp-blocks/bp-subheader"]+div[data-type="core/heading"],
div[data-type="bp-blocks/bp-subheader"]+div[data-type="core/heading"]>h1,
div[data-type="bp-blocks/bp-subheader"]+div[data-type="core/heading"]>h2,
div[data-type="bp-blocks/bp-subheader"]+div[data-type="core/heading"]>h3,
div[data-type="bp-blocks/bp-subheader"]+div[data-type="core/heading"]>h4,
div[data-type="bp-blocks/bp-subheader"]+div[data-type="core/heading"]>h5,
div[data-type="bp-blocks/bp-subheader"]+div[data-type="core/heading"]>h6,
div[data-type="bp-blocks/bp-subheader"]+h1,
div[data-type="bp-blocks/bp-subheader"]+h2,
div[data-type="bp-blocks/bp-subheader"]+h3,
div[data-type="bp-blocks/bp-subheader"]+h4,
div[data-type="bp-blocks/bp-subheader"]+h5,
div[data-type="bp-blocks/bp-subheader"]+h6{
	margin-top:0;
}

/* Sub Header for Frontend */
.wp-block-bp-blocks-bp-subheader {
	font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6em;
    margin-top: 0;
    text-transform: uppercase;
}
.wp-block-bp-blocks-bp-subheader+h1,
.wp-block-bp-blocks-bp-subheader+h2,
.wp-block-bp-blocks-bp-subheader+h3,
.wp-block-bp-blocks-bp-subheader+h4,
.wp-block-bp-blocks-bp-subheader+h5,
.wp-block-bp-blocks-bp-subheader+h6 {
	margin-top: 0;
}

.bp-blocks-subheader-align-center {
	text-align: center;
}
.bp-blocks-subheader-align-right {
	text-align: right;
}

/* bpコンテナ */
.editor-styles-wrapper .container-wrapper {
	background-color: #f4f5f6;
	width: 100vw;
	margin-left: calc( 50% - 50vw );
	max-width: none;
	padding-bottom: 6rem;
	padding-top: 6rem;
}

.bp-rm-margin {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* figure caption */
.wp-block-image figcaption,
.wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.is-resized>figcaption {
	text-align: center;
}

/* wc-login-popup のための css */
/*タブ切り替え全体のスタイル*/
.tabs {
	margin: 0 auto;
}

 /*タブのスタイル*/
.tab_item {
	width: calc(100% / 2);
	height: 50px;
	border-bottom: 3px solid #333;
	background-color: #d9d9d9;
	line-height: 50px;
	font-size: 16px;
	text-align: center;
	color: #565656;
	display: block;
	float: left;
	font-weight: bold;
	transition: all 0.2s ease;
}
.tab_item:hover {
	opacity: 0.75;
}
  
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
	display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
	display: none;
	padding: 40px 20px 0;
	clear: both;
	overflow: hidden;
}
  
/*選択されているタブのコンテンツのみを表示*/
#wc-login:checked ~ #wc-login_content,
#wc-register:checked ~ #wc-register_content {
	display: block;
}
  
/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
	background-color: #333;
	color: #fff;
}

.tab_content label {
	display: block;
}