@charset "UTF-8";
/* display_none */
.display_pc {
  display: block;
}

.display_pc.in {
  display: inline;
}

.display_sp,
.display_sp.in {
  display: none;
}

.none {
  display: none;
}

@media screen and (max-width: 768px) {
  .display_pc,
  .display_pc.in {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .display_sp {
    display: block;
  }
  .display_sp.in {
    display: inline;
  }
}
/* rollover */
a {
  transition: 0.5s;
}

.txt_indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* all
-------------------------------------------------------------------*/
body {
  width: 100%;
  /*  font-size: 100%;*/
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.l-content {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.l-content-m {
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .l-content,
  .l-content-m {
    width: 100%;
    max-width: 100%;
  }
}
.l-content-gap {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .l-content-gap {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

/* フォント
-------------------------------------------------------------------*/
/* header
-------------------------------------------------------------------*/
header {
  background: #fff;
}

.p-header {
  display: flex;
  justify-content: space-between;
  padding: 16px 40px;
  align-items: center;
  position: fixed;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  z-index: 9999;
  box-shadow: 0px 6px 8px -5px rgba(212, 212, 212, 0.5);
}
@media screen and (max-width: 920px) {
  .p-header {
    padding: 10px 10px;
  }
}

.c-header-h1 {
  padding-bottom: 6px;
}

.c-header-nav-top {
  display: flex;
  justify-content: flex-end;
  column-gap: 16px;
  margin-bottom: 14px;
}
.c-header-nav-top li a {
  display: inline-block;
  padding: 6px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background: #1266b1;
  border-radius: 4px;
}
.c-header-nav-top li a:hover {
  background: #009ede;
}
.c-header-nav-top li img {
  vertical-align: middle;
  width: 20px;
  height: auto;
}

.c-header-nav-top-icon {
  margin-right: 8px;
}

.c-header-nav-bottom {
  display: flex;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 1120px) {
  .c-header-nav-bottom {
    column-gap: 0px;
  }
}
.c-header-nav-bottom a {
  display: block;
  padding: 0 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 1035px) {
  .c-header-nav-bottom a {
    padding: 0 5px;
  }
}

.c-header-nav-bottom li {
  position: relative;
}

.c-header-nav-bottom a:hover {
  color: #1266b1;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
.c-header-nav-bottom li.has-child {
  text-align: center;
  padding-right: 18px;
}

.c-header-nav-bottom li.has-child::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 0px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #1266b1;
  border-right: 2px solid #1266b1;
  transform: rotate(135deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
.c-header-nav-bottom li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: -23px;
  top: 20px;
  z-index: 4;
  /*形状を指定*/
  background: #fff;
  width: 124px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
.c-header-nav-bottom li.has-child:hover > ul,
.c-header-nav-bottom li.has-child ul li:hover > ul,
.c-header-nav-bottom li.has-child:active > ul,
.c-header-nav-bottom li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
.c-header-nav-bottom li.has-child ul li a {
  font-size: 13px;
  padding: 14px 0;
  border-bottom: solid 1px #c2c2c2;
  display: block;
}

.c-header-nav-bottom li.has-child ul li:last-child a {
  border-bottom: none;
}

.c-header-nav-bottom li.has-child ul li a:hover,
.c-header-nav-bottom li.has-child ul li a:active {
  color: #1266b1;
  opacity: 1;
}

/*ドロワーメニュー*/
.l-drawer {
  display: none;
}
@media screen and (max-width: 960px) {
  .l-drawer {
    display: block;
    position: absolute;
    top: 6px;
    right: 5px;
  }
}

@media screen and (max-width: 960px) {
  .c-head-nav {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 60px;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.c-header-nav {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  margin-top: -60px;
}

.c-header-nav .c-footer-nav-dl dt {
  font-size: 16px;
  letter-spacing: 1.28px;
  margin-bottom: 14px;
}

.c-header-nav .c-footer-nav-dl dd p a {
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1.12px;
}

/*リストのレイアウト設定*/
.c-sp-nav li a {
  font-size: 14px;
  color: #333;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.c-sp-nav li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 3px solid #232d83;
  border-right: 3px solid #232d83;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 15px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.c-sp-nav {
  border-bottom: 1px solid #c2c2c2;
}
.c-sp-nav > li a {
  border-top: 1px solid #c2c2c2;
  padding: 6px;
}

.c-sp-nav-child {
  padding-left: 40px;
}
.c-sp-nav-child li a {
  border: none;
}

#g-nav .c-header-nav-top a {
  color: #fff;
}

.c-sp-nav {
  width: 100%;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 12px;
  right: 10px;
  cursor: pointer;
  width: 45px;
  height: 45px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #000000;
  width: 64%;
}

.openbtn-txt {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  position: absolute;
  bottom: 3px;
  right: 8px;
  text-align: center;
}

.openbtn.active .openbtn-txt {
  display: none;
}

.openbtn span:nth-of-type(1) {
  top: 10px;
}

.openbtn span:nth-of-type(2) {
  top: 20px;
}

.openbtn span:nth-of-type(3) {
  top: 30px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.c-header-nav-logo {
  margin-bottom: 48px;
  text-align: center;
}

.c-header-nav-sp-wrap {
  display: flex;
  column-gap: 2%;
  row-gap: 12px;
  flex-wrap: wrap;
}

.c-header-nav-sp-wrap .c-footer-nav-dl {
  width: 48%;
}

/*//ドロワーメニュー*/
/* contents
-------------------------------------------------------------------*/
main {
  display: block;
  padding-top: 97px;
}

@media screen and (max-width: 960px) {
  main {
    padding-top: 68px;
  }
}
/* footer
-------------------------------------------------------------------*/
.c-factoryS-wrap {
  background: #222222;
  padding: 80px 0;
}

.c-factoryS-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 930px) {
  .c-factoryS-inner {
    display: block;
  }
}

.c-factoryS-img {
  width: 50%;
}
@media screen and (max-width: 930px) {
  .c-factoryS-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.c-factoryS-img img {
  object-fit: cover;
  aspect-ratio: 9/5;
  width: 100%;
  height: auto;
}

.c-factoryS-txt {
  width: 43%;
}
@media screen and (max-width: 930px) {
  .c-factoryS-txt {
    width: 100%;
  }
  .c-factoryS-txt h2 {
    text-align: center;
  }
}

.c-factryS-gold {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.36px;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 18px;
  color: #ac7815;
}
@media screen and (max-width: 930px) {
  .c-factryS-gold {
    text-align: center;
  }
}

.c-factryS-btn {
  text-align: center;
}

.c-factoryS-lead {
  color: #fff;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 18px;
  font-weight: 500;
}

.c-footer-bottom {
  padding: 80px 0;
  background: #fff;
}
@media screen and (max-width: 980px) {
  .c-footer-bottom {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 900px) {
  .c-footer-bottom {
    padding: 40px 0;
  }
}

.c-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .c-footer-bottom-inner {
    display: block;
  }
}

.c-footer-logo {
  margin-bottom: 4px;
}

.c-footer-logo-lead {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 32px;
}
@media screen and (max-width: 820px) {
  .c-footer-logo-lead {
    text-align: center;
  }
}

.c-footer-btn li:first-child {
  margin-bottom: 16px;
}
.c-footer-btn li a {
  display: block;
  padding: 13px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  background: #1266b1;
  border-radius: 4px;
  max-width: 174px;
  text-align: center;
}
.c-footer-btn li a:hover {
  background: #009ede;
}
@media screen and (max-width: 820px) {
  .c-footer-btn li a {
    margin: 0 auto;
  }
}

.c-footer-nav-top-icon {
  margin-right: 8px;
}
.c-footer-nav-top-icon img {
  width: 18px;
}

.c-footer-nav {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}
@media screen and (max-width: 1080px) {
  .c-footer-nav {
    column-gap: 40px;
  }
}
@media screen and (max-width: 820px) {
  .c-footer-nav {
    display: block;
    width: 20 0px;
    margin: 30px auto 0;
  }
}

.c-footer-nav-bottom > li {
  margin-bottom: 17px;
}
@media screen and (max-width: 820px) {
  .c-footer-nav-bottom > li {
    margin-bottom: 20px;
  }
}
.c-footer-nav-bottom > li:last-child {
  margin-bottom: 0;
}
.c-footer-nav-bottom > li a {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}
.c-footer-nav-bottom > li a:hover {
  color: #1266b1;
}
.c-footer-nav-bottom:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 820px) {
  .c-footer-nav-bottom {
    margin-bottom: 15px;
  }
}

.c-footer-nav-bottom-child {
  margin-top: 16px;
}
.c-footer-nav-bottom-child li {
  margin-bottom: 17px;
}
.c-footer-nav-bottom-child li a {
  position: relative;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  padding-left: 20px;
  display: block;
}
.c-footer-nav-bottom-child li a:hover::before {
  background: #1266b1;
}
.c-footer-nav-bottom-child li a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background: #000;
  left: 0;
  top: 5px;
}

.c-footer-company {
  padding: 70px 0;
  border-top: 1px solid #d6d6d6;
  background: #fff;
}

.c-footer-company-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .c-footer-company-inner {
    display: block;
  }
}

.c-footer-company-left {
  display: flex;
}
@media screen and (max-width: 850px) {
  .c-footer-company-left {
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-company-left {
    display: block;
  }
}

.c-footer-logo {
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  .c-footer-logo {
    margin-right: 0;
    text-align: center;
  }
}

.c-footer-logo-txt {
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .c-footer-logo-txt {
    text-align: center;
  }
}

.c-footer-ad-dl {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 10px;
}
.c-footer-ad-dl:last-child {
  margin-bottom: 0;
}

.c-footer-company-right {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 850px) {
  .c-footer-company-right {
    justify-content: center;
  }
}

.c-footer-copy {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.c-footer-company-logo {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .c-footer-company-logo {
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

/*  パンくずリスト  */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.24px;
  font-weight: 400;
  padding-top: 20px;
  padding-bottom: 10px;
}

.breadcrumb span a {
  color: #000;
}
.breadcrumb span a:hover {
  color: #1266b1;
}

.breadcrumb span + span {
  padding-left: 22px;
  position: relative;
}

.breadcrumb span + span:before {
  content: "";
  border-top: 1px solid #727272;
  border-right: 1px solid #727272;
  margin-top: -5px;
  height: 5px;
  width: 5px;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*  ページャー  */
.pager_style {
  text-align: center;
  padding: 30px 0 0 0;
}

.pager_style li {
  width: 40px;
  border: 1px solid #bbbbbb;
  background: #fff;
  display: inline-block;
  margin: 0 0 10px 0;
}

.pager_style li:hover {
  background: #024384;
}

.pager_style li.on {
  background: #024384;
}

.pager_style li a {
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 8px 0;
}

.pager_style li.on a {
  color: #fff;
}

.pager_style li a:hover {
  color: #fff;
}

.pager_style li.prev {
  margin: 0 10px 0 0;
}

.pager_style li.next {
  margin: 0 0 0 10px;
}

@media screen and (max-width: 760px) {
  .pager_style li {
    width: 30px;
  }
  .pager_style li a {
    font-size: 12px;
    padding: 6px 0;
  }
  .pager_style li.prev,
  .pager_style li.next {
    margin: 0;
  }
}
#pageTop {
  position: fixed;
  bottom: 15px;
  right: 3%;
  width: 50px;
  z-index: 999;
}
#pageTop img {
  width: 50px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #pageTop #pageTop {
    width: 49px;
    right: 10px;
    bottom: 10px;
  }
}

/* フレックス
-------------------------------------------------------------------*/
.l-flex {
  display: flex;
}

.l-flex-between {
  justify-content: space-between;
}

.l-flex-center {
  justify-content: center;
}

.l-flex-align-center {
  align-items: center;
}

/*スマホのときに電話番号でタップ可能に*/
@media (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/*--ふわっとと---------*/
.c-header-nav-inner .c-header-nav-top {
  justify-content: center;
}

/* 下層ヘッダー
-------------------------------------------------------------------*/
.l-low-header-wrap {
  width: 100%;
  position: relative;
  padding: 40px 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 920px) {
  .l-low-header-wrap {
    padding: 40px 0 30px;
  }
}

.l-low-header-title {
  color: #1266b1;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 920px) {
  .l-low-header-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 920px) {
  .l-low-header-title.seminar {
    text-align: left;
  }
}

.content {
  /*下のかぶさるエリアの指定*/
  position: relative;
  z-index: 1;
  /*以下はレイアウトのための記述。削除可能*/
  background: #fff;
}

/*----------------------ページネーション*/
.pagination {
  display: flex;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  justify-content: center;
  font-size: 16px;
}

.pagination a {
  display: inline-block;
  /*    border-radius: 50%;
  border: 1px solid #dedede;*/
  text-decoration: none;
  width: 32px;
  height: 32px;
  line-height: 38px;
  text-align: center;
}

.pagination .active a {
  color: #1266b1;
  font-weight: 700;
}

.pagination a:hover {
  color: #1266b1;
  opacity: 1;
  font-weight: 700;
}

.pagination .next {
  margin-left: 18px;
}

.pagination .prev {
  margin-right: 18px;
}

.pagination .next a,
.pagination .prev a {
  position: relative;
  background: #1266b1;
  border-radius: 50%;
  transition: 0.5s;
}

.pagination .next a::after {
  position: absolute;
  content: "";
  right: 11px;
  top: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: none;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.pagination .next a:hover,
.pagination .prev a:hover {
  background: #009ede;
}

.pagination .next a:hover::after {
  position: absolute;
  content: "";
  right: 11px;
  top: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.pagination .prev a::after {
  position: absolute;
  content: "";
  right: 12px;
  top: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}

.pagination .prev a:hover::after {
  position: absolute;
  content: "";
  right: 12px;
  top: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
}

.c-pagenation-wrap {
  padding-top: 80px;
}

@media screen and (max-width: 900px) {
  .c-pagenation-wrap {
    padding-top: 40px;
  }
}

/* SP追従CTA
-------------------------------------------------------------------*/
.c-fix-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-fix-cta {
    display: block;
    position: fixed;
    z-index: 998;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  }
  .c-fix-cta-list {
    display: flex;
    justify-content: space-between;
  }
  .c-fix-cta-list li {
    width: 49%;
  }
  .c-fix-cta-list li a {
    display: block;
    padding: 14px 0 13px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }
  .c-fix-cta-doc {
    background: #1266b1;
    color: #fff;
  }
  .c-fix-cta-demo {
    background: #00e9e9;
    color: #232d83;
  }
  /* 追従CTAとフッター・ページトップボタンの重なり回避 */
  footer {
    padding-bottom: 62px;
  }
  #pageTop {
    bottom: 72px;
  }
}
/*# sourceMappingURL=common.css.map */