@charset "utf-8";

/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display:block;
}
/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
body {
  color: #222;
  font-size: 1.6rem;
}
.contents {
  margin: 3rem 0 10rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
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-inquiry,
a.btn-entry {
  display: inline-block;
  padding: 1.1rem 3rem 0.8rem;
  font-size: 1.8rem;
  border: 2px solid;
  color: #fff;
  border-radius: 0.7rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
a.btn-inquiry {
  border-color: #0a528e;
  background-color: #0a528e;
}
a.btn-entry {
  border-color: #00a0e9;
  background-color: #00a0e9;
}
a.btn-inquiry:hover {
  background-color: #fff;
  color: #0a528e;
}
a.btn-inquiry::before,
a.btn-entry::before {
  content: "\f0e0";
  font-family: FontAwesome;
  font-size: 25px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 17px;
}
a.btn-entry:hover {
  background-color: #fff;
  color: #00a0e9;
}

/*----------------------------------------------------
  ページリンク
----------------------------------------------------*/
.page-link-area {
  position: relative;
  top: 100%;
  border-bottom: 1px solid #00a0e9;
}
.page-link-area ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0 15px;
}
.page-link-area ul li {
  padding: 0 4rem;
}
.page-link-area ul li a {
  color: #222;
  display: block;
}
.page-link-area ul li a::after {
  content: "\f078";
  font-family: FontAwesome;
  color: #00a0e9;
  position: relative;
  top: -2px;
  vertical-align: middle;
  padding-left: 10px;
}
.page-link-area ul li a:hover {
  text-decoration: none;
}
/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title-wrap {
  margin-top: 80px;
  background: url(../images/common/bg_page_title.png) no-repeat center center;
  padding: 2rem 1.5rem;
  margin-bottom: 3rem;
}
.page-title {
  font-size: 3.6rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}
.contents-title {
  font-size: 3rem;
  text-align: center;
  position: relative;
  margin-bottom: 5rem;
}
.contents-title::after {
  content: "";
  height: 4px;
  width: 60px;
  background-color: #00a0e9;
  display: inline-block;
  position: absolute;
  bottom: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.second-title {
  border-left: 4px solid #00a0e9;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  margin-left: -2.5rem;
}
/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
.header{
  width: 100%;
  height: 80px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  z-index: 10;
  background: #fff;
  padding: 0 20px;
  border-bottom: 1px solid #ddd;
}
.header-left {
  float:left;
  padding-top: 15px;
}
.header-right {
  float:right;
  margin-top:12px;
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
.global-nav {
  list-style: none;
  margin: 0;
}
.global-nav ul {
  list-style:none;
  padding-left: 0;
}
.global-nav > ul {
  display:flex;
}
.global-nav li {
  list-style: none;
  position:relative;
}
.global-nav > ul > li {
  margin-left: 1.5rem;
}
.global-nav a {
  display: block;
  color: #222;
  text-decoration: none;
}
.global-nav > ul > li > a {
  font-size: 1.8rem;
  padding:1.5rem 10px 1rem;
}
#home .global-nav ul > li.global-nav-menu01,
#company .global-nav ul > li.global-nav-menu02,
#product .global-nav ul > li.global-nav-menu03,
#shop .global-nav ul > li.global-nav-menu04,
#recruit .global-nav ul > li.global-nav-menu05,
#inquiry .global-nav ul > li.global-nav-menu06,
.global-nav > ul > li:hover {
  border-bottom: 4px solid #3fb6e8;
  text-decoration:none;
}
.global-nav-child {
  display: none;
  position: absolute;
  top: 58px;
  left: 0;
  width: 200px;
  background-color: #fff;
  padding: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.global-nav > ul > li:hover > .global-nav-child {
  display: block;
}
.global-nav-child li {
  border-bottom: 1px solid #ddd;
}
.global-nav-child li:last-child {
  border-bottom: none;
}
.global-nav-child a {
  display: block;
  padding: 10px 10px;
}
.global-nav-child a:hover {
  color: #00a0e9;
}
/*----------------------------------------------------
  ナビゲーションSP
----------------------------------------------------*/
.menu-button {
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 40px;
  height: 45px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  text-align: center;
}
.menu-trigger span.border {
  background-color: #245fbb;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 20px;
}
.menu-trigger span:nth-of-type(4) {
  font-size: 1rem;
  bottom: 0px;
  font-weight: bold;
  color: #245fbb;
  height: auto;
}
.smp-menu {
  position: fixed;
  z-index: 99;
  top: 60px;
  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: #245fbb;
  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 {
  margin: 8px auto ;
  width: 984px;
  padding:0;
  font-size:1.2rem;
}
.breadcrumb li {
  display: inline;
}
.breadcrumb li a:after {
  content: "\f105";
  font-family: FontAwesome;
  padding-left: 10px;
  padding-right: 10px;
  color:#ccc;
}
.breadcrumb li a:hover:after {
  text-decoration:none;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
.footer {
  position: relative;
  top: 0;
  border-top: 1px solid #ccc;
  margin: 0 auto;
}
.footer-area {
  margin-bottom: 20px;
  overflow: hidden;
}
.footer-left {
  float: left;
}
.footer-left img {
  margin-top: 10px;
  margin-bottom: 15px;
}
.footer-left p {
  font-size: 1.4rem;
  line-height: 1.8;
}
.footer-left p a {
  color: #222;
  text-decoration: none;
}
.footer-right {
  float: right;
  margin-top: 10px;
}
.footer-right ul {
  display: flex;
  list-style: none;
  padding-left: 0;
}
.footer-right ul li {
  margin-right: 21px;
}
.footer-right ul li a {
  color: #222;
  font-size: 1.4rem;
}
.footer-right ul li a::before {
  content: "\f0da";
  font-family: FontAwesome;
  color: #0C52A5;
  margin-right: 4px;
}
.footer-right ul li a:hover {
  text-decoration: none;
}
.footer-logo a {
  display:inline-block;
  vertical-align:middle;
  margin-right:20px;
}
.footer-main {
  float:left;
}
.footer-secondary {
  float:right;
  margin-top:15px;
}
.footer-nav {
  text-align: right;
  padding:0;
  list-style:none;
  font-size:1.3rem;
}
.copyright {
  font-size: 1rem;
  color: #666666;
  text-align: center;
  display:block;
  margin-bottom: 5px;
}
.page-top {
  position: fixed;
  bottom:25px;
  right:15px;
  z-index:2;
}
.page-top a {
  background: #00a0e9;
  text-decoration: none;
  color: #fff;
  width: 40px;
  height:40px;
  padding: 5px 0;
  text-align: center;
  display: block;
  filter: alpha(opacity=90);
  opacity: 0.9;
  font-size:2rem;
}
.page-top a:hover {
  text-decoration: none;
  opacity: 0.75;
}
/*----------------------------------------------------
  カレンダー　プラグイン
----------------------------------------------------*/
.xo-month td a{
  text-decoration: none;
}
@media screen and (max-width: 1199.98px) {
  /* デフォルト：1199px以上用（PC用）の記述 */
  .global-nav li {
    margin-left: 1rem;
  }
  .global-nav > ul > li > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991.98px) {
  /* デフォルト：991px以上用（PC用）の記述 */
  .breadcrumb {
    display:none;
  }
  .second-title {
    margin-left: 0;
  }
  .header{
    width: 100%;
    height: 60px;
    height: auto;
    padding: 0 1rem;
  }
  .header-left {
    padding: 10px 0 9px;
  }
  .header-left img {
    width: 160px;
  }
  .header-right {
    margin-top:12px;
  }
  .menu-button {
    display: block;
  }
  .global-nav {
    display: none;
  }
  .page-title-wrap {
    margin-top: 61px;
    padding: 1rem 2.5rem;
    margin-bottom: 1.5rem;
}
  .footer-area {
    margin-bottom: 10px;
  }
  .footer-left,
  .footer-right {
    float: none;
  }  
  .copyright {
    text-align: center;
    padding-top: 0;
  } 
  .footer-left img {
    display: block;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 15px;
  }  
  .footer-left p {
    text-align: center;
  }
  .footer-right ul {
    text-align: center;
    justify-content: center;
    padding-left: 0;
  }
  .footer-right ul li {
    margin: 0 1rem;
  }
  .footer-right ul li a {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
@media screen and (max-width: 767.98px) {
  /* デフォルト：767px以上用（タブレット用）の記述 */
  /* ナビゲーション対応 */
  .contents {
    margin: 1.5rem 0 5rem;
  }    
  a.btn-inquiry {
    padding: 1.1rem 2rem 0.8rem;
    font-size: 1.6rem;
  }
  .page-link-area ul li {
    padding: 0 2rem;
  }
  .page-title {
    font-size: 2.7rem;
  }
  .second-title {
    padding-left: 1rem;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .contents-title {
    font-size: 2.4rem;
    margin-bottom: 4.4rem;
  }
  .footer-left,
  .footer-right {
    float: none;
  }
}
@media screen and (max-width: 575.98px) {
  .page-link-area ul li {
    padding: 0 1.2rem;
  }
  .page-link-area ul li {
    border-left: 1px solid #ccc;
  }
  .page-link-area ul li:last-child {
    border-right: 1px solid #ccc;
  }
  .page-link-area ul li a {
    font-size: 1.4rem;
    padding: 0.5rem 0;
  }
  .page-link-area ul li a::after {
    padding-left: 7px;
  }
}
