@charset "utf-8";
/*
 * resposive.css は 991px 以下のデバイスへと反映されます。
 * 
 * ブレイクポイントは標準のLightningテーマおよびBootstrapの理念に基づき
 * sm: 576px　md: 768px　lg: 992px　xl: 1200px　となっているので、それに準じてください。
 * 
*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  General　全体的な設定
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* :root設定、bodyへの上書き、カラー変数設定など */
html {
    margin-top: unset !important;
}
.admin-bar #wpadminbar {
    visibility: hidden;
}
.admin-bar .vk-mobile-nav-menu-btn {
    top: 5px;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Common 汎用パーツ系
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 繰り返しボタン・見出し、余白設計など 汎用パーツへの上書き */
/* ボタンサイズ */
.vk_button .vk_button_link.btn-md {
/* 	width: 80vw;
	max-width: 400px; */
	width: 100%;
	max-width: unset;
}
/* TOPお問い合わせボタン */
.contact-section .btn-lg {
	width: 80vw;
    max-width: 650px;
}

/* 文字数の多い見出しサイズ変更 */
.h1-professionals,
.h1-information {
	font-size: clamp(40px, 34.2857px + 1.7857vw, 60px);
}

.btn-cta-line.vk_button.vk_button-align-wide {
    max-width: unset;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Header, Hamburger ヘッダーまわり・ハンバーガーナビ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
header#site-header {
    min-height: calc(44px + 5px + 5px);
    display: flex;
    align-items: center;
	top:unset;
}

/* ハンバーガーナビ */
#vk-mobile-nav-menu-btn {
    background: none;
    background-color: #fff;
    border: none;
}

/* 1. モバイルナビのメニューボタン（三本線） */
#vk-mobile-nav-menu-btn::after {
    content: '\f0c9';
    font: var(--fa-font-solid); /* v7対応：FamilyとWeightを一括指定 */
    font-size: 30px;
    color: #3F6DD6;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 44px;
    width: 44px;
    text-align: center;
    text-indent: 0;
}

/* 2. モバイルナビのメニューボタン（開いた時のバツ印） */
#vk-mobile-nav-menu-btn.menu-open::after {
    content: '\f00d';
}

/* 3. モバイルナビ内のテキストリンク設定 */
.vk-mobile-nav nav ul li a {
    color: var(--vk-color-primary);
    font-family: var(--barlow);
    font-weight: bold;
    font-size: 20px;
}

/* 4. モバイルナビ内の外部リンクマーク（豆腐解消） */
.vk-mobile-nav nav ul li a[target="_blank"]::after {
    content: "\f35d";
    font: var(--fa-font-solid); /* ここを修正 */
    font-size: 0.8em; /* リンク文字より少し小さくすると綺麗です */
    padding-left: .5em;
    color: #aaa;
}

/* 上のラインだけなくす */
.vk-mobile-nav nav>ul {
	border-top: none;
}
li.menu-item i:not([class]) {
    color: var(--vk-color-custom-1);
    font-family: var(--barlow);
    font-style: normal;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding-right: 1em;
}

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

#menu-footernavigation {
    gap: 1rem;
}

#menu-footernavigation a {
    padding: 20px 10px;
}

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

/* キャッチコピーフォントサイズ */
h1.mv-cathcopy {
	font-size: 3rem;
}
/* メインビジュアル横幅 */
.mv-col2 {
    transform: none;
    margin-inline: -15px !important;
	margin-bottom: -20vw !important;
}
.mv-slider {
	width: 100vw;
}

.mv-col1 .wp-block-vk-blocks-button.vk_button {
    text-align: center;
}
/* INFOMARTION */
/* ボックスの左上・右下欠け */
.information-section {
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

/* TOP入会フロー */
/* 横スクロール */
.flow-list {
    margin-inline: -15px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

/* 子カラム（Flow 01/02/03/04） */
.flow-list > .wp-block-column:nth-child(odd) {
	flex: 0 0 70%; /* ← カード幅を固定 */
	min-width: 240px;
	scroll-snap-align: start;
	display: block; 
	padding-inline:15px;
}



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



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Page 下層ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ページごと、パーツごとにコメントアウトで注釈を入れてください。 */
/* CONCEPT */
/* 背景を白に */
.concept-cover {
  background-color: #fff !important;
	min-height: unset !important;
}
/* 背景写真・グラデーションを消す */
.concept-cover .wp-block-cover__image-background,
.concept-cover .wp-block-cover__background,
.concept-cover .wp-block-cover__gradient-background {
  display: none !important;
}
/* 見出しと本文を黒に */
.concept-cover h2,
.concept-cover p {
  color: var(--vk-color-text-body) !important;
}
/* テーブル */
figure.wp-block-flexible-table-block-table.is-scroll-on-mobile {
    margin-inline: -15px;
    padding-inline: 15px;
}

.concept-point-img figure {
    max-width: 210px;
    margin-bottom: 0 !important;
}

/* SERVICE */
/* 「こんな受験生にピッタリ」縦並びに */
ul.service_weakpoint {
    flex-direction: column;
	gap:1rem;
  }
ul.service_weakpoint li  {
	max-width: 80%;
        min-width: 80%;
}
ul.service_weakpoint li:nth-child(even){
	margin-left:auto;
	margin-right:0;
}
/* INFORMATION */
/* 日付横余白 */
.postListText_date {
	margin-right: 0;
}

/* 料金体制 */
/* 基本料金の余白 */
.price-columns .vk_icon {
	margin-bottom: 0;
}
.price-columns {
	gap: 1em;
}

.price-list td {
	padding: 1rem 0.5rem !important
}

ul.simpletoc-list {
    display: flex;
    flex-direction: column;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Archive　ブログ一覧ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */



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



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



