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

/* リセットCSS & 基本設定 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
header, footer, nav, menu, article, aside, section, details, figcaption, figure{
	display: block;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: ffffff; /* 全体の背景（PC閲覧時の余白用） */
}

@media(min-width:481px){
/* 480px 以上で表示させたいcssを記述していく */
.pc_area{display:block;}
.sp_area{display:none !important;}
}
	
.lp-container-pc {
    max-width: 1180px; /* スマホ幅の最大値を設定 */
    margin: 0 auto;   /* 中央寄せ */
	position: relative;
}

.lp-container-pc img {
    width: 100%;
	height: 1.0;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

.button_pc {
  width: 120px;
  height: 120px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.button_img{
  width: 100%;
}

@media screen and (max-width : 480px ){
/* 480px 以下で表示させたいcssを記述していく */
.pc_area{display:none !important;}
.sp_area{display:block;}
}
	
/* スマホレイアウト用コンテナ */
.lp-container-sp {
    max-width: 480px; /* スマホ幅の最大値を設定 */
    margin: 0 auto;   /* 中央寄せ */
}

.lp-container-sp img {
    width: 100%;
	height: 1.0;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

.button_sp {
  max-width: 480px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
	width: 100%;
	margin: 0 auto;
}

.button_img{
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
}

