@charset 'UTF-8';

/* ------------------------------
 トップページ
------------------------------ */


/* メイン */

#main_container {
	background-color: #fff9f1;
}

#main {
	position: relative;
	width: 100%;
	height: 500px;
}

#main_slide_wrapper {
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 500px;
}

#main_slide li {
	height: 500px;
}

#main_slide li:nth-child(1) {
	background: url(/img/top/bg_main_1.jpg) no-repeat right top;
}

#main_slide li:nth-child(2) {
	background: url(/img/top/bg_main_2.jpg) no-repeat right top;
}

#main_slide li {
	background-size: auto 500px!important;
}

#main_inner {
	position: relative;
	z-index: 2;
	background: url(/img/top/bg_main_inner.png) no-repeat;
	background-size: auto 100%!important;
}

#main_box {
	position: relative;
	width: 960px;
	height: 500px;
	margin: 0 auto;
}

#main_box h1,
#main_box p {
	position: absolute;
}

#main_box h1 {
	top: 10px;
	left: -12px;
}

#main_box p {
	top: 123px;
	left: 80px;
	width: 90%;
}

#main_box p img {
	width: 100%;
	height: auto;
}


/* モニタ横幅1600px以上 */

@media screen and (min-width:1601px) {
	#main_inner {
		background-size: auto 590px;
	}
	#main {
		width: 1600px;
		height: 590px;
		margin: 0 auto;
	}
	#main_box,
	#main_slide li {
		height: 590px;
	}
	#main_box p {
		top: 163px;
	}
	#main_slide li {
		background-size: auto 590px!important;
	}
}


/* 導入事例 */

#case {
	padding: 100px 0 120px;
	background: url(/img/top/bg_case.jpg) no-repeat center top, #efefef url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADSCAMAAAC8YVo6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////AAAAVcLTfgAAABBJREFUeNpiYBgFgx0ABBgAAaQAAUPr2L8AAAAASUVORK5CYII=) repeat-x;
	;
}

#case li {
	position: relative;
	float: left;
	width: 465px;
	cursor: pointer;
	background-color: #fff;
	box-shadow: 0 0 13px 0 rgba(0, 0, 0, .3);
}

#case li:nth-child(1),
#case li:nth-child(3) {
	margin-right: 30px;
}

#case li:nth-child(1),
#case li:nth-child(2) {
	margin-bottom: 40px;
}

#case li .case_cover {
	display: none;
}

#case li.on .case_cover {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	animation: anm_case_cover .3s 1 linear both;
	justify-content: center;
	align-items: center;
}

.case_cover a {
	display: inline-block;
	padding: 13px 16px 12px 34px;
	animation: anm_btn_case_cover .3s 1 linear both;
	opacity: 1;
	border-radius: 5px;
	background-color: #fff;
}

@keyframes anm_case_cover {
	from {
		background-color: rgba(51, 51, 51, 0);
	}
	to {
		background-color: rgba(51, 51, 51, .5);
	}
}

@keyframes anm_btn_case_cover {
	from {
		-webkit-transform: translateY(5px);
		-ms-transform: translateY(5px);
		transform: translateY(5px);
	}
	to {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.case_info {
	padding: 10px 20px 20px;
}

.case_info dl {
	width: 210px;
}

.case_info dl:first-child {
	float: left;
}

.case_info dl:last-child {
	float: right;
}

.case_info dt {
	font-size: 18px;
	font-weight: bold;
	line-height: 28px;
	display: inline-block;
	margin-bottom: 10px;
	padding: 0 10px;
	background-color: #ffefc9;
}

.case_info dd {
	font-size: 16px;
	font-weight: bold;
	line-height: 24px;
}


/* ポップアップ */

body.open {
	overflow: hidden;
	height: 100%;
}

#popup_overlay {
	display: none;
}

body.open #popup_overlay {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	animation: anm_popup_overlay .2s 1 linear both;
	background-color: rgba(0, 0, 0, .5);
	justify-content: center;
	align-items: center;
}

@keyframes anm_popup_overlay {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

#popup_box {
	position: relative;
	width: 960px;
}

.popup {
	position: relative;
	overflow-x: hidden;
	overflow-y: scroll;
	box-shadow: 0 0 13px 0 rgba(0, 0, 0, .3);
}

.popup_inner {
	padding: 20px 30px 40px 46px;
	background-color: #fff8ee;
}

.popup_inner .cf {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAMAAAAoyzS7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF3tfNAAAAMqFRAgAAAAxJREFUeNpiYAAIMAAAAgABT21Z4QAAAABJRU5ErkJggg==) repeat-y center top;
}

.popup_box {
	width: 413px;
}

.popup_box:first-child {
	float: left;
}

.popup_box:last-child {
	float: right;
}

#btn_popup_close {
	position: absolute;
	top: -27px;
	right: -27px;
	cursor: pointer;
}

#btn_popup_close:hover {
	animation: anm_btn_popup_close .3s 1 linear both;
}

@keyframes anm_btn_popup_close {
	from {
		opacity: 1;
	}
	to {
		opacity: .8;
	}
}


/* 全部おまかせ！ */

#feature {
	padding-top: 45px;
	background: url(/img/top/bg_feature.jpg) no-repeat center top, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADSCAMAAAC8YVo6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF9PT0AAAAn9SVrQAAABBJREFUeNpiYBgFgx0ABBgAAaQAAUPr2L8AAAAASUVORK5CYII=) repeat-x;
}

#tab_feature {
	z-index: 1;
}

#tab_feature li {
	font-size: 0;
	float: left;
	overflow: hidden;
	width: 300px;
	height: 0;
	padding-top: 110px;
	cursor: pointer;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background-color: #efefef;
	background-image: url(/img/top/tab_feature.png);
	background-repeat: no-repeat;
	box-shadow: 0 0 10px 4px rgba(0, 0, 0, .2);
}

#tab_feature li:not(:last-child) {
	margin-right: 30px;
}

#tab_feature li:nth-child(1) {
	background-position: 0 0;
}

#tab_feature li:nth-child(2) {
	background-position: -300px 0;
}

#tab_feature li:nth-child(3) {
	background-position: -600px 0;
}

#tab_feature li:hover {
	background-color: #fff;
}

#tab_feature li:nth-child(1):hover {
	background-position: 0 -110px;
}

#tab_feature li:nth-child(2):hover {
	background-position: -300px -110px;
}

#tab_feature li:nth-child(3):hover {
	background-position: -600px -110px;
}

#tab_feature li.on {
	background-color: #bf0000;
}

#tab_feature li:nth-child(1).on {
	background-position: 0 -220px;
}

#tab_feature li:nth-child(2).on {
	background-position: -300px -220px;
}

#tab_feature li:nth-child(3).on {
	background-position: -600px -220px;
}

#cont_feature {
	position: relative;
	z-index: 2;
	border-top: 7px solid #bf0000;
}

.cont_feature .inbox {
	background: url(/img/top/bg_cont_feature.png) no-repeat right 3px;
}

.cont_feature:nth-child(1) .inbox {
	padding-top: 22px;
}

.cont_feature:nth-child(2) .inbox {
	padding-top: 38px;
}

.cont_feature:nth-child(3) .inbox {
	padding-top: 59px;
}

#feature_lawprice li {
	float: left;
	width: 300px;
}

#feature_lawprice li:not(:last-child) {
	margin-right: 30px;
}

#feature_phone_hp {
	padding: 14px 20px 40px;
	background-color: #f4f4f4;
}

#feature_phone_hp li {
	width: 450px;
}

#feature_phone_hp li:first-child {
	float: left;
}

#feature_phone_hp li:last-child {
	float: right;
}

#feature_phone_hp li h4 {
	margin-left: 23px;
}

#feature_phone_hp li div {
	border-top: 7px solid #ff8a00;
}

#feature_phone_hp li div img {
	display: inline-block;
	border: 1px solid #b7b7b7;
	border-top: none;
}

#feature_phone_hp li p {
	padding: 0 50px;
}

#feature_solution {
	padding: 0 0 46px;
	background-color: #fff9f1;
}

#feature_solution h4 {
	padding-top: 31px;
	background-color: #ffe4bf;
}

#txt_feature_solution {
	margin: 0 0 33px 17px;
}

#ex_feature_solution {
	position: relative;
	width: 834px;
	margin-left: 40px;
	padding: 30px 20px;
	border: 3px solid #e1d7c9;
	border-radius: 5px;
	background-color: #fff;
}

#ex_feature_solution img {
	position: absolute;
	right: 10px;
	bottom: 0;
}


/* 開店支援パック */

#pack {
	padding: 112px 0 100px;
	background: url(/img/top/bg_pack.jpg) no-repeat center top, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAC0CAMAAABizLZ9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF5ujlAAAAnH98RAAAABBJREFUeNpiYBgF9AAAAQYAAWgAAfmgwBAAAAAASUVORK5CYII=) repeat-x;
}

.t_pack {
	border-bottom: 5px solid #dcc49e;
	background-color: #ffe4b9;
}

.t_pack img {
	position: relative;
}

#t_pack_crepos img {
	top: -20px;
}

#t_pack_wifi {
	padding-bottom: 17px;
}

#t_pack_hp {
	padding-bottom: 3px;
}

#t_pack_wifi img,
#t_pack_hp img {
	top: -14px;
}

#pack_wifi,
#pack_hp {
	width: 470px;
}

#pack_wifi {
	float: left;
}

#pack_hp {
	float: right;
}

.pack_inner {
	background-color: #fff8ee;
}

#pack_crepos .pack_inner {
	position: relative;
	padding: 20px 27px 20px 23px;
}

#pack_wifi .pack_inner {
	padding: 28px 24px 38px 26px;
}

#pack_hp .pack_inner {
	padding: 13px 11px 34px 23px;
}

#txt_pack_crepos_l {
	float: left;
	width: 513px;
}

#txt_pack_crepos_l p:last-child {
	position: absolute;
	bottom: 20px;
}

#txt_pack_crepos_r {
	float: right;
	width: 360px;
}

#pack_crepos_1 {
	float: left;
	width: 166px;
}

#pack_crepos_2 {
	float: right;
	width: 177px;
}


/* よくあるご質問 */

#qa {
	padding: 100px 0 150px;
	background: url(/img/top/bg_qa.jpg) no-repeat center top, url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAADSCAMAAAC8YVo6AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF7+/vAAAAZu0R+AAAABBJREFUeNpiYBgFgx0ABBgAAaQAAUPr2L8AAAAASUVORK5CYII=) repeat-x;
}

.qa dt {
	font-size: 24px;
	font-weight: bold;
	line-height: 28px;
	margin-top: 26px;
	padding: 28px 73px 28px 60px;
	cursor: pointer;
	border-radius: 5px;
	background: url(/img/top/tg_qa_off.png) no-repeat 892px center, #f7f7f7 url(/img/top/ico_q.png) no-repeat 20px center;
	box-shadow: 0 0 13px 0 rgba(0, 0, 0, .3);
}

.qa dt.on {
	background: url(/img/top/tg_qa_on.png) no-repeat 892px center, #f7f7f7 url(/img/top/ico_q.png) no-repeat 20px center;
}

.qa dt span {
	color: #bf0000;
}

.qa dd {
	font-size: 18px;
	line-height: 28px;
	margin-top: 17px;
	padding: 20px;
	border-radius: 5px;
	background-color: #fff8ee;
}


/*
--------------------------------------------------------------------------------
 END OF CSS
--------------------------------------------------------------------------------
*/
