@charset "Shift_JIS";

/*--------------------------------------------------------
　RESET
--------------------------------------------------------*/

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	font-size: 62.5%;
}

body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
}

* {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

a,
a:visited {
	color: inherit;
}

a:hover,
a:active {
	text-decoration: none;
}

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

* {
	box-sizing: border-box;
}

*:before,
*:after {
	box-sizing: inherit;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ol,
ul {
	list-style: none;
}

img,
video {
	max-width: 100%;
}

img {
	border-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: "";
	content: none;
}


/*--------------------------------------------------------
　BASE
--------------------------------------------------------*/

@media screen and (min-width: 961px) {
	a:link, a:visited {
		opacity: 1;
		transition: opacity .4s ease;
	}
	a:hover, a:active {
		opacity: .6;
	}
}


/*--------------------------------------------------------
　COMMON
--------------------------------------------------------*/

body {
	position: relative;
	color: #000000;
}

#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: #FFFFFF;
	z-index: 10;
}
#header .logo-johnson {
	width: 130px;
	position: absolute;
	top: 29px;
	left: 32px;
	z-index: 2;
}
#header .logo-johnson a {
  display: block;
}
#header .cart-icon {
	position: absolute;
	width: 100px;
	height: 100px;
	top: 0;
	right: 0;
	overflow: hidden;
	z-index: 2;
}
#header .cart-icon a {
	display: -webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	width: 100px;
	height: 100px;
	background: #00B1AD;
}
#header .cart-icon img {
	width: 48px;
	height: 48px;
}
@media screen and (min-width: 961px) {
	#header.is-ready {
		top: 0;
		transform: translate(0, -100px);
	}
	#header.is-start {
		position: fixed;
		transition: transform .3s ease-out;
	}
	#header.is-fixed {
		position: fixed;
		transform: translate(0, 0);
	}
	#header.is-start {
		height: 80px;
	}
	#header.is-start::before {
		content: "";
		width: 100%;
		height: 2px;
		background: #00B1AD;
		position: absolute;
		top: 78px;
		left: 0;
		z-index: 0;
	}
	#header.is-start .logo-johnson {
		width: 100px;
		height: 75px;
		top: 20px;
	}
	#header.is-start .logo-johnson a:hover {
		opacity: .6;
	}
	#header.is-start .cart-icon,
	#header.is-start .cart-icon a {
		width: 80px;
		height: 80px;
	}
}
@media screen and (max-width: 960px) {
	#header {
		position: fixed;
		height: 75px;
/*    border-bottom: solid 2px #00B1AD;*/
	}
	#header .logo-johnson {
		width: 95px;
		height: 60px;
		top: 23px;
    left: 18px;
	}
	#header .cart-icon,
	#header .cart-icon a {
		width: 75px;
		height: 75px;
	}
	#header .cart-icon img {
		width: 36px;
		height: 36px;
	}
}


#gnavi {
	padding: 30px 100px 0 0;
	position: relative;
	z-index: 1;
	display: -webkit-flex;
	-webkit-justify-content: flex-end;
  -webkit-align-items: center;
}
#gnavi  ul {
	display: flex;
}
#gnavi  ul {
  justify-content: center;
  align-items: center;
}
#gnavi li {
  position: relative;
  padding: 0 32px;
}
#gnavi li::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #00B1AD;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#gnavi li > a {
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
  font-weight: bold;
	color: #000000;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
}
#gnavi li:first-child a {
  display: -webkit-flex;
  -webkit-align-items: center;  
  gap: .8em;
}
#gnavi li:first-child img {
  width: 37px;
}

@media screen and (min-width: 961px) {
	#header.is-start #gnavi {
		padding-top: 20px;
	}
}
@media screen and (max-width: 960px) {
	#gnavi {
		background: #DCF7FD;
    width: 100%;
    height: 0;
		padding: 0;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    top: 75px;
    overflow: hidden;
    z-index: 99;
    transition: all .5s cubic-bezier(1, 0, 0, 1);
	}
	#gnavi.open {
		height: 100vh;
	}
	#gnavi > ul {
    max-width: 100%;
    width: calc(100vw - 200px);
		flex-direction: column;
		align-items: center;
		border-bottom: 1px solid #00B1AD;  
    margin: -75px auto 0;
    justify-content: flex-start;
	}
  
	#gnavi li {
    width: 100%;
    padding: 14% 0;
    border-top: 1px solid #00B1AD;
    font-size: 14px;
    font-size: 1.4rem;
	}
  #gnavi li::before {
    content: none;
  }
  #gnavi li:first-child a {
    justify-content: center;
  }
  
  
	#gnavi .logo-johnson {
		position: static;
		margin: 0 auto;
		width: 125px;
		padding: 10px 0;
	}
	
	#menu_btn {
		width: 75px;
		height: 75px;
		position: absolute;
		top: 0;
		right: 75px;
		cursor: pointer;
	}
	#menu_btn > span {
		display: block;
		width: 30px;
		height: 2px;
		background: #00B1AD;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -1px;
		margin-left: -15px;
		opacity: 1;
		transform: translate(0, 0);
		transition: all .3s;
	}
	#menu_btn::before,
	#menu_btn::after {
		content: '';
		display: block;
		width: 30px;
		height: 2px;
		background: #00B1AD;
		position: absolute;
		top: 50%;
		left: 50%;
		margin-left: -15px;
		opacity: 1;
		transition: all .3s .1s;
	}
	#menu_btn::before {
		margin-top: -10px;
		transform-origin: left top;
	}
	#menu_btn::after {
		margin-top: 8px;
		transform-origin: left bottom;
	}
	#menu_btn.open span {
		opacity: 0;
		transform: translate(-15px, 0);
	}
	#menu_btn.open::before {
		margin-top: -11px;
		margin-left: -10px;
		transform: rotate(45deg);
	}
	#menu_btn.open::after {
		margin-top: 9px;
		margin-left: -10px;
		transform: rotate(-45deg);
	}
}
@media screen and (max-width: 600px) {
  #gnavi > ul {
    width: calc(100vw - 75px);
  }
}



.br {
	display: inline-block;
}
@media screen and (min-width: 961px) {
	.sp-visible {
		display: none;
	}
}
@media screen and (max-width: 960px) {
	.pc-visible {
		display: none;
	}
}


#footer {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
@media screen and (max-width: 992px) {
	#footer #footer-container #footer-mobile-logo a {
		display: block;
		width: 125px;
		height: 50px;
		margin: 0 auto;
		background: url("../img/logo_johnson.png?=v20250702") no-repeat 0 0;
		background-size: 100% auto;
	}
	#footer #footer-container #footer-mobile-logo img {
		display: none;
	}
}


/*--------------------------------------------------------
　EC
--------------------------------------------------------*/
ul.list-EClink li {
	font-size: 0;
	height: 51px;
	margin-top: 5px;
}
ul.list-EClink li.btn-amazon a {
	background-image: url("/ec/images/logo_amazon.png?=v20250702");
	background-size: auto 110%;
}
ul.list-EClink li.btn-rakuten a {
	background-image: url("../img/logo_rakuten_new.png?=v20250702");
	background-size: auto 75%
}
ul.list-EClink li.btn-lohaco a {
	background-image: url("/ec/images/logo_lohaco.png?=v20250702");
	background-size: auto 110%
}
ul.list-EClink li a {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #dddddd;
	box-shadow: 0 0 1px 0 #dddddd;
	border-radius: 6px;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: 50%;
	cursor: pointer;
}
@media screen and (max-width: 960px) {
	ul.list-EClink li {
		height: 40px;
		margin-top: 8px;
	}
}


/*--------------------------------------------------------
　POPUP
--------------------------------------------------------*/
.ecWrap {
	width: 100%;
	display: block;
	height: auto;
	margin: 0 0 30px 0;
	text-align: left;
	padding: 0;
}
.ecWrap ul li {
	float: left;
}
/* btn */
.ecbtnWrap a {
	cursor: pointer;
}
.ecbtnWrap {
	width: 100%;
	padding: 0;
	margin: 0;
	float: none;
	clear: both;
	overflow: hidden;
}
.ecbtnWrap ul.list-EClink li {
	width: 26%;
	height: 45px;
	margin: 0 2% 30px 0;
}
.ecbtnWrap ul.list-EClink li {
	border-radius: 3px;
	background: #fff;
}
.ecbtnWrap ul.list-EClink li:nth-child(3n) {
	margin-right: 0;
}
.ecbtnWrap img {
	margin: 0 2% 0 0;
	width: 12%;
	padding: 3px;
	float: left;
	background: #ffffff;
	border: 1px solid #ddd;
	display: block;
	vertical-align: bottom;
}
.ecbtnWrap p {
	font-weight: bold !important;
	color: #666;
	text-align: left;
	margin: 0;
	font-size: 13px;
	line-height: 3em;
}
.popWrap .selectBox.borderBottom {
	border: none;
}
.popWrap .productName {
	font-weight: bold;
	color: #666;
	text-align: left;
	font-size: 18px;
}
@media screen and (max-width: 600px) {
	.ecbtnWrap img {
		margin: 0 auto;
		width: 40%;
		float: none;
	}
	.ecbtnWrap ul.list-EClink li {
		width: 31%;
		margin: 0 1% 25px;
	}
	.popWrap .productName {
		font-size: 15px;
		padding-right: 20px;
	}
	.ecbtnWrap p {
		text-align: center;
	}
	#cboxClose {
		right: 5px !important;
	}
}


/*--------------------------------------------------------
　PRINT
--------------------------------------------------------*/
@media print {
	body {
		overflow-x: visible !important;
    overflow-y: visible !important;
	}
	.pc-visible {
		display: inline !important;
	}
	.sp-visible {
		display: none !important;
	}
}