@charset "UTF-8";
/*!*** Base Rules *****/
/*!
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*!*** Base Rules(Custom) *****/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #333333;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

li {
  list-style-type: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

#page-top {
  display: block;
  z-index: 10;
  line-height: 1;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #008700;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #page-top {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #page-top {
    right: 20px;
    bottom: 20px;
  }
}

#page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page-top a::before {
  font: var(--fa-font-solid);
  font-weight: 900;
  content: "\f077";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#menu-button {
  width: 32px;
  height: 44px;
  position: relative;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
}
#menu-button .top {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .bottom {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .text {
  position: absolute;
  bottom: 0;
  width: 32px;
  left: 50%;
  margin-left: -16px;
}
#menu-button.open .top {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#menu-button.open .bottom {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.scroll-up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll-up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.delay2s {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay3s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay4s {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay5s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/*!*** Module Rules *****/
.header {
  width: 100%;
  height: 100px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1000px) {
  .header {
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 200;
  }
}
.header .global-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
}
@media screen and (max-width: 1000px) {
  .header .global-nav {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    background-color: #fff;
  }
}
@media screen and (max-width: 1000px) {
  .header .global-nav {
    height: 80px;
  }
}
.header .global-nav .header-logo {
  margin-left: 50px;
}
.header .global-nav .header-logo img {
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .header .global-nav .header-logo {
    width: 200px;
    margin-left: 1em;
  }
}
.header #menu-button {
  display: none;
  margin-right: 1em;
}
@media screen and (max-width: 1000px) {
  .header #menu-button {
    display: block;
  }
}
.header .header-wrap {
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .header .header-wrap {
    width: 100%;
    height: calc(100vh - 80px);
    position: fixed;
    top: 80px;
    left: 0;
    background-color: #fff;
    z-index: 100;
    text-align: center;
    display: none;
  }
}
.header .header-wrap .nav-list {
  width: 648px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .header-wrap .nav-list > li a {
  color: #333;
}
@media screen and (max-width: 1500px) {
  .header .header-wrap .nav-list {
    width: 560px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  .header .header-wrap .nav-list {
    width: 450px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1000px) {
  .header .header-wrap .nav-list {
    width: 100%;
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 30px;
  }
  .header .header-wrap .nav-list > li {
    margin-bottom: 1em;
  }
}
.header .header-wrap .header-tel {
  font-size: 2.8rem;
  margin-right: 1em;
  margin-left: 1em;
}
@media screen and (max-width: 1500px) {
  .header .header-wrap .header-tel {
    font-size: 2rem;
  }
}
.header .header-wrap .header-tel a {
  color: #008700;
  font-weight: 700;
}
.header .header-wrap .header-tel i {
  margin-right: 0.5em;
}
.header .header-wrap .header-button {
  width: 180px;
}
@media screen and (max-width: 1200px) {
  .header .header-wrap .header-button {
    width: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .header .header-wrap .header-button {
    width: 100%;
    margin-top: 1em;
  }
}
.header .header-wrap .header-button .lang-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .header .header-wrap .header-button .lang-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header .header-wrap .header-button .lang-list > li a {
  display: block;
  color: #fff;
  width: 90px;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .header .header-wrap .header-button .lang-list > li a {
    width: 50px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .header .header-wrap .header-button .lang-list > li a {
    font-size: 1.4rem;
    width: 90px;
  }
}
.header .header-wrap .header-button .lang-list > li.ja a {
  background-color: #D3D3D3;
}
.header .header-wrap .header-button .lang-list > li.ja.active a {
  background-color: #D81D1D;
}
.header .header-wrap .header-button .lang-list > li.en a {
  background-color: #D3D3D3;
}
.header .header-wrap .header-button .lang-list > li.en.active a {
  background-color: #D81D1D;
}
.header .header-wrap .header-button .mail a {
  width: 180px;
  height: 80px;
  color: #fff;
  font-size: 2.9rem;
  background-color: #008700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .header .header-wrap .header-button .mail a {
    width: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .header .header-wrap .header-button .mail a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1em;
    font-size: 2rem;
    height: 50px;
  }
}
.header .header-wrap .header-contact-sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .header .header-wrap .header-contact-sp {
    display: block;
    margin-top: 1em;
  }
  .header .header-wrap .header-contact-sp a {
    color: #008700;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .header .header-wrap .header-contact-sp a i {
    margin-right: 0.5em;
  }
}

.mv-wrap {
  background-image: url("../images/home-mv.jpg");
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 500px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv-wrap {
    height: 200px;
  }
}
.mv-wrap .mv-inner {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-left: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5em;
}
@media screen and (max-width: 768px) {
  .mv-wrap .mv-inner {
    top: 1em;
    left: 1em;
    margin-left: 0;
  }
}
.mv-wrap .mv-inner h1.heading-low {
  font-size: 7rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .mv-wrap .mv-inner h1.heading-low {
    font-size: 3rem;
  }
}
.mv-wrap .mv-inner .catch {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .mv-wrap .mv-inner .catch {
    font-size: 1.4rem;
  }
}

#home .mv-wrap {
  width: 100%;
  height: 50dvh;
}

#new .mv-wrap {
  background-image: url("../images/mv-new.jpg");
}

#used .mv-wrap {
  background-image: url("../images/mv-used.jpg");
}

#purchase .mv-wrap {
  background-image: url("../images/mv-purchase.jpg");
}

#export .mv-wrap {
  background-image: url("../images/mv-export.jpg");
}

#import .mv-wrap {
  background-image: url("../images/mv-import.jpg");
}

#demorental .mv-wrap {
  background-image: url("../images/mv-demorental.jpg");
}

#company .mv-wrap {
  background-image: url("../images/mv-company.jpg");
}

.contents-wrap {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .contents-wrap {
    width: 100%;
    padding-right: 2%;
    padding-left: 2%;
  }
}

.contents-inner p {
  margin-bottom: 1em;
}

.breadcrumb {
  margin-top: 1em;
  margin-bottom: 3em;
}

.recommend, .swiper {
  width: 100%;
}
.recommend.grove .recommend-text, .swiper.grove .recommend-text {
  background-color: #D0121B;
}

.recommend-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 60px;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .recommend-inner {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.recommend-text {
  background-color: #018CCF;
  color: #fff;
  padding: 2em;
  width: 50%;
  min-height: 530px;
}
.recommend-text .sub-text {
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .recommend-text {
    width: 100%;
  }
}
.recommend-text > h3 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .recommend-text > h3 {
    font-size: 2rem;
  }
}
.recommend-text .button-yellow {
  text-align: right;
  margin-top: 1em;
}
.recommend-text .button-yellow > a {
  display: inline-block;
  background-color: #DDD84D;
  padding: 0.5em 1em;
  color: #333;
  border-radius: 10px;
}

.recommend-image {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .recommend-image {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}
.recommend-image img {
  width: 100%;
}

.text-wrap {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
}

.heading-line {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1em;
  margin-top: 2em;
}
@media screen and (max-width: 1000px) {
  .heading-line {
    font-size: 2rem;
  }
}
.heading-line > span {
  display: inline-block;
  border-bottom: 3px solid #008700;
}

.search-wrap {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .search-wrap {
    width: 100%;
    display: block;
  }
}
.search-wrap .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .search-wrap .tag-list {
    margin-bottom: 1em;
  }
}
.search-wrap .tag-list > li a {
  font-size: 1.4rem;
  border-radius: 5px;
  margin-right: 1em;
  color: #333;
  padding: 0.2em 0.5em;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .search-wrap .tag-list > li a {
    font-size: 1.2rem;
  }
}
.search-wrap .search-box {
  font-size: 1.4rem;
  padding: 0.2em 0.5em;
}

.products-table {
  width: 100%;
}
.products-table th, .products-table td {
  border: 1px solid #018CCF;
  font-size: 1.4rem;
  padding: 0.5em;
}
@media screen and (max-width: 768px) {
  .products-table th, .products-table td {
    font-size: 1.2rem;
  }
}
.products-table th {
  width: 16.666%;
  background-color: #018CCF;
  color: #fff;
  vertical-align: middle;
}
.products-table td {
  vertical-align: middle;
  text-align: center;
}
.products-table td.catalog {
  font-size: 20px;
}
.products-table td.catalog a {
  color: #333;
}

.products-table2 {
  width: 100%;
}
.products-table2 th, .products-table2 td {
  border: 1px solid #018CCF;
  font-size: 1.4rem;
  padding: 0.5em;
}
@media screen and (max-width: 768px) {
  .products-table2 th, .products-table2 td {
    font-size: 1.2rem;
  }
}
.products-table2 th {
  width: 25%;
  background-color: #018CCF;
  color: #fff;
  vertical-align: middle;
}
.products-table2 td {
  vertical-align: middle;
  text-align: center;
}
.products-table2 td img {
  max-width: 200px;
}
.products-table2 td.catalog {
  font-size: 20px;
}

.company-table {
  width: 100%;
}
.company-table th, .company-table td {
  border: 1px solid #ccc;
  font-size: 1.4rem;
  padding: 0.5em;
}
.company-table th {
  width: 20%;
  background-color: #018CCF;
  color: #fff;
}

/* Google Mapを囲う要素 */
.map-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}

/* Google map-embedのiframe */
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  margin-top: 50px;
  background-color: #F5F5F7;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .footer {
    font-size: 1.2rem;
  }
}
.footer .footer-logo {
  margin-bottom: 30px;
}
.footer .footer-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.footer .footer-nav-list > li {
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.footer .footer-nav-list > li a {
  color: #333;
}
@media screen and (max-width: 1000px) {
  .footer .footer-nav-list {
    display: none;
  }
}
.footer .footer-address {
  font-style: normal;
  margin-bottom: 2em;
}
.footer .footer-button a {
  display: inline-block;
  background-color: #008700;
  padding: 0.5em 1em;
  color: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 2em;
}
.footer .footer-button a i {
  margin-right: 0.2em;
}

.home-services {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .home-services {
    width: 100%;
  }
}
.home-services .service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home-services .service-list > li {
  width: 333.333px;
  height: 333.333px;
}
@media screen and (max-width: 1000px) {
  .home-services .service-list > li {
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.home-services .service-list > li:nth-child(1) a {
  background-image: url(../images/mv-new.jpg);
  background-position: center bottom;
  background-size: cover;
}
.home-services .service-list > li:nth-child(2) a {
  background-image: url(../images/mv-used.jpg);
  background-position: center bottom;
  background-size: cover;
}
.home-services .service-list > li:nth-child(3) a {
  background-image: url(../images/mv-export.jpg);
  background-position: center bottom;
  background-size: cover;
}
.home-services .service-list > li:nth-child(4) a {
  background-image: url(../images/mv-import.jpg);
  background-position: center bottom;
  background-size: cover;
}
.home-services .service-list > li:nth-child(5) a {
  background-image: url(../images/mv-demorental.jpg);
  background-position: center bottom;
  background-size: cover;
}
.home-services .service-list > li:nth-child(6) a {
  background-image: url(../images/mv-company.jpg);
  background-position: center bottom;
  background-size: cover;
}
.home-services .service-list > li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
}
.home-services .service-list > li a .services-title > span {
  background-color: #008700;
  text-align: center;
  color: #fff;
  display: block;
  width: 100%;
  padding: 0.2em;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .home-services .service-list > li a .services-title > span {
    font-size: 1.4rem;
    padding: 0.5em;
  }
}
.home-services .service-list > li a .services-title > span i {
  margin-right: 0.2em;
}

.flow-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flow-list > li {
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 0.5em;
  border-radius: 5px;
  background-color: #018CCF;
  color: #fff;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}

.products-shinoboom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .products-shinoboom {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.products-shinoboom .products-item {
  width: 32%;
  border: 3px solid #018CCF;
  padding: 10px;
}
@media screen and (max-width: 1000px) {
  .products-shinoboom .products-item {
    width: 100%;
    margin-bottom: 1em;
  }
}
.products-shinoboom .products-item img {
  width: 100%;
}
.products-shinoboom .heading-bar {
  border-left: 3px solid #018CCF;
  padding-left: 10px;
}
.products-shinoboom .products-item-button {
  text-align: right;
}
.products-shinoboom .products-item-button a {
  display: inline-block;
  background-color: #018CCF;
  color: #fff;
  padding: 0.2em 1em;
  font-size: 14px;
  border-radius: 5px;
}

.products-grove {
  margin-top: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.products-grove .products-item {
  width: 32%;
  border: 3px solid #D0121B;
  padding: 10px;
}
@media screen and (max-width: 1000px) {
  .products-grove .products-item {
    width: 100%;
    margin-bottom: 1em;
  }
}
.products-grove .products-item img {
  width: 100%;
}
.products-grove .heading-bar {
  border-left: 3px solid #D0121B;
  padding-left: 10px;
}
.products-grove .products-item-button {
  text-align: right;
}
.products-grove .products-item-button a {
  display: inline-block;
  background-color: #D0121B;
  color: #fff;
  padding: 0.2em 1em;
  font-size: 14px;
  border-radius: 5px;
}

.back-button {
  text-align: center;
  margin-top: 2em;
}
.back-button a {
  display: inline-block;
  padding: 0.5em 2em;
  background-color: #018CCF;
  letter-spacing: 0.1em;
  color: #fff;
  border-bottom: 2px solid #ccc;
}

.feature-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  margin-bottom: 1em;
  font-weight: 600;
}
.feature-wrap figure {
  max-width: 300px;
}
.feature-wrap figure img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .feature-wrap {
    display: block;
    font-size: 1.4rem;
  }
  .feature-wrap figure {
    max-width: 100%;
  }
}

/*!*** Helper Rules *****/
.fz10 {
  font-size: 10px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz23 {
  font-size: 23px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz27 {
  font-size: 27px;
}

.fz28 {
  font-size: 28px;
}

.fz30 {
  font-size: 30px;
}

.fz32 {
  font-size: 32px;
}

.fz33 {
  font-size: 33px;
}

.fz34 {
  font-size: 34px;
}

.fz35 {
  font-size: 35px;
}

.fz42 {
  font-size: 42px;
}

.fz49 {
  font-size: 49px;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.lh1 {
  line-height: 1;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh15 {
  line-height: 1.5;
}

.lh2 {
  line-height: 2;
}

.lh47 {
  line-height: 47px;
}

.lh60 {
  line-height: 60px;
}

.va20 {
  letter-spacing: 0.02em;
}

.ltsp100 {
  letter-spacing: 0.1em;
}

.tdu {
  text-decoration: underline;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pt1em {
  padding-top: 1em;
}

.pb1em {
  padding-bottom: 1em;
}

.pr2p {
  padding-right: 2%;
}
@media (min-width: 768px) {
  .pr2p {
    padding-right: 0;
  }
}

.plr2p {
  padding-right: 2%;
  padding-left: 2%;
}

.plr5p {
  padding-right: 5%;
  padding-left: 5%;
}

.plr1em {
  padding-right: 1em;
  padding-left: 1em;
}

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

.ml1em {
  margin-left: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.mt1em {
  margin-top: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mt2em {
  margin-top: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.br-sp, .sp {
  display: inherit;
}

.br-tb {
  display: inherit;
}

.br-pc, .pc {
  display: none;
}

.text-sp {
  display: inline;
}

.text-pc {
  display: none;
}

@media (min-width: 600px) {
  .br-sp, .sp {
    display: none;
  }
  .br-tb {
    display: inherit;
  }
  .br-pc, .pc {
    display: inline-block;
  }
  .text-sp {
    display: none;
  }
  .text-pc {
    display: inline;
  }
  .pc-fz14 {
    font-size: 14px;
  }
  .pc-fz18 {
    font-size: 18px;
  }
  .pc-fz26 {
    font-size: 26px;
  }
  .pc-fz27 {
    font-size: 27px;
  }
  .pc-fz30 {
    font-size: 30px;
  }
  .pc-fz36 {
    font-size: 36px;
  }
  .pc-fz38 {
    font-size: 38px;
  }
  .pc-fz40 {
    font-size: 40px;
  }
  .pc-fz49 {
    font-size: 49px;
  }
  .plr2p {
    padding-left: inherit;
    padding-right: inherit;
  }
  .pc-tac {
    text-align: center;
  }
  .pc-lh12 {
    line-height: 1.2;
  }
  .pc-w780 {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w730 {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w265 {
    max-width: 265px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-w410 {
    max-width: 410px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-mb0 {
    margin-bottom: 0;
  }
  .pc-mt0 {
    margin-top: 0;
  }
  .pc-mb2em {
    margin-bottom: 2em;
  }
  .pc-mb3em {
    margin-bottom: 3em;
  }
}
@media (min-width: 1000px) {
  .br-tb {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */