@charset "utf-8";
/*
Theme Name: Lightning Pro Child Sample
Theme URI:
Template: lightning-pro
Description:
Author:
Tags:
Version: 0.0.0
*/

body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #fafafa calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}

.pc{display: inline-block;}

.sp{display: none;}

a:hover{text-decoration: none;}

.headerTop {
    display: none;
}

.section.breadSection {
    border: none;
    letter-spacing: 0.05em;
}

.siteHeader{
	box-shadow: none;
    background: none;
    padding-top: 20px;
}

.siteHeader_logo img {
    max-height: 80px;
}

.flexbox{
    display: flex;
}

.row-reverse{
    flex-direction: row-reverse;
}

.base_copy{
	font-size: 1.2rem;
    letter-spacing: 0.01em;
    color: #555;
	line-height: 1.8;
	text-align: justify;	
}

.base_copy.white{
	color: #FFF;
}

.section.siteContent{
	padding-top: 7px;
	padding-bottom: 0!important;	
}

h2{border: none;padding: 0;margin: 0;}

h3{border: none;padding: 0;margin: 0;}

h2::after{border: none;}

h3::after{border: none;}

h2{
    position: relative;
	font-size: 2rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-weight: bold;
	margin-bottom: 80px;
	color: #555;
	text-align: center;
}
  
h2::before {
    background-color: #dc3109; /* 線の色 */
    border-radius: 5px; /* 線の両端を丸く */
    bottom: -10px; /* 線の位置 */
    content: "";
    height: 3px; /* 線の高さ */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 80px; /* 線の長さ */
}

h3{
    font-size: 1.7rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-weight: bold;
	margin-bottom: 20px;
	color: #555;
}

h4{
    font-size: 1.2rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	font-weight: bold;
	margin-bottom: 10px;
	color: #555;
}

ul{
    list-style: none;
    padding-left: 0;
}

.roboto{
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0.05em;
}

.catch_title{
    position: absolute;
    font-size: 5rem;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 0.05em;
    color: #c0f2c5;
}

figure{
	text-align: center; 
}

.img_r img{
    border-radius: 30px;
}



.gMenu_outer {
    
}

.gMenu a {
    color: #333;
}

.gMenu a:active, .gMenu a:focus, .gMenu a:hover {
    color: #666;
}
    
.gMenu>li:before {
    border-bottom: 2px solid #dc3109;
}

.header_scrolled .gMenu_outer nav {
    padding-left: 45px;
    padding-right: 45px;
}

.header_scrolled .gMenu>li {
    border-left: 1px solid #555;
}

.gMenu>li .gMenu_name {
    font-size: 16px;
}

.header_scrolled .gMenu>li:last-child {
    border-right: 1px solid #555;
}

.header_scrolled .gMenu_outer {
    background-color: #FFF;
}

.device-pc .gMenu>li a {
    padding-left: 2em;
    padding-right: 2em;
}

.gMenu>li:hover:before, .gMenu>li[class*=current]:before {
    width: 0;
}

div#comments {
    display: none;
}

/*=========
fadeDownTrigger
=========*/

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(100px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


/*=========
moreボタン
=========*/


.more_btn{
	margin: 40px 0;
    text-align: center;
}

/*== ボタン共通設定 */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    padding: 10px 50px;
    text-align: center;
    outline: none;
    background: #333;
    /*アニメーションの指定*/   
    transition: ease .2s;
    width: 400px;
    color: #FFF;
    border-radius: 25px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.btn:after{
	content: "\f061";
    font-size: 1.2rem;
	font-family: "Font Awesome 6 Pro";
	color: #333;
	position: absolute;
    top: 10px;
    right: 10px;
	z-index: 2;
    background: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display:flex;
   align-items:center;
   justify-content:center;
}

.btn:hover:after{
	color: #FFF;
    background: #333;
    transition: .3s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#FFF;
}

.btn:hover span{
	color:#333;
    transition: .3s;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#FF6;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}

.type-post {
    color: #333;
}

.entry-header {
    border-bottom: solid 2px #333 !important;
}

span.entry-meta_items.entry-meta_updated {
    display: none;
}

span.vcard.author.entry-meta_items.entry-meta_items_author{
    display: none;
}

span.smoothText {
    padding: 0px 5px 0 15px;
    display: inline-block;
    margin-bottom: 0;
    line-height: 1.2;
    animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}

@keyframes bgextendAnimeBase{
    from {
      opacity:0;
    }
  
    to {
      opacity:1;  
  }
  }

  /*左から右*/
span.smoothText::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:both;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #FFF;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(1);
	}
}

/* アニメーションで傾斜がついている文字列を水平に戻す*/
span.smoothTextTrigger{
	transition: .8s ease-in-out;
	transform: translate3d(0,100%,0) skewY(12deg);
	transform-origin: left;
	display: block;
    
}
span.smoothTextTrigger.smoothTextAppear{
    transform: translate3d(0,0,0) skewY(0);
}



/*=========
TOPページ_ヘッダー
=========*/

.top_header{
	position: relative;
	margin: 0 calc(50% - 50vw) 50px;
	width: 100vw;
    height: 700px;
}

.top_header_copy{
	position: absolute;
	top: 500px;
	left: 5%;
}

.top_header_copy p.top_main_copy{
    display: inline-block;
	color: #333;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    background: #FFF;
    padding: 0 10px;
}

.top_header_copy p strong{
    color: #dc3109;
}

.top_header_copy p.top_sub_copy{
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.slider {
	width: 100vw;
	height: 60vh;
	overflow: hidden;
	position: relative;
	max-width: 100%;
}

.slider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -5;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 15s;
	animation-iteration-count: infinite;
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 0;
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}
.slider div:first-of-type{
	background-image: url(http://earth-explorer.jp/wp/wp-content/uploads/2025/02/header_slide_01.jpg);
}
.slider div:nth-of-type(2){
	background-image: url(http://earth-explorer.jp/wp/wp-content/uploads/2025/02/header_slide_02.jpg);
	animation-delay: 5s;
}
.slider div:last-of-type{
	background-image: url(http://earth-explorer.jp/wp/wp-content/uploads/2025/02/header_slide_03.jpg);
	animation-delay: 10s;
}



/*=========
コンセプトエリア
=========*/

.concept_bigbox{
    justify-content: space-between;
    position: relative;
    margin-bottom: 100px;
}

.concept_bigbox figure.left{
    width: 20%;
}

.concept_bigbox figure.right{
    width: 25%;
    margin-top: auto;
}

.concept_bigbox .box{
    margin-top: 50px;
    width: 45%;
    text-align: center;
}

.concept_bigbox .box h3{
    font-size: 1.5rem;
}

.concept_bigbox .box h3 span{
    color: #dc3109;
}    

.voice_bigbox figure{
    margin: 0 20px;
}

.voice_balloon {
    position: relative;
    margin: 1.5em auto;
    padding: 15px 25px;
    color: #555;
    font-size: 16px;
    background: #fffee0;
    border-radius: 15px;
    width: 90%;
  }
  
  .voice_balloon:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #fffee0;
  }
  
  .voice_balloon p {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

.voice_balloon p span{
    display: block;
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.service_area{
    margin-bottom: 100px;
}

.service_list{
    padding: 0;
    margin: 0 auto;
    width: 70%;
}

.service_list li{
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.service_illust{
    margin: 0 auto;
    width: 70%;
    justify-content: space-around;
}

/*==================================================
スライダーエリア
===================================*/

.slide_area{
    margin: 100px calc(50% - 50vw) 100px;
	width: 100vw;
}

.slider_img img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider_img .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}

/*=========
EXPOエリア
=========*/

.expo_bigbox{
    justify-content: space-between;
    position: relative;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.expo_bigbox .catch_title{
    top: -60px;
    left: -10%;
}

.expo_box{
    width: 45%;
    margin-bottom: 50px;
}

.expo_box h3{
    text-align: center;
    margin-bottom: 0;
}

.expo_box p{
    text-align: center;
}

/*=========
サービスエリア
=========*/


.price_area{
    position: relative;
    padding: 100px 0;
    margin: 0 calc(50% - 50vw) 100px;
	width: 100vw;
    background: #bee7d0;
}

.price_area .catch_title{
    top: -50px;
    right: 0;
    color: #6dca96;
}

.price_list{
    width: 50%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.price_list li{
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-align: center;
    color: #555;
}

.price_list li.price_title{
    width: 50%;
    margin: 0 auto 20px;
    padding: 8px 20px;
    background: #FFF;
    border-radius: 5px;
    font-weight: bold;
    color: #80bc9a;
}

.price_list li.price{
    font-size: 1.8rem;
    font-weight: bold;
}

.price_list li.price small{
    font-size: 1rem;
    font-weight: bold;
}


/*=========
aboutエリア
=========*/

.about_bigbox{
    justify-content: space-between;
    position: relative;
    margin-bottom: 100px;
}

.about_bigbox .catch_title{
    top: -60px;
    left: -10%;
}

.about_bigbox figure{
    width: 50%;
}

.about_bigbox .box{
    width: 45%;
}

.about_bigbox .box p{
    font-size: 1rem;
    line-height: 1.6;
}

.about_list{

}

.about_list li{
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.about_list li.profile{
    font-size: 1rem;
    font-weight: bold;
    border-bottom: dotted 1px #666;
}

/*=========
質問エリア
=========*/

.faq_area{
    position: relative;
    margin-bottom: 100px;
}

.faq_area .catch_title{
    top: -70px;
    left: 50%;
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
    color: #FFF;
    background: #6ec878;
    padding-bottom: 5px;
}

h3.title{
    margin-bottom: 0;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: bold;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #FFF;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);
}

.title.close{
    clear: both;
    float: none;
    text-shadow: none;
    color: #FFF;
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.faqbox {
    display: none;/*はじめは非表示*/
    background: #FFF;
	margin:0 3% 3% 3%;
    padding: 3%;
    color: #555;
}

/*=========
コンタクトエリア
=========*/

.contact_area{
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.contact_area .catch_title{
    top: -70px;
    left: 50%;
}

.line_contact{

}

.contact_kome_list{
    margin-bottom: 50px;
}

.contact_kome_list li{
    font-size: 1rem;
    margin-bottom: 15px;
}

.contact_kome_list li.red{
    color: #dc3109;
}

.form_box{
    background: #FFF;
    border: solid 5px #dc3109;
    border-radius: 30px;
    padding: 80px 80px;
    margin-bottom: 50px;
}

.wpcf7 table tr th p{
    margin-bottom: 5px;
}

.haveto{
	background: #f15e91;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	margin-right: 8px;
	font-size: 0.8em;
}

.any{
	background: #999;
	color: #fff;
	padding: 5px 10px;
	border-radius: 5px;
	margin-right: 8px;
	font-size: 0.8em;
}

table.inquiry{
	border-top: none;
}

.table tbody tr td .form-control, .table tbody tr th .form-control, .table td .form-control, .table th .form-control, .table thead tr td .form-control, .table thead tr th .form-control, table tbody tr td .form-control, table tbody tr th .form-control, table td .form-control, table th .form-control, table thead tr td .form-control, table thead tr th .form-control {
    max-width: 100%;
}

.wpcf7 table th, .wpcf7 table td{
	display: block;
	font-size: 1em;
	color: #666;
	border-bottom: none;
}

.wpcf7 table th {
    padding-bottom: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.wpcf7 table td{
	padding-bottom: 30px;
}

span.wpcf7-list-item-label {
    margin-right: 20px;
}


input[type="text"]{
    width: 100%;
	font-size: 1.4em;
	background: #fffbe3;
	border: solid 2px #999;
	padding: 20px;
}

input[type="email"]{
    width: 100%;
	font-size: 1.2em;
	background: #fffbe3;
	border: solid 2px #999;
	padding: 20px;
}

input[type="tel"]{
    width: 100%;
	font-size: 1.2em;
	background: #fffbe3;
	border: solid 2px #999;
	padding: 20px;
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    margin-right: 5px;
}

textarea.wpcf7-form-control{
    width: 100%;
	font-size: 1.2em;
	background: #fffbe3;
	border: solid 2px #999;
	padding: 20px;
}

span.wpcf7-form-control.wpcf7-acceptance {
    margin-right: 7px;
}

input#formbtn {
    background: #f29a63;
    border: solid 5px #f29a63;
    border-radius: 30px;
    font-size: 1.4em;
    width: 60%;
    letter-spacing: 0.05em;
    margin: 50px auto 0;
    display: block;
    font-family: "Font Awesome 6 Pro";
    color: #FFF;
}


/*=========
Footerエリア
=========*/

.siteFooter{
    width: 100%;
	border-top: none;
    background: #666;
}

.footer_left {
    padding: 90px;
    width: 40%;
    text-align: center;
}

.footer_nav_box{
    width: 70%;
    padding: 80px;
}


.footer_left img{
    width: 100%;
}

.footer_info_list{
    list-style: none;
    padding: 0;
}

.footer_info_list li{
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    color: #FFF;
}

.footer_info_list li.footer_info_address{
    margin-bottom: 10px;
}

.footer_info_tel a{
    color: #FFF;
    font-size: 1.1rem;
}

.footer_left .sns_icon{
    margin-top: 40px;
}

.footer_left .sns_icon a{
    display: inline-block;
    color: #FFF;
    font-size: 2.5rem;
    margin: 0 10px;
}

.footer_left .sns_icon a:hover{
    color: #598e5f;
}



.footer_nav{
    width: 100%;
    list-style: none;
    padding: 0;
}

.footer_nav li a{
    color: #FFF;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin: 0 15px;
}

.footer_bottom{
    padding: 20px;
    background: #222;
}


.footer_bottom p {
    margin: 0 auto;
    color: #FFF;
    text-align: right;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.scrolled .page_top_btn {
    bottom: 80px;
}

/*=========
google_reCAPTCHA
=========*/

.grecaptcha-badge { visibility: hidden; }

.google-copy {
    font-size: 0.6rem;
    color: #FFF;
    text-align: right;
    letter-spacing: 0.05em;
}

.google-copy a {color: #FFF;}


/*=========
fix_btnエリア
=========*/

.fix_btn_bigbox {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}

.fix_line_btn a{
    display: block;
    background: #06c655;
    color: #FFF;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 0.1em;
    border-radius: 50px;
    width: 100px;
    height: 100px;
    padding: 8px 0 0 8px;
    margin-bottom: 10px;
}

.fix_line_btn a:hover{
    transition: .3s;
    transform: scale(1.1);
    background: #04e763;
    color: #FFF;
}

.fix_contact_btn a{
    display: block;
    background: #dc3109;
    color: #FFF;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 0.1em;
    width: 100px;
    height: 100px;
    padding: 8px 0 0 8px;
}

.fix_contact_btn a:hover{
    transition: .3s;
    transform: scale(1.1);
    background: #9e2206;
    color: #FFF;
}



/*========= スクロールのCSS ===============*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:-40px;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}

/*========= 画像の動きのCSS ===============*/

.zoom-out img {
    width: 100%;
    height: auto;
    animation: animationZoom1 5s ease-in-out forwards;
  }

.zoom {
    overflow: hidden;
  }

  @keyframes animationZoom1 {
    100% { transform:scale(1.1)} 
  }
  @keyframes animationZoom2 {
    50% { transform:scale(1.1)} 
  }

  .fadeIn{
    animation-name:fadeInAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }


/*********** スマホ用 **********************************/


@media screen and (max-width: 480px) {
   /* 600px以上の場合 */


.pc {
	display: none;
}
   
.sp {
	display: block;
    width: 100%
}

.flexbox{
    flex-direction: column;
}

.siteHeader_logo {
    padding: 0;
}

.siteHeader_logo img {
    width: 200px;
    margin: 0;
}

.base_copy {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.more_btn {
    margin: 20px 0;
}

.btn {
    padding: 15px 30px;
    width: 100%;
    font-size: 1.2rem;
}

.img_r img{
    border-radius: 25px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 50px;
}

h3{
    text-align: center;
}

h4{
    text-align: center;
}

.catch_title{
    font-size: 4rem;
}

.vk-mobile-nav {
    background-color: #fafafa;
}

.vk-mobile-nav-menu-btn {
    left: auto;
    right: 5px;
    border: none;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0);
}


.vk-mobile-nav nav ul li a {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.05em;
}

.vk-mobile-nav nav ul li a::after{
    position: absolute;
    right: 10px;
    content: "\f061";
    font-size: 1.2rem;
	font-family: "Font Awesome 6 Pro";
    font-weight: 300;
}

/*=========
TOP_header
=========*/

.top_header {
    height: 500px;
}

.top_header_copy {
    top: 300px;
    left: 0;
    width: 90%;
}

.top_header_copy p.top_main_copy {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
}

.top_header_copy p.top_sub_copy {
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: #FFF;
    margin-left: 5%;
}


/*=========
コンセプトエリア
=========*/

.concept_bigbox{
    margin-bottom: 50px;
    flex-direction: row;
    flex-wrap: wrap;
}

.concept_bigbox.flexbox figure.left{
    order: 1;
    width: 40%;
}

.concept_bigbox.flexbox figure.right{
    order: 2;
    width: 55%;
}

.concept_bigbox.flexbox .box{
    order: 3;
}

.concept_bigbox .box {
    width: 85%;
    margin: 30px auto;
}

.concept_bigbox .box h3 {
    font-size: 1.2rem;
}

/*=========
スライドエリア
=========*/

.slide_area{
    margin: 0 calc(50% - 50vw) 50px;
}

/*=========
Voiceエリア
=========*/

.voice_bigbox.flexbox{
    margin-bottom: 50px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.voice_bigbox.flexbox figure.left{
    order: 1;
    width: 40%;
    margin: 0;
}

.voice_bigbox.flexbox figure.right{
    order: 2;
    width: 40%;
    margin: 0;
}

.voice_bigbox.flexbox .voice_box{
    order: 3;
}

.voice_bigbox .box {
    width: 85%;
    margin: 30px auto;
}

.voice_balloon p {
    font-size: 1.2rem;
}

.voice_balloon p span {
    font-size: 0.9rem;
}

/*=========
サービスエリア
=========*/

.service_area {
    margin-bottom: 50px;
}

.service_list {
    width: 80%;
}

.service_list li {
    font-size: 1.2rem;
}

.service_illust.flexbox {
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
}

.service_illust.flexbox img{
    width: 25%;
}


/*=========
自己紹介エリア
=========*/

.about_area{
    margin-bottom: 0;
}

.about_bigbox{
    margin-bottom: 0;
}

.about_bigbox .catch_title {
    left: 0;
}

.about_bigbox figure {
    width: 70%;
    margin: 0 auto;
}

.about_bigbox .box {
    width: 85%;
    margin: 40px auto;
}

/*=========
コンタクトエリア
=========*/

.contact_area{
    width: 85%;
}

.form_box {
    border: none;
    border-radius: none;
    padding: 0;
    background: none;
}

input#formbtn {
    font-size: 1.2em;
    width: 90%;
    margin: 50px auto 0;
}

.wpcf7 table th, .wpcf7 table td{
	padding: 10px 0;
}


/*=========
フッターエリア
=========*/

.section.siteFooter.flexbox{
    flex-direction: column-reverse;
}

.footer_left {
    padding: 50px;
    width: 100%;
    text-align: center;
}

.footer_nav_box {
    width: 100%;
    padding: 30px 30px 0;
}
.footer_nav li{
    margin-bottom: 20px;
    text-align: center;
}

.footer_nav li a{
    font-size: 1.3rem;
}

.footer_left img {
    width: 60%;
}

.google-copy {
    text-align: center;
}

.scrolled .page_top_btn {
    bottom: 120px;
}

/*=========
Fix下部メニュー
=========*/

.fix_btn_bigbox{
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    display: flex;
    border-top: solid 2px #FFF;
    z-index: 9999;
}

.fix_contact_btn{
    flex: 1;
}

.fix_btn_bigbox a{
    display: block;
    width: 100%;
    height: 70px;
    border-radius: 0;
    text-align: center;
    margin: 0;
    padding: 15px 0 0;
    font-size: 1.8rem;
}

.fix_contact_btn span.sp {
    display: inline;
}

.fa-regular, .far {
    font-size: 1.5rem;
}

.footer_bottom {
    padding: 20px 0 90px;
    background: #222;
}

}