/*----------------------------------
Common HTML elements and more for easier usage
------------------------------------*/
html {
  overflow-x: hidden;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
	font-family: "Noto Sans Japanese","Hiragino Kaku Gothic Pro",Meiryo, Osaka,"MS PGothic", sans-serif;
  color: #222324;
  line-height: 1.6;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
	font-family: "Noto Sans Japanese","Hiragino Kaku Gothic Pro",Meiryo, Osaka,"MS PGothic", sans-serif;
  line-height: 1.2;
  color: #242424;
  margin-top: 0;
  margin-bottom: .5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #242424;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 a:focus, h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: #387DCE;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.container header h1 {
	margin-top: 1rem;
	margin-bottom:2rem;
}

.container header h2 {
	background: #387DCE;
	border-radius: 1rem;
	color: #FFF;
	font-family: "Noto Sans Japanese", sans-serif;
	font-weight: bold;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	margin-top: 1rem;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
	padding:0.8rem 1rem;
	position: relative;
}

.container header h3 {
  color: #387DCE;
  padding: 0.5em 0;
  border-top: solid 2px #387DCE;
  border-bottom: solid 2px #387DCE;
}

.container header h4 {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #FFF), color-stop(0.00, #F4F0ED));
	background: -webkit-linear-gradient(top, #F4F0ED 0%, #FFF 100%);
	background: -moz-linear-gradient(top, #F4F0ED 0%, #FFF 100%);
	background: -o-linear-gradient(top, #F4F0ED 0%, #FFF 100%);
	background: -ms-linear-gradient(top, #F4F0ED 0%, #FFF 100%);
	background: linear-gradient(to bottom, #F4F0ED 0%, #FFF 100%);
	border-top:1px solid #CCCCCC;
	border-left:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
	border-bottom:2px solid #387DCE;
	color: #333;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 1.25rem;
	font-weight:bold;
	margin-top: 1rem;
	margin-bottom: 1rem;
	padding: 0.75rem 1rem 0.65rem;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, .3);
}

.container header h5 {
	font-size: 1.25rem;
	font-weight:bold;
	position: relative;
	padding: .5em 0 .5em .5em;
	border-left:2px solid #387DCE;
	color:#333;
}

.container header h6 {
	background-color:#387DCE;
	border-radius: 1rem;
	color:#FFF;
	font-size: 1rem;
	font-weight:bold;
	padding:0.5rem;
	text-align:center;
}

h2.center {
	border-bottom: 3px double #387DCE;
	font-family: "Noto Sans Japanese", sans-serif;
	font-weight: bold;
	text-align: center;
	padding-bottom:1rem;
}

em,
li {
  font-size: 1rem;
  font-weight: 300;
  color: #242424;
}

em > a,
li > a {
  color: #242424;
}

em > a:hover,
li > a:hover {
  color: #387DCE;
}

small {
  color: #111111;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: .25rem;
}

i {
  line-height: 1;
}

b, strong {
    font-weight: bold;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #222;
}

/* Font */
.mons {
  font-family: Helvetica, "sans-serif";
}

/* Color */
.red {
	color:#FF0000;
}

.green {
	color:#198754;
}

.yellow {
	color:#FFDD00;
}

/* Background Color */
.bg-primary {
  background-color: #387DCE !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #198754 !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

.bg-color-sky-light {
    background: #fafafa!important;
}

/* Panel */
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
    box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
}

.panel-body {
    padding: 15px;
}

.panel-info {
    border-color: #bce8f1;
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-heading h6 {
	font-weight: bold;
	margin-bottom:0.25rem;
	line-height: 1.75rem;
}

.panel-heading .badge {
	margin-right:0.5rem;
}

/* Paragraph */
p {
  font-size: 1rem;
  font-weight: 300;
  color: #111111;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #387DCE;
  text-decoration: none;
}

a:focus, a:hover {
  color: #1095ac;
  text-decoration: none;
}

a:focus {
  outline: none;
}

a.jump{
   display: block;
   margin-top:-100px;
   padding-top:100px;
}

/* Grid Height */
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

/*----------------------------------
  Selection
------------------------------------*/
::selection {
  color: #fff;
  background: #387DCE;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #387DCE;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

/*----------------------------------
  Button
------------------------------------*/
.btn-primary {
  color: #fff;
  background-color: #387DCE;
  border-color: #387DCE;
}

.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn.focus {
  text-decoration: none;
}

.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}

.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}

.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding: 0.9375rem 1.5625rem 0.75rem;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: #222324;
  background: #fff;
  border-color: #fff;
}

.s-btn--white-bg {
  color: #222324;
  background: #fff;
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
  color: #387DCE;
  background: #fff;
}

.s-btn--dark-bg {
  color: #fff;
  background: #222324;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: #fff;
  background: #387DCE;
  border-color: #387DCE;
}

.s-btn--dark-brd {
  color: #222324;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-brd:focus, .s-btn--dark-brd:hover {
  color: #fff;
  background: #222324;
  border-color: #222324;
}

.s-btn--primary-bg {
  color: #fff;
  background: #387DCE;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #387DCE;
}

.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: #fff;
  background: #387DCE;
  border-color: #387DCE;
}

.s-btn--primary-brd {
  color: #387DCE;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #387DCE;
}

.s-btn--primary-brd:focus, .s-btn--primary-brd:hover {
  color: #fff;
  background: #387DCE;
  border-color: #387DCE;
}

.s-btn-icon--white-brd {
  border-left: none;
}

.s-btn-icon--dark-brd {
  border-left: none;
}

/*----------------------------------
  Columns
------------------------------------*/

/* 5Columns
------------------------------ */
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}   
.col-xs-1-5 {
    width: 20%;
    float: left;
}
.col-xs-2-5 {
    width: 40%;
    float: left;
}

.col-xs-3-5 {
    width: 60%;
    float: left;
}

.col-xs-4-5 {
    width: 80%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-1-5 {
        width: 20%;
        float: left;
    }
    .col-sm-2-5 {
        width: 40%;
        float: left;
    }
    .col-sm-3-5 {
        width: 60%;
        float: left;
    }
    .col-sm-4-5 {
        width: 80%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-1-5 {
        width: 20%;
        float: left;
    }
    .col-md-2-5 {
        width: 40%;
        float: left;
    }
    .col-md-3-5 {
        width: 60%;
        float: left;
    }
    .col-md-4-5 {
        width: 80%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-1-5 {
        width: 20%;
        float: left;
    }
    .col-lg-2-5 {
        width: 40%;
        float: left;
    }
    .col-lg-3-5 {
        width: 60%;
        float: left;
    }
    .col-lg-4-5 {
        width: 80%;
        float: left;
    }
}

/*----------------------------------
  Clients v1
------------------------------------*/
.s-clients-v1 {
  display: block;
  width: 10.25rem;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  cursor: pointer;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-clients-v1:hover {
  opacity: .8;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/*----------------------------------
  Icons
------------------------------------*/
.s-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-icon:focus, .s-icon:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Sizes
------------------------------ */
.s-icon--sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  padding: 0.6875rem;
}

.s-icon--md {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  padding: 0.75rem;
}

.s-icon--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.625rem;
  padding: 0.5625rem 1rem;
}

/* Styles
------------------------------ */
.s-icon--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-brd:focus, .s-icon--white-brd:hover {
  color: #fff;
  background: #387DCE;
  border-color: #387DCE;
}

.s-icon--white-bg {
  color: #222324;
  background: #fff;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-bg:focus, .s-icon--white-bg:hover {
  color: #387DCE;
  background: #fff;
  border-color: #fff;
}

.s-icon--primary-brd {
  color: #387DCE;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #387DCE;
  line-height: 1.4;
}

.s-icon--primary-brd:focus, .s-icon--primary-brd:hover {
  color: #fff;
  background: #387DCE;
  border-color: #387DCE;
}

.s-icon--primary-bg {
  color: #fff;
  background: #387DCE;
  line-height: 1.6;
}

/*----------------------------------
  Promo Block
------------------------------------*/

/* Promo Block v4 */
.s-promo-block-v4 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v4:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v5 */
.s-promo-block-v5 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v5:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(28, 123, 172, 0.53) 0%, rgba(19, 177, 205, 0.53) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/*----------------------------------
  Plan
------------------------------------*/
/* Plan v1 */
.s-plan-v1 {
  box-shadow: 0.625rem 0.625rem 0.9375rem 0 rgba(31, 31, 31, 0.075);
}

.s-plan-v1__price-mark, .s-plan-v1__price-tag {
  color: #387DCE;
}

.s-plan-v1__price-mark {
  font-size: 1.375rem;
  vertical-align: top;
}

.s-plan-v1__price-tag {
  font-size: 1.875rem;
  line-height: 1.1;
}

/*----------------------------------
  Team v1
------------------------------------*/
.s-team-v1 {
  position: relative;
  cursor: pointer;
}

.s-team-v1:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-team-v1:hover:before {
  box-shadow: 0 0 1.25rem 0.3125rem rgba(34, 35, 36, 0.07);
}

/*----------------------------------
  Header
------------------------------------*/
.s-header__navbar {
  background: transparent;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Container
------------------------------ */
.s-header__container {
  width: 100%;
  height: auto;
  display: table;
  padding: .75rem 1.875rem;
}

.s-header__container:before, .s-header__container:after {
  content: " ";
  display: table;
}

.s-header__container:after {
  clear: both;
}

.container-fluid {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

nav.navbar .container-fluid {
  padding-left: 2.1875rem;
  padding-right: 0.75rem;
}

@media (max-width: 47.9em) {
nav.navbar .container-fluid {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
nav .collapse {
	display: inherit;
}
.navbar .row {
  --bs-gutter-x: none;
  --bs-gutter-y: 0;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
}

/* Navbar Row
------------------------------ */
.s-header__navbar-row {
  position: relative;
  display: table-row;
  clear: both;
}

.s-header__navbar-row-col {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}

/* Logo
------------------------------ */
.s-header__logo {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: auto;
  float: left;
}

.s-header__logo-link {
  display: inline-block;
  padding: 1rem 0;
}

.s-header__logo-link:focus, .s-header__logo-link:hover {
  text-decoration: none;
}

.s-header__logo-img-default, .s-header__logo-img-shrink {
  display: block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__logo-img-default {
  opacity: 1;
}

.s-header__logo-img-shrink {
  position: absolute;
  top: 1rem;
  left: 0;
  opacity: 0;
}

@media (max-width: 61.9em) {
  .s-header__logo {
    width: auto;
    height: auto;
    float: left;
  }
}

@media (max-width: 29.9em) {
  .navbar-brand {
    margin-right: 0;
  }
  .navbar-brand img {
    width:200px;
  }
}

/* Nav
------------------------------ */
nav .collapse {
  display:inline;
}


/*----------------------------------
  Header v2
------------------------------------*/
/* Navbar
------------------------------ */
.s-header-v2__navbar {
    background: rgba(255, 255, 255, 1);
  position: relative;
  z-index: 1000;
  min-height: 3.125rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__navbar:before, .s-header-v2__navbar:after {
  content: " ";
  display: table;
}

.s-header-v2__navbar:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
}

/* Navbar Row
------------------------------ */
.s-header-v2__navbar-row {
  display: table-row;
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-row {
    display: inherit;
  }
}

/* Columns */
.s-header-v2__navbar-col {
  display: table-cell;
  vertical-align: middle;
}

.s-header-v2__navbar-col nav.navbar {
	margin-bottom: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col {
    display: block;
  }
}

/* Space */
.s-header-v2__navbar-col-width--180 {
  width: 11.250rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col-width--180 {
    width: auto;
  }
}

/* Variations */
@media (min-width: 62em) {
  .s-header-v2__navbar-col--left {
    float: left;
  }
  .s-header-v2__navbar-col--left .dropdown__mega-menu {
    right: auto;
    left: 10rem;
  }
}

@media (min-width: 62em) {
  .s-header-v2__navbar-col--right {
    float: right;
  }
}

/* Navbar Toggle
------------------------------ */
.s-header-v2__toggle {
  position: relative;
  display: none;
  float: right;
  background: transparent;
  border: none;
  outline: none;
  line-height: 4.3rem;
  padding: .5625rem .3125rem .5625rem .625rem;
  margin: 0;
}

.s-header-v2__toggle-icon-bar {
  position: relative;
  width: 1.315rem;
  height: 0.0625rem;
  display: inline-block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar, .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  background: #222324;
}

.s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  position: absolute;
  left: 0;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar:before {
  width: 0.625rem;
  height: 0.0625rem;
  bottom: .625rem;
}

.s-header-v2__toggle-icon-bar:after {
  width: 1rem;
  height: 0.0625rem;
  top: -.3125rem;
}

.s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:after {
  width: 1.315rem;
  height: 0.0625rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__toggle {
    display: block;
  }
}

/* Logo
------------------------------ */
.s-header-v2__logo {
  width: 100%;
  height: auto;
  float: left;
}

.s-header-v2__logo-link {
  display: inline-block;
  padding: 1rem 1.25rem 1rem 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__logo-link:focus, .s-header-v2__logo-link:hover {
  text-decoration: none;
}

.s-header-v2__logo-img {
  display: inline-block;
}

.s-header-v2__logo-img--default {
  display: block;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--default {
    display: none;
  }
}

.s-header-v2__logo-img--shrink {
  display: none;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--shrink {
    display: block;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__logo {
    width: auto;
    height: auto;
    float: left;
	  margin-top:0.875rem;
  }
  .s-header-v2__logo-link {
    padding-left: .875rem;
    padding-right: .625rem;
  }
}

/* Collapse
------------------------------ */
@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse {
    width: 100%;
    padding: 0 .9375rem !important;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse.collapse {
    display: none !important;
  }
  .s-header-v2__navbar-collapse.collapse.in {
    display: block !important;
    max-height: 35rem;
    overflow-y: auto !important;
  }
}

/* Nav Menu
------------------------------ */
.s-header-v2__nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.s-header-v2__nav:before, .s-header-v2__nav:after {
  content: " ";
  display: table;
}

.s-header-v2__nav:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav {
    background: #fff;
    padding: 0;
  }
}

.s-header-v2__nav-item {
  position: relative;
  display: block;
  float: left;
}

.s-header-v2__nav-item:last-child .s-header-v2__nav-link {
  margin-right: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-item {
    float: none;
  }
}

.s-header-v2__nav-item .dropdown-backdrop {
  position: relative;
}

.s-header-v2__nav-link {
  position: relative;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: "Noto Sans Japanese", sans-serif;
  line-height: 4.5rem;
  text-transform: uppercase;
  margin: 0 .9rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__nav-link:hover {
  color: #387DCE;
}

.s-header-v2__nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.s-header-v2__nav-link.-is-active {
  color: #fff;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
    line-height: 1.6;
    margin: 1.5rem 0;
  }
  .s-header-v2__nav-link:focus, .s-header-v2__nav-link:hover {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header-v2__nav-link.-is-active {
    color: #387DCE;
  }
}

/* Dropdown
------------------------------ */
.s-header-v2__dropdown-menu {
  display: none;
  font-size: 0.8125rem;
  min-width: 20.750rem;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 0.3125rem 0.75rem rgba(34, 35, 36, 0.05);
  padding: .9375rem;
  margin-top: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
  }
}

.s-header-v2__dropdown-menu:focus .s-header-v2__dropdown-menu-link, .s-header-v2__dropdown-menu:hover .s-header-v2__dropdown-menu-link {
  background: transparent;
}

.s-header-v2__dropdown-menu-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: Lato, sans-serif;
  color: rgba(34, 35, 36, 1) !important;
  padding: .4375rem 2rem .4375rem 1.375rem !important;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__dropdown-menu-link:hover {
  color: #387DCE !important;
}

.s-header-v2__dropdown-menu-link.-is-active {
  color: #387DCE !important;
}

/* Dropdown Menu Open On Hover
------------------------------ */
@media (min-width: 62em) {
  .s-header-v2__dropdown-on-hover:hover > .s-header-v2__dropdown-menu {
    display: block;
  }
}

/* Shrink
------------------------------ */
@media (min-width: 62em) {
  .s-header__shrink .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
  /* Toggle */
  .s-header__shrink .s-header-v2__toggle-icon-bar--white, .s-header__shrink .s-header-v2__toggle-icon-bar--white:before, .s-header__shrink .s-header-v2__toggle-icon-bar--white:after {
    background: #222324;
  }
  /* Logo */
  .s-header__shrink .s-header-v2__logo-img--default {
    display: none;
  }
  .s-header__shrink .s-header-v2__logo-img--shrink {
    display: block;
  }
  /* Nav Link */
  .s-header__shrink .s-header-v2__nav-link {
  }
  .s-header__shrink .s-header-v2__nav-link:hover {
    color: #387DCE;
  }
  .s-header__shrink .s-header-v2__nav-link:focus {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link.-is-active {
    color: #387DCE;
  }
}

.nav-item {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Noto Sans Japanese", sans-serif;
}

@media (max-width: 61.9em) {
.nav-item {
	border-bottom:1px solid #DDD;
  font-size: 1rem;
  text-align: center;
}

.nav-link.active.dropdown-toggle::after {
  border: none;
}
}

/*----------------------------------
  Footer
------------------------------------*/
.s-footer__logo {
  position: relative;
  z-index: 1;
}

.s-footer__logo:before {
  position: absolute;
  top: 0;
  left: 0.9375rem;
  bottom: 0;
  width: 70%;
  height: auto;
  z-index: -1;
  background-size: cover;
  content: " ";
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
  position: fixed;
  right: 3.125rem;
  bottom: -3.125rem;
  display: block;
  width: 1.875rem;
  height: 3rem;
  z-index: 9;
  background: #387DCE;
  border-radius: 3.125rem;
  text-align: center;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:before {
  display: block;
  font-size: 0.75rem;
  font-family: "Font Awesome 5 Free";
	font-weight: 900;
  color: #fff;
  line-height: 3rem;
  content: "\f062";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:hover {
  background: #fff;
}

.s-back-to-top:hover:before {
  color: #387DCE;
}

.s-back-to-top:focus, .s-back-to-top:hover {
  text-decoration: none;
}

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 3.125rem;
  opacity: .8;
}

.s-back-to-top.-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.s-back-to-top.-zoom-out {
  opacity: .6;
}

/*----------------------------------
  Cubeportfolio
------------------------------------*/
.s-portfolio__filter-v1-item {
  font-size: 0.8125rem;
  color: #111111 !important;
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.s-portfolio__filter-v1-item:hover {
  color: #242424 !important;
}

.s-portfolio__filter-v1-item.cbp-filter-item-active {
  color: #387DCE !important;
}

.s-portfolio__filter-v1.cbp-l-filters-text {
  margin-bottom: 0;
}

/* Image Effect
------------------------------ */
.s-portfolio__img-effect {
  position: relative;
  display: block;
}

.s-portfolio__img-effect:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 177, 205, 0.95);
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__img-effect:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Position
------------------------------ */
.s-portfolio__caption-hover--cc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.875rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__caption-hover--cc {
  opacity: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

/* Paginations v1
------------------------------ */
.s-portfolio__paginations-v1 .cbp-nav-controls {
  display: none;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination {
  padding-left: .625rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-item {
  margin: 0 .9375rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-active {
  background: #387DCE;
}

/*----------------------------------
  Google Map
------------------------------------*/
/* Custom Style */
.s-google-map,
.s-google-map .s-google-container {
  position: relative;
}

/* Info Window: White background and box outline */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

/* Info Window: Arrow colour */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div:first-child {
  display: none;
}

/* Info Window: Let's remove image icon inside close button */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child > img {
  display: none;
}

/* Info Window: New arrow style */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child {
  overflow: inherit !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:last-child:after {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75rem;
  font-family: themify;
  color: #111111;
  content: "\e646";
}

/* Info Window: Positioning of infowindow */
.gm-style-iw {
  top: 1.375rem !important;
  left: 1.375rem !important;
}

/*----------------------------------
  Swiper
------------------------------------*/
.s-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 47.9em) {
.swiper-slide h1 img {
	width:50%;
}
.g-ver-center--xs {
    top: 57%;
}
}

@media (max-width: 29.9em) {
.swiper-slide h1 img {
	width:100%;
}
}

/* Arrows v1
------------------------------ */
.s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 47.9em) {
  .s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
    opacity: 0;
  }
}

.s-swiper__arrow-v1--left {
  left: 2rem;
}

.s-swiper__arrow-v1--right {
  right: 2rem;
}

@media (max-width: 47.9em) {
  .s-swiper:hover .s-swiper__arrow-v1--left, .s-swiper:hover .s-swiper__arrow-v1--right {
    opacity: 1;
  }
}

/* Pagination v1
------------------------------ */
.s-swiper__pagination-v1--bc {
  position: absolute;
  bottom: 1.875rem !important;
  text-align: center;
  z-index: 1;
}

.s-swiper__pagination-v1 .swiper-pagination-bullet {
  width: 1rem;
  height: 0.5625rem;
  border-radius: 0.9375rem;
  opacity: .7;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-swiper__pagination-v1 .swiper-pagination-bullet-active {
  width: 1.875rem;
  background: #387DCE;
  opacity: 1;
}

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

.s-swiper__pagination-v1--white .swiper-pagination-bullet-active {
  background: #387DCE;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet {
  background: #b2b2b2;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet-active {
  background: #387DCE;
}

/*----------------------------------
  Top Page
------------------------------------*/

/* News
------------------------------ */
.newsList {
	margin: 0;
	padding: 0;
}

ul.newsList {
	list-style-type:none;
	margin-bottom:1rem;
}

.newsList li:nth-child(2n) {
	background-color: #F7F7F7;
}

.newsList li a {
	color:#333333;
}

.newsList li .badge {
	display:inline-block;
    text-align: center;
    width: 180px;
}

.tab-content .newsList li .badge{
    width: 100px;
}

.newsList li .link {
	display: block;
	padding: 13px 35px 13px 10px;
}

.newsList li a:hover {
	background: #EFEFEF;
	transition: all 0.5s;
}

.newsList .date,
.newsList .note {
	padding: 0;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	padding-left: 20px;
	letter-spacing: 0;
	vertical-align: top;
	word-wrap: break-word;
}

.newsList .date {
	color: #333;
	font-family: "Noto Sans Japanese","Hiragino Kaku Gothic Pro",Meiryo, Osaka,"MS PGothic", sans-serif;
	font-weight: bold;
	padding-right: 20px;
	word-wrap: break-word;
}

.breadcrumb {
	background-color: #FFF;
}

/* Search */
.search-box {
  position: relative;
}

.search-btn {
  position: absolute;
  background: transparent;
  border: none;
  overflow: hidden;
  top: 50%;
  right: 1px;
  width: 42px;
  height: 40px;
  line-height: 38px;
  font-size: 14px;
  outline: none;
  color: #999;
  margin-top: -20px;
}

.modal-dialog {
    width: 80%;
    margin: 30px auto;
}

/* Exclusive Site */
.cbp>* {
    visibility:visible;
}

/* Corporation */
#back-corpo {
	background: url("../img/img_top_corporate.jpg") no-repeat right center;
	background-size:contain;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 1);
}

#back-corpo p span {
	background-color: rgba(255,255,255,0.69);
}
@media (max-width: 47.9em) {
#back-corpo {
	background: none;
}
}

/* Megasolor */
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

/* Parallax */
.js__parallax-window h1,
.js__parallax-window p.mons {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

.nav > li > a.s-btn--primary-bg:hover,
.nav > li > a.s-btn--primary-bg:focus {
  text-decoration: none;
  background-color: #4C4948;
	border-color: #4C4948; 
}

/* Footer
------------------------------ */
footer .list-unstyled li ul {
	padding-left:0.5rem;
}

footer .list-unstyled li li {
	font-size:0.875rem;
	list-style-type: none;
}

#footer-link ul li {
	font-weight: bold;
}

#footer-link ul li li{
	font-weight: normal;
}

/* Page Title
------------------------------ */
.ptitle div {
	margin-top:6rem;
}

@media (max-width: 61.9em) {
.ptitle div {
	margin-top:3rem;
}
}

.ptitle {
  position: relative;
  z-index: 1;
}
.ptitle div:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  background-repeat: repeat-x;
  content: " ";
}

.ptitle h1 {
	text-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}


/* Page Title2
------------------------------ */
.ptitle2 div {
	margin-top:6rem;
}

@media (max-width: 61.9em) {
.ptitle2 div {
	margin-top:3rem;
}
}

.ptitle2 {
  position: relative;
  z-index: 1;
}
.ptitle2 div:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  content: " ";
}

.ptitle2 h1 {
	text-shadow: 2px 2px 2px rgba(0,0,0,0.8);
}


/* News
------------------------------ */
.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

/* Product
------------------------------ */
.card.h-100 .row .col-sm-4 img {
	margin-bottom:1rem;
}

.search_result td {
	vertical-align:middle;
}

@media (min-width: 768px) {
#search_result .navbar-right {
    margin-right: 0;
    float: right !important;
}
}

#prod-list .row {
	margin-top:1rem;
}

#prod-list tr.active,
#prod-list2 tr.active {
	background-color: #f8f9fa;
}

#prod-list th,
#prod-list td {
	text-align: center;
	vertical-align:middle;
	width:16%;
	white-space: nowrap;
}

#prod-list td:first-child {
	white-space:normal;
	word-break: break-all;
}

#prod-list table.table-bordered {
    width: 100%;
    table-layout: auto;
}
#prod-list th,
#prod-list td {
	text-align: center;
	vertical-align:middle;
	width:auto;
	white-space: nowrap;
}

#prod-list td:first-child {
	white-space:normal;
	word-break: break-all;
}
#prod-list table.table-bordered td:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
	width:130px;
    white-space: normal;
}

@media only screen and (max-width:61.9em){
#prod-list table.table-bordered {
    width:100%
  }
#prod-list table.table-bordered th{
	background-color: #f8f9fa;
    display: block;
  }
#prod-list table.table-bordered thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
#prod-list table.table-bordered tr {
    display: block;
    margin-bottom: 0.625rem;
  }
  
#prod-list table.table-bordered td {
    border-bottom: 1px solid #dee2e6;
    display: block;
    font-size: 0.875rem;
    position: relative;
    padding: 0.625rem 0.625rem 0.625rem 4rem;
  }
  
#prod-list table.table-bordered td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
#prod-list table.table-bordered td:last-child {
    border-bottom: 0;
	width:100%;
  }
}

@media (max-width: 767px) {
#prod-list table.dldata td {
	font-size:0.75rem;
	width:25%;
}

#prod-list table.dldata td img {
	width:40px;
}
}

#prod-list table.dldata td {
	color:#666;
}

#prod-list table.dldata td img {
	filter: grayscale(100%);
	opacity: 0.6;
}

#prod-list table.dldata td a img {
	filter: grayscale(0%);
	opacity: 1;
}

#prod-list2 th,
#prod-list2 td {
	vertical-align:middle;
	width:10%;
	white-space: nowrap;
}

#prod-list2 th {
	text-align: center;
}

#prod-list2 td {
	text-align: center;
}

#prod-list2 td h5 {
	color: #387DCE;
	white-space:normal;
	word-break: break-all;
}

#prod-list2 td p {
	margin-bottom:0;
	padding:5px 0;
}

#prod-list2 td:first-child {
	text-align: left;
}

#prod-list2 th:first-child,
#prod-list2 td:first-child {
	width:30%;
}

#prod-list2 th:last-child,
#prod-list2 td:last-child {
	width:40%;
}

@media (max-width: 767px) {
#prod-list2 table td img {
	width:40px;
}
	
#prod-list2 table tr td:first-child img {
	width:100px;
}
}

#prod-list2 table td img {
	filter: grayscale(100%);
	opacity: 0.6;
}

#prod-list2 table tr td:first-child img {
	filter: grayscale(0%);
	opacity: 1;
}

#prod-list2 table td a img {
	filter: grayscale(0%);
	opacity: 1;
}

.tdblue {
	background-color:#E2FAFF;
}

#narrowdown {
	padding:0.5rem;
}

fieldset ul {
	padding:0 0 0 0.5rem;
}

fieldset li {
	list-style-type: none;
	line-height: 1;
	margin:0 0 0.25rem 0;
	padding:0;
}

fieldset li span {
	word-break: break-all;
    white-space: normal;
}

/*------------------------------------------------------------
ファセット検索
------------------------------------------------------------*/
.card-header h5 {
	  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.125rem;
  font-weight: bold;
}
.facets-search-clear {
  background: transparent;
  border: 1px solid #555;
  cursor: pointer;
  color: #555;
  font-size: 0.875rem;
	margin-left:1rem;
  padding: 5px;
  -webkit-appearance: none;
}
.card-body legend {
	border-bottom: 1px solid #CCC;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
	padding-bottom: 5px;
}

.card-body .facets-search-list li label {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.card-body .facets-search-list li label span {
	font-size: 0.875rem;
  word-break: break-all;
  white-space: normal;
}

.card-body .facets-search-list li label:before {
  border: 1px solid #387DCE;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #f8f9fa;
	content: '\f00c';
  height: 16px;
  line-height: 1;
  width: 16px;
  margin-right: 7px;
}

.card-body .facets-search-list li input[type="checkbox"] {
  display: none;
}

.card-body .facets-search-list li input[type="checkbox"]:checked + label:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #387DCE;
	content: '\f00c';
}

/* SDGs
------------------------------ */
.sdgs-box {
	background-color:rgba(206,255,242,0.70);
	padding:1rem;
	margin-bottom:2rem;
}

.sdgs-box h6 {
	color:#198754;
	font-weight: bold;
	padding-top:1rem;
	padding-bottom:0;
}

.sdgs-box dd {
	border-bottom:1px dotted #999;
	margin-left:0;
}

strong.sicon {
	background-color:#00A608;
	color:#FFF;
	padding:8px 15px;
	border:1px solid #198754;
	text-shadow:1px 1px 1px #198754;
	margin-bottom:0;
}

/* Support
------------------------------ */
ul.faq-box2 {
	list-style-type: none;
	padding-left:1rem;
	padding-right:1rem;
}

ul.faq-box2 li {
	border-bottom: 1px dotted #CCC;
	padding:0.5rem;
}

.merit-box {
	background-color:#FFF0E1;
	padding:1rem;
	margin-bottom:2rem;
}

.merit-box h6 {
	color:#F60;
	font-weight: bold;
	padding-top:1rem;
	padding-bottom:0;
}

.demerit-box {
	background-color:#EFFFDF;
	padding:2rem 1rem 1rem;
	margin-bottom:2rem;
}

.merit-box dd {
	border-bottom:1px dotted #999;
	margin-left:0;
}

strong.picon {
	background-color:#F60;
	color:#FFF;
	padding:8px 15px;
	border:1px solid #F30;
	text-shadow:1px 1px 1px #F30;
	margin-bottom:0;
}

strong.picon2 {
	background-color:#390;
	color:#FFF;
	padding:8px 15px;
	border:1px solid #690;
	text-shadow:1px 1px 1px #690;
	margin-bottom:0;
}

dt.b_line {
    margin-bottom: 8px;
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#valvetest label {
  font-size: 1rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: .25rem;
}

.linkbox {
    margin-bottom: 3rem;
}

.linkbox_head {
    font-size: 1.125rem;
    font-weight: 700;
    color: #387DCE;
    letter-spacing: 0;
    position: relative;
    margin-top: -2.25rem;
    padding: 0.875rem 0 0.25rem 1rem;
    width: 84.44444%;
    box-sizing: border-box;
    border-radius: 0 3rem 0 0;
    background-color: #fff;
}

.linkbox_head:before {
    color: #387DCE;
    content: "-";
    position: absolute;
    width: 2.041rem;
    height: 0.316rem;
    background-repeat: no-repeat;
    background-size: contain;
    top: 1rem;
    left: 0;
    transform: translateY(-50%);
}

.linkbox_subhead {
    font-size: 0.875rem;
    letter-spacing: .06em;
    margin-top: -1rem;
    padding-left: 1rem;
    position: relative;
}

/* Contact
------------------------------ */
#contact-box .wow {
	border: 1px solid #387DCE;
}


.bod {
    border-bottom: 1px solid #DDD;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.bod label {
    font-weight: normal;
    font-size: 1rem;
}

.error_messe {
	color: #FF0000;
}

.g-recaptcha {
  margin-right:auto;
  margin-left:auto;
  text-align: center;
  width:300px;
  margin-top:20px;
}

/* IR
----------------------------------------------------------------------------------------------------*/
.btn-flat { 
  color: #484848;
  display: inline-block;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  background: #eaeef1;
  text-decoration: none;
}

.btn-flat-icon {
  display: inline-block;
  width: 15%;
  height: 50px;
  text-align: center;
  color: white;
}
.btn-flat-icon i {
  font-size: 25px;
  line-height: 50px;
  transition: .3s;
}
.btn-flat-text {
  display: inline-block;
  width: 85%;
  text-align: center;
  vertical-align: top;
}

.btn-icon--primary {
  background:#387DCE;
}
.btn-icon--success {
  background:#198754;
}
.btn-icon--info {
  background:#0dcaf0;
}

/* Sitemap
----------------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 47.9375em) {
#sitemap-box {
	margin-bottom:1rem;
}

#sitemap-box h3 img {
	width: 50%;
}
}

#sitemap-box ul {
	border-bottom: 3px solid #EEEEEE;
	margin: 0 0 1.5rem;
	padding: 0;
}

#sitemap-box ul ul {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

#sitemap-box li {
	border-bottom: 2px solid #EEEEEE;
	list-style-type: none;
}

#sitemap-box li li {
	border-top: 2px solid #EEEEEE;
	border-bottom: none;
	margin-left:1rem;
}

#sitemap-box li a {
	display: block;
	padding: 0.6rem 0.6rem 0.6rem;
	text-decoration: none;
	color: #333;
	font-weight:bold;
}

#sitemap-box li li a {
	font-weight:normal;
}

#sitemap-box li a:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #387DCE;
	content: '\f152';
	margin-right:0.8rem;
}

#sitemap-box li li a:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #387DCE;
	content: '\f105';
	margin-right:0.8rem;
}

#sitemap-box li li li a:before {
	color: #387DCE;
	content: '-';
	font-weight: bold;
	margin-right:0.8rem;
}

#sitemap-box li a:hover {
	background-color: #F7F7F7;
}

@media only screen and (max-width: 29.9375em) {
	#sitemap-box .text-center p {
		font-size:0.7rem;
	}
}