@charset "utf-8";
/* CSS Document */
/*----------------------------------------
■共通設定
-----------------------------------------*/
/******************************************************************************
 * RESET
*******************************************************************************/
h1,h2,h3,h4,h5,h6,
a, abbr, acronym, address, applet, article, aside, audio,
b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed,
fieldset, figcaption, figure, form, footer,
header, hgroup, h1, h2, h3, h4, h5, h6, html,
i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,
object, ol, output, p, pre, q, ruby,
s, samp, section, main, small, span, strike, strong, sub, summary, sup,
tt, table, tbody, textarea, tfoot, thead, time, tr, th, td,
u, ul, var, video {
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  white-space: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1;
  background: transparent;
  font-family:'Helvetica Neue','Arial','Roboto','Noto Sans JP','Hiragino Kaku Gothic ProN','Hiragino Sans','Meiryo',sans-serif;
  font-weight: 400;
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, main {
  display: block;
}

img {
  vertical-align:bottom;
  border: none;
  max-width: 100%;
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;

}
a{
  color: #000;
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}
li{list-style:none;}
input[type="text"],
input[type="password"],
textarea,
select {
    outline: none;
}

a:hover img{
  opacity: .6;
}
html {
  height: 100%;
  margin: 0 !important;
  overflow-x: hidden;
}

.inner{
  max-width: 940px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  box-sizing: border-box;
  z-index:100;
  justify-content: space-between;

}
.wrap-box{
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;

}
.anchor-txt{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
img{
  width: 100%;
  max-width: 100%;
}
.btn-no,
.mfp_element_button,
.index-btn button,
.confirm button,
.btn-text{
  background:#1d8109;
  text-align: center;
  color: white;
  padding: 20px 0;
  border: #1d8109;
  cursor: pointer;
  max-width: 340px;
  box-sizing: border-box;
  width: 100%;
-webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0 10px;
  border: 1px solid #1d8109;
}
.submit-button,
.confirm button,
.btn-text{
  background: #c84c4c;
  border: 1px solid #c84c4c;
-webkit-transition: all .3s ease;
  transition: all .3s ease;

}
.btn-no:hover{
  color:#404862;
  background: white;
}
.btn-text:hover{
  background: white;
  color: #1d8109;
}
.btn-no,
.mfp_cancell_button,
.btn-back{

  background:#404862;
  text-align: center;
  color: white;
  cursor: pointer;
  border: 1px solid #404862;

}

.mfp_cancell_button:hover,
.btn-back:hover{
  color:#404862;
}
.small-txt{
	display: block;
	font-size: 12px;
	margin-top: 12px;
}
.btnbox{
  align-items: center;
  justify-content: center;
}
.submit-button,
.mfp_element_button,
.index-btn button,
.confirm button{
  text-shadow: none;
  border-radius: 0;
  width: 340px;
  height: 58px;
  line-height: 22px;
  cursor: pointer;
}
.submit-button:hover,
.mfp_element_button:hover,
.index-btn button:hover,
.confirm button:hover{
  box-shadow: none;
  background: white;
  color: #1d8109;
}
.submit-button{
	color: white;
}
.submit-button:hover{
	color: #c84c4c;
}
.confirm button:hover,
.btn-text:hover{
  color: #c84c4c;
}
@media screen and (max-width: 767px){
  .submit-button{
    margin-top:0.75rem;
  }
}
#thanks-page{
  margin-bottom: 120px;
}
#thanks-page p{
  margin: 50px 0;
  text-align: center;
}
.none-text{
  border: 1px solid #F00;
  text-align: center;
  padding: 50px 0;
  margin-bottom: 50px;
}

.parsley-errors-list li{
  color: #F00;
  font-size: 12px;
    font-weight: normal;
    display: block;
  margin: 5px 0px 0px 0px !important;
}
.problem {
    background-color: #FCC;
}
/*----------------------------------------
header
-----------------------------------------*/
#header{
  background: rgb( 77,56,51 );
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
#header .inner{
  height:100%;
  align-items: center;

}
#header-logo{
  width: 320px;
}
#panel-btn {
  width:40px;
  height:25px;
  border: none;
  outline: none;
  position: relative;
  cursor: pointer;
  display: block;
  background:none;

}
#panel-btn-icon {
  display: block;
  position: absolute;
  text-align: center;
  z-index: 11;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width:100%;
  height: 2px;

  background:white;
  -webkit-transition: .2s;
  transition: .2s;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
  display: block;
  content: "";
  position:absolute;
  top: 50%;
  width:100%;
  height: 2px;
  background:white;
  -webkit-transition: .3s;
  transition: .3s;
}
#panel-btn-icon:before {
  margin-top: -12px;
}
#panel-btn-icon:after {
  margin-top: 10px;
}

#panel-btn .close {
  background: transparent;
}
#panel-btn .close:before,
#panel-btn .close:after {
   margin-top: 0;
}
#panel-btn .close:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#panel-btn .close:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
#sp-menubox{
  position:fixed;
  top: 0;
  right:-100%;
  z-index: 110;
  width: 32%;
  width:420px;
  height: 100%;
  box-sizing: border-box;
  background:rgba( 255,255,255,.9 );
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding:100px 0 0;
  overflow-x: hidden;
  -webkit-transition: .3s;
  transition: .3s;
}
#sp-menubox .menu{
  height: 100%;
  overflow: auto;
}
#sp-menubox .box{
  margin:0 0 0;
}
#sp-menubox .box:last-of-type{
  padding-bottom:170px;
}
#sp-menubox .box h3{
  background: rgb( 77,56,51 );
  color: white;
  font-size: 20px;
  padding: 12px;
}

#sp-menubox .box li{
  border-bottom: 1px solid rgb( 77,56,51 );
  padding: 15px;
}
#sp-menubox .btn-box{
  padding: 20px;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height:161px;
}
#sp-menubox .btn{
  width: auto;
}
.open-box{
  right: 0 !important;
}

/*----------------------------------------
.btn-box
-----------------------------------------*/
.btn-box{
  background: rgb( 77,56,51 );
  padding: 30px 0;
}
.btn-box h3{
  text-align: center;
  color: white;
  font-size: 22px;
  margin-bottom: 15px;
}
.btn-box .text{
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.btn-box .text dt{
  color: rgb( 209,191,120 );
  font-size: 32px;
  font-weight: bold;
  margin-right: 15px;
}
.btn-box .text dd{
  width: 450px;
}

.btn{
 position: relative;
  display:block;
  padding: 15px 0 12px;
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
  margin: auto;
}
.color-btn1{
  background: #fd9535;
  border-bottom: solid 2px #d27d00;
  border-radius: 4px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  width: 520px;
  margin-bottom: 15px;
}
.color-btn2{
  background:#0fa124;
  border-bottom: solid 2px #168607;
  border-radius: 4px;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  width: 480px;
}

.btn .intxt{
  align-items: center;
  justify-content: center;
}
.btn .intxt .txt{
  margin-right: 12px;
}
.btn .intxt .txt,
.btn .intxt i{
  font-size: 24px;
}

/*----------------------------------------
gnavi
-----------------------------------------*/
#gnavi{
  background: rgb( 77,56,51 );
  margin: 2px 0;
}
#gnavi ul{
  align-items: center;
  height: 100%;
}
#gnavi ul li:first-child{
  border-left: 2px solid white;
}
#gnavi ul li{
  text-align: center;
  width: 25%;
  position: relative;
  padding: 22px 0;
  border-right: 2px solid white;
  box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
}
#gnavi ul li:hover{
  background: white;
}
#gnavi ul li .txt{
  color: white;
  -webkit-transition: .3s;
  transition: .3s;
}
#gnavi ul li:hover .txt{
  color: rgb( 77,56,51 );
}
/*----------------------------------------
box-title
-----------------------------------------*/
.box-title{
  border-bottom: 2px solid rgb( 77,56,51 );
  font-size: 24px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  text-align: center;
}
.top-txt{
  color: #2b8b31;
  font-size: 26px;
  margin-bottom: 22px;
  text-align: center;
}
.contents-box{
  padding: 45px 0;
}
/*----------------------------------------
form-box
-----------------------------------------*/

.box-mintitle{
  justify-content: center;
  align-items: center;
}
.box-mintitle .icon{
  background: rgb( 77,56,51 );
  color: white;
  width: 120px;
  padding:16px 0;
  border-radius:12px;
  font-size:16px;
  letter-spacing:.1em;
}
.form-box .number-minbox .minbox{
  width: 48.5%;
}
.form-box .number-minbox .minbox dl{
  border-bottom: 0;
}
.form-box .number-minbox .minbox dt{
  width: 55%;
}
.form-box .number-minbox .minbox dd{
  width: 35%;
}
#form2 .inbox:not(:last-of-type){
  margin-bottom: 80px;
}
/*
#form2 .inbox:last-of-type{
  margin-bottom: 120px;
}
*/
.form-box .inner{
  max-width: 850px;
}
.form-box dl{
  border-bottom: 1px solid #f1f1f1;
  padding: 15px 5px;
  align-items: center;
}
.form-box dl dt{
  display: table;
  table-layout: fixed;
  width: 30%;
}
.form-box dd{
  width: 65%;
  position: relative;
}
.form-box dl dt .txt,
.form-box dl dt .item{
  display: table-cell;
  vertical-align: middle;
}
.form-box dl .item{
  background: #f12222;
  color: white;
  width: 40px;
  padding: 5px 3px 4px 8px;
  border-radius: 4px;

}
.form-box .inputtxt,
.form-box .textarea{
  border: 1px solid #ddd;
  width: 100% !important;
  box-sizing: border-box;
  padding: 12px;
  font-size: 16px;
  max-width: none;
-webkit-appearance:none;
border-radius: 0;
  white-space:pre;
}

.form-box .minwidthinput{
  width: 20% !important;
}

.form-box dd .mintxt{
  margin: 0 12px;
}
.form-box .itembtn-box{
  border: 1px solid #ddd;
  box-sizing: border-box;
  padding: 20px 0;
}
.form-box .itembtn-box p{
  text-align: center;
  margin-bottom: 20px;
}

.form-box .itembtn-box .btnbox{
  flex-direction: row-reverse;
}

/*
.form-box dl:last-of-type{
  align-items: flex-start;
}
*/
.form-box .textarea{
  resize: none;
  height: 350px;
}

div.mfp_err{
  background: none;
  margin: 0;
  padding: 0;
  width: 300px;
}

.box-btn button{
  max-width: 320px;
  width: 100%;
  margin: auto;
  -webkit-transition: .3s;
  transition: .3s;

}

.form-box{
  margin-bottom: 120px;
}

.form-box .end-box{
  margin-bottom: 80px;
}


/*----------------------------------------
footer
-----------------------------------------*/
#footer{
  text-align: center;
  background: rgb( 77,56,51 );
  padding: 22px 0;
}
#footer .copy{
  color: white;
  font-size: 12px;
  letter-spacing: .1em;
}
.sp-only{
  display: none;
}


#page-top {
    position: fixed;
    bottom: 65px;
	z-index: 100;
    right: 20px;
	width: 70px;
}

/*****************************************************************************
 width 767px
 *****************************************************************************/
@media screen and (max-width: 767px){
	#page-top{
		width: 45px;
		right: 10px;
		border: 20px;
	}

	.radio-box li{
		align-items: center;
	}
	.sp-only{
	display:block;
	}
	.form-box .inner{
	max-width: none;
	}
	.inner{
		padding-left: .75rem;
		padding-right: .75rem;
	}

	html{
		font-size:3.125vw;
	}


	.btn{
		width:100%;
		padding:2rem 0 1.75rem;

	}
	#header{
		height: 4rem;
	}
	#panel-btn{
		width: 2rem;
		height: 1.25rem;
	}
	#panel-btn-icon:before {
	margin-top: -.75rem;
	}
	#panel-btn-icon:after {
	margin-top: .45rem;
	}
	.index-top-box h2{
	font-size: 1.25rem;
	line-height: 1.4;
	}
	.index-top-box ul li{
	width: 33.33333333%;
	padding-top: 45%;
	}
	.determination-box{
	background-size:cover;
	padding-top: 80%;
	}
	.determination-box .title{
	padding:.75rem 0;
	}
	.determination-box .title h2{
	font-size:1.75rem;
	line-height: 1.4;
	}
	#header-logo{
		width: 16rem;
	}
	.determination-box .text-box dt{
	font-size:1.75rem;
	margin-bottom:.75rem;
	}
	.determination-box .text-box dd{
	font-size:1.25rem;
	}
	.btn-box{
	padding:2rem 0 2.25rem;
	}
	.btn-box h3{
	font-size:1.25rem;
	margin-bottom:.75rem;
	line-height:1.6
	}
	.btn-box .text{
	margin-bottom:1.75rem;
	}
	.btn .intxt .txt{
	margin-right:.25rem;
	}
	.btn .intxt .txt,
	.btn .intxt i{
	font-size:1.25rem;
	}

	#gnavi ul li:nth-child(3){
	border-left: 2px solid white;
	}
	#gnavi ul li:nth-child(1),
	#gnavi ul li:nth-child(2){
	border-bottom: 2px solid white;
	}
	#gnavi ul{
	padding: 0;
	}
	#gnavi ul li .txt{
	font-size:1.25rem;
	}
	#gnavi ul li{
	text-align: center;
	width: 50%;
	}
	.contents-box{
	padding:2.75rem 0;
	}
	.box-title{
	font-size:1.25rem;
	margin-bottom:.75rem;
	padding-bottom:.75rem;
	text-align: left;
	}
	.box-mintitle{
	justify-content: flex-start;
	}
	.top-txt{
	font-size:1.75rem;
	margin-bottom:1.25rem;
	}

	.exsample-box{
	margin-bottom:2.5rem;
	}
	.exsample-box h3{
	padding:1.25rem 0;
	font-size:1.75rem;
	margin-bottom:1rem;
	}
	.exsample-box dt{
	width: 100%;
	}
	.exsample-box dd{
	width: 100%;
	padding:1rem;
	}
	.exsample-box li{
	font-size:1.25rem;
	line-height: 1.8;
	}
	.exsample-box .text-right{
	font-size:1.25rem;
	}

	.table-box table{
	width:50rem;
	}
	.table-box table th{
	width: 5rem;
	}

	.table-box table .item-th{
	width: 12rem;
	}
	.table-box table th, .table-box table td{
	font-size: 1.75rem;
	padding: 2rem 1rem;
	}
	.scroll{
	overflow: auto;
	white-space: nowrap;
	margin-bottom: 2rem;
	}
	.scroll::-webkit-scrollbar{
	height: 5px;
	}
	.scroll::-webkit-scrollbar-track{
	background: #F1F1F1;
	}
	.scroll::-webkit-scrollbar-thumb {
	background: #BCBCBC;
	}
	.index-top-box{
	margin-top: 4rem;
	}
	#sp-menubox{
	width: 100%;
	padding: 5rem 0 0;
	height: 100%;

	}
	#sp-menubox .menu{
		position: relative;
		padding-bottom:0;
		box-sizing: border-box;
		height:100%;
		overflow: scroll;
	}
	#sp-menubox .box{
	margin: 0 1rem 0;
	}
	#sp-menubox .box:last-of-type{
		padding-bottom:5vw;
	}

	#sp-menubox .btn-box{
	height:auto;
	padding:1rem;
	position: relative;
	padding-bottom:10vw;
	left: auto;
	bottom: auto;
	}
	#sp-menubox .box h3{
	font-size:1.25rem;
	padding:1rem;
	}

	#sp-menubox .box li{
	padding:0;
	}
	#sp-menubox .box li a{
		display: block;
		padding:1.25rem;
	}
	#sp-menubox .color-btn1{
	margin-bottom: 0;
	width:80%;
	}
	#sp-menubox .btn{
	padding: 1rem 0;
	}
	#sp-menubox .btn .txt,
	#sp-menubox .btn i{
	/*font-size: .75rem;*/
	font-size:4vw;
	}
	#sp-menubox .color-btn2{
	width:80%;
	margin-top:2vw;
	}

	.form-box dl dt{
	display: block;
	box-sizing: border-box;
	width:100% !important;
	margin-left: auto;
	font-size: 1.25rem !important;
	margin-bottom: .75rem;

	}
	.form-box dd{
	box-sizing: border-box;
	width: 100%;
	padding: 0.75rem 0 !important;
	}
	.form-box{
	margin-bottom:0;
	}
	.form-box dl dt .txt{
	font-size: 1.25rem;
	margin-bottom: .75rem;
	padding-right: .75rem;
	}
	.form-box dl .item{
	margin-left: auto;
	text-align: center;
	box-sizing: border-box;
	border-radius: 2px;
	font-size: 1.25rem;
	width: 3rem;
	padding: .4rem .2rem .3rem;
	}


	.form-box .number-minbox .minbox{
	width: 100%;
	}
	.form-box .number-minbox .minbox dd{
	width: 65%;
	}
	.box-mintitle .txt{
	font-size: 1.25rem;
	margin-right: .75rem;
	line-height: 1.6;
	}

	.box-mintitle .icon{

	width:3.5rem;
	text-align:center;
	padding:1rem 1.25rem;
	font-size:1.25rem;
	border-radius:6px;
	}

	.confirm{
	max-width:43% !important;
	width: 100%;
	}
	.confirm button{
	width: 100%;
	}
	.btn-no,
	.mfp_element_button,
	.index-btn button,
	.confirm button,
	.btn-text{
	max-width:43%;
	font-size: .75rem;
	padding: 1.25rem 0;
	margin: 0 .75rem;
	}

	.btnbox{
	justify-content:center;
	margin: 0;
	}
	div.mfp_buttons {
		clear: both;
		padding: 0;
		text-align: center;
		width: 50%;
		max-width: none;
	}
	.confirm button {
		max-width: none;
		font-size: .75rem !important;
		height: auto;
		padding: 1.25rem 0;
		line-height: inherit;
	}
	.faq-box .inbox .txt{
	padding-left: 0.75rem;
	}
	div.mfp_buttons,
	.index-btn{
	width: 100% !important;
	}
	.form-box dl{
	display: block;
	}
	.form-box dl:last-of-type{
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	}
	#form2 .inbox:not(:last-of-type){
	margin-bottom: 1.25rem;
	}
	form#mailformpro dl dd{
	padding: 0 !important;
	}
	#free-page .two-box .itemtxt{
	width: 18%;
	padding-right: 0;
	}

	#free-page .inner .box .top-txt-box{
	margin-bottom: 1.25rem;
	font-size: 1rem;
	}
	#form2 .inbox:last-of-type{
	margin-bottom: 1.75rem;
	}
	.form-addbtn .ibox{
	margin-bottom: 1rem;
	}
	#free-page .inner .box:first-of-type{
	padding-top: 0;
	}
	#free-page .inner .box .top-txt-box li{
	margin-bottom: 1rem;
	}
	#free-page .inner .box .top-txt-box{
	margin-bottom: 1.75rem;
	}

	#free-page .index-top-box{
	height: 8rem;
	margin-bottom: 0;
	}
	.form-box .inputtxt, .form-box .textarea{
	padding: .75rem;
	font-size: 1rem;
	}
	.form-box dl{
	padding: 1.25rem 0;
	}
	.form-box .minwidthinput{
	width: 8rem !important;
	}
	.form-box dd .mintxt{
	margin: 0 .75rem;
	font-size:1.75rem;
	}
	.select-box select{
	font-size: 1rem;
	}

	#free-page .two-box .inbox{
	width: 47.5%;
	}

	table#mfp_confirm_table tr th, table#mfp_confirm_table tr td{
	display: block;
	width: 100%;
	font-size: 1.25rem;
	padding: 1.25rem 1rem;
	box-sizing: border-box;
	margin-bottom:.75rem;
	}
	table#mfp_confirm_table tr td{
	margin-bottom:1.95rem;
	padding:0 .75rem;
	}
	table#mfp_confirm_table tr.mfp_colored{
	background:none !important;
	}
	table#mfp_confirm_table tr th{
	border-bottom: none !important;
	}

	table#mfp_confirm_table tr td,
	table#mfp_confirm_table tr th{
	border-top: none !important;
	}
	table#mfp_confirm_table tr th{
	background:#f1f1f1;
	}
}

/*--------------------------------------------------------------------------
  color
  --------------------------------------------------------------------------*/
  .red{ color:red; }
  .green{ color:green; }
  .white{ color:white; }