@charset "utf-8";
/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  color: #000;
  margin: 0;
  padding: 0;
}
#wrapper {
  max-width: 1680px;
  margin: 0 auto;
}
.contents {
  margin: 0 auto;
}
.contents:after {
  content: "";
  display: block;
  clear: both;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
section {
  margin: 0 0 30px;
}
section:after {
  content: "";
  display: block;
  clear: both;
}
/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #f90;
  text-decoration: none;
}
a:visited {
  color: #f90;
  text-decoration: none;
}
a:hover {
  color: #f90;
  text-decoration: underline;
}
a:active {
  color: #f90;
  text-decoration: underline;
}
/*----------------------------------------------------
  hover50%
----------------------------------------------------*/
a:hover img.hover {
  opacity: 1;
  -webkit-animation: flash 1.5s;
  animation: flash 1.5s;
}
@-webkit-keyframes flash {
0% {
 opacity: .5;
}
100% {
 opacity: 1;
}
}
@keyframes flash {
0% {
 opacity: .4;
}
100% {
 opacity: 1;
}
}
/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
.header {
  margin: 20px 24px;
}
.header:after {
  content: "";
  display: block;
  clear: both;
}
.header .container {
  padding-left: 0;
  padding-right: 0;
}
.title-area {
  margin: 0 0 20px;
}
.title-area h1 {
  float: left;
  margin: 0 40px 20px 0;
}
.header-logo {
  float: right;
  margin: 0 0 20px 0;
  padding: 0;
}
@media (max-width: 991px) {
 .header-logo {
  margin: 0 0 20px 60px;
}
}
@media (max-width: 930px) {
.header-logo {
  float: left;
  margin: 0 60px 10px 0;
}
.header-logo img {
  margin: 0 auto;
  padding: 10px 0 0;
}
}
@media (max-width: 802px) {
.header-logo {
  margin: 0 0px 10px 0;
}
}
@media (max-width: 735px) {
.title-area h1 {
  margin: 0 60px 25px 0;
}
.header-logo {
  float: none;
  margin: 0 auto;
}
}
/*----------------------------------------------------
  グローバルナビゲーション
----------------------------------------------------*/
/* -- PC -- */
.inner {
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}
/* header */
#top-head {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  line-height: 1;
  z-index: 999;
}
#top-head a, #top-head {
  color: #333;
  text-decoration: none;
}
#global-nav {
  margin: -10px 0 0;
}
#global-nav ul {
  float: right;
  list-style: none;
  font-size: 14px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#global-nav ul li {
  float: left;
  border-left: 1px solid #ccc;
}
#global-nav ul li a {
  display: block;
  padding: 0 10px;
}
#global-nav ul li a:hover {
  display: block;
  background: #FC0;
}
#global-nav ul li:first-child {
  border-left: none;
}
/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 20px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #666;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}
@media (max-width: 930px) {
#global-nav {
  margin: -60px 0 0;
}
}
/* -- mobile --*/
@media screen and (max-width: 767px) {
#global-nav {
  margin: -10px 0 0;
}
.gnav-area .container {
  padding-left: 0;
  padding-right: 0;
}
#top-head, .inner {
  width: 100%;
  padding: 0;
}
#top-head {
  top: 0;
  position: absolute;
  margin-top: 0;
}
#mobile-head {
  background: #fff;
  width: 100%;
  position: relative;
}
#top-head .logo-area {
  position: absolute;
  left: 24px;
  top: 120px;
}
#global-nav {
  position: absolute;
  top: -500px;
  background: #333;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
#global-nav ul {
  float: none;
  list-style: none;
  position: static;
  right: 0;
  bottom: 0;
  font-size: 14px;
  border: none;
  padding: 0;
}
#global-nav ul li {
  float: none;
  position: static;
  border: none;
}
#global-nav ul li a {
  display: block;
}
#top-head #global-nav ul li a {
  width: 100%;
  display: block;
  color: #fff;
  padding: 18px 0;
}
#nav-toggle {
  display: block;
}
.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
.open #global-nav {
  /* #global-nav top + #mobile-head height */
  -moz-transform: translateY(556px);
  -webkit-transform: translateY(556px);
  transform: translateY(556px);
}
}
/*----------------------------------------------------
  共通レイアウト
----------------------------------------------------*/
p {
  margin: 0 0 1em;
  font-size: 1.6em;
  line-height: 1.6;
}
.br-sp {
  display: inline-block;
}
strong {
  color: #c00;
  font-weight: bold;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
 *zoom: 1;
}
/*----------------------------------------------------
  写真
----------------------------------------------------*/
.alignnone {
  margin: 5px 20px 10px 0;
}
.alignright {
  float: right;
  margin: 5px 0 0 10px;
}
.alignleft {
  float: left;
  margin: 5px 20px 0 0;
}
.aligncenter {
  display: block;
  margin: 5px auto 0 auto;
}
@media (max-width: 767px) {
.row::before, .row::after {
  content: "";
  display: inherit;
}
.alignright {
  float: none;
  display: block;
  margin: 5px auto 0 auto;
}
.alignleft {
  float: none;
  display: block;
  margin: 5px auto 0 auto;
}
.aligncenter {
  margin: 5px auto 0 auto;
}
}
/*----------------------------------------------------
  メインイメージ
----------------------------------------------------*/
.main-image {
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-bpx-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../images/header_photo_main.png) 70% 0 no-repeat;
  background-size: cover;
}
.main-image .row {
  max-width: 991px;
}
.main-copy {
  position: absolute;
  left: 50%;
  right: 50%;
  margin-top: 20px;
  margin-left: -90px;
}
.logo-area {
  max-width: 550px;
  margin: -50px 0 0;
}
.logo-area h1.logo {
  margin: 0 0 10px;
  padding: 0;
}
.logo-area h2 {
  margin: 0;
}
.logo-area .catchcopy {
  margin: -20px 0 0;
}
.logo-area .catchcopy img {
  z-index: 9999;
}
#cover {
  width: 100%;
  height: 100%;
  position: absolute;
  background: #fff;
  top: 0px;
  left: 0px;
  z-index: 10000;
}
#loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
@media (max-width: 991px) {
.logo-area {
  max-width: 100%;
  margin: -50px 0 0;
}
.logo-area .catchcopy {
  width: 370px;
}
}
@media (max-width: 930px) {
.logo-area {
  max-width: 100%;
  margin: -10px 0 0;
}
}
@media (max-width: 767px) {
.logo-area {
  margin: -10px 0 0;
}
.logo-area .catchcopy {
  width: 100%;
}
}
/*----------------------------------------------------
  メディマット
----------------------------------------------------*/
#medimatt {
  margin: 0 0 30px;
  padding: 20px 0 0;
  background: url(../images/medimatt_bg.jpg) center top repeat-x;
}
#medimatt .container {
  position: relative;
}
.text-title {
  margin: 0 0 20px;
  padding: 10px 0 8px;
  background: #37bc9b;
  color: #fff;
  font-size: 1.8em;
  font-weight: bold;
  line-height: 1.0;
  text-align: center;
  border-radius: 4px;
}
.medimatt-copy {
  margin: 0;
}
#medimatt .row {
  background: url(../images/medimatt_photo02.png) right bottom no-repeat;
  background-size: contain;
  padding: 0 0 80px;
}
.medimatt-pic {
  position: absolute;
  right: 24px;
  top: -160px;
}
#medimatt h4 {
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.6;
}
#medimatt h4 span.yellow {
  padding: 0 5px 0 0;
  color: #fce56b;
}
#medimatt h4 span.orange {
  padding: 0 5px 0 0;
  color: #fc9c42;
}
#medimatt p {
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.6;
  text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
}
@media (max-width: 991px) {
#medimatt .row {
 padding: 0 0 120px;
}
}
@media (max-width: 767px) {
#medimatt .row {
  background: url(../images/medimatt_photo01.png) right bottom no-repeat;
  background-size: contain;
  padding: 0 0 120px;
}
.medimatt-pic {
  position: none;
  width: 300px;
  top: -305px;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.text-title {
  margin: 0 0 280px;
}
}
/*----------------------------------------------------
  お問い合わせ
----------------------------------------------------*/
#contact img {
  margin: 0 auto 30px;
  text-align: center;
}
#contact-footer img {
  margin: 0 auto;
  text-align: center;
}
/*----------------------------------------------------
  5つの優れたポイント
----------------------------------------------------*/
#feature {
  margin: 0 0 30px;
}
.feature-area1 {
  background: url(../images/feature_bg01.jpg) left top no-repeat;
}
.feature-area2 {
  padding: 0 0 60px;
  background: url(../images/feature_bg02.jpg) right bottom no-repeat;
}
.point1,
.point2,
.point3,
.point4 {
  margin: 0 0 40px;
}
.feature-copy {
  padding: 30px 0 0;
  background: url(../images/feature_photo_medimatt.png) right 10px no-repeat;
  background-size: auto;
}
.feature-copy img.point-title {
  margin: 0 auto 10px;
}
#feature h2 {
  margin: 0 0 10px;
}
#feature .text-area {
  background: rgba(229,239,246,0.85);
  padding: 20px;
}
#feature .text-area p {
  margin: 0;
}
#feature .feature-area1 p {
  font-weight: bold;
  text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
}
#feature h4 {
  margin: 0 0 10px;
}
#feature ul {
  margin: 0 0 5px;
  padding: 0;
  list-style: none;
  font-size: 1.5em;
}
#feature li {
  margin: 0 0 5px;
  padding: 0 0 0 0.6em;
  text-indent: -0.6em;
}
.copy-area {
  padding: 20px;
	 display: flex;
  justify-content: center;
  align-items: center;
}
.point1 .copy-area {
  background: rgba(116,190,220,0.8);
}
.point2 .copy-area {
  position: relative;
  background: rgba(131,202,208,0.8);
}
.point2 .copy-area .new {
  position: absolute;
  top: 10px;
  right: 10px;
}
.point3 .copy-area {
  background: rgba(131,176,231,0.8);
}
.point4 .copy-area {
  background: rgba(143,146,210,0.8);
}
.point5 .copy-area {
  background: rgba(177,217,175,0.8);
}
/*----------------------------------------------------
  商品一覧
----------------------------------------------------*/
#products {
  margin: 0 0 30px;
  padding: 30px 0 0;
  background: url(../images/products_bg.jpg) left top repeat;
}
#products h2 {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid #37bc9b;
  font-size: 2.4em;
  line-height: 1.0;
  text-align: center;
}
#products .col-sm-6 {
  margin: 0 0 30px;
}
#products .product {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}
#products .product img {
  margin: 0 0 20px;
}
#products .product h3 {
  margin: 0 0 10px;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.0;
}
#products .product dl {
  border-top: 1px dotted #ccc;
}
#products .product dt {
  float: left;
  padding: 6px 0 2px 10px;
  font-size: 1.4em;
  line-height: 1.0;
}
#products .product dd {
  padding: 6px 0 2px 130px;
  border-bottom: 1px dotted #ccc;
  font-size: 1.4em;
  line-height: 1.0;
}
#products .product dd:after {
  content: "";
  display: block;
  clear: both;
}
/*----------------------------------------------------
  取扱い企業
----------------------------------------------------*/
#company {
  margin: 0 0 60px;
}
#company h2 {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 1px solid #37bc9b;
  font-size: 2.4em;
  line-height: 1.0;
  text-align: center;
}
#company p {
  margin: 0 0 20px;
  padding: 11px 20px 9px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.5em;
  line-height: 1.2;
}
/*----------------------------------------------------
  フッター
----------------------------------------------------*/
#footer-area {
  border-top: 10px solid #37bc9b;
}
.footer-inner {
  padding: 20px 0;
  text-align: center;
}
.footer-logo {
  margin: 10px 0;
}
.footer-logo:after {
  content: "";
  display: block;
  clear: both;
}
.footer-logo img.logo {
  margin: 0 auto 10px;
}
.tel-area {
  margin: 0 0 10px;
  padding: 10px;
  background: #37bc9b;
  border-radius: 4px;
}
.tel-area img {
  margin: 0 auto;
}
address {
  font-size: 1.6em;
  line-height: 1.5;
}
.copyright {
  margin: 10px auto 0;
  color: #666;
  font-size: 1.2em;
}
/*----------------------------------------------------
  ページトップ
----------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 10px;
  right: 20px;
  margin: 0;
  z-index: 99;
}
.pagetop a {
  display: block;
  width: 41px;
  height: 41px;
  background: url(../images/btn_pagetop.png) left top no-repeat;
  opacity: 0.8;
  text-decoration: none;
}
.pagetop a:hover {
  opacity: 1.0;
}