@charset "utf-8";
/*
Theme Name: Lightning Child
Template: lightning
Author:アートフレア株式会社
Version: 1.2
*/
/* 標準データ最終更新日：2026/01/29  */


/*
 * WEBフォントの読み込み（@import url('https://fonts～'); ）はHeader.phpで行う
*/


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  General　全体的な設定
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* :root設定、bodyへの上書き、カラー変数設定など */
:root {
	--en:"Oswald", sans-serif;
}

.en {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
a {
	transition:.5s;
}
.fw-bold {
	font-weight:700;
}
.fw-bolder {
	font-weight:900;
}
h2 {
	font-size:clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);
}
.gap-0 {
	gap:0;
}
.gap-3 {
	gap:1rem;
}
.w-fitcontent {
	width:fit-content;
}
.bgblack {
	background:rgba(0,0,0,.5);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Common 汎用パーツ系
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 繰り返しボタン・見出し、余白設計など 汎用パーツへの上書き */

/*ボタンのリセット（下線消しとか）*/
.vk_button .vk_button_link.btn {border-radius: 0; transition:.5s;}
.vk_button .vk_button_link.btn:hover {box-shadow:none; opacity:1;}
.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_txt, .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_subCaption{
  text-decoration:none!important;
}

.vk_button_link.btn.has-vk-color-primary-background-color:hover {
	background-color:#000!important;
}

/*見出し下線*/
.wp-block-heading.is-style-vk-heading-solid_bottomborder_black.has-vk-color-primary-color {
	border-color:var(--vk-color-primary);
}

/*CTA*/
.cta-tel .vk_button_link_caption {
	font-size:clamp(1.875rem, 1.466rem + 2.05vw, 3rem);
	font-family:var(--en);
}

/*リスト横列*/
.list-column2 {
  display: inline-grid;
  column-gap: 3em;
  grid-template-columns: repeat(2, 1fr);
}
.list-column3 {
  display: inline-grid;
  column-gap: 3em;
  grid-template-columns: repeat(3, 1fr);
}
.list-column2 li,
.list-column3 li {	
	text-align:left;
}

/*リスト強調*/
.list-strong li {
  font-size:clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight:700;
}

/*STEP*/
.vk_step .vk_step_item .vk_step_item_dot_num {
	line-height:unset;
	font-size:1.2em;
}

/*カラムアウト*/
.column-out-left {
	margin-left: calc(50% - 50vw);
}
.column-out-right {
	margin-right: calc(50% - 50vw);
}


/*テーブル*/
:where(:not(.wp-block-table))>table,
:where(:not(.wp-block-table))>table :is(thead,tbody,tfoot,th,td) {
	border-color:#666;
}
.wp-block-flexible-table-block-table table th,
.wp-block-flexible-table-block-table table td {
	padding:1rem!important;
	font-size:1rem;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Header ヘッダーまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ヘッダー固定 */
body  {
	overflow-x: unset !important;
    display: flex;
    flex-direction: column;
}
.device-pc #site-header {
    position: sticky;
    top: 0;
}
.logged-in.device-pc #site-header {
    top: 32px;
}

/* グローバルナビ */
.global-nav-list>li>a {
	transition: .3s;
	border-bottom: 3px solid transparent;
}
.global-nav-list>li>a:hover,
.global-nav-list>li.current-menu-item>a {
    color: var(--vk-color-custom-1);
    border-bottom: 3px solid var(--vk-color-custom-1);
}

.site-header-container.container {
	max-width:100%;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}
.site-header-logo {
	grid-area: 1 / 1 / 3 / 2;
}
.header_nav_search_container {
	grid-area: 1 / 2 / 2 / 3;
	margin-top:15px;
}
.global-nav {
	grid-area: 2 / 2 / 3 / 3;
	margin-bottom:10px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Footer フッターまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* フッターウィジェット、フッターロゴ、コピーライト */

.widget.widget_block:not(.widget_media_image):not(.widget_text) {
	text-align:right;
}

.footer-nav {
	display:none;
}
.menu-footernavigation-container ul.menu {
	display:flex;
	justify-content:end;
}
.menu-footernavigation-container ul.menu li a,
.menu-footernavigation-container ul.menu li a:hover {
	background-color:transparent!important;
	border:none!important;
}
.menu-footernavigation-container ul.menu li a:hover {
	/*color:var(--vk-color-primary);*/
	text-decoration:underline;
	text-underline-offset: 8px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Toppage トップページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */

/*ティザー*/
.teaser-btn .vk_button_link.btn {
	padding:1.5rem;
	min-width:400px;
}
.teaser-btn .vk_button_link.btn .vk_button_link_caption {
	font-size:clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
	font-weight:700;
}
.teaser-btn .vk_button_link.btn .vk_button_link_before {
	color:var(--vk-color-primary);
}

.teaser-btn .vk_button_link.btn:hover {
	background-color:var(--vk-color-primary)!important;
}
.teaser-btn .vk_button_link.btn:hover .vk_button_link_caption,
.teaser-btn .vk_button_link.btn:hover .vk_button_link_before {
	color:#fff;
}

/*アイコンとボタンセット*/
.linkbox {
	padding:2rem 1rem;
	text-align:center;
	position:relative;
	transition:.5s;	
	height:100%;
}
.linkbox:hover {
	background-color:#000!important;
}
.linkbox a:after {
	content:"";
	width:100%;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	z-index:100;
}
.linkbox .vk_button_link_caption {
	font-size:clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	font-weight:700;
}
.linkbox .vk_button_link_after {
	position:absolute;
	right:1rem;
	top:50%;
	transform:translateY(-50%);
}

.linkbox2 .vk_button_link_caption {
	font-size:clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
.linkbox2 .vk_button_link_after {
	position:unset;
	right:unset;
	top:unset;
	transform:none;
}



/*数字付き*/
.count-number > .wp-block-column {
	padding:3rem 1rem 1rem;
	position:relative;
	/*height:100%;*/
}
.count-number > .wp-block-column:not(:last-child):after {
	content: "\f105";
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	position:absolute;
	right:-1.5rem;
	top:50%;
	transform:translateY(-50%);
	color:var(--vk-color-primary);
	font-size:2rem;
}
.count-number figure {
	text-align:center;
}
.num {
	font-size:clamp(3.75rem, 3.295rem + 2.27vw, 5rem);
	font-family:var(--en);
	position:absolute;
	left:50%;
	top:-1em;
	transform:translateX(-50%);
	z-index:100;
}

/*数字*/
.number {
	font-size:clamp(3.75rem, 3.295rem + 2.27vw, 5rem);	
	font-family:var(--en);
	line-height:1;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Pageheader, Breadcrumb 下層ページヘッダー・パンくずリスト
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 下層ページのページヘッダー、パンクズ設定 */



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Page 下層ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ページごと、パーツごとにコメントアウトで注釈を入れてください。 */

/* 会社概要 */

/* 会社概要　＞　代表あいさつ */

/*FAQ*/
.vk_faq .vk_faq_title:before {
	font-family:var(--en);
	background-color:#e76733;
}
.vk_faq .vk_faq_content:before {
	font-family:var(--en);
	background-color:#f1b82b;
}
.vk_faq,
.vk_faq .vk_faq_title {
	border-bottom:none;
}
.vk_faq {
	background:#fff;
	padding-inline:2rem;
	padding-bottom:0;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Archive　ブログ一覧ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Single　ブログ詳細ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  その他・追加機能
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */


