@charset "UTF-8";
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans CJK JP Thin"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff2") format("woff2"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff") format("woff"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: local("Noto Sans CJK JP Light"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff2") format("woff2"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff") format("woff"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2") format("woff2"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff") format("woff"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2") format("woff2"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff") format("woff"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2") format("woff2"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff") format("woff"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf") format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans CJK JP Black"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff2") format("woff2"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff") format("woff"), url("//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.otf") format("opentype");
}

/* Custom Style - Common --------------------------------------- */
* {
  box-sizing: border-box;
}

body {
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
}

.rw {
  font-family: 'Raleway', sans-serif;
}

.gradient {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: #3a80c2;
  color: #fff;
}

.bold {
  font-weight: 700;
}

.btn {
  display: block;
  width: 100%;
  padding: 0;
}

.btn a {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #fff;
  padding: 2.2rem;
  border-radius: 100px;
  background: #fff;
  text-decoration: none;
  font-size: 1.9rem;
  line-height: 1;
  opacity: 1;
  transition: all .2s ease-out;
}

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

.btn a:hover {
  opacity: .7;
}

.btn.transparent a {
  background: transparent;
  color: #fff;
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
  max-height: 100vh;
}

#content {
  opacity: 0;
}

/* Custom Style - Loader --------------------------------------- */
@keyframes wave {
  0% {
    top: 0;
    opacity: 1;
    background-color: #3a80c2;
  }
  50% {
    top: 10px;
    opacity: .2;
    background-color: #3a80c2;
  }
  100% {
    top: 0;
    opacity: 1;
    background-color: #3a80c2;
  }
}

#loader {
  width: 80px;
  height: 100px;
  margin: 100px auto;
  margin-top: calc(100vh / 2 - 50px);
}

#loader .block {
  position: relative;
  box-sizing: border-box;
  float: left;
  margin: 0 10px 10px 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: #3a80c2;
}

#loader .block:nth-child(4n+1) {
  animation: wave 2s ease .0s infinite;
}

#loader .block:nth-child(4n+2) {
  animation: wave 2s ease .2s infinite;
}

#loader .block:nth-child(4n+3) {
  animation: wave 2s ease .4s infinite;
}

#loader .block:nth-child(4n+4) {
  animation: wave 2s ease .6s infinite;
  margin-right: 0;
}

/* Custom Style - Navigation --------------------------------------- */
nav.navbar-default {
  padding: 3rem;
  margin-bottom: 0;
  background: #fff;
  border-bottom: none;
  transition: padding 0.3s;
}

nav.navbar-default.navbar-shrink {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  padding: .3rem;
}

nav.navbar-default.navbar-shrink .brand img {
  padding-top: 1.8rem;
  width: 150px;
  height: auto;
}

nav.navbar-default .brand img {
  padding-top: 1rem;
  width: 190px;
  height: auto;
}

nav.navbar-default li {
  padding: 1.2rem 1.6rem 1rem 0;
}

nav.navbar-default li a {
  vertical-align: middle;
  font-weight: 500;
  transition: color .2s ease-out;
}

nav.navbar-default li a:link, nav.navbar-default li a:visited {
  color: #000000 !important;
}

nav.navbar-default li a:hover {
  color: #646464 !important;
}

nav.navbar-default li.social {
  padding: 1rem 0;
}

nav.navbar-default li.social i.fab {
  font-size: 2.6rem;
}

.navbar-collapse {
  border-top: none;
}

/* Header(Keyvis)  -------------------------------------- */
header {
  position: relative;
  padding-top: 11rem;
}

#keyvis_slider {
  z-index: 1;
  padding-left: 25vw;
}

#keyvis_slider div {
  pointer-events: none;
}

#keyvis_slider div img {
  width: 75vw;
  pointer-events: none;
}

#keyvis_txt {
  z-index: 99;
  position: absolute;
  top: 28vh;
  left: 8vw;
}

#keyvis_txt h3 {
  margin: 0;
  font-weight: 900;
  font-size: 5.6rem;
}

#keyvis_txt h2 {
  margin: 2rem 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1rem;
}

#keyvis_txt p.border {
  display: inline-block;
  margin: 1rem 0;
  width: 26px;
  margin-left: 4px;
  border-bottom: 6px solid #ccc;
}

#keyvis_txt h4 {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.8;
  margin-left: 2px;
}

/* #Topics  -------------------------------------- */
#topics {
  margin: 6rem 0;
}

#topics .box {
  font-size: 1.8rem;
  border: 1px solid #ccc;
  padding: 1.8rem 2.4rem;
}

#topics .box .col-sm-2 {
  font-weight: 700;
}

#topics .box a:link, #topics .box a:visited {
  color: #3a80c2;
}

#topics .box a:hover {
  color: #e799bd;
  text-decoration: underline;
}

/* #Main  -------------------------------------- */
#main {
  overflow-x: hidden;
  /* 資料ダウンロード  ------------------------------------------- */
  /* 会社概要 ------------------------------------------- */
}

#main #feature {
  position: relative;
}

#main #feature h3 {
  letter-spacing: .4rem;
  font-size: 3rem;
  line-height: 1.8;
}

#main #feature .feature_lead_img {
  margin: 3rem 0 5rem;
}

#main #feature .feature_lead_img ul {
  list-style: none;
  padding: 0;
  display: table;
  vertical-align: middle;
  text-align: center;
}

#main #feature .feature_lead_img ul li {
  display: table-cell;
}

#main #feature .feature_lead_img ul li:first-child {
  width: 27%;
}

#main #feature .feature_lead_img ul li:last-child {
  width: 73%;
  padding-left: 8rem;
}

#main #feature .feature_lead_img.img-1 {
  margin-right: 2.5rem;
}

#main #feature .feature_lead_img.img-2 {
  padding-top: 2rem;
}

#main #feature .featureList {
  text-align: center;
}

#main #feature .featureList h5 {
  margin: 2rem 0;
  font-size: 2.2rem;
  font-weight: 700;
}

#main #feature .featureList .featureImg {
  padding: 1rem 0;
}

#main #feature .featureList .featureImg img {
  max-height: 200px;
}

#main #feature .featureList p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

#main .product {
  margin: 8rem 0;
}

#main .product#matless .product_keyvis .product_keyvis_txt {
  right: 5vw;
  text-align: right;
}

#main .product#matless .product_keyvis .product_keyvis_txt p.logo, #main .product#matless .product_keyvis .product_keyvis_txt h2, #main .product#matless .product_keyvis .product_keyvis_txt h3, #main .product#matless .product_keyvis .product_keyvis_txt h4, #main .product#matless .product_keyvis .product_keyvis_txt p.en {
  text-align: right;
}

#main .product#matless .product_keyvis .product_keyvis_txt h4, #main .product#matless .product_keyvis .product_keyvis_txt p.en {
  padding-right: .2rem;
}

#main .product#matless .product_keyvis .product_keyvis_txt p.border {
  float: right;
  margin-right: .5rem;
}

#main .product#matless .product_keyvis .product_keyvis_txt p.border:after {
  clear: both;
}

#main .product#matless .product_features {
  padding-left: 0;
  margin-left: 0;
}

#main .product#matless .product_features li {
  border-left-color: #e799bd;
}

#main .product#matless .product_slider {
  background: #3a80c2;
}

#main .product#matless #product_matless_table table tr th,
#main .product#matless #product_matless_table table tr td {
  padding: .3rem .5rem;
  vertical-align: middle;
}

#main .product#matless #product_matless_table table tr th {
  font-size: 1.3rem;
  font-weight: 500;
  background: #3a80c2;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
}

#main .product#matless #product_matless_table table tr td {
  font-size: 1.2rem;
}

#main .product#seatc .product_keyvis .product_keyvis_img {
  text-align: right;
}

#main .product#seatc .product_keyvis .product_keyvis_txt {
  left: 5vw;
}

#main .product#seatc .product_keyvis .product_keyvis_txt p.logo, #main .product#seatc .product_keyvis .product_keyvis_txt h2, #main .product#seatc .product_keyvis .product_keyvis_txt h3 {
  text-align: left;
}

#main .product#seatc .product_features {
  padding-right: 0;
  margin-right: 0;
}

#main .product#seatc .product_features li {
  border-left-color: #3a80c2;
}

#main .product#seatc .product_slider {
  background: #3a80c2;
}

#main .product .product_keyvis {
  position: relative;
}

#main .product .product_keyvis .product_keyvis_img img {
  width: 80vw;
}

#main .product .product_keyvis .product_keyvis_txt {
  position: absolute;
}

#main .product .product_keyvis .product_keyvis_txt p.logo img {
  width: 160px;
}

#main .product .product_keyvis .product_keyvis_txt h2 {
  font-weight: 900;
  font-size: 10rem;
  margin: 1rem 0;
  line-height: 1;
}

#main .product .product_keyvis .product_keyvis_txt h3 {
  font-size: 1.5rem;
  letter-spacing: 1.5rem;
  margin: 0 0 3rem;
}

#main .product .product_keyvis .product_keyvis_txt p.border {
  display: block;
  width: 20px;
  height: 1px;
  border-top: 1px solid #000;
  margin-bottom: 2rem;
}

#main .product .product_keyvis .product_keyvis_txt h4 {
  clear: both;
  font-size: 1.8rem;
  line-height: 1.6;
  letter-spacing: .3rem;
}

#main .product .product_keyvis .product_keyvis_txt p.en {
  clear: both;
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

#main .product .product_features {
  padding-right: 3rem;
  list-style: none;
}

#main .product .product_features:before {
  content: "";
  position: relative;
}

#main .product .product_features li {
  margin: 3rem 0;
  padding: .3rem 0 .3rem 1.8rem;
  border-left-width: 5px;
  border-left-style: solid;
}

#main .product .product_features li h5 {
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
}

#main .product .product_features li p {
  line-height: 1.6;
}

#main .product .product_ilst {
  margin-top: 5vh;
}

#main .product .product_ilst p {
  margin: 0;
}

#main .product .product_slider {
  margin: 3rem 0;
  padding: 3rem 0;
  background-color: #e885b7;
}

#main .product .product_slider .owl-carousel {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

#main .product .product_slider .owl-item {
  color: #fff;
  z-index: 1;
}

#main .product .product_slider .owl-item .product_details {
  letter-spacing: 1px;
  padding-left: 74px;
  box-sizing: border-box;
}

#main .product .product_slider .owl-item .product_details p.num {
  letter-spacing: 0px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 4.6rem;
  margin: 0;
}

#main .product .product_slider .owl-item .product_details p.num span {
  width: 1.8rem;
  display: inline-block;
  border-bottom: 1px solid #fff;
}

#main .product .product_slider .owl-item .product_details p.en {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
}

#main .product .product_slider .owl-item .product_details h5 {
  font-weight: 500;
  font-size: 2.4rem;
  margin: .5rem 0 1.5rem;
}

#main .product .product_slider .owl-item .product_details p.desc {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: .2rem;
}

#main .product .product_slider .owl-item .product_details ul.tags {
  padding: 0;
  margin-bottom: 1.5rem;
  list-style: none;
}

#main .product .product_slider .owl-item .product_details ul.tags li {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  margin-right: .2rem;
  padding: .2rem 1rem .3rem;
  border: 1px solid #fff;
  border-radius: 100px;
  font-weight: 500;
}

#main .product .product_slider .owl-item .product_details .sub_desc {
  font-size: 1.4rem;
  font-weight: 300;
}

#main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element {
  line-height: 1;
}

#main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element div.bold {
  font-weight: 600;
  margin: 1.5rem 0 .6rem;
}

#main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element div p {
  margin: 0 0 .6rem 0;
}

#main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element div p span.price {
  padding-left: 1rem;
}

#main .product .product_slider .owl-item .product_details .sub_desc_img_box {
  margin: 1.4rem 0 0rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.8rem 3rem 1rem;
  display: inline-block;
}

#main .product .product_slider .owl-item .product_img {
  text-align: right;
  padding-right: 74px;
  padding-top: 40px;
}

#main .product .product_slider .owl-item .product_img img {
  width: 100%;
}

#main .product .product_slider .owl-item .product_img_details {
  margin: 2.4rem 0 0;
  text-align: center;
}

#main .product .product_slider .owl-prev,
#main .product .product_slider .owl-next {
  position: absolute;
  top: 50%;
  border: none;
  border: 1px solid #fff !important;
  background: transparent !important;
  color: #fff;
  border-radius: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  line-height: 0;
  letter-spacing: -0.01px;
  -webkit-transform: translate(0, -40%);
  -ms-transform: translate(0, -40%);
  transform: translate(0, -40%);
  cursor: pointer;
  padding: .9rem 1.3rem;
  opacity: .9;
  transition: all .2s ease-out;
  z-index: 9999;
  line-height: .5;
}

#main .product .product_slider .owl-prev span,
#main .product .product_slider .owl-next span {
  font-weight: 900;
  font-size: 2.2rem;
}

#main .product .product_slider .owl-prev:hover,
#main .product .product_slider .owl-next:hover {
  opacity: 1.0;
}

#main .product .product_slider .owl-prev.disabled,
#main .product .product_slider .owl-next.disabled {
  opacity: 0.3;
}

#main .product .product_slider .owl-prev {
  left: 0px;
}

#main .product .product_slider .owl-next {
  right: 0px;
}

#main .product .product_slider .owl-dots .owl-dot span {
  background: #fff;
  opacity: .3;
}

#main .product .product_slider .owl-dots .owl-dot.active span {
  opacity: 1;
}

#main .product .product_sub_feature {
  margin: 4.8rem 0;
}

#main .product .product_sub_feature h3 {
  text-align: center;
  font-size: 3rem;
  letter-spacing: .4rem;
  font-weight: 300;
  line-height: 2;
}

#main .product .product_sub_feature p {
  line-height: 1.8;
  text-align: center;
}

#main .product .product_sub_feature .product_sub_feature_img {
  text-align: center;
  margin: 3rem 0;
}

#main .product .product_sub_feature.half {
  margin-top: 3rem;
}

#main .product .product_sub_feature.half:first-child {
  padding-right: 2rem;
}

#main .product .product_sub_feature.half:last-child {
  padding-left: 2rem;
}

#main .product .product_sub_feature.half h4 {
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
}

#main .product .product_sub_feature.half h4 span.small {
  font-size: 1.5rem;
}

#main .product .product_sub_feature.half p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
}

#main .product .product_sub_feature.half .product_sub_feature_img {
  margin: 2rem 0;
}

#main #others {
  background-color: #3a80c2;
  color: #fff;
  text-align: center;
  padding: 6rem 0;
  letter-spacing: 1px;
}

#main #others h4 {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 4rem;
}

#main #others h4 .small {
  color: #fff;
  font-size: 1.6rem;
}

#main #others .product_others div.img {
  margin-bottom: 1rem;
}

#main #others .product_others h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 0;
}

#main #others .product_others p.en {
  font-size: 1rem;
  font-weight: 300;
}

#main #others .product_others p.en:after {
  display: block;
  width: 20px;
  margin: 1rem auto 0;
  opacity: .7;
  border-bottom: 1px solid #fff;
  content: "";
}

#main #others .product_others p.desc {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 300;
}

#main #others .buttons {
  margin-top: 2rem;
}

#main #others .buttons .btn {
  color: #3a80c2;
}

#main #references {
  padding: 10rem 0 0;
}

#main #references .ttl h6 {
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 4.4rem;
}

#main #references #references_content.owl-carousel {
  position: relative;
}

#main #references #references_content.owl-carousel .owl-nav {
  position: absolute;
  top: 20%;
  width: 100%;
}

#main #references #references_content.owl-carousel .owl-nav button {
  background: #9a9a9a;
  color: #ffffff;
  opacity: .5;
  width: 32px;
  line-height: 1.5;
  font-size: 2rem;
  border-radius: 30px;
}

#main #references #references_content.owl-carousel .owl-nav button.disabled {
  opacity: .2;
}

#main #references #references_content.owl-carousel .owl-nav button.owl-prev {
  margin-left: -20px;
  float: left;
}

#main #references #references_content.owl-carousel .owl-nav button.owl-next {
  margin-right: -20px;
  float: right;
}

#main #references #references_content.owl-carousel .owl-nav button span {
  padding: 0 0 .4rem;
  display: block;
}

#main #references #references_content.owl-carousel .owl-dots {
  margin-top: 2.6rem;
}

#main #references #references_content.owl-carousel .owl-dots button {
  width: 15px;
}

#main #references #references_content.owl-carousel .owl-dots button span {
  width: 6px;
  height: 6px;
}

#main #references #references_content.owl-carousel div p {
  font-size: 1.2rem;
  margin: .2rem 0;
}

#main #references #references_content.owl-carousel div p img {
  border: 1px solid #ccc;
  max-width: 100%;
}

#main #company {
  padding: 8rem 0 5rem;
}

#main #company #message h4 {
  letter-spacing: -1px;
  font-size: 5.4rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

#main #company #message h5 {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: .1rem;
  margin: 1rem 0;
  text-align: center;
}

#main #company #message p.msg_ilst {
  margin: 2.8rem 0;
}

#main #company #outline {
  padding: 5rem 0;
}

#main #company #outline h6 {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: .5rem;
  text-align: center;
  margin-bottom: 3rem;
}

#main #company #outline h6:after {
  content: "";
  display: block;
  border-bottom: 1px solid #999;
  width: 30px;
  height: 1px;
  margin: 0 auto;
  padding: 0rem 0 2.4rem;
}

#main #company #outline .outline_ttl,
#main #company #outline .outline_body {
  padding: .4rem 0;
}

#main #company #outline .outline_ttl {
  font-weight: 700;
  text-align: right;
}

#main #company #outline .outline_body a {
  color: #000;
}

#main #company #outline #gmap {
  background: #ccc;
  height: 25vh;
  width: 100%;
  margin-bottom: 1.8rem;
}

#main #company #outline .gmap_btn {
  text-align: right;
}

#main #company #outline .gmap_btn a {
  display: inline-block;
  border: 1px solid #999;
  color: #000;
  font-size: 1.4rem;
  padding: 1rem 4rem;
  border-radius: 3px;
  transition: all .2s ease-out;
}

#main #company #outline .gmap_btn a:hover {
  text-decoration: none;
  background: #fafafa;
}

#main #company #company_sub {
  margin: 0 0 6rem;
}

#main #company #company_sub #facebook {
  text-align: center;
  height: 400px;
  margin: auto;
}

#main #company #company_sub #facebook .fb_iframe_widget,
#main #company #company_sub #facebook .fb_iframe_widget span,
#main #company #company_sub #facebook .fb_iframe_widget iframe[style] {
  width: 100% !important;
  margin: 0 auto;
  float: none;
}

#main #company #company_sub #history {
  height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  padding: 1rem 2rem;
}

#main #company #company_sub #history .row div {
  line-height: 1.6;
}

#main #company #company_sub #history .row div:first-child {
  padding-left: 2.5rem;
  font-weight: 700;
}

/* Footer --------------------------------------- */
footer {
  overflow: hidden;
}

footer #everyday {
  background-color: #eff4ff;
  padding: 6rem 0 0;
  text-align: center;
  position: relative;
}

footer #everyday p {
  position: relative;
  font-size: 3.6rem;
}

footer #everyday p.t1 {
  z-index: 99;
  color: #3a80c2;
}

footer #everyday p.t2 {
  z-index: 1;
  top: -5rem;
  left: 1rem;
  background-color: #d5e3ff;
}

footer #copyright {
  font-size: 1rem;
  padding: 3rem 0;
  text-align: center;
}

/* Responsive 2560 + ---------------------------------------- */
@media screen and (min-width: 2560px) {
  header #keyvis_txt h3 {
    font-size: 8rem;
  }
  header #keyvis_txt h2 {
    margin: 3rem 0;
    font-size: 5rem;
    letter-spacing: 1.6rem;
  }
  header #keyvis_txt h4 {
    font-size: 2.2rem;
    line-height: 2;
  }
  #main .product .product_keyvis .product_keyvis_txt {
    top: 10vh;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo img {
    width: 250px;
  }
  #main .product .product_keyvis .product_keyvis_txt h2 {
    font-size: 20rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h3 {
    font-size: 2rem;
    letter-spacing: 2rem;
    margin: 0 0 4rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h4 {
    margin-left: 5rem;
    letter-spacing: 1.2rem;
    font-size: 2.5rem;
    line-height: 1.8;
  }
  #main .product .product_keyvis .product_keyvis_txt p.en {
    margin-left: 5rem;
    width: 20vw;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: .1rem;
  }
}

/* Responsive 1920 + ---------------------------------------- */
@media screen and (max-width: 2559px) and (min-width: 1920px) {
  header #keyvis_txt {
    top: 35vh;
    left: 8vw;
  }
  #main #feature h3 {
    line-height: 2;
    font-size: 3.5rem;
  }
  #main .product .product_keyvis .product_keyvis_txt {
    top: 8vh;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo img {
    width: 180px;
  }
  #main .product .product_keyvis .product_keyvis_txt h2 {
    font-size: 14rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h3 {
    font-size: 1.8rem;
    letter-spacing: 1.6rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h4 {
    letter-spacing: 1rem;
    font-size: 2rem;
    line-height: 1.6;
  }
  #main .product .product_keyvis .product_keyvis_txt p.en {
    width: 20vw;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: .1rem;
  }
}

/* Responsive 1600 ---------------------------------------- */
@media screen and (max-width: 1600px) {
  #keyvis_txt h3 {
    font-size: 5rem;
  }
  #keyvis_txt h2 {
    margin: 1.5rem 0;
    font-size: 3.2rem;
  }
  #keyvis_txt h4 {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  #main .product#matless #ilst_1 {
    top: 0;
    left: 0;
  }
  #main .product#matless #ilst_1 img {
    width: 20vw;
  }
  #main .product#matless #ilst_2 {
    top: 280px;
    right: 0;
  }
  #main .product#matless #ilst_2 img {
    width: 15vw;
  }
}

/* Responsive 1440 ---------------------------------------- */
@media screen and (max-width: 1440px) {
  nav.navbar-default.navbar-shrink .brand img {
    padding-top: 1.5rem;
    width: 140px;
  }
  nav.navbar-default li {
    padding: 1.2rem 1rem;
  }
  nav.navbar-default li a {
    padding: 1.4rem 1rem;
    font-size: 1.4rem;
  }
  nav.navbar-default li a i.fab {
    font-size: 2.2rem;
  }
  #main #feature h3 {
    letter-spacing: .3rem;
    font-size: 2.8rem;
    line-height: 1.8;
  }
  #main .product .product_keyvis .product_keyvis_txt {
    top: 5vh;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo img {
    width: 140px;
  }
  #main .product .product_keyvis .product_keyvis_txt h2 {
    font-size: 9rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h3 {
    font-size: 1.4rem;
    letter-spacing: 1.6rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h4 {
    letter-spacing: .6rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  #main .product .product_keyvis .product_keyvis_txt p.en {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

/* Responsive 1180 ---------------------------------------- */
@media screen and (max-width: 1180px) {
  nav.navbar-default {
    padding: 2.2rem;
  }
  nav.navbar-default .brand img {
    padding-top: 1rem;
    max-width: 160px;
  }
  nav.navbar-default li {
    padding: .5rem;
  }
  nav.navbar-default li.social {
    padding: 0;
  }
  nav.navbar-default li.social a {
    padding: 1.8rem .7rem;
  }
  nav.navbar-default li.social a .fab {
    font-size: 2.2rem;
  }
  nav.navbar-default.navbar-shrink .brand img {
    width: 120px;
    padding-top: 1.2rem;
  }
  nav.navbar-default.navbar-shrink li.social a {
    padding: 2rem .6rem;
  }
  nav.navbar-default.navbar-shrink li.social a .fab {
    font-size: 2rem;
  }
  header #keyvis_txt h3 {
    font-size: 4.2rem;
  }
  header #keyvis_txt h2 {
    font-size: 2.5rem;
    letter-spacing: 1rem;
  }
  header #keyvis_txt h4 {
    font-size: 1.4rem;
    line-height: 2;
  }
  #topics {
    margin: 4rem 0;
  }
  #topics .box {
    font-size: 1.6rem;
    padding: 1.8rem 2.4rem;
  }
  #main #feature h3 {
    letter-spacing: .2rem;
    font-size: 2.6rem;
    line-height: 1.6;
  }
  #main #feature .feature_lead_img {
    margin: 3rem 3rem 5rem;
  }
  #main #feature .feature_lead_img ul li:last-child {
    padding-left: 6rem;
  }
  #main #feature .feature_lead_img.img-1 {
    margin-right: 2.5rem;
  }
  #main #feature .feature_lead_img.img-2 {
    padding-top: 2rem;
  }
  #main #feature .featureList h5 {
    font-size: 2rem;
  }
  #main #feature .featureList p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  #main .product .product_keyvis .product_keyvis_txt {
    top: 3vh;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo img {
    width: 100px;
  }
  #main .product .product_keyvis .product_keyvis_txt h2 {
    font-size: 7rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h3 {
    font-size: 1.2rem;
    letter-spacing: .8rem;
    margin-bottom: 2rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h4 {
    letter-spacing: .6rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #main .product .product_keyvis .product_keyvis_txt p.en {
    width: 24vw;
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

/* Responsive 991 ---------------------------------------- */
@media screen and (max-width: 991px) {
  .btn a {
    padding: 2.2rem;
    font-size: 1.6rem;
  }
  nav.navbar-default {
    padding: 1rem 1rem 1rem 0;
  }
  nav.navbar-default .brand img {
    padding-top: 1rem;
    padding-left: 0rem;
    width: 100px;
  }
  nav.navbar-default li {
    padding: 0 .2rem;
  }
  nav.navbar-default li a {
    padding: 1.4rem .8rem;
    font-size: 1.2rem;
  }
  nav.navbar-default li.social a {
    padding: 1.4rem .4rem;
  }
  nav.navbar-default.navbar-shrink {
    padding: .8rem 1rem .8rem 0;
  }
  nav.navbar-default.navbar-shrink .brand img {
    width: 90px;
  }
  nav.navbar-default.navbar-shrink li a {
    padding: 1.4rem .5rem;
  }
  nav.navbar-default.navbar-shrink li.social {
    padding: 0rem;
  }
  nav.navbar-default.navbar-shrink li.social a {
    padding: 1.4rem .4rem;
  }
  header {
    padding-top: 4rem;
  }
  header #keyvis_slider {
    padding: 0;
  }
  header #keyvis_slider img {
    position: relative;
    left: -10vw;
    width: 110vw;
  }
  header #keyvis_txt {
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
  }
  header #keyvis_txt h3 {
    font-size: 3.2rem;
  }
  header #keyvis_txt h2 {
    font-size: 2.4rem;
    letter-spacing: 3px;
    margin-bottom: .5rem;
  }
  header #keyvis_txt p.border {
    margin: 1rem 0;
    width: 32px;
    margin-left: 0px;
    border-bottom: 1px solid #ccc;
  }
  header #keyvis_txt h4 {
    margin-top: 0;
    line-height: 1.6;
  }
  /* #Topics  -------------------------------------- */
  #topics {
    margin: 4rem 0;
  }
  #topics .box {
    font-size: 1.4rem;
    padding: 1.6rem 2rem;
  }
  #main #feature h3 {
    letter-spacing: .2rem;
    font-size: 2.4rem;
    line-height: 1.7;
  }
  #main #feature .feature_lead_img {
    margin: 3rem 0rem 5rem;
  }
  #main #feature .feature_lead_img ul {
    display: block;
  }
  #main #feature .feature_lead_img ul li {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  #main #feature .feature_lead_img ul li:first-child {
    width: 25vw;
  }
  #main #feature .feature_lead_img ul li:last-child {
    width: 70vw;
    margin-top: 2.5rem;
    padding-left: 0rem;
  }
  #main #feature .feature_lead_img.img-1 {
    margin-right: 2.5rem;
  }
  #main #feature .feature_lead_img.img-2 {
    padding-top: 2rem;
  }
  #main #feature .featureList h5 {
    margin: 2rem 0;
    font-size: 1.8rem;
  }
  #main #feature .featureList .featureImg {
    padding: 1rem 0;
  }
  #main #feature .featureList .featureImg img {
    max-height: 160px;
  }
  #main #feature .featureList p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  #main .product {
    margin: 6rem 0;
  }
  #main .product#matless .product_keyvis .product_keyvis_txt {
    overflow-x: hidden;
  }
  #main .product#matless .product_keyvis .product_keyvis_txt h4 {
    clear: right;
    text-align: right;
    margin-left: 2rem;
  }
  #main .product#matless .product_keyvis .product_keyvis_txt p.en {
    text-align: right;
    margin-left: 0rem;
  }
  #main .product#seatc .product_keyvis .product_keyvis_txt p.border,
  #main .product#seatc .product_keyvis .product_keyvis_txt h4,
  #main .product#seatc .product_keyvis .product_keyvis_txt p.en {
    margin-left: 0;
  }
  #main .product .product_keyvis .product_keyvis_txt {
    width: 95%;
    top: 2vh;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo {
    margin-bottom: .2rem;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo img {
    width: 10vw;
  }
  #main .product .product_keyvis .product_keyvis_txt h2 {
    font-size: 6rem;
    margin: .2rem 0;
  }
  #main .product .product_keyvis .product_keyvis_txt h3 {
    font-size: 1.2rem;
    letter-spacing: 0.5rem;
    margin: .5rem 0 1.5rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h4 {
    margin-bottom: .7rem;
    letter-spacing: .5rem;
    font-size: 1.3rem;
    line-height: 1.6;
  }
  #main .product .product_keyvis .product_keyvis_txt p.en {
    width: 40vw;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  #main .product .product_features {
    padding-right: 0rem;
  }
  #main .product .product_features li {
    margin: 3rem 0;
    padding: .3rem 0 .3rem 1.8rem;
    border-left-width: 5px;
    border-left-style: solid;
  }
  #main .product .product_features li h5 {
    line-height: 1;
    font-size: 1.7rem;
  }
  #main .product .product_features li p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #main .product .product_slider {
    padding: 2rem 0;
  }
  #main .product .product_slider .owl-item .product_details {
    padding-left: 0rem;
    text-align: center;
  }
  #main .product .product_slider .owl-item .product_details p.num {
    font-size: 4.6rem;
    margin: 0;
  }
  #main .product .product_slider .owl-item .product_details p.num span {
    display: none;
  }
  #main .product .product_slider .owl-item .product_details p.en {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
  }
  #main .product .product_slider .owl-item .product_details h5 {
    font-weight: 500;
    font-size: 2.4rem;
    margin: .5rem 0 1.5rem;
  }
  #main .product .product_slider .owl-item .product_details p.desc {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: .2rem;
  }
  #main .product .product_slider .owl-item .product_details ul.tags {
    padding: 0;
    margin-bottom: 1.5rem;
    list-style: none;
  }
  #main .product .product_slider .owl-item .product_details ul.tags li {
    font-size: 1.2rem;
    line-height: 1;
    display: inline-block;
    margin-right: .2rem;
    padding: .2rem 1rem .3rem;
    border: 1px solid #fff;
    border-radius: 100px;
    font-weight: 500;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc {
    padding: 1.5rem 1rem 1rem;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element {
    display: block;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element div:first-child {
    width: auto;
    padding-right: 0;
  }
  #main .product .product_slider .owl-item .product_img_sm {
    padding: 2rem 0 0;
    text-align: center;
  }
  #main .product .product_slider .owl-item .product_img_sm img {
    width: 70%;
    margin: 0 auto;
  }
  #main .product .product_sub_feature {
    margin: 3.6rem 0;
  }
  #main .product .product_sub_feature h3 {
    font-size: 2.6rem;
    letter-spacing: .2rem;
  }
  #main .product .product_sub_feature p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #main .product .product_sub_feature.half {
    margin-top: 2.6rem;
  }
  #main .product .product_sub_feature.half:first-child {
    padding-right: 1rem;
  }
  #main .product .product_sub_feature.half:last-child {
    padding-left: 1rem;
  }
  #main .product .product_sub_feature.half h4 {
    font-size: 1.8rem;
  }
  #main .product .product_sub_feature.half h4 span.small {
    font-size: 1.2rem;
  }
  #main .product .product_sub_feature.half p {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  #main .product .product_sub_feature.half .product_sub_feature_img {
    margin: 2rem 0;
  }
  #main #others {
    padding: 4rem 0;
    letter-spacing: 0px;
  }
  #main #others h4 {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
  }
  #main #others h4 .small {
    font-size: 1.3rem;
  }
  #main #others .product_others h3 {
    font-size: 1.4rem;
  }
  #main #others .product_others p.en {
    font-size: .9rem;
    font-weight: 300;
  }
  #main #others .product_others div.img img {
    max-width: 85%;
  }
  #main #others .product_others p.desc {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  #main #others .buttons .btn {
    margin-bottom: 1.5rem;
  }
  #main #references {
    padding: 6rem 0 0;
  }
  #main #references .ttl h6 {
    margin-bottom: 4rem;
  }
  #main #references #references_content.owl-carousel .owl-nav button {
    width: 28px;
    line-height: 1.2;
  }
  #main #references #references_content.owl-carousel .owl-nav button.owl-prev {
    margin-left: -30px;
  }
  #main #references #references_content.owl-carousel .owl-nav button.owl-next {
    margin-right: -30px;
  }
  #main #references #references_content.owl-carousel .owl-dots {
    margin-top: 2.2rem;
  }
  #main #company {
    padding: 4rem 0 3rem;
  }
  #main #company #message h4 {
    letter-spacing: -1px;
    font-size: 4.8rem;
  }
  #main #company #message h5 {
    font-size: 1.5rem;
  }
  #main #company #message p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #main #company #outline {
    padding: 4rem 0;
  }
  #main #company #outline h6 {
    font-size: 2.7rem;
    letter-spacing: .2rem;
    margin-bottom: 2.5rem;
  }
  #main #company #outline h6:after {
    width: 20px;
  }
  #main #company #outline .outline_ttl,
  #main #company #outline .outline_body {
    padding: .1rem 0;
    font-size: 1.4rem;
  }
  #main #company #outline #gmap {
    height: 30vh;
  }
  #main #company #company_sub {
    margin: 2rem 0 6rem;
  }
  #main #company #company_sub #facebook {
    margin-bottom: 4rem;
  }
  #main #company #company_sub #history {
    padding: 1rem 2rem;
  }
  footer #everyday {
    padding: 6rem 0 0;
  }
  footer #everyday p {
    font-size: 2.6rem;
  }
  footer #everyday p.t2 {
    top: -4rem;
    left: 1rem;
  }
  footer #copyright {
    padding: 2rem 0;
  }
}

/* Responsive 767 ---------------------------------------- */
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
  nav.navbar-default {
    padding: 1rem 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  nav.navbar-default .brand {
    padding-left: 1rem;
  }
  nav.navbar-default .brand img {
    width: 100px;
  }
  nav.navbar-default li {
    text-align: center;
  }
  nav.navbar-default li a {
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
  }
  nav.navbar-default li.social {
    padding: 1.6rem 0;
    float: left;
    text-align: center;
    display: block;
    width: 33%;
  }
  nav.navbar-default li.social a i.fab {
    font-size: 3rem;
  }
  nav.navbar-default.navbar-shrink {
    padding: 1rem 0;
  }
  nav.navbar-default.navbar-shrink .brand img {
    padding-top: 1rem;
    width: 100px;
  }
  header {
    padding-top: 5rem;
  }
  header #keyvis_txt h3 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }
  header #keyvis_txt h2 {
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: .5rem;
  }
  #topics {
    margin: 3rem 0 1rem;
  }
  #topics .box {
    font-size: 1.3rem;
    padding: 1.4rem 1.8rem;
  }
  #main #feature h3 {
    line-height: 1.6;
    font-size: 1.7rem;
    letter-spacing: 0;
  }
  #main #feature .feature_lead_img {
    margin: 2rem 0rem 2.5rem;
  }
  #main #feature .feature_lead_img ul li:first-child {
    width: 50vw;
  }
  #main #feature .feature_lead_img ul li:last-child {
    width: 90vw;
  }
  #main #feature .featureList {
    position: relative;
  }
  #main #feature .featureList h5,
  #main #feature .featureList p {
    text-align: left;
    padding-right: 17vw;
  }
  #main #feature .featureList h5 {
    border-left: 4px solid #e799bd;
    font-size: 1.6rem;
    line-height: 1.5;
    padding: .2rem 0 .2rem .8rem;
    margin: .5rem 0 .6rem 0;
  }
  #main #feature .featureList p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  #main #feature .featureList .featureImg {
    position: absolute;
    top: -10px;
    right: 0;
  }
  #main #feature .featureList .featureImg img {
    width: 11vw;
  }
  #main .product {
    margin: 6rem 0;
  }
  #main .product#matless .product_keyvis_img img {
    left: 0;
  }
  #main .product#matless .product_ilst img {
    width: 50vw;
  }
  #main .product#matless #product_matless_table table tr th {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  #main .product#matless #product_matless_table table tr td {
    font-size: 1rem;
  }
  #main .product#seatc .product_keyvis .product_keyvis_img img {
    left: -10vw;
  }
  #main .product#seatc .product_ilst img {
    width: 25vw;
  }
  #main .product .product_keyvis .product_keyvis_img {
    width: 100%;
    overflow-x: hidden;
  }
  #main .product .product_keyvis .product_keyvis_img img {
    width: 110vw;
    max-width: 110vw;
    position: relative;
  }
  #main .product .product_keyvis .product_keyvis_txt {
    text-align: left !important;
    position: relative;
    top: 0 !important;
    left: 30px !important;
    right: 30px !important;
    width: 100%;
    padding: 0;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo {
    display: inline;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo img {
    height: 40px;
    width: auto;
    vertical-align: baseline;
  }
  #main .product .product_keyvis .product_keyvis_txt h2 {
    display: inline;
    font-size: 5.2rem;
  }
  #main .product .product_keyvis .product_keyvis_txt p.border {
    display: none;
  }
  #main .product .product_keyvis .product_keyvis_txt h3,
  #main .product .product_keyvis .product_keyvis_txt h4,
  #main .product .product_keyvis .product_keyvis_txt p.en {
    text-align: left !important;
    margin-left: 0 !important;
  }
  #main .product .product_keyvis .product_keyvis_txt h4 {
    font-size: 1.5rem;
  }
  #main .product .product_keyvis .product_keyvis_txt p.en {
    width: 100%;
  }
  #main .product ul.product_features {
    padding: 0;
  }
  #main .product ul.product_features li {
    border-left: none;
    padding: 0 1.4rem;
  }
  #main .product .product_ilst {
    margin-top: 0;
    text-align: center;
  }
  #main .product .product_slider {
    margin: 1rem 0;
  }
  #main .product .product_slider .owl-item .product_details p.num {
    font-size: 4rem;
  }
  #main .product .product_slider .owl-item .product_details p.en {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  #main .product .product_slider .owl-item .product_details h5 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: .5rem 0 .7rem;
  }
  #main .product .product_slider .owl-item .product_details p.desc {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  #main .product .product_slider .owl-item .product_details ul.tags li {
    font-size: 1rem;
    line-height: 1;
    margin-right: .1rem;
    padding: .2rem .6rem .3rem;
  }
  #main .product .product_slider .owl-item .product_details p.desc_sub {
    font-size: 1.1rem;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc {
    padding: 1.5rem 1rem 1rem;
    font-size: 1.2rem;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element {
    display: block;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element div {
    line-height: 1;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element div:first-child {
    padding-right: 0;
    font-weight: 700;
    margin: 1rem 0;
  }
  #main .product .product_slider .owl-item .product_details .sub_desc .sub_desc_element div p {
    margin: .4rem 0;
    line-height: 1.1;
  }
  #main .product .product_slider .owl-next,
  #main .product .product_slider .owl-prev {
    width: 32px;
    height: 32px;
  }
  #main .product .product_slider .owl-next span,
  #main .product .product_slider .owl-prev span {
    font-size: 1.4rem;
  }
  #main .product .product_slider .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 5px;
  }
  #main .product .product_sub_feature {
    margin: 2rem 0;
  }
  #main .product .product_sub_feature h3 {
    font-size: 1.8rem;
    letter-spacing: 0rem;
    margin-bottom: .1rem;
  }
  #main .product .product_sub_feature p {
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
  }
  #main .product .product_sub_feature.half:first-child {
    padding-right: 0rem;
  }
  #main .product .product_sub_feature.half:last-child {
    padding-left: 0rem;
  }
  #main .product .product_sub_feature.half h4 {
    font-size: 1.6rem;
  }
  #main .product .product_sub_feature.half h4 span.small {
    font-size: 1rem;
  }
  #main .product .product_sub_feature.half p {
    font-size: 1.2rem;
  }
  #main .product .product_sub_feature.half .product_sub_feature_img {
    margin: 2rem 0 1rem;
  }
  #main #others h4 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 3rem;
  }
  #main #others .product_others {
    clear: both;
    text-align: left;
  }
  #main #others .product_others div.img {
    width: 25vw;
    float: left;
    padding-right: 1.5rem;
  }
  #main #others .product_others div.img img {
    max-width: 100%;
  }
  #main #others .product_others h3 {
    font-size: 1.8rem;
    padding-top: 1rem;
    margin-bottom: .3rem;
  }
  #main #others .product_others p.en {
    margin-bottom: .3rem;
  }
  #main #others .product_others p.en:after {
    display: none;
  }
  #main #others .buttons {
    margin-top: 0;
  }
  #main #company {
    padding: 5rem 0 3rem;
  }
  #main #company #message h4 {
    letter-spacing: -1px;
    font-size: 4rem;
  }
  #main #company #message h5 {
    font-size: 1.3rem;
  }
  #main #company #message p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  #main #company #outline {
    padding: 4rem 0;
  }
  #main #company #outline h6 {
    font-size: 2.4rem;
    letter-spacing: .1rem;
    margin-bottom: 2.2rem;
  }
  #main #company #outline .outline_ttl,
  #main #company #outline .outline_body {
    text-align: left;
    padding: 0;
    font-size: 1.4rem;
  }
  #main #company #outline p.outline_ttl {
    margin-bottom: .1rem;
  }
  #main #company #company_sub {
    margin: 1rem 0 2rem;
  }
  #main #company #company_sub #facebook {
    margin-bottom: 2rem;
  }
  #main #company #company_sub #history {
    font-size: 1.2rem;
    padding: 1rem 3rem;
  }
  #main #company #company_sub #history .row div {
    line-height: 1.6;
    padding-left: 0;
  }
  #main #company #company_sub #history .row div:first-child {
    padding-left: 0;
  }
  #main #company #company_sub #history .row div:last-child {
    margin-bottom: 1rem;
  }
}

/* Responsive 600 ---------------------------------------- */
@media screen and (max-width: 600px) {
  #main #feature .featureList h5 {
    font-size: 1.5rem;
  }
  #main #feature .featureList p {
    font-size: 1.1rem;
  }
  #main #feature .featureList .featureImg img {
    width: 14vw;
  }
  #main #references {
    padding: 4rem 0 0;
  }
  #main #references .ttl h6 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  #main #references #references_content.owl-carousel div p {
    font-size: 1rem;
    margin: .1rem 0;
  }
  #main #company {
    padding: 3rem 0;
  }
  #main #company #message h4 {
    letter-spacing: -1px;
    font-size: 2.4rem;
  }
  #main #company #message h5 {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
  #main #company #message p {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  #main #company #outline {
    padding: 3rem 0;
  }
  #main #company #outline h6 {
    font-size: 2.2rem;
    letter-spacing: 0;
    margin-bottom: 2.2rem;
  }
  #main #company #outline h6:after {
    padding-bottom: 1.8rem;
  }
  #main #company #outline .outline_ttl,
  #main #company #outline .outline_body {
    font-size: 1.2rem;
  }
  #main #company #outline p.outline_ttl {
    margin-bottom: 0rem;
  }
  #main #company #outline p.outline_body {
    margin-bottom: .4rem;
  }
  #main #company #outline .gmap_btn a {
    font-size: 1.2rem;
  }
  #main #company #company_sub {
    margin: 0rem 0 1rem;
  }
  #main #company #company_sub #facebook {
    margin-bottom: 3rem;
  }
  #main #company #company_sub #history {
    font-size: 1.2rem;
    padding: 1rem 3rem;
  }
  #main #company #company_sub #history .row div {
    line-height: 1.6;
    padding-left: 0;
  }
  #main #company #company_sub #history .row div:first-child {
    padding-left: 0;
  }
  #main #company #company_sub #history .row div:last-child {
    margin-bottom: 1rem;
  }
  footer #everyday {
    padding: 4rem 0 0;
  }
  footer #everyday p {
    font-size: 1.7rem;
  }
  footer #everyday p.t2 {
    top: -3rem;
    left: .8rem;
  }
  footer #copyright {
    padding: 1rem 0;
  }
  footer #copyright p {
    font-size: .6rem;
  }
}

/* Responsive 480 ---------------------------------------- */
@media screen and (max-width: 480px) {
  .buttons .btn a {
    font-size: 1.5rem;
    padding: 1.6rem 0rem;
  }
  #loader {
    width: 60px;
    height: 80px;
    margin: 30px auto;
    margin-top: calc(100vh / 2 - 30px);
  }
  #loader .block {
    margin: 0 6px 6px 0;
    width: 8px;
    height: 8px;
    border-radius: 2px;
  }
  header {
    padding-top: 4.2rem;
  }
  nav.navbar-default {
    padding: .2rem 0;
  }
  nav.navbar-default .brand img {
    width: 90px;
  }
  nav.navbar-default.navbar-shrink {
    padding: .2rem 0;
  }
  nav.navbar-default.navbar-shrink .brand img {
    width: 90px;
  }
  #topics {
    margin: 2.2rem 0 .8rem;
  }
  #topics .box {
    padding: 1rem 1.5rem;
  }
  #main #feature h3 {
    line-height: 1.5;
    font-size: 1.6rem;
  }
  #main #feature .featureList h5 {
    font-size: 1.3rem;
  }
  #main #feature .featureList p {
    font-size: 1rem;
    margin-bottom: 1.6rem;
  }
  #main #feature .featureList .featureImg {
    right: 0;
  }
  #main #feature .featureList .featureImg img {
    width: 14vw;
  }
  #main .product {
    margin: 5rem 0 3rem;
  }
  #main .product#seatc .product_ilst {
    margin: 0 0 1rem 0;
  }
  #main .product .product_keyvis .product_keyvis_txt {
    padding: 0 2rem;
    left: 0 !important;
    right: 0 !important;
  }
  #main .product .product_keyvis .product_keyvis_txt p.logo img {
    height: 26px;
    width: auto;
    vertical-align: baseline;
  }
  #main .product .product_keyvis .product_keyvis_txt h2 {
    display: inline;
    font-size: 3.6rem;
  }
  #main .product .product_keyvis .product_keyvis_txt h4 {
    letter-spacing: 0;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  #main .product ul.product_features li {
    margin: 2rem 0;
    padding: 0 .5rem;
  }
  #main .product ul.product_features li h5 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: .2rem;
  }
  #main .product ul.product_features li p {
    font-size: 1.2rem;
  }
  #main #others {
    padding: 2rem 0;
  }
  #main #others h4 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  #main #others .product_others {
    margin: 1.6rem 0 2rem;
  }
  #main #others .product_others div.img {
    width: 25%;
    padding-right: 1rem;
  }
  #main #others .product_others div.img img {
    max-width: 100%;
  }
  #main #others .product_others h3 {
    font-size: 1.4rem;
    padding-top: 0rem;
    margin-bottom: .2rem;
  }
  #main #others .product_others p.en {
    margin-bottom: .2rem;
  }
  #main #others .product_others p.en:after {
    display: none;
  }
}

/* Responsive (height) 1100 ---------------------------------------- */
@media screen and (min-height: 1100px) {
  #keyvis_txt {
    top: 30vh;
  }
}
