@charset "utf-8";

/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display:block;
}
/*共通*/
:root {
  --main-color: #396ab2;
  --main-second-color: #0aab8f;
}
/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  color: #222;
  font-size: 1.6rem;
}
.wrap {
  padding-top: 114px;
}
.contents-wrap {
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .second-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .second-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .second-container {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .second-container {
    max-width: 800px;
  }
}
/*本文*/
.wrap .container p {
  line-height: 2;
  text-align: justify;
}
.contents-wrap p {
  margin-bottom: 1em;
}
/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color:#245fbb;
  text-decoration: none;
}
a:visited {
  color:#245fbb;
  text-decoration: none;
}
a:hover {
  color:#E48E00;
  text-decoration: underline;
}
a:active {
  color:#E48E00;
  text-decoration: underline;
}
/*----------------------------------------------------
  ボタン
----------------------------------------------------*/
a.btn-normal {
  display: inline-block;
  border: 2px solid var(--main-color);
  color: #222;
  background-color: #fff;
  text-decoration: none;
  padding: 1.5rem 4rem;
  border-radius: 3rem;
  position: relative;
  line-height: 1.4;
  transition: 0.2s;
}
/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}
.page-title {
  font-size: 2.8rem;
  position: relative;
  padding: 0 1.6em;
  display: inline-block;
}
.page-title::before,
.page-title::after {
  content: "";
  width: 0.6em;
  height: 4px;
  display: inline-block;
  background-color: var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-title::before {
  left: 0;
}
.page-title::after {
  right: 0;
}
#recruit .page-title::before,
#recruit .page-title::after {
  background-color: var(--main-second-color);
}
.contents-title {
  border-left: 4px solid var(--main-color);
  padding-left: 1rem;
  padding-top: 0.2rem;
  color: #333;
  font-size: 2rem;
  line-height: 1;
  position: relative;
  margin-bottom: 2rem;
}
.contents-title::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #948f8e;
  position: absolute;
  bottom: -1rem;
  left: -3px;
}
.contents-second-title {
  font-weight: bold;
  color: var(--main-color);
  padding-left: 1.2em;
  position: relative;
}
.contents-second-title::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-color: var(--main-color);
  border-radius: 50%;
  position: absolute;
  top: 0.3rem;
  left: 0;
}
/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  border-top: 8px solid var(--main-color);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: #fff;
}
.header-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:12px 0;
  position: relative;
}
a.btn-lang {
  border: 1px solid #1c2887;
  background-color: #fff;
  color: #1c2887;
  width: 6em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
}
.header-right a.btn-lang:first-child {
  letter-spacing: 1px;
}
.btn-lang.active,
a.btn-lang:hover {
  background-color: #1c2887;
  color: #fff;
}
/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
.menu {
  background-color: #322a29;
  display: block;
}
ul.global-nav {
  list-style: none;
  padding-left:0;
  display: flex;
  flex-wrap: wrap;
}
.global-nav > li {
  flex: 0 0 25%;
  border-left: 1px solid #fff;
  position: relative;
}
.en .global-nav > li {
  flex: 0 0 33.3333%;
}
.global-nav > li:last-child {
  border-right: 1px solid #fff;
}
.global-nav > li > a,
.global-nav > li > span {
  display: block;
  padding:10px 10px 7px;
  color: #fff;
  height: 100%;
  text-align: center;
  text-decoration:none;
  cursor: pointer;
}
#home li.global-nav-home a,
#corporate li.global-nav-corporate > a,
#recruit li.global-nav-recruit a,
#contact li.global-nav-contact a,
.global-nav li a:hover,
.global-nav li > span:hover {
  color: #fff100;
}
.global-nav-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  list-style: none;
  padding-left:0;
  
}
.global-nav > li:hover > .global-nav-child {
  display: block;
}
.global-nav-child li {
  border-bottom: 2px dotted #ccc;
  background-color: #e6e6e7;
}
.global-nav-child li:last-child {
  border-bottom: none;
}
.global-nav-child a {
  display: block;
  padding: 10px 10px;
  color: #222;
  text-align: center;
  text-decoration: none;
}
.global-nav-child a:hover {
  background-color: var(--main-color);
  color: #fff !important;
}
/*----------------------------------------------------
  ナビゲーションSP
----------------------------------------------------*/
.menu-button {
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -2px;
  right: -5px;
  display: none;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 40px;
  height: 42px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  text-align: center;
}
.menu-trigger span {
  background-color: var(--main-color);
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 19px;
}
.menu-trigger span:nth-of-type(4) {
  font-size: 1rem;
  bottom: 0px;
  font-weight: bold;
  color: var(--main-color);
  height: auto;
  background: none;
}
.smp-menu {
  position: fixed;
  z-index: 99;
  top: 55px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
  padding: 0 10px;
  border-top: 1px solid #ddd;
}
.smp-menu ul {
  list-style: none;
  padding-left: 0;
}
.smp-menu ul li {
  font-size: 1.4rem;
  border-bottom: 1px solid #ddd;
}
.smp-menu ul li a,
.smp-menu ul li span {
  display: block;
  position: relative;
  color: #222;
  padding: 1.2rem 1.5rem;
}
.smp-menu ul li a:after,
.smp-menu ul li span:after {
  color: var(--main-color);
  font-family: FontAwesome;
  position: absolute;
  top: 50%;
  line-height: 1;
  margin-top: -0.5em;
  right: 5px;
}
.smp-menu ul li a:after {
  content: "\f054";
}
.smp-menu ul li span:after {
  content: "\f107";
  font-size: 2rem;
  color: #afb4bd;
}
.smp-menu ul li span.open:after {
  content: "\f106";
}
.smp-menu ul li a:hover {
  text-decoration: none;
}
.smp-menu .smp-menu-child {
  display: none;
  margin-left: 15px;
}
.smp-menu .smp-menu-child li:last-child {
  border-bottom: none;
}
.open .menu-trigger span:nth-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.open .menu-trigger span:nth-of-type(2) {
  display: none;
}
.open .menu-trigger span:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}
/*----------------------------------------------------
  パンクズメニュー
----------------------------------------------------*/
.breadcrumb ul {
  padding-left: 0;
  list-style: none;
  font-size:1.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li::after {
  content: "\f105";
  font-family: FontAwesome;
  padding-left: 10px;
  padding-right: 10px;
  color:#ccc;
}
.breadcrumb li:last-child::after {
  display: none;
}
/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.footer {
  padding:2rem 0;
  background-color: #56a499;
  margin-top: 5rem;
}
.footer-logo a {
  font-size: 1.8rem;
  display:inline-block;
  vertical-align:middle;
  margin-right:20px;
}
.footer-left {
  float:left;
}
ul.footer-nav {
  padding:0;
  list-style:none;
}
.footer-nav li {
  display: inline-block;
  border-left: 1px solid #fff;
}
.footer-nav li:last-child {
  border-right: 1px solid #fff;
}
.footer-nav li a {
  display: block;
  padding: 0 1em;
  color: #fff;
  font-size: 1.4rem;
}
.footer-right {
  float:right;
  margin-top: 0.2rem;
}
.copyright {
  display:block;
  color: #fff;
}

@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
  .wrap {
    padding-top: 58px;
  }
  .page-title {
    font-size: 2.4rem;;
  }
  .contents-title {
    font-size: 1.6rem;
  }
  header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  header {
    border-top-width: 4px;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
    min-height: 55px;
  }
  .header-area {
    padding: 5px 0;
  }
  .header-logo img {
    width: 180px;
  }
  .header-right {
    padding-right: 60px;
    text-align: right;
  }
  a.btn-lang {
    font-size: 1.1rem;
    padding: 1rem 0;
    width: 4.5em;
    margin-top: 1px;
  }
  .header-right a.btn-lang:first-child {
    margin-right: 2px;
  }
  .menu {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .footer-left,
  .footer-right {
    float: none;
    text-align: center;
  }
  .footer-left {
    margin-bottom: 1.5rem;
  }
  .footer-nav li a {
    font-size: 1.2rem;
  }
  .breadcrumb ul {
    font-size: 1.1rem;
    margin-top: 0.7rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 575.98px) {
}
