@charset "UTF-8";
/* CSS Document */

/* box-sizingの優先値 */
*,
*::before,
*::after{
    box-sizing: border-box;
}

/* 画像がコンテナを超えないようにするため */
img {
    max-width: 100%;
}

/* テーブルのセル間のスペースを削除します */
table{
    border-collapse: collapse;
}

img,a img{
	border:none;
	background:transparent;
	vertical-align:bottom;
}


/*----------------------------------------------------*/

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
}
body{
	font-size:1.6rem;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

/* グローバルヘッダー */

.sp {
	display:none;
}

@media (max-width: 576px) {
	.pc {
		display:none;
	}
	.sp {
		display:block;
	}
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	right : 20px;
	top   : 0px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 25px;
	height  : 2px ;
	left    : 6px;
	background : #BBBBBB;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 18px;
}
.hamburger span:nth-child(3) {
	top: 26px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	background :#fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform   : rotate(-45deg);
	transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	background :#fff;
	-webkit-transform: rotate(45deg);
	-moz-transform   : rotate(45deg);
	transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
	position: fixed;
	z-index : 2;
	top  : 0;
	left : 0;
	color: #fff;
	background: rgba( 71,70,73,0.9 );
	text-align: center;
	width: 100%;
	transform: translateX(100%);
	transition: all 0.6s;
}

nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
	background :#ddd;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #fff;
	padding: 1em 0;
	text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
	opacity: 100;
	display: block;
	transform: translateX(0%);
}



/* ↓製品メニュー */

.fixed {
	position: fixed;
	top: 0;
	left: 8;
	width: 800px;
	z-index: 10;
}

#menu {
	width:800px;
	font-family: 'Noto Sans JP', sans-serif; 
}

.pnav-sp {
	display:none;
}

.pnav-pc {
	background-color: #ffffff;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	display: block;
	overflow: hidden;
	margin-bottom:20px;
}
.pnav-pc ul {
	margin: 0;
	padding: 0;
}
.pnav-pc ul li {
	display: inline-block;
	list-style-type: none;
	-webkit-transition: all 0.2s;
	        transition: all 0.2s;
}
.pnav-pc > ul > li > a > .caret {
	border-top: 4px solid #aaaaaa;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	content: '';
	display: inline-block;
	height: 0;
	width: 0;
	vertical-align: middle;
	-webkit-transition: color 0.1s linear;
	        transition: color 0.1s linear;
}
.pnav-pc > ul > li > a {
	color: #333;
	display: block;
	line-height: 200%;
	padding: 0 10px;
	text-decoration: none;
}
.pnav-pc > ul > li:hover {
	background-color: #708090;
}
.pnav-pc > ul > li:hover > a {
	color: rgb( 255, 255, 255 );
}
.pnav-pc > ul > li:hover > a > .caret {
	border-top-color: rgb( 255, 255, 255 );
}
.pnav-pc > ul > li > div {
	background-color: #708090;
	border-top: 0;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
	display: none;
	margin: 0;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	-webkit-transiton: opacity 0.2s;
	       transition: opacity 0.2s;
}
.pnav-pc > ul > li:hover > div {
	display: block;
	opacity: 1;
	visibility: visible;
}
.pnav-pc > ul > li > div ul > li {
	display: block;
}
.pnav-pc > ul > li > div ul > li > a {
	color: #ffffff;
	display: block;
	padding: 12px 24px;
	text-decoration: none;
}
.pnav-pc > ul > li > div ul > li:hover > a {
	background-color: rgba( 255, 255, 255, 0.1);
}

@media (max-width: 800px) {
	.fixed {
		left: 0;
	}


	#menu {
		width:100%;
	}
	.pnav-pc {
		display:none;
	}
	.pnav-sp {
		border: none;
		border-bottom: 1px solid #dedede;
		font-size:1.3rem;
	}
	.pnav-sp {
		background-color: #ffffff;
		box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
		display: block;
		overflow: hidden;
		margin-bottom:20px;
	}
	.pnav-sp ul {
		margin: 0;
		padding: 0;
	}
	.pnav-sp ul li {
		display: inline-block;
		list-style-type: none;
		-webkit-transition: all 0.2s;
		        transition: all 0.2s;
	}
	.pnav-sp > ul > li > a > .caret {
		border-top: 4px solid #aaaaaa;
		border-right: 4px solid transparent;
		border-left: 4px solid transparent;
		content: '';
		display: inline-block;
		height: 0;
		width: 0;
		vertical-align: middle;
		-webkit-transition: color 0.1s linear;
		        transition: color 0.1s linear;
	}
	.pnav-sp > ul > li > a {
		color: #333;
		display: block;
		line-height: 200%;
		padding: 5px;
		text-decoration: none;
	}
	.pnav-sp > ul > li:hover {
		background-color: #708090;
	}
	.pnav-sp > ul > li:hover > a {
		color: rgb( 255, 255, 255 );
	}
	.pnav-sp > ul > li:hover > a > .caret {
		border-top-color: rgb( 255, 255, 255 );
	}
	.pnav-sp > ul > li > div {
		background-color: #708090;
		border-top: 0;
		border-radius: 0 0 4px 4px;
		box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.055);
		display: none;
		margin: 0;
		opacity: 0;
		position: absolute;
		visibility: hidden;
		-webkit-transiton: opacity 0.2s;
		       transition: opacity 0.2s;
	}
	.pnav-sp > ul > li:hover > div {
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.pnav-sp > ul > li > div ul > li {
		display: block;
	}
	.pnav-sp > ul > li > div ul > li > a {
		color: #ffffff;
		display: block;
		padding: 12px 24px;
		text-decoration: none;
	}
	.pnav-sp > ul > li > div ul > li:hover > a {
		background-color: rgba( 255, 255, 255, 0.1);
	}
}
/* ↑製品メニュー */


#maincontents {
	width:800px;
}

@media (max-width: 800px) {
	#maincontents {
		width:100%;
	}
}


#maincontents h1 {
	margin:50px 0 30px;
	padding:10px;
	border-bottom:2px solid #222;
	line-height:120%;
	font-size:3rem;
	font-weight:bold;
}

#maincontents h2 {
	border-bottom:2px dashed #333;
	margin:80px 0 30px;
	padding: 0 0 5px 10px;
	font-size:2.5rem;
	font-weight:bold;
}

#maincontents h3 {
	margin:80px 0 20px 10px;
	padding: 0 0 0 10px;
	border-left:10px solid #272727;
	font-size:2.5rem;
}

#maincontents h4 {
	margin:50px 0 10px 0;
	padding: 0 0 0 10px;
	font-size:2rem;
}



#maincontents p {
	margin:20px 10px;
	line-height:150%;
}

#maincontents .imgbox {
	text-align:center;
	margin:50px auto;
}


#maincontents .imgcap {
	margin-bottom:50px;
	text-align:center;
	font-weight:bold;
}

.pinfo {
	margin:20px 0;
	padding:30px 10px;
	background:#f5f5f5;
	border-radius:5px;
}

.pname {
	font-family: 'Noto Sans JP', sans-serif;
	font-size:2.5rem !important;
	font-weight:bold;
}



@media (max-width: 576px) {
	#maincontents h1 {
		font-size:2rem;
	}
	#maincontents h2 {
		font-size:2rem;
	}

	#maincontents h3 {
		font-size:1.5rem;
	}

	#maincontents p {
		margin:20px 5px;
		font-size:1.5rem;
	}
	.pinfo {
		margin:20px 0;
		padding:10px;
	}
}



/* flex */

.flx {
	display:flex;
	justify-content: center;
}

.flx-1 {
	margin-right:20px;
}

.flx-2 {
	width:54%;
}

.flx-2 p {
	margin:0;
}


.flx-prs1 {
	margin-right:20px;
}

.flx-prs2 {
	width:60%;
}


@media (max-width: 576px) {
	.flx {
		display:block;
	}
	.flx-1 {
		margin-right:0;
	}

	.flx-2 {
		width:100%;
	}
	.txt-center {
		text-align:center;
	}

	.flx-prs1 {
		text-align:center;
	}

	.flx-prs2 {
		width:100%;
	}


}

/* mp4 */

.video {
	text-align:center;
}

.video video {
	width:640px;
}

.video2 {
	display:flex;
	justify-content: center;
}

.video2 video {
	width:350px;
	margin:5px;
}

@media (max-width: 576px) {
	.video video {
		width:100%;
	}
	.video2 {
		display:block;
	}

	.video2 video {
		width:100%;
	}
}





/* まだまだ */

.otherpoint ul {
	padding-inline-start: -30px !important;
}

.otherpoint li:before {
	content:  "";
	width:  10px;
	height:  10px;
	display:  inline-block;
	background-color: #6eb7fb;
	border-radius:  50%;
	position:  relative;
	margin-right:10px;
}

.otherpoint li {
	list-style:none;
	margin-bottom:10px;
}






/* ラベルアイコン */

.r-icon {
	background: #df002c;
	padding: 1px 5px;
	margin-left: 5px;
	vertical-align: middle;
	font-size: 0.8em;
	font-weight: bold;
	color: #fff;
	border-radius: 3px;
}

.y-icon {
	background: #f39801;
	padding: 1px 5px;
	margin-left: 5px;
	vertical-align: middle;
	font-size: 0.8em;
	font-weight: bold;
	color: #fff;
	border-radius: 3px;
}

.g-icon {
	background: #666;
	padding: 1px 5px;
	margin-left: 5px;
	vertical-align: middle;
	font-size: 0.8em;
	font-weight: bold;
	color: #fff;
	border-radius: 3px;
}

.b-icon {
	background: #48bbf2;
	padding: 1px 5px;
	margin-left: 5px;
	vertical-align: middle;
	font-size: 0.8em;
	font-weight: bold;
	color: #fff;
	border-radius: 3px;
}



/* 表 */

.env {
	margin: 0 auto;
	border:1px solid #404040;
	padding:5px;
	font-size:0.9em;
}

.env td {
	border:1px solid #404040;
	padding:5px;
}

.env ul {
	list-style:square;
	list-style-position: outside;
}

.env li {
	margin-bottom:0.8em;

}

.env2 {
	width:80%;
	margin: 0 auto;
	padding:5px;
	font-size:0.9em;
}

.env2 td {
	padding:5px;
}

@media (max-width: 576px) {
	.env2 {
		width:90%;
	}
}

.tri {
	margin: 0 auto;
	padding:5px;
	width:80%;
	text-align:center;
}



/* 購入 */

.buytable {
	width:95%;
	margin: 0 auto;
	border:1px solid #404040;
}

.buytable td {
	border:1px solid #404040;
	padding:10px;
}

.buytable p{
	margin-bottom:10px;
}
.buy-img {
	text-align:center;
	width:40%;
}

.buy-name {
	font-weight:bold;
	font-size:2rem;
}




footer {
	width:800px;
	margin:50px 0 0;
	text-align:center;
}

footer p {
	margin:20px;
	color:#666;
}

.copy {
	padding-top:10px;
	border-top:1px solid #aaa;
	font-size:1.2rem;
	margin-bottom:10px;
}

@media (max-width: 576px) {
	footer {
		width:100%;
	}
}

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #ccc;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


