@charset "utf-8";

/*////////////////////////////////////////////////
ページの初期値設定
////////////////////////////////////////////////*/

@font-face {
    font-family: "NotoSansJP";
    font-style: normal;
    font-weight: normal;
		src: url("../../font/NotoSansJP/NotoSansJP-Light.woff") format("woff"),
				url("../../font/NotoSansJP/NotoSansJP-Light.otf") format("opentype");
}
@font-face {
    font-family: "NotoSansJP";
    font-style: normal;
    font-weight: bold;
		src: url("../../font/NotoSansJP/NotoSansJP-Bold.woff") format("woff"),
				url("../../font/NotoSansJP/NotoSansJP-Bold.otf") format("opentype");
}

html, body {
	width: 100%;
}
html {
	min-height: 100%;
	position: relative;
	font-size: 10px/*62.5%*/!important;/*=10px ベースのフォントサイズ*/
}
body,#wrapper {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;	
}
body {
	color: #351e00;
	font-family: Arial, NotoSansJP, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	text-align: left;
	line-height: 1;
	vertical-align: top;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;/*ページ全体ふわっと表示させる(1/3)*/
}

@keyframes fadeIn {/*ページ全体ふわっと表示させる(2/3)*/
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {/*ページ全体ふわっと表示させる(3/3)*/
    0% {opacity: 0}
    100% {opacity: 1}
}

a {	color: #333;}


/** オンマウス **/
.op:hover, .op:hover img{
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
}


/** ページ内リンク **/
.pagelink {
  margin-top:-70px;
  padding-top:70px;
}

@media all and (max-width: 999px) {
	.pagelink {
		margin-top:-60px;
		padding-top:60px;
	}
}


/** フェードイン **/
.fadeInUp {
	 opacity : 0;
	 transform: translateY(40px);
	 transition: 1s;
}


/** テキスト **/
.txtS {	line-height: 180%;}
.txtCr { color: #b42902;}
.txtCb { color: #0053a9;}
.txtCy { color: #ffde00;}
.txtCg { color: #01af86;}

@media all and (max-width: 999px) {
	.txtS {
		font-size: 1.4rem;
		line-height: 150%;
	}
}


/** 見出し **/
.ttlS {
	text-align: center;
	position: relative;
}
.ttlS:after {
	content: "";
	position: absolute;
	width: 40px;
	height: 3px;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #aaa69a;	
}
.ttlS img {
	width: inherit;
}

@media all and (min-width: 1000px){
	.ttlS {
		margin-top: 30px;
		margin-bottom: 60px;
	}
}

@media all and (max-width: 999px) {
	.ttlS {
		margin-top: 3vw;
		margin-bottom: 8vw;
	}
	.ttlS img {
		height: 6vw;
	}
}


/** その他 **/
@media all and (min-width: 1000px){
	.noPc { display: none;}
	.tel  { pointer-events: none;}
}

@media all and (max-width: 999px) {
	.noSp {	display: none;}
}

/*////////////////////////////////////////////////
contents
////////////////////////////////////////////////*/
#contents {
	width: 100%;
	position: relative;
}

/** conIn **/
.secIn {
	margin: 0 auto;
	box-sizing: border-box;
	position: relative;
}

@media all and (min-width: 1000px){
	.secIn {
		width: 1000px;
	}
	.secIn.wfull {
		width: 100%;
	}
}

@media all and (max-width: 999px) {
	.secIn {
		width: 100%;
		padding: 0 10px;
	}
	.secIn.wfull {
		padding: 0;
	}
}


/*////////////////////////////////////////////////
btn_contact
////////////////////////////////////////////////*/
.btn_contact {
	width: 100%;
}
.btn_contact .btn {
	margin: 0 auto;
	background: url("../../img/lp/btn_bg_red.png") left top / 100% auto no-repeat;
	box-sizing: border-box;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	position: relative;
}
.btn_contact .btn_free {
	color: #e8cb71;
	font-weight: bold;
	text-align: center;
	background-color: #2a0000;
	border-radius: 50%;
}
.btn_contact .btn_txt {
	color: #fff;
	font-weight: bold;
	text-align: center;
}
.btn_contact .btn_txt_head {
	color: #ffde00;
}
.btn_contact .btn_balloon {
	content: "";
	position: absolute;
	background: url("../../img/lp/btn_bg_coin.png") top right / 100% auto no-repeat;
	text-align: center;
	font-weight: bold;
	color: #2a0000;
	box-sizing: border-box;
}
.btn_contact .btn_balloon_main,
.btn_contact .btn_balloon_sub {
	color: #b42902;
}


@media all and (min-width: 1000px){
	.btn_contact .btn {
		width: 768px;
		height: 168px;
		padding-top: 30px;
		padding-left: 50px;
		overflow: visible;
		transition-duration: 0.5s;
	}
	.btn_contact .btn:hover {
		transform: scale(1.1,1.1);
		transition-duration: 0.5s;
	}
	.btn_contact .btn_free {
		width: 100px;
		height: 100px;
		font-size: 3.0rem;
		line-height: 100px;
	}
	.btn_contact .btn_txt {
		margin-left: 15px;
	}
	.btn_contact .btn_txt_head,
	.btn_contact .btn_txt_sub {
		font-size: 2.5rem;
	}
	.btn_contact .btn_txt_main,
	.btn_contact .btn_txt_sub {
		padding-top: 5px;
	}
	.btn_contact .btn_txt_main {
		font-size: 3.5rem;
	}
	.btn_contact .btn_balloon {
		width: 100px;
		height: 100px;
		padding-top: 12px;
		top: -40px;
		right: -10px;
		font-size: 1.8rem;
	}
	.btn_contact .btn_balloon_main {
		font-size: 40px;
	}
}

@media all and (max-width: 999px) {
	.btn_contact {
		padding-bottom: 6vw;
	}
	.btn_contact .btn {
		width: 100%;
		height: 20vw;
		padding-top: 3.5vw;
		padding-left: 6vw;
	}
	.btn_contact .btn_free {
		width: 12vw;
		height: 12vw;
		font-size: 4vw;
		line-height: 12vw;
	}
	.btn_contact .btn_txt {
		margin-left: 2vw;
	}
	.btn_contact .btn_txt_head,
	.btn_contact .btn_txt_sub {
		font-size: 3vw;
	}
	.btn_contact .btn_txt_main,
	.btn_contact .btn_txt_sub {
		padding-top: 1vw;
	}
	.btn_contact .btn_txt_main {
		font-size: 4vw;
	}
	.btn_contact .btn_balloon {
		width: 13vw;
		height: 13vw;
		padding-top: 1.5vw;
		top: -4vw;
		right: 0;
		font-size: 2.5vw;
	}
	.btn_contact .btn_balloon_main {
		font-size: 5vw;
	}
}


/*////////////////////////////////////////////////
bizbnr
////////////////////////////////////////////////*/
#bizbnr {
	position: fixed;
	z-index: 999;
}
#bizbnr .close {
	position:absolute;
	display:inline-block;
	cursor:pointer;
}
#bizbnr .close:before {
	width:2px;
	height:35px;
	content:"";
	position:absolute;
	display:inline-block;
	top:4px;
	left:20px;
	border:0;
	margin:0;
	padding:0;
	background-color:white;
	-moz-transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
}
#bizbnr .close:after {
	width:2px;
	height:35px;
	content:"";
	position:absolute;
	display:inline-block;
	top:4px;
	left:20px;
	border:0;
	margin:0;
	padding:0;
	background-color:white;
	-moz-transform:rotate(-45deg);
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
}
#bizbnr .bizbnrIn {
	position: relative;
}
#bizbnr .con_biz {
	background: -webkit-linear-gradient(#ffc000, #ffea50);
	background: -o-linear-gradient(#ffc000, #ffea50);
	background: linear-gradient(#ffc000, #ffea50);
}
#bizbnr .con_biz .txt {
	color: #855d10;
	font-weight: bold;
}
#bizbnr .link {
	background-color: #b28604;
	position: relative;
}
#bizbnr .link:after {
	width: 0;
	height: 0;
	content: "";
	position: absolute;
}

@media all and (min-width: 1000px) {
	#bizbnr {
		top: 150px;
		right: 0;
	}
	#bizbnr .close {
		width:40px;
		height:40px;
		top:-40px;
		right:0;
		background-color:#ffc000;
	}
	#bizbnr .con_biz {
		text-align: center;
		transition: .2s;
	}
	#bizbnr .con_biz:hover {
		background-color: #ffd300;
	}
	#bizbnr .con_biz .txt_box {
		width: 30px;
		padding: 30px 30px 20px;
		font-weight: bold;
	}
	#bizbnr .con_biz .txt_box .txt {
		font-size: 2.6rem;
		line-height: 110%;
	}
	#bizbnr .link {
		width: 100%;
		padding: 20px 0;
		background-color: #b28604;
		position: relative;
		color: #fff;
	}
	#bizbnr .link .icn_triangle {
		position: relative;
	}
	#bizbnr .link .icn_triangle:after {
		content: "";
    width: 0;
    height: 0;
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
		margin-top: -5px;
		border-left: 5px solid #fff;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
	}
}

@media all and (max-width: 999px) {
	#bizbnr {
		width:100%;
		bottom: 0;
		left: 0;
	}
	#bizbnr .close {
		width:40px;
		height:40px;
		top:-20px;
		right:10px;
		border-radius: 50%;
		background-color:#aaa;
		transform: scale(0.8, 0.8);
	}
	#bizbnr .con_biz {
		width: 100%;
		height: 14vw;
		box-sizing: border-box;
		border-radius: 20px 20px 0 0;
		text-align: center;
		transition: .2s;
    -moz-box-shadow: 0 -5px 10px -4px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 -5px 10px -4px rgb(0 0 0 / 40%);
		box-shadow: 0 -5px 10px -4px rgb(0 0 0 / 40%);
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#bizbnr .con_biz .txt_box {
		text-align: left;
	}
	#bizbnr .con_biz .txt_box .txt {
		margin-right: 10px;
		display: block;
		font-size: 5vw;
		font-weight: bold;
	}
	#bizbnr .con_biz .link {
		padding: 2vw 4vw 2vw 2vw;
		display: inline-block;
		border-radius:6vw;
		text-indent: 0.2em;
		font-weight: bold;
		color: #855d10;
	}
	#bizbnr .con_biz .link:after {
		right: 5px;
		top:50%;
		margin-top: -8px;
		border-left: 8px solid #b28604;
		border-top: 8px solid transparent;
		border-bottom: 8px solid transparent;
	}
	#bizbnr .link {
		background-color: #fff;
	}
}



/*////////////////////////////////////////////////
footer
////////////////////////////////////////////////*/
#footer {
	margin-top: auto;
}
#footer .footerIn {
	padding: 10px 0;
	text-align: center;
	background-color: #f6f6f0;
	font-size: 1.2rem;
	color: #aaa69a;
}