body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
	zoom:1;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym {
	border:0;
}

img {
vertical-align:bottom;
}

.mt30{
	margin-top: 30px;
}
/*-------------------------------------------------
	//成分表
-------------------------------------------------*/
.componentBox{
	width: 96%;
	margin: 30px auto;
}
.componentTitle{
	margin-bottom: 10px;
	font-weight: bold;
}
.component{
	border:1px solid #CCC;
	padding:15px;
	margin-bottom: 20px;
	line-height:140%;
}
.mb10{
	margin-bottom: 10px;
}
.componentBox table{
	box-sizing: border-box;
	border-collapse: collapse;
	margin-bottom: 10px;
}
.componentBox table th,
.componentBox table td{
	border: 1px solid #ccc;
	padding: 10px 5px;
	text-align: center;
}
.componentBox table th{
	font-weight: bold;
}
/*-------------------------------------------------
	//footer用
-------------------------------------------------*/
#f_nav .f_list01b {
	width: 100%;
	padding: 10px 0;
	margin-top: 30px;
	border-top: 3px solid #ccc;
	text-align: center;
	margin-bottom: 70px;
}
#f_nav .f_list01b ul li {
	line-height: 160%;
	margin-bottom: 5px;
	text-align: center;
}
#f_nav .f_list01b ul li a:link {color:#333333;} /*未訪問のリンクの色*/
#f_nav .f_list01b ul li a:visited {color:#333333;} /*訪問済みのリンクの色*/
#f_nav .f_list01b ul li a:hover {color:#333333;} /*カーソルが乗っているリンクの色*/
#f_nav .f_list01b ul li a:active {color:#333333;} /*クリック中のリンクの色*/
.textC{
	text-align: center;
}
/*-------------------------------------------------
	//オファー注意書き共通用
-------------------------------------------------*/
.offerTxt{
	margin: 0 auto;
	position: relative;
	font-size: 1rem;
	line-height: 1.3;

}
.offerTxt li:before{
	content: '・';
	display: block;
	position: absolute;
	left: 0;
}
.offerTxt li:last-child:before{
	content: '※';
}
.offerTxt li{
	margin-bottom: 10px;
	padding-left: 15px;
}
.offerTxt li a{
	text-decoration: underline;
	color: #333;
}
p.preOrder{
	margin-top: 5px;
	font-size: 1.1rem;
	font-weight: bold;
	color: #ff0000;
	text-align: center;
}
@media screen and (max-width: 640px){
	.offerTxt{
		font-size: 0.6rem;
		line-height: 1;
		letter-spacing: -0.07em;
	}
	.offerTxt li{
		padding-left: 10px;
	}
	p.preOrder{
		font-size: 0.6rem;
	}
}

/*-------------------------------------------------
	//ロード画面
-------------------------------------------------*/
#loading {
	width: 100%;
	min-height: 100vh;
	background: #e2c8d4;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#loading img {
	max-width: 100%;
	width: 400px;
}

#loading video {
	max-width: 100%;
	width: 400px;
}

.blinking{
	animation:blink 1.0s ease-in-out infinite alternate;
}
@keyframes blink{
	0% {opacity:0.7;}
	100% {opacity:1;}
}