@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;	
}

.blue{color: #41bdce;}

.red{color: #e53d3d;}

.orange{color: #ff8800;}

.bg_green{background: #4eab62;}

.bg_orange{background: #f9a166;}

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: #41bdce; /* 線の色 */
    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.05em;
	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: #6ec878;/*伸びる背景色の設定*/
}
@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{
	margin: 0 calc(50% - 50vw) 50px;
	width: 100vw;
	height: 655px;
    background: url(https://kaigo-okane-support.com/wp-content/uploads/2025/02/header_bg.png) no-repeat top center;
    text-align: center;
}


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

.concept_area{
    margin: 0 auto 100px;
}

.balloon {
    width: 80%;
    margin: 1.5em auto;
    overflow: hidden;
    align-items: center;
  }
  
 .balloon .faceicon {
    width: 150px;
  }
  
  .balloon .faceicon img{
    width: 100%;
    height: auto;
    border-radius: 50%;
  }
  
  .balloon .chatting {
    width: 100%;
  }
  
  .says {
    display: inline-block;
    position: relative; 
    margin: 5px 0 0 55px;
    padding: 17px 30px;
    border-radius: 12px;
    background: #eee;
  }
  
  .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 25px; 
    left: -40px;
    border: 15px solid transparent;
    border-right: 30px solid #eee;
  }
  
  .says p {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #555;
  }

.balloon.flexbox.right .chatting {
    text-align: right;
}

.balloon.flexbox.right .chatting .says p {
    text-align: left;
  }


.balloon.flexbox.right .says {
    display: inline-block;
    position: relative; 
    margin: 5px 55px 0 0;
    padding: 17px 30px;
    border-radius: 12px;
    background: #fffcd6;
  }
  
.balloon.flexbox.right .says:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 25px;
    left: auto;
    right: -40px;
    border: 15px solid transparent;
    border-left: 30px solid #fffcd6;
}

/*=========
事例エリア
=========*/

.jirei_area{
    margin: 0 calc(50% - 50vw) 100px;
	width: 100vw;
    padding: 50px 0;
    text-align: center;
    background: #e5f4f6;
}

.jirei_box{
    width: 70%;
    margin: 0 auto 30px;
    padding: 20px 30px 50px;
    background: #FFE;
    box-shadow: #CCC 0 0 15px;
    text-align: center;
    border-radius: 20px;
}

.jirei_box img{
    width: 100%;
    max-width: 700px;
}

.jirei_box h3{
    font-size: 1.6rem;
    color: #FFF;
    text-align: center;
    display: inline-block;
    margin-top: 40px;
    padding: 10px 25px;
    border-radius: 10px;
}

i.fa-solid.fa-angles-down{
    text-align: center;
    margin: 0 auto 50px;
    font-size: 4rem;
    color: #999;
}

.jirei_box p.base_copy{
    font-size: 1.4rem;
    width: 70%;
    margin: 0 auto;
    font-weight: bold;
}

.kanpu_kigen{
    font-size: 3rem;
}

.kanpu_kigen span{
    font-size: 4rem;
}

.balloon.jirei{
    justify-content: center;
}

.balloon.jirei .chatting {
    width: 60%;
}

.balloon.jirei .says{
    background: #FFF;
}

.jirei .says::after{
    border-right:solid 30px #FFF;
}

.balloon.jirei .says p{
    text-align: left;
}

/*=========
事例エリア
=========*/

.flow_area{
    text-align: center;
    margin-bottom: 100px;
}

.flow_jirei{
    width: 80%;
    margin: 0 auto;
    justify-content: center;
}

.flow_jirei figure{
    width: 130px;
    margin-right: 5%;
}

.flow_jirei_box{
    text-align: left;
    background: #fff;
    border: solid 3px #CCC;
    margin-bottom: 50px;
    padding: 20px 30px 20px;
    border-radius: 20px;
}

.flow_jirei_box h3{
    font-size: 1.5rem;
    margin-bottom: 0;
}

.flow_jirei_box p{
    margin-bottom: 0;
}

.flow_bigbox{
    position: relative;
    width: 70%;
    background: #d8eaec;
    border-radius: 20px;
    margin: 0 auto;
    padding: 30px 50px;
    margin-bottom: 40px;
}

.flow_bigbox::after{
    content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 20px solid transparent;
  border-top: 20px solid #d8eaec;
}

.flow_bigbox span{
    color: #666;
    font-size: 1.3rem;
    font-family: "Roboto Condensed", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.flow_bigbox h3{
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    color: #5ca7d4;
    margin-bottom: 0;
}   

.flow_bigbox .base_copy{
    text-align: center;
    font-weight: bold;
} 

.flow_bigbox.bg_orange{
    background: #ffdfc9;
}

.flow_bigbox.bg_orange::after{
    content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 20px solid transparent;
  border-top: 20px solid #ffdfc9;
}


.flow_bigbox.bg_orange h3{
    color: #ff5800;
}

.flow_jirei.flexbox.bottom .flow_jirei_box{
    border: none;
    background: none;
}

.flow_jirei.flexbox.bottom figure{
    width: 250px;
}

.flow_jirei.flexbox.bottom .flow_jirei_box p.base_copy{
    margin-top: 100px;
    font-size: 1.5rem;
    font-weight: bold;
}


.voice_area{
    width: 100%;
    margin: 0 auto 100px;
}

.voice_area .balloon{
    margin-bottom: 70px;
    align-items: normal;
}

.voice_area .says span{
    display: block;
    font-size: 1.2rem;
}


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

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

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

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

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

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

.about_area{
    margin: 0 calc(50% - 50vw) 100px;
	width: 100vw;
    padding: 50px 0;
    background: #e5f4f6;
}

.about_bigbox{
    margin: 0 auto 50px;
    width: 80%;
    flex-wrap: wrap;
}

.about_bigbox figure{
    width: 45%;
    margin: 0 2%;
}

.about_bigbox .box{
    width: 45%;
    margin: 0 2%;
}

.about_list{
    list-style: disc;
    list-style-position: inside;
    margin-left: 2%;
}

.about_list li{
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin-bottom: 5px;
}

.about_bigbox h4{
    font-size: 1.8rem;
    margin-bottom: 50px;
}

.about_bigbox.flexbox figure img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

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

.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 #41bdce;
    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: #41bdce;
}

.footer_left{
    padding: 80px;
    width: 60%;
    text-align: center;
}

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

.footer_right{
    width: 30%;
    padding: 80px;
}

.footer_left img{
    width: 60%;
}

.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;
}

.footer_bottom{
    padding: 20px;
    background: #3296a4;
}


.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: 120px;
    right: 20px;
}

.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: #21d5ed;
    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;
}

.fix_contact_btn a:hover{
    transition: .3s;
    transform: scale(1.1);
    background: #70e3f2;
    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 {
    padding-top: 10px;
}

.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{
    background: none;
    height: 530px;
}

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

.concept_area{
    margin-bottom: 50px;
}

.balloon {
    width: 90%;
}

.balloon.flexbox{
    flex-direction: row;
    align-items: normal;
}

.says:after {
    top: 10px;
}

.balloon .faceicon {
    width: 80px;
}

.says {
    margin: 5px 0 0 35px;
    padding: 10px 20px;
    text-align: justify;
}

.says p {
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: justify;
}

.balloon.flexbox.right .says {
    margin: 5px 35px 0 0;
    padding: 10px 20px;
}

.balloon.flexbox.right .chatting .says p {
    text-align: justify;
}

/*=========
事例エリア
=========*/

.jirei_area {
    margin-bottom: 50px;
}

.jirei_box {
    width: 90%;
    margin: 0 auto 30px;
    padding: 0 10px 20px;
}

.jirei_box h3 {
    font-size: 1.2rem;
    margin-top: 30px;
}

i.fa-solid.fa-angles-down {
    margin: 0 auto 30px;
}

.jirei_box p.base_copy {
    width: 90%;
    font-size: 1rem;
}

.kanpu_kigen {
    font-size: 2rem;
}

.kanpu_kigen span {
    font-size: 3rem;
}

.balloon.flexbox.left.jirei {
    width: 100%;
}

.balloon.jirei .says p {
    text-align: justify;
}

/*=========
流れエリア
=========*/

.flow_area {
    margin-bottom: 30px;
}

.flow_jirei {
    width: 90%;
}

.flow_jirei figure {
    width: 110px;
    margin: 0 auto 20px;
}

.flow_jirei_box {
    margin-bottom: 30px;
    padding: 20px;
}

.flow_jirei_box h3 {
    text-align: left;
}

.flow_bigbox {
    width: 90%;
    padding: 20px;
    margin-bottom: 30px;
}

.flow_jirei.flexbox.bottom figure {
    width: 50%;
    margin-bottom: 0;
}

.flow_jirei.flexbox.bottom .flow_jirei_box p.base_copy {
    margin-top: 0;
    text-align: center;
}

/*=========
お客様の声
=========*/

.voice_area {
    margin: 0 auto 50px;
}

.voice_area .balloon {
    margin-bottom: 30px;
}

.voice_area .says span {
    font-size: 0.9rem;
}

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

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


/*=========
よくある質問エリア
=========*/

.faq_area {
    margin-bottom: 80px;
}

.accordion-area {
    width: 90%;
}

h3.title {
    text-align: left;
}

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

.about_area {
    margin: 0 calc(50% - 50vw) 50px;
    padding: 50px 0 10px;
}

.about_bigbox .box {
    width: 100%;
    margin: 0 auto;
}

.about_bigbox figure {
    width: 100%;
    margin: 0 0 20px;
    height: 300px;
}

.about_bigbox h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: left;
}

.about_bigbox h3 {
    font-size: 1.4rem;
    text-align: left;
}

.about_list {
    list-style-position: outside;
    margin-left: 8%;
}
.about_list li{
    font-size: 1.2rem;
}

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

.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 {
    margin-top: 50px;
}

.footer_nav_box {
    width: 100%;
    padding: 0 30px;
}

.footer_nav li{
    margin-bottom: 20px;
}

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

.footer_left img {
    width: 100%;
}


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

.scrolled .page_top_btn {
    bottom: 120px;
}

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

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

.fix_btn_bigbox a{
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 0;
    text-align: center;
    padding-top: 10px;
    margin: 0;
}

.fix_line_btn{
    flex: 1;
}

.fix_contact_btn{
    flex: 1;
}

.fix_tel_btn{
    flex: 1;
}

.fix_tel_btn a{
    flex: 1;
    display: block;
    background: #ff6200;
    color: #FFF;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 0.1em;
    width: 100%;
    height: 100px;
    padding: 8px 0 0 8px;
    display: block;
    padding-top: 10px;
    margin: 0;
}

.fix_tel_btn a:hover{
    transition: .3s;
    transform: scale(1.1);
    background: #ff873c;
    color: #FFF;
}

}