@charset "UTF-8";
/* CSS Document */

/* width960px以下非表示*/
@media (min-width: 960px){
	.tbsp{
		display: none !important;}
}
@media (min-width: 768px){
	.sp_only{
		display: none!important;}
	}

/* all */
body{
	color: #333;
	background-color: #fff;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
}
a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li{
	list-style: none;
}
/* 幅調整　*/
.w1800{
	width: 100%;
	max-width: 1800px;
	margin: 0 auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
/* 余白調整　*/
.h30{
	height: 30px;
}
.h50{
	height: 50px;
}
.h100{
	height: 100px;
}
/* 背景　*/
.bg_light{
	background-color: #f3f3f3;
}
.bg_w{
	background-color: rgba(255,255,255,0.75);
	padding: 20px;
}
/* ボタン　================================================== */
.button_wrap{
	width: 280px;
	margin: 0 0 10px auto;
}

.button_01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background-color:#45a738;
	color: #fff;
	padding: 0.5em;
	position: relative;
	font-size: 1.1em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	border-radius: 50px;
	transition: .5s;
}
.button_01::after{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: calc(50% - 0.5em);
	right: 15px;
	transition: .5s;
}
.button_01:hover{
	background:#2b6623;
	color: #fff;
}
.button_01:hover::after{
	right: 10px;
	transition: .5s;
}

.button_wrap2{ /* */
	width: 100%;
	padding: 15px;
}
.button_wrap2 .button_01{
	margin-bottom: 20px;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	z-index: 99999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}



/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #45a738;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;

}

@keyframes PageAnime{
	0% {
		transform-origin:right;
		transform:scaleX(0);
	}
	50% {
		transform-origin:right;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:left;
	}
	100% {
		transform-origin:left;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/

#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:0.5s;
	animation-delay: 0.5s;
	animation-fill-mode:forwards;
	opacity: 0;
}

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


header{
	position: relative;
	width: 100%;
	z-index: 9000;
}
.site-header{
	background:rgba(255,255,255,1.00);
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:flex-start;
    transition: .5s;
    width: 100%;
	height: 95px;
}
.site-header.transform{
    background: rgba(255,255,255,1.00);

}
.site-header h1{
	line-height: 40px;
	vertical-align: middle;
	position: relative;
	transition: .5s;
}
.site-header h1 img{
	width: 250px;
	vertical-align: middle;
	padding: 10px;
	background: rgba(255,255,255,0.00);
	transition: .5s;
}
.site-header.transform h1 img{
	width: 180px;
	padding: 10px;
	background: rgba(255,255,255,0.00);
}
.site-header h1 a{
	color: #000;
}
.header_phone{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-top: 10px;
}
.header_phone h2{
	text-align: right;
	display: block;
	font-size: 1.2em;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	line-height: 100%;
	margin-right: 30px;
	text-shadow: 2px 2px 10px #fff;
	color:#333;
}
.header_phone h2 a{
	display: block;
	color: #45a738;
	width: 100%;
	height: 100%;
	padding: 3px;
	transition:all .5s;
}
.header_phone h2 :hover{
	color: #333;
	padding: 3px;
}
.nav_wrap{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.site-header .top_nav{
	height: 90px;
}

.site-header nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding-right: 20px;
}
.site-header nav ul li{
	margin: auto;
	padding: 0 10px;
	margin-left: 15px;
	margin-top: 5px;
	line-height: 40px;
	font-size:1em;
	font-weight: 700;
	position: relative;
	overflow: hidden;
	
}
.site-header nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #333;
}
.site-header nav ul li ::after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background:rgba(47,156,47,0.0);
	content: '';
	transition: transform 0.35s;
	transform: translate3d(-100%,0,0);
}
.site-header nav ul li:hover ::after{
	background:rgba(47,156,47,1.0);
	transform: translate3d(0,0,0);
}
/* snsアイコン　================================================== */
.sns{
	display: flex;
	justify-content: flex-end;
	padding-top: 10px;
}
.sns ul{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 300px;
	margin-right: 0;
	margin-left: auto;
}
.sns ul li{
	font-size: 1.25em;
	vertical-align: middle;
	text-align: center;
	line-height: 40px;
	margin-right: 30px;
}
.sns ul li a {
	display: inline-block;
	line-height: 40px;
	vertical-align: middle;
	height: 40px;
	width: 40px;
	background:#45a738;
	border-radius: 50%;
	box-shadow: 2px 2px #e0e0e0;
	font-size: 20px;
	color: #fff;
	transition: .5s;
}
.sns ul li img{
	width: auto;
	height: 1.1em;
	vertical-align: middle;
}
.sns ul li i,.sns ul li :hover{
	background:none;
}
.sns ul li :hover{
	background: #2b6623;
}
.tooltip{
	position: relative;
    cursor: pointer;
    display: inline-block;
	z-index: 1;
}
.tool_description{
	display: none;
    position: absolute;
    padding: 10px;
    font-size: 0.8rem;
    line-height: 1.6em;
    color: #fff;
    border-radius: 5px;
    background: #2b6623;
    width: 100px;
}
.tool_description::before{
	content: "";
    position: absolute;
    top: -24px;
    right: 60%;
    border: 15px solid transparent;
    border-top: 15px solid #2b6623;
    margin-left: -15px;
    transform: rotateZ(180deg);
}
.tooltip:hover .tool_description{
	display: inline-block;
    top: 50px;
    left: 0px;
	background: #2b6623;
}

.top_nav h3{
	display: block;
	width: 180px;
	text-align: center;
	font-size: 1em;
	font-weight: 700px;
	line-height: 40px;
	border-radius: 30px;
	background:#45a738;
	margin-right: 30px;
	transition:all .5s;
}
.top_nav h3 a{
	display: block;
	width: 100%;
	height: 40px;
	border-radius: 30px;
	color: #fff;
	transition:all .5s;
}
.top_nav h3 :hover{
	background: #2b6623;
}


/* スライダ ======================================== */
.slide_wrap{
	max-width: 1800px;
	margin: auto;
}
.slide_wrap .slider-pro{
}
.slide_txt{
	padding: 0;
	margin: 0;
}
.slide_txt h2{
	color: #fff;
	font-size: 2.5rem ;
	font-family: ibm-plex-sans-jp, sans-serif;
	padding-left: 60px;
	background: url("../img/icon_green.png") no-repeat;
	background-position: left top;
	background-size: 60px;
}
img.sp-layer{

}

.slide_frame{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
	background-image:url("../img/bg_img01_w.png"),linear-gradient(90deg, rgba(227,250,218,0.5) 0%, rgba(227,250,218,0.0) 30%, rgba(255,255,255,0) 100%);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto 60%,auto 100%;
}
.svg_wrap{
	position: absolute;
	width: 100%;
	padding: 50px;
	left: 0;
	bottom: 20px;
	z-index: 10;
}

/* 新着情報　======================================== */
.contents_news{
	width: 100%;
	margin: auto;
	color: #333;
}
.news{
	width: 100%;
	margin: auto;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;	
}
.news_in{
	height: 80px;
	width: calc(100% - 150px);
	overflow: auto;
	padding-left: 20px;
}

/* コンテンツ
   ========================================================================== */

.contents{

}

.contents_in{
	padding: 50px 10px;
}
.contents_half_l{
	width: 55%;
	margin:0 auto 0 0;
	padding: 20px;
}
.contents_half_r{
	width: 55%;
	margin:0 0 0 auto;
	padding: 20px;
}
.txt_level01{
	font-size: 2.5em;
	font-family: 'Noto Serif JP', serif;
	color: #45a738;
}
.txt_level02{
	font-size: 2em;
	font-family: 'Noto Serif JP', serif;
	color: #45a738;
}
.txt_level03{
	font-size: 1.6em;
	font-family: 'Noto Serif JP', serif;
	color: #45a738;
}
.txt_level03_red{
	font-size: 1.6em;
	font-family: 'Noto Serif JP', serif;
	color:#f26b1d;
}
.bg_dot{
	background:url("../img/dot.png") no-repeat;
	background-position: bottom left;
	background-size: auto 40px;
	padding-bottom: 40px;
}

/* Greeting ======================================== */
.greeting{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 50px auto;
	padding: 0 50px;
}
.bg_img01{
	background: url("../img/slide06.jpg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
}

.greeting_in{
	height: 500px;
	width: 50%;
	padding: 20px 20px 10px;
}
.txt_wrap_left{
	width: 100%;
	max-width: 560px;
	margin: 0 auto 0 0;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.greeting h2{
	font-family: 'Noto Serif JP', serif;
	color: #45a738;
	font-size: 1.5rem;
	margin-bottom: 30px;
}
.greeting p{
	font-size: 1em;
	line-height: 200%;
	margin-bottom: 1em;
}
.bg_img02{
	background: url("../img/slide04.jpg");
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
}
.txt_wrap_right{
	width: 100%;
	max-width: 560px;
	margin: 0 0 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.greeting_btn{
	max-width: 250px;
}


/*　魅力 ======================================== */
.contents_miryoku{
	max-width: 960px;
	margin: auto;
	padding: 50px 0;
}
.contents_wrap{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.flex_contents{
	width: calc(100% / 3 - 10px);
	align-self: stretch;
	background:#f5f5f5;
	padding: 10px;
}
.flex_contents .img{
	width: 250px;
	margin: auto;
}
.flex_contents .img img{
	width: 100%;
	padding: 20px;
}
.flex_contents .txt{
}


/* リンクコンテンツ ======================================== */
.bg_img03{
	background: url("../img/bg_img01.png") no-repeat;
	background-position: bottom 50px right 50px;
	background-size: 200px;
}

.contents_link {
	max-width: 960px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: auto;
	padding: 50px 0;

}
figure.effect-chico{
	display: block;
	position: relative;
	width: calc(100% / 2 - 20px);
	height: 250px;
	background: #f5f5f5;
	overflow: hidden;
	margin: 0 10px 20px;
}
figure.effect-chico img {
	display: block;
	min-height: 100%;
	max-width: 100%;
	object-fit: cover;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(1.12);
	transform: scale(1.12);
	opacity: 0.9;
}

figure.effect-chico:hover img {
	opacity: 0.5;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-chico figcaption {
	width: 100%;
	padding: 3em;
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-chico figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #fff;
	content: '';
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

figure.effect-chico figcaption::before,
figure.effect-chico p {
	color: #fff;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-chico h4 {
	position: absolute;
	left: 40px;
	top:20%;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 2em;
	color: #fff;
	text-shadow: 2px 2px #333;
}

figure.effect-chico h5{
	position: absolute;
	color: #fff;
	left: 40px;
	top:45%;
	font-size: 1rem;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}

figure.effect-chico p {
	position: absolute;
	bottom: 40px;
	right: 40px;
	font-size: 0.9em;
	margin: 0 auto;
	text-align: right;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

figure.effect-chico:hover figcaption::before,
figure.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
figure.effect-chico a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	background:url("../img/bg_footer.jpg") no-repeat;
	background-size: cover;
	background-position: center;
}
footer nav{
	max-width: 960px;
	margin: auto;
}
footer nav ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
footer nav ul li{
	font-size: 0.9em;
	padding: 1em;
	text-align: center;
}
footer nav ul li a{
	color:#f6ff13;
	padding-bottom: 10px;
	transition:all .5s ease-in;
}
footer nav ul li a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f0da';
	padding: 5px;
}
footer nav ul li a:hover{
	color: #fff;
	transition:all .5s ease-in;
}
footer h2{
	font-family: ibm-plex-sans-jp, sans-serif;
	text-align: center;
}
footer h2 img{
	width: 250px;
	padding: 10px;
}
.footer_in{
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 0;
}

.footer_in p{
	line-height: 200%;
}
.footer_in .sns ul li{
	margin-right: 15px;
	margin-left: 15px;
}
.footer_in .sns ul li a{
	box-shadow: none;
}
.address{
	font-family: ibm-plex-sans-jp, sans-serif;
	Font-weit: 700;
	text-align: center;
	font-size:1.2em;
	padding: 10px 0;
}
.address a{
	color: #f6ff13;
}
.address a:hover{
	color: #45a738;
	transition:all .5s ease-in;
}
.footer_btn{
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
}
.footer_btn li{
	position: relative;
	background: #45a738;
	margin: 1em;
	width: 250px;
	line-height: 3em;
	vertical-align: middle;
	text-align: center;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
}
.footer_btn li img{
	width: 1em;
	vertical-align: middle;
}
.footer_btn li a{
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 250px;
	height: 3em;
	color: #fff;
	background: #45a738;
	border-radius: 50px;
	transition: .5s;
}
.footer_btn li a:hover{
	background: #2b6623;
}
footer small p{
	color: #fff;
	text-align: center;
	padding: 15px;
	background: #45a738;
}
.line_gray{
	display: block;
	width: 100%;
}


/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 350px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
}
.subtitle h2{
	color:#333;
	line-height: 100%;
	position: absolute;
	top:50%;
	left: 0;
	width: 100%;
	text-align: center;
	font-size:2.5em;
	text-shadow: 2px 2px #fff,-2px 2px #fff,2px -2px #fff,-2px -2px #fff,2px 2px #fff,2px 0 #fff,0 2px #fff,-2px 0 #fff,0 -2px #fff;
}
.subtitle h2 span{
	font-size:60%;
	vertical-align: top;
}
.sub_bg{
	background:
		url("../img/bg_img01_w.png"),
		linear-gradient(to right,rgba(69,167,56,0.8),rgba(255,255,255,0.2),rgba(255,255,255,0.8)),
		 url("../img/subtitle01.jpg");
	background-color: #fff;
	background-repeat: no-repeat;
	background-position:center,center,center,;
	background-size:auto 100% ,cover,cover;
}

/*パンくずリスト
==========================================================================*/
.breadcrumb-box{
	width: calc(100% - 100px);
	display: inline-block;
	margin: 0 auto;
	padding-top: 10px;
	position: absolute;
	bottom: 30px;
	left: 100px;
}
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #fff;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}

.breadcrumb li a:hover {
  color: #f6ff13;
}
/* サブページコンテンツ
   ========================================================================== */
/* 見出し　==================== */
.sub h2{
	font-size: 2rem;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color: #45a738;
}

.sub h3{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	color: #333;
	border-bottom: solid 1px #45a738;
	font-size: 1.5rem;
	margin-bottom: 15px;
	background:url("../img/round_yg.png") no-repeat;
	background-size: 1.5rem;
	background-position: top 0.7rem left;
	padding-left: 2rem;
	vertical-align: middle;
}
/* 強調部分==================== */
.emphasis{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	background:linear-gradient(transparent 60%, #fff3b8 60%);
}


/* table ============================== */
.line02{
	padding: 20px;
}
.line02 table {
	border-collapse: collapse;
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.line02 table th{
	border-bottom: solid 2px #45a738;
	padding: 0.8em;
	width: 180px;
}
.line02 table td{
	border-bottom: solid 2px #ccc;
	padding: 0.8em;
}

.line03{
	padding: 20px;
}
.line03 table {
	border-collapse: collapse;
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.line03 table tr{
	border-bottom: solid 1px #ccc;
}

.line03 table th{
	padding: 0.8em;
	width: 180px;
}
.line03 table td{
	padding: 0.8em;
}
/* インフォリスト ============================== */
.info_li li{
	padding: 10px;
	border-bottom:dashed 1px #45a738;
}


/* アイコン横並び ============================== */
.pict{
	display: flex;
	justify-content: space-around;
	margin: 30px 0;
}
.pict li{
	width: 100%;
	text-align: center;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 150%;
}
.pict li img{
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: #45a738;
}
.pict h4{
	text-align: center;
}

.about .map{
	margin: 30px 0;
}

.photo_flex{
	display: flex;
	align-items: center;
	justify-content: center;
}
.photo_flex div{
	width: 100%;
	padding: 5px;
}
.photo_flex img{
	width: 100%;
}
.photo_flex .in_v{
	width: auto;
	height: 180px;
	padding: 10px;
}
.photo_flex .in_v img{
	width: auto;
	height: 100%;
}
/* メニュー ======================================== */

.bg_img05{
	background:url("../img/bg_img04.png") no-repeat fixed;
	background-position: bottom;
	background-size: 100%;
}
/*002 card002*/
.card002{
	display: flex;
	justify-content: center;
	align-content: center;
	background: #fff;
	font-family: ibm-plex-sans-jp, sans-serif;
	margin-bottom: 30px;
}
.card002 div{
	width: 100%;
	padding: 10px;
}
.card002 div img{
	width: 100%;
}
.card002 .txt h3{
	font-size: 1.3em;
	background-color: #f26b1d;
	border-radius: 5px;
	padding: 0.25em 1em;
	line-height: 150%;
	vertical-align: middle;
	color: #fff;
}
.card002 ul{
	display: flex;
	flex-wrap: wrap;
	background:#f5f5f5;
}
.card002 ul li{
	padding: 0.25em 0.5em;
}
.card002 ul p{
	padding: 0.25em ;
}
.card002 dl{
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.5em;
	padding: 0.5em;
}
.card002 dl dt{
	margin-right: 1rem;
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 700;
	border-bottom: solid 1px;
	color: #45a738;
}
.card002 dl dd{
	font-family: ibm-plex-sans-jp, sans-serif;
	font-weight: 300;
	border-bottom: solid 1px;
}
.card002 p{
	line-height: 150%;
}
.card002 .txt h4{
	color: #3bc9d9;
}

/* 脱毛器 ======================================== */
.bg_img06{
	background:url("../img/bg_img05.jpg") no-repeat fixed;
	background-position: top;
	background-size: 100%;
}
.epi_top_copy{
	text-align: center;
}
.epi_top_copy img{
	width: 100%;
	max-width: 900px;
}
.epi_midashi01 h3 img{
	width: auto;
	height: 70px;
}
.epi_img{
	width: 100%;
}
.card003{
	display: flex;
	justify-content: center;
	align-content: center;
	background: #fff;
	margin-bottom: 30px;
}
.card003 div{
	padding: 10px;
}
.card003 .img{
	width: 300px;
}
.card003 .img img{
	width: 100%;
}
.card003 .txt{
	flex: 1;
}

dl.epi_chigai{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
dl.epi_chigai dt{
	width: 170px;
	height: 170px;
	line-height: 150px;
	padding: 10px;
	text-align: center;
	background: url("../img/round.png") no-repeat;
	background-position: center;
	color: #fff;
}
dl.epi_chigai dd{
	flex:1;
}
dl.epi_chigai dd span{
	background:#f26b1d;
	padding: 0.25em 1em;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
}

/* よくある質問 ======================================== */
.bg_img04{
	background: url("../img/bg_img03.png") no-repeat;
	background-size: 100%;
	background-position: top;
}
.faq dl{
	margin-bottom: 20px;
	border-bottom: solid 1px #a7cca3;
}

.question {
	cursor: pointer;
	font-size: 1.2em;
	font-weight: 700;
	vertical-align: middle;
	margin-bottom: 10px;
	padding-left: 50px;
	text-indent: -40px;
}
.question span{
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url("../img/round.png") no-repeat;
	background-size: contain;
	text-align: center;
	color: #fff;
	padding-top: 0.5em;
	padding-left: 40px;
}
.question:hover {
	color: #45a738;
}
.answer {
	display: none;
	background: #f2f2f2;
	margin-left: 2em;
	padding: 10px;
	margin-bottom: 10px;
	
}
.answer span{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url("../img/round_y.png") no-repeat;
	background-size: contain;
	text-align: center;
	color: #333;
	padding-top: 0.5em;
}

.bg_img07{
	background: url("../img/bg_img06.png") no-repeat;
	background-size: 100%;
	background-position: bottom;
}
.after-care {
	
}
.after-care ul{
	font-size: 1.1rem;
	max-width: calc(100% - 30px);
	margin-left: 30px;
}
.after-care ul li{
	
	padding: 0.5em 0 0.5em -1em;
	border-bottom: solid 1px #45a738;
	text-indent: -0.7em;
	margin-bottom: 1em;
	line-height: 180%;
}
.after-care ul li i{
	color: #45a738;
}
/* スタッフ紹介  */
.staff_wrap{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 50px;
	background:#fff;
	padding: 15px;
}
.staff_photo{
	width: 300px;
	height: 200px;
}
.staff_photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.staff_txt{
	padding: 10px;
	flex: 1;
}
.staff_txt .post{
	font-size: 1em;
}
.staff_txt .name{
	font-size: 1.5em;
	margin-bottom: 15px;
}
.staff_txt .name span{
	padding-left: 10px;
	font-size: 60%;
	color: #45a738;
}
.staff_txt h4{
	font-size: 1em;
}
/* フローチャート ================================================== */
.flow_wrap02,.flow_wrap03{
	width: 95%;
	max-width: 900px;
	border:#45a738 solid 3px;
	padding: 20px;
	margin: 50px auto 30px;
	border-radius: 20px;
	position: relative;
	background:#fff;
}
.flow_wrap02::after{
	content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 15px solid #45a738; 
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
.flow_wrap02 dl,.flow_wrap03 dl{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.flow_wrap02 dt,.flow_wrap03 dt{
	width: 120px;
	padding: 0.25em;
	text-align: center;
	background: linear-gradient(to right, #45a738 0%,#2b6623 100%);
	color: #fff;
	border-radius: 5px;
	align-self: stretch;
}
.flow_wrap02 dt img,.flow_wrap03 dt img{
	width: 50px;
}

.flow_wrap02 dd,.flow_wrap03 dd{
	width: 100%;
	padding: 0.25em 2em;
}
.flow_wrap02 dd h4,.flow_wrap03 dd h4{
	font-family: 'Noto Serif JP', serif;
	color: #45a738;
	font-size:1.2em;
	margin-bottom: 0.5em;
	padding-bottom: 0.25em;	
}
.flow_wrap02 dd p,.flow_wrap03 dd p{
	font-size:1em;
	line-height: 200%;
}

/* メールフォーム==================== */
.contact{
	padding: 10px;
}
.contact h3{
	font-size: 1.3em;
	border-bottom: solid 1px #45a738;
	margin-bottom: 30px;
	font-family: ibm-plex-sans-jp, sans-serif;
}

.tel_button{
    position: relative;
	overflow: hidden;
	text-decoration: none;
	display: block;
    width: 100%;
	max-width: 500px;
	color: #fff;
    background:#45a738;
	border-radius: 5px;
    padding: 10px 30px;
    text-align: center;
	margin: 16px auto;
    outline: none;
    transition: ease .2s;
	cursor: pointer;
	font-size: 1.3em;
	font-family: kinuta-mincho-stdn, sans-serif;
}
/*ボタン内spanの形状*/
.tel_button span {
	position: relative;
	z-index: 3;
	color:#fff;
}
/*== 背景が流れる*/
.bgleft:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background:#2b6623;
 	width: 100%;
	height: 100%;
	border-radius: 5px;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
#mailform{
	width: 100%;
	padding: 20px;
	margin: 30px 0;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table th{
	width: 200px;
	text-align: left;
	padding: 0.5em;
	vertical-align: top;
	line-height: 120%;
}
#mailform table td{
	width: calc(100% - 210px);
	padding: 0.5em 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}
#mailform .radio{
	padding: 0 1rem;
	margin-bottom: 0.5rem;
}
#mailform .form_input,#mailform textarea{
	background:#fff;
	width: 100% !important;
	padding: 5px 10px;
	border:solid 1px #ccc;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#45a738;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 5px;
	font-weight: 400;
	background:#45a738;
	color:#fff ;
	border-radius: 5px;
	margin: 0 auto;
	transition: 0.5s;
}
input[type='submit']:hover{
	color: #fff;
	background:#2b6623;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 5px 10px;
	border:solid 1px #ccc;
	background:#fff;
}
.postcord_btn{
	font-size: 0.8em;
	border:solid 1px #ccc;
	background:#fff;
	padding: 0.25em;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #333 !important;
	font-size: 1em !important;
	padding: 1em 0;
}
.infobox h5{
	color: #333;
}
.infobox p{
	font-size: 0.8em !important;
	color: #333;
	padding: 0.5em;
}
#mailform summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
#mailform summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
#mailform details::before{
	display: none;
}
#mailform details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
#mailform details summary h4::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
#mailform details[open] summary h4::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f068';
	padding-right: 15px;
}
.visually-hidden { /* 元のボタンを非表示にする*/
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%); 
	margin: -1px;
}

label.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

label.radio-label::before,
label.radio-label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

label.radio-label::before {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 20px;
	width: 20px;
	left: 5px;
}

label.radio-label::after {
	background-color: #45a738;
	opacity: 0;
	height: 12px;
	width: 12px;
	left: 9px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
  opacity: 1;
}

/* TOPへ戻るボタン==================== */
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 0;
	z-index: 999;
}
#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f077';
	font-size: 50px;
	color:#fff;
	position: absolute;
	width: 50px;
	height: 50px;
	top: -5px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	transform : translate(0, 80px);
	transition : all 500ms;
	}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}

.swipe{
   position: relative;
   overflow: hidden;
}
.swipe::after{
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background: #f5f5f5;
   pointer-events: none;
   z-index: 1;
   transform: translateX(-100%);
   transition: 1.2s ease-in-out;
}
.swipe .swipe_in{
   opacity: 0;
   transition: 0.2s ease-in;
   transition-delay: 0.6s;
}
.swipe.inview .swipe_in{
   opacity: 1;
}
.swipe.inview::after{
   transform: translateX(100%);
}


