@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;
}
body, html, h1, h2, h3, h4, h5, h6, .page-header-title {
  font-family: 'Oswald', "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}
/*スクロールの位置調整*/
[id] {
  scroll-margin-top: 100px;
}
a:not([class]):hover {
  color: var(--vk-color-primary);
}
/*スクロールボタンのバージョン*/
.scroll-hint-icon:before {
font-family: "Font Awesome 7 Free";
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Common 汎用パーツ系
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 繰り返しボタン・見出し、余白設計など 汎用パーツへの上書き */
/*フォントOswald*/
.en {
  font-family: var(--en);
}
/*逆順の見出し余白調整*/
.is-style-af-heading-reverse .vk_heading_subtext {
  margin-bottom: 0;
}
.vk_heading_subtext{
  line-height: 1.2em;
  text-transform: uppercase; 
}
/*ゴルフボールアイコン付き見出し*/
.heading-has-icon-golf .vk_heading_subtext{
  padding: 0;
  font-size: 1.5rem;
  position: relative;
  display:flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.heading-has-icon-golf .vk_heading_subtext::before{
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url("../../../wp-content/uploads/ball_icon.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  background-color: unset !important;
}
.heading-center .vk_heading_subtext{
  justify-content: center;
}
.icon-white .vk_heading_subtext::before{
  filter: contrast(0) brightness(3);
}
/*ダッシュ線付き見出し*/
.heading-dash{
  position: relative;
  padding-left: 40px;
}
.heading-dash::before{
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color:var(--vk-color-primary);
  position: absolute;
  left: 0;
  top: 20px;
}
.has-white-color::before{
  background-color: #fff;
}
/*ボタン*/
.vk_button .vk_button_link.btn, .editor-styles-wrapper .vk_button .vk_button_link.btn {
  padding: 1em 2em !important;
  border-radius: 50px;
}
/*ボタン >　ホバーの下線を消す*/
.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, .editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_txt, .editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_subCaption {
  text-decoration: none !important;
}
/*ボタン > フォント太さ*/
.vk_button .vk_button_link_caption, .editor-styles-wrapper .vk_button .vk_button_link_caption {
  word-break: initial;
  font-weight: 500;
}
/*ボタンホバー*/
.vk_button_link_caption, .vk_button_link_subCaption {
  z-index: 3 !important;
  position: relative;
}
.vk_button a {
  position: relative;
}
.vk_button a:hover {
  opacity: 1;
  box-shadow: none;
}
.vk_button a {
  border: medium none;
  overflow: hidden;
}
.vk_button a::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  background: var(--vk-color-primary);
  width: 100%;
  height: 120%;
  transition:.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: left top;
  border-radius: 10%;
}
.vk_button a:hover::before {
  opacity: 1;
}
.vk_button a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.vk_button .vk_button_link-type-text::before {
  display: none;
}
/*ボタンホバーの影を消す*/
.vk_button-color-custom a:hover, .editor-styles-wrapper .vk_button-color-custom a:hover {
  box-shadow: none !important;
}
/*ボタンアイコン拡大*/
.vk_button .vk_button_link-type-text:hover i {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.vk_button .vk_button_link i {
  transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
}
.vk_button .btn:hover i {
  transform: scale(1.2);
  color: #fff;
}
/*ボタン下線あり*/
.btn-underline .vk_button_link {
  padding: 0 0 10px 0 !important;
  border-bottom: 2px solid
}
.btn-underline:hover .vk_button_link {
  padding: 0 0 10px 0 !important;
}
.btn-underline .vk_button_link::after {
  display: none;
}
.btn-underline .vk_button_link_txt, .btn-underline i {
  transition: .6s;
}
.btn-underline:hover .vk_button_link_txt {
  transform: translate(5px, 0);
}
/*ボタン > ブランクボタン*/
.blank-btn .vk_button_link_caption{
  display: flex !important;
  justify-content: space-between;
}
.blank-btn .vk_button_link_caption::after{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../../../wp-content/uploads/icon_blank.png");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: contain;
  filter: contrast(0) brightness(3);
  margin-left: 20px;
}
/*snsボタン*/
.sns-btn-instagram .vk_button_link_txt, .sns-btn-youtube .vk_button_link_txt{
  display: flex;
  gap: 1em;
  align-items: center;
}
.sns-btn-instagram .btn, .sns-btn-youtube .btn{
    background-color: #fff !important;
}
.sns-btn-instagram .vk_button_link_txt::before{
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../../wp-content/uploads/icon_instagram.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
.sns-btn-youtube .vk_button_link_txt::before{
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../../wp-content/uploads/icon_youtube.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
/*余白調整*/
.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;
  }
}
/*横幅コンテンツに応じて中央揃え*/
.fit-content {
  width: fit-content;
  margin-inline: auto;
}
/*画像白反転*/
.img-white img {
  filter: contrast(0) brightness(3);
}
/*区切り線の太さ*/
.wp-block-separator {
  border-top: 1px solid;
}
/*グリッドカラムカード hoverの透過を消す*/
.vk_gridcolcard_item a.vk_gridcolcard_item_container:hover {
  opacity: 1;
}
/*テーブルのフォントサイズリセット*/ 
:where(:not(.wp-block-table)) > table :is(th, td) {
  font-size: unset !important;
}
/* リンクエリア拡張 */
.stretched-linkitem {
  position: relative !important;
}
.stretched-linkitem a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
.stretched-linkitem figure {
  overflow: hidden;
}
.stretched-linkitem img {
  transition: .3s;
}
.stretched-linkitem:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}
/*オバーフロー*/
.overflow{
  overflow: hidden;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Header ヘッダーまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.site-header .container {
  max-width: 100%;
  width: 100%;
  padding:0;
}
/* ヘッダー固定 */
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;
}
/* HOMEだけFVに透過にする */
.home header#site-header {
  position: fixed;
  transition: .5s;
  background-color: #fff;
}
.home:not(.device-pc.scrolled) header#site-header {
  background-color: transparent;
  box-shadow: none;
}
body:not(.home) .site-header {
  background-color: rgba(255, 255, 255, 0.8);
}
/* topのみスクロールしていない時は透過で文字反転 */
.home header#site-header {
  position: fixed !important;
  top: 0;
  transition: .3s;
}
.home.scrolled header#site-header {
  background: rgba(255, 255, 255, 1);
}
.home:not(.scrolled) #site-header {
  background: #fff;
  border: none;
}
.home:not(.scrolled) .global-nav-name, .home:not(.scrolled) .site-header-logo span, .home:not(.scrolled) .header-top-description {
  color: #fff;
  transition: .3s;
}
.home:not(.scrolled) .global-nav-list > li.current-menu-item > a {
  border-bottom: 2px solid #fff;
}
.home:not(.scrolled) h1.site-header-logo img {
  filter: contrast(0) brightness(3);
}
.home:not(.scrolled) .global-nav-list > li > a:hover, .global-nav-list > li.current-menu-item > a {
  border-bottom: 3px solid #fff;
}
/*ヘッダーロゴ*/
#site-header-container .site-header-logo {
  margin: .5em .8em !important;
}
.site-header-logo{
  position: relative;
  padding-bottom: 28px;
}
.site-header-logo a::after{
  content: "";
  display: inline-block;
  width: 100%;
  height: 28px;
  background-image: url("../../../wp-content/uploads/by_grandstone.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
}
.site-header-logo img {
  max-height:40px;
  max-width:100%;
  display:block;
  margin-left:auto;
  margin-right:auto;
}
/*ヘッダー体験ボタン*/
.header_nav_search_container {
  order: 3;
  position: unset;
  min-width: unset;
  margin-left: 0;
}
.head-tiken{
  margin: 0 !important;
  position: absolute;
  right: 0;
  top: 0;
}
.head-tiken .btn{
  height: 95px;
  width: 180px;
  border-radius: 0 0 0 20px !important;
  display: flex;
  justify-content: center;
  position: relative;
}
.head-tiken .vk_button_link_txt{
  background-image: url("../../../wp-content/uploads/icon_flag.png");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 25px;
}
/*ヘッダーSNS*/
.head-sns{
  position: fixed;
  right: 0;
  top: 150px;
}
.head-sns figure{
  border-radius: 10px 0 0 10px;
  background-color: #fff;
  padding: 10px 8px 10px 10px;
  margin:0 0 10px 0;
  box-shadow: 0px 0px 15px 0 #ccc;
}
.head-sns img{
  width: 40px;
  margin: 0;
  padding: 0;
}
/* グローバルナビ */
.global-nav {
  margin-right: 220px;
}
.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-primary);
  border-bottom: 3px solid var(--vk-color-primary);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Footer フッターまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* フッターウィジェット、フッターロゴ、コピーライト */
.site-footer{
  font-size: 1rem !important;
}
.site-footer iframe{
  margin: 0 0 10px 0 !important;
}
.copyright{
  text-align: right;
  padding: 10px 0 0 0;
}
.site-footer-copyright{
  display: none;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Toppage トップページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/*FV*/
.fv-attention{
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1em;
}
.fv-attention li{
  text-align: center;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 2em;
  line-height: 1.2em;
  background-image: url("../../../wp-content/uploads/golfball_img.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 280px;
  height: 180px;
}
/*FVニュース*/
.fv-news-section .vk_post{
  color: #fff !important;
  padding: 1em 0 0 0 !important;
  border: medium none !important;
}
.fv-news-section .vk_post:hover{
  background: none;
}
.vk_posts .postListText_title a{
  text-decoration: none;
}
.fv-news-section .postListText_title a:hover{
  color: var(--vk-color-primary);
}
/*キャンペーンバナー*/
.campaign .vk_slider_item_container{
  padding-left: .4em;
  padding-right: .4em;
}
.campaign .vk_slider_item_container figure{
  margin: 0;
}
/*スライダー next prev ボタン*/
.vk_slider .swiper-button-next, .vk_slider .swiper-button-prev {
  background-color: #111 !important;
  border-radius: 50px !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  color: #fff !important;
  font-size: .8rem !important;
}
/*オフセット背景*/
.offset-bg{
  position: relative;
}
.offset-bg::after{
  content: "";
  display: inline-block;
  width: 70%;
  height: 92%;
  background-color: #fff;
  position: absolute;
  right: 0;
  bottom:0;
  border-radius: 20px 0 0 20px;
}
/*こんな方はSKY YARDへ*/
.recommend-item .vk_heading_subtext{
  justify-content: center;
}
.recommend-item .vk_heading_subtext::before{
  filter: contrast(0) brightness(3);
}
/*サービス*/
.top-service-item{
  position: relative;
}
.top-service-item::after{
  content: "";
  display: inline-block;
  width: 75%;
  height: 60%;
  background-image: url("../../../wp-content/uploads/foot_bg.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.top-service-item .vk_heading h2, .top-service-item .vk_heading_subtext{
  color: #fff !important;
}
.top-service-item .vk_heading_subtext::before{
  filter: contrast(0) brightness(3);
}
.p-white{
  color: #fff;
}
/*グリッドカラム > リンクアイテム*/
.grid-link-item .wp-block-cover__inner-container{
  width: 100% !important;
}
.grid-link-item .vk_heading_subtext{
  line-height: 1em;
}
.grid-link-item .wp-block-cover__inner-container{
  position: unset !important;
  overflow: visible;
}
.grid-link-item p{
  position: relative;
}
/*番号の装飾*/
.num{
  position: absolute !important;
  left: -20px;
  top: -20px;
  background-color: #fff;
  border-radius: 100px;
  height: 70px;
  width: 70px;
  color: var(--vk-color-primary) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  z-index: 9;
  box-shadow: 0px 0px 15px -5px #777777;
  flex-direction: column;
}
.num br{
    display: none;
}
/*基本のテーブル*/
.basic-table table{
  border: medium none;
  border-top:1px solid #ccc;
}
.basic-table th, .basic-table td{
  border:medium none !important;
  border-bottom: 1px solid #ccc !important;
  padding: 1em !important;
}
/*流れるテキスト*/
.roop-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 0;
  font-size: 6rem;
  margin: 0;
  color: var(--vk-color-primary);
  font-family: var(--en);
  animation: scroll-left 100s linear infinite;
  opacity: .3;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*ニュース*/
.news-item .vk_post{
  padding: .8em !important;
}
.news-item .vk_post a:hover{
  color: #fff;
}
.news-item .vk_post:hover{
  background-color:rgba(0,0,0,0.2);
}
.news-item .vk_heading_subtext::before {
  filter: contrast(0) brightness(3);
}
/*CTA*/
.cta-btn a::before{
  background: var(--vk-color-custom-1) !important;
}
.tel a{
  text-decoration: none !important;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Pageheader, Breadcrumb 下層ページヘッダー・パンくずリスト
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 下層ページのページヘッダー、パンクズ設定 */
.page-header-subtext {
  margin-top: .5em !important;
  font-size: 1.4rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase; 
}
.breadcrumb {
  font-size:12px;
  background-color: var(--vk-color-custom-1);
  padding: 1em 0;
  color: #999;
}
.breadcrumb a{
  text-decoration: none !important;
  color: var(--vk-color-custom-3);
}
.breadcrumb a:hover{
  color: var(--vk-color-primary);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Page 下層ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ページごと、パーツごとにコメントアウトで注釈を入れてください。 */
/*ゴルフフィットネスとは？*/
.anchor-item{
  padding: 0;
  margin: 0;
}
.anchor-item li{
  list-style: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0;
  margin: 0;
}
.anchor-item li a{
  padding: .5em 0;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: flex;
  justify-content: space-between;align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.anchor-item li a::after{
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f0ab";
  margin-right: 10px;
}
/*サービス*/
/*アコーディオン*/
.vk_accordion-trigger .vk_accordion-toggle-open {
  border: medium none !important;
}
.vk_accordion-trigger {
  background-color: var(--vk-color-custom-1) !important;
  border: 1px solid var(--vk-color-custom-1);
  color: #fff;
}
.vk_accordion-trigger .vk_accordion-toggle-close::after, .vk_accordion-trigger .vk_accordion-toggle-open::after {
  border-right: 1px solid #fff !important;
  border-top: 1px solid #fff !important;
}
.vk_accordion-trigger .vk_accordion-toggle-close::before, .vk_accordion-trigger .vk_accordion-toggle-open::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 15px;
  border-radius: 100px;
  background-color: var(--vk-color-primary);
}
.vk_accordion-trigger p {
  font-size: 1.2rem !important;
}
.vk_accordion-target {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.vk_accordion:not(.is-style-vk_accordion-no-background-color-border):not(.is-style-vk_accordion-background-color):not(.is-style-vk_accordion-background-color-border):not(.is-style-vk_accordion-background-color-rounded):not(.is-style-vk_accordion-background-color-rounded-border):not(.is-style-vk_accordion-plain), .vk_accordion-container:not(.is-style-vk_accordion-no-background-color-border):not(.is-style-vk_accordion-background-color):not(.is-style-vk_accordion-background-color-border):not(.is-style-vk_accordion-background-color-rounded):not(.is-style-vk_accordion-background-color-rounded-border):not(.is-style-vk_accordion-plain) {
  border: medium none !important;
}
.acc-white{
  background-color: #fff;
  padding: 2em !important;
}
/*アンカーリンク*/
.anc-link .btn{
  border-radius: 0 !important;
}
.anc-link a::before {
  border-radius:0;
}
/*料金*/
.price-box{
  position: relative;
}
/*入会金無料の正円*/
.circle-item {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  background-color: var(--vk-color-custom-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.8rem;
  position: absolute;
  right: -1em;
  top: -1em;
  color: #fff;
}
.circle-item p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  font-weight: 600;
}
.circle-item p span {
  display: inline-block;
  line-height: 1;
  font-size: 0.6em;
}
/*料金のフォント設定*/
.price-menu mark {
  background: none;
  color: inherit;
}
/*料金表*/
.price-table th {
  background-color: #eee;
  padding: .8em !important;
}
.price-table td {
  padding: .8em !important;
}
.price-table mark {
  font-size: 1.6rem;
}
.price-table mark.has-inline-color {
  font-size: 1rem;
  margin-left: .5em;
}
/*スタッフ紹介 > タグ*/
.tag-item {
  display: flex;
  gap: .5em;
  margin: 0;
  padding: 0;
}
.tag-item li {
  font-size: .9rem;
  list-style: none;
  padding: .2em 1em;
  background-color: var(--vk-color-custom-1);
  color: #fff;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Archive　ブログ一覧ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/*投稿リスト*/
.vk_post {
  padding: 1rem 15px !important;
}
.card-post{
  box-shadow: 0px 0px 15px -5px #ddd !important;
}
.card-body{
  padding: .5em 0 0 0 !important;
}
.card-body .card-title a:hover{
  text-decoration: none !important;
  border: medium none !important;
}
/*投稿サイドメニュー*/
.sub-section .sub-section-title, .site-body-bottom .sub-section-title {
  padding: .6em .8em;
  background-color: var(--vk-color-primary);
  color: #fff;
}
.veu_postList .postList_title {
  font-size: .9rem;
}
.veu_postList .postList a:hover {
  text-decoration: none;
}
.sub-section .widget_archive > ul li a, .sub-section .widget_nav_menu > ul li a {
  border: none;
  padding: 1em 0;
  color: unset !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;
}
.sub-section .widget_archive > ul li:not(:last-child), .sub-section .widget_nav_menu > ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.localNavi {
  border-bottom: 1px solid #eee;
}
.localNavi > li {
  position: relative;
  padding-left: 20px;
}
.localNavi li::before {
  position: absolute;
  content: '\f0da';
  font-family: 'Font Awesome 7 Free';
  font-weight: 600;
  padding-right: .2em;
  left: 0;
  top: 18px;
  font-size: .9rem;
  color: #999;
}
.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;
}
.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-header .entry-title, .archive-header-title {
  margin-bottom: var(--vk-margin-meta);
  font-size: 2rem;
  position: relative;
  z-index: 0;
  padding: .8em 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);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Single　ブログ詳細ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  その他・追加機能
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */