/*
Theme Name:	Lightning-child
Template:	lightning
*/


/* =============================================================
  リセット
============================================================= */
/* img
----------------------------*/
img,
img.alignleft,
img.alignright,
img.aligncenter,
img.alignnone{
	border:none;
	box-shadow:0 0 0;
	border-radius:0;
	margin:0;
	padding:0;
	line-height: 0;
}

figure {
	line-height: 0;
}

/* a
----------------------------*/
 li a,
 p a {
	text-decoration: none;
}

/* リストスタイル
----------------------------*/
ul {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
	line-height: 0;
	margin: 0;
}

/* 見出し・段落
----------------------------*/
h2 {
	border: none;
	margin: 0;
	padding: 0;
}
h3 {
	border: none;
	margin: 0;
	padding: 0;
}
h3::after {
	display: none;	
}
h4 {
	border-radius: 0;
	background-color: transparent;
	margin: 0;
	padding: 0;
}
h5 {
	border: none;
	background-color: transparent;
	margin: 0;
	padding: 0;
}
h6 {
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
}

/* その他
----------------------------*/
/* clearfix */
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}




/* =============================================================
  全ページ共通部分
============================================================= */
/*  ページ全体
-------------------------------------------*/
/* リストを横並びに */
ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
/* リスト内イメージの幅調整 */
li img {
	width: 100%;
}


/*  ヘッダー
-------------------------------------------*/
/*  ロゴ・ナビ共通
----------------------------*/
/* 横幅を100%表示に */
 .site-header--layout--nav-float .site-header-container.container {
	display: block;
	max-width: 100%;
}
.site-header-container {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}
	
/*  ロゴ
----------------------------*/
/* センター表示に */
.site-header--layout--nav-float .site-header-logo {
	margin-right: 0;
	padding-top: 2.1rem;
	margin-bottom: 2rem;
	text-align: center;
}
.site-header--layout--nav-float .site-header-logo img {
	margin: 0 auto;
}
	
	
/*  グローバルナビゲーション
-------------------------------------------*/
/* ベースカラーと位置 */
/*body:not(.header_scrolled)*/
.global-nav--layout--float-right {
	background-color: #344063;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
/* 最大幅と横並び */
.global-nav-list {
	max-width: 1180px;
	width: 100%;
	flex-flow: row wrap;
	justify-content: space-between;		
}
/* 横幅（一つ分） */
.global-nav-list li {
	width: calc(100%/7);
}
.global-nav-list li .sub-menu li {
	width: 100%;
	text-align: center;
}
/* 文字カラー */
.global-nav-list li a {
	color: #fff;
	background-color: #344063; /*ゆっくり戻すため */
	transition: all 0.3s; /*ゆっくり戻すため */
}
/* ロールオーバー */
.global-nav-list li a:hover {
	background-color: #525c7a;
	transition: all 0.3s;
}
/* ロールオーバーのライン削除 */
.global-nav-list>li:before {
	border: none;
}
/* ロールオーバー現在位置表示 */
.global-nav-list .current_page_item a {
	background-color: #5d6682;
}


/* ページタイトル（トップ以外）
-------------------------------------------*/
/* 高さ・背景 */
.page-header {
	min-height: 7rem;
	background-image: url(https://sizeorder-noren.com/wp/wp-content/uploads/cmn_tit_back_img02.png);
	background-position: right; /* img01にした時 */
	background-repeat: repeat; /* img01の時no-repeat */
	background-blend-mode: multiply;
}
/* 文字 */
.page-header-title, h1.page-header-title {
    font-size: 1.5rem;
}


/*  コンテンツ
-------------------------------------------*/
/*  大枠
----------------------------*/
/* コンテンツ下マージン */
.site-body {
	padding-bottom: 5rem;
}

/*  見出し（トップ以外）
----------------------------*/
/* h2 */
h2 {
	font-weight: 600;
	text-align: center;
	border-bottom: 1px solid #000;
	padding: 0 0 0.5em;
}

/*  段落文字
----------------------------*/
/* 注釈 */
.annotation {
	font-size: var(--vk-size-text-meta);
	line-height: var(--vk-line-height-low);
}

/* ボタン
----------------------------*/
/* 共通
-------------------*/
/* シャドウ */
.contents_btn {
	transition: all 0.3s; /* ゆっくり戻すため記述 */
	opacity: 1; /* ゆっくり戻すため記述 */
	filter: brightness(100%); /* ゆっくり戻すため記述 */
	filter: drop-shadow(0.1rem 0.1rem 0.2rem #999);
}
/* ロールオーバー */
.contents_btn:hover {
	transition: all 0.3s;
	opacity: 0.8;
	filter: brightness(110%);
	filter: drop-shadow(0.1rem 0.1rem 0.2rem #999);
}
/* アンカー */
.contents_btn a {
	display: block;
	line-height: 0;
}


/* フォーム
----------------------------*/
/* ボタン
-------------------*/
/* 送信ボタン */
.submit_btn_wrapper {
	text-align: center;
}
.submit_btn {
	margin-top: 1.5rem;
	text-align: center;
}

/* 必須・任意アイコン
-------------------*/
/* アイコン共通（任意） */
.form .icon {
	display: inline-block;
	width: 3rem;
	font-size: 0.6rem;
	line-height: 1.5;
	color: #000;
	text-align: center;
	background-color: #ccc;
	border-radius: 3px;
	padding: 0.1rem 0.1rem 0.2rem;
	margin:0 0 0.25rem 0.5rem;
	vertical-align: middle;
}
/* 必須アイコン */
.form .icon.required {
	color: #fff;
	background-color: #ff0000;	
}

/* 郵便番号
-------------------*/
/* 国名非表示 */
.p-country-name {
	display: none;
}
/* 横幅 */
.zip input {
	display: block;
	width: 8rem;
}

/* 送信メッセージ・エラーメッセージ
-------------------*/
/* 項目ごとの未入力メッセージ */
.wpcf7-not-valid-tip {
    font-size: 0.8em;
}
/* 入力エラーメッセージ（送信ボタン下　） */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	text-align: center;
	border-color: #e9adad;
	background-color: #e9adad;
	padding: 1rem;
}
/* 送信成功メッセージ（送信ボタン下） */
.wpcf7 form.sent .wpcf7-response-output {
	color: #fff;
	text-align: center;
	border-color: #46b450;
	background-color: #46b450;
	padding: 1rem;
}
/* 未入力項目の色を変える */
.wpcf7-not-valid {
	color: #630015;
	border-color: #c20c33;
	background-color: #ffd9e1;
}

/* ajaxローダー
-------------------*/
/* 送信ボタン下のセンターに移動 */
.wpcf7-spinner {
	display: block;
	margin: 0.5rem auto;
}

/* reCAPTCHA
-------------------*/
/* ロゴ非表示 */
.grecaptcha-badge {
	visibility: hidden;
}
/* google文章 */
.recaptcha {
	text-align: center;
}

/*  フッター
-------------------------------------------*/
/* 大枠
-------------------*/
/* カラーとボーダー */
.site-footer {
	background-color: #dfe0e6;
	border: none;
	padding-top: 2rem;
}

/* フッターコンテント
-------------------*/
/* 共通
--------------*/
/* マージン削除 */
.site-footer-content .widget,
.site-footer .widget:last-child {
	margin-bottom: 0;
}
/* タイトル */
.site-footer-content p.tit {
	text-align: center;
	border-bottom: 1px dotted #c2c5d0;
	padding: 0.5rem;
	margin: 0 0 0.5rem;
}
/* リスト　*/
.site-footer-content .widget ul {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}
.site-footer-content .widget li {
	width: 47%;
	margin-top: 0.4rem;
}
.site-footer-content .widget li a {
	display: block;
	line-height: 0;
}

/* 2カラム目 リスト部分
--------------*/
/* 横幅 */
.site-footer-content .col-lg-4:nth-child(2) ul,
.site-footer-content .col-md-6:nth-child(2) ul {
	width: 90%;
	margin: 0 auto;
}
/* ラインハイト */
.site-footer-content .col-lg-4:nth-child(2) .widget a,
.site-footer-content .col-md-6:nth-child(2) .widget a {
	line-height: 1.5;
}
/* リストの中のリスト */
.site-footer-content .widget li ul li {
	width: 100%;
}

/* 1カラム目　VKお問い合わせのレイアウト
--------------*/
/* 横幅と位置 */
.site-footer .veu_contact .contact_txt {
	width: 100%;
	text-align: center;
}
/* 横幅 */
.site-footer .veu_contact .contact_bt {
	width: 100%;
}
/* 背景色 */
.veu_card .veu_card_inner {
	background-color: transparent;
}
/* 枠削除 */
.veu_card {
	border: none;
}
/* マージン */
 .site-footer .veu_contact .contact_frame,
 .sub-section--col--two .veu_contact .contact_frame {
    padding-top: 0.4rem;
	 padding-bottom: 0;
}
/* シャドウ */
.veu_card .veu_card_inner {
	box-shadow: none;
}
/* FAX番号 */
.site-footer .fax_contact {
	margin: 0.7rem 1.3rem 0;
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 0.3rem;
	background-color: rgba(255,255,255,0.3);
	text-align: center;
}
.site-footer .fax_contact p.tit {
	float: left;
	width: 40%;
	padding: 0;
	margin: 0;
	border-right: 1px solid #ccc;
	border-bottom: none;
	line-height: 1.8rem;
}
.site-footer .fax_contact p.number {
	float: right; 
	width: 60%;
	font-size: 17px;
	font-weight: 700;
	color: var(--vk-color-primary);
}

/* コピーライト
-------------------*/
/* コピーライトのマージン */
.site-footer-copyright p:nth-child(1) {
	margin: 2rem 0 1rem;
}
/* Lightningのコピーライト非表示 */
.site-footer-copyright p:nth-child(2) {
	display: none;
}

/* ページトップへボタン
-------------------*/
.page_top_btn {
	border-radius: 22px;
	background-color: rgba(52,64,99,0.8);
	box-shadow: 0 0 0 3px rgb(255 255 255 / 80%), 0 0 0 0 rgb(0 0 0 / 80%);
}