@charset "utf-8";
/*
Theme Name: Lightning Child
Theme URI: ★ テーマの公式サイトなどのURL（空欄でも可） ★
Template: lightning
Description: ★ テーマの説明（空欄でも可） ★
Author: ★ テーマ作成者の名前（空欄でも可） ★
Tags: 
Version: 0.1.2
*/

/* フォントサイズ設定 */
 .menu-item, body, table :is(th,td){
	font-size: 18px!important;
}

.global-nav-name{
	font-size: 18px!important;
}

.footer-nav .widget p{
	font-size: 17px!important;
}

.site-footer .widget p{
	font-size: 17px!important;
}

/* google fonts 設定 */
body, .zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* hover効果 */

a:hover, .opacity:hover{
	opacity: 0.7;
}

 .zoom{
  transition: transform 0.3s ease;
}

.zoom:hover {
  transform: scale(1.1);
} 


/* リンクの場所の下線消す */
li a, p a{
    text-decoration: none;
}

/* モバイルナビのデザイン設定 */

.vk-mobile-nav-menu-outer .menu-item a{
	padding: 20px;
	margin: 5px;
	border: none;
	border-radius: 10px;
	background: #e2a6b4;
	color: #fff;
	font-size: 16px;
}

/* ヘッダー設定 */

/* ヘッダーナビの下線消す */
 .global-nav-list>li:before {
   display: none;
}

/* フッター設定 */

/* フッターナビの下線消す */

.localNavi>div>ul li a, .localNavi>ul li a, .widget .localNavi>div>ul li a, .widget .localNavi>ul li a, .widget_archive>div>ul li a, .widget_archive>ul li a, .widget_categories>div>ul li a, .widget_categories>ul li a, .widget_link_list>div>ul li a, .widget_link_list>ul li a, .widget_nav_menu>div>ul li a, .widget_nav_menu>ul li a, .widget_pages>div>ul li a, .widget_pages>ul li a, .widget_postlist>div>ul li a, .widget_postlist>ul li a {
    border-bottom: 0px solid var(--vk-color-border-hr);
}

/* フッターメニューのhover効果 */
.site-footer .menu-item a:hover{
	color:#91c982!important;
}

/* フッターナビの背景色消す */

 .widget_nav_menu>div>ul li a:hover, .widget_nav_menu>div>ul li.current_page_item>a{
	background-color: transparent;
}



/* メインビジュアル扇形の動き設定＝＝＝＝＝＝＝＝＝＝＝ */
.fan-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 600px;
  margin: 50px auto;
  background: #f0f0f0;
}

.fan {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35%;
  transform-origin: center center;
  transform: translate(-50%, -50%);
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.fan1 {
  z-index: 3;
  animation-name: fan1Anim;
  animation-delay: 0.1s;
}
.fan2 {
  z-index: 2;
  animation-name: fan2Anim;
  animation-delay: 0.1s;
}
.fan3 {
  z-index: 1;
  animation-name: fan3Anim;
  animation-delay: 0.1s;
}

/* 重なりゼロでバランスの良い配置 */
@keyframes fan1Anim {
  to {
    transform: translate(-145%, -55%) rotate(-15deg);
  }
}
@keyframes fan2Anim {
  to {
    transform: translate(-50%, -60%) rotate(0deg);
  }
}
@keyframes fan3Anim {
  to {
    transform: translate(45%, -55%) rotate(15deg);
  }
}

/* メインビジュアル扇形の動き設定＝＝＝ここまで＝＝＝＝＝＝＝＝ */

/* コンタクトフォームの設定 -----------------------------------------------*/

/*必須の調整*/
.haveto{
    background-color:#706f70;
	color:#fff;
    font-size: 1rem;
    padding: 0px 3px;
    display: inline-block;
    border-radius: 3px;
    margin: 5px;
}


/* 任意の調整 */
.any {
    background-color: transparent;
	color:#706f70;
    font-size: 1rem;
    padding: 0px 3px;
    display: inline-block;
	border: solid 1px #706f70;
    border-radius: 3px;
    margin: 5px;
}

/* コンタクトフォームの項目を太字に */
.bold{
	font-weight: bold;
}


