
/* RESET
----------------------------------------------------------------------------------------------------*/
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-family: inherit; 
	font-size: 100%; 
	font-weight: inherit; 
	font-style: inherit; 
	vertical-align: baseline; 
	white-space: normal;
	text-align: left; 
	margin: 0; 
	padding: 0; 
	border: 0; 
	outline: 0;
	background: transparent; 
}

article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, main { 
	display: block; 
}
								  
ol, ul { 
	list-style: none; 
}
blockquote, q {
	quotes: none; 
}

table { 
	border-collapse: collapse; 
	border-spacing: 0; 
}
picture, source {
	display: block;
	line-height: 1;
	margin-bottom: -2px;
}
img { 
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* header
----------------------------------------------------------------------------------------------------*/
.pc_logo{
	display: none;
}
@media screen and (min-width: 1220px) {
  .pc_logo{
		display: block;
		position: fixed;
		top: 5%;
		left: 4%;
		width: 12.5vw;
		max-width: 146px;
	}
}
.pc_menu_lst{
	display: none;
}
@media screen and (min-width: 1220px) {
	.pc_menu_lst{
		display: inline-block;
		position: fixed;
		bottom: 12%;
		left: 8%;
		width: 22vw;
		max-width: 317px;
	}
}
.pc_menu_lst_itm + .pc_menu_lst_itm{
	margin-top: -.7%;
}

.pc_menu_lst_itm{
	width: 100%;
	height: 20%;
}
.pc_menu_lst_itm_inr{
  transition: opacity .2s;
}
.pc_menu_lst_itm_inr:hover{
  opacity: .8;
}
.pc_cta_01{
	display: none;
}
@media screen and (min-width: 1220px) {
	.pc_cta_01{
		display: block;
		position: fixed;
		right: 4%;
		top: calc(50%);
		transform: translateY(-50%);
		margin: auto;
		width: 16vw;
		max-width: 204px;
	}
}
.pc_cta_01 a{
	transition: opacity .2s;
}
.pc_cta_01 a:hover{
  opacity: .8;
}
.pc_cta_02{
	display: none;
}
@media screen and (min-width: 1220px) {
	.pc_cta_02{
		display: block;
		position: fixed;
		right: 4%;
		top: calc(50% + 160px);
		transform: translateY(-50%);
		margin: auto;
		width: 20vw;
		max-width: 253px;
	}
}
.pc_cta_02 a{
	transition: opacity .2s;
}
.pc_cta_02 a:hover{
  opacity: .8;
}

.sp_cta_01,
.sp_cta_02 {
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	margin: auto;
	width: 100%;
	max-width: 100%;
	z-index: 100;
	transition: opacity .4s ease, visibility .4s ease;
}
@media screen and (min-width: 750px) {
	.sp_cta_01,
	.sp_cta_02 {
		max-width: 375px;
	}
}

.sp_cta_01{
	display: block;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
body.is-usage .sp_cta_01 {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
@media screen and (min-width: 1220px) {
	.sp_cta_01{
		display: none;
	}
}


.sp_cta_02{
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
body.is-usage .sp_cta_02 {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
@media screen and (min-width: 1220px) {
	.sp_cta_02{
		display: none;
	}
}


/* hamberger
----------------------------------------------------------------------------------------------------*/
.hamb_btn {
	position: fixed;
	top: 3.5%;
	right: 15px;
	z-index: 102;
	width: 27px;
	height: 18px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

@media screen and (min-width: 750px) {
	.hamb_btn {
		left: calc(50% + 187.5px - 15px - 27px);
		right: auto;
	}
}

.hamb_btn span {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transition: transform .3s ease, opacity .3s ease, top .3s ease;
}

.hamb_btn span:nth-child(1) {
	top: 0;
}

.hamb_btn span:nth-child(2) {
	top: 8px;
}

.hamb_btn span:nth-child(3) {
	top: 16px;
}

body.is-hamb-open .hamb_btn span:nth-child(1) {
	top: 11px;
	transform: rotate(45deg);
}

body.is-hamb-open .hamb_btn span:nth-child(2) {
	opacity: 0;
}

body.is-hamb-open .hamb_btn span:nth-child(3) {
	top: 11px;
	transform: rotate(-45deg);
}

.hamb_cont {
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("/assets/static/lp/dea/ad_kwmd2/lp_kk01_kj/images/bg.jpg") no-repeat center center;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s ease, visibility .4s ease;
	will-change: opacity;
}

body.is-hamb-open .hamb_cont {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hamb_cont_inr {
	width: 90%;
	max-width: 315px;
}

.hamb_menu_lst_itm + .hamb_menu_lst_itm {
	margin-top: -1px;
}

.hamb_menu_lst_itm_inr {
	display: block;
	transition: opacity .2s;
}

.hamb_menu_lst_itm_inr:hover {
	opacity: .8;
}

.hamb_menu_cta {
	margin-top: 10%;
}

.hamb_menu_cta_inr {
	display: block;
}


@media screen and (min-width: 1220px) {
	.hamb_btn,
	.hamb_cont {
		display: none;
	}
}

/* bg
----------------------------------------------------------------------------------------------------*/
.bg_img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
.bg_img picture {
	display: block;
	width: 100%;
	height: calc(100% + 3px);
}
.bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* content
----------------------------------------------------------------------------------------------------*/
.body_cont{
	max-width: 100%;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}
@media screen and (min-width: 750px) {
	.body_cont{
		max-width: 375px;
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
	}
}

.health_sec{
	position: relative;
}
.cta_03 {
	position: absolute;
	bottom: 2.5%;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
}
.cta_03_inr{
	transition: opacity .2s;
}
.cta_03_inr:hover{
	opacity: .8;
}

/* footer
----------------------------------------------------------------------------------------------------*/
.footer{
	padding-bottom: 40px;
	background-color: #f2f2dc;
}

@media screen and (min-width: 1220px) {
	.footer{
		padding-bottom: 0px;
	}
}