@charset "utf-8";
/*************************************
* ローディング画面
*************************************/
/*ローディング画面*/
html{
	overflow-y:scroll;
}
/* ローディングの背景部分のCSS */
.loader{
	background-color: #fff;
	left:0;
	position:fixed;
	top:0;
	width:100%;
	z-index:6000;
}
.loader-animation {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	padding: 0;
	text-align: center;
	display: block;
	width: 100%
}
.loader-animation p {
	display: inline-block;
	color: #2EB100;
	font-size: 60px;
	margin: 2px;
	animation-name: fadein-load;
	animation-duration: 0.5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateX(20px);
}
.loader-animation p:first-child { animation-delay: 1s }
.loader-animation p:nth-child(2) { animation-delay: 1.2s }
.loader-animation p:nth-child(3) { animation-delay: 1.4s }
.loader-animation p:nth-child(4) { animation-delay: 1.6s }
.loader-animation p:nth-child(5) { animation-delay: 1.8s }
.loader-animation .en { font-family: "Inter", sans-serif; font-weight: 700 }

@keyframes fadein-load{
0% {
opacity: 0;
transform: translateY(20px);
}
50% {
opacity: 1;
transform: translateY(-7px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}





@keyframes home-main-fade{
0% {
transform: translateY(20px);
opacity: 0
}
100% {
transform: translateY(0);
opacity: 1
}
}

@keyframes home-main-fade-uwaki{
0% {
margin-top: -20px;
opacity: 0
}
100% {
margin-top: 0;
opacity: 1
}
}



@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}


@keyframes loop3 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes loop4 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}


/*==================================
シャッ
===================================*/

/*背景色が伸びて出現 共通*/
.bgextend{
animation-name:bgextendAnimeBase;
animation-duration:0.7s;
animation-fill-mode:forwards;
position: relative;
overflow: hidden;/*　はみ出た色要素を隠す　*/
opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
animation-name:bgextendAnimeSecond;
animation-duration:0.7s;
animation-delay: 0.7s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes bgextendAnimeSecond{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*--------- 左から --------*/
.bgLRextend::before{
animation-name:bgLRextendAnime;
animation-duration:0.7s;
animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #2EB100;/*伸びる背景色の設定*/
}
@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(0);
}
}

/*フェードイン*/
.fadeInTrigger { opacity: 0 }
.fadeInTrigger.fadeIn {
	animation-name:fadeInTriggerAnime;
	animation-duration:1.3s;
	animation-delay: 0.5s;
	animation-fill-mode:forwards;
	opacity: 0
}
@keyframes fadeInTriggerAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*下からフェードイン*/
.fadeUpTrigger { opacity: 0 }
.fadeUpTrigger.fadeUp {
	animation-name:fadeUpTriggerAnime;
	animation-duration:1.5s;
	animation-delay: 0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
	transform: translateY(40px);
}
@keyframes fadeUpTriggerAnime{
0% {
transform: translateY(40px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}


/*************************************
* メインビジュアルテキスト部分
*************************************/
.main-bgextend{
animation-name:main-bgextendAnimeBase;
animation-duration:0.7s;
animation-delay: 3.8s;
animation-fill-mode:forwards;
position: relative;
overflow: hidden;/*　はみ出た色要素を隠す　*/
opacity:0;
}

@keyframes main-bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.main-bgappear{
animation-name:main-bgextendAnimeSecond;
animation-duration:0.7s;
animation-delay: 3.8s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes main-bgextendAnimeSecond{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*--------- 左から --------*/
.main-bgLRextend::before{
animation-name:main-bgLRextendAnime;
animation-duration:0.7s;
animation-delay: 3.8s;
animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #2EB100;/*伸びる背景色の設定*/
}
@keyframes main-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(0);
}
}





@media screen and (min-width: 1031px) ,print {
/*************************************
* 共通
*************************************/
main { display: block }
.small { font-size: 12px; line-height: 20px }
.area-c-pc { text-align: center }
.justify { text-align: justify }
.caution { color: #399D25; margin-top: 1rem }
/*デザインによって数値を設定*/
.content-inner { width: 85%; margin: auto; padding: 0; max-width: 1200px; height: 100%; }
.detail-inner { margin: auto; padding: 0; width: 95%; height: 100%; }
section,article { padding-top: 8rem;  display: block; }
section:last-child,article:last-child { padding-bottom: 6rem; }
/*PCのみ非表示*/
.dsp-no-pc { display: none !important; }
/*電話番号タグに追加（PCのときはリンクボタン機能なし）*/
.tel { pointer-events: none; }
/*ぱんくず*/
#breadcrumbs {
	text-align: right;
	font-size: 14px;
	padding: 10px 100px;
	color: #399D25
}
#breadcrumbs .content-inner * { display: inline-block; } 
#breadcrumbs a, #breadcrumbs a:visited { color: #399D25; text-decoration: underline }
/*************************************
* 見出し
*************************************/
h2,h3,h4,h5 { letter-spacing: 0.1rem }
.page-h1-area h1 { background-color: #31b618; color: #fff; padding: 5rem 0; font-weight: 700; font-size: 30px; line-height: 40px; text-align: center }
.h2-01-area { margin-bottom: 2rem; }
.h2-01 span { display: block; }
.h2-01 span.en { font-size: 25px; line-height: 40px; color: #399D25; margin-bottom: 10px }
.h2-01 span.jp { font-size: 40px; line-height: 75px; color: #399D25; font-weight: 700 }
.h3-01 { font-size: 20px; line-height: 40px; margin-bottom:2rem; font-weight: 700; }
.h3-02 { font-size: 20px; line-height: 35px; color: #399D25; margin-bottom: 10px; font-weight: 700 }
.h3-03 { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #399D25; }
.h3-03 span { display: block }
.h3-03 span.en { font-size: 18px; color: #399D25; }
.h3-03 span.jp { font-size: 20px; font-weight: 700 }
.h3-04 { background-color: #399D25; color: #fff; font-weight: 700; padding: 10px; font-size: 20px; text-align: center }
.h4-02 { font-weight: 500; font-size: 14px; letter-spacing: 0; color: #399D25; }
.h5-01 { font-weight: 700; }
.h5-01 span { display: block }
.h2-area-uwaki { text-align: center }
.h2-01-uwaki { font-size: 25px; line-height: 50px; margin-bottom: 2rem; color: #399D25; font-weight: 700 }
.h2-02-uwaki { color: #399D25; margin-bottom: 2rem }
.h2-02-uwaki span { display: block }
.h2-02-uwaki span.en { font-size: 30px; line-height: 40px font-weight: 900; margin-bottom: 5px; }
.h2-02-uwaki span.jp { font-size: 30px; font-weight: 700; line-height: 50px; letter-spacing: 0.2rem }
/*************************************
* テーブル
*************************************/
table.table-01 { width: 100%; font-size: 14px; line-height: 24px }
table.table-01 tr {  }
table.table-01 tr:nth-child(odd) { background-color: #F8F8F8 }
table.table-01 th { font-weight: 500; width: 25%; padding: 15px; box-sizing: border-box }
table.table-01 td { font-weight: 500; width: 70%; padding: 15px; box-sizing: border-box }
table.table-01 td .small { font-size: 10px; margin-left: 5px }
/*プラン*/
.table-plan { width: 100% }
.table-plan tr { padding: 10px; border-top: 1px solid #399D25; }
.table-plan tr:last-child { border-bottom: 1px solid #399D25; }
.table-plan tr > * { padding: 10px 0 10px 0 }
.table-plan td { font-size: 20px; font-weight: 700; text-align: right }
/*フロー*/
.table-flow { width: 100% }
.table-flow tr { background-color: #F8F8F8; position: relative; font-size: 0; display: block; margin-bottom: 40px }
.table-flow tr:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f0d7';
	color: #D6A561;
	font-weight: bold;
	position: absolute;
	bottom: -35px;
	left: 50%;
	font-size: 40px
}
.table-flow tr:last-child:after { display: none }
.table-flow tr:last-child { margin-bottom: 0 }
.table-flow tr > * { padding: 20px; display: inline-block; font-size: 1rem; box-sizing: border-box }
.table-flow th { width: 30% }
.table-flow td { width: 70% }
/*************************************
* リスト
*************************************/
ul.list-01, ul.list-01 li { list-style: none; } 
ul.list-01 li { padding-left: 1.2em; text-indent: -1.2em; }
ul.list-01 li:before {
	font-family: 'Font Awesome 5 Free';
	content: '\f111';
	color: #2EB100;
	margin-right: 0.3em;
	font-weight: bold;
}
/*************************************
* ボタン
*************************************/
.btn-01 {
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	background-color: #399D25;
	min-width: 200px;
	border-radius: 50px;
	padding: 10px 20px;
	margin-top: 1rem;
	display: inline-block
}
.btn-02 {
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	background-color: #399D25;
	border-radius: 50px;
	padding: 30px 40px;
	margin-top: 1rem;
	display: block
}
.btn-01:visited,.btn-02:visited { color: #fff }
.btn-01:hover,.btn-02:hover { opacity: 1; background-color: #29d900 }
/*************************************
* header
*************************************/
/*ロゴ*/
.h-logo {
	position: fixed;
	left: 0;
	top: 0;
	width: 180px;
	height: 180px;
	background-color: #fff;
	border-radius: 0px 0px 20px 0px;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	transform-origin: left top;
	z-index: 1000
}
.h-logo img { width: 130px; padding: 25px 0 0 25px; }
#header-top.smaller .h-logo {
	transform: scale(0.7);
	transform-origin: left top;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
/*バーガーメニュー*/
#side-bar-menu {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 3000;
	width: 60px;
	height: 60px;
	background-color: #399D25;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
#side-bar-menu:hover {
	background-color: #29d900;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.nav-toggle {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	cursor: pointer;
	z-index: 1700;
	-webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
#header-top.smaller .nav-toggle {
	height: 50px;
	-webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.nav-toggle span {
	display: block;
	position: absolute; /* .toggleに対して */
	border-bottom: solid 1px #fff;
	-webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    left: 15px
}
.nav-toggle span:nth-child(1) { top: 20px; width: 30px }
.nav-toggle span:nth-child(2) { top: 30px; width: 30px }
.nav-toggle span:nth-child(3) { top: 40px; width: 30px }
/***** クリック後のボタン *****/
/* 最初のspanをマイナス45度にする */
.nav-toggle.active span:nth-child(1) {
	top: 30px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-bottom: solid 1px #fff;
	opacity: 1;
}
/* 2番目と3番目のspanを45度にする */
.nav-toggle.active span:nth-child(2),
.nav-toggle.active span:nth-child(3) {
	top: 30px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	border-bottom: solid 1px #fff;
	opacity: 1;
	width: 30px
}
/* nav中身 */
.global-navi {
	z-index: 2001;
	text-align: center;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(57,157,37,0.99);
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
     visibility: hidden;
}
.global-navi.active {
	opacity: 1;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    visibility: visible;
}
.menu-list-01 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.menu-list-01 a {
	padding: 5px;
	color: #fff;
	margin: 15px;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1rem;
	transform: translateY(20px)
}
.global-navi.active .menu-list-01 a { transform: rotateY(0) }

/*contact*/
.h-contact {
	position: fixed;
	right: 10px;
	top: 80px;
	z-index: 2000;
	width: 60px;
	height: 60px;
	background-color: #399D25;
	text-align: center;
}
.h-contact i {
	color: #fff;
	font-size: 25px;
	padding-top: 17px
}
.h-line {
	position: fixed;
	right: 10px;
	top: 150px;
	z-index: 2000;
	width: 60px;
	height: 60px;
	background-color: #399D25;
	text-align: center
}
.h-line i {
	color: #fff;
	font-size: 30px;
	padding-top: 15px
}
.h-line:hover,.h-contact:hover { opacity: 1; background-color: #29d900 }
.h-line:visited,.h-contact:visited { color: #fff }
/*************************************
* footer
*************************************/
.f-nav { background-color: #FFF7DD; padding: 80px; font-size: 0 }
.f-nav a {
	font-size: 18px;
	position: relative;
	background-color: #399D25;
	color: #fff;
	padding: 55px 60px 55px 120px;
	display: inline-block;
	width: 48%;
	box-sizing: border-box
}
.f-nav a:nth-child(odd) { margin-right: 4%; }
.f-nav a:before {
	content: " ";
	position: absolute;
	left: 20px;
	top: 20px;
	width: 100px;
	height: 100px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 80px auto;
	
}
.f-nav a.uwaki:before { background-image: url(../img/parts/f-01.png); }
.f-nav a.contact:before { background-image: url(../img/parts/f-02.png); }
.f-nav a:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f138';
	color: #fff;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: bold;
}
.f-nav a:hover { opacity: 1; background-color: #29d900; }
.f-nav a:visited { color: #fff }
/*概要*/
#fmenu .detail { text-align: center; padding: 4rem 0 4rem 0 }
.f-logo { display: inline-block; width: 130px; margin: auto }
#fmenu .detail .txt { margin-top: 2rem; }
#fmenu .detail .txt h1 { font-weight: 700; margin-bottom: 1rem }
#fmenu .detail .txt .tel { font-size: 25px; line-height: 50px; display: block }
#fmenu .detail .txt .tel span { vertical-align: middle; margin-right: 10px }
#fmenu .detail .txt .add { margin-top: 1rem }
#fmenu .copy { margin-top: 3rem; font-size: 10px }
/*************************************
* home
*************************************/
/*メインビジュアル*/
#home-00 {
	padding: 40px;
	height: 500px;
	display: block;
	box-sizing: border-box;
}
#home-00 .main-img {
	background-image: url(../img/home/main-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 500px;
	border-radius: 20px;
	position: relative;
	overflow: hidden
}
#home-00 .main-img .img {
	background-image: url(../img/home/main-01.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 550px auto;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	animation-name: home-main-fade;
	animation-duration: 2s;
	animation-delay: 4s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateY(20px);
}
#home-00 .main-img .txt {
	font-size: 65px;
	line-height: 65px;
	letter-spacing: 0.7rem;
	font-weight: 700;
	color: #399D25;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 50px;
	text-align: center;
	animation-name: home-main-fade;
	animation-duration: 1s;
	animation-delay: 5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateY(20px);
}
/*message*/
#home-01 .content-inner { display: flex; justify-content: space-between }
.home-message { width: 55% }
.home-message-img { width: 40% }
/*service*/
.home-service { display: flex; flex-wrap: wrap; justify-content: space-between; }
.home-service > * { width: 47%; margin-bottom: 3rem }
.home-service > *:nth-child(3),.home-service > *:nth-child(4) { margin-bottom: 0 }
.home-service > * .img { margin-bottom: 20px; }
.home-service > * .img .simpleParallax { border-radius: 10px }
.home-service > * h3.h3-02 { text-align: center }
/*about*/
.point-01-detail { padding: 40px; background-color: #FFF7DD; border-radius: 20px; margin-top: 2rem; display: flex; justify-content: space-between }
.point-01-detail h5 { margin-top: 2rem }
.point-01-detail .txt { width: 70% }
.point-01-detail .img { width: 25% }
.home-about-02 { display: flex; justify-content: space-between; margin-top: 3rem }
.home-about-02 > * { width: 47% }
.gmap { margin-top: 3rem }
.gmap iframe { width: 100%; height: 400px }
/*************************************
*浮気調査
*************************************/
/*メインビジュアル*/
#uwaki-00 { position: relative; height: 600px }
.uwaki-main > * { position: absolute }
.uwaki-main .img01 {
	width: 450px;
	left: 50%;
	top: 50%;
	transform: translate(-110%,-60%);
	animation-name: home-main-fade-uwaki;
	animation-duration: 2s;
	animation-delay: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	margin-top: -20px;
	opacity: 0
}
.uwaki-main .img02 {
	width: 420px;
	left: 50%;
	top: 50%;
	transform: translate(18%,-35%);
	animation-name: home-main-fade-uwaki;
	animation-duration: 2s;
	animation-delay: 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	margin-top: -20px;
	opacity: 0
}
.uwaki-main .h1-uwaki {
	width: 270px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	animation-name: home-main-fade-uwaki;
	animation-duration: 2s;
	animation-delay: 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	margin-top: -20px;
	opacity: 0
}
.uwaki-main .h1-uwaki span { display: none }
/*メッセージ*/
.uwaki-01-detail { display: flex; justify-content: space-between }
.uwaki-01-detail .txt { width: 60%; }
.uwaki-01-detail .img { width: 30% }
/*プラン*/
#uwaki-02 { background-color: #FFF7DD; padding-bottom: 8rem; margin-top: 8rem }
.plan-detail { display: flex; justify-content: space-between; flex-wrap: wrap }
.plan-uwaki { background-color: #fff; padding: 40px; box-sizing: border-box; width: 48% }
.plan-uwaki ul.list-01 { margin-top: 1rem }
.option-area { background-color: #fff; margin-top: 2rem }
.option-detail { padding: 40px; display: flex; justify-content: space-between; }
.option-detail > * { width: 47% }
/*point*/
.contact-uwaki .btn-02 { margin-top: 4rem }
.contact-uwaki .btn-02 i { font-size: 30px; margin-right: 10px }
.contact-uwaki .btn-02 * { vertical-align: middle }
/*************************************
*お問い合わせ
*************************************/
#contact-01 .content-inner { max-width: 700px; }
#contact-01 .content-inner * { text-align: center }
.line-qr { max-width: 250px; margin: 1rem auto 0 auto; display: inline-block }
.contact-line-area { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #ddd }
.contact-tel-area { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #ddd }
.contact-tel-area a { display: block; margin-top: 1rem }
.contact-tel-area a span { vertical-align: middle; margin-right: 10px }
.contact-tel-area a.en { font-size: 25px; }
.body-input #contact-02 { padding-top: 0 }
#contact-02 .content-inner { max-width: 700px; background-color: #fff; box-sizing: border-box; margin-bottom: 80px }
.contact-form-detail { margin-bottom: 1.5rem; }
.h3-form { margin-bottom: 5px; font-weight: 700; font-family: 'Noto Sans JP', sans-serif; color: #399D25 }
.h3-form .important { font-size: 10px; margin-left: 3px; }
.form-policy {
	margin: 1rem auto 1rem auto;
	padding: 10px;
	border: 1px solid #ddd;
	width: 100%;
	height: 150px;
	font-size: 12px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 24px;
	overflow: hidden; overflow-y: scroll;
	color: #777;
	box-sizing: border-box;
	background-color: #fff;
}
.form-doui { text-align: center; font-family: 'Noto Sans JP', sans-serif; font-size: 13px; }
.form-submit { margin-top: 1rem; }
span.error { font-family: 'Noto Sans JP', sans-serif; font-size: 12px; color: red !important }
input { border: none; height: 40px; padding: 8px; font-size: 13px; background-color: #f2f2f2; box-sizing: border-box }
input#your-sei,input#your-mei,input#your-furi-sei,input#your-furi-mei { width: 120px; display: inline-block; }
input#your-company { width: 100%; box-sizing: border-box }
input#your-count { width: 100px }
input#your-mail { width: 100%; box-sizing: border-box; height: 40px; padding: 8px; }
textarea { width: 100%; box-sizing: border-box; border: none; height: 150px; padding: 8px; font-size: 13px; background-color: #f2f2f2 }
input:focus,textarea:focus { border: none; background-color: #e0ebf5; outline: none }
.form-doui * { vertical-align: middle; display: inline-block; }
.form-submit { text-align: center; }
.form-submit button {
	display: inline-block;
	color: #fff;
	background-color: #399D25;
	padding: 15px 40px;
	border-color: none;
	border-width: none;
	border-style: none;
	font-size: 14px;
	font-weight: 500;
	min-width: 200px;
	border-radius: 50px;
	cursor: pointer;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.form-submit button:hover {
	background-color: #b2b2b2;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.mwform-radio-field input { vertical-align: middle; cursor: pointer }
.form-txt-area.radio { padding: 5px 5px 5px 10px; background-color: #f5f5f5 }
.form-policy-detail { margin-bottom: 10px; }
.form-policy-detail h5 { font-weight: 500; margin-bottom: 3px; }
.contact-intro { margin-bottom: 1rem }
/*画面遷移*/
.body-confirm #contact-01,
.body-confirm .contact-intro,
.body-confirm .form-policy,
.body-confirm .form-doui { display: none; }
.body-input .kakunin { display: none; }
.body-confirm .kakunin { display: block; }
.body-confirm .intro { display: none }
.body-confirm .form-txt-area { color: #555; border-bottom: 1px solid #ddd; font-family: 'Noto Sans JP', sans-serif; font-weight: 500; }
.body-complete #contact-01 { display: none }
#contact-fin { margin-bottom: 3rem; }





}




































@media screen and (max-width: 1030px) {
/*************************************
* 共通
*************************************/
body { font-size: 13px; line-height: 23px; }
main { display: block; }
.small { font-size: 10px; }
.comment { color: #399D25; font-size: 14px; line-height: 28px; padding: 10px; border: solid 1px #399D25; margin-top: 20px }
.comment p { text-align: center }
.area-c-sp { text-align: center }
.justify { text-align: justify }
.caution { color: #399D25; margin-top: 1rem }
/*デザインによって数値を設定*/
.content-inner { width: 90%; margin: auto; padding: 0; max-width: 500px; height: 100%; }
.detail-inner { margin: auto; padding: 0; width: 95%; height: 100%; }
section,article { padding-top: 60px;  display: block; }
section:last-child,article:last-child { padding-bottom: 60px; }
/*電話番号タグに追加（PCのときはリンクボタン機能なし）*/
.tel {  }
/*SPのみ非表示*/
.dsp-no-sp { display: none !important; }
/*ぱんくず*/
#breadcrumbs {
	text-align: right;
	font-size: 12px;
	padding: 10px 70px;
	color: #399D25
}
#breadcrumbs .content-inner * { display: inline-block; } 
#breadcrumbs a, #breadcrumbs a:visited { color: #399D25; text-decoration: underline }
/*************************************
* 見出し
*************************************/
h2,h3,h4,h5 { letter-spacing: 0.1rem }
.page-h1-area h1 { background-color: #31b618; color: #fff; padding: 3rem 0; font-weight: 700; font-size: 20px; line-height: 30px; text-align: center; margin-top: 4rem }
.h2-01-area { margin-bottom: 1rem; }
.h2-01 span { display: block; }
.h2-01 span.en { font-size: 20px; line-height: 30px; color: #399D25; }
.h2-01 span.jp { font-size: 22px; line-height: 44px; color: #399D25; font-weight: 700 }
.h3-01 { font-size: 18px; line-height: 30px; margin-bottom:1rem; font-weight: 700; }
.h3-02 { font-size: 18px; line-height: 30px; color: #399D25; margin-bottom: 10px; font-weight: 700 }
.h3-03 { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #399D25; }
.h3-03 span { display: block }
.h3-03 span.en { font-size: 18px; color: #399D25; }
.h3-03 span.jp { font-size: 20px; font-weight: 700 }
.h3-04 { background-color: #399D25; color: #fff; font-weight: 700; padding: 10px; font-size: 18px; text-align: center }
.h4-02 { font-weight: 500; font-size: 14px; letter-spacing: 0; color: #399D25; }
.h5-01 { font-weight: 700; }
.h5-01 span { display: block }
.h2-area-uwaki { text-align: center }
.h2-01-uwaki { font-size: 22px; line-height: 44px; margin-bottom: 1rem; color: #399D25; font-weight: 700; text-align: center }
.h2-02-uwaki { color: #399D25; margin-bottom: 1rem }
.h2-02-uwaki span { display: block }
.h2-02-uwaki span.en { font-size: 30px; line-height: 40px font-weight: 900; margin-bottom: 5px; }
.h2-02-uwaki span.jp { font-size: 25px; font-weight: 700; line-height: 50px; letter-spacing: 0.2rem }
/*************************************
* テーブル
*************************************/
table.table-01 { width: 100%; font-size: 14px; line-height: 24px }
table.table-01 tr {  }
table.table-01 tr:nth-child(odd) { background-color: #F8F8F8 }
table.table-01 th { font-weight: 500; width: 25%; padding: 15px; box-sizing: border-box }
table.table-01 td { font-weight: 500; width: 70%; padding: 15px; box-sizing: border-box }
table.table-01 td .small { font-size: 10px; margin-left: 5px }
/*プラン*/
.table-plan { width: 100% }
.table-plan tr { padding: 10px; border-top: 1px solid #399D25; text-align: center }
.table-plan tr:last-child { border-bottom: 1px solid #399D25; }
.table-plan tr > * { display: block; padding: 5px }
.table-plan td { font-size: 20px; font-weight: 700; }
/*フロー*/
.table-flow { width: 100% }
.table-flow tr { background-color: #F8F8F8; position: relative; display: block; margin-bottom: 40px; padding: 20px }
.table-flow tr:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f0d7';
	color: #D6A561;
	font-weight: bold;
	position: absolute;
	bottom: -30px;
	left: 50%;
	font-size: 40px;
	transform: translateX(-50%)
}
.table-flow tr:last-child:after { display: none }
.table-flow tr:last-child {  }
.table-flow tr > * { display: block; box-sizing: border-box }
.table-flow th { text-align: center; font-size: 16px; margin-bottom: 5px }
.table-flow td { text-align: justify }
/*************************************
* リスト
*************************************/
ul.list-01, ul.list-01 li { list-style: none; } 
ul.list-01 li { padding-left: 1.2em; text-indent: -1.2em; }
ul.list-01 li:before {
	font-family: 'Font Awesome 5 Free';
	content: '\f111';
	color: #2EB100;
	margin-right: 0.3em;
	font-weight: bold;
}
/*************************************
* ボタン
*************************************/
.btn-01 {
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	background-color: #399D25;
	min-width: 200px;
	border-radius: 50px;
	padding: 10px 20px;
	margin-top: 1rem;
	display: inline-block
}
.btn-02 {
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 16px;
	background-color: #399D25;
	border-radius: 50px;
	padding: 30px 40px;
	margin-top: 1rem;
	display: block
}
.btn-01:visited,.btn-02:visited { color: #fff }
.btn-01:hover,.btn-02:hover { opacity: 1; background-color: #29d900 }
/*************************************
* header
*************************************/
/*ロゴ*/
.h-logo {
	position: fixed;
	left: 0;
	top: 0;
	width: 130px;
	height: 130px;
	background-color: #fff;
	border-radius: 0px 0px 20px 0px;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	transform-origin: left top;
	z-index: 1000
}
.h-logo img { width: 80px; padding: 25px 0 0 25px; }
#header-top.smaller .h-logo {
	transform: scale(0.7);
	transform-origin: left top;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
/*バーガーメニュー*/
#side-bar-menu {
	position: fixed;
	right: 10px;
	top: 10px;
	z-index: 3000;
	width: 50px;
	height: 50px;
	background-color: #399D25;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
#side-bar-menu:hover {
	background-color: #29d900;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.nav-toggle {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	cursor: pointer;
	z-index: 1700;
	-webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
#header-top.smaller .nav-toggle {
	height: 50px;
	-webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}
.nav-toggle span {
	display: block;
	position: absolute; /* .toggleに対して */
	border-bottom: solid 1px #fff;
	-webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    left: 10px
}
.nav-toggle span:nth-child(1) { top: 15px; width: 30px }
.nav-toggle span:nth-child(2) { top: 25px; width: 30px }
.nav-toggle span:nth-child(3) { top: 35px; width: 30px }
/***** クリック後のボタン *****/
/* 最初のspanをマイナス45度にする */
.nav-toggle.active span:nth-child(1) {
	top: 25px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-bottom: solid 1px #fff;
	opacity: 1;
}
/* 2番目と3番目のspanを45度にする */
.nav-toggle.active span:nth-child(2),
.nav-toggle.active span:nth-child(3) {
	top: 25px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	border-bottom: solid 1px #fff;
	opacity: 1;
	width: 30px
}
/* nav中身 */
.global-navi {
	z-index: 2001;
	text-align: center;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(57,157,37,0.99);
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
     visibility: hidden;
}
.global-navi.active {
	opacity: 1;
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    visibility: visible;
}
.menu-list-01 {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100%
}
.menu-list-01 a {
	padding: 5px;
	color: #fff;
	margin: 15px;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.1rem;
	transform: translateY(20px)
}
.global-navi.active .menu-list-01 a { transform: rotateY(0) }

/*contact*/
.h-contact {
	position: fixed;
	right: 10px;
	top: 70px;
	z-index: 2000;
	width: 50px;
	height: 50px;
	background-color: #399D25;
	text-align: center;
}
.h-contact i {
	color: #fff;
	font-size: 25px;
	padding-top: 12px
}
.h-line {
	position: fixed;
	right: 10px;
	top: 130px;
	z-index: 2000;
	width: 50px;
	height: 50px;
	background-color: #399D25;
	text-align: center
}
.h-line i {
	color: #fff;
	font-size: 30px;
	padding-top: 10px
}
.h-line:hover,.h-contact:hover { opacity: 1; background-color: #29d900 }
.h-line:visited,.h-contact:visited { color: #fff }
/*************************************
* footer
*************************************/
.f-nav { background-color: #FFF7DD; padding: 20px; font-size: 0 }
.f-nav a {
	font-size: 18px;
	position: relative;
	background-color: #399D25;
	color: #fff;
	padding: 25px 20px 25px 70px;
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 10px
}
.f-nav a:last-child { margin-bottom: 0 }
.f-nav a:nth-child(odd) { margin-right: 4%; }
.f-nav a:before {
	content: " ";
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 40px auto;
	
}
.f-nav a.uwaki:before { background-image: url(../img/parts/f-01.png); }
.f-nav a.contact:before { background-image: url(../img/parts/f-02.png); }
.f-nav a:after {
	font-family: 'Font Awesome 5 Free';
	content: '\f138';
	color: #fff;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: bold;
}
.f-nav a:hover { opacity: 1; background-color: #29d900; }
.f-nav a:visited { color: #fff }
/*概要*/
#fmenu .detail { text-align: center; padding: 4rem 0 4rem 0 }
.f-logo { display: inline-block; width: 130px; margin: auto }
#fmenu .detail .txt { margin-top: 2rem; }
#fmenu .detail .txt h1 { font-weight: 700; margin-bottom: 1rem }
#fmenu .detail .txt .tel { font-size: 25px; line-height: 50px; display: block }
#fmenu .detail .txt .tel span { vertical-align: middle; margin-right: 10px }
#fmenu .detail .txt .add { margin-top: 1rem }
#fmenu .copy { margin-top: 3rem; font-size: 10px }
/*************************************
* home
*************************************/
/*メインビジュアル*/
#home-00 {
	padding: 40px 40px 0 40px;
	height: 400px;
	display: block;
}
#home-00 .main-img {
	background-image: url(../img/home/main-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 400px;
	border-radius: 20px;
	position: relative;
	overflow: hidden
}
#home-00 .main-img .img {
	background-image: url(../img/home/main-01.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 450px auto;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	animation-name: home-main-fade;
	animation-duration: 2s;
	animation-delay: 4s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateY(20px);
}
#home-00 .main-img .txt {
	font-size: 45px;
	line-height: 65px;
	letter-spacing: 0.3rem;
	font-weight: 700;
	color: #399D25;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 50px;
	text-align: center;
	animation-name: home-main-fade;
	animation-duration: 1s;
	animation-delay: 5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateY(20px);
}
/*message*/
#home-01 { padding-top: 2rem }
#home-01 .content-inner {  }
#home-01 .h2-01-area, #home-01  .h3-01 { text-align: center }
.home-message {  }
.home-message-img { max-width: 200px; margin: 1rem auto 0 auto }
/*service*/
#home-02 .h2-01-area { text-align: center }
.home-service {  }
.home-service > * { margin-bottom: 2rem }
.home-service > * .img { margin-bottom: 20px; }
.home-service > * .img .simpleParallax { border-radius: 10px }
.home-service > * h3.h3-02 { text-align: center }
/*about*/
#home-03 .h2-01-area { text-align: center }
.point-01-detail { padding: 20px; background-color: #FFF7DD; border-radius: 10px; margin-top: 2rem; }
.point-01-detail h5 { margin-top: 1rem; text-align: center }
.point-01-detail .txt {  }
.point-01-detail .img { margin: 1rem auto 0 auto; max-width: 200px; }
.home-about-02 { margin-top: 2rem }
.home-about-02 > *:nth-child(2) { margin-top: 2rem }
.gmap { margin-top: 3rem }
.gmap iframe { width: 100%; height: 300px }
/*************************************
*浮気調査
*************************************/
/*メインビジュアル*/
#uwaki-00 { position: relative; height: 400px }
.uwaki-main > * { position: absolute }
.uwaki-main .img01 {
	width: 300px;
	left: 50%;
	top: 50%;
	transform: translate(-85%,-60%);
	animation-name: home-main-fade-uwaki;
	animation-duration: 2s;
	animation-delay: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	margin-top: -20px;
	opacity: 0
}
.uwaki-main .img02 {
	width: 270px;
	left: 50%;
	top: 50%;
	transform: translate(-8%,-35%);
	animation-name: home-main-fade-uwaki;
	animation-duration: 2s;
	animation-delay: 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	margin-top: -20px;
	opacity: 0
}
.uwaki-main .h1-uwaki {
	width: 170px;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	animation-name: home-main-fade-uwaki;
	animation-duration: 2s;
	animation-delay: 3s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	margin-top: -20px;
	opacity: 0
}
.uwaki-main .h1-uwaki span { display: none }
/*メッセージ*/
.uwaki-01-detail {  }
.uwaki-01-detail .txt {  }
.uwaki-01-detail .img { max-width: 220px; margin: 1rem auto 0 auto }
/*プラン*/
#uwaki-02 { background-color: #FFF7DD; padding-bottom: 3rem; margin-top: 3rem }
.plan-detail {  }
.plan-uwaki { background-color: #fff; padding: 20px; box-sizing: border-box; margin-top: 1rem; text-align: center }
.plan-uwaki ul.list-01 { margin-top: 1rem; text-align: left }
.option-area { background-color: #fff; margin-top: 1rem }
.option-detail { padding: 20px; }
.option-detail > * {  }
.option-area table:last-child tr { border-top: none }
/*point*/
.contact-uwaki .btn-02 { margin-top: 4rem }
.contact-uwaki .btn-02 i { font-size: 30px; margin-right: 10px }
.contact-uwaki .btn-02 * { vertical-align: middle }
/*************************************
*お問い合わせ
*************************************/
#contact-01 .content-inner { max-width: 700px; }
#contact-01 .content-inner * { text-align: center }
.line-qr { max-width: 250px; margin: 1rem auto 0 auto; display: inline-block }
.contact-line-area { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #ddd }
.contact-tel-area { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid #ddd }
.contact-tel-area a { display: block; margin-top: 1rem }
.contact-tel-area a span { vertical-align: middle; margin-right: 10px }
.contact-tel-area a.en { font-size: 25px; }
.body-input #contact-02 { padding-top: 0 }
#contact-02 .content-inner { max-width: 700px; background-color: #fff; box-sizing: border-box; margin-bottom: 80px }
.contact-form-detail { margin-bottom: 1.5rem; }
.h3-form { margin-bottom: 5px; font-weight: 700; font-family: 'Noto Sans JP', sans-serif; color: #399D25 }
.h3-form .important { font-size: 10px; margin-left: 3px; }
.form-policy {
	margin: 1rem auto 1rem auto;
	padding: 10px;
	border: 1px solid #ddd;
	width: 100%;
	height: 150px;
	font-size: 12px;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 24px;
	overflow: hidden; overflow-y: scroll;
	color: #777;
	box-sizing: border-box;
	background-color: #fff;
}
.form-doui { text-align: center; font-family: 'Noto Sans JP', sans-serif; font-size: 13px; }
.form-submit { margin-top: 1rem; }
span.error { font-family: 'Noto Sans JP', sans-serif; font-size: 12px; color: red !important }
input { border: none; height: 40px; padding: 8px; font-size: 13px; background-color: #f2f2f2; box-sizing: border-box }
input#your-sei,input#your-mei,input#your-furi-sei,input#your-furi-mei { width: 120px; display: inline-block; }
input#your-company { width: 100%; box-sizing: border-box }
input#your-count { width: 100px }
input#your-mail { width: 100%; box-sizing: border-box; height: 40px; padding: 8px; }
textarea { width: 100%; box-sizing: border-box; border: none; height: 150px; padding: 8px; font-size: 13px; background-color: #f2f2f2 }
input:focus,textarea:focus { border: none; background-color: #e0ebf5; outline: none }
.form-doui * { vertical-align: middle; display: inline-block; }
.form-submit { text-align: center; }
.form-submit button {
	display: inline-block;
	color: #fff;
	background-color: #399D25;
	padding: 15px 40px;
	border-color: none;
	border-width: none;
	border-style: none;
	font-size: 14px;
	font-weight: 500;
	min-width: 200px;
	border-radius: 50px;
	cursor: pointer;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.form-submit button:hover {
	background-color: #b2b2b2;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
.mwform-radio-field input { vertical-align: middle; cursor: pointer }
.form-txt-area.radio { padding: 5px 5px 5px 10px; background-color: #f5f5f5 }
.form-policy-detail { margin-bottom: 10px; }
.form-policy-detail h5 { font-weight: 500; margin-bottom: 3px; }
.contact-intro { margin-bottom: 1rem }
/*画面遷移*/
.body-confirm #contact-01,
.body-confirm .contact-intro,
.body-confirm .form-policy,
.body-confirm .form-doui { display: none; }
.body-input .kakunin { display: none; }
.body-confirm .kakunin { display: block; }
.body-confirm .intro { display: none }
.body-confirm .form-txt-area { color: #555; border-bottom: 1px solid #ddd; font-family: 'Noto Sans JP', sans-serif; font-weight: 500; }
.body-complete #contact-01 { display: none }
#contact-fin { margin-bottom: 3rem; }










}






@media only screen and (max-width: 500px){
#home-00 { padding: 20px 20px 0 20px }
#home-00 .main-img .img { background-size: 350px auto }
#home-00 .main-img .txt { font-size: 30px; bottom: 20px; line-height: 50px }

#uwaki-00 { height: 300px; margin-top: 100px }
.uwaki-main .img01 {
	width: 200px;
	transform: translate(-90%,-60%);
}
.uwaki-main .img02 {
	width: 170px;
	transform: translate(-5%,-35%);
}
.uwaki-main .h1-uwaki {
	width: 120px;
}
#uwaki-01 { padding-top: 10px }



}
