@charset "utf-8";
/*
Theme Name: Lightning Child
Template: lightning
Author:アートフレア株式会社
Version: 1.2
*/
/* 標準データ最終更新日：2025/04/14  */
/*
 * WEBフォントの読み込み（@import url('https://fonts～'); ）はHeader.phpで行う
*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  General　全体的な設定
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* :root設定、bodyへの上書き、カラー変数設定など */
body, html {
  font-family: 'Roboto', "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}
.fw-bold {
  font-weight: bold;
}
a:not([class]):hover {
  color: var(--vk-color-custom-1);
}
[id] {
  scroll-margin-top: 135px;
}
html {
  scroll-behavior: smooth;
}
nav a[href="#"] {
    pointer-events: none;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Common 汎用パーツ系
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 繰り返しボタン・見出し、余白設計など 汎用パーツへの上書き */
/*見出し>逆順テキストの調整*/
.is-style-af-heading-reverse .vk_heading_subtext {
  line-height: 1.2em;
  margin-bottom: .3em !important;
  font-weight: 600;
  text-transform: uppercase;
}
/*見出し > 上に線*/
.title-border-top {
  padding: 1.2em 0 1em 0;
  position: relative;
  border-top: 1px solid #ddd;
}
.title-border-top::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 3px;
  background-color: var(--vk-color-primary);
  position: absolute;
  left: 0;
  top: 0;
}
/*見出し装飾を白にする*/
.title-white {
  color: #fff;
}
.title-white::before {
  background-color: #fff !important;
}
/*見出し > 中央下線*/
.title-underline-center {
  position: relative;
  padding-bottom: .5em;
}
.title-underline-center::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 3px;
  background-color: var(--vk-color-primary);
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
/*見出し > 左に線*/
.title-bar-left {
  border-left: 5px solid var(--vk-color-primary);
  padding-left: 10px;
  line-height: 1em;
}
/*見出し >アイコンあり*/
.title-has-icon {
  display: flex;
  align-items: center;
  gap: .5em;
  margin: 0 0 .2em 0 !important;
}
/*見出し下線の色*/
.is-style-vk-heading-solid_bottomborder_black, .editor-styles-wrapper .block-editor-block-list__layout .is-style-vk-heading-solid_bottomborder_black {
  border-color: #ddd;
}
/* --- ボタン全体の共通設定 --- */
.vk_button .vk_button_link.btn, .editor-styles-wrapper .vk_button .vk_button_link.btn {
  padding: .8em 3em;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  border: none;
}
/* ホバー時の不透明度と影の無効化 */
.vk_button a:hover, .vk_button-color-custom a:hover {
  opacity: 1 !important;
  box-shadow: none !important;
}
/* --- テキスト・アイコンの設定 --- */
.vk_button .vk_button_link_caption {
  word-break: initial;
  font-weight: 500;
  z-index: 3;
  position: relative;
}
/* アイコンのアニメーション（色とサイズをゆっくり変化させる） */
.vk_button .vk_button_link i {
  transition: transform 0.3s ease-in-out, color 0.5s ease-in-out;
}
.vk_button .vk_button_link:hover i {
  transform: scale(1.2);
}
.vk_button .vk_button_link-type-text:hover .vk_button_link_txt, .vk_button .vk_button_link-type-text:hover .vk_button_link_subCaption {
  text-decoration: none !important;
}
/* --- アウトラインスタイルの設定 --- */
.vk_button .is-style-outline {
  background-color: #fff !important;
  border: 3px solid currentColor !important;
}
.vk_button .is-style-outline:hover {
  background: var(--vk-color-primary) !important;
  border: 3px solid currentColor !important;
}
.vk_button .is-style-outline .vk_button_link_caption {
  color: #111;
}
/* --- ホバー時の光るエフェクト（擬似要素） --- */
.vk_button a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1), opacity .6s;
  transform: scale(0, 1);
  transform-origin: right top;
  opacity: 0;
}
.vk_button a:hover::before {
  opacity: 0.3;
  transform-origin: left top;
  transform: scale(1, 1);
}
/* テキストタイプにはエフェクトを出さない */
.vk_button .vk_button_link-type-text::before {
  display: none;
}
/*テーブルのフォントサイズリセット*/ :where(:not(.wp-block-table)) > table :is(th, td) {
  font-size: unset !important;
}
/*余白調整*/
.gap-none {
  gap: 0;
}
.gap-4em {
  gap: 4em;
}
.gap-3em {
  gap: 3em;
}
.gap-2em {
  gap: 2em;
}
.gap-1em {
  gap: 1em;
}
.padding-none {
  padding: 0 !important;
}
/* Mediaとテキスト */
.wp-block-media-text:not(.has-media-on-the-right) .wp-block-media-text__content {
  padding-right: 0;
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding-left: 0;
}
@media (max-width: 768px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
    margin-top: 1em;
  }
}
/*画像ホバーズームイン*/
figure.hover-move, .hover-move figure, .wp-block-cover.hover-move {
  overflow: hidden;
}
.hover-move:hover img {
  transform: scale(1.1);
  transition: transform .6s;
}
.hover-move img {
  transition: transform .6s;
}
/*ホバーで上にあげる*/
.hover-transition-y {
  transition: background-color 0.4s ease, transform 0.3s ease;
}
.hover-transition-y:hover {
  transform: translateY(-4px);
}
/* リンクエリア拡大 */
.stretched-linkitem {
  position: relative !important;
}
.stretched-linkitem a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0);
}
.stretched-linkitem .wp-block-cover__inner-container {
  width: 100% !important;
}
.stretched-linkitem a {
  text-decoration: none;
  color: unset;
}
.stretched-linkitem a:hover {
  color: unset;
}
/* 見出しの干渉を防ぐ */
.stretched-linkitem h2, .stretched-linkitem h3, .stretched-linkitem h4, .stretched-linkitem h5, .stretched-linkitem h6, .stretched-linkitem p {
  position: static !important;
}
/*横幅コンテンツに応じて中央揃え*/
.fit-content {
  width: fit-content;
  margin-inline: auto;
}
/*画像白反転*/
.img-white img {
  filter: contrast(0) brightness(3);
}
/*区切り線の太さ*/
.wp-block-separator {
  border-top: 1px solid;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Header ヘッダーまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*ヘッダー*/
.site-header .container {
  max-width: 100%;
  width: 100%;
  padding: 1em;
}
/* ヘッダー固定 */
body {
  overflow-x: unset !important;
  display: flex;
  flex-direction: column;
}
.device-pc #site-header {
  position: sticky;
  top: 0;
}
.logged-in #site-header {
  top: 32px;
}
/* HOMEだけFVに透過にする */
.home header#site-header {
  position: fixed;
  transition: .5s;
  background-color: #fff;
}
.home:not(.scrolled) header#site-header {
  background-color: transparent;
  box-shadow: none;
}
/* グローバルナビ */
.global-nav {
  margin-top: 20px;
}
.global-nav-list > li .global-nav-name {
  font-size: 1rem;
}
.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);
}
/*ヘッダーお問い合わせボタン*/
.head-btn .btn{
  border-radius: 10px !important;
}
/*言語切替*/
.header_nav_search_container {
  position: unset;
}
ul.lang{
  display: flex;
  justify-content: flex-end;
  margin:15px 0 0 0;
  gap: 0;
  position: absolute;
  right: 290px;
  top: 0;
  z-index: 1;
}
ul.lang li{
  list-style: none;
  padding: 0 .5em;
  color: var(--vk-color-primary);
  font-weight: 600;
  border-right: 1px solid #ccc;
}
ul.lang li{
  list-style: none;
  padding: 0 .5em;
  color: var(--vk-color-primary);
  font-weight: 600;
  border-right: 1px solid #ccc;
}
ul.lang li:last-child{
  border: medium none;
}
ul.lang li a{
  font-weight: 400;
  color: #999;
  text-decoration: none;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Footer フッターまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* フッターウィジェット、フッターロゴ、コピーライト */
.foot-sitemap {
  margin: 0;
  padding: 0;
}
.foot-sitemap p {
  font-size: .9rem;
  line-height: 2em;
  margin: 0;
}
.foot-sitemap ul {
  margin: 0 !important;
  padding: 0 !important;
}
.foot-sitemap li {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: .8rem;
  line-height: 1.4em;
  margin: 5px 0 !important;
  gap: 0.5em;
}
.foot-sitemap li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: currentColor;
}
.foot-sitemap a {
  text-decoration: none;
}
.foot-sitemap a:hover {
  text-decoration: underline;
}
/*コピーライトを消す*/
.site-footer-copyright {
  display: none;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Toppage トップページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/*FV > コピー縦書き*/
.fv .copy-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.fv .copy {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3.5rem;
  line-height: 1.4em;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
/*カリキュラム*/
.curriculum .wp-block-cover {
  overflow: visible;
}
.curriculum .wp-block-group {
  position: relative;
  left: -30px;
  top: 0;
  z-index: 10;
  width: fit-content;
  transition: transform 0.5s ease;
}
.curriculum .wp-block-group p {
  margin: 0;
}
.curriculum .vk_gridColumn_item:hover .wp-block-group {
  transform: scale(1.1);
}
.curriculum .wp-block-cover__background {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.curriculum .vk_gridColumn_item:hover .wp-block-cover__background {
  opacity: .6;
}
/*入学案内*/
.guide-grid {
  position: relative;
  transition: transform 0.2s ease;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 15px -5px #ddd;
}
.guide-grid .row {
  gap: 0;
}
.guide-grid .vk_gridColumn_item {
  position: relative;
  border-right: 1px solid #eee;
  transition: background-color 0.4s ease;
}
.guide-grid .vk_gridColumn_item:last-child {
  border: medium none;
}
.guide-grid .vk_gridColumn_item:hover {
  background-color: #f5f5f5;
}
.guide-grid a {
  text-decoration: none !important;
}
.guide-grid a:hover {
  color: #111 !important;
}
.guide-grid a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; /* 他の要素より上に配置 */
  cursor: pointer;
}
.guide-grid .wp-block-columns {
  margin: 0;
  padding: 1.5em;
  gap: 1em;
}
.guide-grid .wp-block-columns p {
  margin: 0;
}
.guide-grid .wp-block-columns h2, .guide-grid .wp-block-columns h3, .guide-grid .wp-block-columns h4, .guide-grid .wp-block-columns h5, .guide-grid .wp-block-columns h6 {
  position: static;
}
/*進学・進路実績のバナー*/
.banner-item {
  width: 60%;
  margin: 0 auto;
  padding: 2em !important;
}
/*CTA*/
.cta .wp-block-vk-blocks-gridcolcard-item {
  border-left: 1px solid #fff;
  padding: 1em;
}
.cta {
  border-right: 1px solid #fff;
}
.cta figure {
  overflow: visible !important;
}
.cta p {
  margin: 0;
  line-height: 1em;
}
.device-pc .tel a{
    text-decoration: none !important;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Pageheader, Breadcrumb 下層ページヘッダー・パンくずリスト
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 下層ページのページヘッダー、パンクズ設定 */
.page-header .page-header-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  background-color: #fff;
  width: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 2em 4.5em 1em 3.5em;
  border-radius: 0 50px 0 0;
}
.page-header .page-header-inner .page-header-subtext {
  font-size: 1.6rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--vk-color-primary);
  text-transform: uppercase;
}
.page-header .page-header-inner .page-header-title {
  font-size: 2rem;
}
.breadcrumb .container {
  max-width: 100%;
  padding: 0 4.8em;
}
.breadcrumb-list {
  margin: 0;
  padding: 15px 0 !important;
}
.breadcrumb-list a {
  color: var(--vk-color-primary);
  text-decoration: none;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Page 下層ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ページごと、パーツごとにコメントアウトで注釈を入れてください。 */
/*基本のテーブル*/
.basic-table th {
  background-color: #ebeeee;
  border: 1px solid #ccc;
  padding: 1em !important;
}
.basic-table td {
  border: 1px solid #ccc;
  padding: 1em !important;
}
/*ドキュメントダウンロードリンク*/
.document-item {
  position: relative;
  padding: 1em !important;
  transition: background-color 0.3s ease;
}
.document-item a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.document-item a {
  color: #111;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.document-item:hover {
  background-color: #f9f9f9;
}
/*アンカーリンク*/
.anchor-btn {
  border-left: 1px solid #fff;
}
.anchor-btn .vk_gridcolcard_item {
  padding: 0;
  transition: .6s;
}
.anchor-btn .vk_gridcolcard_item .vk_gridcolcard_item_container {
  padding: 1em !important;
}
.anchor-btn .vk_gridcolcard_item {
  border-left: medium none;
}
.anchor-btn .vk_button_link-type-text .vk_button_link_caption {
  display: flex !important;
  justify-content: space-between;
}
.anchor-btn .vk_button_link-type-text .vk_button_link_caption i {
  color: var(--vk-color-primary);
}
.anchor-btn .vk_gridcolcard_item:hover {
  background-color: var(--vk-color-custom-1) !important;
  transition: .6s;
}
.anchor-btn .vk_gridcolcard_item:hover p, .anchor-btn .vk_gridcolcard_item:hover i {
  color: #fff;
}
/*カリキュラム*/
.curriculum-item {
  gap: 1em;
  padding-bottom: 1em;
  padding-top: 1em;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  margin-bottom: 10px;
}
.curriculum-item .wp-block-column {
  position: relative;
}
.curriculum-item .wp-block-column:nth-child(3) {
  padding-left: 1.8em;
}
.curriculum-item .wp-block-column:nth-child(3)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ddd;
}
/*到達度テストの装飾*/
.test-arrow {
  width: fit-content;
  background-color: #cf2e2e;
  color: #fff !important;
  margin: 0 auto 30px auto;
  padding: 0.2em 1em;
  border-radius: 50px;
  position: relative;
}
.test-arrow::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 15px solid #999;
  border-bottom: 0;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Archive　ブログ一覧ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/*投稿サイドメニュー*/
.sub-section .sub-section-title, .site-body-bottom .sub-section-title {
  padding: .5em .8em;
  background-color: var(--vk-color-primary);
  color: #fff;
  border-left: 8px solid var(--vk-color-custom-1);
}
.entry-header .entry-title, .archive-header-title {
  font-size: 2rem;
  position: relative;
  z-index: 0;
  padding: .8em 0 .4em 0;
}
.entry-header .entry-title::before, .archive-header-title::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--vk-color-primary);
}
.sub-section .widget_archive > ul li, .sub-section .widget_nav_menu > ul li, .localNavi {
  border-bottom: 1px solid #eee;
}
.sub-section .widget_archive > ul li:last-child, .sub-section .widget_nav_menu > ul li:last-child {
  border-bottom: none;
}
.sub-section .widget_archive > ul li a, .sub-section .widget_nav_menu > ul li a {
  border: none;
  padding: 1em 0;
  color: unset;
}
.veu_postList .postList a:hover, .localNavi li a:hover {
  text-decoration: none !important;
}
.sub-section .widget_archive > ul li a:hover, .sub-section .widget_nav_menu > ul li a:hover {
  text-decoration: underline;
  background: none;
  color: var(--vk-color-primary) !important;
}
.veu_postList .postList_title {
  font-size: .9rem;
}
.localNavi > li {
  position: relative;
  padding-left: 20px;
}
.localNavi li::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 18px;
  font-size: .9rem;
  color: #999;
}
.sub-section .widget_nav_menu ul.children {
  border-top: 1px solid #eee;
}
.sub-section .widget_nav_menu ul.children a {
  padding-left: 1em;
}
.sub-section ul li.current-cat a {
  background-color: transparent !important;
}
.entry-meta {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1em 0;
  color: #999;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  D追加
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 年間行事 */
.gyouji-table tr th{
    height: 6rem;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Single　ブログ詳細ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  その他・追加機能
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */