@charset "UTF-8";

/* ==========================================================================
   Base
========================================================================== */
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 3.5vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

@media only screen and (min-width: 480px) {
  html {
    font-size: 81.3%; }
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 75%; }
}
@media only screen and (min-width: 992px) {
  html {
    font-size: 93.8%; }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  color: #000; }

@media only screen and (max-width: 767px) {
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
  }
}
/* ======================
   Animation
====================== */
.fadeIn { opacity: 0; }
.show .fadeIn,
.fadeIn.show { animation: fadeIn 0.5s .1s forwards; }
.fadeInUp { opacity: 0;
            transform: translateY(5vh); }
.show .fadeInUp,
.fadeInUp.show { animation: fadeInUp 0.5s .1s forwards; }

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeInUp {
  0%   { opacity: 0;
         transform: translateY(5vh); }
  100% { opacity: 1;
         transform: translateY(0); }
}

/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
  border-top: 6px solid #109d3c;
  background-color: #FFF;
  color: #109d3c;
  font-weight: 500;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: .4s; }

#header__logo {
  width: 160px;
  height: 40px;
  margin: 0 15px;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  z-index: 999;
  transition: opacity .2s ease-in-out;
}
#header__logo img,
#header__logo svg {
  display: block;
  width: 100%;
}

#header__logo a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  #siteHeader #header__logo {
    margin: 0 25px;
  }
}
@media only screen and (min-width: 992px) {
  #siteHeader {
    border-top-width: 10px;
  }
  #siteHeader #header__logo {
    margin: 0 30px;
    width: 234px;
    height: 44px;
  }
}

/* ==========================================================================
   Navigation
========================================================================== */
nav ul {
  list-style-type: none;
  border-bottom: 0;
  margin: 0;
  padding: 0; }
nav ul li a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  text-decoration: none;
  line-height: 1.25; }


.gNav {
  position: relative;
  z-index: 99;
}


/* Main menu */
.gNav .main-menu {
  padding: 0 15px;
  letter-spacing: .05em;
}
.gNav .main-menu a {
  display: block;
  padding: 0 10px;
}
.gNav .main-menu > li > a {
  line-height: 50px;
  white-space: nowrap;
  text-decoration: none;
}

.gNav .main-menu .sub-menu {
  display: none;
}
.gNav .main-menu .sub-menu li a {
  line-height: 1.5;
  padding-top: .5em;
  padding-bottom: .5em;
}
.gNav .main-menu .sub-menu a:hover {
  text-decoration: underline;
}
.gNav .main-menu .sub-menu li a span:after {
  content: ' ＞';
  opacity: .75;
}


/* Nav Btn */
#navBtn {
  display: block;
  width: 60px;
  height: 54px;
  position: relative;
  z-index: 111;
}
#navBtn .navBtn__trigger {
  width: 60px;
  height: 54px;
  margin-left: auto;
  position: relative;
}
#navBtn i{
  display: block;
  background: #717171;
  width: 28px;
  height: 2px;
  position: absolute;
  right: 0;
  left: 0;
  margin: -1px auto 0;
  transition: transform .3s;
}
#navBtn i:nth-of-type(1){
  top: 17px;
}
#navBtn i:nth-of-type(2){
  top: 50%;
}
#navBtn i:nth-of-type(3){
  top: 37px;
}


#navBtn.on i{
  width: 30px;
}
#navBtn.on i:nth-of-type(1){
  top: 50%;
  transform: rotate(45deg);
}
#navBtn.on i:nth-of-type(2){
  transform: scaleX(0);
}
#navBtn.on i:nth-of-type(3){
  top: 50%;
  transform: rotate(135deg);
}


@media only screen and (max-width: 767px) {
  .gNav{
    width: 100%;
    height: calc(100dvh - 60px);
    position: fixed;
    top: 60px;
    left: 0;
    background-color: #109d3c;
    color: #FFF;
    
    display: none;
  }
  .gNav .gNav__inner {
    height: 100%;
    overflow-y: auto;
  }
  .gNav nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .gNav .main-menu > li {
    border-bottom: 1px solid rgba(0,0,0,0.3);
  }
  .gNav .main-menu > li:first-of-type {
    border-top: 1px solid rgba(0,0,0,0.3);
  }

  .gNav .main-menu .sub-menu {
    font-size: .857rem;
    padding-bottom: 15px;
  }
  .gNav .main-menu .sub-menu .sub-menu__header {
    display: none;
  }
  .gNav .main-menu li.has-children > a {
    position: relative;
  }
  .gNav .main-menu li.has-children > a span:after {
    content: '';
    display: block;
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/icon/arrow-w.svg);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(90deg);
    margin-top: -.7em;
  }
  .gNav .main-menu li.has-children.on > a span:after {
    opacity: .5;
  }
}

@media only screen and (min-width: 768px) {
  .gNav {
    display: block !important;
  }
  .gNav nav {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .gNav .main-menu {
    display: flex;
    justify-content: center;
  }
  .gNav .main-menu > li {
    transform: background-color .2s ease-in-out;
  }
  .gNav .main-menu > li > a {
    line-height: 74px;
  }
  .gNav .main-menu > li:hover,
  .gNav .main-menu > li.on {
    background-color: #109d3c;
    color: #FFF;
  }
  .gNav .main-menu .sub-menu {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    padding: 20px 25px;
    background-color: #109d3c;
    color: #FFF;
  }
  .gNav .main-menu .sub-menu .sub-menu__header {
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    position: relative;
  }
  .gNav .main-menu .sub-menu .sub-menu__header .ttl {
    display: inline-block;
    padding: 0;
  }
  .gNav .main-menu .sub-menu .sub-menu__header .menu-close {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: -7px;
  }
  .gNav .main-menu .sub-menu .sub-menu__header .menu-close:before,
  .gNav .main-menu .sub-menu .sub-menu__header .menu-close:after {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background-color: #FFF;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 7px;
  }
  .gNav .main-menu .sub-menu .sub-menu__header .menu-close:after {
    transform: rotate(-45deg);
  }
  .gNav .main-menu .sub-menu ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
  }
  .gNav .main-menu .sub-menu ul li {
    flex: 0 0 20%;
    max-width: 20%;
  }
  #navBtn {
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  #siteHeader {
    padding: 0 10px;
  }
  .gNav .main-menu a {
    padding: 0 15px;
    font-size: 1.0rem;
  }
  .gNav .main-menu > li > a {
    line-height: 80px;
  }
  .gNav .main-menu .sub-menu {
    top: 90px;
    padding: 30px 40px;
  }
  .gNav .main-menu .sub-menu ul {
    margin-right: -15px;
    margin-left: -15px;
  }
}

/* ==========================================================================
   Header search form
========================================================================== */
.gNav .main-menu .search-menu .sub-menu .search-menu__header {
  padding: 0 10px 10px;
  position: relative;
}
#siteHeader .search-form {
  max-width: 100%;
  margin: 0;
}
#siteHeader .search-form .form-control {
  padding-left: 1rem;
  background: #FFF;
  border-color: transparent;
  border-radius: 0;
}
#siteHeader .search-form .btn,
#siteHeader .search-form input[type="search"] + .btn {
  border-radius: 0;
  border-color: #31582D;
  background-color: #31582D;
}
@media only screen and (min-width: 768px) {
  .gNav .main-menu > li.search-menu {
    margin-left: 10px;
  }
  .gNav .main-menu > li.search-menu > a {
    width: 4em;
    background: url(../img/icon/search2.svg) no-repeat center center / 50%;
    position: relative;
  }
  .gNav .main-menu > li.search-menu:not(.on) > a:hover {
    background-image: url(../img/icon/search2-w.svg);
  }
  .gNav .main-menu > li.search-menu > a:before,
  .gNav .main-menu > li.search-menu > a:after {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background-color: #FFF;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    opacity: 0;
    transition: .2s;
  }
  .gNav .main-menu > li.search-menu > a:after {
    transform: rotate(-45deg);
  }
  .gNav .main-menu > li.search-menu.on > a:before,
  .gNav .main-menu > li.search-menu.on > a:after {
    opacity: 1;
  }
  .gNav .main-menu > li.search-menu > a > span {
    width: 1.5em;
    font-size: 0;
    line-height: 0;
    color: transparent;
  }
  #siteHeader .gNav .main-menu .search-menu .sub-menu .search-menu__header {
    padding: 0 0 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.3);
  }
}
/* ==========================================================================
   Main
========================================================================== */
.wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* ==========================================================================
   pageTop
========================================================================== */
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  background-color:#000;
  width: 40px;
  height: 40px;
  text-align: center;
  transition: background-color .2s ease-in-out;
}
#pageTop:after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../img/icon/arrow-w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: rotate(-90deg);
  margin-top: -9px;
}

@media only screen and (min-width: 992px) {
  #pageTop:hover {
    background-color:#109d3c;
  }
}
/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
  border-top: 4px solid #109d3c;
  background: rgba(0,0,0,0.75) ;
  color: #FFF;
  clear: both;
  font-weight: 500;
  position: relative; }
#siteFooter a {
  display: block;
}

#siteFooter .footer-main {
  padding-top: 35px;
  padding-bottom: 40px; }
#siteFooter .footer-info {
  margin-bottom: 25px;
}
#siteFooter .footer-info .ttl {
  margin-bottom: 0;
}
#siteFooter .footer-info .ttl span {
  color: rgba(255,255,255,.6);
}
#siteFooter .footer-info .sns {
  display: flex;
}
#siteFooter .footer-info .sns a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
}
#siteFooter .footer-info .sns a .icon::before {
  transform: translateY(0);
}

.fNav > nav > ul > li > a {
  line-height: 50px;
}
.fNav li.has-children > a {
  position: relative;
}
.fNav li.has-children > a span:after {
  content: '';
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../img/icon/arrow-w.svg);
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: rotate(90deg);
  margin-top: -.7em;
}
.fNav .sub-menu li a {
  line-height: 1.5;
  padding-top: .5em;
  padding-bottom: .5em;
}

#siteFooter .footer-bottom {
  background-color: #000;
  text-align: center;
  font-size: .714rem;
  padding-top: 15px;
  padding-bottom: 15px;
}
#siteFooter .footer-bottom__menu {
  margin-top: 5px;
  margin-bottom: 5px;
}
#siteFooter .footer-bottom__menu li:not(:last-of-type) {
  border-right: 1px solid currentColor;
}

#siteFooter .copyright {
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: .75rem; }

@media only screen and (max-width: 767px) {
  #siteFooter .footer-info .ttl {
    font-size: 1.25rem;
  }
  #siteFooter .footer-info .ttl span {
    display: block;
    font-size: .9rem;
  }
  .fNav ul li a {
    padding: 0 10px;
  }
  .fNav > nav {
    border-top: 1px solid rgba(255,255,255,0.3);
  }
  .fNav > nav > ul > li {
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }
  .fNav > nav > ul > li > a {
    text-decoration: none;
  }
  .fNav li.has-children.on > a span:after {
    opacity: .5;
  }
  .fNav .sub-menu {
    font-size: .857rem;
    padding-bottom: 15px;
    display: none;
  }
  .fNav .sub-menu ul {
    display: flex;
    flex-wrap: wrap;
  }
  .fNav .sub-menu ul li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  #siteFooter .footer-info .ttl span {
    display: inline-block;
    font-size: .8rem;
    margin-left: 1em;
  }
  .fNav nav {
    display: flex;
    justify-content: space-between;
  }
  .fNav > nav > ul > li > a {
    font-weight: 700;
    display: inline-block;
  }
  .fNav .sub-menu {
    display: block !important;
  }
  .fNav .sub-menu li a {
    font-size: .733rem;
    padding-top: .25em;
    padding-bottom: .25em;
  }
  .fNav li.has-children > a span:after {
    right: 102%;
    transform: rotate(0);
  }
}
@media only screen and (min-width: 992px) {
  .fNav > nav > ul > li > a {
    font-size: .867rem;
  }
  .fNav .sub-menu {
    display: flex !important;
  }
  .fNav .sub-menu ul:not(:first-of-type) {
    margin-left: 1.5em;
  }

  #siteFooter .footer-bottom {
    font-size: .8rem; }
}


/* ==========================================================================
   2column Layout
========================================================================== */
@media only screen and (min-width: 768px) {
  .column2Layout {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .column2Layout .sideCol {
    -ms-flex: 0 0 170px;
    flex: 0 0 170px;
    max-width: 170px;
  }
  .column2Layout .mainCol {
    -ms-flex: 0 0 500px;
    flex: 0 0 500px;
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .column2Layout .sideCol {
    font-size: .917rem;
  }
  .column2Layout .sideCol .h5 {
    font-size: 1.167rem;
  }
}
@media only screen and (min-width: 992px) {
  .column2Layout .sideCol {
    font-size: .875rem;
    -ms-flex: 0 0 215px;
    flex: 0 0 215px;
    max-width: 215px;
  }
  .column2Layout .mainCol {
    -ms-flex: 0 0 685px;
    flex: 0 0 685px;
    max-width: 685px;
  }
}
@media only screen and (min-width: 1200px) {
  .column2Layout .sideCol {
    -ms-flex: 0 0 275px;
    flex: 0 0 275px;
    max-width: 275px;
  }
  .column2Layout .mainCol {
    -ms-flex: 0 0 795px;
    flex: 0 0 795px;
    max-width: 795px;
  }
}


/* ==========================================================================
   Sidebar
========================================================================== */
.sideNav {
  margin-bottom: 15px;
}

.sideNav .products_search .search-form {
  margin-top: .4em;
}
.sideNav .products_search .search-form .form-control {
  padding: .25rem 4rem .25rem 2rem;
  height: calc(1.5rem + .5rem + 2px);
  background-color: #FFF;
  background-size: 1rem;
}
.sideNav .products_search .search-form .form-control + .btn {
  height: calc(1.5rem + .5rem + 2px);
  padding: .25rem .75rem;
}

.sideNav .category-tree_toggle {
  background-color: #717071;
  color: #FFF;
  padding: .8em 1em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .05em;
  cursor: pointer;
  position: relative;
}
.sideNav .category-tree_toggle .toggle {
  display: block;
  width: 3.2em;
  height: 3.2em;
  position: absolute;
  top: 0;
  right: 0;
}
.sideNav .category-tree_toggle .toggle::before,
.sideNav .category-tree_toggle .toggle::after {
  content: '';
  display: block;
  background-color: currentColor;
  width: 1em;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 1.1em;
  transition: .1s;
}
.sideNav .category-tree_toggle .toggle::after {
  transform: rotate(90deg);
}
.sideNav .category-tree_toggle.on .toggle::after {
  transform: rotate(0);
}
.sideNav__cont ul {
  padding-left: 0;
  list-style-type: none;
  font-feature-settings: "palt";
}
.sideNav__cont ul li a {
  position: relative;
}
.sideNav__cont ul.sub-menu {
  display: none;
}
.sideNav__cont ul.category-tree li a {
  display: inline-block;
}
.sideNav__cont ul.category-tree {
  border-right: 1px solid #b2b2b2;
  border-left: 1px solid #b2b2b2;
}
.sideNav__cont > ul.category-tree > li {
  border-bottom: 1px solid #b2b2b2;
  position: relative;
}
.sideNav__cont > ul.category-tree > li > .toggle {
  display: block;
  width: 3.2em;
  height: 3.2em;
  background: url(../img/icon/arrow-down.svg) no-repeat center center / 1.5em;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.sideNav__cont > ul.category-tree > li:not(.has-children) > .toggle {
  transform: rotate(-90deg);
}
.sideNav__cont > ul.category-tree > li.on > .toggle {
  transform: rotate(180deg);
}
.sideNav__cont > ul.category-tree > li > a {
  display: block;
  padding: .8em 1em;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .05em;
  text-decoration: none;
  background-color: #ededed;
}
.sideNav__cont > ul.category-tree > li > ul {
  font-weight: 400;
  padding-top: 1.4em;
  padding-bottom: 1.4em;
  border-top: 1px solid #b2b2b2;
}
.sideNav__cont > ul.category-tree > li > ul li {
  padding: 0 1em;
}
.sideNav__cont > ul.category-tree > li > ul > li:not(:last-of-type) {
  margin-bottom: .25em;
}
.sideNav__cont > ul.category-tree > li > ul > li a {
  margin-bottom: .4em;
  text-decoration: underline;
}
.sideNav__cont > ul.category-tree > li > ul > li:not(:last-of-type).on::after {
  content: '';
  display: block;
  margin: 1em 0;
  border-bottom: 1px solid #b2b2b2;
}
.sideNav__cont > ul.category-tree > li > ul > li > a {
  color: #109d3c;
  font-weight: 700;
}
.sideNav__cont > ul.category-tree > li > ul li > a::after {
  content: '';
  display: inline-block;
  width: .6em;
  height: .6em;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  left: calc(100% + .75em);
  transform: translateY(-50%) rotate(45deg);
}
.sideNav__cont > ul.category-tree > li > ul > li.has-children > a::after {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.sideNav__cont > ul.category-tree > li > ul li.on > a::after {
  transform: translateY(0) rotate(-135deg);
}
.sideNav__cont > ul.category-tree > li > ul li:not(.has-children) > a {
  color: inherit;
  font-weight: 400;
}
.sideNav__cont > ul.category-tree > li > ul li:not(.has-children) > a::after {
  left: calc(100% + .5em);
  transform: translateY(-40%) rotate(-45deg);
}

@media only screen and (max-width: 767px) {
  .sideNav {
    margin-top: -30px;
  }
  .sideNav .sideNav__cont {
    display: none;
  }
  .sideNav__cont .products_search {
    padding: .8em 1em 1em 1em;
    border-right: 1px solid #b2b2b2;
    border-left: 1px solid #b2b2b2;
    border-bottom: 1px solid #b2b2b2;
    background-color: #ededed;
  }
}
@media only screen and (min-width: 768px) {
  .sideNav {
    margin-bottom: 20px;
  }
  .sideNav .sideNav__cont {
    display: block!important;
  }
  .sideNav .category-tree_toggle {
    display: none!important;
  }
  .sideNav__cont .products_search {
    margin-bottom: 20px;
  }
  .sideNav__cont ul.category-tree {
    border-top: 1px solid #b2b2b2;
  }
}



/* ==========================================================================
   Layout
========================================================================== */
@media only screen and (min-width: 992px) {
  .container_S {
    max-width: 815px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .container_M {
    max-width: 960px;
  }
}
@media only screen and (min-width: 1440px) {
  .container_M {
    max-width: 960px;
  }
}

#main {
  padding-top: 61px;
}

@media only screen and (min-width: 768px) {
  #main {
    padding-top: 81px;
  }
}
@media only screen and (min-width: 992px) {
  #main {
    padding-top: 91px;
  }
}

ul.row {
  list-style-type: none;
  padding: 0;
}
.section {
  padding-top: 45px;
  padding-bottom: 45px;
}
.content {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .content {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}


.ttl {
  font-feature-settings: "palt";
  line-height: 1.5;
  letter-spacing: .05em;
}

.page__header {
  text-align: center;
  border-top: 1px solid #EEE;
  position: relative;
}
.page__header .inner {
  text-align: left;
  padding-left: 1.5rem; 
  border-left: 5px solid #109d3c;
}
.page__header .ttl {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
  text-transform: uppercase;
}
.page__header .ja_ttl {
  font-size: .8rem;
  line-height: 1;
  letter-spacing: .1em;
}


.section__header {
  text-align: center;
  position: relative;
}
.section__header.content {
  margin-bottom: 45px;
}
.section__header .ttl {
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
.section__header .ja_ttl {
  display: block;
  font-weight: 500;
  letter-spacing: .1em;
}
@media only screen and (min-width: 992px) {
  .section__header.content {
    margin-bottom: 60px;
  }
}

.content__header .ttl {
  margin-bottom: 0;
}


/* ==========================================================================
   ContactBox
========================================================================== */
#contactBox {
  font-weight: 500;
}
#contactBox .content__header {
  text-align: center;
  padding: 1.5em 0;
  border-top: 6px solid #e5e5e5;
  border-bottom: 4px solid #e5e5e5;
}
#contactBox .tel-number {
  color: #84a800;
  margin-bottom: .6rem;
}
#contactBox .help {
  font-size: .857rem;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  margin-bottom: .5672rem;
}
#contactBox p:last-of-type {
  margin-bottom: 0;
}
#contactBox .no-gutters h5 {
  white-space: nowrap;
}
#contactBox .no-gutters .icon {
  margin-right: .125em;
}
#contactBox .no-gutters .icon::before {
  width: 1.65em;
  height: 1.65em;
}

@media only screen and (max-width: 767px) {
  #contactBox {
    text-align: center;
  }
  #contactBox .no-gutters > div:not(:first-of-type) {
    border-top: 1px solid #e5e5e5;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

@media only screen and (min-width: 768px) {
  #contactBox .no-gutters > div {
    border-right: 4px solid #e5e5e5;
  }
  #contactBox .no-gutters > div:first-of-type {
    border-left: 4px solid #e5e5e5;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #contactBox .no-gutters .btn.btn-arrow1 {
    padding: 1.25em 3.5em;
  }
}