@charset "UTF-8";
/*------------------------------------------------------------------------------

  Common

------------------------------------------------------------------------------*/
/*
  Utility
------------------------------------------------------------------------------*/
.pcOnly {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}
@media only screen and (max-width: 767px) {
  .spOnly {
    display: block;
  }
}

.pcOnly-ib {
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .pcOnly-ib {
    display: none;
  }
}

.spOnly-ib {
  display: none;
}
@media only screen and (max-width: 767px) {
  .spOnly-ib {
    display: inline-block;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

@media print, screen and (min-width: 768px) {
  .p0 {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .p0 {
    padding-top: 0 !important;
    border-bottom: 1px solid #eaeced;
  }
}

/*
  Transition
------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .link_hover {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
.link_hover:hover {
  color: #fa0000 !important;
}

.link_opacity {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .link_opacity {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
@media print, screen and (min-width: 768px) {
  .link_opacity:hover {
    opacity: 0.75;
  }
}

@media print, screen and (min-width: 768px) {
  .img_hover img {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
@media print, screen and (min-width: 768px) {
  .img_hover:hover img {
    opacity: 0.85;
  }
}

.btn_hover:hover .mod-btn > * {
  background-color: #fa0000;
  background-position: -100% 100%;
  color: #fff;
}

.border_underLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: 2px solid #e6e6e6;
}
.border_underLine::before, .border_underLine::after {
  content: "";
  position: absolute;
  display: block;
}
.border_underLine::before {
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  height: 2px;
  top: 100%;
  left: 0;
  background-color: #fa0000;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.border_underLine::after {
  height: 2px;
  background-color: #fa0000;
  top: 100%;
  right: 0;
}
@media print, screen and (min-width: 768px) {
  .border_underLine::after {
    width: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .border_underLine::after {
    width: 8vw;
  }
}

/*
  Lazy
------------------------------------------------------------------------------*/
.delighter .d-fadeIn {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), opacity 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 1000ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  opacity: 0;
}
.delighter .d-fadeIn.delay {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.delighter .lazy {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.delighter.started .d-fadeIn {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.delighter.started .lazy {
  opacity: 1;
}

/*
  Icon
------------------------------------------------------------------------------*/
.arrow_hover {
  position: relative;
}
.arrow_hover:hover .icon_arrow::after {
  -webkit-animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
          animation: arrowSlide 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
}
.arrow_hover:hover .border_underLine::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.arrow_hover:hover .arrow_diagonal-g::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}
.arrow_hover:hover .icon_arrow-g::after {
  background-image: url(/shared/img/icon/icon_arrow.svg);
}
.arrow_hover.arrow_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.arrow_hover .inner_txt {
  margin-right: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.arrow_hover.reverse:hover .icon_arrow::after {
  -webkit-animation: arrowSlide_r 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
          animation: arrowSlide_r 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s 1 forwards;
}

.shift_hover {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media print, screen and (min-width: 768px) {
  .shift_hover:hover {
    -webkit-box-shadow: 0 5px 20px 0 rgba(4, 0, 0, 0.1);
            box-shadow: 0 5px 20px 0 rgba(4, 0, 0, 0.1);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
@media only screen and (max-width: 767px) {
  .shift_hover:hover {
    -webkit-box-shadow: 0 1.3333333333vw 5.3333333333vw 0 rgba(4, 0, 0, 0.1);
            box-shadow: 0 1.3333333333vw 5.3333333333vw 0 rgba(4, 0, 0, 0.1);
    -webkit-transform: translateY(-0.8vw);
            transform: translateY(-0.8vw);
  }
}

.icon_arrow {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .icon_arrow {
    margin-left: 13px;
    width: 12px;
    height: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_arrow {
    margin-left: 2.9333333333vw;
    width: 3.2vw;
    height: 3.4666666667vw;
  }
}
.icon_arrow::after {
  content: "";
  position: absolute;
  display: block;
  background: url(/shared/img/icon/icon_arrow.svg) center/contain no-repeat;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .icon_arrow::after {
    width: 12px;
    height: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_arrow::after {
    width: 3.2vw;
    height: 3.4666666667vw;
  }
}
.icon_arrow.reverse::after {
  background-image: url(/shared/img/icon/icon_arrow_r.svg);
}
@media print, screen and (min-width: 768px) {
  .icon_arrow.arrow_diagonal, .icon_arrow.arrow_diagonal-g {
    width: 12px;
    height: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_arrow.arrow_diagonal, .icon_arrow.arrow_diagonal-g {
    width: 3.2vw;
    height: 3.4666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .icon_arrow.arrow_diagonal::after, .icon_arrow.arrow_diagonal-g::after {
    width: 12px;
    height: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_arrow.arrow_diagonal::after, .icon_arrow.arrow_diagonal-g::after {
    width: 3.2vw;
    height: 3.4666666667vw;
  }
}
.icon_arrow.arrow_diagonal {
  position: absolute;
  display: block;
  margin-left: 0;
}
.icon_arrow.arrow_diagonal::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}
.icon_arrow.arrow_diagonal-g {
  margin-left: 10px;
}
.icon_arrow.arrow_diagonal-g::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal_g.svg);
}
.icon_arrow.icon_arrow-w::after {
  background-image: url(/shared/img/icon/icon_arrow_w.svg);
}
.icon_arrow.icon_arrow-g::after {
  background-image: url(/shared/img/icon/icon_arrow_g.svg);
}
.icon_arrow.icon_blank::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}
@media print, screen and (min-width: 768px) {
  .icon_arrow.icon_dl {
    width: 11px;
    height: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_arrow.icon_dl {
    width: 2.9333333333vw;
    height: 3.7333333333vw;
  }
}
.icon_arrow.icon_dl::after {
  background-image: url(/shared/img/icon/icon_dl.svg);
}
@media print, screen and (min-width: 768px) {
  .icon_arrow.icon_dl::after {
    width: 11px;
    height: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_arrow.icon_dl::after {
    width: 2.9333333333vw;
    height: 3.7333333333vw;
  }
}
.icon_arrow.icon_after {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .icon_arrow.icon_after {
    margin-left: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_arrow.icon_after {
    margin-left: 2.1333333333vw;
  }
}

.icon_pdf::before, .icon_pdf::after {
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  position: relative;
  top: -1px;
}
.icon_pdf::before {
  position: relative;
  content: "PDF";
  color: #fff;
  background-color: #000;
  text-align: center;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  .icon_pdf::before {
    margin-left: 13px;
    font-size: 10px;
    padding: 1px 2px;
    width: 28px;
    top: -2px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_pdf::before {
    margin-left: 2.4vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
    padding: 0.2666666667vw 0.5333333333vw;
    width: 7.4666666667vw;
    top: -0.5333333333vw;
  }
}
.icon_pdf[data-size]::after {
  content: "(" attr(data-size) ")";
  color: #555;
}
@media print, screen and (min-width: 768px) {
  .icon_pdf[data-size]::after {
    font-size: 12px;
    margin-left: 7px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_pdf[data-size]::after {
    font-size: 12px;
    font-size: 3.2vw;
    margin-left: 1.8666666667vw;
  }
}

.icon_contact {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
@media print, screen and (min-width: 768px) {
  .icon_contact {
    width: 25px;
    height: 20px;
    margin-right: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_contact {
    width: 6.6666666667vw;
    height: 5.3333333333vw;
    margin-right: 4.8vw;
  }
}
.icon_contact::before {
  content: "";
  position: absolute;
  display: block;
  background: url(/shared/img/icon/icon_contact_w.svg) center/contain no-repeat;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  .icon_contact::before {
    width: 25px;
    height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_contact::before {
    width: 6.6666666667vw;
    height: 5.3333333333vw;
  }
}

.inline-link {
  color: #777;
  text-decoration: underline;
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .inline-link {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  .inline-link {
    margin: 0 1.3333333333vw;
  }
}
.inline-link:hover {
  color: #fa0000;
  text-decoration: none;
}
.inline-link [class^=icon_] {
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .inline-link [class^=icon_] {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .inline-link [class^=icon_] {
    margin-left: 1.3333333333vw;
  }
}
.inline-link .icon_blank::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal_g.svg);
}
.inline-link:hover .icon_blank::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}

.circle_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  .circle_line .circle_txt {
    padding-left: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .circle_line .circle_txt {
    padding-left: 3.2vw;
  }
}

[class*=icon_circle] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  [class*=icon_circle] {
    width: 34px;
    height: 34px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media only screen and (max-width: 767px) {
  [class*=icon_circle] {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
  }
}
[class*=icon_circle]::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  padding-left: 2px;
  font-family: "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 768px) {
  [class*=icon_circle]::before {
    width: 34px;
    height: 34px;
    font-size: 10px;
    margin-top: 1px;
  }
}
@media only screen and (max-width: 767px) {
  [class*=icon_circle]::before {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}

.icon_circle-new::before {
  content: "NEW";
  border-color: #fa0000;
  color: #fa0000;
}
.icon_circle-limited::before {
  content: "限定";
  border-color: #09a501;
  color: #09a501;
}
.icon_circle-up::before {
  content: "UP";
  border-color: #ff7200;
  color: #ff7200;
}
.icon_circle-special::before {
  content: "特典";
  border-color: #3a61ce;
  color: #3a61ce;
}
.icon_circle-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon_circle-middle::before {
  margin-top: 0;
}
.icon_circle-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}
.icon_circle-center::before {
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .icon_circle-fill {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_circle-fill {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
}
.icon_circle-fill::before {
  content: "";
  border: none;
  background-color: #222;
}
@media print, screen and (min-width: 768px) {
  .icon_circle-fill::before {
    width: 14px;
    height: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_circle-fill::before {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
}

.icon_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: auto;
}
@media print, screen and (min-width: 768px) {
  .icon_line {
    width: 9px;
    height: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_line {
    width: 2.1333333333vw;
    height: 0.2666666667vw;
  }
}
.icon_line::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #5d5d5d;
}
@media print, screen and (min-width: 768px) {
  .icon_line::before {
    width: 9px;
    height: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_line::before {
    width: 2.1333333333vw;
    height: 0.2666666667vw;
  }
}

.icon_generic {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .icon_generic {
    margin-right: 5px;
    width: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .icon_generic {
    margin-right: 1.3333333333vw;
    width: 6.4vw;
  }
}
.icon_generic img {
  vertical-align: baseline;
  max-width: 100%;
}

/*
  IE11
------------------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, :root .icon_arrow {
    top: -3px;
  }

  *::-ms-backdrop, :root .footer_upper_nav_subList .icon_arrow {
    top: -1px;
  }

  *::-ms-backdrop, :root .icon_pdf::before {
    padding: 3px 2px 0;
  }

  *::-ms-backdrop, :root .circle_line [class*=icon_circle] {
    top: -4px;
  }

  *::-ms-backdrop, :root [class*=icon_circle]::before {
    padding: 4px 0 0 0;
  }
}
@font-face {
  font-family: "Archivo-Bold";
  src: url("/shared/fonts/Archivo-Bold.ttf") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Archivo-Regular";
  src: url("/shared/fonts/Archivo-Regular.ttf") format("woff");
  font-weight: 400;
}
/*
  Font
------------------------------------------------------------------------------*/
.font-b {
  font-family: Archivo-Bold, Arial;
}

.font-r {
  font-family: Archivo-Regular, Arial;
}

/*
  Style Guide
------------------------------------------------------------------------------*/
/*
  Animation
------------------------------------------------------------------------------*/
@-webkit-keyframes arrowSlide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes arrowSlide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes arrowSlide_r {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes arrowSlide_r {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50.0% {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
/*------------------------------------------------------------------------------

  Utlity

------------------------------------------------------------------------------*/
.bg-w {
  background-color: #fff !important;
  border-top: 1px solid #eaeced;
  border-bottom: 1px solid #eaeced;
}

/*------------------------------------------------------------------------------

  Layout

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .mod-subMenu + main .products_mainvisual {
    padding-top: 184px;
  }
}
@media only screen and (max-width: 767px) {
  .mod-subMenu + main .products_mainvisual {
    padding-top: 26.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .mod-subMenu + main .products_wrapper {
    padding-top: 184px;
  }
}
@media only screen and (max-width: 767px) {
  .mod-subMenu + main .products_wrapper {
    padding-top: 26.6666666667vw;
  }
}

@media print, screen and (min-width: 768px) {
  .products_mainvisual {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual {
    padding-top: 14.6666666667vw;
  }
}
.products_mainvisual + .products_wrapper {
  padding-top: 0 !important;
}

@media print, screen and (min-width: 768px) {
  .products_wrapper {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .products_wrapper {
    padding-top: 14.6666666667vw;
  }
}

/*------------------------------------------------------------------------------

  Products New

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .products_new_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 768px) {
  .products_new_item {
    width: calc(25% - 15px);
    margin-bottom: 20px;
  }
}
.products_new_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e0e0e0;
  position: relative;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  .products_new_item > a {
    padding: 10px 20px;
    height: 100%;
    font-size: 14px;
    min-height: 82px;
  }
}
@media only screen and (max-width: 767px) {
  .products_new_item > a {
    padding: 1.3333333333vw 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
    min-height: 16vw;
  }
}
.products_new_item > a::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  border-width: 2px;
  border-style: solid;
  padding-left: 2px;
  font-family: "Helvetica Neue", HelveticaNeue, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴシック", Hiragino Sans, Verdana, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .products_new_item > a::before {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .products_new_item > a::before {
    width: 9.0666666667vw;
    height: 9.0666666667vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_new_item + .products_new_item {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products_new_item + .products_new_item {
    margin-top: 1.0666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_new_item:nth-child(4n+1) {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .products_new_item:nth-child(4n+1):nth-last-child(-n+4), .products_new_item:nth-child(4n+1):nth-last-child(-n+4) ~ li {
    margin-bottom: 0;
  }
}
.products_new_item.new > a::before {
  content: "NEW";
  border-color: #fa0000;
  color: #fa0000;
}
.products_new_item.limited > a::before {
  content: "限定";
  border-color: #09a501;
  color: #09a501;
}
.products_new_item.up > a::before {
  content: "UP";
  border-color: #ff7200;
  color: #ff7200;
}
@media print, screen and (min-width: 768px) {
  .products_new_txt {
    padding-left: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .products_new_txt {
    padding-left: 2.1333333333vw;
  }
}

/*------------------------------------------------------------------------------

  Products Mainvisual

------------------------------------------------------------------------------*/
.products_mainvisual_inner {
  position: relative;
}
.products_mainvisual_img img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 1280px;
    padding: 0 90px;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_content {
    padding: 12vw 5.3333333333vw;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_content .mod-btn__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_content .mod-btn__wrapper {
    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;
    margin-top: 5.3333333333vw;
  }
}
.products_mainvisual_content .mod-btn__wrapper .mod-btn > a {
  color: #222;
  border-color: #fff;
  background-color: #fff;
  background-image: none;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_content .mod-btn__wrapper .mod-btn > a {
    min-width: 120px;
    padding: 9px 40px 10px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_content .mod-btn__wrapper .mod-btn > a {
    min-width: 32vw;
    padding: 2.4vw 10.6666666667vw 2.6666666667vw;
  }
}
.products_mainvisual_content .mod-btn__wrapper .mod-btn > a:hover {
  color: #fa0000;
}
.products_mainvisual_content .mod-btn__wrapper .mod-btn > a:hover .icon_arrow::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal.svg);
}
.products_mainvisual_content .mod-btn__wrapper .mod-btn > a.color-t:hover {
  background-color: #fff;
  color: #222;
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_content .mod-btn__wrapper .mod-btn + .mod-btn {
    margin-top: 0;
    margin-left: 4vw;
  }
}
.products_mainvisual_content.white .products_mainvisual_subTtl {
  color: #fff;
}
.products_mainvisual_content.white .products_mainvisual_mainTtl {
  color: #fff;
}
.products_mainvisual_content.white .products_mainvisual_txt {
  color: #fff;
}
.products_mainvisual_content.white .mod-btn > a.color-t:hover {
  background-color: #fff;
  color: #222;
}
.products_mainvisual_content.white .mod-btn > a.color-t {
  background-color: transparent;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_content.black.products_mainvisual_content {
    background-color: #fff;
  }
}
.products_mainvisual_content.black .products_mainvisual_subTtl {
  color: #222;
}
.products_mainvisual_content.black .products_mainvisual_mainTtl {
  color: #222;
}
.products_mainvisual_content.black .products_mainvisual_txt {
  color: #222;
}
.products_mainvisual_content.black .mod-btn > a {
  color: #fff;
  border-color: #fa0000;
  background-color: #fa0000;
}
.products_mainvisual_content.black .mod-btn > a:hover {
  color: #fa0000;
  background-color: #fff;
}
.products_mainvisual_content.black .mod-btn > a.color-t:hover {
  background-color: #222;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_content.black .mod-btn > a.color-t {
    background-color: transparent;
    border-color: #222;
    color: #222;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_content.black .mod-btn > a.color-t {
    background-color: transparent;
    color: #222;
    border-color: #222;
  }
}
.products_mainvisual_content.black .mod-btn > a .arrow_diagonal::after {
  background-image: url(/shared/img/icon/icon_arrow_diagonal_w.svg);
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_subTtl {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_subTtl {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_subTtl + .products_mainvisual_mainTtl {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_subTtl + .products_mainvisual_mainTtl {
    margin-top: 3.2vw;
  }
}
.products_mainvisual_mainTtl {
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_mainTtl > img {
    width: 53.8922156%;
  }
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_txt {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_txt {
    font-size: 14px;
    font-size: 3.7333333333vw;
    margin-top: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_notice {
    padding: 4vw 0;
  }
}
.products_mainvisual_notice_item {
  position: relative;
  color: #fff;
  line-height: 1.9;
}
@media print, screen and (min-width: 768px) {
  .products_mainvisual_notice_item {
    font-size: 13px;
    padding: 8px 0;
  }
}
@media only screen and (max-width: 767px) {
  .products_mainvisual_notice_item {
    font-size: 11px;
    font-size: 2.9333333333vw;
    text-align: center;
  }
}

/*------------------------------------------------------------------------------

  Products News

------------------------------------------------------------------------------*/
.products_news_data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  .products_news_data + .products_news_txt {
    margin-left: 30px;
  }
}
.products_news_date {
  color: #999;
}
@media print, screen and (min-width: 768px) {
  .products_news_date {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .products_news_date {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
.products_news_tag {
  border-width: 1px;
  border-style: solid;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  text-align: center;
  cursor: default;
}
@media print, screen and (min-width: 768px) {
  .products_news_tag {
    font-size: 11px;
    margin-left: 19px;
    padding: 2px 5px 1px;
    min-width: 97px;
  }
}
@media only screen and (max-width: 767px) {
  .products_news_tag {
    font-size: 10px;
    font-size: 2.6666666667vw;
    margin-left: 1.8666666667vw;
    padding: 0.5333333333vw 1.3333333333vw;
    min-width: 25.8666666667vw;
  }
}
.products_news_link {
  color: #333;
  display: block;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .products_news_link {
    font-size: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 767px) {
  .products_news_link {
    font-size: 14px;
    font-size: 3.7333333333vw;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
@media print, screen and (min-width: 768px) {
  .products_news_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  .products_news_item + .products_news_item {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products_news_item + .products_news_item {
    margin-top: 8vw;
  }
}
.products_news_txt {
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .products_news_txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media only screen and (max-width: 767px) {
  .products_news_txt {
    margin-top: 2.6666666667vw;
  }
}

/*
  IE11
------------------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, :root .products_news_tag {
    padding: 5px 5px 0;
  }
}
/*------------------------------------------------------------------------------

  Layout

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .products_wrapper > *:last-child {
    padding: 100px 0 130px;
  }
}
@media only screen and (max-width: 767px) {
  .products_wrapper > *:last-child {
    padding: 16vw 0 24vw;
  }
}

.border-t {
  border-top: 1px solid #eaeced;
}

.border-uad {
  border-top: 1px solid #eaeced;
  border-bottom: 1px solid #eaeced;
}

/*------------------------------------------------------------------------------

  Products New

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .products_new_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*------------------------------------------------------------------------------

  Products Feature

------------------------------------------------------------------------------*/
.products_feature {
  counter-reset: number;
}
@media print, screen and (min-width: 768px) {
  .products_feature_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media print, screen and (min-width: 768px) {
  .products_feature_inner > * {
    width: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  .products_feature_inner + .products_feature_inner {
    margin-top: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_inner + .products_feature_inner {
    margin-top: 16vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_feature_inner:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.products_feature_inner:nth-child(2n) .products_feature_content_inner::after {
  right: auto;
}
@media print, screen and (min-width: 768px) {
  .products_feature_inner:nth-child(2n) .products_feature_content_inner::after {
    left: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_inner:nth-child(2n) .products_feature_content_inner::after {
    left: 63%;
  }
}
@media print, screen and (min-width: 768px) {
  .products_feature_inner .mod-img__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media print, screen and (min-width: 768px) {
  .products_feature_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.products_feature_content_inner {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .products_feature_content_inner {
    padding: 50px 100px;
    min-height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_content_inner {
    padding: 9.3333333333vw 5.3333333333vw;
    margin: 0 -5.3333333333vw 0 -5.3333333333vw;
    overflow: hidden;
  }
}
.products_feature_content_inner::before {
  content: counter(number, decimal-leading-zero);
  position: relative;
  display: block;
  counter-increment: number;
  top: 0;
  left: 0;
  font-family: Archivo-Bold, Arial;
  color: #222;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .products_feature_content_inner::before {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_content_inner::before {
    font-size: 32px;
    font-size: 8.5333333333vw;
    margin-bottom: 4vw;
  }
}
.products_feature_content_inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
  height: 100%;
  background-color: #f4f6f7;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  .products_feature_content_inner::after {
    right: 53%;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_content_inner::after {
    right: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_content + .products_feature_figure {
    margin-top: 6.6666666667vw;
  }
}
.products_feature_ttl {
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .products_feature_ttl {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_ttl {
    font-size: 22px;
    font-size: 5.8666666667vw;
  }
}
.products_feature_txt {
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .products_feature_txt {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products_feature_txt {
    margin-top: 2.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_feature_img {
    max-width: 560px;
    height: 100%;
  }
}
.products_feature_img img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .products_feature_figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/*------------------------------------------------------------------------------

  Products Function

------------------------------------------------------------------------------*/
.products_function_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .products_function_item {
    width: calc(20% - 16px);
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_item {
    width: calc(50% - 1.33334vw);
    margin-bottom: 2.6666666667vw;
  }
}
.products_function_item > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #e0e0e0;
  background-color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media print, screen and (min-width: 768px) {
  .products_function_item > * {
    padding: 55px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_item > * {
    padding: 8vw 1.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function_item + .products_function_item {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_item + .products_function_item {
    margin-left: 2.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function_item:nth-child(5n+1) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_item:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function_item:nth-child(5n+1):nth-last-child(-n+5), .products_function_item:nth-child(5n+1):nth-last-child(-n+5) ~ li {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_item:nth-child(2n+1):nth-last-child(-n+2), .products_function_item:nth-child(2n+1):nth-last-child(-n+2) ~ li {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function_icon img {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_icon img {
    width: 8vw;
    height: 8vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function_icon + .products_function_ttl {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_icon + .products_function_ttl {
    margin-top: 4vw;
  }
}
.products_function_subTtl {
  color: #555 !important;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  .products_function_subTtl {
    font-size: 12px;
    margin: 17px 0 5px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_subTtl {
    font-size: 11px;
    font-size: 2.9333333333vw;
    margin: 4vw 0 0;
  }
}
.products_function_ttl {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .products_function_ttl {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_ttl {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function_ttl.bold {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function_ttl.bold {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function.related .products_function_item {
    width: calc(25% - 15px);
  }
}
@media print, screen and (min-width: 768px) {
  .products_function.related .products_function_item:nth-child(5n+1) {
    margin-left: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function.related .products_function_item:nth-child(5n+1):nth-last-child(-n+5), .products_function.related .products_function_item:nth-child(5n+1):nth-last-child(-n+5) ~ li {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function.related .products_function_item:nth-child(4n+1) {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function.related .products_function_item:nth-child(4n+1):nth-last-child(-n+4), .products_function.related .products_function_item:nth-child(4n+1):nth-last-child(-n+4) ~ li {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .products_function.related .products_function_icon img {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .products_function.related .products_function_icon img {
    width: 16vw;
    height: 16vw;
  }
}

/*
  JUST SFA
------------------------------------------------------------------------------*/
.justsfa .products_function_icon img {
  height: auto;
}
@media print, screen and (min-width: 768px) {
  .justsfa .products_function_icon img {
    width: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .justsfa .products_function_icon img {
    width: 16vw;
  }
}

/*------------------------------------------------------------------------------

  Products Banner

------------------------------------------------------------------------------*/
.products_banner > a {
  display: block;
}
.products_banner > a img {
  width: 100%;
}

/*------------------------------------------------------------------------------

  Products Case

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .case_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media print, screen and (min-width: 768px) {
  .case_item {
    width: calc(33.33% - 17px);
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 768px) {
  .case_item + .case_item {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .case_item + .case_item {
    margin-top: 10.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .case_item:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .case_item:nth-child(3n+1):nth-last-child(-n+3), .case_item:nth-child(3n+1):nth-last-child(-n+3) ~ li {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .case_img img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .case_img img {
    width: 100% !important;
    height: auto;
  }
}
.case_ttl {
  color: #222;
}
@media print, screen and (min-width: 768px) {
  .case_ttl {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .case_ttl {
    margin-top: 4vw;
  }
}
@media print, screen and (min-width: 768px) {
  .case_ttl > p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .case_ttl > p {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .case_name {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .case_name {
    margin-top: 2.6666666667vw;
  }
}
.case_name > p {
  color: #555;
}
@media print, screen and (min-width: 768px) {
  .case_name > p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .case_name > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
.case_link {
  color: #222;
}
@media print, screen and (min-width: 768px) {
  .case_link {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .case_link {
    margin-top: 5.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .case_link .border_underLine {
    padding-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .case_link .border_underLine {
    padding-bottom: 4vw;
  }
}
.case_link span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media print, screen and (min-width: 768px) {
  .case_link span {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .case_link span {
    margin-right: 5.3333333333vw;
  }
}
.case_link .icon_arrow {
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .case_link .icon_arrow {
    margin-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .case_link .icon_arrow {
    margin-right: 2.6666666667vw;
  }
}

/*------------------------------------------------------------------------------

  Products Manga

------------------------------------------------------------------------------*/
.products_manga > a {
  display: block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .products_manga > a {
    pointer-events: none;
  }
}
.products_manga_img {
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .products_manga_img::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
}
.products_manga_img img {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .products_manga_content {
    position: absolute;
    width: 1100px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media only screen and (max-width: 767px) {
  .products_manga_content {
    margin-top: 8vw;
    padding: 0 5.3333333333vw;
  }
}
@media only screen and (max-width: 767px) {
  .products_manga_content .mod-btn__wrapper {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .products_manga_ttl .products_manga_mainTtl {
    color: #fff;
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .products_manga_ttl .products_manga_mainTtl {
    text-align: center;
    font-size: 22px;
    font-size: 5.8666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_manga_ttl .products_manga_mainTtl + .products_manga_subTtl {
    margin-top: 5px;
  }
}
.products_manga_ttl .products_manga_subTtl {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .products_manga_ttl .products_manga_subTtl {
    color: #fff;
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .products_manga_ttl .products_manga_subTtl {
    text-align: center;
    font-size: 17px;
    font-size: 4.5333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_manga_txt {
    color: #fff;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .products_manga_txt {
    margin-top: 2.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_manga .mod-btn__wrapper {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .products_manga .mod-btn__wrapper {
    margin-top: 5.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_manga .btn_hover:hover .mod-btn > * {
    background-color: #fff;
    color: #222;
  }
}
@media print, screen and (min-width: 768px) {
  .products_manga .btn_hover .mod-btn > * {
    border-color: #fff;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .products_manga .btn_hover .mod-btn > * {
    pointer-events: all;
  }
}

/*------------------------------------------------------------------------------

  Products Support

------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .products_support {
    margin-left: -5.3333333333vw;
    margin-right: -5.3333333333vw;
    padding-bottom: 8vw;
  }
}
.products_support_img {
  position: relative;
}
.products_support_img::before, .products_support_img::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.products_support_img::before {
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .products_support_img::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), color-stop(50%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  }
}
@media only screen and (max-width: 767px) {
  .products_support_img::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), color-stop(60%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
  }
}
.products_support_img::after {
  background-color: rgba(0, 0, 0, 0.15);
}
.products_support_img img {
  width: 100%;
}
.products_support_content {
  position: absolute;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  left: 0;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .products_support_content {
    padding: 0 80px 0 40px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .products_support_content {
    padding: 0 5.3333333333vw;
    bottom: 6.6666666667vw;
  }
}
.products_support_ttl > p {
  color: #fff;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .products_support_ttl > p {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .products_support_ttl > p {
    font-size: 20px;
    font-size: 5.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .products_support_ttl + .products_support_txt {
    margin-top: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .products_support_ttl + .products_support_txt {
    margin-top: 1.3333333333vw;
  }
}
.products_support_txt {
  color: #fff;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .products_support_txt {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .products_support_txt {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
.products_support .swiper-wrapper.center {
  margin-top: 0;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .products_support .swiper-wrapper.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.products_support .swiper-slide > a {
  display: block;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .products_support .swiper-slide:last-child {
    margin-right: 0 !important;
  }
}
@media print, screen and (min-width: 768px) {
  .products_support .swiper-pagination {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .products_support .swiper-pagination {
    margin-top: 5.3333333333vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 767px) {
  .products_support .swiper-pagination > .swiper-pagination-bullet {
    background-color: #999;
    opacity: 1;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    outline: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .products_support .swiper-pagination > .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 4vw;
  }
}
@media only screen and (max-width: 767px) {
  .products_support .swiper-pagination > .swiper-pagination-bullet-active {
    background-color: #fa0000;
  }
}
.products_support .swiper-button-prev,
.products_support .swiper-button-next {
  display: none;
  border: 1px solid #e0e0e0;
  background: none;
  outline: 0;
}
@media print, screen and (min-width: 768px) {
  .products_support .swiper-button-prev,
.products_support .swiper-button-next {
    width: 40px;
    height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .products_support .swiper-button-prev,
.products_support .swiper-button-next {
    display: none !important;
  }
}
.products_support .swiper-button-prev.show,
.products_support .swiper-button-next.show {
  display: block;
}
.products_support .swiper-button-prev::before,
.products_support .swiper-button-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  top: 50%;
  left: calc(50% - 2px);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.products_support .swiper-button-prev:hover::before,
.products_support .swiper-button-next:hover::before {
  border-color: #fa0000;
}
.products_support .swiper-button-prev {
  left: 0;
}
.products_support .swiper-button-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(-1);
          transform: translate(-50%, -50%) rotate(45deg) scale(-1);
  left: calc(50% + 2px);
}
.products_support .swiper-button-next {
  right: 0;
}
.products_support .swiper-button-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  left: calc(50% - 2px);
}
.products_support .icon_arrow {
  position: absolute;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .products_support .icon_arrow {
    bottom: 40px;
    right: 40px;
  }
}

/*------------------------------------------------------------------------------

  Products Seminar

------------------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .seminar_program_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.seminar_program_item {
  border: 1px solid #e0e0e0;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .seminar_program_item {
    margin-top: 25px;
    padding: 40px;
    width: calc(33.33% - 17px);
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_item {
    padding: 9.3333333333vw 5.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .seminar_program_item + .seminar_program_item {
    margin-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_item + .seminar_program_item {
    margin-top: 5.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .seminar_program_item:nth-child(3n+1) {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .seminar_program_item:nth-child(3n+1):nth-last-child(-n+3), .seminar_program_item:nth-child(3n+1):nth-last-child(-n+3) ~ li {
    margin-bottom: 0;
  }
}
.seminar_program_label {
  color: #fff;
  cursor: default;
  display: inline-block;
  text-align: center;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .seminar_program_label {
    font-size: 13px;
    padding: 4px 15px 3px;
    margin-bottom: 20px;
    min-width: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_label {
    font-size: 12px;
    font-size: 3.2vw;
    padding: 1.0666666667vw 4vw 0.8vw;
    margin-bottom: 4vw;
    min-width: 24vw;
  }
}
.seminar_program_label.accepting {
  background-color: #00bb61;
}
.seminar_program_label.finished {
  background-color: #555;
}
.seminar_program_label.preparation {
  background-color: #437ce6;
}
@media print, screen and (min-width: 768px) {
  .seminar_program_ttl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_ttl {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
.seminar_program_date {
  color: #777;
}
@media print, screen and (min-width: 768px) {
  .seminar_program_date {
    font-size: 15px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_date {
    font-size: 14px;
    font-size: 3.7333333333vw;
    margin-top: 5.3333333333vw;
  }
}
.seminar_program_date > p {
  line-height: 1.3;
}
.seminar_program_date .seminar_program_time {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .seminar_program_date .seminar_program_time {
    font-size: 23px;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_date .seminar_program_time {
    font-size: 22px;
    font-size: 5.8666666667vw;
    margin-right: 1.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .seminar_program_detail_list {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_detail_list {
    margin-top: 2.6666666667vw;
  }
}
.seminar_program_detail_item {
  color: #555;
}
@media print, screen and (min-width: 768px) {
  .seminar_program_detail_item {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_detail_item {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
@media print, screen and (min-width: 768px) {
  .seminar_program_detail_item + .seminar_program_detail_item {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program_detail_item + .seminar_program_detail_item {
    margin-top: 1.3333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .seminar_program .mod-btn__wrapper {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .seminar_program .mod-btn__wrapper {
    margin-top: 5.3333333333vw;
  }
}

/*
  IE11
------------------------------------------------------------------------------*/