@charset "utf-8";

/* ============================================================
cssの初期化
============================================================ */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}
@media print {
  body {
    width: 100%;
    position: relative;
    transform-origin: 0 0;
  }
}
html, body, h1, h2, h3, h4, h5, h6, address, div, blockquote, p, pre, ul, ol, li, dl, dt, dd, hr, table, caption, th, td, span, em, strong, dfn, code, samp, kbd, var, cite, abbr, acronym, sub, sup, q, br, ins, del, a, img, object, iframe, figure, section, article {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
}
/* ============================================================
タグの基本設定
============================================================ */
a {
  outline: none;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
a:hover {
  color: #777;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
a:hover img {
  filter: alpha(opacity=60);
  -moz-opacity: 0.60;
  opacity: 0.60;
}
hr {
  display: none;
}
ul {
  list-style: none;
}
header img,
footer img,
article img,
section img {
	max-width: 100%;
}

/*米印リスト*/
ul.kome{margin:0;list-style-type:none;font-size:100%}
ul.kome li{margin-left:-1em;text-indent:-1em;padding-left:2em;line-height:150%}
ul.kome li:before{content:"※ "}


/* ============================================================
枠基本スタイル
============================================================ */
html {
  font-size: 62.5%; /*10px*/
}
body {
  line-height: 1.8;
  font-size: 1.6rem; /*20px同様のサイズ*/
}
@media (max-width: 767px) {
body {
  line-height: 1.8;
  font-size: 1.5rem; /*20px同様のサイズ*/
}
}
/* ============================================================
header
============================================================ */
#header {
	width: 96%;
  padding-bottom: 20px;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
#header.contentWrap {
  max-width: 1200px;
  width: 96%;
}
#header h1 {
	width: 457px;
  margin-right:auto;
	padding: 40px 0 0;
}
#header h1 img {
	width: 457px;
	height: auto;
}
#header .header_tel {
	padding: 30px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}
#header .header_tel span {
  font-size: 222%;
  font-weight: bold;
}
#header .header_tel span::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 80%;
  margin-right: 7px;
  vertical-align: top;
  color: #f90;
}
#header .header_mail {
  margin-left: 25px;
	padding: 25px 0 0;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
}
#header .header_mail span {
  font-size: 142%;
}
#header .header_mail span::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 7px;
}
#header .header_mail a {
  display: block;
  padding: 10px 30px;
  color: #fff;
  border-radius: 5px;
  background: #097c25;
  cursor: pointer;
}
#header .header_mail a:hover {
  background: #039;
}
@media (max-width: 969px) {
	#header h1 {
		width: 304px;
  		margin-right:auto;
		padding: 20px 0 0;
	}
	#header .header_tel {
	  font-size: 1.2rem;
	}
	#header .header_mail {
	  font-size: 1.3rem;
	}
}
@media (max-width: 767px) {
	#header {
  padding-bottom: 1px;
}
	#header h1 {
		max-width: 275px;
		width: calc(100% - 108px - 25px);
  		margin-right:auto;
		padding: 7px 0 0;
	}
	#header .header_tel a {
	position: fixed;
	right: 65px;
	top: 5px;
	display: block;
	text-align: center;
	width: 54px;
	padding: 37px 0 5px;
	background: #f90;
	color: #fff;
	font-size: 10px;
	z-index: 99;
	text-decoration: none;
	-webkit-transition: all .5s;
	transition: all .5s;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
#header .header_tel a:before {
	position: absolute;
	display: inline-block;
	content: "\f095";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 20px;
	height: 20px;
	font-size: 20px;
	right: 50%;
	top: 50%;
	margin-right: -10px;
	margin-top: -22px;
}
	#header .header_mail a {
	position: fixed;
	right: 5px;
	top: 5px;
	display: block;
	text-align: center;
	width: 54px;
	padding: 37px 0 5px;
	background: #097c25;
	color: #fff;
	font-size: 10px;
	z-index: 99;
	text-decoration: none;
	-webkit-transition: all .5s;
	transition: all .5s;
	border-radius: 3px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
#header .header_mail a:before {
	position: absolute;
	display: inline-block;
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 20px;
	height: 20px;
	font-size: 20px;
	right: 50%;
	top: 50%;
	margin-right: -10px;
	margin-top: -22px;
}
}

/*スマホ画面でハンバーガーメニューの形にする*/
@media screen and (max-width: 749px) {
.btn-gnavi {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 300;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
			background: #00bfff;
	border-radius: 5px;
}
.btn-gnavi span {
    position: absolute;
    width: 30px;
    height: 4px;
	left: 10px;
    background: #fff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms
}
.btn-gnavi span:nth-child(1) {
    top: 13px
}
.btn-gnavi span:nth-child(2) {
    top: 23px
}
.btn-gnavi span:nth-child(3) {
    top: 33px
}
.btn-gnavi.open {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}
.btn-gnavi.open span {
    background: #fff
}
.btn-gnavi.open span {
    width: 24px;
}
}

/*sticky*/
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
@media print, screen and (min-width: 750px) {
.is-fixed nav {
	padding: 15px 0 0;
}
.is-fixed nav ul li {
  font-size: 15px;
  }
}
/* ============================================================
footer
============================================================ */
#footer {
  max-width: 1200px;
  margin: auto;
  padding: 70px 0 30px;
  text-align: center;
}
#footer .footer_logo {
 width: 288px;
  margin: 0 auto 10px;
}
#footer .footer_logo img {
	height: auto;
}
#footer .footer_info {
	margin: 30px 0;
}
#footer .footer_info li,
#footer .footer_info li a {
  display: inline-block;
  margin: 0 15px;
	font-size: 3rem;
  font-weight: bold;
}
#footer .footer_info li:nth-of-type(1)::before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 90%;
	color: #097c25;
	margin: 0 10px 0 0;
	vertical-align: middle;
}
#footer .footer_info li:nth-of-type(2)::before {
	content: "\f1ac";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 90%;
	color: #097c25;
	margin: 0 10px 0 0;
	vertical-align: middle;
}
#footer ul li a:hover {
  color: #097c25;
}
footer small {
  display: block;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  font-size: 1.5rem;
	color: #666;
  text-align: center;
}

@media screen and (max-width: 767px) {
#footer {
  max-width: 1200px;
  margin: auto;
  padding: 70px 0 30px;
  text-align: center;
}
#footer .footer_logo {
 width: 288px;
  margin: 0 auto 10px;
}
#footer .footer_info {
	margin: 30px 0;
}
#footer .footer_info li,
#footer .footer_info li a {
  display: inline-block;
  margin: 0 15px;
	font-size: 3rem;
  font-weight: bold;
}
#footer .footer_info li:nth-of-type(1)::before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 90%;
	color: #097c25;
	margin: 0 10px 0 0;
	vertical-align: middle;
}
#footer .footer_info li:nth-of-type(2)::before {
	content: "\f1ac";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 90%;
	color: #097c25;
	margin: 0 10px 0 0;
	vertical-align: middle;
}
#footer ul li a:hover {
  color: #097c25;
}
footer small {
  display: block;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  font-size: 1.5rem;
	color: #666;
  text-align: center;
}
}

/*contentWrap*/

.contentWrap {
	max-width: 1200px;
  width: 96%;
  margin: 0 auto;
}
/* flexbox */
.flexbox {
	display: flex;
	flex-wrap: nowrap;
}
/*テキストに関するCSS
---------------------------------------------------------- */
/* テキスト揃え */
.txtL {
  text-align: left;
}
.txtR {
  text-align: right;
}
.txtC {
  text-align: center;
}
/*色指定*/
.color01 {
  color: #ff0;
}
.color02 {
  color: #c00;
}
.color_ff {
	color: #fff;
}
/* 背景色 */
.bg01 {
	background: #097c25;
}
.size06 {
	font-size: 0.6rem;
}
.size08 {
	font-size: 0.8rem;
}
.size12 {
	font-size: 1.2rem;
}
.size13 {
	font-size: 1.3rem;
}
.size14 {
	font-size: 1.4rem;
}
.size15 {
	font-size: 1.5rem;
}
.size16 {
	font-size: 1.6rem;
}
.size17 {
	font-size: 1.7rem;
}
.size18 {
	font-size: 1.8rem;
}
.size20 {
	font-size: 2rem;
}
.size24 {
	font-size: 2.4rem;
}
.size25 {
	font-size: 2.5rem;
}
.size30 {
	font-size: 3rem;
}
.size40 {
	font-size: 4rem;
}
.weightB {
	font-weight: bold;
}
.weightB {
  font-weight: bold;
}
.marker {
	background: linear-gradient(transparent 70%, rgb(255, 255, 0) 0%);
}
/*margin-bottom*/
.marB10 {
	margin-bottom: 10px;
}
.marB15 {
	margin-bottom: 15px;
}
.marB20 {
	margin-bottom: 20px;
}
.marB30 {
	margin-bottom: 30px;
}
.marB35 {
	margin-bottom: 35px;
}
.marB40 {
	margin-bottom: 40px;
}
.marB50 {
	margin-bottom: 50px;
}
.marB100 {
	margin-bottom: 100px;
}
/*textHidden*/
.textHidden {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
/*clearFix*/
.clear:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
/* ============================================================
キービジュアル
============================================================ */
#kv {
  position: relative;
	width: 100%;
  line-height: 0;
	text-align: center;
  overflow: hidden;
  background: url(../../images/kv_bg.jpg) no-repeat center top;
	background-size: cover;
}
#kv .kv_img {
  max-width: 1326px;
  margin: auto;
  padding-top: 25px;
}
#kv .kv_img img {
  width: 100%;
	height: auto;
}
.kv_bt {
	position: relative;
	z-index: 2;
	margin-top: -95px;
}
.kv_bt a img {
	max-width: 750px;
	width: 100%;
	height: auto;
	 transition: 0.5s all;
}
.kv_bt a:hover img {
	opacity: 1;
	transform:scale(1.1,1.1);
  transition:0.5s all;
}
@media print, screen and (max-width: 767px) {
#kv .kv_img {
  padding-top: 15px;
}
.kv_bt {
	position: relative;
	z-index: 2;
	margin-top: -35px;
}
.kv_bt a img {
	max-width: 90%;
	 transition: 0.5s all;
}
}
/* ============================================================
トップページ
============================================================ */
/* solution */
.solution_voice {
	position: relative;
	z-index: 1;
	margin-top: -85px;
	padding: 200px 0 150px;
background: #097c25;
}
.solution_voice::after {
 content: "";
  position: absolute;
  right: 0;
  bottom: -65px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #097c25 transparent transparent transparent;
  border-width: 65px 100px 0 100px;
}
.solution_voice h2 {
	margin-bottom: 60px;
	line-height: 1.5;
	color: #fff;
}
.solution_box {
	position: relative;
	padding: 25px 25px 182px 25px;
	background: #fff;
	border-radius: 5px;
}
.solution_box p {
	margin-bottom: 10px;
	padding: 0 0 0 40px;
	font-size: 2rem;
	line-height: 1.6;
	background: url(../../images/check_ico.png) no-repeat left top;
	background-size: 27px auto;
}
.solution_box figure {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	line-height: 0;
}
.solution_box figure img {
	width: auto;
	height: 182px;
}
.solution_area {
	position: relative;
	padding: 180px 0 120px;
background: #b5d7bd;
}
.solution_area h2 span {
	position: relative;
	display: inline-block;
	margin-bottom: 65px;
	padding: 30px 20px 20px 145px;
	color: #fff;
	line-height: 1.4;
	background: #f90;
	border-radius: 5px;
}
.solution_area h2 span::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	width: 126px;
	height: 134px;
	background: url(../../images/solution_area_ttl_bg.png) no-repeat left bottom;
	background-size: 126px auto;
}
.solution_area h3 {
	margin-bottom: 30px;
	line-height: 1.5;
}
.solution_area .pc_flexbox02 figure img {
	width: 100%;
	height: auto;
	border: 1px solid #fff;
}
@media (max-width: 767px) {
	.solution_voice {
	margin-top: -70px;
	padding: 100px 0 80px;
}
.solution_voice::after {
  bottom: -45px;
  border-width: 45px 50px 0 50px;
}
.solution_voice h2 {
	margin-bottom: 40px;
	line-height: 1.4;
	font-size: 6.6vw;
}
.solution_box {
	padding: 15px 15px 150px 15px;
}
.solution_box p {
	padding: 0 0 0 30px;
	font-size: 4.26vw;
	line-height: 1.5;
	background: url(../../images/check_ico.png) no-repeat left top;
	background-size: 20px auto;
}
.solution_box figure img {
	height: 152px;
}
.solution_area {
	position: relative;
	padding: 80px 0;
}
.solution_area h2 {
	font-size: 6.66vw;
	text-align: left;
	}
.solution_area h2 span {
	margin-bottom: 45px;
	padding: 10px 20px 10px 95px;
}
.solution_area h2 span::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	display: inline-block;
	width: 86px;
	height: 91px;
	background: url(../../images/solution_area_ttl_bg.png) no-repeat left bottom;
	background-size: 86px auto;
}
.solution_area h3 {
	font-size: 6.4vw;
}
.solution_area p {
	margin-bottom: 10px;
	}
}

/* menu */
#menu {
	padding: 150px 0 130px;
background: url(../../images/texture01.jpg);
}
#menu .contentWrap h2 {
	margin-bottom: 45px;
	padding: 10px;
	color: #fff;
	border-radius: 5px;
	background: #039;
}
#menu .menu02 h2 {
	background: #097c25;
}
#menu .menu03 h2 {
	background: #f90;
}
#menu .contentWrap h2 span {
	padding: 10px 0 10px 55px;
	background: url(../../images/menu_ttl_bg01.png) no-repeat left center;
	background-size: 43px auto;
}
#menu .menu02 h2 span {
	background: url(../../images/menu_ttl_bg02.png) no-repeat left center;
	background-size: 43px auto;
}
#menu .menu03 h2 span {
	background: url(../../images/menu_ttl_bg03.png) no-repeat left center;
	background-size: 43px auto;
}
#menu .pc_flexbox03 > .menu_box {
	width: calc(100% / 3 - 40px);
	margin: 0 20px;
	padding: 15px;
	border: 1px solid #ccc;
	background: #fff;
}
#menu .pc_flexbox03 .menu_box img {
	width: 100%;
	height: auto;
}
#menu .pc_flexbox03 .menu_box h3 {
	margin-bottom: 10px;
	font-size: 2.2rem;
	font-weight: bold;
	color: #039;
}
#menu .menu02 .menu_box h3 {
	color: #097c25;	
}
#menu .menu03 .menu_box h3 {
	color: #f90;	
}
#menu .pc_flexbox03 .menu_box li {
	list-style: disc;
	margin: 0 0 0.5em 1em;
	line-height: 1.6;
}
@media (max-width: 767px) {
	#menu {
	padding: 80px 0;
}
#menu .contentWrap h2 {
	margin-bottom: 20px;
	font-size: 5.3vw;
}
#menu .contentWrap h2 span {
	padding: 10px 0 10px 45px;
	background: url(../../images/menu_ttl_bg01.png) no-repeat left center;
	background-size: 33px auto;
}
#menu .contentWrap h2:nth-of-type(2) span {
	background: url(../../images/menu_ttl_bg02.png) no-repeat left center;
	background-size: 33px auto;
}
#menu .contentWrap h2:nth-of-type(3) span {
	background: url(../../images/menu_ttl_bg03.png) no-repeat left center;
	background-size: 33px auto;
}
#menu .pc_flexbox03 > .menu_box {
	width: 100%;
	margin: 0 0 20px;
}
}
/* contact_area */
.contact_area {
	padding: 20px 0 0;
background: #097c25 url(../../images/contact_area_bg.jpg) no-repeat center bottom;
}
.contact_area img {
	height: auto;
}
.contact_area .contentWrap {
	padding: 55px 0;
	text-align: right;
background: url(../../images/contact_area_img.png) no-repeat left bottom;
}
.contact_area .contentWrap a img {
	 transition: 0.5s all;
}
.contact_area .contentWrap a:hover img {
	opacity: 1;
	transform:scale(1.1,1.1);
  transition:0.5s all;
}
@media (max-width: 1099px) {
.contact_area .contentWrap {
	width: 100%;
	padding: 55px 0;
background: url(../../images/contact_area_img.png) no-repeat -80px bottom;
}
}
@media (max-width: 999px) {
.contact_area .contentWrap {
	width: 96%;
	text-align: center;
background: none;
}
}
@media (max-width: 767px) {
.contact_area .contentWrap ul{
	width: 90%;
	margin: auto;
}
}
/* advantage */
#advantage {
	padding: 150px 0;
background: #cee5d3;
}
#advantage h2 {
	margin-bottom: 65px;
	font-size: 4.5rem;
}
#advantage h2 span {
	position: relative;
	padding: 10px 30px;
	font-size: 2.4rem;
	color: #f90;
	background: #fff;
	border-radius: 100px;
}
#advantage h2 span::after {
 content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;



	border-color: #fff transparent transparent transparent;
  border-width: 10px 10px 0 10px;
}
#advantage .contentWrap {
	max-width: 1000px;
	width: 96%;
}
#advantage .pc_flexbox03 > .advantage_box {
	width: calc(100% / 3 - 70px);
	margin: 0 35px 60px;
}
#advantage .pc_flexbox03 > .advantage_box img {
	height: auto;
}
#advantage .pc_flexbox03 > .advantage_box p {
	font-size: 2rem;
	line-height: 1.5;
}
#advantage .pc_flexbox03 > .advantage_box p span {
	font-size: 130%;
}
#advantage .pc_flexbox03 > .advantage_box p.size06 {
	font-size: 90%;
}

@media (max-width: 767px) {
	#advantage {
	padding: 80px 0;
}
#advantage h2 {
	margin-bottom: 35px;
	font-size: 7.46vw;
}
#advantage h2 span {
	display: inline-block;
	margin-bottom: 10px;
	padding: 10px 20px;
	font-size: 5.3vw;
	line-height: 1.5;
}
#advantage .pc_flexbox03 > .advantage_box {
	width: calc(100% / 2 - 40px);
	margin: 0 20px 60px;
}
#advantage .pc_flexbox03 > .advantage_box p {
	font-size: 4.26vw;
	text-align: left;
}
}
/* voice */
#voice {
	padding: 150px 0;
background: url(../../images/voice_bg.jpg) no-repeat center center;
	background-size: cover;
}
#voice .voice_box {
	margin-bottom: 40px;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
}
.voice_pic {
	margin-bottom: 30px;
	border-bottom: 3px solid #097c25;
}
.voice_pic figure {
	max-width: 78px;
	margin-right: 20px;
}
.voice_pic figure img {
	height: auto;
}
.voice_pic .bg01 {
	padding: 5px 10px;
}
.voice_pic .size20 {
	margin-left: 25px;
}
.voice_box_txt h3 {
	margin-bottom: 25px;
	font-size: 2.4rem;
	line-height: 1.4;
	color: #097c25;
}
.voice_box_img {
	padding-top: 20px;
}
.voice_box_img img {
	height: auto;
}
@media (max-width: 767px) {
	#voice {
	padding: 80px 0;
	}
	.voice_pic .size20 {
	margin-left: 0;
}
}
	
/* flow */
#flow {
	padding: 150px 0;
background: #eee;
}
.flow_box {
	position: relative;
	justify-content: space-between;
	max-width: 1050px;
	width: 100%;
	margin: 0 auto 65px;
	padding: 30px;
	background: #fff;
	border-radius: 5px;
}
.flow_box::after {
	position: absolute;
	bottom: -45px;
	left: 0;
	right: 0;
	content: "";
	display: block;
	width: 64px;
	height: 23px;
	margin: auto;
	background: url(../../images/arrow01.png) no-repeat;
}
.flow_box:last-child::after {
	content: none;
}
.flow_box figure {
	max-width: 340px;
}
.flow_box figure img {
	height: auto;
}
.flow_box .flow_txt {
	width: calc(100% - 340px - 60px);
}
.flow_box .flow_txt h3 {
	margin-bottom: 30px;
	font-size: 2.2rem;
	font-weight: bold;
	vertical-align: baseline;
}
.flow_box .flow_txt h3 span {
	padding: 10px 10px 5px;
	font-size: 1.25rem;
}
.flow_box .flow_txt h3 em {
	margin-left: 5px;
	font-size: 170%;
	font-style: normal;
}

@media (max-width: 767px) {
#flow {
	padding: 70px 0 50px;
}
.flow_box {
	position: relative;
	flex-direction: column;
}
.flow_box figure {
	max-width: 100%;
	width: 100%;
	margin-bottom: 10px;
}
.flow_box .flow_txt {
	width: 100%;
}
.flow_box .flow_txt h3 {
	margin-bottom: 20px;
	font-size: 5.3vw;
}
}
/* area */
#area {
	padding: 150px 0 120px;
}
#area h3 {
	margin-bottom: 70px;
	font-size: 3rem;
	font-weight: bold;
	color: #039;
	line-height: 1.4;
}
#area h3 span {
	font-size: 150%;
}
#area dl dt {
	margin-bottom: 20px;
	padding: 5px 20px;
	font-size: 120%;
	color: #fff;
	background: #097c25;
	border-radius: 5px;
}
#area dl dd {
	margin-bottom: 45px;
}
#area figure img {
	height: auto;
	
}
@media (max-width: 767px) {
#area {
	padding: 80px 0 50px;
}
#area h3 {
	margin-bottom: 30px;
	font-size: 6.66vw;
}
#area dl dd {
	margin-bottom: 30px;
}
}
/* faq */
#faq {
	padding: 150px 0 120px;
	background: #cee5d3;
}
#faq dl{
	max-width:1050px;
	margin:0 auto 20px;
	padding: 10px 20px;
	border: 1px solid #6bb07c;
	background: #fff;
}
#faq dt{
display:block;
cursor:pointer;
	text-indent: -45px;
	margin-left: 45px;
	font-size: 120%;
	color: #097c25;
}
#faq dt::before {
	display: inline-block;
	content: "Q";
	width: 35px;
	height: 35px;
	margin-right: 10px;
	text-align: center;
	font-size: 110%;
	font-weight: bold;
	color: #fff;
	text-indent: 0;
	background: #097c25;
	border-radius: 100px;
}
#faq dd{
display:none;
	text-indent: 0;
	margin-left: 45px;
	padding-top: 20px;
}
#faq dd::before {
	clear: both;
	display: inline-block;
	float: left;
	content: "A";
	width: 35px;
	height: 35px;
	margin-right: 10px;
	margin-left: -45px;
	text-align: center;
	font-size: 110%;
	font-weight: bold;
	color: #fff;
	text-indent: 0;
	background: #f90;
	border-radius: 100px;
}
#faq dd p {
	margin: 0;
}

@media (max-width: 767px) {
#faq {
	padding: 80px 0 50px;
	background: #cee5d3;
}
#faq dl{
	margin:0 auto 10px;
	padding: 10px;
}
}

/* index_ttl */
.index_ttl {
  margin-bottom: 70px;
  font-size: 4.5rem;
  line-height: 1.3;
}
.index_ttl::first-letter {
	margin-right: 3px;
	padding: 2px 5px;
	color: #fff;
	background: #f90;
}

@media (max-width: 767px) {
.index_ttl {
  margin-bottom: 40px;
  font-size: 9.6vw;
}
}

/* ============================================================
お問い合わせ
============================================================ */
#contact-us {
  padding: 150px 0;
	color: #fff;
	background: #097c25;
}
#contact-us .index_ttl {
	color: #fff;
}
.contact_info {
	max-width: 750px;
	width: 100%;
	margin: 50px auto 0;
	padding-bottom: 200px;
	text-align: center;
	background: url(../../images/contact_img01.png) no-repeat center bottom;
	background-size: 202px auto;
}
.contact_info_wrap {
	position: relative;
	padding: 30px;
	background: #479d5c;
	border-radius: 10px;
}
.contact_info_wrap::after {
 content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #479d5c transparent transparent transparent;
  border-width: 30px 50px 0 50px;
}
.contact_info h3 {
	margin-bottom: 20px;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.4
}
.kakomi01 {
	display: inline-block;
	margin-bottom: 10px;
	padding: 20px 30px;
	color: #000;
	background: #fff;
	border-radius: 100px;
}
.contact_info .color01 a {
	font-size: 6rem;
	font-weight: bold;
	color: #ff0;
	line-height: 1.3;
}
.contact_info .color01 a::before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
	font-size: 70%;
	margin-right: 10px;
	vertical-align: middle;
}
.contact_form {
	padding: 50px 50px 1px;
	background: #fff;
	border-radius: 10px;
	color: #000;
}
.contact_form em {
	font-style: normal;
	color: #c00;
}
.contact_form .addressBlock input {
	width: 100%;
	margin-bottom: 2em;
}
form#mail_form input[type="text"] {
	max-width: 100%;
	padding: 7px 2%;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
	margin-top: 7px;
}
form#mail_form textarea {
	display: block;
	width: 100%;
	height: 200px;
	padding: 7px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 100%;
	font-family: inherit;
}
.privacyBlock {
	margin-bottom: 50px;
}
.privacyBlock label {
  display: flex;
}
.privacyBlock a {
	background: #ff0;
}
.confirmBlock {
	text-align: center;
	line-height: 1;
	margin-bottom: 100px;
}
ul.submit{
 display: flex;
  justify-content: center;
	width: 100%;
	font-size: 0;
	margin: 0;
  padding: 10px 0;
	-webkit-padding-start: 0px;
}
ul.submit li{
	display: block;
  margin: 0 10px;
	font-size: 18px;
}
ul.submit li button.reset{
	background-color: #c9c9c9;
	color: #434343;
	border: solid 1px #c9c9c9;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 20px 40px 22px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
    -webkit-border-radius: 0.25rem;;
    -moz-border-radius: 0.25rem;;
    -o-border-radius: 0.25rem;;
    border-radius: 0.25rem;;
}
ul.submit li button.reset:hover{
	background-color: #000;
	color: #FFF;
	cursor: pointer;
}
ul.submit li button.confirm{
	display: block;
	background-color: #ab1e38;
	font-size: 1.5rem;
	font-weight: 600;
	color: #FFF;
	letter-spacing: 2px;
	text-decoration: none;
	padding: 20px 40px;
	margin: 0 auto;
	border: solid 2px #ab1e38;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
    -webkit-border-radius: 0.25rem;;
    -moz-border-radius: 0.25rem;;
    -o-border-radius: 0.25rem;;
    border-radius: 0.25rem;;
}
ul.submit li button.confirm:hover{
	background-color: #666;
	color: #FFF;
	border: solid 2px #666;
	cursor: pointer;
}
/* 確認画面 */
.conbox01 {
	margin: 50px 0;
	padding: 40px;
	background: #fff;
	border-radius: 10px;
}
#contact-us table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 0 auto;
	color: #000;
 }
#contact-us table th {
  width: 25%;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  text-align: left;
	background: #eee;
}
#contact-us table th.submit {
	border: none;
	background: none;
}
#contact-us table td {
  padding: 15px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
#contact-us #agree_check {
  max-width: 1100px;
  width: 96%;
  margin: 20px auto 0;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}
#contact-us #agree_check input {
 margin-right: 5px; 
}
#contact-us input[type="submit"] {
	display: block;
	background-color: #ab1e38;
	font-size: 1.5rem;
	font-weight: 600;
	color: #FFF;
	letter-spacing: 2px;
	text-decoration: none;
	padding: 20px 40px;
	margin: 0 auto;
	border: solid 2px #ab1e38;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
    -webkit-border-radius: 0.25rem;;
    -moz-border-radius: 0.25rem;;
    -o-border-radius: 0.25rem;;
    border-radius: 0.25rem;;
	border: 2px solid #fff;
	cursor: pointer;
}
@media (max-width: 767px) {
#contact-us {
  padding: 80px 0;
}
.contact_info_wrap {
	padding: 20px;
}
.contact_info h3 {
	font-size: 5.3vw;
}
.kakomi01 {
	padding: 15px;
}
.contact_info .color01 a {
	font-size: 10.6vw;
}
.contact_form {
	padding: 20px;
}
.privacyBlock {
	margin-bottom: 30px;
}
.confirmBlock {
	margin-bottom: 0;
}
ul.submit{
 flex-direction: column;
}
ul.submit li{
	width: 100%;
}
ul.submit li button.reset{
	width: 100%;
	margin-bottom: 10px;
	background-color: #c9c9c9;
	color: #434343;
	border: solid 1px #c9c9c9;
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 600;
	padding: 20px 40px 22px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
    -webkit-border-radius: 0.25rem;;
    -moz-border-radius: 0.25rem;;
    -o-border-radius: 0.25rem;;
    border-radius: 0.25rem;;
}
ul.submit li button.reset:hover{
	background-color: #000;
	color: #FFF;
	cursor: pointer;
}
ul.submit li button.confirm{
	width: 100%;
	display: block;
	background-color: #ab1e38;
	font-size: 1.5rem;
	font-weight: 600;
	color: #FFF;
	letter-spacing: 2px;
	text-decoration: none;
	padding: 20px 40px;
	margin: 0 auto;
	border: solid 2px #ab1e38;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
    -webkit-border-radius: 0.25rem;;
    -moz-border-radius: 0.25rem;;
    -o-border-radius: 0.25rem;;
    border-radius: 0.25rem;;
}
ul.submit li button.confirm:hover{
	background-color: #666;
	color: #FFF;
	border: solid 2px #666;
	cursor: pointer;
}
/* 確認画面 */
.conbox01 {
	margin: 30px 0;
	padding: 20px;
}
#contact-us table th {
	display: block;
  width: 100%;
}
#contact-us table td {
	display: block;
  width: 100%;
}
#contact-us #agree_check {
  max-width: 1100px;
  width: 96%;
  margin: 20px auto 0;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}
#contact-us #agree_check input {
 margin-right: 5px; 
}
}
/* ページの先頭に戻る
---------------------------------------------------------- */
#topcontrol {
	position: fixed;
	z-index: 1000;
	bottom: 70px;
	right: 5px;
	opacity: 1;
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	color: #fff;
	line-height: 1.3;
}
#topcontrol a{
	display: block;
	width: 80px;
	height: 80px;
	padding: 10px 0 0;
	font-size: 12px;
	font-weight: bold;
	color: #fff;
	background: #06c;
	border-radius: 100px;
	box-sizing: border-box;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
#topcontrol a::before {
	display: block;
	content: "\f077";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 200%;
	color: #fff;
}
#topcontrol a:hover {
	background: #333;
}

@media print, screen and (min-width: 768px) {
  /*各デバイス非表示設定*/

  .pc_no {
    display: none !important;
  }
  .pc_flexbox02 {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_flexbox02 > * {
    width: calc(100% / 2 - 2%);
    margin: 1%;
  }
  .pc_flexbox03 {
    display: flex;

    flex-wrap: wrap;
  }
  .pc_flexbox03 > * {
    width: calc(100% / 3 - 2%);
    margin: 1%;
  }
  .pc_flexbox04 {
    display: flex;

    flex-wrap: wrap;
  }
  .pc_flexbox04 > * {
    width: calc(100% / 4 - 2%);
    margin: 1%;
  }
	/* telリンクを無効 */
	a[href^="tel:"] {
		cursor: default;
		color: #000;
		pointer-events: none;
	}
}

@media screen and (max-width: 767px) {
  /*各デバイス非表示設定*/
  .sp_no {
    display: none !important;
  }
  /*テキストに関するCSS
---------------------------------------------------------- */
  /* テキスト揃え */
  .sp_txtL {
    text-align: left;
  }
  .sp_txtR {
    text-align: right;
  }
  .sp_txtC {
    text-align: center;
  }
  .sp_flexbox02 {
    display: flex;

    flex-wrap: wrap;
  }
  .sp_flexbox02 > * {
    width: calc(100% / 2 - 2%);
    margin: 1%;
  }
  .sp_flexbox03 {
    display: flex;
    flex-wrap: wrap;
  }
  .sp_flexbox03 > * {
    width: calc(100% / 3 - 2%);
    margin: 1%;
  }
/* ============================================================
枠基本スタイル
============================================================ */
  body {
    min-width: inherit;
    max-width: 100%;

  }
  div#container {
    width: 96%;
    margin: 0 auto;
  }
	
}
/* ローディング */
.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9999;
}
/* アニメーション */
.animation {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  -webkit-animation: loadinganimation 1500ms ease-out forwards infinite;
  animation: loadinganimation 1500ms ease-out forwards infinite;
}