@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  min-height: 100%;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}
body {
  color: #333;
  font-family: -apple-system, "Open Sans", "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1.6rem;
}
.box {
  margin: auto;
  width: 1000px;
}
sup {
  line-height: 2;
  vertical-align: text-top;
  font-size: 12px;
  font-size: 1.2rem;
}
table {
  border-collapse: separate;
  border-spacing: 0;
}
table {
  background-color:#fff;
  width:100%;
  margin:10px auto 0;
  border-top:solid 1px #ccc;
}
table th,
table td {
  border-bottom:solid 1px #ccc;
  padding:5px 10px;
}
table th:not(:last-child),
table td:not(:last-child) {border-right:solid 1px #ccc;}
table th {
  background-color:#f6f6f6;
  font-weight:normal;
}
.kigou {font-family: sans-serif;}
.small {font-size: 75%;}
.pc{display:block;}
.tb{display:none;}
.sp{display:none;}
.pc_tb{display:block;}
.pc_sp{display:block;}
.tb_sp{display:none;}
@media only screen and (max-width:768px) {
  .pc{display:none;}
  .tb{display:block;}
  .sp{display:none;}
  .pc_tb{display:block;}
  .pc_sp{display:none;}
  .tb_sp{display:block;}
}
@media only screen and (max-width:480px) {
  .pc{display:none;}
  .tb{display:none;}
  .sp{display:block;}
  .pc_tb{display:none;}
  .pc_sp{display:block;}
  .tb_sp{display:block;}
}

/* content01
-------------------------------------------------------------*/
#content01 {
  padding: 140px 0 90px;
  width: 100%;
  background: url(../img/bg_mainimage.jpg) #0c213d center no-repeat;
  background-size: cover;
  text-align: center;
}
#content01 .box {
  width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  justify-content: space-between;
  grid-template-areas: "title title title"
                       "img01 catch img02"
                       "feature feature feature"
                       "link link link";
}
#content01 h1.title {
  grid-area: title;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 6.0rem;
  font-weight: 700;
  color: #fdd000;
  text-shadow:0 0 5px #0c213d,
              0 0 5px #0c213d;
}
#content01 .img01,
#content01 .img02 {
  width: 20vw;
  margin: 30px 0;
}
#content01 .img01 {
  grid-area: img01;
}
#content01 .img02 {
  grid-area: img02;
}
#content01 .img01 img,
#content01 .img02 img {
  width: 100%;
}
#content01 .catch {
  grid-area: catch;
  font-size: 2.5rem;
  font-weight: bold;
  background-color: #1786a8;
  padding: .25em 1em;
  display: inline-block;
  border-radius: 100px;
  margin-bottom: 1em;
  color: #fff;
  line-height: 1.3;
  align-self: center;
}
#content01 .feature {
  grid-area: feature;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3em;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 30px;
}
#content01 .feature li {
  background-color: rgba(255,255,255,.25);
  padding: 1em 0;
}
#content01 .link_product-file {grid-area: link;}
@media only screen and (max-width:1099px) {
  #content01 .box {width: 90%;}
}
@media only screen and (max-width:768px) {
  #content01 {padding: 120px 0 70px;}
  #content01 .box {
    width: 94%;
    grid-template-areas: "title title"
                         "img01 img02"
                         "catch catch"
                         "feature feature"
                         "link link";
  }
  #content01 .img01,
  #content01 .img02 {
    width: 100%;
    margin: 30px 0;
  }
  #content01 .feature {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em;
  }
}
@media only screen and (max-width:480px) {
  #content01 {padding: 30px 0;}
  #content01 h1.title {font-size: 4.0rem;}
}

/* content02 - 05 common
-------------------------------------------------------------*/
h2.h2-title {
  font-size:24px;
  font-size:2.4rem;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 50px;
}
h2.h2-title span {
  position: relative;
  display: inline-block;
}
h2.h2-title span::before,
h2.h2-title span::after {
  content: '';
  display: block;
  width: 36px;
  height: 6px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
h2.h2-title span::before {
  background: url("../img/deco_left.gif") center / cover no-repeat;
  left: calc(-36px - .5em);
}
h2.h2-title span::after {
  background: url("../img/deco_right.gif") center / cover no-repeat;
  right: calc(-36px - .5em);
}
@media only screen and (max-width:480px) {
  h2.h2-title span::before,
  h2.h2-title span::after {
    width: 24px;
    height: 4px;
  }
  h2.h2-title span::before {
    left: calc(-24px - .5em);
  }
  h2.h2-title span::after {
    right: calc(-24px - .5em);
  }
}

/* content02
-------------------------------------------------------------*/
#content02{
  padding: 100px 0;
  margin:0 auto;
  max-width:960px;
}
#content02 .flow{
  width:100%;
  margin-top:30px;
}
#content02 ol{
  display:flex;
  justify-content:space-between;
  counter-reset: item;
  list-style-type: none;
  font-size: 18px;
  font-size: 1.8rem;
}
#content02 ol li{
  background-color:#f6f6f6;
  border: solid 1px #ddd;
  padding:15px;
  border-radius: 10px;
  position:relative;
  width:66px;
}
#content02 ol li span{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  margin-top:1.75em;
}
#content02 ol li:before {
  counter-increment: item;
  content: counter(item);
  font-weight: bold;
  color: #fff;
  background-color:#1786a8;
  width:100%;
  height:2em;
  border-radius: 10px 10px 0 0;
  margin-bottom:.5em;
  text-align:center;
  display:inline-block;
  line-height:20px;
  font-size:18px;
  padding-top: .5em;
  position:absolute;
  top:0;
  left:0;
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
#content02 ol li:not(:last-child):after{
  content: '';
  display: block;
  background-color: #fdd000;
  width: 16px;
  height: 32px;
  clip-path: polygon(0% 0%, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  right: -54px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  #content02{
	padding:50px 0 80px;
	margin:0 auto;
	width:90%;
  }
  #content02 ol li:not(:last-child):after{right: -30px;}
}
@media only screen and (max-width:480px) {
  #content02 ol{
	display:block;
	counter-reset: item;
	font-size: 18px;
	font-size: 1.8rem;
  }
  #content02 ol li{width:auto;}
  #content02 ol li:not(:last-child){margin-bottom:30px;}
  #content02 ol li span{
	-ms-writing-mode: lr-tb;
	writing-mode: horizontal-tb;
	margin-top:0;
	margin-left:1.75em;
	display:block;
  }
  #content02 ol li:before {
	width:2em;
	height:100%;
	margin-bottom:0;
	margin-right:5px;
	text-align:center;
	display:inline-block;
	line-height:2.5em;
	font-size:18px;
    border-radius: 10px 0 0 10px;
	position:absolute;
  }
  #content02 ol li:not(:last-child):after{
    width: 32px;
    height: 20px;
    clip-path: polygon(0% 0%, 50% 60%, 100% 0%);
	top:auto;
	right:auto;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
  }
}

/* content03
-------------------------------------------------------------*/
#content03 {
  background-color: #f6f6f6;
  padding: 100px 30px;
  width: 100%;
}
#content03 .innerWrap {
  width: 1100px;
  margin: 30px auto 0;
}
#content03 ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1em;
  list-style: none;
  text-align: center;
  margin-bottom: 10px;
}
#content03 ul li {
  background-color: #fff;
  padding: 1em;
  border-radius: 7.5px;
}
#content03 p {
  font-size:14px;
  font-size:1.4rem;
}
@media only screen and (max-width:1099px) {
  #content03 {padding: 50px 5% 80px;}
  #content03 .innerWrap {width: 100%;}
}
@media only screen and (max-width:768px) {
  #content03 ul {grid-template-columns: repeat(2, 1fr);}
}
@media only screen and (max-width:480px) {
}

/* content04
-------------------------------------------------------------*/
#content04 {
  background: url("../img/bg_lineup.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 80px 0;
}
#content04 .innerWrap {
  width: 1100px;
  margin: 0 auto;
}
#content04 .exampleListWrap {
  background-color: #fff;
  border-radius: 15px;
  padding: 0 1em 30px;
}
#content04 .exampleListWrap:not(:last-child) {
  margin-bottom: 50px;
}
#content04 .exampleListWrap h3 {
  background-color: #e60012;
  color: #fff;
  width: max(13em, 30%);
  margin: 0 auto 1em;
  padding: .25em 0;
  text-align: center;
  line-height: 1.3;
}
#content04 .exampleList {
  list-style: none;
  display: grid;
}
#content04 .exampleList.item2,
#content04 .exampleList.item4 {
  grid-template-columns: repeat(2, 1fr);
}
#content04 .exampleList.item3 {
  grid-template-columns: repeat(3, 1fr);
}
#content04 .exampleList > li {
  padding-left: 1em;
  padding-right: 1em;
}
#content04 .exampleList.item2 > li:nth-child(odd),
#content04 .exampleList.item3 > li:not(:last-child),
#content04 .exampleList.item4 > li:nth-child(odd) {
  border-right: dashed 1px #ccc;
}
#content04 .exampleList.item4 > li:nth-child(1),
#content04 .exampleList.item4 > li:nth-child(2) {
  border-bottom: dashed 1px #ccc;
  padding-bottom: .5em;
}
#content04 .exampleList.item4 > li:nth-child(3),
#content04 .exampleList.item4 > li:nth-child(4) {
  padding-top: .5em;
}
#content04 .exampleList > li h4 {
  color: #e60012;
  font-size: 2.0rem;
  line-height: 1.3;
  margin-bottom: .5em;
}
#content04 .exampleList > li .exampleSpec {
  list-style: none;
  line-height: 1.5;
}
#content04 .exampleList > li .exampleSpec li {
  text-indent: -1em;
  margin-left: 1em;
}
#content04 .exampleList > li .exampleSpec li::before {
  content: '';
  width: 0.75em;
  height: 0.75em;
  display: inline-block;
  background-color: #8f939f;
  border-radius: 50%;
  margin-right: 0.25em;
}
#content04 .exampleList > li .exampleImage {text-align: center;}
#content04 .exampleList > li .exampleImage img {
  width: min(160px, 100%);
  vertical-align: middle;
}
@media only screen and (max-width:1099px) {
  #content04 .innerWrap {width: 90%;}
}
@media only screen and (max-width:768px) {
	
}
@media only screen and (max-width:480px) {
  #content04 .exampleList.item2,
  #content04 .exampleList.item3,
  #content04 .exampleList.item4 {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em;
  }
  #content04 .exampleList.item2 > li,
  #content04 .exampleList.item3 > li,
  #content04 .exampleList.item4 > li {
    border-right: none !important;
  }
  #content04 .exampleList.item2 > li:not(:last-child),
  #content04 .exampleList.item3 > li:not(:last-child),
  #content04 .exampleList.item4 > li:not(:last-child) {
    border-bottom: dashed 1px #ccc;
    padding-bottom: 1em;
  }
  #content04 .exampleList > li h4 {
    text-align: center;
  }
}

/* content05
-------------------------------------------------------------*/
#content05 {
  width: 1100px;
  margin:80px auto 0;
}
#content05 .dimension {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3em;
  list-style: none;
  margin-top: 50px;
}
#content05 .dimension h3 {
  margin-bottom: 1em;
  line-height: 1.3;
}
#content05 .dimension h3 span {
  background-color: #666;
  color: #fff;
  padding: .1em .5em;
  margin-right: .5em;
}
#content05 .dimension img {width: 100%;}
@media only screen and (max-width:1099px) {
  #content05 {width: 90%;}
}
@media only screen and (max-width:768px) {
  #content05 {width: 94%;}
  #content05 .dimension {grid-template-columns: repeat(1, 1fr);}
}
@media only screen and (max-width:480px) {
  #content05 {margin-bottom: 50px;}
}

/* wrapper
-------------------------------------------------------------*/
#wrapper {
  position: relative;
  padding-top: 115px;
}
@media only screen and (max-width:768px) {
  #wrapper {padding-top: 180px;}
}
@media only screen and (max-width:480px) {
  #wrapper {padding-top: 80px;}
}
/* container
-------------------------------------------------------------*/
.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 1100px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {clear: both;}
@media only screen and (max-width:1099px) {
  .container {width: 96%;}
}
@media only screen and (max-width:768px) {
  .container {width: 96%;}
}
@media only screen and (max-width:480px) {
  .container {width: 100%;}
}
/* contentsWrap
-------------------------------------------------------------*/
.contentsWrap {padding-bottom: 250px;}
@media only screen and (max-width:480px) {
  .contentsWrap {padding-bottom: 300px;}
}
/* header
-------------------------------------------------------------*/
#header {
  width: 100%;
  height: 115px;
  background-color:#fff;
  position: absolute;
  top: 0;
  z-index: 1;
}
#header:after {
  content: ".";
  height: 0px;
  clear: both;
  display: block;
  visibility: hidden;
}
#header .site-catch {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  margin: 5px 0 25px 0;
}
#header .site-logo {
  float: left;
}
.nav-header {
  position: absolute;
  top: 5px;
  right: 0;
  list-style-type: none;
}
.nav-header li {
  display: block;
  float: left;
  margin: 0 0 0 25px;
}
.nav-header li a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  vertical-align: baseline;
  color: #333;
  text-decoration: none;
  display: inline-block;
}
.nav-header li a:before {
  display: inline-block;
  content: " ";
  width: 13px;
  height: 13px;
  background-image: url(../../../../img/btn_arrow_left.png);
  margin-right: 7px;
}
.nav-header li a:hover {
  text-decoration: underline;
}
.nav-header li.btn_login_header a {
  background-color: #e50012;
  color: #fff;
  padding: 7px 12px;
}
.nav-header li.btn_login_header a:before {
  display: none;
}
.nav-header li.btn_login_header a:hover {
  background-color: #8c0000;
  text-decoration: none;
}
#nav {
  padding: 10px 0;
  width: 100%;
  background: #eee;
  border-top: solid #1786a8 3px;
  text-align: center;
  position: absolute;
  top: 115px;
  z-index: 1;
}
#nav:after {
  content: ".";
  height: 0px;
  clear: both;
  display: block;
  visibility: hidden;
}
#nav.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
}
#nav ul li {
  display: inline-block;
  vertical-align: top;
  margin: 0 10px;
}
#nav ul li a {
  padding: 8px 1em;
  text-decoration: none;
  color: #1786a8;
}
#nav ul li:last-child a {
  padding: 8px 1em;
  text-decoration: none;
  background: #999;
  color: #fff;
}
#nav ul li a:hover,
#nav ul li:last-child a:hover {
  background: #1786a8;
  color: #fff;
}

/*スマホのトグルボタンのCSS*/
#nav-toggle {
  display: none;
  position: absolute;
  right: 13px;
  top: 15px;
  width: 50px;
  height: 50px;
  background: #eee;
  cursor: pointer;
  z-index: 400;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 68%;
  background: #666;
  left: 0;
  right: 0;
  margin: auto;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {top:11px;}
#nav-toggle span:nth-child(2) {top:23px;}
#nav-toggle span:nth-child(3) {top:35px;}
@media only screen and (max-width:768px) {
  #header {
	height: 180px;
  }
  #nav {
    top: 180px;
  }
}
@media only screen and (max-width:480px) {
  #header {
    height: 80px;
  }
  #header .site-catch{margin-bottom:5px; margin-left:10px;}
  #header .site-logo {float:none; margin-left:10px;}
  #header .site-logo img{width:200px;}
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  #nav-toggle.open span:nth-child(1) {
    top: 23px;
    transform: rotate(315deg);
  }
  #nav-toggle.open span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  #nav-toggle.open span:nth-child(3) {
    top: 23px;
    transform: rotate(-315deg);
  }
  .nav-header {
	position: relative;
	top: 302px;
	left: 0;
	height:60px;
	text-align:center;
	display:none;
  }
  .nav-header.open {
	display:block;
  }
  .nav-header li{
	width:25%;
	margin:0;
	border-right:solid 1px #fff;
	box-sizing:border-box;
  }
  .nav-header li:last-child{
	border-right:none;
  }
  .nav-header li a{
	background-color: #e50012;
	color: #fff;
	display:block;
	height:60px;
	line-height:60px;
	padding:0 !important;
  }
  .nav-header li a:before {
	display: inline-block;
	content: " ";
	width: 0;
	height: 0;
	background-image: none;
	margin-right: 0px;
  }
  #nav{
	display:none;
	top:80px;
	border:none;
	border-bottom:solid 1px #ccc;
	box-sizing:border-box;
	padding:0;
  }
  #nav.fixed {
	margin-top: 0;
	top: 80px;
	position: absolute;
  }
  #nav.open{
	display:block;
  }
  #nav ul {
	display: flex;
	flex-wrap:wrap;
  }
  #nav ul li {
	display: block;
	margin:0;
	border-top:solid 1px #ccc;
	box-sizing:border-box;
	width:50%;
	height:60px;
  }
  #nav ul li:nth-child(odd) {
	border-right:solid 1px #ccc;
  }
  #nav ul li a{
	display: block;
	height:60px;
	line-height:60px;
	padding:0 !important;
  }
}
/* footer
-------------------------------------------------------------*/
#footer {
  height: 163px;
  width: 100%;
  background-color: #dddddd;
  position: absolute;
  bottom: 0;
}
#footer .pribacy {
  float: left;
  font-size: 12px;
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
}
#footer .pribacy:hover {
  text-decoration: underline;
}
#footer .nav-footer {
  list-style-type: none;
  float: left;
  margin: 0;
}
#footer .nav-footer li {
  display: block;
  float: left;
  margin: 0 25px 0 0;
  line-height: 1.5;
}
#footer .nav-footer li a {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  vertical-align: baseline;
  color: #333;
  text-decoration: none;
  display: inline-block;
}
#footer .nav-footer li a:hover {
  text-decoration: underline;
}
#footer .copyright {
  float: right;
  font-size: 12px;
  font-size: 1.2rem;
}
.bg-footer2 {
  padding: 15px 0;
}
.bg-footer2:before, .bg-footer2:after {
  content: " ";
  display: table;
}
.bg-footer2:after {
  clear: both;
}
.bg-footer {
  background-color: #F6F6F6;
  padding: 15px 0;
}
.bg-footer:before, .bg-footer:after {
  content: " ";
  display: table;
}
.bg-footer:after {
  clear: both;
}
.bg-footer .logo-footer {
  float: left;
}
.bg-footer .address-footer {
  padding-top: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  float: right;
  text-align: right;
}
@media only screen and (max-width:768px) {}
@media only screen and (max-width:480px) {
  #footer {
    height: 213px;
  }
  #footer .nav-footer {
	width:100%;
	display:flex;
  }
  #footer .nav-footer li {
	display: block;
	float: none;
	margin: 0;
	width:50%;
	text-align:center;
  }
  #footer .copyright {
	float: none;
	width:100%;
	text-align:center;
	padding:50px 0 0;
  }
  .bg-footer .logo-footer {
	margin-left:15px;
  }
}
/* pagetop
-------------------------------------------------------------*/
#btn-pagetop {
  position: absolute;
  width: 165px;
  height: 35px;
  line-height: 35px;
  top: -50px;
  padding: 0 30px;
  right: 0;
  display: inline-block;
  background-color: #333;
  color: #fff;
  cursor: pointer;
}
#btn-pagetop:before {
  content: " ";
  display: inline-block;
  background-image: url(../../../../img/icon_arrow_up.png);
  width: 18px;
  height: 11px;
  margin-right: 10px;
}
#btn-pagetop:hover {
  background-color: #222;
}
@media only screen and (max-width:768px) {}
@media only screen and (max-width:480px) {}
/* search
-------------------------------------------------------------*/
.contents-search {
  width: 70%;
  float: right;
  background-color: #f6f6f6;
  border: solid 1px #ccc;
  padding: 10px;
  margin-bottom: 15px;
}
.contents-search:before, .contents-search:after {
  content: " ";
  display: table;
}
.contents-search:after {
  clear: both;
}
.contents-search .title-contents {
  display: block;
  float: left;
  width: 100px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}
.contents-search .btn-search_spec {
  display: block;
  float: left;
  width: 160px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
}
.contents-search .btn-search_spec:hover {
  color: #333;
  background-color: #fff;
}
.contents-search .btn-search_no .title {
  display: block;
  margin-left: 15px;
  float: left;
  width: 146px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  border: solid 1px #333;
  background-color: #333;
  color: #fff;
}
.contents-search .btn-search_no .search-box {
  display: block;
}
.contents-search .btn-search_no .search-box .product_no {
  float: left;
  width: 245px;
  height: 32px;
  background: #fff;
  border: solid 1px #666666;
  padding: 4px;
  color: #333;
}
.contents-search .btn-search_no .search-box .btn_search_no {
  float: left;
  text-align: right;
  width: 80px;
  height: 32px;
  background: #333;
  padding-right: 15px;
  color: #fff;
  background-image: url(../../../../img/icon_search.png);
  background-repeat: no-repeat;
  background-position: 10px 6px;
  border: none;
}
.contents-search .btn-search_no .search-box .btn_search_no:hover {
  background-color: #222;
}
input {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  max-width: 100%;
  width: auto;
  padding: 2px 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
}
input[disabled], input[readonly], fieldset[disabled] input {
  background-color: #eee;
  opacity: 1;
}
input[disabled], fieldset[disabled] input {
  cursor: not-allowed;
}
input:focus {
  border: solid 1px #99CCFF;
  background-color: #F0F7FC;
  outline: none;
}
input.sizefull {
  width: 100%;
}
@media only screen and (max-width:1024px) {
  .contents-search {
	width: 75%;
  }
  .contents-search .btn-search_spec {
	width: 150px;
  }
  .contents-search .btn-search_no .title {
	width: 136px;
  }
  .contents-search .btn-search_no .search-box .product_no {
	width: 225px;
  }
}
@media only screen and (max-width:768px) {
  .contents-search {
	width: 100%;
  }
}
@media only screen and (max-width:480px) {
  .contents-search {
	width: 100%;
	float: none;
	display:none;
	margin:0;
	border:0;
	position:absolute;
	left:0;
	top:201px;
  }
  .contents-search.open {
	display:block;
  }
  .contents-search .title-contents {
    float:none;
	width:100%;
	margin-left:0;
  }
  .contents-search .btn-search_spec {
    float:none;
	width:100%;
	margin-left:0;
	height:60px;
	line-height:60px;
	margin-bottom:10px;
  }
  .contents-search .btn-search_no .title {
    float:none;
	width:100%;
	margin-left:0;
  }
  .contents-search .btn-search_no .search-box .product_no {
	width:calc(100% - 80px);
  }
}
/* link btn
-------------------------------------------------------------*/
.link_product-file {
  display: block;
  list-style-type: none;
  margin: 30px 0 0;
}
.link_product-file li {
  display: inline-block;
}
.link_product-file li a {
  font-size: 15px;
  font-size: 1.5rem;
  display: block;
  width: 116px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  background-color: rgba(0,109,217,1);
  border: solid 1px #fff;
  color: #fff;
  margin-left: 3px;
}
.link_product-file li a:hover {
  background-color: rgba(255,255,255,1);
  color: #0059b2;
  border: solid 1px #006DD9;
}
.link_product-file li.link-gray a {
  background-color: rgba(102,102,102,1);
  border: solid 1px #fff;
}
.link_product-file li.link-gray a:hover {
  background-color: rgba(255,255,255,1);
  color: #666666;
  border: solid 1px #666;
}
.link_product-file li.link-red a {
  background-color: rgba(229,0,18,1);
  border: solid 1px #fff;
}
.link_product-file li.link-red a:hover {
  background-color: rgba(255,255,255,1);
  color: #e50012;
  border: solid 1px #e50012;
}
.link_product-file li.link-green a {
  background-color: rgba(72,137,24,1);
  border: solid 1px #fff;
}
.link_product-file li.link-green a:hover {
  background-color: rgba(255,255,255,1);
  color: #488918;
  border: solid 1px #488918;
}
@media only screen and (max-width:480px) {
  .link_product-file {margin-top: 20px;}
  .link_product-file li{width:32%; margin-bottom:5px;}
  .link_product-file li a {width: 100%;}
}
/* Modal window : Login box
-------------------------------------------------------------*/
.modalLoginBox {
  position: absolute;
  border: solid 1px #333;
  background-color: #fff;
  width: 480px;
  padding: 20px;
  display: none;
  position: fixed;
  z-index: 20;
}
.modalLoginBox p{
  margin-bottom:1em;
  font-feature-settings: "pkna";
}
.modalLoginBox form dl {margin-bottom:1em;}
.modalLoginBox form dl dd {margin-bottom:1em;}
.modalLoginBox dl dt {font-size: 100%;}
.modalLoginBox dl dd input {border: solid 1px #333;}
.modalLoginBox .modalLoginMail, .modalLoginPass {width: 100%;}
.modalLoginBox .modalLoginError {
  color: #f00;
  text-align: center;
}
.modalLoginBox .modalBtn {
  text-align: center;
  margin-bottom: 1em;
}
.modalLoginBox .modalBtnLogin, .modalBtnCancel {
  display: inline-block;
  width: 120px;
  margin: 0 10px;
  background-color: #333;
  color: #fff;
  border: solid 1px #333;
  transition: all .3s ease-in-out;
}
.modalLoginBox .modalBtnLogin:hover, .modalBtnCancel:hover {
  background-color: #fff;
  color: #333;
  border: solid 1px #333;
}
.modalLoginBox .textJoin {margin: 0;}
.modalLoginBox .textJoin a {color: #006dd9;}
#modal-bg {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 896px) {
  .modalLoginBox {width: calc(90% - 40px);}
}

.cookie-box {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  border-top: solid 1px #ddd;
  box-shadow: 0 5px 20px 5px rgba(0, 0, 0, .3);
  padding: 20px 0;
  line-height: 1.5;
  display: none;
  font-size: 14px;
  font-size: 1.4rem; }
  .cookie-box .inner {
    width: 1000px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
    justify-content: space-between; }
	.cookie-box .inner .text {
      width: 620px;
	  margin: 0; }
	  .cookie-box .inner .title {
		font-weight: bold; }
	.cookie-box .inner .btn {
	  display: flex;
	  justify-content: space-between;
	  align-items: center; }
	  .cookie-box .inner .privacy,
	  .cookie-box .inner .accept {
		padding: 10px;
		display: inline-block;
		height: 40px;
		transition: all .3s ease-in-out; }
	  .cookie-box .inner .privacy {
        margin-right: 20px; }
	  .cookie-box .inner .privacy:hover {
        color: #999; }
	  .cookie-box .inner .accept {
		background-color: #e50012;
		color: #fff;
		width: 120px; }
	  .cookie-box .inner .accept:hover {
		background-color: #8c0000; }
  .cookie-box .close {
    position: absolute;
    width: 16px;
    height: 16px;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);
    cursor: pointer;
	margin-bottom: 0; }
  .cookie-box .close::before,
  .cookie-box .close::after {
	position: absolute;
    top: 50%;
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    background-color: #666;
    transition: all .3s ease-in-out; }
  .cookie-box .close::before {
	transform: rotate(-45deg); }
  .cookie-box .close::after {
	transform: rotate(45deg); }
  .cookie-box .close:hover::before,
  .cookie-box .close:hover::after {
    background-color: #aaa; }

@media screen and (max-width: 1024px) {
  .cookie-box .inner {
    width: 90%;
    min-width: inherit;
  }
  .cookie-box .inner .text {width: 50%;}
  .cookie-box .inner .text br {display: none;}
}
@media screen and (max-width: 896px) {
  .cookie-box .inner {
    width: 90%;
    display: block;
  }
  .cookie-box .inner .text {
    width: 90%;
    margin-bottom: 30px;
  }
  .cookie-box .close {
    top: 20px;
    transform: translateY(0);
  }
}


/* for print
--------------------------------------------------------------*/
@media print {
  body {
    width: 1280px;
    min-width: 1280px;
    max-width: 1280px;
    transform: scale(1);
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform-origin: 0 0;
    zoom:1;
    -webkit-print-color-adjust: exact;
  }
  #nav.fixed {
	margin-top: 0;
	top: 0;
	position:relative;
  }
}