@charset "UTF-8";
@-webkit-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: .85;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: .85;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    display: none;
    opacity: .5;
  }
  1% {
    display: block;
    opacity: .5;
  }
  100% {
    display: block;
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    display: none;
    opacity: .5;
  }
  1% {
    display: block;
    opacity: .5;
  }
  100% {
    display: block;
    opacity: 0;
  }
}

/*!
 * baguetteBox.js
 * @author  feimosi
 * @version 1.11.1
 * @url https://github.com/feimosi/baguetteBox.js
 */
#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

#baguetteBox-overlay.visible {
  opacity: 1;
}

#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}

#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  white-space: normal;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: sans-serif;
}

#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, -webkit-transform .4s ease;
  transition: left .4s ease, transform .4s ease;
  transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight .4s ease-out;
  animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft .4s ease-out;
  animation: bounceFromLeft .4s ease-out;
}

@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}

@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}

@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color .4s ease;
  transition: background-color .4s ease;
}

.baguetteBox-button:focus, .baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
  right: 2%;
}

.baguetteBox-button#previous-button {
  left: 2%;
}

.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}

/*
    Preloader
    Borrowed from http://tobiasahlin.com/spinkit/
*/
.baguetteBox-spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.baguetteBox-double-bounce1,
.baguetteBox-double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.baguetteBox-double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

#baguetteBox-overlay .full-image img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}

/**
 * Swiper 3.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2017, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 10, 2017
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}

.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@font-face {
  font-family: "shimadzu_icon";
  src: url("../fonts/icons/shimadzu_icon.eot");
  src: url("../fonts/icons/shimadzu_icon.eot?#iefix") format("eot"), url("../fonts/icons/shimadzu_icon.woff2") format("woff2"), url("../fonts/icons/shimadzu_icon.woff") format("woff"), url("../fonts/icons/shimadzu_icon.ttf") format("truetype"), url("../fonts/icons/shimadzu_icon.svg#shimadzu_icon") format("svg");
}

.icon-sh-arrowBottom-small:before, .icon-arrowBottom-small:before, .icon-sh-arrowLeft-small:before, .icon-arrowLeft-small:before, .icon-sh-arrowRight-small:before, .icon-arrowRight-small:before, .icon-sh-arrowTop-small:before, .icon-arrowTop-small:before, .icon-sh-building:before, .icon-sh-close-button:before, .icon-close-button:before, .icon-sh-earth:before, .icon-earth:before, .icon-sh-enter:before, .icon-enter:before, .icon-sh-fa-globe:before, .icon-sh-fa-graduation-cap:before, .icon-sh-fa-plane:before, .icon-sh-fa-truck:before, .icon-sh-handshake-solid:before, .icon-sh-information:before, .icon-information:before, .icon-sh-message:before, .icon-message:before, .icon-sh-my-page:before, .icon-my-page:before, .icon-sh-new_window:before, .icon-newWindow:before, .icon-sh-share:before, .icon-share:before, .icon-sh-shimadzu-emblem:before, .icon-shimadzu-emblem:before, .icon-sh-tel:before, .icon-sh-wrench:before, .icon-sh-zoom-check:before, .icon-sh-zoom:before, .icon-zoom:before {
  font-family: "shimadzu_icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-sh-arrowBottom-small:before, .icon-arrowBottom-small:before {
  content: "";
}

.icon-sh-arrowLeft-small:before, .icon-arrowLeft-small:before {
  content: "";
}

.icon-sh-arrowRight-small:before, .icon-arrowRight-small:before {
  content: "";
}

.icon-sh-arrowTop-small:before, .icon-arrowTop-small:before {
  content: "";
}

.icon-sh-building:before {
  content: "";
}

.icon-sh-close-button:before, .icon-close-button:before {
  content: "";
}

.icon-sh-earth:before, .icon-earth:before {
  content: "";
}

.icon-sh-enter:before, .icon-enter:before {
  content: "";
}

.icon-sh-fa-globe:before {
  content: "";
}

.icon-sh-fa-graduation-cap:before {
  content: "";
}

.icon-sh-fa-plane:before {
  content: "";
}

.icon-sh-fa-truck:before {
  content: "";
}

.icon-sh-handshake-solid:before {
  content: "";
}

.icon-sh-information:before, .icon-information:before {
  content: "";
}

.icon-sh-message:before, .icon-message:before {
  content: "";
}

.icon-sh-my-page:before, .icon-my-page:before {
  content: "";
}

.icon-sh-new_window:before, .icon-newWindow:before {
  content: "";
}

.icon-sh-share:before, .icon-share:before {
  content: "";
}

.icon-sh-shimadzu-emblem:before, .icon-shimadzu-emblem:before {
  content: "";
}

.icon-sh-tel:before {
  content: "";
}

.icon-sh-wrench:before {
  content: "";
}

.icon-sh-zoom-check:before {
  content: "";
}

.icon-sh-zoom:before, .icon-zoom:before {
  content: "";
}

@font-face {
  font-family: 'Conv_CONDENSEicon';
  src: url("../fonts/icons/CONDENSEicon.eot");
  src: local("笘コ"), url("../fonts/icons/CONDENSEicon.woff") format("woff"), url("../fonts/icons/CONDENSEicon.ttf") format("truetype"), url("../fonts/icons/CONDENSEicon.svg") format("svg");
}

.sh-condense-icon-book:before,
.sh-condense-icon-quotation:before,
.sh-condense-icon-signin:before {
  line-height: 1;
  font-family: Conv_CONDENSEicon !important;
  font-style: normal;
  font-weight: normal !important;
}

.sh-condense-icon-book:before {
  content: "E";
}

.sh-condense-icon-quotation:before {
  content: "I";
}

.sh-condense-icon-signin:before {
  content: "G";
}

.icon-pdf:before {
  background-image: url("../images/common/icon_pdf.png");
  background-repeat: no-repeat;
  background-size: 14px 16px;
  content: "";
  display: inline-block;
  height: 16px;
  width: 14px;
}

html,
body {
  color: #464646;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

html .with_grayBackground,
body .with_grayBackground {
  color: #111111;
}

html {
  font-size: 62.5%;
}

@media screen and (min-width: 750px) {
  html {
    min-width: 1160px;
  }
}

body {
  padding-top: 68px;
  font-size: 14px;
}

body.is_mail {
  padding-top: 0;
}

@media screen and (min-width: 750px) {
  body {
    padding-top: 187px;
    font-size: 16px;
  }
  body.is_front {
    padding-top: 151px;
  }
  body.is_simple {
    padding-top: 88px;
  }
}

@media screen and (min-width: 750px) {
  p {
    line-height: 1.6;
  }
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  color: #004ecc;
  text-decoration: underline;
}

@media screen and (min-width: 750px) {
  a:hover {
    text-decoration: none;
  }
}

img {
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

.article a {
  color: inherit;
}

@media screen and (min-width: 750px) {
  .article a {
    -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  }
}

@media screen and (min-width: 750px) {
  .article a:hover {
    color: #7374f2;
    text-decoration: none;
  }
}

/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

fieldset {
  margin: 0px;
  padding: 0px;
  border: 0px currentColor;
  -o-border-image: none;
     border-image: none;
  line-height: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  font-size-adjust: inherit;
  font-stretch: inherit;
}

.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.article {
  padding-top: 25px;
  padding-bottom: 45px;
}

@media screen and (min-width: 750px) {
  .article {
    position: relative;
  }
}

.breadcrumb {
  display: none;
}

@media screen and (min-width: 750px) {
  .breadcrumb {
    background-color: #efefef;
    border-bottom: 1px solid #d8d8d8;
    display: block;
    position: relative;
  }
  .breadcrumb:before {
    background-color: #d8d8d8;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin-right: 520px;
    position: absolute;
    right: 50%;
    top: 0;
  }
  .breadcrumb-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    width: 1040px;
  }
  .breadcrumb-list-item {
    height: 34px;
    line-height: 34px;
  }
  .breadcrumb-list-item > a,
  .breadcrumb-list-item > span {
    color: inherit;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 0 24px 0 34px;
    position: relative;
    text-decoration: none;
  }
  .breadcrumb-list-item > a:before, .breadcrumb-list-item > a:after {
    content: "";
    position: absolute;
    top: -1px;
  }
  .breadcrumb-list-item > a:before {
    display: inline-block;
    height: 36px;
    width: 17px;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #d8d8d8)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #d8d8d8)) no-repeat bottom right/100% 50%;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #d8d8d8 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #d8d8d8 50.5%) no-repeat bottom right/100% 50%;
    right: -18px;
  }
  .breadcrumb-list-item > a:after {
    display: inline-block;
    height: 36px;
    width: 17px;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #efefef)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #efefef)) no-repeat bottom right/100% 50%;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #efefef 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #efefef 50.5%) no-repeat bottom right/100% 50%;
    right: -16px;
  }
  .breadcrumb-list-item > a:hover {
    text-decoration: underline;
  }
  .breadcrumb-list-item:first-child > a {
    background-color: #d8d8d8;
    padding-left: 0;
    padding-right: 22px;
  }
  .breadcrumb-list-item:first-child > a:before {
    display: none;
  }
  .breadcrumb-list-item:first-child > a:after {
    display: inline-block;
    height: 34px;
    width: 17px;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #d8d8d8)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #d8d8d8)) no-repeat bottom right/100% 50%;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #d8d8d8 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #d8d8d8 50.5%) no-repeat bottom right/100% 50%;
    content: "";
    position: absolute;
    top: 0;
    right: -17px;
  }
  .breadcrumb-list-item:last-child {
    overflow: hidden;
  }
  .breadcrumb-list-item-text {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
  }
  .breadcrumb-list-item-arrow {
    margin-right: 10px;
  }
  .breadcrumb-list-item-arrow:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 10px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 10px;
    border-right: solid 2px #7374f2;
    border-top: solid 2px #7374f2;
    transform: rotate(45deg);
  }
  .breadcrumb .globalNav-list_isChild {
    top: 34px;
  }
  .breadcrumb .globalNav-list_isChild.is_active {
    background-color: rgba(220, 220, 220, 0.9);
  }
  .breadcrumb .globalNav-list-item_isChild a {
    color: #464646;
    text-decoration: none;
  }
}

@media screen and (min-width: 750px) {
  .container {
    margin: 0 auto;
    width: 1040px;
  }
}

@media screen and (min-width: 750px) {
  .container.is_narrow {
    width: 670px;
  }
}

@media screen and (min-width: 750px) {
  .is_inner-slider .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}

@media screen and (min-width: 750px) {
  .is_inner-slider .container:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 100%;
    left: -1040px;
    position: absolute;
    top: 0;
    width: 1040px;
    z-index: 10;
  }
}

@media screen and (min-width: 750px) {
  .is_inner-slider .heading_level2,
  .is_inner-slider .heading_noMarker {
    background-color: #fff;
    margin-top: 0;
    padding-right: 45px;
    width: 370px;
    z-index: 10;
  }
}

@media screen and (min-width: 750px) {
  .content.is_narrow {
    margin: 0 auto;
    width: 665px;
  }
}

@media screen and (min-width: 750px) {
  .content.is_narrow.with_marginBottom {
    margin-bottom: 70px;
  }
}

.feature {
  background-color: #efefef;
  margin-bottom: 60px;
  position: relative;
}

@media screen and (min-width: 750px) {
  .feature {
    background-color: transparent;
    margin-top: 60px;
  }
}

.feature-slide {
  margin: 0 34px;
  overflow-x: hidden;
  padding: 30px 0;
}

@media screen and (min-width: 750px) {
  .feature-slide {
    padding: 0;
  }
}

.feature-slide-item {
  width: 48%;
  margin-right: 2%;
}

.feature-slide-item:last-child {
  margin-right: 0;
}

@media screen and (min-width: 750px) {
  .feature-slide-item {
    width: 23%;
    margin-right: 3%;
  }
  .feature-slide-item:last-child {
    margin-right: 0;
  }
}

.feature-slide-image {
  background-color: #fff;
  border: 1px solid #b9b9b9;
  display: block;
  padding: 5px;
}

@media screen and (min-width: 750px) {
  .feature-slide-image {
    padding: 10px;
  }
}

.feature-slide-text {
  display: block;
  margin-top: 5px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .feature-slide-text {
    margin-top: 20px;
  }
}

.feature-slide-nav {
  position: absolute;
  top: 30%;
  z-index: 1;
}

.feature-slide-nav.is_previous {
  left: 10px;
}

@media screen and (min-width: 750px) {
  .feature-slide-nav.is_previous {
    left: -30px;
  }
}

.feature-slide-nav.is_next {
  right: 10px;
}

@media screen and (min-width: 750px) {
  .feature-slide-nav.is_next {
    right: -30px;
  }
}

.feature-slide.for_pc {
  display: none;
}

@media screen and (min-width: 750px) {
  .feature-slide.for_pc {
    display: block;
  }
}

@media screen and (min-width: 750px) {
  .feature-slide.for_mobile {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .top .feature {
    margin-top: 90px;
  }
}

.footer {
  border-top: 5px solid #ababab;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (min-width: 750px) {
  .footer {
    background-color: #efefef;
    margin-top: 110px;
    padding-bottom: 9px;
    padding-top: 5px;
  }
}

.footer:before {
  background-color: #ff0000;
  content: "";
  display: inline-block;
  height: 5px;
  left: 0;
  position: absolute;
  top: -5px;
  width: 30px;
}

@media screen and (min-width: 750px) {
  .footer .container {
    position: relative;
  }
}

.footer-link {
  margin-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .footer-link {
    margin-bottom: 0;
  }
}

.footer-link-list {
  margin: 0;
  padding: 0;
}

.footer-link-list-item {
  background-color: #d8d8d8;
  border-bottom: 1px solid #ababab;
}

@media screen and (min-width: 750px) {
  .footer-link-list-item {
    background-color: transparent;
    border-bottom: none;
    display: inline-block;
  }
}

.footer-link-list-item-link {
  color: inherit;
  display: block;
  padding: 25px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
}

.footer-link-list-item-link:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  border-right: solid 1px #7374f2;
  border-top: solid 1px #7374f2;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .footer-link-list-item-link {
    border-right: 1px solid #080808;
    color: #004ecc;
    display: inline-block;
    line-height: 1;
    padding: 0 15px;
    font-size: 13px;
  }
}

@media screen and (min-width: 750px) {
  .footer-link-list-item-link:hover {
    text-decoration: underline;
  }
}

.footer-link-list-item-link:before {
  position: absolute;
  right: 20px;
  top: 45%;
}

@media screen and (min-width: 750px) {
  .footer-link-list-item-link:before {
    display: none;
  }
}

@media screen and (min-width: 750px) {
  .footer-link-list-item:first-child .footer-link-list-item-link {
    border-left: 1px solid #080808;
  }
}

.footer-link-sns {
  margin: 0;
  padding: 25px 20px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .footer-link-sns {
    padding: 0;
    position: absolute;
    right: 0;
    top: -55px;
  }
}

.footer-link-sns-header, .footer-link-sns-item {
  display: inline-block;
}

.footer-link-sns-header {
  font-size: 12px;
  font-weight: 700;
}

@media screen and (min-width: 750px) {
  .footer-link-sns-header {
    font-size: 13px;
  }
}

.footer-link-sns-header .icon {
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.footer-link-sns-item {
  margin-left: 10px;
}

.footer-link-sns-item.is_facebook img, .footer-link-sns-item.is_linkedin img, .footer-link-sns-item.is_youtube img {
  height: 37px;
  width: auto;
}

@media screen and (min-width: 750px) {
  .footer-link-sns-item.is_facebook, .footer-link-sns-item.is_linkedin {
    width: 37px;
  }
}

@media screen and (min-width: 750px) {
  .footer-link-sns-item.is_youtube {
    width: 52px;
  }
}

.footer-copyright {
  margin-bottom: 25px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .footer-copyright {
    float: right;
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}

.footer-copyright img {
  height: auto;
  width: 280px;
}

@media screen and (min-width: 750px) {
  .footer-copyright img {
    width: 383px;
  }
}

.footer-pageTop {
  text-align: center;
}

@media screen and (min-width: 750px) {
  .footer-pageTop {
    display: none;
  }
}

.footer-pageTop-button {
  display: block;
}

.footer-pageTop-button:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 22px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 22px;
  border-right: solid 1px #080808;
  border-top: solid 1px #080808;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.footer-exemption-clause {
  font-size: 12px;
  margin-left: 20px;
  position: absolute;
  top: -30px;
}

@media screen and (min-width: 750px) {
  .footer-exemption-clause {
    margin-left: 0px;
  }
}

.globalNav_mobile {
  background-color: #080808;
  display: block;
  height: 100%;
  overflow-y: hidden;
  position: fixed;
  top: -100%;
  -webkit-transition: .4s;
  transition: .4s;
  width: 100%;
  z-index: 900;
}

@media screen and (min-width: 750px) {
  .globalNav_mobile {
    display: none;
  }
}

.globalNav_mobile.is_active {
  top: 68px;
  overflow-y: scroll;
}

.globalNav_mobile-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 10px;
}

.globalNav_mobile-links-item {
  width: 50%;
  text-align: center;
}

.globalNav_mobile-links-item a {
  color: #fff;
  display: block;
  font-size: 10px;
  padding: 10px;
  text-decoration: none;
  border-right: 1px solid #3c3c3c;
}

.globalNav_mobile-links-item:last-child a {
  border-right: none;
}

.globalNav_mobile-links-item .icon {
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}

.globalNav_mobile-form {
  padding: 0 10px 15px;
  position: relative;
}

.globalNav_mobile-form-inputText {
  background-color: #fff;
  padding: 15px 10px;
  width: 100%;
}

.globalNav_mobile-form-inputText:placeholder-shown {
  color: #ababab;
}

.globalNav_mobile-form-inputText::-webkit-input-placeholder {
  color: #ababab;
}

.globalNav_mobile-form-inputText:-moz-placeholder {
  color: #ababab;
  opacity: 1;
}

.globalNav_mobile-form-inputText::-moz-placeholder {
  color: #ababab;
  opacity: 1;
}

.globalNav_mobile-form-inputText:-ms-input-placeholder {
  color: #ababab;
}

.globalNav_mobile-form-btn {
  font-size: 20px;
  position: absolute;
  right: 15px;
  top: 14px;
}

.globalNav_mobile-list {
  margin: 0;
  padding: 0;
  height: 100%;
}

.globalNav_mobile-list-item {
  border-top: 1px solid #3c3c3c;
  text-align: center;
}

.globalNav_mobile-list-item:last-child {
  border-bottom: 1px solid #3c3c3c;
}

.globalNav_mobile-list-item a {
  display: block;
  padding: 20px 10px;
  text-decoration: none;
  color: #fff;
}

.globalNav {
  display: none;
  position: relative;
}

@media screen and (min-width: 750px) {
  .globalNav {
    display: block;
    border-bottom: 1px solid #d8d8d8;
  }
}

@media screen and (min-width: 750px) {
  .globalNav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .globalNav-list_isChild {
    background: rgba(50, 50, 50, 0);
    height: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 100%;
    top: 64px;
    -webkit-transition: background 1s ease, opacity 1s ease, height .5s ease, overflow 1s ease;
    transition: background 1s ease, opacity 1s ease, height .5s ease, overflow 1s ease;
    z-index: 99;
  }
}

.globalNav-list_isChild.is_active {
  background: rgba(50, 50, 50, 0.7);
  height: 300px;
  opacity: 1;
  overflow: visible;
}

@media screen and (min-width: 750px) {
  .globalNav-list-inner_isChild {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
    padding: 25px 0;
    width: 1040px;
  }
}

.globalNav-list-content_isChild {
  margin-right: 25px;
}

@media screen and (min-width: 750px) {
  .globalNav-list-content_isChild:nth-child(3) {
    margin-right: 0;
  }
}

@media screen and (min-width: 750px) {
  .globalNav-list-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

@media screen and (min-width: 750px) {
  .globalNav-list-item a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: inherit;
    display: block;
    font-size: 14px;
    padding: 22px 5px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: none;
    transition: none;
  }
}

@media screen and (min-width: 750px) {
  .globalNav-list-item a:hover, .globalNav-list-item a.is_current, .globalNav-list-item a.is_active {
    position: relative;
  }
  .globalNav-list-item a:hover:after, .globalNav-list-item a.is_current:after, .globalNav-list-item a.is_active:after {
    background-color: #7374f2;
    bottom: -1px;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    width: 100%;
  }
}

.globalNav-list-item-arrow {
  margin-right: 10px;
}

.globalNav-list-item-arrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-right: solid 2px #7374f2;
  border-top: solid 2px #7374f2;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .globalNav-list-item_isChild a {
    font-size: 16px;
    font-weight: 800;
    padding: 7px 15px 8px 5px;
    text-align: left;
  }
}

.globalNav-list-item_isChild a:hover {
  background-color: #7374f2;
  border-bottom: none;
  color: #fff;
  padding-bottom: 8px;
  margin-bottom: 0;
}

.globalNav-list-item_isChild a:hover:after {
  display: none;
}

.globalNav-list-item_isChild a:hover .globalNav-list-item-arrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  transform: rotate(45deg);
}

.globalNav {
  background-color: #fff;
}

.globalNav-list_isChild.with_image .globalNav-list-content_isChild {
  margin-right: 0.5%;
  width: 16.2%;
  margin-bottom: 10px;
}

.globalNav-list_isChild.with_image .globalNav-list-content_isChild:nth-last-child(3), .globalNav-list_isChild.with_image .globalNav-list-content_isChild:nth-last-child(2), .globalNav-list_isChild.with_image .globalNav-list-content_isChild:nth-last-child(1), .globalNav-list_isChild.with_image .globalNav-list-content_isChild:last-child {
  margin-bottom: 0;
}

.globalNav-list_isChild.with_image .globalNav-list-content_isChild:nth-child(6n) {
  margin-right: 0;
}

.globalNav-list_isChild.with_image .globalNav-list-item_isChild a {
  padding-left: 28px;
  text-indent: -21px;
}

.globalNav-list_isChild.with_image .globalNav-list-item-image_isChild a {
  margin-bottom: 10px;
  padding: 0;
  text-indent: 0;
  text-align: center;
}

.globalNav-list_isChild.with_image .globalNav-list-item-image_isChild a:hover {
  background-color: transparent;
  padding-bottom: 0;
}

.globalNav-list_isChild.with_image .globalNav-list-item-image_isChild a img {
  width: 70%;
}

.is_shrink .globalNav {
  display: none;
}

.header {
  background-color: #fff;
  border-top: 3px solid #ababab;
  height: 68px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

@media screen and (min-width: 750px) {
  .header {
    border-bottom: 1px solid #d8d8d8;
    border-top: 5px solid #ababab;
    height: 88px;
    position: relative;
  }
}

.header:before {
  background-color: #ff0000;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: -3px;
  width: 20px;
}

@media screen and (min-width: 750px) {
  .header:before {
    height: 5px;
    top: -5px;
    width: 30px;
  }
}

.header-logo {
  padding: 17px 0 0 17px;
}

@media screen and (min-width: 750px) {
  .header-logo {
    padding: 21px 0 0 30px;
  }
}

.header-logo-image.forMobile {
  height: auto;
  width: 140px;
}

@media screen and (min-width: 750px) {
  .header-logo-image.forMobile {
    display: none;
  }
}

.header-logo-image.forPc {
  display: none;
  height: auto;
  width: 172px;
}

@media screen and (min-width: 750px) {
  .header-logo-image.forPc {
    display: inline;
  }
}

.header-copy-image.forPc {
  display: none;
}

@media screen and (min-width: 750px) {
  .header-copy-image.forPc {
    display: inline-block;
    margin-left: 27px;
    width: 200px;
  }
  .header-copy-image.forPc.at_shrinked {
    display: none;
  }
}

.header-utility {
  display: none;
}

@media screen and (min-width: 750px) {
  .header-utility {
    display: block;
    float: right;
  }
}

.header-link {
  display: none;
}

@media screen and (min-width: 750px) {
  .header-link {
    display: block;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0 0 6px;
    padding: 5px 0 0;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list-item {
    font-family: "Hiragino Kaku Gothic ProN", メイリオ, sans-serif;
    margin-left: 20px;
  }
}

.header-link-list-item.is_contact {
  position: relative;
  top: -2px;
}

.header-link-list-item.is_mypage {
  position: relative;
  top: -2px;
}

.header-link-list-item.is_memberSiteLink {
  position: relative;
  top: -2px;
}

@media screen and (min-width: 750px) {
  .header-link-list-item a {
    color: inherit;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
  }
  .header-link-list-item a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list-item .icon {
    margin-right: 6px;
    position: relative;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list-item .icon.icon-shimadzu-emblem {
    top: 3px;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list-item .icon.icon-earth {
    font-size: 17px;
    top: 2px;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list-item .icon.icon-message {
    font-size: 18px;
    top: 3px;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list-item .icon.icon-my-page {
    font-size: 18px;
    top: 4px;
  }
}

@media screen and (min-width: 750px) {
  .header-link-list-item .icon.icon-enter {
    font-size: 18px;
    top: 5.5px;
  }
}

.header-form {
  display: none;
}

@media screen and (min-width: 750px) {
  .header-form {
    display: inline-block;
    overflow: hidden;
    position: relative;
  }
}

@media screen and (min-width: 750px) {
  .header-utility .header-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (min-width: 750px) {
  .header-form-inputText {
    border: 1px solid #080808;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 14px;
    line-height: 1.2;
    padding: 8px;
    width: 400px;
    height: 34px;
  }
  .header-form-inputText:placeholder-shown {
    color: #ababab;
  }
  .header-form-inputText::-webkit-input-placeholder {
    color: #ababab;
  }
  .header-form-inputText:-moz-placeholder {
    color: #ababab;
    opacity: 1;
  }
  .header-form-inputText::-moz-placeholder {
    color: #ababab;
    opacity: 1;
  }
  .header-form-inputText:-ms-input-placeholder {
    color: #ababab;
  }
}

@media screen and (min-width: 750px) {
  .header-form-btn {
    -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    background-color: #080808;
    cursor: pointer;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    height: 34px;
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    vertical-align: middle;
    width: 34px;
  }
  .header-form-btn:hover {
    background-color: #7374f2;
  }
}

@media screen and (min-width: 750px) {
  .header-form-btn .icon {
    position: relative;
    top: 2px;
  }
}

.header-menu, .header-menu-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header-menu {
  height: 26px;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .header-menu {
    display: none;
  }
}

.header-menu-item {
  background-color: #080808;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.header-menu-item:nth-of-type(1) {
  top: 0;
}

.header-menu-item:nth-of-type(2) {
  top: 12px;
}

.header-menu-item:nth-of-type(3) {
  bottom: 1px;
}

.header-menu.is_active .header-menu-item {
  height: 2.5px;
}

.header-menu.is_active .header-menu-item:nth-of-type(1) {
  -webkit-transform: translateY(11.5px) rotate(-45deg);
          transform: translateY(11.5px) rotate(-45deg);
}

.header-menu.is_active .header-menu-item:nth-of-type(2) {
  opacity: 0;
}

.header-menu.is_active .header-menu-item:nth-of-type(3) {
  -webkit-transform: translateY(-11.5px) rotate(45deg);
          transform: translateY(-11.5px) rotate(45deg);
}

.header-menu-text {
  bottom: -20px;
  color: #464646;
  font-size: 12px;
  left: -1px;
  position: absolute;
  right: 0;
  text-decoration: none;
}

.header-spIcon {
  display: block;
}

@media screen and (min-width: 750px) {
  .header-spIcon {
    display: none;
  }
}

.header-spIcon-mypage, .header-spIcon-memberSiteLink {
  text-decoration: none;
  position: absolute;
  top: 18px;
  right: 80px;
}

.header-spIcon-mypage > .icon-my-page,
.header-spIcon-mypage .icon-enter, .header-spIcon-memberSiteLink > .icon-my-page,
.header-spIcon-memberSiteLink .icon-enter {
  font-size: 25px;
  color: #080808;
}

@media screen and (min-width: 750px) {
  .is_shrink .header {
    height: 74px;
  }
  .is_shrink .header-utility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 17px 0 0;
  }
  .is_shrink .header-link {
    margin-right: 30px;
  }
  .is_shrink .header-logo {
    padding-top: 20px;
  }
  .is_shrink .header-form {
    width: 212px;
  }
}

@media screen and (min-width: 750px) {
  .header-logo-image.forPc.at_shrinked {
    display: none;
  }
  .is_shrink .header-logo-image.forPc.at_normal {
    display: none;
  }
  .is_shrink .header-logo-image.forPc.at_shrinked {
    display: inline;
  }
}

@media screen and (min-width: 750px) {
  .header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
}

.mainVisual-image {
  display: block;
  height: auto;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .mainVisual .is_mobile {
    display: none;
  }
}

.mainVisual .is_pc {
  display: none;
}

@media screen and (min-width: 750px) {
  .mainVisual .is_pc {
    display: inline;
  }
}

@media screen and (min-width: 750px) {
  .news .verticalColumn-item {
    width: 228px;
  }
}

@media screen and (min-width: 750px) {
  .products {
    position: relative;
  }
}

.products-slide {
  border-top: 1px solid #b9b9b9;
  overflow-x: hidden;
  position: relative;
}

@media screen and (min-width: 750px) {
  .products-slide {
    position: static;
  }
}

@media screen and (min-width: 750px) {
  .products-slide-item {
    width: 346px;
  }
}

.products-slide-image {
  border-right: 1px solid #b9b9b9;
  display: block;
}

.products-slide-btn.btn.is_primary {
  border-right: 1px solid #fff;
  line-height: 1.5;
  min-width: auto;
  width: 100%;
  padding: 5px 30px;
}

@media screen and (min-width: 750px) {
  .products-slide-btn.btn.is_primary {
    padding: 13px 40px;
  }
}

@media screen and (min-width: 750px) {
  .products-slide-nav {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 32%;
    width: 1100px;
  }
}

.products-slide-nav-item {
  position: absolute;
  top: 40%;
  z-index: 1;
}

.products-slide-nav-item.is_previous {
  left: 0;
}

.products-slide-nav-item.is_next {
  right: 0;
}

.section {
  padding: 20px 10px 25px;
}

@media screen and (min-width: 750px) {
  .section {
    padding: 60px 0 0;
  }
}

.section:first-child {
  padding-top: 0;
}

@media screen and (min-width: 750px) {
  .section:last-of-type {
    margin-bottom: 40px;
  }
}

.section:last-child {
  padding-bottom: 0;
}

.block {
  display: block;
  padding: 12px;
}

.block p {
  margin-top: 0;
}

.block p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .block {
    padding: 23px 20px;
  }
}

.block.with_imageNote {
  border: 1px solid #d8d8d8;
  margin-bottom: 30px;
  padding: 14px;
}

@media screen and (min-width: 750px) {
  .block.with_imageNote {
    margin-bottom: 60px;
    padding: 39px 37px;
    overflow: auto;
  }
}

.block.with_imageNote .block-title {
  margin: 0;
  width: 52%;
}

@media screen and (min-width: 750px) {
  .block.with_imageNote .block-title,
  .block.with_imageNote p {
    width: 590px;
  }
}

.block.with_imageNote .block-image {
  width: 43%;
  height: auto;
  float: right;
  margin-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .block.with_imageNote .block-image {
    width: 320px;
  }
}

.block.with_imageNote p {
  margin-top: 10px;
  clear: right;
}

@media screen and (min-width: 750px) {
  .block.with_imageNote p {
    clear: none;
    margin-top: 20px;
  }
}

.block.for_widePadding {
  padding: 5px 10px 15px;
}

@media screen and (min-width: 750px) {
  .block.for_widePadding {
    padding: 10px 40px;
  }
}

.block.with_border {
  border: 1px solid #d8d8d8;
}

.block.with_frame {
  padding: 8px;
}

.block.with_grayBackground {
  background-color: #efefef;
  padding: 15px;
}

@media screen and (min-width: 750px) {
  .block.with_grayBackground {
    padding: 25px 30px;
  }
}

.block.with_grayBackground.is_noBorder {
  border: none;
}

@media screen and (min-width: 750px) {
  .block.with_grayBackground.form {
    border: 2px solid #d8d8d8;
    padding: 40px 50px;
  }
}

.block.with_grayBackground .heading_main {
  font-size: 18px;
}

@media screen and (min-width: 750px) {
  .block.with_grayBackground .heading_main {
    font-size: 24px;
  }
}

.block.with_grayBackground.for_widePadding {
  padding-bottom: 30px;
}

@media screen and (min-width: 750px) {
  .block.with_grayBackground.for_widePadding {
    padding: 50px;
  }
}

.block.for_information {
  padding-top: 30px;
}

.block.for_information .heading_level3 {
  margin-bottom: 25px;
}

@media screen and (min-width: 750px) {
  .adobeReader {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .adobeReader-text {
    margin-bottom: 0;
  }
  .adobeReader-image {
    margin-right: 30px;
  }
}

.anchorLink {
  height: 0;
  margin-top: -68px;
  padding-top: 68px;
}

@media screen and (min-width: 750px) {
  .anchorLink {
    margin-top: -108px;
    padding-top: 108px;
  }
}

@media screen and (min-width: 750px) {
  .anchorLink.for_highHeader {
    margin-top: -185px;
    padding-top: 185px;
  }
}

.btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  font-size: 14px;
  padding: 15px 10px;
  text-align: center;
  text-decoration: none;
  word-break: break-all;
}

@media screen and (min-width: 750px) {
  .btn {
    -webkit-transition: color 0.7s ease, background 0.7s ease, opacity 0.7s ease;
    transition: color 0.7s ease, background 0.7s ease, opacity 0.7s ease;
    display: inline-block;
    font-size: 18px;
  }
}

.btn:hover {
  text-decoration: none;
}

.btn.is_primary {
  background-color: #080808;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  min-width: 190px;
  padding: 10px 30px;
  position: relative;
}

@media screen and (min-width: 750px) {
  .btn.is_primary {
    min-width: 210px;
    padding: 5px 40px;
  }
}

@media screen and (min-width: 750px) {
  .btn.is_primary:hover {
    background-color: #7374f2;
    color: #fff;
  }
}

.btn.is_primary.with_rightArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  border-right: solid 1px #7374f2;
  border-top: solid 1px #7374f2;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .btn.is_primary.with_rightArrow:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-right: solid 1px #7374f2;
    border-top: solid 1px #7374f2;
    transform: rotate(45deg);
  }
}

.btn.is_primary.with_rightArrow:before {
  position: absolute;
  top: 40%;
  right: 10px;
}

@media screen and (min-width: 750px) {
  .btn.is_primary.with_rightArrow:hover:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-right: solid 1px #fff;
    border-top: solid 1px #fff;
    transform: rotate(45deg);
  }
}

.btn.is_primary.with_rightArrow:hover:before {
  position: absolute;
  top: 40%;
  right: 10px;
}

.btn.is_primary.with_leftArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-bottom: solid 1px #7374f2;
  border-left: solid 1px #7374f2;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .btn.is_primary.with_leftArrow:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-bottom: solid 1px #7374f2;
    border-left: solid 1px #7374f2;
    transform: rotate(45deg);
  }
}

.btn.is_primary.with_leftArrow:before {
  position: absolute;
  top: 40%;
  left: 10px;
}

@media screen and (min-width: 750px) {
  .btn.is_primary.with_leftArrow:hover:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
    transform: rotate(45deg);
  }
}

.btn.is_primary.with_leftArrow:hover:before {
  position: absolute;
  top: 40%;
  left: 10px;
}

.btn.is_secondary, .btn.is_default {
  border: 1px solid #b9b9b9;
  position: relative;
}

.btn.is_secondary {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  min-width: 160px;
  padding: 10px 35px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .btn.is_secondary {
    min-width: 212px;
    padding: 6px 35px;
  }
}

.btn.is_secondary:before {
  top: 38%;
}

.btn.is_secondary.with_rightArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-right: solid 1px #7374f2;
  border-top: solid 1px #7374f2;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .btn.is_secondary.with_rightArrow:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-right: solid 1px #7374f2;
    border-top: solid 1px #7374f2;
    transform: rotate(45deg);
  }
}

.btn.is_secondary.with_rightArrow:before {
  position: absolute;
  right: 10px;
}

.btn.is_secondary.with_leftArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-bottom: solid 1px #7374f2;
  border-left: solid 1px #7374f2;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .btn.is_secondary.with_leftArrow:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-bottom: solid 1px #7374f2;
    border-left: solid 1px #7374f2;
    transform: rotate(45deg);
  }
}

.btn.is_secondary.with_leftArrow:before {
  position: absolute;
  left: 10px;
}

.btn.is_default {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 20px;
}

@media screen and (min-width: 750px) {
  .btn.is_default {
    font-size: 18px;
    min-width: 245px;
    padding: 30px;
  }
}

.btn.is_default.with_rightArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  border-right: solid 1px #464646;
  border-top: solid 1px #464646;
  transform: rotate(45deg);
}

.btn.is_default.with_rightArrow:before {
  position: absolute;
  top: 48%;
  right: 10px;
}

@media screen and (min-width: 750px) {
  .btn.is_default.with_rightArrow:before {
    right: 20px;
  }
}

.btn.is_default.with_leftArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  border-bottom: solid 1px #464646;
  border-left: solid 1px #464646;
  transform: rotate(45deg);
}

.btn.is_default.with_leftArrow:before {
  position: absolute;
  left: 10px;
  top: 48%;
}

@media screen and (min-width: 750px) {
  .btn.is_default.with_leftArrow:before {
    left: 20px;
  }
}

.btn.is_accent {
  background-color: #7374f2;
  border: 1px solid #7374f2;
  color: #fff;
  padding-bottom: 20px;
  padding-top: 20px;
}

@media screen and (min-width: 750px) {
  .btn.is_accent {
    border: 2px solid #7374f2;
  }
}

@media screen and (min-width: 750px) {
  .btn.is_accent:hover {
    background-color: #fff;
    color: #7374f2;
  }
}

@media screen and (min-width: 750px) {
  .btn.is_accent {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

.btn.is_accent.with_icon {
  padding-top: 15px;
}

@media screen and (min-width: 750px) {
  .btn.is_accent.with_icon {
    padding-top: 30px;
  }
}

.btn.is_accent .icon {
  font-size: 20px;
  margin-right: 10px;
  vertical-align: bottom;
}

@media screen and (min-width: 750px) {
  .btn.is_accent .icon {
    font-size: 30px;
  }
}

.btn.is_reversedColor {
  background-color: #7374f2;
  color: #fff;
  display: inline-block;
  font-weight: 400;
  min-width: 190px;
  padding: 10px 30px;
  position: relative;
}

@media screen and (min-width: 750px) {
  .btn.is_reversedColor {
    border: 2px solid #7374f2;
    min-width: 210px;
    padding: 5px 40px;
  }
}

@media screen and (min-width: 750px) {
  .btn.is_reversedColor:hover {
    background-color: #fff;
    color: #7374f2;
  }
}

.btn.is_reversedColor.with_rightArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  border-right: solid 1px #fff;
  border-top: solid 1px #fff;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .btn.is_reversedColor.with_rightArrow:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-right: solid 1px #fff;
    border-top: solid 1px #fff;
    transform: rotate(45deg);
  }
}

.btn.is_reversedColor.with_rightArrow:before {
  position: absolute;
  top: 40%;
  right: 10px;
}

@media screen and (min-width: 750px) {
  .btn.is_reversedColor.with_rightArrow:hover:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-right: solid 1px #7374f2;
    border-top: solid 1px #7374f2;
    transform: rotate(45deg);
  }
}

.btn.is_reversedColor.with_rightArrow:hover:before {
  position: absolute;
  top: 40%;
  right: 10px;
}

.btn.is_reversedColor.with_leftArrow:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-bottom: solid 1px #fff;
  border-left: solid 1px #fff;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .btn.is_reversedColor.with_leftArrow:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-bottom: solid 1px #fff;
    border-left: solid 1px #fff;
    transform: rotate(45deg);
  }
}

.btn.is_reversedColor.with_leftArrow:before {
  position: absolute;
  top: 40%;
  left: 10px;
}

@media screen and (min-width: 750px) {
  .btn.is_reversedColor.with_leftArrow:hover:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-bottom: solid 1px #7374f2;
    border-left: solid 1px #7374f2;
    transform: rotate(45deg);
  }
}

.btn.is_reversedColor.with_leftArrow:hover:before {
  position: absolute;
  top: 40%;
  left: 10px;
}

@media screen and (min-width: 750px) {
  .columnLayout-item .btn {
    height: 100%;
    width: 100%;
  }
}

@media screen and (min-width: 750px) {
  .btnArea .btn {
    padding-bottom: 40px;
    padding-top: 40px;
    width: 100%;
  }
}

.heading_level1.with_btn .btn,
.heading_level2.with_btn .btn,
.heading_level3.with_btn .btn {
  display: none;
}

@media screen and (min-width: 750px) {
  .heading_level1.with_btn .btn,
  .heading_level2.with_btn .btn,
  .heading_level3.with_btn .btn {
    display: inline-block;
    position: absolute;
    right: 0;
  }
}

@media screen and (min-width: 750px) {
  .heading_level1.with_btn .btn {
    bottom: 15px;
  }
}

.btnArea {
  margin: 40px 0 20px;
}

.captionList {
  color: #464646;
  font-size: 12px;
  line-height: 1.6;
  list-style: none;
  margin: 0 0 20px;
  padding-left: 0;
}

.captionList a {
  color: #004ecc;
  text-decoration: underline;
}

.card {
  border: 1px solid #b9b9b9;
  margin-bottom: 20px;
}

@media screen and (min-width: 750px) {
  .card {
    margin-bottom: 40px;
  }
}

.card:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .card:last-child {
    margin-bottom: 0;
  }
}

.card-header, .card-content {
  padding: 15px;
}

@media screen and (min-width: 750px) {
  .card-header, .card-content {
    padding: 20px;
  }
}

.card-header {
  background-color: #efefef;
  border-bottom: 1px solid #b9b9b9;
  color: #111111;
  font-size: 16px;
}

@media screen and (min-width: 750px) {
  .card-header {
    padding: 20px;
    font-size: 20px;
  }
}

@media screen and (min-width: 750px) {
  .card-content {
    padding: 20px;
  }
}

.card-content p {
  margin-top: 0;
}

.card-content p:last-child {
  margin-bottom: 0;
}

.card-list {
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.card-list:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.card-list-header {
  font-weight: 800;
  margin-bottom: 20px;
}

.card-list-header:last-child {
  margin-bottom: 0;
}

.card-list-content {
  margin-bottom: 10px;
  padding-left: 10px;
}

.card-list-content:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .columnContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.columnContent-item {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .columnContent-item {
    margin-bottom: 40px;
    margin-right: 10px;
    max-width: 385px;
    min-width: 212px;
  }
}

.columnContent-link:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
  border-right: solid 1px #7374f2;
  border-top: solid 1px #7374f2;
  transform: rotate(45deg);
}

.columnContent-link:before {
  margin-right: 6px;
}

.columnContent-caption {
  font-size: 12px;
}

@media screen and (min-width: 750px) {
  .columnLayout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
  .columnLayout:last-child {
    margin-bottom: 0;
  }
}

.columnLayout-item {
  margin-bottom: 15px;
}

@media screen and (min-width: 750px) {
  .columnLayout-item {
    margin-bottom: 0;
    margin-right: 2%;
  }
  .columnLayout-item:last-of-type {
    margin-right: 0;
  }
}

@media screen and (min-width: 750px) {
  .columnLayout.is_twoColums .columnLayout-item {
    width: 49%;
  }
}

.columnLayout.is_fourColums {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (min-width: 750px) {
  .columnLayout.is_fourColums {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 750px) {
  .columnLayout.is_fourColums .columnLayout-item {
    margin-top: 20px;
    width: 23.5%;
  }
}

@media screen and (min-width: 750px) {
  .columnLayout.is_fourColums .columnLayout-item:nth-child(4n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 750px) {
  .columnLayout.is_fourColums .columnLayout-item:nth-child(-n + 4) {
    margin-top: 0;
  }
}

.columnLayout.is_fourColums .columnLayout-item.is_active a {
  border: 1px solid #7374f2;
}

.confirmation_button {
  width: 130px;
  margin: 5px;
  padding: 6px 7px;
  border-radius: 0px;
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 750px) {
  .confirmation_button {
    width: 150px;
    margin: 10px;
    padding: 12px 14px;
  }
}

.confirmation_buttonGlobal {
  width: 150px;
  margin: 5px auto;
  padding: 6px 7px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  color: #000000;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .confirmation_buttonGlobal {
    width: 250px;
    margin: 10px auto;
    padding: 12px 14px;
    font-size: 20px;
  }
}

.confirmation_buttonGlobalStatus {
  pointer-events: none;
}

.confirmation_buttonGlobalStatus:hover, .confirmation_buttonGlobalStatus:active {
  cursor: default;
}

.confirmation_buttonGlobalStatus--active {
  pointer-events: auto;
}

.confirmation_buttonGlobalStatus--active:hover, .confirmation_buttonGlobalStatus--active:active {
  cursor: pointer;
}

.confirmation_buttonGlobal.is-disabledButton {
  color: #cccccc;
  background-color: #f5f5f5;
}

.confirmation_button:hover {
  border-top-color: #dfe7ed;
  background: #dfe7ed;
  color: #000000;
}

.confirmation_button:active {
  border-top-color: #dfe7ed;
  background: #dfe7ed;
}

.page_opaque {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
  opacity: 0.8;
}

.med_confirm {
  position: fixed;
  top: 70px;
  left: 0;
  opacity: 1;
  width: 100%;
  z-index: 11000;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .med_confirm {
    top: 150px;
    left: 0;
  }
}

.med_confirm .confirm_box {
  width: 310px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

@media screen and (min-width: 750px) {
  .med_confirm .confirm_box {
    width: 400px;
  }
}

.med_confirm .confirm_box--global {
  width: 350px;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

@media screen and (min-width: 750px) {
  .med_confirm .confirm_box--global {
    width: 600px;
  }
}

.med_confirm table {
  width: auto;
}

.med_confirm table a {
  text-decoration: none;
}

.med_confirm table a.medGlobal__textLink {
  color: #004ecc;
  text-decoration: underline;
}

.med_confirm table td.med_what {
  height: 43px;
  padding-top: 20px;
  font-weight: bold;
  font-size: 20px;
}

.med_confirm table td.med_btn {
  height: 90px;
  padding: 20px 0 15px;
}

.med_confirm table td.med_txt {
  font-size: 14px;
  padding: 0 15px 15px;
  color: #333;
  line-height: 1.6;
}

.med_confirm table td.medGlobal__lead {
  padding: 20px 30px 15px;
  font-weight: bold;
  font-size: 14px;
  text-align: left;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .med_confirm table td.medGlobal__lead {
    line-height: 1.6;
  }
}

.med_confirm table td.medGlobal__lead p {
  margin-bottom: 0;
}

.med_confirm table td.medGlobal__check {
  padding: 0 30px 20px;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .med_confirm table td.medGlobal__check {
    line-height: 1.6;
  }
}

.med_confirm table td.medGlobal__check input {
  border: 1px solid #000;
  font-size: 14px;
  background-color: #ffffff;
  display: inline-block;
  width: auto;
}

.med_confirm table td.medGlobal__check input[type="checkbox"] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  position: relative;
  top: 0px;
  margin: 0 10px 0 0;
}

.med_confirm table td.medGlobal__check label.medGlobal__checkboxText {
  font-size: 18px;
  cursor: pointer;
  text-indent: 24px;
  display: inline;
}

@media screen and (min-width: 750px) {
  .med_confirm table td.medGlobal__check label.medGlobal__checkboxText {
    font-size: 20px;
  }
}

.med_confirm table td.medGlobal__text {
  padding: 0 30px 25px;
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .med_confirm table td.medGlobal__text {
    line-height: 1.6;
  }
}

.med_confirm table td.medGlobal__text p {
  margin-bottom: 0;
}

.med_confirm table td.medGlobal__selectBtnText {
  padding: 0 30px;
  font-size: 20px;
  line-height: 1.4;
}

@media screen and (min-width: 750px) {
  .med_confirm table td.medGlobal__selectBtnText {
    line-height: 1.6;
  }
}

.med_confirm table td.medGlobal__selectBtnText p {
  margin-bottom: 0;
}

.med_confirm table td.medGlobal__btn {
  height: 90px;
  margin: 0 auto;
  padding: 5px 0 15px;
  vertical-align: middle;
}

.med_confirm table td.medGlobal__text--att {
  padding: 0 30px 5px 37px;
  font-size: 14px;
  line-height: 1.4;
  text-indent: -0.5em;
}

@media screen and (min-width: 750px) {
  .med_confirm table td.medGlobal__text--att {
    line-height: 1.6;
  }
}

.med_confirm table td.medGlobal__text--att p {
  margin-bottom: 0;
}

.dateText {
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (min-width: 750px) {
  .dateText {
    font-size: 20px;
  }
}

.document {
  margin-bottom: 35px;
}

.document:last-child {
  margin-bottom: 0;
}

.document-item {
  margin-bottom: 35px;
}

@media screen and (min-width: 750px) {
  .document-item {
    margin-bottom: 25px;
  }
}

.document-item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .document-item.with_icon .document-content {
    float: right;
    width: 90%;
  }
}

.document-item.with_icon .document-header,
.document-item.with_icon .document-text {
  padding-left: 20px;
}

@media screen and (min-width: 750px) {
  .document-item.with_icon .document-header,
  .document-item.with_icon .document-text {
    padding-left: 35px;
  }
}

.document-item.with_icon .document-header {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
}

@media screen and (min-width: 750px) {
  .document-item.with_icon .document-header {
    font-size: 16px;
  }
}

.document-item.with_icon .icon {
  left: 0;
  position: absolute;
}

.document-status {
  margin-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .document-status {
    float: left;
    margin-bottom: 0;
    margin-right: 2%;
    width: 8%;
  }
}

@media screen and (min-width: 750px) {
  .document-status .tag {
    vertical-align: top;
  }
}

.doc_request_opaque {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
}

.doc_request_confirm {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  width: 100%;
  z-index: 11000;
  opacity: 0.9;
}

.fontColor.is_pale {
  color: #999999;
}

.fontColor.is_gray {
  color: #666;
}

.heading_level1 {
  border-bottom: 1px solid #7374f2;
  font-size: 22px;
  padding-bottom: 15px;
}

@media screen and (min-width: 750px) {
  .heading_level1 {
    font-size: 40px;
  }
}

.heading_level1:first-child {
  margin-top: 0;
}

.heading_level1.for_topProducts, .heading_level1.for_topNews {
  font-size: 22px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .heading_level1.for_topProducts, .heading_level1.for_topNews {
    font-size: 34px;
  }
}

.heading_level1.for_topProducts {
  margin-left: 10px;
  margin-right: 10px;
}

.heading_level1.is_outside {
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (min-width: 750px) {
  .heading_level1.is_outside {
    margin-left: auto;
    margin-right: auto;
    width: 1040px;
  }
}

.heading_level1.is_outside + span.dateText {
  margin-left: 10px;
  margin-right: 10px;
}

@media screen and (min-width: 750px) {
  .heading_level1.is_outside + span.dateText {
    margin-left: auto;
    margin-right: auto;
  }
}

.heading_level1-inner {
  display: block;
}

.heading_level1-category {
  display: block;
  font-size: .6em;
  font-weight: 500;
  padding-right: 20px;
}

.heading_level1,
.heading_level2,
.heading_level3 {
  font-weight: 500;
}

@media screen and (min-width: 750px) {
  .heading_level1.with_btn,
  .heading_level2.with_btn,
  .heading_level3.with_btn {
    padding-right: 210px;
    position: relative;
  }
}

.heading_level2 {
  border-bottom: 1px solid #7374f2;
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .heading_level2 {
    font-size: 28px;
  }
}

@media screen and (min-width: 750px) {
  .container .tab + .heading_level2,
  .container .tab .heading_noMarker {
    margin-top: 60px;
  }
}

.section .heading_level2:first-child {
  margin-top: 0;
}

.heading_level3 {
  border-left: 2px solid #7374f2;
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
}

@media screen and (min-width: 750px) {
  .heading_level3 {
    font-size: 26px;
    margin: 40px 0 30px;
  }
}

.heading_level2 + .heading_level3 {
  margin-top: 0;
}

.block .heading_level3:first-child {
  margin-top: 0;
}

.heading_level4 {
  font-size: 14px;
  font-weight: 800;
}

@media screen and (min-width: 750px) {
  .heading_level4 {
    font-size: 20px;
  }
}

.heading_level4.with_marker:before {
  background-color: #7374f2;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 5px;
  width: 5px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.block .heading_level4:first-child {
  margin-top: 0;
}

.verticalColumn-item .heading_level4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
}

@media screen and (min-width: 750px) {
  .verticalColumn-item .heading_level4 {
    font-size: 20px;
  }
}

.heading-btn {
  text-align: right;
}

.heading-btn-item {
  display: block;
}

@media screen and (min-width: 750px) {
  .heading-btn-item {
    display: inline-block;
    margin-left: 20px;
  }
}

.heading-btn-item-margin {
  margin-top: 16px;
  margin-bottom: 16px;
}

.heading-btn-height {
  height: 70px;
}

.heading-btn.in_app {
  margin-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .heading-btn.in_app {
    margin-top: -25px;
    margin-bottom: 0px;
  }
}

.heading-btn.in_product {
  margin-top: 10px;
  margin-bottom: 10px;
}

img + .heading-btn {
  margin-top: 10px;
}

.historySlide-button {
  opacity: .6;
  position: absolute;
  top: 42%;
  width: 34px;
  z-index: 99;
}

@media screen and (min-width: 750px) {
  .historySlide-button {
    height: 42px;
    top: 49%;
    width: 44px;
  }
}

.historySlide-button.is_previous {
  left: 0;
}

.historySlide-button.is_next {
  right: 0;
}

.historySlide-button.swiper-button-disabled {
  display: none;
}

.image {
  margin-bottom: 20px;
}

@media screen and (min-width: 750px) {
  .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.image.is_centered {
  text-align: center;
}

@media screen and (min-width: 750px) {
  .image.is_centered {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.image.is_centered .image-item {
  margin-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .image.is_centered .image-item {
    margin-bottom: 0;
  }
  .image.is_centered .image-item:nth-child(2n-1) {
    margin-right: 20px;
  }
}

.image.is_centered .image-item:last-child {
  margin-bottom: 0;
}

.image.is_adobeReader {
  height: auto;
  margin-bottom: 0;
  width: 158px;
}

.imageSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

@media screen and (min-width: 750px) {
  .imageSet {
    margin-bottom: 50px;
  }
}

@media screen and (min-width: 750px) {
  .imageSet-text {
    width: 64%;
  }
}

.imageSet-image {
  text-align: center;
}

@media screen and (min-width: 750px) {
  .imageSet-image {
    width: 30%;
  }
}

.imageSet.for_twoColumnsAll {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.imageSet.for_twoColumnsAll .imageSet-text {
  width: 48%;
}

@media screen and (min-width: 750px) {
  .imageSet.for_twoColumnsAll .imageSet-text {
    width: 64%;
  }
}

.imageSet.for_twoColumnsAll .imageSet-image {
  width: 48%;
}

@media screen and (min-width: 750px) {
  .imageSet.for_twoColumnsAll .imageSet-image {
    width: 30%;
  }
}

.imageSet.for_rightTop, .imageSet.for_leftTop {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.imageSet.for_rightTop .imageSet-image, .imageSet.for_leftTop .imageSet-image {
  margin-bottom: 20px;
}

@media screen and (min-width: 750px) {
  .imageSet.for_rightTop .imageSet-image, .imageSet.for_leftTop .imageSet-image {
    margin-bottom: 0;
  }
}

.imageSet.for_rightBottom, .imageSet.for_leftBottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.imageSet.for_rightBottom .imageSet-image, .imageSet.for_leftBottom .imageSet-image {
  margin-top: 20px;
}

@media screen and (min-width: 750px) {
  .imageSet.for_rightBottom .imageSet-image, .imageSet.for_leftBottom .imageSet-image {
    margin-top: 0;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_rightTop, .imageSet.for_rightBottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_rightTop .imageSet-image, .imageSet.for_rightBottom .imageSet-image {
    margin-left: 6%;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_leftTop, .imageSet.for_leftBottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_leftTop .imageSet-image, .imageSet.for_leftBottom .imageSet-image {
    margin-right: 6%;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_freeWidth .imageSet-text {
    width: auto;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_freeWidth .imageSet-image {
    width: auto;
  }
}

.imageSet.for_freeWidth .imageSet-image img {
  width: auto;
}

@media screen and (min-width: 750px) {
  .imageSet.for_freeWidth .imageSet-image img {
    max-width: initial;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_freeWidth.for_rightTop .imageSet-image, .imageSet.for_freeWidth.for_rightBottom .imageSet-image {
    margin-left: 5%;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_freeWidth.for_leftTop .imageSet-image, .imageSet.for_freeWidth.for_leftBottom .imageSet-image {
    margin-right: 5%;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_imageMaxWidth {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_imageMaxWidth .imageSet-text {
    width: auto;
  }
}

@media screen and (min-width: 750px) {
  .imageSet.for_imageMaxWidth .imageSet-image {
    width: auto;
    max-width: 18%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.imageSet.for_imageMaxWidth .imageSet-image img {
  width: auto;
}

@media screen and (min-width: 750px) {
  .imageSet.for_imageMaxWidth.for_rightTop .imageSet-image, .imageSet.for_imageMaxWidth.for_rightBottom .imageSet-image {
    margin-left: 5%;
  }
}

.imageSet.for_imageMaxWidth.for_leftTop, .imageSet.for_imageMaxWidth.for_leftBottom {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (min-width: 750px) {
  .imageSet.for_imageMaxWidth.for_leftTop .imageSet-image, .imageSet.for_imageMaxWidth.for_leftBottom .imageSet-image {
    margin-right: 5%;
  }
}

@media screen and (min-width: 750px) {
  .imageWithCaption {
    display: table;
    width: 160px;
  }
  .imageWithCaption.textAlign_center {
    margin: 0 auto;
  }
  .imageWithCaption img {
    max-width: none;
  }
}

.imageWithCaption-text {
  margin-top: 5px;
}

.inquiriesNav {
  z-index: 20;
  position: fixed;
}

@media screen and (min-width: 750px) {
  .inquiriesNav {
    position: relative;
  }
}

.inquiriesNav > a[href] {
  text-decoration: none;
  position: fixed;
  right: 24px;
  bottom: 12px;
  max-width: 60px;
  max-height: 56px;
}

.inquiriesNav > a[href]:hover {
  opacity: 0.7;
}

@media screen and (min-width: 750px) {
  .inquiriesNav > a[href] {
    left: 50%;
    top: 50%;
    margin-left: 555px;
    padding-left: 9px;
  }
}

.inquiriesNav > a[href] > * {
  color: #7374f2;
}

.inquiriesNav > a[href] > i[class*="icon-message"] {
  font-size: 42px;
}

.inquiriesNav > a[href] > i[class*="icon-message"] + p {
  margin-top: -18px;
  margin-left: -10px;
}

@media screen and (min-width: 750px) {
  .inquiriesNav > a[href] > i[class*="icon-message"] + p {
    margin-left: -12px;
  }
}

.indicator {
  text-align: center;
}

.indicator .swiper-pagination-bullet {
  background-color: #b9b9b9;
  border-radius: 0;
  height: 4px;
  margin-right: 5px;
  opacity: 1;
  width: 34px;
}

@media screen and (min-width: 750px) {
  .indicator .swiper-pagination-bullet {
    height: 5px;
    margin-right: 10px;
    width: 33px;
  }
}

.indicator .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.indicator .swiper-pagination-bullet-active {
  background-color: #7374f2;
}

.information.list:last-child {
  margin-bottom: 0;
}

.information .list-item.with_status {
  padding-top: 20px;
  position: relative;
}

@media screen and (min-width: 750px) {
  .information .list-item.with_status {
    padding-top: 25px;
  }
}

.information .list-item.with_status .information-status {
  position: absolute;
  text-indent: 0;
  top: 0;
}

.information .list-item.with_icon_right .icon {
  margin-left: 10px;
}

.information .list-item.with_icon_right .is_new {
  margin-left: 10px;
}

.information-title {
  font-weight: 800;
}

.information-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  text-indent: 0;
}

.information-image {
  margin-right: 8px;
}

.information-block {
  display: block;
  margin-top: 10px;
}

@media screen and (min-width: 750px) {
  .information-block {
    font-size: 14px;
  }
}

@media screen and (min-width: 750px) {
  .information-text {
    display: inline-block;
    margin-right: 10px;
  }
}

.information-text-title, .information-text-content {
  display: block;
}

@media screen and (min-width: 750px) {
  .information-text-title, .information-text-content {
    display: inline-block;
  }
}

@media screen and (min-width: 750px) {
  .information-text-title {
    margin-right: 10px;
  }
}

.information-info {
  font-size: 12px;
  text-indent: 0;
}

.information-tags {
  display: block;
}

@media screen and (min-width: 750px) {
  .information-tags {
    display: inline-block;
  }
}

.information-tags .tag {
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

.information-contentWrap {
  color: #464646;
  font-size: 14px;
}

@media screen and (min-width: 750px) {
  .information-contentWrap {
    font-size: 16px;
  }
}

.information-wrap {
  padding-left: 23px;
}

.information-wrap .information-pdfTitle {
  display: inline-block;
  font-weight: 800;
  margin-top: 17px;
  font-size: 14px;
}

@media screen and (min-width: 750px) {
  .information-wrap .information-pdfTitle {
    margin-top: 20px;
    font-size: 16px;
  }
}

.information-wrap .information-pdfTitle:first-child {
  margin-top: 0;
}

.information-wrap .information-pdfTitle > .icon-pdf {
  margin-left: 10px;
}

.information-wrap .information-pdfTitle > .icon-pdf:before {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.information-pdfSize {
  display: inline-block;
  margin: 0 0 0 5px;
  font-size: 12px;
}

@media screen and (min-width: 750px) {
  .information-pdfSize {
    font-size: 18px;
  }
}

.information-literatureTitle {
  margin: 1.33em 0 5px;
  font-size: 14px;
  font-weight: 800;
}

@media screen and (min-width: 750px) {
  .information-literatureTitle {
    font-size: 20px;
  }
}

.information-literatureTitle:first-child {
  margin-top: 0;
}

.information-literatureTitle > .icon-pdf {
  margin-left: 10px;
}

.information-literatureTitle > .icon-pdf:before {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.information-pdfTitle {
  display: block;
  margin: 1.33em 0 5px;
  font-size: 14px;
  font-weight: 800;
}

@media screen and (min-width: 750px) {
  .information-pdfTitle {
    font-size: 20px;
  }
}

.information-pdfTitle:first-child {
  margin-top: 0;
}

.information-pdfTitle > .icon-pdf {
  margin-left: 10px;
}

.information-pdfTitle > .icon-pdf:before {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.informationLink {
  display: none;
}

@media screen and (min-width: 750px) {
  .informationLink {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .informationLink-item {
    font-weight: 800;
    margin-left: 20px;
  }
  .informationLink-item .icon {
    font-size: 20px;
    margin-right: 5px;
    vertical-align: bottom;
  }
  .informationLink-item a {
    font-size: 14px;
    text-decoration: none;
  }
  .informationLink-item a:hover {
    text-decoration: underline;
  }
}

.link.with_icon .icon {
  color: #7374f2;
  font-size: 12px;
  margin-right: 5px;
}

.linkBlock {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #b9b9b9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 10px 10px 30px;
  position: relative;
  text-decoration: none;
}

@media screen and (min-width: 750px) {
  .linkBlock {
    padding: 20px 20px 20px 50px;
    width: 510px;
  }
}

.linkBlock:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 12px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
  border-right: solid 2px #7374f2;
  border-top: solid 2px #7374f2;
  transform: rotate(45deg);
}

.linkBlock:before {
  position: absolute;
  left: 7px;
}

@media screen and (min-width: 750px) {
  .linkBlock:before {
    left: 15px;
  }
}

.linkBlock-title, .linkBlock-text {
  display: block;
}

.linkBlock-title {
  font-size: 18px;
  font-weight: 800;
}

@media screen and (min-width: 750px) {
  .linkBlock-title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.linkBlock-image {
  height: 64px;
  width: auto;
}

@media screen and (min-width: 750px) {
  .linkBlock-image {
    height: 115px;
  }
}

.linkBox {
  margin-bottom: 20px;
}

@media screen and (min-width: 750px) {
  .linkBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.linkBox:last-child {
  margin-bottom: 0;
}

.linkBox-item {
  margin-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .linkBox-item {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.linkBox-item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .linkBox-item:last-child {
    margin-bottom: 20px;
  }
}

.linkBox-item a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #ababab;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 10px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

@media screen and (min-width: 750px) {
  .linkBox-item a {
    height: 100%;
    padding: 20px 25px;
  }
}

.linkBox-item-caption {
  display: block;
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .linkBox-item-caption {
    font-size: 14px;
  }
}

.linkBox-item.with_bottomArrow a {
  padding-right: 30px;
}

.linkBox-item.with_bottomArrow a:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 12px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
  border-bottom: solid 2px #464646;
  border-left: solid 2px #464646;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 750px) {
  .linkBox-item.with_bottomArrow a {
    padding-right: 50px;
  }
  .linkBox-item.with_bottomArrow a:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-bottom: solid 1px #464646;
    border-left: solid 1px #464646;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.linkBox-item.with_bottomArrow a:before {
  position: absolute;
  right: 15px;
}

@media screen and (min-width: 750px) {
  .linkBox-item.with_bottomArrow a:before {
    right: 20px;
  }
}

.linkBox-item.with_rightArrow a {
  padding-right: 30px;
}

@media screen and (min-width: 750px) {
  .linkBox-item.with_rightArrow a {
    padding-right: 50px;
  }
}

.linkBox-item.with_rightArrow a:after {
  border: 0;
  content: "";
  display: inline-block;
  height: 12px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 12px;
  border-right: solid 2px #464646;
  border-top: solid 2px #464646;
  position: absolute;
  right: 15px;
  transform: rotate(45deg);
}

@media screen and (min-width: 750px) {
  .linkBox-item.with_rightArrow a:after {
    border-right: solid 1px #464646;
    border-top: solid 1px #464646;
    height: 8px;
    right: 20px;
    top: 47%;
    width: 8px;
  }
}

@media screen and (min-width: 750px) {
  .linkBox.is_threeColumn .linkBox-item {
    margin-right: 2%;
    width: 32%;
  }
  .linkBox.is_threeColumn .linkBox-item:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 750px) {
  .linkBox.is_twoColumn .linkBox-item {
    margin-right: 2%;
    width: 49%;
  }
  .linkBox.is_twoColumn .linkBox-item:nth-child(2n) {
    margin-right: 0;
  }
}

.list {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 27px;
}

.list-item {
  margin-bottom: 17px;
}

@media screen and (min-width: 750px) {
  .list-item {
    margin-bottom: 20px;
  }
}

.list-item:last-child {
  margin-bottom: 0;
}

.list.with_parentheses {
  text-indent: -1.8em;
  padding-left: 1.8em;
}

.list.with_parentheses .list-item {
  counter-increment: cnt;
  list-style-position: inside;
  list-style-type: none;
}

@media screen and (min-width: 750px) {
  .list.with_parentheses .list-item {
    margin-bottom: 5px;
  }
}

.list.with_parentheses .list-item:before {
  display: marker;
  content: "(*" counter(cnt) ") ";
}

.list.with_marker {
  list-style: none;
  padding: 0;
  margin-left: 1em;
}

.list.with_marker .list-item {
  text-indent: -1em;
}

@media screen and (min-width: 750px) {
  .list.with_marker .list-item {
    margin-bottom: 5px;
  }
}

.list.with_marker .list-item:before {
  background-color: #d8d8d8;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  margin-right: 5px;
}

.list.with_arrow {
  list-style: none;
  padding-left: 23px;
  text-indent: -23px;
}

.list.with_arrow .list-item:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-right: solid 2px #7374f2;
  border-top: solid 2px #7374f2;
  transform: rotate(45deg);
}

.list.with_arrow .list-item:before {
  margin-right: 10px;
}

@media screen and (min-width: 750px) {
  .list.with_arrow.is_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .list.with_arrow.is_flex .list-item {
    min-width: 20%;
    margin-right: 40px;
  }
}

.list.with_hyphen {
  padding-left: 1em;
}

.list.with_hyphen .list-item {
  list-style-position: inside;
  list-style-type: none;
  margin-bottom: 5px;
  padding-left: 18px;
  text-indent: -18px;
}

.list.with_hyphen .list-item:before {
  background-color: #ababab;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  position: relative;
  top: -5px;
  width: 8px;
}

.list.with_hyphen.child {
  margin-top: 5px;
  margin-bottom: 0;
}

.list.with_hyphen.child .list-item::before {
  border: none;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.list.with_none {
  list-style: none;
  padding-left: 23px;
}

@media screen and (min-width: 750px) {
  .list.with_none.is_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .list.with_none.is_flex .list-item {
    min-width: 20%;
    margin-right: 40px;
  }
}

.list.with_pdf .list-item .icon-pdf {
  margin-left: 5px;
}

.list.with_pdf .list-item .icon-pdf::before {
  -webkit-transform: translateY(2.5px);
          transform: translateY(2.5px);
}

.list.with_pdf .list-item-pdfSize {
  margin-left: 3px;
  font-size: 12px;
}

@media screen and (min-width: 750px) {
  .list.with_pdf .list-item-pdfSize {
    font-size: 14px;
  }
}

.block .list:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .block .list:last-child {
    margin-bottom: -20px;
  }
}

@media screen and (min-width: 750px) {
  .block .list-item:last-child {
    margin-bottom: 20px;
  }
}

.block .list.product_category {
  margin-bottom: 17px;
}

@media screen and (min-width: 750px) {
  .block .list.product_category {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: inline-block;
    margin-left: 10px;
    min-width: 25%;
    vertical-align: top;
  }
}

.mainvisual {
  height: auto;
  overflow-x: hidden;
}

@media screen and (min-width: 750px) {
  .mainvisual {
    position: relative;
  }
}

.mainvisual.is_pc {
  display: none;
}

@media screen and (min-width: 750px) {
  .mainvisual.is_pc {
    display: block;
  }
}

@media screen and (min-width: 750px) {
  .mainvisual.is_sp {
    display: none;
  }
}

.mainvisual-slide {
  position: relative;
}

.mainvisual-slide-item {
  height: auto;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .mainvisual-slide-item {
    background-size: cover;
    background-position: center center;
    height: 480px;
  }
}

@media screen and (min-width: 750px) {
  .mainvisual-slide-nav {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 40%;
    width: 1100px;
  }
}

.mainvisual-slide-nav-item {
  position: absolute;
  top: 45%;
  z-index: 1;
}

.mainvisual-slide-nav-item.is_previous {
  left: 0;
}

.mainvisual-slide-nav-item.is_next {
  right: 0;
}

.swiper-wrapper {
  height: auto;
}

.mainImage {
  border: 1px solid #d8d8d8;
}

.map {
  background-image: url("../images/contactsearch/map_sp.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 300px 150px;
  height: 150px;
  margin: 0 auto;
  position: relative;
  width: 300px;
}

@media screen and (min-width: 750px) {
  .map {
    background-image: url("../images/contactsearch/map.png");
    background-position: 0 0;
    background-size: auto 415px;
    height: 415px;
    width: 837px;
  }
}

.map.is_north_america {
  background-position: -837px 0;
}

.map.is_latin_america {
  background-position: -1674px 0;
}

.map.is_europe {
  background-position: -2511px 0;
}

.map.is_middle_and_east_africa {
  background-position: -3348px 0;
}

.map.is_asia {
  background-position: -4185px 0;
}

.map.is_asia {
  background-position: -4185px 0;
}

.map.is_japan {
  background-position: -5022px 0;
}

.map.is_autralasia {
  background-position: -5859px 0;
}

.map-btn {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 36px 36px;
  display: block;
  height: 36px;
  position: absolute;
  text-decoration: none;
  width: 36px;
}

@media screen and (min-width: 750px) {
  .map-btn {
    background-size: 106px 106px;
    height: 106px;
    width: 106px;
  }
}

.map-btn.is_north_america {
  background-image: url("../images/contactsearch/btn_n_america_off.png");
  left: 32px;
  top: 32px;
}

.map-btn.is_north_america:hover {
  background-image: url("../images/contactsearch/btn_n_america_on.png");
}

@media screen and (min-width: 750px) {
  .map-btn.is_north_america {
    left: 85px;
    top: 85px;
  }
}

.map-btn.is_latin_america {
  background-image: url("../images/contactsearch/btn_l_america_off.png");
  left: 66px;
  top: 81px;
}

.map-btn.is_latin_america:hover {
  background-image: url("../images/contactsearch/btn_l_america_on.png");
}

@media screen and (min-width: 750px) {
  .map-btn.is_latin_america {
    left: 180px;
    top: 220px;
  }
}

.map-btn.is_europe {
  background-image: url("../images/contactsearch/btn_europe_off.png");
  left: 169px;
  top: 17px;
}

.map-btn.is_europe:hover {
  background-image: url("../images/contactsearch/btn_europe_on.png");
}

@media screen and (min-width: 750px) {
  .map-btn.is_europe {
    left: 467px;
    top: 45px;
  }
}

.map-btn.is_middle_and_east_africa {
  background-image: url("../images/contactsearch/btn_meaf_off.png");
  left: 148px;
  top: 64px;
}

.map-btn.is_middle_and_east_africa:hover {
  background-image: url("../images/contactsearch/btn_meaf_on.png");
}

@media screen and (min-width: 750px) {
  .map-btn.is_middle_and_east_africa {
    left: 410px;
    top: 176px;
  }
}

.map-btn.is_asia {
  background-image: url("../images/contactsearch/btn_asia_off.png");
  left: 198px;
  top: 52px;
}

.map-btn.is_asia:hover {
  background-image: url("../images/contactsearch/btn_asia_on.png");
}

@media screen and (min-width: 750px) {
  .map-btn.is_asia {
    left: 550px;
    top: 140px;
  }
}

.map-btn.is_japan {
  background-image: url("../images/contactsearch/btn_japan_off.png");
  background-size: 30px 30px;
  height: 30px;
  left: 252px;
  top: 50px;
  width: 30px;
}

.map-btn.is_japan:hover {
  background-image: url("../images/contactsearch/btn_japan_on.png");
}

@media screen and (min-width: 750px) {
  .map-btn.is_japan {
    background-size: 84px 84px;
    height: 84px;
    left: 705px;
    top: 136px;
    width: 84px;
  }
}

.map-btn.is_autralasia {
  background-image: url("../images/contactsearch/btn_australasia_off.png");
  right: 10px;
  top: 101px;
}

.map-btn.is_autralasia:hover {
  background-image: url("../images/contactsearch/btn_australasia_on.png");
}

@media screen and (min-width: 750px) {
  .map-btn.is_autralasia {
    left: 705px;
    top: 277px;
  }
}

.map-flag {
  padding-bottom: 40px;
}

@media screen and (min-width: 750px) {
  .map-flag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.map-flag-list {
  margin-bottom: 10px;
}

@media screen and (min-width: 750px) {
  .map-flag-list {
    margin-right: 2%;
    width: 32%;
  }
}

.map-flag-list:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .map-flag-list:last-child {
    margin-right: 0;
  }
}

.map-flag-list-item {
  margin-bottom: 10px;
}

.map-flag-list-item img {
  margin-right: 5px;
  width: 24px;
}

.map-flag-list-item:last-child {
  margin-bottom: 0;
}

.map-flag-list-other-item {
  margin-top: 30px;
}

.modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-background {
  opacity: .85;
}

.modal-background.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-background.in {
  filter: alpha(opacity=85);
  opacity: .85;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
          animation: fadeIn 1s ease 0s 1 normal;
}

.fade {
  opacity: 0;
  -webkit-animation: fadeOut 1s ease 0s 1 normal;
          animation: fadeOut 1s ease 0s 1 normal;
}

.modal-close {
  display: inline-block;
  height: 36px;
  position: absolute;
  right: 0;
  top: 20px;
  width: 50px;
}

@media screen and (min-width: 750px) {
  .modal-close {
    cursor: pointer;
    top: 40px;
  }
}

.modal-close-item {
  background-color: #7374f2;
  height: 2px;
  left: -8px;
  position: absolute;
  width: 50px;
}

.modal-close-item:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(16px) rotate(-45deg);
          transform: translateY(16px) rotate(-45deg);
}

.modal-close-item:nth-of-type(2) {
  bottom: 0;
  -webkit-transform: translateY(-18px) rotate(45deg);
          transform: translateY(-18px) rotate(45deg);
}

.modal-title {
  position: relative;
}

.modal-title .icon {
  color: #7374f2;
  font-size: 10px;
  margin-left: 8px;
  position: relative;
}

.modal-content {
  color: #fff;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .modal-content {
    overflow-y: hidden;
    margin: 0 auto;
    width: 1040px;
  }
}

.modal-content a {
  color: inherit;
}

.modal-menu {
  color: #fff;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
}

@media screen and (min-width: 750px) {
  .modal-menu {
    margin: 0 auto;
    padding: 0;
    width: 1040px;
  }
}

.modal-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modal-menu-list-item {
  border-bottom: 1px solid #555;
  margin-right: 4%;
  padding: 15px 0;
  width: 48%;
}

@media screen and (min-width: 750px) {
  .modal-menu-list-item {
    margin-right: 5%;
    width: 30%;
  }
}

.modal-menu-list-item:nth-child(2n) {
  margin-right: 0;
}

@media screen and (min-width: 750px) {
  .modal-menu-list-item:nth-child(2n) {
    margin-right: 5%;
  }
}

@media screen and (min-width: 750px) {
  .modal-menu-list-item:nth-child(3n) {
    margin-right: 0;
  }
}

.modal-menu-list-item:first-child, .modal-menu-list-item:nth-child(2) {
  border-top: 1px solid #555;
}

@media screen and (min-width: 750px) {
  .modal-menu-list-item:nth-child(3) {
    border-top: 1px solid #555;
  }
}

.modal-menu-list-item a {
  display: block;
  padding-right: 20px;
  position: relative;
}

.modal-menu-list-item a .icon {
  color: #7374f2;
  font-size: 10px;
  position: absolute;
  top: 4px;
  right: 0;
}

.news {
  margin-bottom: 25px;
}

@media screen and (min-width: 750px) {
  .news {
    margin-bottom: 50px;
  }
}

.news-list-item {
  margin-bottom: 30px;
}

@media screen and (min-width: 750px) {
  .news-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news-list-item:last-of-type {
  margin-bottom: 0;
}

.news-list-date {
  font-size: 12px;
}

@media screen and (min-width: 750px) {
  .news-list-date {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 4%;
    width: 19%;
  }
}

.news-list-date .tag {
  margin-left: 10px;
}

.news-list-date-text {
  display: inline-block;
}

@media screen and (min-width: 750px) {
  .news-list-link {
    width: 79%;
  }
}

.pageTop {
  display: none;
}

@media screen and (min-width: 750px) {
  .pageTop {
    display: block;
    margin: 0 auto;
    position: relative;
    width: 1040px;
    z-index: 20;
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  .pageTop.on {
    opacity: 1;
  }
}

@media screen and (min-width: 750px) {
  .pageTop-button {
    background-image: url("../images/common/pagetop.png");
    background-repeat: no-repeat;
    background-size: 55px 54px;
    bottom: 90px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    height: 54px;
    position: fixed;
    left: 50%;
    margin-left: 570px;
    width: 55px;
  }
  .pageTop-button:hover {
    opacity: .7;
  }
}

.pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #b9b9b9;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 16px;
}

@media screen and (min-width: 750px) {
  .pagination {
    -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    height: 44px;
    width: 44px;
  }
}

@media screen and (min-width: 750px) {
  .pagination:hover {
    opacity: .8;
  }
}

.pagination:before {
  content: "";
  display: inline-block;
}

.pagination.is_previous:before {
  display: inline-block;
  height: 12px;
  width: 8px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom left/100% 50%, -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top right/100% 50%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom left/100% 50%, linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top right/100% 50%;
}

@media screen and (min-width: 750px) {
  .pagination.is_previous:before {
    display: inline-block;
    height: 16px;
    width: 12px;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom left/100% 50%, -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top right/100% 50%;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom left/100% 50%, linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top right/100% 50%;
  }
}

.pagination.is_next:before {
  display: inline-block;
  height: 12px;
  width: 8px;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom right/100% 50%;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom right/100% 50%;
}

@media screen and (min-width: 750px) {
  .pagination.is_next:before {
    display: inline-block;
    height: 16px;
    width: 12px;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom right/100% 50%;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom right/100% 50%;
  }
}

.product_page_opaque {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
}

.product_confirm {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  width: 100%;
  z-index: 11000;
  opacity: 0.9;
}

.supportMap {
  background-image: url("../images/support/map.jpg");
  background-position: center top;
  background-size: contain;
  height: 172px;
}

@media screen and (min-width: 750px) {
  .supportMap {
    background-size: 853px 488px;
    height: 488px;
  }
}

.tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tab-header-item {
  background-color: #efefef;
  border-left: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  border-top: 1px solid #b9b9b9;
  display: inline-block;
  font-size: 12px;
  margin-right: 5px;
  padding: 15px 30px 15px 10px;
  position: relative;
  text-decoration: none;
}

@media screen and (min-width: 750px) {
  .tab-header-item {
    font-size: 16px;
    padding: 20px 40px;
  }
}

.tab-header-item:before {
  border: 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  border-bottom: solid 1px #464646;
  border-left: solid 1px #464646;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (min-width: 750px) {
  .tab-header-item:before {
    border: 0;
    content: "";
    display: inline-block;
    height: 8px;
    position: relative;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
    border-bottom: solid 1px #464646;
    border-left: solid 1px #464646;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.tab-header-item:before {
  position: absolute;
  right: 10px;
  top: 33%;
}

@media screen and (min-width: 750px) {
  .tab-header-item:before {
    margin-right: 10px;
    position: relative;
    right: auto;
    top: -4px;
  }
}

.tab-header-item:last-child {
  margin-right: 0;
}

.tab-header-item.is_active {
  background-color: #fff;
  margin-bottom: -1px;
  padding: 15px 30px 16px 10px;
}

@media screen and (min-width: 750px) {
  .tab-header-item.is_active {
    padding: 20px 40px 21px;
  }
}

.tab-content {
  border: 1px solid #b9b9b9;
  padding: 15px;
}

.js-tab-change-target {
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  display: none;
  opacity: 0;
}

.js-tab-change-target.is_active {
  display: block;
  opacity: 1;
}

.table {
  color: #111111;
  margin: 20px 0;
  overflow-x: auto;
}

@media screen and (min-width: 750px) {
  .table {
    margin: 40px 0;
  }
}

.table-content {
  border-left: 1px solid #b9b9b9;
  border-top: 1px solid #b9b9b9;
  font-size: 12px;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .table-content {
    font-size: 16px;
  }
}

.table-header, .table-cell {
  border-bottom: 1px solid #b9b9b9;
  border-right: 1px solid #b9b9b9;
  padding: 10px;
  vertical-align: top;
}

@media screen and (min-width: 750px) {
  .table-header, .table-cell {
    padding: 18px 20px;
  }
}

.table-header {
  background-color: #d8d8d8;
  font-weight: normal;
  text-align: left;
}

.table-header.is_sub {
  background-color: #efefef;
}

.table-cell {
  background-color: #fff;
}

.table.is_transparent .table-header {
  background-color: transparent;
}

.table.is_transparent .table-content {
  border-left: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
}

.table.is_transparent .table-header,
.table.is_transparent .table-cell {
  border-bottom: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
}

.tag {
  display: inline-block;
  font-size: 10px;
  min-width: 60px;
  line-height: 1;
  padding: 2px 4px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .tag {
    font-size: 12px;
    min-width: 78px;
    padding: 4px;
  }
}

.tag.is_new {
  background-color: #f2a673;
  color: #fff;
}

.tag.is_info {
  background-color: #7374f2;
  color: #fff;
  font-weight: 800;
}

.document-title .tag,
.document-list-item .tag {
  margin-left: 5px;
}

.text_brandColor {
  color: #ff0000;
}

.verticalColumn {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 750px) {
  .verticalColumn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.verticalColumn-item {
  margin-bottom: 25px;
  width: 47%;
}

@media screen and (min-width: 750px) {
  .verticalColumn-item {
    margin-bottom: 45px;
    margin-right: 40px;
  }
}

.verticalColumn-item-image {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.verticalColumn-item-image-text {
  color: #fff;
  display: block;
  font-weight: normal;
  text-align: center;
  width: 100%;
}

.verticalColumn-item-image-text.is_main {
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 750px) {
  .verticalColumn-item-image-text.is_main {
    font-size: 24px;
  }
}

.verticalColumn-item-image-text.is_sub {
  height: auto;
  font-size: 10px;
  margin-top: 5px;
  position: static;
}

@media screen and (min-width: 750px) {
  .verticalColumn-item-image-text.is_sub {
    font-size: 12px;
  }
}

.verticalColumn-item-image-text .icon {
  font-size: 10px;
  margin-left: 5px;
}

.verticalColumn-item-image.with_caption {
  padding: 10px 12px;
  text-align: center;
  word-break: break-word;
}

@media screen and (min-width: 750px) {
  .verticalColumn-item-image.with_caption {
    padding: 30px 50px;
  }
}

.verticalColumn-item-image.with_caption img {
  padding: 0 8px;
}

@media screen and (min-width: 750px) {
  .verticalColumn-item-image.with_caption img {
    padding: 0;
  }
}

.verticalColumn-item-image.with_caption .verticalColumn-item-image-caption {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
}

@media screen and (min-width: 750px) {
  .verticalColumn-item-image.with_caption .verticalColumn-item-image-caption {
    margin-top: 30px;
    font-size: 14px;
  }
}

.verticalColumn-item-title {
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0;
}

@media screen and (min-width: 750px) {
  .verticalColumn-item-title {
    font-size: 20px;
  }
}

.verticalColumn-item-date {
  margin-top: 16px;
  font-size: 14px;
}

.verticalColumn.for_oneThreeColumns .verticalColumn-item {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_oneThreeColumns .verticalColumn-item {
    margin-right: 5%;
    width: 30%;
  }
  .verticalColumn.for_oneThreeColumns .verticalColumn-item:nth-child(3n) {
    margin-right: 0;
  }
}

.verticalColumn.for_oneThreeColumns .verticalColumn-item-image-text.is_sub {
  font-size: 16px;
}

.verticalColumn.for_twoColumns .verticalColumn-item {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_twoColumns .verticalColumn-item {
    margin-right: 4%;
    width: 48%;
  }
  .verticalColumn.for_twoColumns .verticalColumn-item:nth-child(2n) {
    margin-right: 0;
  }
}

.verticalColumn.for_twoColumns.for_contactList .verticalColumn-item, .verticalColumn.for_twoColumns.for_supportList .verticalColumn-item {
  border-bottom: 1px solid #ababab;
}

.verticalColumn.for_twoColumns.for_contactList .verticalColumn-item:last-of-type, .verticalColumn.for_twoColumns.for_supportList .verticalColumn-item:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_twoColumns.for_supportList .verticalColumn-item {
    border-bottom: none;
  }
}

.verticalColumn.for_twoColumns.for_supportList .verticalColumn-item:last-of-type {
  border-bottom: none;
}

.verticalColumn.for_twoColumns.for_contactList .verticalColumn-item {
  padding-bottom: 30px;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_twoColumns.for_contactList .verticalColumn-item {
    padding-bottom: 60px;
    width: 100%;
  }
}

.verticalColumn.for_twoColumns.for_contactList .verticalColumn-item .verticalColumn-item {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.verticalColumn.for_twoColumnsAll .verticalColumn-item {
  width: 47%;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_twoColumnsAll .verticalColumn-item {
    margin-right: 4%;
    width: 48%;
  }
  .verticalColumn.for_twoColumnsAll .verticalColumn-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_twoColumnsAll .verticalColumn-item.is_image {
    width: 27%;
  }
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_twoColumnsAll .verticalColumn-item.is_content {
    width: 69%;
  }
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_threeColumns .verticalColumn-item-text {
    margin-top: 30px;
  }
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_threeColumns .verticalColumn-item {
    margin-right: 3.5%;
    width: 31%;
  }
  .verticalColumn.for_threeColumns .verticalColumn-item:nth-child(3n) {
    margin-right: 0;
  }
}

.verticalColumn.for_threeColumns .verticalColumn-item .heading_level4 {
  margin-top: 0;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_threeColumns .verticalColumn-item .heading_level4 {
    margin-bottom: 30px;
  }
}

.verticalColumn.for_threeColumns .verticalColumn-item-image + .heading_level4 {
  margin-top: 15px;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_threeColumns .verticalColumn-item-image + .heading_level4 {
    margin-top: 30px;
  }
}

.verticalColumn.for_threeColumns .verticalColumn-item .heading_level4:last-child {
  margin-top: 14px;
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_threeColumns .verticalColumn-item .heading_level4:last-child {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 750px) {
  .verticalColumn.for_fourColumns .verticalColumn-item {
    width: 228px;
  }
  .verticalColumn.for_fourColumns .verticalColumn-item:nth-child(4n) {
    margin-right: 0;
  }
}

.block .productList.for_verticalTwoColumnsAll .productList-list {
  width: 100%;
}

.for_content .verticalColumn-item-image {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #d8d8d8;
}

@media screen and (min-width: 750px) {
  .news .verticalColumn-item:nth-child(4n) {
    margin-right: 40px;
  }
}

.verticalColumn.is_imageMargin .verticalColumn-item-image {
  padding: 5px;
}

.verticalColumn.with_grayBackground .verticalColumn-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #efefef;
  padding: 15px 10px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .verticalColumn.with_grayBackground .verticalColumn-item {
    padding: 20px;
  }
}

.verticalColumn.with_grayBackground .verticalColumn-item-image {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 95px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 750px) {
  .verticalColumn.with_grayBackground .verticalColumn-item-image {
    height: 210px;
  }
}

.verticalColumn.with_grayBackground .verticalColumn-item-text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  min-height: 45px;
}

@media screen and (min-width: 750px) {
  .verticalColumn.with_grayBackground .verticalColumn-item-text {
    min-height: 70px;
  }
}

@media screen and (min-width: 750px) {
  .verticalColumn.is_centered {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.verticalColumn.for_threeColumns .verticalColumn-item .heading_level4:last-child {
  margin-top: 5px;
}

.video {
  margin: 20px 0;
}

@media screen and (min-width: 750px) {
  .video {
    margin: 40px 0;
  }
}

.video.is_youtube .video-content {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}

.video.is_youtube .video-content iframe {
  height: 100%;
  right: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video.is_jstream .video-content {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}

.product_page_opaque {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
}

.product_confirm {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  width: 100%;
  z-index: 11000;
  opacity: 0.9;
}

.noScriptMsg {
  border: 2px solid #d8d8d8;
  margin: 20px 10px;
  padding: 8px;
}

@media screen and (min-width: 750px) {
  .noScriptMsg {
    margin: 20px auto;
    width: 1040px;
  }
  .noScriptMsg.is_front {
    margin-top: 56px;
  }
}

.noScriptMsg p {
  color: #808080;
  font-size: 12px;
}

.noScriptMsg .is_red {
  color: #ff0000;
}

@media screen and (min-width: 750px) {
  .imageSameHeight .br--visibleSP {
    display: none;
  }
}

.imageSameHeight .br--visiblePC {
  display: none;
}

@media screen and (min-width: 750px) {
  .imageSameHeight .br--visiblePC {
    display: block;
  }
}

.imageSameHeight__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 750px) {
  .imageSameHeight__wrap {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.imageSameHeight__item {
  text-align: center;
  margin: 0 auto;
}

.imageSameHeight__item + .imageSameHeight__item {
  margin-top: 20px;
}

@media screen and (min-width: 750px) {
  .imageSameHeight__item + .imageSameHeight__item {
    margin-top: 0;
  }
}

.imageSameHeight__text {
  margin-top: 20px;
}

.swiperTemplate {
  height: auto;
  overflow-x: hidden;
  position: relative;
}

.swiperTemplate__slideItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: black;
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

@media screen and (min-width: 750px) {
  .swiperTemplate__slideItem {
    margin: 0;
  }
}

.swiperTemplate__slideItem img {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .swiperTemplate__slideNav {
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 45%;
    width: 1040px;
  }
}

.swiperTemplate__slideNavItem {
  position: absolute;
  top: 45%;
  z-index: 1;
}

.swiperTemplate__slideNavItem.swiperTemplateButton__prev {
  left: 10px;
}

@media screen and (min-width: 750px) {
  .swiperTemplate__slideNavItem.swiperTemplateButton__prev {
    left: 0;
  }
}

.swiperTemplate__slideNavItem.swiperTemplateButton__next {
  right: 10px;
}

@media screen and (min-width: 750px) {
  .swiperTemplate__slideNavItem.swiperTemplateButton__next {
    right: 0;
  }
}

.swiperTemplateButton {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #b9b9b9;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 16px;
}

@media screen and (min-width: 750px) {
  .swiperTemplateButton {
    -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    height: 44px;
    width: 44px;
  }
}

@media screen and (min-width: 750px) {
  .swiperTemplateButton:hover {
    opacity: .8;
  }
}

.swiperTemplateButton:before {
  content: "";
  display: inline-block;
}

.swiperTemplateButton__prev:before {
  display: inline-block;
  height: 12px;
  width: 8px;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom left/100% 50%, -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top right/100% 50%;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom left/100% 50%, linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top right/100% 50%;
}

@media screen and (min-width: 750px) {
  .swiperTemplateButton__prev:before {
    display: inline-block;
    height: 16px;
    width: 12px;
    background: -webkit-gradient(linear, left bottom, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom left/100% 50%, -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top right/100% 50%;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom left/100% 50%, linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top right/100% 50%;
  }
}

.swiperTemplateButton__next:before {
  display: inline-block;
  height: 12px;
  width: 8px;
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom right/100% 50%;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom right/100% 50%;
}

@media screen and (min-width: 750px) {
  .swiperTemplateButton__next:before {
    display: inline-block;
    height: 16px;
    width: 12px;
    background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat top left/100% 50%, -webkit-gradient(linear, right bottom, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #fff)) no-repeat bottom right/100% 50%;
    background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #fff 50.5%) no-repeat bottom right/100% 50%;
  }
}

.swiperTemplatePagination {
  text-align: center;
}

.swiperTemplatePagination .swiper-pagination-bullet {
  background-color: #b9b9b9;
  border-radius: 0;
  height: 4px;
  margin-right: 5px;
  opacity: 1;
  width: 34px;
}

@media screen and (min-width: 750px) {
  .swiperTemplatePagination .swiper-pagination-bullet {
    height: 5px;
    margin-right: 10px;
    width: 33px;
  }
}

.swiperTemplatePagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.swiperTemplatePagination .swiper-pagination-bullet-active {
  background-color: #7374f2;
}

.hidden-mobile {
  display: none;
}

@media screen and (min-width: 750px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-pc {
  display: block;
}

@media screen and (min-width: 750px) {
  .hidden-pc {
    display: none;
  }
}

.textAlign_left {
  text-align: left;
}

.textAlign_center {
  text-align: center;
}

.textAlign_right {
  text-align: right;
}

[class*="l-width"] {
  width: 100%;
}

.c-formItem {
  position: relative;
  margin: 10px 0 0;
}

.c-formItem input:focus {
  outline: none;
}

.c-formItem input[type="checkbox"] {
  display: none;
  cursor: pointer;
}

.c-formItem input[type="checkbox"]:checked + label::before {
  background-color: #999999;
}

.c-formItem input[type="checkbox"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  left: 7px;
  top: 6px;
  height: 11px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.c-formItem input[type="checkbox"] + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #464646;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
  line-height: 1.6;
}

.c-formItem input[type="checkbox"] + label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 2.5px;
  width: 20px;
  height: 20px;
  border: 1px solid #999999;
  background-color: #fff;
}

.c-formItem input[type="text"],
.c-formItem input[type="password"],
.c-formItem input[type="email"],
.c-formItem input[type="tel"],
.c-formItem select {
  margin-top: 5px;
  padding: 5px 0 5px 10px;
  border: solid 1px #b9b9b9;
  width: 100%;
  font-size: 16px;
  color: #464646;
  border-radius: 1px;
  background-color: #fff;
}

.c-formItem input[type="text"]::-webkit-input-placeholder {
  color: #999999;
}

.c-formItem input[type="text"]::-moz-placeholder {
  color: #999999;
}

.c-formItem input[type="text"]:-ms-input-placeholder {
  color: #999999;
}

.c-formItem input[type="text"]::-ms-input-placeholder {
  color: #999999;
}

.c-formItem input[type="text"]::placeholder {
  color: #999999;
}

.c-formItem textarea {
  display: block;
  padding: 10px;
  font-size: 16px;
  margin-top: 5px;
  color: #464646;
  border: solid 1px #b9b9b9;
  border-radius: 1px;
  background-color: #fff;
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 750px) {
  .c-formItem textarea {
    height: 120px;
  }
}

.c-formItem__selectWrap {
  position: relative;
}

.c-formItem__selectWrap .icon-arrowBottom-small,
.c-formItem__selectWrap + .icon-arrowBottom-small {
  color: #464646;
  cursor: pointer;
  pointer-events: none;
  position: absolute;
  line-height: 1.5;
  font-size: 20px;
  height: 30px;
  right: 5px;
}

.c-formItem__selectWrap .icon-arrowBottom-small {
  top: 3px;
}

.c-formItem__selectWrap + .icon-arrowBottom-small {
  bottom: 1px;
}

.c-formItem__select,
.c-formItem [name="zipdisp"] select {
  -webkit-appearance: none;
  /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none;
  /* ベンダープレフィックス(Firefox用) */
  appearance: none;
  /* 標準のスタイルを無効にする */
}

.c-formItem__select::-ms-expand,
.c-formItem [name="zipdisp"] select::-ms-expand {
  /* select要素のデザインを無効にする（IE用） */
  display: none;
}

.c-formItem__label, .c-formItem__labelChild {
  margin: 15px 0 0;
  font-size: 16px;
}

.c-formItem__label {
  font-weight: bold;
}

.c-formItem__required {
  color: #ff0000;
  font-weight: normal;
}

.c-formItem__text {
  margin: 0 5px 0 0;
  word-wrap: break-word;
}

.c-formItem__confirmationText {
  margin: 5px 0 0 10px;
  word-wrap: break-word;
}

.c-formItem__message, .c-formItem__message--checkbox {
  color: #ff0000;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
}

.c-formItem__message--checkbox {
  padding-left: 25px;
}

.c-formItem__buttonWrap, .c-formItem__buttonWrap--narrowWidth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-formItem__buttonWrap > input[type="text"].c-formItem__textBox, .c-formItem__buttonWrap--narrowWidth > input[type="text"].c-formItem__textBox {
  margin: 0 5px 0 0;
}

.c-formItem__buttonWrap--narrowWidth {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .c-formItem__buttonWrap--narrowWidth {
    width: 30%;
  }
}

.c-formItem__checkboxLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.c-formItem__checkboxLabelText {
  margin: 0 0 0 2px;
}

.c-formItem__errorMessageArea {
  border: 1px solid #ff0000;
  width: 100%;
  padding: 10px;
  text-align: left;
}

.c-formItem__errorMessageArea + * {
  margin-top: 15px;
}

[class*="c-formItem"][class*="__annotation"] {
  font-size: 14px;
  font-weight: normal;
  display: block;
  margin-top: 3px;
}

@media screen and (min-width: 750px) {
  [class*="c-formItem"][class*="__annotation"] {
    margin: 0 0 0 5px;
    display: inline-block;
  }
}

[class*="c-formItem"][class*="__annotation"][class*="--block"] {
  display: block;
  margin: 3px 0 0 0;
}

[class*="c-formItem"][class*="__annotation"][class*="--red"] {
  color: #ff0000;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  text-align: center;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

.c-modal::-webkit-scrollbar {
  /* Safari, Chrome 対応 */
  display: none;
}

@media screen and (min-width: 750px) {
  .c-modal__innerWrap--scroll {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 5px;
  }
}

@media screen and (min-width: 750px) and (-ms-high-contrast: none), screen and (min-width: 750px) and (-ms-high-contrast: active) {
  .c-modal__innerWrap--scroll {
    -ms-overflow-style: scrollbar;
  }
}

.c-modal__wrap {
  width: 100%;
  margin-top: 0;
  background-color: #fff;
  padding: 45px 30px 150px;
  position: relative;
  text-align: left;
  display: inline-block;
}

@media screen and (min-width: 750px) {
  .c-modal__wrap {
    margin: 10vh 0 5vh;
    width: 600px;
    padding: 40px 70px;
  }
}

.c-modal__closeButton {
  position: absolute;
  right: 25px;
  top: 20px;
}

@media screen and (min-width: 750px) {
  .c-modal__closeButton {
    top: 25px;
  }
}

.c-modal__closeButton .icon-close-button {
  color: #464646;
  font-size: 25px;
}

.c-modal__title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

@media screen and (min-width: 750px) {
  .c-modal__title {
    font-size: 28px;
  }
}

.c-modal__title + * {
  margin-top: 30px;
}

@media screen and (min-width: 750px) {
  .c-modal__title + * {
    margin-top: 35px;
  }
}

.c-modal__mainArea > :first-child {
  margin-top: 0;
}

.c-modal__form, .c-modal__text {
  margin-top: 20px;
}

.c-modal__form > :first-child, .c-modal__text > :first-child {
  margin-top: 0;
}

.c-modal__text {
  word-wrap: break-word;
}

.c-modal__text p {
  margin: 0;
}

.c-modal__text > :not(:first-child) {
  margin-top: 10px;
}

.c-modal__formText {
  margin: 0;
  font-weight: bold;
}

.c-modal__formText + * {
  margin: 8px 0 0;
}

.c-modal__annotation {
  margin: 5px 0 0 15px;
}

.c-modal__annotation > :not(:first-child) {
  margin-top: 2px;
}

.c-modal__annotationText {
  font-size: 14px;
}

.c-modal__link {
  display: block;
}

.c-modal__recaptcha {
  margin: 30px auto 0;
}

.c-modal__recaptcha > img {
  height: 75px;
}

.c-modal__accept {
  margin-top: 30px;
}

.c-modal__accept > :first-child {
  margin-top: 0;
}

.c-modal__accept > :not(:first-child) {
  margin-top: 20px;
}

.c-modal__buttonArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}

.p-button,
[class*="p-button--"] {
  padding: 10px 30px;
  background-color: #080808;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  min-width: 30%;
}

@media screen and (min-width: 750px) {
  .p-button,
  [class*="p-button--"] {
    min-width: 180px;
  }
}

.p-button:hover, .p-button:active, .p-button:focus,
[class*="p-button--"]:hover,
[class*="p-button--"]:active,
[class*="p-button--"]:focus {
  cursor: pointer;
  background-color: #7374f2;
  color: #fff;
}

.p-button + .p-button,
.p-button + [class*="p-button--"],
[class*="p-button--"] + .p-button,
[class*="p-button--"] + [class*="p-button--"] {
  margin-left: 15px;
}

.p-button[class*="narrowPadding"],
[class*="p-button--"][class*="narrowPadding"] {
  padding: 8px 15px;
  width: auto;
  min-width: auto;
}

.p-button[class*="modal"],
[class*="p-button--"][class*="modal"] {
  min-width: 30%;
}

.p-button[class*="disabled"],
[class*="p-button--"][class*="disabled"] {
  background-color: #f5f5f5;
  border: solid 1px #cccccc;
  cursor: default;
}

.p-button[class*="disabled"] .p-button__text,
[class*="p-button--"][class*="disabled"] .p-button__text {
  color: #cccccc;
}

.p-button__text {
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  font-size: 14px;
  word-break: keep-all;
  line-height: 1;
}

.p-form {
  background-color: #efefef;
  padding: 25px 10px;
}

@media screen and (min-width: 750px) {
  .p-form {
    padding: 60px 100px;
  }
}

.p-form > :first-child {
  margin-top: 0;
}

.p-form__formItem, .p-form__textItem {
  margin-top: 20px;
}

.p-form__formItem > :first-child, .p-form__textItem > :first-child {
  margin-top: 0;
}

.p-form__textItem p {
  margin: 0;
}

.p-form__textItem > :not(:first-child) {
  margin-top: 10px;
}

.p-form__formText {
  margin: 0;
  font-weight: bold;
}

.p-form__formText + * {
  margin: 8px 0 0;
}

.p-form__buttonArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
}

.p-stepNav {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .p-stepNav {
    width: 570px;
  }
}

.p-stepNav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-stepNav__stepItem {
  display: block;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.p-stepNav__stepItem::before {
  content: "";
  border-top: 2px solid #e6e6e6;
  position: absolute;
  width: 100%;
  top: 20px;
  left: -50%;
  cursor: default;
}

.p-stepNav__stepItem:first-child::before {
  display: none;
}

.p-stepNav__stepItem.is-complete::before, .p-stepNav__stepItem.is-active::before {
  border-top: 2px solid #6e6e6e;
}

.p-stepNav__stepItem.is-complete .p-stepNav__marker, .p-stepNav__stepItem.is-active .p-stepNav__marker {
  background-color: #6e6e6e;
}

.p-stepNav__stepItem.is-complete .p-stepNav__number, .p-stepNav__stepItem.is-active .p-stepNav__number {
  color: #ffffff;
}

.p-stepNav__stepItem.is-complete .p-stepNav__text, .p-stepNav__stepItem.is-active .p-stepNav__text {
  color: #333333;
}

.p-stepNav__marker {
  background-color: #e6e6e6;
  border-radius: 50%;
  font-size: 24px;
  height: 40px;
  margin: 0 auto;
  width: 40px;
  text-align: center;
  position: relative;
  color: #333333;
  z-index: 5;
}

.p-stepNav__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
  color: #333333;
  font-size: 24px;
  line-height: 40px;
}

.p-stepNav__text {
  color: #6e6e6e;
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 750px) {
  .p-stepNav__text {
    font-size: 18px;
  }
}

[class*="u-flex"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

[class*="u-flex"][class*="RightEnd"] {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

[class*="u-flex"][class*="Center"] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.u-flexItemRight {
  justify-items: flex-end;
}

.u-noMargin {
  margin: 0;
}

@media screen and (min-width: 750px) {
  .u-noMargin {
    margin: 0;
  }
}

.u-noMargin--top {
  margin-top: 0;
}

@media screen and (min-width: 750px) {
  .u-noMargin--top {
    margin-top: 0;
  }
}

.u-noMargin--bottom {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .u-noMargin--bottom {
    margin-bottom: 0;
  }
}

[class*="u-margin"][class*="--SP30"] {
  margin-top: 30px;
}

@media screen and (min-width: 750px) {
  [class*="u-margin"][class*="--PC30"] {
    margin-top: 30px;
  }
}

@media screen and (min-width: 750px) {
  [class*="u-margin"][class*="--PC100"] {
    margin-top: 100px;
  }
}

.u-wordWrap--breakWord {
  word-wrap: break-word;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .u-wordWrap--breakWord {
    display: block;
  }
}
/*# sourceMappingURL=../maps/style.css.map */
