@charset "UTF-8";




@charset "UTF-8";
/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 18px;
  color: #000;
  font-weight: bold;
  line-height: 1.4;
  background: transparent;
  letter-spacing: 0px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 15px;
  }
}

ul, ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em, strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table, th, td {
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select, option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

main {
  display: block;
}

@media screen and (min-width: 961px) {
  .pc-none {
    display: none !important;
  }
}

@media (max-width: 960px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}

@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
}

@media (max-width: 750px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 751px) {
  .sp {
    display: none !important;
  }
}

.tb-over {
  display: none;
}
@media screen and (min-width: 959px) {
  .tb-over {
    display: block;
  }
}

.tb-under {
  display: none;
}
@media screen and (max-width: 959px) {
  .tb-under {
    display: block;
  }
}

/******************************************************************
 * 共通パーツ
******************************************************************/
html.fixed, body.fixed {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.c-wrap {
  overflow: hidden;
}

.c-inner {
  max-width: 1250px;
  margin: 0 auto;
}
@media (max-width: 1249px) {
  .c-inner {
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .c-inner {
    width: 100%;
    padding: 0 15px;
  }
}

.c-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* float
-----------------------------------------------------------------*/
.floatbnr {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 242px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .floatbnr {
    display: none;
  }
}
.floatbnr .close {
  position: absolute;
  top: -30px;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: #fff;
  font-size: 30px;
  color: #000;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .floatbnr .close {
    top: -22px;
    width: 22px;
    height: 22px;
    font-size: 22px;
  }
}
.floatbnr.active {
  opacity: 1;
  visibility: visible;
}

/* タイトル・ボタン
-----------------------------------------------------------------*/
.c-ttl {
  font-size: 53px;
  color: #161447;
  letter-spacing: 2px;
  padding-left: 88px;
  margin-bottom: 24px;
}
@media (max-width: 1399px) {
  .c-ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 750px) {
  .c-ttl {
    font-size: 35px;
    padding-left: 30px;
    margin-bottom: 6px;
  }
}
.c-ttl.center {
  text-align: center;
}

.c-btn {
  position: relative;
  width: 280px;
}
@media (max-width: 1399px) {
  .c-btn {
    width: 250px;
  }
}
@media screen and (max-width: 750px) {
  .c-btn {
    width: 200px;
    margin: 0 auto;
  }
}
.c-btn a {
  display: block;
  background: #FFF;
  font-size: 25px;
  color: #161447;
  text-align: center;
  border: 2px solid #e2e2e2;
  padding: 13px 0;
  transition: all 0.3s ease;
}
@media (max-width: 1399px) {
  .c-btn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .c-btn a {
    font-size: 17px;
  }
}
.c-btn a:hover {
  background: #161447;
  color: #FFF;
  border: 2px solid #161447;
}
.c-btn::before, .c-btn::after {
  position: absolute;
  content: " ";
  height: 2px;
  background: #ffa927;
  margin: auto;
}
.c-btn::before {
  position: absolute;
  content: " ";
  top: -10px;
  bottom: 0;
  right: calc(-2rem - .8px);
  width: 14px;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .c-btn::before {
    top: -6px;
    right: calc(-1rem - .8px);
    width: 10px;
  }
}
.c-btn::after {
  position: absolute;
  content: " ";
  top: 0;
  bottom: 0;
  right: -2rem;
  width: 65px;
}
@media screen and (max-width: 750px) {
  .c-btn::after {
    right: -1rem;
    width: 40px;
  }
}

/* .c-top-links
-----------------------------------------------------------------*/
.c-top-links {
  padding-top: 160px;
}
@media (max-width: 1399px) {
  .c-top-links {
    padding-top: 120px;
  }
}
@media screen and (max-width: 750px) {
  .c-top-links {
    padding-top: 30px;
  }
}
.c-top-links .c-top-links-wrap {
  padding: 106px 0;
}
@media screen and (max-width: 750px) {
  .c-top-links .c-top-links-wrap {
    height: 100vh;
    padding: 30px 0;
  }
}
.c-top-links .c-top-links-wrap .c-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .c-top-links .c-top-links-wrap .c-inner {
    display: block;
  }
}
.c-top-links .c-top-links-wrap .c-inner .c-top-links-cont {
  width: 28%;
  height: 400px;
  background: rgba(255, 255, 255, 0.9);
  color: #161447;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 1399px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont {
    height: 300px;
  }
}
@media screen and (max-width: 750px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding: 20px 0 30px;
  }
}
.c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70%;
  font-size: 31px;
  line-height: 1.8;
}
@media (max-width: 1399px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-ttl {
    font-size: 24px;
  }
}
@media screen and (max-width: 750px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-ttl {
    font-size: 20px;
    height: unset;
    margin-bottom: 10px;
  }
}
.c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-more {
  position: relative;
  font-size: 25px;
}
@media (max-width: 1399px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-more {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-more {
    font-size: 15px;
  }
}
.c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-more::after {
  position: absolute;
  bottom: -24px;
  right: 0;
  left: 0;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 16px 0 16px;
  border-color: #161447 transparent transparent transparent;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont .c-links-more::after {
    bottom: -10px;
    border-width: 8px 10px 0 10px;
  }
}
.c-top-links .c-top-links-wrap .c-inner .c-top-links-cont:hover {
  background: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 750px) {
  .c-top-links .c-top-links-wrap .c-inner .c-top-links-cont:last-child {
    margin-bottom: 0;
  }
}
.c-top-links.top-service .c-top-links-wrap {
  background: url("../img/top/top_service_bg.jpg") center no-repeat;
  background-size: cover;
}
.c-top-links.top-result .c-top-links-wrap {
  background: url("../img/top/top_result_bg.jpg") center no-repeat;
  background-size: cover;
}

/******************************************************************
 * ヘッダー
******************************************************************/
/* PC
-----------------------------------------------------------------*/
.header-nav-pc {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 115px;
  background: #FFF;
  padding: 0 15px;
  z-index: 1;
  opacity: 1;
  transition: 0.3s ease;
}
@media (max-width: 1199px) {
  .header-nav-pc {
    padding: 0 20px;
  }
}
@media screen and (max-width: 960px) {
  .header-nav-pc {
    display: none;
  }
}
.header-nav-pc .header-logo {
  width: 195px;
}
@media (max-width: 1799px) {
  .header-nav-pc .header-logo {
    width: 160px;
  }
}
@media (max-width: 1199px) {
  .header-nav-pc .header-logo {
    width: 130px;
  }
}
.header-nav-pc .header-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 195px - 142px);
  height: 100%;
  justify-content: center;	
}
@media (max-width: 1799px) {
  .header-nav-pc .header-menu {
    width: unset;
  }
}
.header-nav-pc .header-menu li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-nav-pc .header-menu li a {
  font-size: 1vw;
  border-left: 2px solid #d6d6d6;
  padding: 0 36px;
}
@media (max-width: 1799px) {
  .header-nav-pc .header-menu li a {
    font-size: 18px;
    padding: 0 20px;
  }
}
@media (max-width: 1199px) {
.header-nav-pc .header-menu li a {
    font-size: 1.45vw;
    padding: 0px 13px;
}
}
.header-nav-pc .header-menu li .child {
  position: absolute;
  top: 80px;
  right: 0;
  left: 50%;
  width: 284px;
  background: #f9f9f9;
  opacity: 0;
  pointer-events: none;
  padding: 16px 26px;
  margin: auto;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.header-nav-pc .header-menu li .child li {
  display: block;
  text-align: center;
  border-bottom: 2px solid #e4e4e4;
  margin-bottom: 10px;
}
.header-nav-pc .header-menu li .child li a {
  display: inline-block;
  font-size: 18px;
  color: #161447;
  text-align: left;
  border-left: none;
  padding: 0 0 10px 0;
}
@media (max-width: 1199px) {
  .header-nav-pc .header-menu li .child li a {
    font-size: 16px;
  }
}
.header-nav-pc .header-menu li .child li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.header-nav-pc .header-menu li .child li:last-child a {
  padding-bottom: 0;
}
.header-nav-pc .header-menu li:hover .child {
  opacity: 1;
  pointer-events: all;
}
.header-nav-pc .header-menu li:first-child a {
  border-left: none;
}
.header-nav-pc.active {
  opacity: 1;
  pointer-events: all;
}
ul.header-menu a:hover {
    opacity: 0.5;
}


/* SP
-----------------------------------------------------------------*/
.header-nav-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  background: #FFF;
  padding-left: 16px;
  z-index: 9999;
}
@media screen and (min-width: 961px) {
  .header-nav-sp {
    display: none;
  }
}
.header-nav-sp .header-logo {
  width: 100px;
  margin: 0;
}
.header-nav-sp .header-btn-wrap {
  display: flex;
}
.header-nav-sp .header-recruit {
  width: 100px;
  height: 60px;
  margin: 0;
}
.header-nav-sp .header-recruit a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #d6d6d6;
  color: #161447;
  font-weight: bold;
}
.header-nav-sp .navToggle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 60px;
  background: #161447;
  cursor: pointer;
  text-align: center;
  z-index: 9999;
  transition: 0.3s ease;
}
.header-nav-sp .navToggle span {
  position: absolute;
  display: block;
  width: 60%;
  cursor: pointer;
  border-bottom: solid 2px #fff;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.header-nav-sp .navToggle span:nth-child(1) {
  top: 20px;
}
.header-nav-sp .navToggle span:nth-child(2) {
  top: 30px;
}
.header-nav-sp .navToggle span:nth-child(3) {
  top: 40px;
}
.header-nav-sp .navToggle.active {
  background: transparent;
}
.header-nav-sp .navToggle.active span {
  width: 60%;
  border-bottom: solid 2px #161447;
}
.header-nav-sp .navToggle.active span:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(-30deg);
  -moz-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.header-nav-sp .navToggle.active span:nth-child(2) {
  opacity: 0;
}
.header-nav-sp .navToggle.active span:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  transform: rotate(30deg);
}
.header-nav-sp .globalMenu {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  opacity: 0;
  width: 100%;
  height: 100%;
  line-height: 1.45;
  padding: 60px 40px;
  transition: 0.6s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  z-index: 1001;
}
.header-nav-sp .globalMenu.active {
  opacity: 1;
  pointer-events: all;
}
.header-nav-sp .globalMenu .header-menu li {
  margin-bottom: 12px;
}
.header-nav-sp .globalMenu .header-menu li a {
  display: block;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 10px;
  transition: 0.3s ease;
}
.header-nav-sp .globalMenu .header-menu li a.active {
  border-bottom: none;
}
.header-nav-sp .globalMenu .header-menu li .child {
  display: none;
}
.header-nav-sp .globalMenu .header-menu li .child li a {
  font-size: 14px;
  padding-left: 20px;
}
.header-nav-sp .globalMenu .header-menu li .child li a::before, .header-nav-sp .globalMenu .header-menu li .child li a::after {
  content: none;
}
.header-nav-sp .globalMenu .header-menu li .child li:last-child {
  border-bottom: 1px solid #d6d6d6;
}
.header-nav-sp .globalMenu .header-menu li:last-child a {
  border-bottom: none;
}
.header-nav-sp .globalMenu .header-menu li.accord a {
  position: relative;
}
.header-nav-sp .globalMenu .header-menu li.accord a::before, .header-nav-sp .globalMenu .header-menu li.accord a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  content: " ";
  width: 10px;
  height: 1px;
  background: #a7a7a7;
  margin: auto;
}
.header-nav-sp .globalMenu .header-menu li.accord a::after {
  transform: rotate(90deg);
  transition: 0.3s ease;
}
.header-nav-sp .globalMenu .header-menu li.accord a.active::after {
  transform: rotate(180deg);
}

/******************************************************************
 * フッター
******************************************************************/
/* footer
-----------------------------------------------------------------*/
.footer .footer-menu {
/*   height: calc(100vh - 157px); */
  background: url("../img/common/footer_bg.jpg") no-repeat;
  background-size: cover;
  padding: 180px 48px 34px;
	margin-top: 200px;
}
@media (max-width: 1299px) {
  .footer .footer-menu {
    padding-top: 90px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu {
    padding: 40px 15px 60px;
  }
}
.footer .footer-menu .footer-menu-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 75px;
}
@media (max-width: 1299px) {
  .footer .footer-menu .footer-menu-wrap {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu .footer-menu-wrap {
    margin-bottom: 40px;
  }
}
.footer .footer-menu .footer-menu-wrap .footer-menu-logo {
  width: 224px;
}
@media (max-width: 1799px) {
  .footer .footer-menu .footer-menu-wrap .footer-menu-logo {
    width: 180px;
  }
}
@media (max-width: 1299px) {
  .footer .footer-menu .footer-menu-wrap .footer-menu-logo {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu .footer-menu-wrap .footer-menu-logo {
    width: 120px;
  }
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 224px - 55px);
}
@media (max-width: 1799px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap {
    width: calc(100% - 180px - 55px);
  }
}
@media (max-width: 1299px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap {
    width: 100%;
  }
}
@media (max-width: 1070px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap {
    flex-wrap: wrap;
  }
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont {
  width: 32%;
}
@media (max-width: 1070px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont {
    width: 53%;
  }
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont p {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (max-width: 1799px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont p {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont p {
    font-size: 13px;
  }
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont .cont-list li {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1799px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont .cont-list li {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont .cont-list li {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.child-menu li {
    font-size: 18px!important;
}
@media (max-width: 1799px) {
.child-menu  li {
    font-size: 15px!important;
}
}
@media screen and (max-width: 750px) {
.child-menu  li {
    font-size: 10px!important;
}
}
ul.child-menu.zigyo li {
    width: 100%!important;
}
.footer-cont-wrap a:hover {
    opacity: 0.5;
    color: #34a2d2;
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont .cont-list.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont .cont-list.flex li {
  width: calc(50% - 15px);
}
@media (max-width: 1070px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont .cont-list.flex li {
    width: 50%;
  }
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont .cont-list.flex.widerow li {
  width: calc(33% - 15px);
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont:first-child {
  width: 20%;
}
@media (max-width: 1070px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont:first-child {
    width: 46%;
  }
}
.footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont:last-child {
  width: 40%;
}
@media (max-width: 1070px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont:last-child {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-menu .footer-menu-wrap .footer-cont-wrap .footer-menu-cont:last-child {
    margin-top: 30px;
  }
}
.footer .footer-menu .footer-bnr {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu .footer-bnr {
    justify-content: space-between;
  }
}
.footer .footer-menu .footer-bnr li {
  width: 320px;
  margin-right: 50px;
}
@media screen and (max-width: 750px) {
  .footer .footer-menu .footer-bnr li {
    width: 48%;
    margin-right: 0;
  }
}
.footer .footer-menu .footer-bnr li:last-child {
  margin-right: 0;
}
.footer .footer-copy {
  background: #161447;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 66px 0;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .footer .footer-copy {
    font-size: 12px;
    padding: 40px 0;
  }
}


p {
    font-weight: 500;
    line-height: 1.8;
}

.br_700{
	display:none;
}
@media screen and (max-width: 700px) {
	.br_700{
	display:block;
}
}
.sukima{
	margin-bottom: 20px;
}
.sub_inner{
	max-width: 1800px;
	margin: 0 auto;
}
h2{
font-size: 2rem;	
}
h3{
text-align: center;
font-size: 1.8rem;
position:relative;
	margin-top: 100px;
	margin-bottom: 100px;
}
h3:after{
	content:"";
	position: absolute;
	width:50px;
	height: 5px;
	border-radius: 10px;
	background-color:#333;
	bottom: -15px;
	left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.sub_topimg{
	height:400px;
	margin-top: 60px;
	background-image: url("../img/sub/sub_topimg_company.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;	
}
.sub_topimg.company{
	height:400px;
	margin-top: 60px;
	background-image: url("../img/sub/sub_topimg_company.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;	
}
.sub_flebox{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1400px;
    margin: 0 auto;
}
.fletext_box{
	width: 800px;
}
.pre_name{
    text-align: right;
    font-weight: 700;
    font-size: 1.2rem;	
}

@media screen and (max-width: 1200px) {
	.fle_img{
		width: 280px;
	}
	.fletext_box {
    width: 500px;
}
}@media screen and (max-width: 1000px) {
.sub_topimg {
	height: 220px;
	}
.sub_topimg.company {
	height: 220px;
	}		
}
@media screen and (max-width: 960px) {
	.sub_topimg{
	    margin-top: 0px;	
	}	
.sub_topimg.company{
	    margin-top: 0px;	
	}	
}
@media screen and (max-width: 900px) {
	.sub_inner {
    max-width: 85%;
    margin: 0 auto;
}
.sub_flebox{
	display: grid;
	}	
.fle_img {
    width: 280px;
    margin: 30px auto;
}
	.fletext_box {
    width: 80%;
		margin: 0 auto;
}
	h3 {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 750px) {
	.fle_img {
    width:40vw;
}
.sub_topimg.company{
	background-position: calc(22% - 100px) center;
}	
}
@media screen and (max-width: 600px) {
	.fle_img {
    width: 50vw;
}
	.sub_inner {
		    max-width: 90%;
	
	}
	.fletext_box {
		width: 90%;
	}
h3 {
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 500px) {
	.sub_inner {
    max-width: 97%;
}
}
/*company*/
.subtable{
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 600;
}
.subtable th{
	background-color:#6e6e6e;
border: solid #6e6e6e 1px;
    padding: 0px 30px;
	color: #fff;
	border-bottom: #fff solid 1px;
	    font-weight: 600;
}
.subtable td{
border: solid #6e6e6e 1px;
	    padding: 15px 50px;
	    font-weight: 500;
}
.subtable p{
display: flex;	
    justify-content: space-between;
    width: 80%;
}
.link_a{
    background-color: #161447;
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    margin: 40px auto;
    display: block;
    width: fit-content;
}
.contact_box{
	background-color: #f9f9f9;
	width: 80%;
    margin: 50px auto 150px;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.con_boxtext{
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
}
.a_box{
    display: flex;
    max-width: 600px;
    justify-content: space-evenly;
	    margin: 0 auto;
   max-width: 800px;
}
.tel_a{
background-color:#161447;
    color: #fff;
    padding: 15px;
    border-radius: 40px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.confor_a{
  background-color:#c9c9c9;
    color: #070707;
    padding: 15px;
    border-radius: 40px;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1000px) {
	.contact_box {
	width: calc(100% - 50px);
	}
	.confor_a {
    width: 230px;
	}
	.tel_a{
	 width: 230px;	
	}
	.a_box {
    max-width: 500px;
	}}
@media screen and (max-width: 750px) {
	.subtable {
    font-size: 1.1rem;
	border: solid #6e6e6e 1px;
}
	
	.subtable th{
	display: block;
    text-align: center;
		
	}	
	.subtable td{
	display: block;		
	}
	.contact_box {
	width: 90%;
	height: 300px;
	}

	.a_box {
    max-width: 500px;
		display: grid;
	}
	.tel_a {
    width: 190px;
    height: 50px;
    margin-bottom: 20px;
}
	.confor_a{
    width: 190px;
    height: 50px;		
	}
	
}
@media screen and (max-width: 600px) {
.subtable {
    width: calc(100% - 40px);
}	
	.subtable p{
    width: 93%;
}
	.con_boxtext {
    font-size: 1.1rem;
}

}

@media screen and (max-width: 400px) {
.subtable {
    width:100%;
}
	.subtable td {
    padding: 15px 20px;
}
}




/*拠点案内*/
.anchor{
    display: block;
    padding-top: 100px;
    margin-top: -100px;
}

.base_allbox{
	max-width: 1200px;
	margin: 0 auto;
}

.base_listbox{
        background-color: #f9f9f9;
    height: 300px;
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
	    margin: 0px auto 50px;
}
.base_list{
display: flex;
    flex-wrap: wrap;	
line-height: 3;
width: 900px;
}
.base_list li{
width: 20%;
text-decoration: underline;
    font-size: 1.2rem;
}
.base_box img{
	height: 300px;
}
dl.base_box.tate img {
    width: 514px;
    height: auto;
}
.base_zone:last-of-type{
	margin-right: auto;
}

.base_zone{
    display: flex;
    justify-content: space-between;
	    margin-top: 150px;
}
.base_box dt{
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 10px;
}
.addbox{
	height:180px;
	    margin-top: 20px;
}
.add_no{
	margin: 0px 0px 1rem;
}
.areabox{
	height:100px;
}
.map iframe{
	height: 300px;
	    width: 100%;
}

dd {
    font-weight: 500;
}

@media screen and (max-width: 1300px) {
	.base_allbox {
		max-width: 960px;
	}
	.base_box img {
    height: 260px;
}
dl.base_box.tate img {
    width: 445px;
    height: auto;
}	
	
.base_listbox {
    width: 80%;	
	}

.base_list li {
	width: 26%;
	margin-left: auto;
	}
.base_list {
    justify-content: center;
	width: 640px;
}

}
@media screen and (max-width: 1000px) {
.base_zone {
    display: grid;
	    justify-content: center;
	    margin-top:0px;
}
		.base_box img {
    height: 300px;
}
dl.base_box.tate img {
    width: 514px;
    height: auto;
}	
		.first_base{
		margin-top: 0px;
	
	}
/*	.base_box:nth-child(even){
		margin-top: 100px;
	}*/
.base_box {
    margin-top: 80px;

	}
}
	
@media screen and (max-width: 750px) {
	dd{
		font-size:1rem;
	}
	.first_base {
    margin-top: -80px;
}

	.base_list li {
    width: 40%;
	    font-size: 1.1rem;
}
		.base_list li:last-of-type {
    	margin-left: 10%;
}
	.base_list {
    justify-content: start;
}
	.base_box img{
	height: 50vw;
}
dl.base_box.tate img {
    width: 85vw;
    height: auto;
}	
.areabox{
	margin-top: 30px;
}
}
@media screen and (max-width: 500px) {
	.base_listbox {
    width: 90%;
}
	.base_list li {
	    font-size: 1rem;
}
	.addbox {
    height: auto;
    margin-top: 10px;
}
}


/*お客様へ*/
.lagemessage{
    font-size: 1.1rem;
        max-width: 710px;
    margin: 80px auto;
	   line-height: 1.7;
	    font-weight: 500;
}
.con_box {
    display: flex;
    margin: 150px auto;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;

}
.no_01{
font-size: 2.6rem;
    position: absolute;
    top: -90px;
    color: #161447;
    border-bottom: solid 1px #dee2e6;
    width: 100%;
}
.no_02{
    font-size: 2.6rem;
    position: absolute;
    top: -90px;
    color: #161447;
	    border-bottom: solid 1px #dee2e6;
    width: 100%;
}
.no_03{
    font-size: 2.6rem;
    position: absolute;
    top: -90px;
    color: #161447;
	    border-bottom: solid 1px #dee2e6;
    width: 100%;
}
.conp_box{
	width: 500px;
	position: relative;
}
.re_conbox{
    flex-direction: row-reverse;	
}
.con_box img{
	width: 500px;
}
@media screen and (max-width: 1100px) {
.con_box img {
    width: 40vw;
}
}
@media screen and (max-width: 950px) {
	.con_box img {
    width: 400px;
}
.con_box {

    display: grid;
}
	.conp_box {
		width: fit-content;
		    margin-top: 10px;
	}
.lagemessage {
    font-size: 1rem;
    max-width: 570px;
 
}
.no_01,.no_02,.no_03{
    top: -410px;
}
}
@media screen and (max-width: 750px) {
	.conp_box{
		font-size:1rem;
	}	
}
@media screen and (max-width: 420px) {
.no_01, .no_02, .no_03 {
    top: -95vw;
}	
}


/*ライズアップクオリティ*/
.dl_box{
	line-height: 1.7;
}
.font_box{
    font-size: 2.5rem;
    color: #f8f9fa;
    vertical-align: -5px;
    margin-right: 30px;
    background-color: #161447;
    padding: 10px;
    height: 70px;
    width: 70px;
    display: inline-flex;
    justify-content: center;
    border-radius: 50px;
    margin-left: -10px;
}
.un_h4{
    margin-top: 50px;
	margin-bottom: 40px;
	font-size: 1.5rem;
}
.con_box02{
	max-width: 900px;
	margin: 0 auto;
}
.dl_box dt{
    font-size: 1.3rem;
    margin-bottom: 5px;
    margin-top: 20px;
    color: #333;
    border-left: 3px #333 solid;
    padding-left: 7px;
}
.dl_box dd{
	padding-left: 7px;
}
.emphasis{
    border-bottom: 2px solid #adb5bd;
}
.waku_box{
    margin: 60px auto 40px;
    border: solid #c9c9c9 2px;
    padding: 50px 30px;
    max-width: 800px;
    display: flex;
    justify-content: center;
}
.lagemessage02{
	text-align: center;
}
.quality_imgbox{
	display: flex;
	max-width:80%;
	justify-content: center;
	margin: 30px auto;
	
}
.quality_imgbox img {
    height: auto;
    padding: 10px;
	    width: 350px;
}
.quality_imgbox dl{
	display: flex;
    flex-direction: column-reverse;
    align-items: center;
}
.quality_imgbox dt{
height: 60px;	
}
.concept_box{
	max-width: 1000px;
	margin: 0 auto;
}
.concept_box dl{
    border: solid 3px #e2e2e2;
    margin: 10px 10px 50px 10px;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	line-height: 1.7;
}
.concept_box dt{
    font-size: 1.3rem;
    color: #5176a4;
}
.img_box {
    margin: 60px auto;
    display: flex;
    justify-content: space-evenly;
    max-width: 500px;
}
.img_box img {
	margin: 10px 5px;
	padding:5px;
}
.img_box02 {
    margin: 60px auto;
    display: flex;
    justify-content: space-evenly;
    max-width: 700px;
}
.img_box02 img {
	margin: 10px 5px;
	padding:5px;
}
.led_link{
    background-color: #161447;
    color: #fff;
    padding: 5px 30px;
    border-radius: 5px;
    margin-top: 10px;
    display: block;	
	width: fit-content;

}
.qua{
	text-align:center;
}
.br400{
	display:block;
}
dd.concept_box-img {
    text-align: center;
    margin-top: 20px;
}
@media screen and (max-width: 1200px) {
	.quality_imgbox{
		flex-flow: wrap;
	}
	.concept_box {
    max-width: 80%;
    margin: 0 auto;
}
	.img_box {
    max-width: 35%;
}
	.img_box02 {
    max-width: 45%;
}	
}
@media screen and (max-width: 900px) {
	.quality_imgbox {
     max-width: 100%;
	}

	.quality_imgbox img {
    height: auto;
    padding: 10px;
    width: 260px;
}
		.concept_box {
    max-width: 100%;
    margin: 0 auto;
}
		.img_box {
    max-width: 45%;
}
		.img_box02 {
    max-width: 80%;		
}	
}
@media screen and (max-width: 650px){
.quality_imgbox img {
    padding: 5px;
    width: 200px;
	}
.quality_imgbox dt {
    max-width: fit-content;
}
.un_h4 {
    font-size: 1.2rem;
}	
.dl_box dt {
	font-size: 1rem;
	}
.font_box {
	font-size: 1.7rem;
	padding: 6px;
    height: 50px;
    width: 50px;
	}
	
}
@media screen and (max-width: 500px){
.img_box {

    flex-direction: column-reverse;
	    max-width: 85%;
}
.img_box02 {

    flex-direction: column-reverse;
	    max-width: 85%;
	    margin: 0px auto;
}	
}
@media screen and (max-width: 400px){
.qua{
	text-align:left;
	}
	.br400{
	display:none;
}
}
/*qa*/

.q_mark{
    font-size: 2rem;
    color: #5176a4;
    position: absolute;
    top: -14px;
    left: -37px;
}
.a_mark{
font-size: 2rem;
    color: #ffa927;
    position: absolute;
    top: -9px;
    left: -34px;
}

.qa_box{
width: 1000px;
	margin: 0 auto;
}
.qa_box dl{
    margin-bottom: 80px;
    line-height: 2.5;
    position: relative;
}
.qa_box dl:after{
position: absolute;
    content: "";
    border: solid 1px #e4e4e4;
    width: 100%;
    bottom: -40px;
}
.qa_box dt{
	position: relative;
	margin-bottom: 30px;
	line-height: 1.7;
}
.qa_box dd{
	position: relative;
	line-height: 1.7;
}
.center{
    justify-content: center;
	    margin-top: -30px !important;
}
@media screen and (max-width: 1200px) {
	.qa_box {
		width: 750px;
	}
}
@media screen and (max-width: 900px) {
	.qa_box {
    width: calc(100% - 50px);
}
	.qa_box dt {
    font-size: 1rem;
}
}
@media screen and (max-width: 600px) {
	.qa_page .sub_inner {

    max-width: 90%;
    margin-left: 30px;
}	
	
.qa_box dl:after {
    bottom: -20px;
}	
.qa_box dl {
    margin-bottom: 40px;
	line-height: 2;
}
.q_mark {
    font-size: 1.5rem;
    top: -12px;
    left: -30px;
}
.a_mark {
    font-size: 1.5rem;
    top: -10px;
    left: -28px;
}
}
/*----flow-----*/
.flow_box {
	margin-top: 150px;
}
.flow_box dl {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    line-height: 2;
    margin-bottom: 150px;
    align-items: center;
    justify-content: space-evenly;
}
.flow_box dt{
    width: 450px;
	font-size: 1.4rem;
	position: relative;
	display: flex;
    align-items: center;
}
.flow_box dt:after{
    content: "";
    position: absolute;
    border: solid 1px #161447;
    height: 180px;
    top: -20%;
    right: 20%;
}
.flow_box dd{
width: 650px;
}
.flow_box span{
	font-size: 4rem;
	margin-right: 50px;
	    color: #d6d6d6;
	font-weight: 400;
}
.tel_button{
    background-color: #5176a4;
	color: #fff; 
    padding: 10px;
	margin-right: 30px;
    border-radius: 3px;
    display: flex;
	justify-content: center;
	align-items: center;
	    height: 60px;
}
.mail_button{
    background-color: rgb(255 255 255 / 90%);
    padding: 10px;
    border-radius: 3px;
    color: #161447;
    border: 2px solid #5176a4;
	   height: 60px;
    display: flex;
	justify-content: center;
	align-items: center;
}
.button_box{
	margin-top: 30px;
	    display: flex;
}
@media screen and (max-width: 1300px) {
	.flow_box dl {
		width: 900px;
	}
	.flow_box dd {
    width: 500px;
}
.flow_box span {
    font-size: 4rem;
    margin-right: 20px;
  
}	
}
@media screen and (max-width: 960px) {
	.flow_box dt {
		width: 500px;
	}
.flow_box dt:after {
    content: "";
    position: absolute;
    border: solid 1px #333;
    height: 0px;
    top: 80%;
   right: 0%; 
    width: 100%;
}
.flow_box dl {
    flex-direction: column;
	    width: auto;
	    margin-bottom: 60px;
}
.button_box {
    justify-content: center;
}	
}
@media screen and (max-width: 550px) {
.flow_box dt {
    width: 100%;
}
.flow_box dd {
   width: 100%;
}
	.flow_box span {
		font-size: 3rem;
	}
.tel_button{
    margin-right: 10px;	
}
}
@media screen and (max-width: 450px) {
.button_box {
flex-direction: column;
    width: 80%;
    margin: 20px auto 0px;
    line-height: 1;
}	
}


/*機材紹介*/
.eqp_box{
	max-width: 1400px;
	margin: 100px auto;
}
.eqp_box dl{
	
}
.eqp_box dt{
    width: 60%;
    height: 60px;
    display: block;
    margin: 10px auto 0px;
	    color: #004085;
}
.eqp_dl{
    border: solid 1px #adb5bd;
    margin: 30px 10px;
    padding: 10px;
}
.eqp_box dd{
    text-align: center; 
}
.img_text{
    white-space: nowrap;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.block_box{
	display:block;
}

@media screen and (max-width: 1500px) {
.eqp_box {
    width: 80%;
}
.eqp_box dt {
	width: 80%;
	}	
}
	@media screen and (max-width: 1050px) {
	.eqp_box dt {
    width: 100%;
}	
	}

@media screen and (max-width: 991px) {
	.eqp_box dt {
    width: 80%;
		font-size: 1rem;
}
	.eqp_box {
    width: 80%;
}
		.eqp_inner{
		    max-width: 100% !important;
	}
}
@media screen and (max-width: 600px) {
	.eqp_box {
    width: 100%;
}
.eqp_box dt {
    width: 100%;
    font-size: 1rem;
}

}
@media screen and (max-width: 500px) {
	.img_text{
	    font-size: 3.5vw;
	}	
}
/*eqp_under*/

.disease_ul li {
    width: 33%;
}
.disease_ul {
    display: flex;
    flex-flow: wrap;
    line-height: 2;
    padding-left: 25px;
}


.eqp_h4{
    color: #161447;
    display: block;
    width: fit-content;
    margin: 50px auto;
    background-color: #f7f7f7;
    padding: 20px 40px;
	
}
.eqp_menu {
    width: 1100px;
    margin: 80px auto;
    line-height: 1.5;
    font-size: 1rem;
    border-top: solid 1px #dee2e6;
    border-bottom: solid 1px #dee2e6;
    padding: 20px 20px;
}

.eqp_menu ul{
    margin-left: 50px;
}
.eqp_menu li{
	position: relative;
	    margin-bottom: 10px;
}
.eqp_menu li:before{
    position: absolute;
    content: "▶";
    font-size: 0.6rem;
    color: #333;
    top: 3.5px;
    left: -15px;
}

.eqp_text {
    margin: 0 auto;
    border: solid 3px #dee2e6;
	max-width: 950px;
    padding: 20px 20px;
	line-height: 1.9;
}
.eqp_pdfbox img{
    border: solid 3px #d6d6d6;
	transition: 0.3s ;
}
.eqp_pdfbox img:hover{
   opacity: 0.5;
}


.eqp_pdfbox{
    display: flex;
	justify-content: space-between;
    margin: 150px auto;
    max-width: 1300px;
}
.eqp_text dt{
	margin-bottom: 10px;
	font-size: 1.5rem;
}
.eqp_text p{
	position: relative;
	margin-left: 10px;
}
/* .eqp_text p:before {
    position: absolute;
    content: "";
    background-color: #adb5bd;
    top: 10px;
    left: -20px;
    width: 10px;
    height: 10px;
    border-radius: 10px;
} */

@media screen and (max-width: 1400px) {
	.eqp_pdfbox {
    max-width: 1000px;
}
	.eqp_pdfbox img {
    border: solid 3px #d6d6d6;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
}
}
@media screen and (max-width: 1200px) {
	.col-6 {
    -ms-flex: 0 0 50%!important;
    flex: 0 0 50%!important;
    max-width: 50%!important;
}
	.eqp_menu {
	width: 800px;
	}
.eqp_menu ul {
       margin-left: 10vw;
}
}
@media screen and (max-width: 1000px) {
.eqp_text {
    width: 97%;
	}

	
}
@media screen and (max-width: 750px) {
	.eqp_pdfbox {
    display: block;
}
	.eqp_pdfbox img {
    width: 80%;
    margin: 20px auto;
	}
.eqp_text {
    width: 100%;
}
.eqp_text dt {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
}
@media screen and (max-width: 700px) {
.eqp_menu ul {
    margin-left: 0vw;
    padding-left: 10vw;
	}
	.eqp_menu {
    width: 100%;
}
	.eqp_menu li {
padding: 5px 20px;
}
.eqp_menu li:before {
    top: 11px;
    left: -4px;
}	
}
@media screen and (max-width: 500px) {
	.eqp_menu ul {
    padding-left: 1vw;
}
	.eqp_menu {
		line-height: 1.5;
    font-size: 0.9rem;
	}
	.eqp_text{
	    padding: 20px 5px;	
	}
}



/*business*/
.business_top_p{
    width: 900px;
    padding: 20px;
    margin: 80px auto;
    border: solid 2px #adb5bd;
	display: flex;
	justify-content: center;
	
}
.business_box{
	max-width: 1250px;
	margin: 0 auto;
}
.business_box dd{
display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 150px;
    border-bottom: solid 2px #dee2e6;
}

.re_dd{
	flex-direction: row-reverse;
}
.business_box dt{
	font-size: 1.5rem;
	position: relative;
	    margin-bottom: 50px;
}
.business_box dt:before{
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #6c757d;
    position: absolute;
    top: 50px;
}
.business_text{
	width: 600px;
	    line-height: 1.8;
}
.business_text ul{
	padding-left: 15px;
	padding-top: 10px;
}
.business_text li{
	line-height: 1.7;
	position: relative;
}
.business_text li:before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: #dee2e6;
    position: absolute;
    top: 10px;
    left: -15px;
}
.voice01{
	margin-bottom:150px;
	position:relative;
}
.voice01:after{
position: absolute;
    content: "";
    border: solid 1px #e4e4e4;
    width: 80%;
    bottom: -40px;
	    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
	
}
@media screen and (max-width: 1300px) {
	.business_top_p {
		width: 80%;
	}
	.business_box {
		max-width: 90%;}
	.business_box img{
		    width: 30vw;
	}
	.business_text {
    width: 420px;
}
	.business_box dt:before {

    top: 40px;
}
	.business_box dd {
    margin-top: 50px;
}
}
@media screen and (max-width: 800px) {
	.business_box dd {
    margin-top: 50px;
    flex-direction: column-reverse;
}
		.business_box img{
		    width: 400px;
			margin-bottom: 50px;
	}
}
@media screen and (max-width: 600px) {
	.business_box dt {
    font-size: 1.1rem;
}
	.business_text {
    width: 90%;
}
	.business_box dd {
    margin-bottom: 50px;
    padding-bottom: 60px;

}
}

/*ギャラリー*/
.gallery{
columns: 5;/*段組みの数*/
padding:0 15px;/*ギャラリー左右に余白をつける*/
}

.gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img{
  width:100%;
  height:auto;
  vertical-align: bottom;/*画像の下にできる余白を削除*/}

/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 1480px) {
  .gallery{
  columns:4;
  } 
}


/*　横幅900px以下の段組み設定　*/
@media only screen and (max-width: 900px) {
  .gallery{
  columns:3;
  padding: 0px;
  } 
}

@media only screen and (max-width: 768px) {
  .gallery{
  columns: 2;
  } 
}


/*========= レイアウトのためのCSS ===============*/

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

a:hover,
a:active{
  text-decoration: none;
}

h1{
  text-align: center;
  font-size:6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin:30px 0;
}

p{
  margin:0 10px 10px 10px;
  word-wrap : break-word;
}

/*画像を出現させるアニメーションCSS*/

.flipLeft{
animation-name: flipLeft;
animation-duration:0.5s;
animation-fill-mode:forwards;
perspective-origin: left center;
opacity: 0;
}

@keyframes flipLeft{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}

.gallery-box {
    margin-top: 150px;
}


/*求人ページ---------------------------------------------*/

.recruit-mv {
    height: 880px;
    position: relative;
	background: url("../img/sub/rec-mv.jpg") center ;
	background-size: cover;
}
.recruit-mv .mv_box {
    text-align: center;
    position: absolute;
    top: 60%;
    right: 100px;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.mv_box img {
    width: 600px;
}
.container {
    width: 1220px;
    padding: 0 10px;
    margin: 0 auto;
}
.contact_btns {
    display: flex;
    justify-content: space-around;
    padding: 100px 0;
}
.req {
    position: relative;
}
.shikaku.req {
    top: -60px;
    right: 180px;
    width: 120px;
    z-index: -1;
}
.shikaku.req .smail-rec {
    color: #fff;
	right: 25px;
}
.pg_section.recruit0 h2.tt1 {
    text-align: center;
	color:#24356d;
}
.pg_section.recruit0 p {
    text-align: center;
}
.recruit-flex {
    display: flex;
	margin-top: 60px;
}
.req-img {
    width: 60%;
}
.eria-menu{
	display: flex;
    flex-wrap: wrap;
    margin: 0 -34px 0 0;
	justify-content: flex-end;
}
.eria-menu li {
    position: relative;
    flex: 0 0 30%;
    max-width: calc(30% - 30px);
    text-align: center;
    margin: 0 34px 32px 0;
    transition: all 0.3s ease;
}
.eria-menu li {
    background: #24356d;
}
.eria-menu li {
    display: block;
    font-size: 22px;
    color: #FFF;
    font-weight: 500;
    border: 2px solid #FFF;
    padding: 46px 0;
}

.eria-menu li a {
    background: #fff;
    padding: 10px 15px;
    margin: 10px 10px;
    display: inline-block;
    border-radius: 5px;
}

.eria-menu li a:hover {
    background: #e57cb2;
	color:#fff;
}
.eria-menu li::after {
    position: absolute;
    content: " ";
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #ffffff transparent;
}


.contact_btns .btn {
    background: #24356d;
    color: #FFF;
    border-radius: 5px;
    /* width: 41.5%; */
    width: 500px;
    padding: 20px 0;
    margin: 0 15px;
    text-align: center;
    position: relative;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 88%;
}
.contact_btns .btn:hover {
	opacity:0.5;
}	
a.btn.btn1.pink {
    background: #f379a4;
}
.contact_btns .btn .txt1 {
    display: block;
    font-size: 15px;
}
.contact_btns .btn .txt2 {
    display: block;
	font-size: 30px;
    font-weight: 600;
}
.contact_btns .btn2 {
    background-image: url(../../../img/icon/phone.png);
}
.recruit1 {
    background-color: #24356d;
    background-image: url("../img/sub/rec-movie.png");
    background-size: auto!important;
    background-position: calc(50% - 350px) bottom!important;
    margin-bottom: 0!important;
}
.recruit2 {
    background-color: #fff;
    background-image: url("../img/sub/staff.png");
    background-size: auto!important;
    background-position: calc(50% - 350px) bottom!important;
    margin-bottom: 0!important;
}
.bg_on {
    color: #FFF;
}
.bg_on2 {
    color: #24356d;
}
.pg_section {
    width: 100%;
    margin-bottom: 50px;
    padding: 0 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	padding-top: 100px;
    padding-bottom: 100px;
}
.recruit_box1 {
    border: 1px solid #ffffff;
    margin-left: 500px;
}
.recruit_box1 {
	position: relative;
    padding: 40px 50px;
    width: 600px;
    max-width: 100%;
    border-radius: 10px;
}
.recruit_box2 {
    border: 1px solid #24356d;
    margin-left: 500px;
}
.recruit_box2 {
	position: relative;
    padding: 40px 50px;
    width: 600px;
    max-width: 100%;
    border-radius: 10px;
}
.bg_on .tt1 {
    color: #FFF;
}
.bg_on .tt2 {
    color: #24356d;
}
.tt1 {
    font-size: 5.5rem;
    margin-bottom: 30px;
    margin-left: 20px;
    text-align: left;
}
.tt2 {
    font-size: 5.5rem;
    margin-bottom: 30px;
    margin-left: 20px;
    text-align: left;
}
.tt1 span {
    font-size: 20px;
    display: block;
}
.tt2 span {
    font-size: 20px;
    display: block;
}
.goto_more {
    text-align: center;
    padding: 50px 0;
}
.bg_on .goto_more a {
    background: #FFF;
    color: #b8272d;
}
.goto_more a {
    display: block;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    background: #b8272d;
    color: #FFF;
    font-size: 15px;
    border-radius: 15px;
    text-decoration: none;
}
.txt.gothic {
    font-size: 1.4rem;
    line-height: 1.9;
}
p.c-btn.recruit {
    margin-top: 50px;
}
.shikaku {
	position: absolute;
    top: 90px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
.shikaku2 {
	position: absolute;
    top: 90px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
span.smail-rec {
    position: absolute;
    top: 50px;
    right: 20px;
    transform: rotate(46deg);
}
span.smail-rec2 {
	color:#fff;
    position: absolute;
    top: 50px;
    right: 20px;
    transform: rotate(46deg);
}
p.c-btn.recruit a {
    font-size: 1rem;
    padding: 10px 0;
}
p.c-btn.recruit::before {
    background: #f379a4;
}
p.c-btn.recruit::after {
    background: #f379a4;
}
.work-welcom {
    background: #f6f6f6;
    padding: 100px 0;
}
p.work-img01 {
    text-align: center;
}
p.work-img02 {
    text-align: center;
}


@media (max-width: 1220px) {
.container {
    width: 100%;
}
}
@media only screen and (max-width: 1200px) {
.tt1 {
    font-size: 3.5rem;
}
.tt2 {
    font-size: 3.5rem;
}
.recruit_box1 {
    position: relative;
    padding: 40px 50px;
    width: 60%;
    max-width: 100%;
    border-radius: 10px;
}
.recruit_box1 {
    border: 1px solid #ffffff;
    margin-left: 40%;
}
.recruit_box2 {
    position: relative;
    padding: 40px 50px;
    width: 60%;
    max-width: 100%;
    border-radius: 10px;
}
.recruit_box2 {
    margin-left: 40%;
}
.shikaku {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
.shikaku2 {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
.recruit1 {
    background-color: #24356d;
    background-image: url(../img/sub/rec-movie.png);
    background-size: 350px!important;
    background-position: calc(50% - 300px) bottom!important;
    margin-bottom: 0!important;
}
.recruit2 {
    background-size: 300px!important;
    background-position: calc(50% - 300px) bottom!important;
    margin-bottom: 0!important;
}
}

@media only screen and (max-width: 991px) {
.recruit-mv {
    height: 550px;
    position: relative;
	background: url("../img/sub/rec-mv.jpg") center;
	background-size: cover;
}
.recruit-mv .mv_box {
    right: 30px;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.mv_box {
    width: 300px;
}
.eria-menu {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    justify-content: space-around;
}
.eria-menu li {
    position: relative;
	flex: 0 0 1000%;
	max-width: calc(100% - 15px);
    text-align: center;
    margin: 5px 5px 5px 5px;
    transition: all 0.3s ease;
}
.recruit-flex {
    display: flex;
	flex-direction: column;
    margin-top: 60px;
}
.req-img {
    width: 100%;
    text-align: center;
}
.eria-menu li a {
    font-size: 18px;
}
.pg_section.recruit0 {
    padding-bottom: 50px;
}

.tt1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-left: 10px;
    text-align: left;
}
.tt2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-left: 10px;
    text-align: left;
}
.recruit_box1 {
    position: relative;
    padding: 40px 50px;
    width: 70%;
    max-width: 100%;
    border-radius: 10px;
}
.recruit_box2 {
    position: relative;
    padding: 40px 50px;
    width: 70%;
    max-width: 100%;
    border-radius: 10px;
}
.recruit1 {
    background-color: #24356d;
    background-image: url(../img/sub/rec-movie.png);
    background-size: 300px!important;
    background-position: calc(50% - 250px) bottom!important;
    margin-bottom: 0!important;
}
.recruit2 {
    background-size: 300px!important;
    background-position: calc(50% - 250px) bottom!important;
    margin-bottom: 0!important;
}	
.shikaku {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
.shikaku2 {
    position: absolute;
    top: 60px;
    right: 40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
.contact_btns .btn .txt2 {
    display: block;
    font-size: 20px;
    font-weight: 600;
}
.contact_btns {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
	flex-direction: column;
	align-items: center;
}
.contact_btns .btn {
    background: #24356d;
    color: #FFF;
    border-radius: 5px;
    width: 90%;
    padding: 20px 0;
    margin: 10px 15px;
    text-align: center;
    position: relative;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 88%;
}
}
@media (max-width: 850px){
.recruit-mv {
    height: 360px;
    position: relative;
	background: url("../img/sub/rec-mv.jpg") center;
	background-size: cover;
}
.mv_box img {
    width: 300px;
}	
.recruit2 {
    padding-bottom: 200px;
    background-position: center bottom;
    background-size: auto 180px;
}
.recruit_box1 {
    width: 100%;
    margin: 0;
	padding: 40px 20px;
}
.recruit_box2 {
    width: 100%;
    margin: 0;
	padding: 40px 20px;
}
.pg_section {
    padding-bottom: 280px;
    background-position: calc(50% - 0px) bottom!important;
	background-size: 200px!important;
}
.txt.gothic {
	font-size: 1.1rem;
    line-height: 1.9;
}
p.c-btn.recruit {
    margin-top: 30px;
}
.shikaku {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
.shikaku2 {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom, #f379a4, #f379a4);
    transform: rotate(314deg);
}
span.smail-rec {
    position: absolute;
    top: 32px;
    right: 10px;
    transform: rotate(46deg);
    font-size: 13px;
}
span.smail-rec2 {
	color:#fff;
    position: absolute;
    top: 32px;
    right: 10px;
    transform: rotate(46deg);
    font-size: 13px;
}
}

p.c-btn.recruit.blue a {
    color: #fff;
    background: #161447;
}
p.c-btn.recruit.blue a:hover {
    color: #161447;
    background: #fff;
}
p.work-img02 img {
    width: 65%;
}

@media (max-width: 850px){
.shikaku.req {
    top: -60px;
    right: 20px;
    width: 80px;
    height: 80px;
    z-index: -1;
}
.shikaku.req .smail-rec {
    top: 30px;
    right: 18px;
}
p.work-img02 img {
    width: 75%;
}
span.txt1 img {
	width: 40px;
}
span.txt2 img {
    width: 50px;
}	
}
/*実績紹介*/
.achie h4{
    margin-bottom: 20px;
    margin-top: 50px;
    font-size: 1.5rem;
    background-color: #161447;
    color: #fff;
    padding: 20px 5px;
}
.achie h5{
    margin-bottom: 20px;
    margin-top: 50px;
    font-size: 1.5rem;
    color: #364e96;
    padding: 0.2em 0;
    border-top: solid 1px #364e96;
    border-bottom: solid 1px #364e96;
}
@media (max-width: 768px){
.achie h4{
    margin-bottom: 20px;
    margin-top: 50px;
    font-size: 1.1rem;
    background-color: #161447;
    color: #fff;
    padding: 20px 5px;
}
.achie h5{
    margin-bottom: 20px;
    margin-top: 50px;
    font-size: 1.1rem;
    color: #364e96;
    padding: 0.2em 0;
    border-top: solid 1px #364e96;
    border-bottom: solid 1px #364e96;
}
}
.achie ul{
	line-height: 1.5;
    letter-spacing: -0.3px;
}
.achie li{
	margin-bottom:10px;
}
.achie li:nth-child(2n){
	background-color:#f1f1f1;
	padding: 5px 5px;
}

a.jump_point{
height: 1px;
display: block;
padding-top: 40px;
/*margin-top: -130px;*/
}

/*お問い合わせ*/
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.wpcf7-not-valid {
    padding: 10px;
}
span.wpcf7-spinner {
    display: none;
}
/*応募フォーム*/
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
	padding: 10px;
}
input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number {
	padding: 10px;
}
input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-number {
	padding: 10px;
}
input[type="checkbox"] {
	transform: scale(1.4);
}

@media (max-width: 750px){
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
	margin: 0px 0px;
}
.con_form td {
    margin: 5px 0px 15px;
}
input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number {
	margin: 0px 0px;
}
input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-number {
	margin: 0px 0px;
}	
}
/* voice */
.voice_box dd{
    padding-bottom: 20px !important;
	margin-bottom: 50px;
	   border-bottom: none;
}
.voice_box {
	max-width: 1100px;
	 animation-direction
    border-bottom: solid 2px #dee2e6;
}
.prtext{

}

.qatext{
    margin-bottom: 10px;

}
.qtext{
    background-color: #24356d;
    color: #fff;
    display: block;
	    margin-bottom: 5px;
}
.pr_inner{
    width: calc(100% - 180px);
    margin: 0 auto;
 
}
.voice_box .business_text{
	width:auto;
	    font-weight: 600;
}
/* .voice_box dl{
	margin-bottom:150px;

} */
.voice_box img {
	max-width: 300px;
}
.pr_box dd {
   padding: 10px 40px;
	    margin-bottom: 20px;
	    display: block;
}
.pr_box dt {
    padding: 10px 40px;
	    margin-bottom: 20px;
}
.q_span{
    font-size: 1.7rem;
    color: #fff;
	position:absolute;
	    left: 10px;
    top: 2px;
}
.a_span {
    font-size: 1.7rem;
    color: #f379a4;
		position:absolute;
	    left: 10px;
    top: 2px;
}
.pr_box dl:after {
    content:none;
}
.voice_box dt:before{
  content:none !important;	
}
.pr_box dl{
	    margin-bottom: 0px;
}
@media (max-width: 1300px){
	.pr_box dd{
margin-top: 0px;		
	}
}
@media (max-width: 600px){
.q_span{
    font-size: 1.3rem;
	    padding-left: 5px;
}
.a_span {
    font-size: 1.3rem;
	    padding-left: 5px;
}	
.pr_inner {
    width: calc(100% - 20px);
}
	.pr_box{
	    width: 97%;
	}
.pr_inner {
    margin: 0 auto !important;
    max-width: 100% !important;
}
}

/* 募集要項 */
.subtable {
	width: 1100px;
}
.subtable th {
    width: 20%;
}
.recruit_app .contact_box{
width:100%;
    background-color: #fff;
}
table th,td{
	font-size:18px;
}
.recruit_app th{
background-color: #24356d;	
}
.td_tel_btn{
    background-color: #161447;
    color: #fff;
    padding: 7px 13px;
    border-radius: 5px;
}
@media (max-width: 1200px){
.subtable {
    width: 90%;
}
.subtable th {
    width: 30%;
    padding: 10px;
}
.subtable td {
    padding: 10px;
	}
}

@media (max-width: 800px){
.subtable {
    width: 100%;
}
}	
@media (max-width: 750px){
.subtable th {
    width: 100%;
}	
.recruit_app .contact_box{
    margin-top: 150px;
}
.recruit_app .con_boxtext{
margin-bottom: 0px;
	}
}
	
	
	@media (max-width: 600px){
table th,td{
	font-size:16px;
}		
	}
	@media (max-width: 500px){
.recruit_app .contact_box {
    margin-top: 100px;
}		
}	

	.add-box-news {
    margin-bottom: 15px;
}	
.add-box-news p{
    padding-left: 10px;
	margin-bottom: 0px;
}
.add-box-news p {
    margin-bottom: 0px;
}	
	
.add-box-news {
    margin-bottom: 20px;
}	
span.add-news,span.tel-news,span.area {
    font-weight: 600;
    margin-bottom: 0px;
}	

.map-news {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.map-news iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news_main ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 30px;
	font-weight: 500;
}
p.link-contents a {
    color: #18b6d0;
}
p.link-contents a:hover {
    opacity: 0.5;
}

/*ライズアップの取り組み*/	
.attempt_box {
    max-width: 1300px;
    margin: 0 auto;
	margin-top: 150px;
	padding: 0px 15px;
}	

@media (max-width: 600px){
.attempt_box {
	margin-top: 100px;
	padding: 0px 10px;
}			
}	
	
.wp-block-columns.is-layout-flex.wp-container-4.wp-block-columns-is-layout-flex {
    margin-bottom: 30px;
}



.image.business_box.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.image.business_box.flex img{
    width: 48%;
}

@media (max-width: 764px){
.image.business_box.flex {
    flex-direction: column;
}
.image.business_box.flex img{
    width: 100%;
}	
}	


.chizu.text-center {
    margin-bottom: 100px;
}

.flex-wrap-news.space-evenly {
    display: flex !important;
    align-items: center !important;
    justify-content: space-evenly;
}

