@charset "utf-8";

/* ■■■■■■■■■■ すべて共通 ■■■■■■■■■■ */
html {
	overflow-y: scroll;
}
html, body {
	font-size: 14px;
	font-family:'Lucida Grande','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	color: #393939;
}
body, div, p, h1, h2, h3, h4, ul, figure {
	margin: 0;
	padding: 0;
}
body { /*フッターを最下部に固定*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
p, td, th, li {
	line-height: 1.8;
}
img {
	width: 100%;
	height: auto;
}
a{ /*リンクされた文字*/
    color: #0073bc;
    text-decoration: none;
}
a:hover{ /*マウスをのせたとき*/
    color:#b7dbf2;
    text-decoration:underline;
}
.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
}
.new-line { /*改行*/
	display: block;
}

/*点滅*/
.blinking {
    animation:blink 1s ease-in-out infinite alternate;
	color: #c70026;
	margin-left: 0.5rem;
	font-weight: normal;
	line-height: 1rem;
}
.blinking-s {
	font-size: small;
	/*vertical-align: text-top;*/
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

@media screen and (min-width: 768px) {
	.top-info {
		margin: 20px 0;
	}
}

/* ■■■■■■■■■■ 文字サイズ調整 ■■■■■■■■■■ */
.font-size-09 {
	font-size: 0.9rem;
}
/* ■■■■■■■■■■ マージン調整 ■■■■■■■■■■ */
.margin-top-5 {
	margin-top: 5px;
}
/* ■■■■■■■■■■ 共通の見出し ■■■■■■■■■■ */
main h1 {
	font-size: 1.6rem;
	background-image: url("../material/icon_6.png");
	background-repeat: no-repeat;
	/*background-position: 0 0;*/
	padding: 0 0 0 1.3rem;
	line-height: 1.6rem;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
main h1 { background-image: url('../material/icon_6@2x.png'); background-size: 18px 18px; }
}
.h1-home {
	margin: 17px 0 8px 0;
}
.h1-list {
	margin: 17px 0 12px 0;
}
.h1-product {
	margin: 17px 0 12px 0;
}
main h2 {
	border-bottom: 1px solid #ccc;
	font-size: 1.3rem;
	line-height: 1rem;
	padding-bottom: 2px;
}

.h2-list {
	margin: 8px 0 10px 0;
	line-height: 1.5rem;
}
.h2-product {
	margin: 8px 0 10px 0;
	line-height: 1.5rem;
}

.container {
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 1000px;
}
@media screen and (min-width: 768px) {
	.container {
		padding-left: 0px;
		padding-right: 0px;
	}
}

/* ■■■■■■■■■■ ヘッダー ■■■■■■■■■■ */
header {
	background: white;
}
.header-inner {
	display: flex;
	align-items: center;
	list-style: none;
}
.header-inner a:hover {
	opacity: 0.5;
}
.header-inner li:first-child {
  margin-right: auto;
}
.header-logo {
	padding: 10px 0;
	width: 124px;
	height: 37px;
}
.header-logo-ec {
	padding: 10px 0;
	width: 30px;
	height: 30px;
	margin-right: 1em;
}
.menu-btn {
	padding: 10px 0;
	border: 1px solid #fff;
	border-radius: 4px;
	width: 40px;
	height: 40px;
	background: url(../material/hamburger.png) no-repeat center center;
	background-size: contain;
}

@media screen and (min-width: 768px) {
	.header-logo {
		width: 154px;
		height: 46px;
	}
	.header-logo-ec {
		width: 37px;
		height: 37px;
	}
	.header-container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.header-logo {
		padding: 15px 0;
	}
	.menu-btn {
		display: none;
	}
}

/* ■■■■■■■■■■ スマホナビゲーション ■■■■■■■■■■ */
.accordion {
	width: 100%;
}
.accordion > ul > li > a {
	display: block;
	color: #fff;
	font-size: 1.1rem;
	text-decoration: none;
	background-color: #288c8c;
	border-top: 1px solid #21b2b2;
	border-bottom: 1px solid #1a6a6a;
	cursor: pointer;
	padding: 0.7em 0.8em;
	position: relative;
}
.accordion > ul > li > a:hover{ /*メニューホバー時*/
	background-color: #5997a7;
}
.accordion > ul > li > a:after, div.accordion > ul > li > a.active:after{ /*子リスト矢印*/
	font-size: 1.3rem;
    font-weight: bold;
	position: absolute;
	right: 12px;
	top: 9px;
	color: #69d8d8;
}
.accordion > ul > li.arrow > a:after{ /*子リスト閉時の矢印*/
	font-family: sans-serif;
	content: '>';
	transform: rotate(90deg);
	transition: all, 0.25s, linear0;
}
.accordion > ul > li.arrow > a.active:after{ /*子リスト開時の矢印*/
	transform: rotate(-90deg);
}
.accordion > ul > li > ul {/*子リスト消す*/
	display: none;
}
.accordion > ul > li > ul > li > a{ /*子リスト*/
	display: block;
	color: black;
	background-color: white;
	border-bottom: 1px solid #ddd;
	padding: 0.7em 0.8em;
	position: relative;
	text-decoration: none;
	font-size: 1.1rem;
}
.accordion > ul > li > ul > li:last-child > a{ /*子リスト一番下のライン消す*/
	border-bottom: 0px;
}
.accordion > ul > li > ul > li > a:hover{ /*子リストのホバー*/
	background-color: #5997a7;
	color: white;
}

/* ■■■■■■■■■■ PCナビゲーション ■■■■■■■■■■ */
nav {
	background: black;
}
.navbar {
	display: none;
	list-style-type: none;
}
.navbar a {
	display: block;
	padding: 1rem 0;
	color: #fff;
	text-decoration: none;
}
.navbar a:hover {
	background: #288c8c;
}
@media screen and (min-width: 768px) {
.sp-menu{
	display: none;
}
.navbar {
	display: flex !important;
}
.navbar li { /*メニュー*/
	width: 143px;
	text-align: center;
	font-size: 1.1rem;
}
.navbar li ul{
	list-style: none;
	position: absolute;
	z-index:8;
}
.navbar li ul li{
	overflow: hidden;
	width: 286px;
	height: 0;
	transition: .2s;
}
.navbar li ul li:first-child {
	margin-top: 0;
}
.navbar li ul li a{
	padding: 0.45rem 1rem;
	background: #288c8c;
	text-align: left;
	font-weight: normal;
	font-size: 1rem;
}
.navbar li:hover > a{ /*メニューホバー時の色*/
	background: #288c8c;
	color: #000000;
}
.navbar li:hover ul li{ /*子リスト*/
	overflow: visible;
	height: 2em;
	background: #288c8c;
}
.navbar li:hover ul li{ /*子リストボーダー*/
	overflow: visible;
	height: 38px;
	border-top: 1px solid #21b2b2;
	border-bottom: 1px solid #1a6a6a;
}
.navbar li:hover ul li:first-child{
	border-top: 0;
}
.navbar li:hover ul li:last-child{
	border-bottom: 0;
}
}

/* ■■■■■■■■■■ メインエリア基本レイアウト ■■■■■■■■■■ */

.home-main {
	margin: 20px 0 -10px 0;
}
.list-main {
	margin: 15px 0 -10px 0;
}
.product-main {
	margin: 15px 0 -10px 0;
}
main {
	/*padding-top: 50px;*/
	/*padding-bottom: 50px;*/
	/*background: #efefef;*/
	/*margin-top: 20px;*/
}

@media screen and (min-width: 768px) {
	main {
		padding-left: 30px;
		padding-right: 30px;
	}
}


/* ■■■■■■■■■■ お知らせアコーディオン ■■■■■■■■■■ */

.home-info {
	margin: 10px 0;
}
.displayNone {
    display: none;
}
.home-info li {
	list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 0.4rem 0.6rem;
}
.info-new:first-child { /*常時表示お知らせ上のボーダー消す*/
    border-top: 1px solid #ddd;
}
.info-new:last-child { /*常時表示お知らせ下のボーダー消す*/
    border-bottom: 0px;
}
.home-info a {
    /*display: block;*/
}
.contentWrap {
    /*margin: 0px;*/
}
.switch {
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 2px;
	border: 1px solid #ddd;
    position: relative;
}
.switch:after {
	font-family: sans-serif;
    position: absolute;
	top: 4px;
    right: 15px;
    content: '>';
    font-size: 1.3rem;
    font-weight: bold;
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -moz-transition: all, 0.25s, linear;
    -o-transition: all, 0.25s, linear;
    -webkit-transition: all, 0.25s, linear;
    transition: all, 0.25s, linear0;
    color: #0073bc;
}
.switch.open:after {
    /*-moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -webkit-transform: translate(0, 50%);*/
    transform: translate(0, 50%);
    /*-moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);*/
    transform: rotate(-90deg);
}

/* ■■■■■■■■■■ 新製品情報など ■■■■■■■■■■ */
.home-box {
	/*display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;*/
	display: flex;
	flex-flow: column;
	margin-top: 15px;
}
.home-box li {
	flex: 1 1 auto;
	margin: 0 0px 5px 0px;
	border: solid 5px #ddd;
	list-style-type: none;
	background-size: 50px 50px;
}
.home-box-new { /*ボックス左上アイコンNEW*/
	background: #f5f5f5 url(../material/new@2x.png) no-repeat;
}
.home-box-mainte { /*ボックス左上アイコン整備*/
	background: #f5f5f5 url(../material/mainte@2x.png) no-repeat;
}
.home-box-shop { /*ボックス左上アイコンSHOP*/
	background: #f5f5f5 url(../material/shop@2x.png) no-repeat;
}
.home-box a {
	color: #393939;
	text-decoration: none;
}
.home-box figure {
	margin: 0px 0px;
	position: relative;
	z-index: 10;
}
.home-box a:hover {
	opacity: 0.5;
}
.home-box figcaption {
	font-size: 1.1rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.3rem;
}
.home-box-new-kg106 {
	margin-top: -1rem;
}
.home-box-child {
	padding: 10px;
}
.home-box-photo {
	display:block;
	max-height: 150px;
	max-width: 150px;
	margin: 0 auto;
}
.max-width-250 {
	max-width: 250px;
	/*margin: 14px auto;*/
}

/* リボン */
/*.ribon {
    width: 216px;
    height: 146px;
    overflow: hidden;
    display: block;
    position: relative;
	top: -15px;
	left: -15px;
	margin-bottom: -146px;
}*/
time {
    display: inline;
}
/*.new {
    width: 100px;
    padding: 3px 10px;
    background: #c70026;
    color: #fff;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: -37px;
    text-transform: uppercase;
    transform: rotate(315deg);
}
.shop {
	background: #0073bc;
}*/
.display-none {
	display: none;
}


/* 画面幅が広い（タブレット・パソコン向け） */
@media screen and (min-width: 768px) {
	.home-box {
		width: 100%;
		flex-flow: row;
	}
	.home-box li {
		margin: 0 2px 4px 2px;
	}
	.home-box-child {
		width: 100%;
	}
	.home-box li:first-child {
		margin-left: 0px;
	}
	.home-box li:last-child {
		margin-right: 0px;
	}
	.max-width-250 {
		margin: 14px auto;
	}
}

/* ■■■■■■■■■■ 製品リスト ■■■■■■■■■■ */
.list-box {
	display: flex;
	flex-flow: column;
	/*margin-top: 15px;*/
}
.list-box-sp { /*ストリードとキャリングケースはスマホで横並び*/
	flex-flow: row;
}
.list-box-pc { /*スマホで消す*/
	display: none;
}
.list-box-1box-sp {
	width: 49.1%;
}
.list-box li {
	flex: 1 1 auto;
	margin: 0 0px 10px 0px;
	border: 1px solid #ddd;
	border-radius: 2px;
	list-style-type: none;
	background: #f5f5f5;
}
.list-box-sp li {	 /*ストリードとキャリングケースはスマホで横並び*/
	margin: 0 5px 10px 5px;
}
.list-box-sp li:first-child { /*ストリードとキャリングケースはスマホで横並び 1個目マージン*/
	margin-left: 0px;
}
.list-box-sp li:last-child { /*ストリードとキャリングケースはスマホで横並び 1個目マージン*/
	margin-right: 0px;
}
.list-box a {
	color: #393939;
	text-decoration: none;
	display: flex;
	flex-flow: row;
}
.list-box img {
	width:84px; /*リスト画像幅84pxに固定*/
	position: relative; /*リスト画像を上下中央配置*/
	top: 50%; /*リスト画像を上下中央配置*/
	transform: translateY(-50%); /*リスト画像を上下中央配置*/
}
.list-box figure {
	margin: 0px 0px;
	/*position: relative;
	z-index: 10;*/
}
.list-box a:hover {
	opacity: 0.5;
}
.list-box h3 {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.6rem;
	margin-top: 10px;
}
.list-box-text2 {
	margin-top: 22px;
}
.list-box p {
	font-size: 0.9rem;
	text-align: left;
}
.list-box-child {
	padding: 5px;
}
.list-box-photo {
	display:block;
	max-height: 150px;
	max-width: 150px;
	margin: 0 auto;
}
/*.max-width-250 {
	max-width: 250px;
	margin: 14px auto;
}*/


/* 画面幅が広い（タブレット・パソコン向け） */
@media screen and (min-width: 768px) {
	.list-box {
		display: flex;
		width: 100%;
		flex-flow: row;
	}
	.list-box-sp { /*スマホを消す*/
		display: none;
	}
	.list-box-1box {
		width: 49.5%;
	}
	.list-box-4-5 {
		width: 79.8%;
	}
	.list-box li {
		margin: 0 5px 10px 5px;
	}
	.list-box-child {
		width: 100%;
	}
	.list-box li:first-child {
		margin-left: 0px;
	}
	.list-box li:last-child {
		margin-right: 0px;
	}
}



/* ■■■■■■■■■■ 製品情報 ■■■■■■■■■■ */
.product-2column {
	display: flex;
	flex-flow: column;
	margin: 15px 0 0 0;
}
.product-photo img {
	max-width: 250px;
	display: block;
	margin: 0 auto;
}
.product-nameprice {
	display: flex;
	flex-flow: row;
	border-bottom: 1px solid #ccc;
	margin-bottom: 5px;
	/*padding: 0 0 0 0;*/
}
.product-p {
	border-bottom: 1px solid #ccc;
	margin: 10px 0;
	padding: 0 0 7px 0;*/
}
.h1-product-name {
	background-image: none;
	margin: 20px 0 0px 0;
	/*border-bottom: 1px solid #ccc;*/
	font-size: 2.2rem;
	/*line-height: 1rem;*/
	padding: 0;
	margin-right: auto;
	line-height: 2.2rem;
}
.true-rms {
	font-size: 1rem;
	line-height: 1rem;
}
.price {
	font-size: 1.1rem;
	line-height: 1.3rem;
	margin: 30px 0 0 0 ;	
}

/*ボタン*/
.product-button-flex {
	display: flex;
	flex-flow: column;
}
.product-button {
	display:block;
	margin: 5px 0px 0px 0px;
	border: 1px solid #ddd;
	border-radius: 2px;
	background-color: #f5f5f5;
	width: 100%;
	text-align:center;
	height: 42px;/*上下中央揃え*/
	line-height: 42px;/*上下中央揃え*/
	font-weight: bold;
	color: black;
    text-decoration: none;
}
.button-buy {
	background-color: #c70026;
	border: 1px solid #c70026;
	color: white;
}
.button-user {
	background-color: #0073bc;
	border: 1px solid #0073bc;
	color: white;
}
.button-useronly {
	background-color: black;
	border: 1px solid black;
	color: white;
}
.product-button-flex a {
	text-decoration: none;
}
.product-button-flex a:hover {
	opacity: 0.5;
}
.award {
	width: 50%;
	max-width: 194px;
	margin-bottom: 5px;
}
.award a:hover {
	opacity: 0.5;
}
@media screen and (min-width: 768px) {
	.product-2column {
		flex-flow: row;
	}
	.product-photo {
		flex: 1 1 333px;    
		/*margin-right: 20px;*/
	}
	.product-photo img {
		max-width: 333px;
	}
	.product-text {
		flex: 1 1 667px;
	}
	.product-button-flex {
		flex-flow: row;
		flex-wrap: wrap;
	}
	.product-button {
		width: 118px;
		margin: 5px 5px 0px 0px;
		height: 37px;/*上下中央揃え*/
		line-height: 37px;/*上下中央揃え*/
	}
	.product-button-2x { /*ボタン左右2倍*/
		width: 243px;
	}
	.award {
		width: 60%;
	}
}

/*特長*/
h4.strong-point {
	font-size: 1.2rem;
	margin: 5px 0 0 0;
}
.strong-point-container {
	margin-left: 1px;
}
.under-line {
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
}
ul.strong-point {
	list-style: none;
}
li.strong-point {
	/*margin-left: 2px;*/
	padding-left: 1rem;
	background: url(../material/icon_3.png) no-repeat left 7px;
}
p.strong-point {
	text-indent:-1em;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
	li.strong-point {
		background: url('../material/icon_3@2x.png') no-repeat left 7px;
		background-size: 10px 10px; 
	}
}

/*仕様*/
h4.spec {
	font-size: 1.2rem;
	margin: 10px 0 0 0;
}
.spec-container {
	margin-left: 1px;
}
ul.spec {
	list-style: none;
}
li.spec-1 {
	padding-left: 1rem;
	background: url(../material/icon_4.png) no-repeat left 0px center;
	font-weight: bold;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
	li.spec-1 {
		background: url('../material/icon_4@2x.png') no-repeat left 0px center;
		background-size: 10px 10px; 
	}
}
li.spec-2 {
	padding-left: 1rem;
}

/*SK-2500セット*/
.sk2500set {
	margin: 15px 0 0 0;
	display: block;
}
span.sk2500set {
	border-bottom: 1px solid #ccc;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.4rem;
	padding-bottom: 2px;
}
ul.setitem {
	list-style: none;
}
li.setitem {
	border-bottom: 1px solid #ccc;
	padding-bottom: 2px;
}
span.setname {
	display: block;
	font-size: 1.1rem;
	font-weight: bold;
	margin: 3px 0 -2px 0;
}
.button-setitem {
	margin : 2px 0 5px 0;
}


/*ライトボックス*/
#icon2{
	float:none;
	margin-top:0px;
	width:248px;
}
#icon2:hover{
	opacity: 0.5;
	filter:alpha(opacity=50);
}


/* ■■■■■■■■■■ 休暇案内 ■■■■■■■■■■ */

.holiday {
	/*margin: 60px 0px -25px 0px;*/
	border: 5px solid #ddd;
	/*border-radius: 2px;*/
	background-color: #f5f5f5;
	/*height: 68px;*/
	/*width: 1000px;*/
	text-align:center;
	padding: 0.6rem;
	margin-bottom: 20px;
	/*font-size: 10.5pt;*/
}

/* ■■■■■■■■■■ フッター ■■■■■■■■■■ */
footer {
	background: #efefef;
	font-size: 0.9rem;
	margin-top: auto; /*フッターを最下部に固定*/
	/*color: black;*/
}
.footer-container {
	padding-top: 20px;
	padding-bottom: 20px;
}
.footer-nav {
	list-style-type: none;
}
.footer-nav li {
	display: inline;
	padding: 0 1rem 0 0;
}
.footer-nav a {
	/*color: black;*/
	text-decoration: none;
}
.footer-nav a:hover {
	opacity: 0.5;
}