/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/



/* Contact Form 7のリスト項目をすべて縦並びに */
.wpcf7-list-item {
    margin-top:10px;
    display: block;
}


/* 投稿ページのヘッダー */
.page-header{
		margin-top:5%;

}

.page-header-inner {
    position: relative;
    z-index: 5;
    margin: 6em auto 6em;
	display: flex;
}

.page-header-title, h1.page-header-title {
	font-size: clamp(1.75rem, 1.25rem + 2.5vw, 3.125rem);
    font-weight: 700;
    line-height: var(--vk-line-height-low);
    margin: 0;
}

.page-header-subtext {
    margin-top: var(--vk-margin-meta);
    line-height: 1.05;
    font-size: clamp(1.313rem, 1.244rem + 0.34vw, 1.5rem);
    font-weight: bold;
	margin: auto 15px;
}

.breadcrumb {
	display: none;
    border-top: 1px solid rgb(0 0 0 / 0%);
    border-bottom: 1px solid rgb(0 0 0 / 0%);
}

/* 投稿ページのヘッダーここまで */



/* 投稿ページのサイドバー */
.widget_media{
    display:none;
}
/* 投稿ページのサイドバーここまで */



/* 投稿ページ詳細 */
.entry-meta-data-list {
    display: none;
}
/* 投稿ページ詳細ここまで */




/* テーブル */

.tablepress-id-1  .column-1{
	text-align:center;
	width:25%;
	vertical-align:middle;
	line-height:38px;
	font-size:16px;
	font-weight:bold;
	border-top: 1px solid #899097;
	border-bottom: 1px solid #899097;
}

.tablepress-id-1  .column-2{
	vertical-align:middle;
	font-size:16px;
	font-weight:bold;
	border-top: 1px solid #899097;
	border-bottom: 1px solid #899097;
}


/* テーブルここまで */


/* 問い合わせフォーム */

.wpcf7-spinner{
	display:none;
}

input[type=date], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=url], select, textarea {
    margin: 0.3rem 0 .5rem;
}

.btn_send {
    text-align: center;
}

input[type=submit] {
    border-radius: 15px;
	 margin-bottom: 20px;
}

.required{
	background-color: #4EB3DF;
    color: #fff;
    border-radius: 5px;
    padding: 5px;
    margin-left: 10px;
    font-size: 12px;
}

/*--------------------------------*/
/*  PCとスマホで改行を変える時のCSS
/*---------------------------------*/
/*改行*/
@media screen and (min-width: 650px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 650px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}
