/*
Theme Name: Lightning Child
Template: lightning
Description: Lightning の子テーマ（左サイドナビゲーション対応）
Author: Miyazaki
Version: 1.0
*/

@import url("../lightning/style.css");

:root {
  --content-width: 720px; /* PC時main幅*/
  --responsive-width: 1040px; /*  */
  --vk-color-text-body: #223045;
  --vk-margin-headding-bottom: 0.5em;
}
@media screen and (max-width: 1700px) {
  :root {
    --content-width: 600px; /* PC時main幅1 */
  }
}
@media screen and (max-width: 1040px) {
  :root {
    --content-width: 100%;
  }
}

/* 基本リセット */
* {
  box-sizing: border-box;
}
.sp-only {
  display: none !important;
}
.pc-only {
  display: block !important;
}
.pc-only-flex {
  display: flex !important;
}
.sp-only-flex {
  display: none !important;
}
.gap-none {
  gap: 0;
}
.page-id-24 .widget_search {
  display: none;
}
.fs14 {
  font-size: 14px;
  line-height: 1;
}
.mb0{
  margin-bottom: 0!important;
}
@media screen and (max-width: 768px) {
.sp-gap4{
  gap: 4px!important;
}
}
@media screen and (max-width: 1040px) {
  .sp-only {
    display: block !important;
  }
  .pc-only {
    display: none !important;
  }
  .pc-only-flex {
    display: none !important;
  }
  .sp-only-flex {
    display: flex !important;
  }
}

/* 固定背景設定（全デバイス共通） */
.fixed-background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  z-index: -1;
}

/* ヘッダーの基本背景画像設定（全デバイス共通） */
/* .site-header {
  background-image: url("http://mobilefirst.local/wp-content/uploads/2025/08/image008041.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
} */

/* モバイルファースト: 基本レイアウト */
.site-body {
  background: #e6e5e0;
  position: relative;
  z-index: 1;
  padding: 20px 15px;
  margin-top: 60px;
  width: 100%;
  min-height: 100vh;
  margin-bottom: 0 !important;
}

/* フッターの基本設定（モバイル） */
.site-footer {
  background: #223045;
  color: white;
  padding: 20px 15px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  border-top: none !important;
  box-shadow: none !important;
}
.site-footer .col-lg-4.col-md-6,
.site-footer
  .wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained {
  padding: 0;
}
.site-footer .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#block-32,
#block-33 {
  text-align: center;
}

#block-48,
#block-48 p,
#block-49,
#block-51,
#block-51 p,
#block-52,
#block-52 p {
  margin-bottom: 8px;
}
#block-48 p,
#block-51 p {
  font-size: 24px;
  border-bottom: 0.3px solid;
}
.site-footer-content {
  margin-bottom: 48px !important;
}
.site-footer-copyright p:nth-child(2) {
  display: none;
}

@media screen and (max-width: 768px) {
  #nav_menu-4,
  #nav_menu-2 {
    border-bottom: 0.3px solid #fff;
  }
}

/* メインコンテンツの中央配置（モバイル） */
.site-body-container,
.site-body .container,
.main-section,
.site-main {
  /* max-width: 720px; */
  width: 100%;
  padding: 0 !important;
  margin: 0;
}
.site-body-bottom {
  background-color: #223045 !important;
}

/* PC用レイアウト（768px以上） */
/* ヘッダー（ナビゲーション）を左側に固定 */
@media screen and (min-width: 1040px) {
  .site-header {
    position: fixed !important;
    left: 0;
    top: 0;
    width: calc(100vw - var(--content-width));
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3); /* 背景画像を透過させるため薄く設定 */
    background-image: url("https://www.shinichi-miyazaki.website/polestar/wp-content/uploads/2025/08/image008041.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    z-index: 1;
    padding: 0;
    overflow-y: auto;
    backdrop-filter: blur(20px);
    /* box-shadow: 5px 0 20px rgba(0, 0, 0); */
  }
}
@media screen and (min-width: 768px) {
  /* ページ全体のレイアウト調整 */
  body.has-sidebar-nav {
    margin: 0;
    padding: 0;
  }

  .site-header-logo img {
    max-height: 150px;
    background-color: rgba(255, 255, 255, 0.6);
  }
  .page-header {
    width: var(--content-width);
    position: fixed;
    top: 0;
    right: 0;
    background-color: #e6e5e0 !important;
  }

  /* ナビゲーション要素を前面に表示 */
  .has-sidebar-nav .navbar,
  .has-sidebar-nav .navbar-nav,
  .has-sidebar-nav .navbar-brand {
    position: relative;
    z-index: 2;
  }

  /* site-bodyを画面全体に広げ、左側にマージンを設定 */
  .has-sidebar-nav .site-body {
    margin-left: auto;
    margin-top: 0;
    margin-right: 0;
    max-width: var(--content-width);
    min-height: 100vh;
    padding: 100px 40px 40px;
    background: #e6e5e0;
    position: relative;
    z-index: 2;
  }

  /* site-footerをsite-bodyと同じ設定にする */
  .has-sidebar-nav .site-footer,
  .has-sidebar-nav .site-footer-container {
    margin-left: auto !important;
    margin-right: 0 !important;
    max-width: var(--content-width) !important;
    width: 100% !important;
    background-color: #223045;
    color: white;
    padding: 40px;
    backdrop-filter: blur(10px);
    /* border-top: 3px solid rgba(255, 255, 255, 0.1); */
    position: relative;
    z-index: 2;
    border-radius: 10px; /* site-bodyと同様の角丸 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* site-bodyと同様の影 */
  }

  /* フッター内のコンテンツ調整 */
  .has-sidebar-nav .site-footer .container,
  .has-sidebar-nav .site-footer-container .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  /* site-body-bottomをsite-bodyと同じスタイルに統一 */
  .site-body-bottom {
    max-width: var(--content-width);
    margin: 0 0 0 auto;
    background: #e6e5e0;
    position: relative;
    z-index: 2;
  }

  /* フッターリンクのスタイル調整 */
  .has-sidebar-nav .site-footer a {
    color: #ffffff;
    transition: color 0.3s ease;
    text-decoration: none;
  }

  .has-sidebar-nav .site-footer a:hover {
    color: #cccccc;
    text-decoration: underline;
  }

  /* ナビゲーションメニューを縦並びに */
  .has-sidebar-nav .navbar-nav {
    flex-direction: column !important;
    width: 100%;
    padding: 20px 0;
    margin: 0;
  }

  .has-sidebar-nav .navbar-nav .nav-item {
    width: 100%;
    margin: 0;
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
  }

  .has-sidebar-nav .navbar-nav .nav-link {
    color: white !important;
    padding: 18px 30px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* テキストの可読性向上 */
  }

  .has-sidebar-nav .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    color: #ffffff !important;
    border-left: 4px solid #fff;
  }

  /* ロゴの調整 */
  .has-sidebar-nav .navbar-brand {
    color: white !important;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* テキストの可読性向上 */
  }
}
  @media screen and (min-width: 768px) and (max-width: 1040px) {
    .page-header {
      display: none;
    }
    .site-header {
      background-color: #e6e5e0;
    }
    .breadcrumb {
      background-color: #e6e5e0;
    }
    .site-body {
      margin-top: 0px !important;
      padding-top: 0px !important;
    }
    .site-header-logo img {
      background-color: transparent !important;
      max-height: 70px !important;
    }
    .sp-top-image img {
      margin-left: -25px !important;
    }
  }


  .site-header-container,
  body.header_scrolled .site-header-container {
    position: static !important;
    width: 100% !important;
  }

  body.device-pc .vk-mobile-nav-menu-btn,
  body.device-pc .vk-mobile-nav {
    display: block;
  }

  /* ハンバーガーボタンの位置調整 */
  .vk-mobile-nav-menu-btn {
    right: 20px;
    left: auto !important;
  }

  /* 右配置の場合 */
  .vk-mobile-nav-menu-btn.position-right {
    right: 50px;
  }

  /* ボタンサイズの調整 */
  .vk-mobile-nav-menu-btn {
    width: 60px;
    height: 60px;
  }
  .vk-mobile-nav {
    padding: 120px 10px 0 !important;
  }


/* レスポンシブ調整もsite-bodyと同様に */
@media (min-width: var(--content-width)) {
  .site-body-bottom {
    max-width: var(--content-width);
  }
}

@media (min-width: var(--content-width)) {
  .site-body-bottom {
    max-width: var(--content-width);
  }
}

/* アニメーション定義 */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 大画面用の調整（1200px以上） */
@media screen and (min-width: 1040px) {
  .has-sidebar-nav .site-body {
    max-width: var(--content-width);
  }
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: none;
  }

  .has-sidebar-nav .site-footer,
  .has-sidebar-nav .site-footer-container {
    max-width: var(--content-width) !important;
  }
}
.menu-item-359 {
  margin-bottom: 20px !important;
}
@media (max-width: 1040px) {
  body:not(.page-id-24) .header-overlay {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 100% !important;
  }
  /* body.custom-background{
    background-color: #e6e5e0!important;
  } */
}
.breadcrumb{
  position: relative;
  z-index: 100;
  text-align: right;
}
/* モバイル時のリセット */

/* @media screen and (max-width: 1040px) {
  .site-header {
    background-color: #e6e5e0 !important;
  }
  .site-footer a {
    color: #fff;
  }
  .page-header {
    display: none;
  }
  .top-program-item-title {
    gap: 4px;
    margin-bottom: 18px !important;
  }
  .top-program-item-title .has-xxx-large-font-size {
    margin-bottom: 0 !important;
  }
  body.has-sidebar-nav {
    padding: 0;
    margin: 0;
  }
  .vk-mobile-nav-menu-btn {
    top: 10px !important;
    left: 20px;
  }
  .site-header,
  .site-header-container {
    position: fixed !important;
    width: 100% !important;
    height: auto !important;
    background-color: #e6e5e0;
  }
  .site-body {
    margin: 0;
    margin-top: 60px;
    width: 100%;
  }
  .site-footer {
    margin: 0;
    width: 100%;
  }
  .site-body {
    background: url(https://shinichi-miyazaki.website/wp-content/uploads/2025/07/Ad...);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .vk-mobile-nav {
    width: 100% !important;
  }
  .gt-selected {
    background-color: #e6e5e0 !important;
  }
  h2 {
    font-size: 24px;
  }
  .has-x-large-font-size {
    font-size: 28px !important;
  }
} */
@media screen and (max-width: 768px) {
  .site-header {
    background-color: #e6e5e0 !important;
  }
  .site-footer a {
    color: #fff;
  }
  .page-header {
    display: none;
  }
  .top-program-item-title {
    gap: 4px;
    margin-bottom: 18px !important;
  }
  .top-program-item-title .has-xxx-large-font-size {
    margin-bottom: 0 !important;
  }
  body.has-sidebar-nav {
    padding: 0;
    margin: 0;
  }
  .vk-mobile-nav-menu-btn {
    top: 20px !important;
    left: 20px;
  }
  .vk-mobile-nav-menu-btn {
    width: 40px;
    height: 40px;
  }
  .site-header,
  .site-header-container {
    position: fixed !important;
    width: 100% !important;
    height: auto !important;
    background-color: #e6e5e0;
  }
  .site-body {
    margin: 0;
    margin-top: 30px;
    width: 100%;
    padding-top: 0 !important;

  }
  /* フッターのモバイル調整 */
  .site-footer {
    margin: 0;
    width: 100%;
  }
  /* モバイルの場合は背景を直接設定 */
  /* .site-body {
    background: url(https://shinichi-miyazaki.website/wp-content/uploads/2025/07/Ad...);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  } */
  .vk-mobile-nav {
    width: 100% !important;
  }
  .gt-selected {
    background-color: #e6e5e0 !important;
  }
  h2 {
    font-size: 24px;
  }
  .has-x-large-font-size {
    font-size: 28px !important;
  }
}
h1 {
  margin-bottom: 40px;
  text-align: center;
}
h2 {
  border-top: none !important;
  border-bottom: none !important;
  margin-top: 0 !important;
  margin-bottom: 12px;
  padding: 0;
}

/* general */
.section-title {
  max-width: 100%;
}
/* top page */
.top-why p {
  margin: 0 !important;
}
.top-why-text {
  max-width: 100%;
}
.top-program-item-title p {
  margin-bottom: 0 !important;
}
.top-program-item-title {
  justify-content: space-between;
}
.top-speriority-table td:nth-child(2) {
  background-color: var(--vk-color-primary);
}
.voice-item-number p {
  margin-bottom: 0 !important;
}
.voice-item-work {
  margin-bottom: 8px !important;
}
.voice-box {
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
}
.top-course-item-row {
  gap: 0 !important;
}
.site-body-bottom {
  padding: 40px;
}
.site-body-bottom .container {
  padding: 0;
}
.site-body-bottom p {
  color: var(--wp--preset--color--light-gray) !important;
}
@media screen and (max-width: 768px) {
  .page_top_btn {
    bottom: 12% !important;
  }
}

/* 固定フッターボタンのスタイリング */
.fixed-footer-buttons {
  position: fixed;
  bottom: 0;
  left: auto;
  right: 0;
  max-width: 100%;
  width: 100%;
  background: #e6e5e0;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px;
}
.fixed-footer-buttons-area {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.fixed-footer-buttons-area-left,
.fixed-footer-buttons-area-right {
  width: 50%;
}
/* has-mat-background-color の色定義（必要に応じて調整） */
.fixed-footer-buttons-right {
  background-color: #f6a800 !important; /* 先ほどの35%薄めたオレンジ色 */
  color: #333 !important;
}
.fixed-footer-buttons-left {
  background-color: #f9c659 !important; /* 先ほどの35%薄めたオレンジ色 */
  color: #333 !important;
}

/* メインコンテンツの下部余白を追加（固定ボタンと重ならないように） */
.site-body,
.site-footer {
  margin-bottom: 120px;
}
.nav li a,
nav li a {
  color: #fff !important;
}
.admin-bar .vk-mobile-nav.vk-mobile-nav-drop-in {
  right: 0;
  width: var(--content-width);
}
.vk-mobile-nav.vk-mobile-nav-drop-in {
  right: 0;
  width: var(--content-width);
}
.vk-mobile-nav.vk-mobile-nav-drop-in.vk-mobile-nav-open {
  top: 0 !important;
  right: 0;
  width: var(--content-width);
}
@media screen and (max-width: 768px) {
  .vk-mobile-nav.vk-mobile-nav-drop-in.vk-mobile-nav-open {
    top: 60px !important;
    padding-top: 64px;
    background-color: #e6e5e0;
  }
}
.vk-mobile-nav.vk-mobile-nav-drop-in.vk-mobile-nav-open
  .vk-mobile-nav-menu-outer
  a {
  color: #223045 !important;
}

/* pc背景画像に文字を乗せる */
.header-overlay {
  position: fixed;
  /* background-color: #fff; */
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100vw - var(--content-width));
  /* height: 100vh; */
  /* display: flex; */
  align-items: center;
  justify-content: flex-start;
  z-index: 100;

}

.header-text-content {
  text-align: center;
  /* color: white; */
  padding: 8px 0;
}

.header-main-text {
  font-size: 2vw;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.05em;
}

.header-sub-text {
  font-size: 1.6vw;
  font-weight: 500;
}

.header-overlay-flex-list {
  display: flex;
  justify-content: space-around;
  align-items: end;
  list-style-type: none;
  margin-top: 0;
  background-color: #fff0c7;
  margin-bottom: 0;
}
.header-overlay-flex li span {
  font-size: 3vw;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  margin: 0 0.2em;
}
.header-overlay-flex li {
  font-size: 1.2vw;
  text-align: center;
  line-height: 1.3;
  /* border: 3px solid var(--vk-color-background-orange); */
  padding: 1rem;
  border-radius: 20px;
}
.header-overlay-flex a{
  color: var(--wp--preset--color--text);
  text-decoration: none;
}
@media screen and (min-width: 1040px) {
  .sidebar-nav {
    z-index: 90 !important;
  }
}
/* @media screen and (min-width: 768px) {
  .sidebar-nav{
    z-index: 90!important;
  }
} */
@media screen and (max-width: 768px) {
  .header-overlay {
    top: 308px !important;
  }
  .header-overlay-flex-list {
    display: block;
    padding-left: 0;
    width: 100vw;
    margin-left: -25px;
  }
  .sp-top-image {
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    max-width: none;
  }
}

@media screen and (max-width: 768px) {
  .header-overlay {
    top: 83vw !important;
    position: absolute;
    bottom: inherit;
    width: 100%;
    padding: 0 25px;
    z-index: 100;
  }
  .sp-top-image {
    margin-bottom: 115vw !important;
  }
}
@media screen and (max-width: 1040px) {
  .header-overlay {
    top: 78vw !important;
    position: absolute;
    bottom: inherit;
    width: 100%;
    padding: 0 25px;
    z-index: 100;
  }
  .header-text-content {
    max-width: 100%;
  }

  .header-overlay-flex-list li {
    margin-bottom: 8px;
    font-size: 24px;
    padding: 0 0.5rem;
  }
  .header-overlay-flex li span {
    font-size: 48px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .header-main-text {
    font-size: 28px;
  }
  .header-sub-text {
    font-size: 24px;
  }
  .sp-top-image {
    margin-bottom: 320px;
    width: 100vw;
    margin-left: -15px;
    margin-right: -15px;
    max-width: none;
  }
  .sp-top-image img {
    border-radius: 0 !important;
  }
}

/* 下層ページ共通 */
.page-table-contents-item p {
  margin-bottom: 0 !important;
}
.page-section-title-area {
  padding: 0 !important;
}
.page-section-title-en {
  margin-bottom: -12px !important;
}
/* コースフロー文字だけ */
/* Gateway */
.page-flow-gateway-text-left {
  position: absolute;
  left: 34px;
}
.page-flow-gateway-text-right {
  position: absolute;
  right: 42px;
}
.page-flow-gateway-text-right2 {
  position: absolute;
  right: 34px;
}
.page-flow-gateway1 {
  top: 26px;
}
.page-flow-gateway2 {
  top: 110px;
}
.page-flow-gateway5 {
  top: 195px;
  font-size: 15px;
}
@media screen and (max-width: 1700px) {
  .page-flow-gateway-text-left {
    position: absolute;
    left: 26px;
  }
  .page-flow-gateway-text-right {
    position: absolute;
    right: 27px;
  }
  .page-flow-gateway-text-right2 {
    position: absolute;
    right: 17px;
  }
  .page-flow-gateway1 {
    top: 21px;
  }
  .page-flow-gateway2 {
    top: 90px;
    font-size: 15px;
  }
  .page-flow-gateway5 {
    top: 152px;
    font-size: 15px;
  }
}
@media screen and (max-width: 1040px) {
  .page-flow-gateway-text-left {
    position: absolute;
    left: 51px;
  }
  .page-flow-gateway-text-right {
    position: absolute;
    right: 47px;
  }
  .page-flow-gateway-text-right2 {
    position: absolute;
    right: 43px;
  }
  .page-flow-gateway1 {
    top: 31px;
  }
  .page-flow-gateway2 {
    top: 118px;
    /* font-size: 13px; */
  }
  .page-flow-gateway5 {
    top: 206px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .page-flow-gateway-text-left {
    position: absolute;
    left: 6px;
  }
  .page-flow-gateway-text-right {
    position: absolute;
    right: 10px;
  }
  .page-flow-gateway-text-right2 {
    position: absolute;
    right: 4px;
  }
  .page-flow-gateway1 {
    top: 5vw;
  }
  .page-flow-gateway2 {
    top: 14vw;
    font-size: 13px;
  }
  .page-flow-gateway5 {
    top: 26vw;
    font-size: 12px;
  }
}
/* コースフロー文字だけ */
/* マット・リフォーマー */
.page-flow {
  position: relative;
}
.page-flow-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.page-flow-text-divide-left1 {
  position: absolute;
  left: 15%;
}
.page-flow-text-divide-left2 {
  position: absolute;
  left: 27%;
}
.page-flow-text-divide-right {
  position: absolute;
  right: 6%;
}
.page-flow-text1 {
  top: 10px;
}
.page-flow-text2 {
  top: 80px;
}
.page-flow-text3 {
  top: 155px;
}
.page-flow-text4 {
  top: 227px;
}
.page-flow-text5 {
  top: 310px;
}
.page-flow-text6 {
  top: 380px;
}
.page-flow-text7 {
  top: 300px;
}
.page-flow-text7.reformer {
  top: 310px;
  right: 3%;
}
@media screen and (max-width: 1700px) {
  .page-flow-text1 {
    top: 7px;
  }
  .page-flow-text2 {
    top: 67px;
  }
  .page-flow-text3 {
    top: 124px;
  }
  .page-flow-text4 {
    top: 180px;
  }
  .page-flow-text-divide-left1 {
    position: absolute;
    left: 11%;
  }
  .page-flow-text5 {
    top: 248px;
  }
  .page-flow-text-divide-left2 {
    position: absolute;
    left: 25%;
  }
  .page-flow-text6 {
    top: 305px;
  }
  .page-flow-text-divide-right {
    position: absolute;
    right: 4%;
  }
  .page-flow-text7 {
    top: 239px;
  }
  .page-flow-text7.reformer {
    top: 250px;
    right: 0.5%;
  }
}
@media screen and (max-width: 1040px) {
  .page-flow-text1 {
    top: 10px;
  }
  .page-flow-text2 {
    top: 90px;
  }
  .page-flow-text3 {
    top: 170px;
  }
  .page-flow-text4 {
    top: 250px;
  }
  .page-flow-text-divide-left1 {
    position: absolute;
    left: 16%;
  }
  .page-flow-text5 {
    top: 335px;
  }
  .page-flow-text-divide-left2 {
    position: absolute;
    left: 26%;
  }
  .page-flow-text6 {
    top: 405px;
  }
  .page-flow-text-divide-right {
    position: absolute;
    right: 11%;
  }
  .page-flow-text7 {
    top: 330px;
  }
  .page-flow-text7.reformer {
    top: 340px;
    right: 4%;
  }
}
@media screen and (max-width: 768px) {
  .page-flow-text1 {
    top: 7px;
    font-size: 14px !important;
  }
  .page-flow-text2 {
    top: 12vw;
    font-size: 14px !important;
  }
  .page-flow-text3 {
    top: 22vw;
    font-size: 14px !important;
    width: 100%;
  }
  .page-flow-text4 {
    top: 32vw;
    font-size: 14px !important;
    width: 100%;
  }
  .page-flow-text-divide-left1 {
    position: absolute;
    left: 11%;
  }
  .page-flow-text5 {
    top: 45vw;
    font-size: 14px !important;
  }
  .page-flow-text-divide-left2 {
    position: absolute;
    left: 26%;
  }
  .page-flow-text6 {
    top: 54.5vw;
    font-size: 14px !important;
  }
  .page-flow-text-divide-right {
    position: absolute;
    right: 10%;
  }
  .page-flow-text7 {
    top: 44vw;
    font-size: 14px !important;
  }
  .page-flow-text7.reformer {
    top: 45vw;
    font-size: 14px !important;
    right: 1%;
  }
}
/* コースフロー文字だけ */
/* コンプリ */
.page-flow-comp1 {
  top: 10px;
}
.page-flow-comp2 {
  top: 85px;
}
.page-flow-comp3 {
  top: 160px;
}
.page-flow-comp4 {
  top: 235px;
  width: 100%;
}
.page-flow-comp5 {
  top: 305px;
  width: 100%;
}
.page-flow-comp6 {
  top: 370px;
  width: 100%;
}
.page-flow-comp7 {
  top: 440px;
  width: 100%;
}
.page-flow-text-divide-comp-left1 {
  position: absolute;
  left: 15%;
}
.page-flow-comp8 {
  top: 525px;
}
.page-flow-text-divide-comp-left2 {
  position: absolute;
  left: 28%;
}
.page-flow-comp9 {
  top: 600px;
}
.page-flow-text-divide-comp-right {
  position: absolute;
  right: 4%;
}
.page-flow-comp10 {
  top: 517px;
}
@media screen and (max-width: 1700px) {
  .page-flow-comp1 {
    top: 10px;
  }
  .page-flow-comp2 {
    top: 66px;
    width: 100%;
  }
  .page-flow-comp3 {
    top: 123px;
  }
  .page-flow-comp4 {
    top: 180px;
    width: 100%;
  }
  .page-flow-comp5 {
    top: 237px;
    width: 100%;
  }
  .page-flow-comp6 {
    top: 296px;
    width: 100%;
  }
  .page-flow-comp7 {
    top: 351px;
    width: 100%;
  }
  .page-flow-text-divide-comp-left1 {
    position: absolute;
    left: 12%;
  }
  .page-flow-comp8 {
    top: 428px;
  }
  .page-flow-text-divide-comp-left2 {
    position: absolute;
    left: 27%;
  }
  .page-flow-comp9 {
    top: 481px;
  }
  .page-flow-text-divide-comp-right {
    position: absolute;
    right: 2%;
  }
  .page-flow-comp10 {
    top: 415px;
    font-size: 18px !important;
  }
}
@media screen and (max-width: 1040px) {
  .page-flow-comp1 {
    top: 10px;
  }
  .page-flow-comp2 {
    top: 95px;
    width: 100%;
  }
  .page-flow-comp3 {
    top: 170px;
  }
  .page-flow-comp4 {
    top: 238px;
    width: 100%;
  }
  .page-flow-comp5 {
    top: 317px;
    width: 100%;
  }
  .page-flow-comp6 {
    top: 396px;
    width: 100%;
  }
  .page-flow-comp7 {
    top: 470px;
    width: 100%;
  }
  .page-flow-text-divide-comp-left1 {
    position: absolute;
    left: 16%;
  }
  .page-flow-comp8 {
    top: 560px;
  }
  .page-flow-text-divide-comp-left2 {
    position: absolute;
    left: 28%;
  }
  .page-flow-comp9 {
    top: 631px;
  }
  .page-flow-text-divide-comp-right {
    position: absolute;
    right: 13%;
  }
  .page-flow-comp10 {
    top: 570px;
    font-size: 18px !important;
  }
}
@media screen and (max-width: 768px) {
  .page-flow-comp1 {
    top: 2vw;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-comp2 {
    top: 12vw;
    width: 100%;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-comp3 {
    top: 22.5vw;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-comp4 {
    top: 32vw;
    width: 100%;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-comp5 {
    top: 42.5vw;
    width: 100%;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-comp6 {
    top: 52.5vw;
    width: 100%;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-comp7 {
    top: 62.5vw;
    width: 100%;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-text-divide-comp-left1 {
    position: absolute;
    left: 11%;
  }
  .page-flow-comp8 {
    top: 76vw;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-text-divide-comp-left2 {
    position: absolute;
    left: 26%;
  }
  .page-flow-comp9 {
    top: 86vw;
    font-size: calc(var(--vk-size-text) * 0.875) !important;
  }
  .page-flow-text-divide-comp-right {
    position: absolute;
    right: 10%;
    font-size: 16px !important;
  }
  .page-flow-comp10 {
    top: 76vw;
    font-size: 18px !important;
  }
}

/* コースと料金 */
.page-course-gateway-block p {
  margin: 4px !important;
}
.page-course-list {
  padding: 0 !important;
}
/* ３コース共通 */
.vk_faq .vk_faq_title:before,
.vk_faq .vk_faq_content:before {
  color: #f6a800 !important;
  font-size: 45px !important;
}
.page-voice-card {
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.45);
}
/* wpcf7 */
.wpcf7-list-item {
  display: block !important;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  padding: 30px 1em;
  border-radius: 20px !important;
  border: 1px solid var(--wp--preset--color--vk-color-primary-vivid);
}
.wpcf7-submit {
  width: 100%;
  padding: 15px !important;
  border-radius: 20px !important;
}
.wpcf7-qualification-title {
  font-size: 24px;
  text-align: center;
}
.wpcf7-qualification {
  border: 2px solid var(--wp--preset--color--vk-color-primary-vivid);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 50px;
}
.wpcf7-qualification-holder {
  margin-bottom: 30px;
}
.wpcf7-qualification-holder p,
.wpcf7-qualification-number p {
  font-size: 20px;
}

/* コースフロー色 */
.comprehensive-flow-color .vk_flow_frame {
  background-color: #e8e2a2 !important;
}
.comprehensive-flow-exam .vk_flow_frame {
  background-color: #b3aa00 !important;
}
.gateway-flow-color .vk_flow_frame {
  background-color: #b4cc85 !important;
}
.mat-flow-color .vk_flow_frame {
  background-color: #ffb0a6 !important;
}
.mat-flow-exam .vk_flow_frame {
  background-color: #cc7266 !important;
}
.reformer-flow-color .vk_flow_frame {
  background-color: #ffd8a6 !important;
}
.reformer-flow-exam .vk_flow_frame {
  background-color: #b36500 !important;
}
.vk_flow_frame_text_content {
  display: none;
}
.vk_flow_frame {
  padding: 10px !important;
}
.vk_flow_frame_text {
  margin-right: 0 !important;
}
.vk_flow_frame_text_title {
  text-align: center;
  margin-bottom: 0 !important;
  font-size: 1em !important;
  padding: 0 !important;
  border-bottom: none !important;
}
/* スクロールテーブル */
/* .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td{
background-color: #e6e5e0!important;
} */
.wp-singular .wp-block-group.is-layout-constrained.wp-container-core-group-is-layout-d22ff40a.wp-block-group-is-layout-constrained{
  margin-top: 100px;
  margin-bottom: 100px;
}
.entry-meta-data-list.entry-meta-data-list--category{
  display: none;
}
.vk_posts.next-prev{
  display: none;
}
