@charset "UTF-8";
@import url(./reset.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:100,100i,300,300i,700);

* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", "sans-serif";
  font-weight: normal;
  font-size: 16px;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: #000;
  background-color: #fff;
}

img {
  border: none;
  vertical-align: bottom;
  height: auto;
}

.clearfix:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb1em {
  margin-bottom: 1em !important;
}
.mb2em {
  margin-bottom: 2em !important;
}
.mb3em {
  margin-bottom: 3em !important;
}
.mb4em {
  margin-bottom: 4em !important;
}
.mb5em {
  margin-bottom: 5em !important;
}
.mb6em {
  margin-bottom: 6em !important;
}
.center {
  text-align: center;
}
.alignright {
  text-align: right;
}
.bold {
  font-weight: 900;
}
.nowrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

#wrapper {
  /*min-width: 1020px;*/
  position: relative;
}

@media screen and (max-width: 767px) {
  #wrapper {
    /*min-width: 100%;*/
  }
}

#js-menuBk {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/*	LOADING	*/

#loading {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
}

#loading img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 680px;
  height: auto;
  display: none;
}

#loading span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 5px;
  background-color: #ff6633;
}

#loading span.loaded {
  width: 0;
  height: 0;
  animation: ldg 1.5s;
}

@keyframes ldg {
  0% {
    width: 0;
    height: 5px;
  }
  50% {
    width: 100%;
    height: 5px;
  }
  80% {
    width: 100%;
    height: 5px;
  }
  100% {
    width: 100%;
    height: 0;
  }
}

@media screen and (max-width: 767px) {
  #loading img {
    width: 100%;
    max-width: 480px;
  }
}
/*------ヘッダーメニュー-----*/

header {
  width: 100%;
  background-color: #fff;
  height: 100px;
  display: flex;
  justify-content: center;
}

header .inner {
  padding: 0 10px;
  max-width: 1000px;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  width: 120px;
  transition: 0.3s opacity ease;
}

header .logo img:hover {
  opacity: 0.6;
}

.btn_close,
.btn_spmenu {
  display: none;
}

.g_navi {
  display: flex;
  justify-content: center;
}

.g_navi ul {
  display: flex;
  justify-content: space-between;
}

.g_navi ul a {
  height: 100px;
  font-weight: bold;
  color: #000;
  font-size: 13px;
  text-decoration: none;
  padding: 0 20px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s background-color ease;
}

.g_navi ul a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.g_navi .entry {
  margin-left: 20px;
}

.g_navi .entry a {
  border-left: 20px solid #231815;
  background-color: #ff6633;
  color: #fff;
  transition: 0.3s background-color ease;
}

.g_navi .entry a:hover {
  background-color: #ff9470;
}

@media screen and (max-width: 860px) {
  .g_navi ul a {
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 70px;
  }

  header .inner {
    max-width: auto;
    min-width: auto;
    height: 70px;
    padding: 0 10px;
  }

  header .logo img {
    width: 100px;
  }

  .g_navi {
    position: fixed;
    z-index: -9999;
    top: 0;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 100%;
    border: none;
    background: #fff;
    transition: all 0.3s;
    flex-direction: column;
    background-color: #fff;
    transform: translateX(100%);
    display: block;
    opacity: 0;
  }

  .g_navi {
    padding: 85px 10px 0;
  }

  .g_navi ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .g_navi li {
    width: 100%;
  }

  .g_navi ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 100%;
    color: #000;
    font-size: 14px;
    padding: 0;
    text-shadow: none;
  }

  .g_navi ul a:hover {
    background-color: transparent;
  }

  .g_navi .entry {
    margin: 20px 0 0;
  }

  .g_navi .entry a {
    border: none;
  }

  .g_navi.is-active {
    transform: translateX(0);
    z-index: 9999;
    opacity: 1;
  }

  .btn_spmenu,
  .btn_close {
    position: absolute;
    right: 0px;
    top: 0px;
    display: block;
    width: 85px;
    height: 70px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background-color: #ff6633;
    z-index: 999;
    border-left: 15px solid #231815;
  }

  .btn_close {
    border: none;
    width: 70px;
  }

  .btn_spmenu span,
  .btn_spmenu::before,
  .btn_spmenu::after,
  .btn_close span,
  .btn_close::before,
  .btn_close::after {
    content: "";
    width: 30px;
    height: 3px;
    position: absolute;
    top: 32px;
    left: 50%;
    margin-left: -15px;
    background: #ffffff;
    transition: all 0.3s ease;
  }

  .btn_spmenu::before {
    transform: translateY(-10px);
  }

  .btn_spmenu::after {
    transform: translateY(10px);
  }

  .btn_close span {
    opacity: 0;
  }

  .btn_close::before {
    transform: translateY(0) rotate(45deg);
  }

  .btn_close::after {
    transform: translateY(0) rotate(-45deg);
  }
}

/*------メイン------*/

#main {
  width: 100%;
  height: 800px;
  background-color: #ffffff;
  position: relative;
}

#main .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
}

#main .inner.top1 {
  background: url("../img/home/img_main.jpg") no-repeat 50% top;
  background-size: cover;
}

#main .inner.top2 {
  background: url("../img/home/img_main2_01.jpg") no-repeat 50% top;
  background-size: cover;
}

#main .inner.top3 {
  background: url("../img/home/img_main3.jpg") no-repeat 50% top;
  background-size: cover;
}

#main .h1_box {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 999;
}

#main .h1_box h1 {
  margin-bottom: 20px;
}

#main .h1_box h1 img {
  width: 268px;
}

#main .h1_box p {
  font-size: 90px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.05em;
  display: inline-block;
  color: #ff6633;
  padding: 0 10px;
  line-height: 78px;
}

@media screen and (max-width: 767px) {
  #main {
    height: 600px;
  }

  #main .h1_box h1 {
    margin-bottom: 20px;
  }

  #main .h1_box h1 img {
    width: 200px;
  }

  #main .h1_box p {
    font-size: 50px;
    line-height: 48px;
  }
}

/*------NEXT GENERATION------*/

.nextgene {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff url("../img/home/bg_pc_1.png") no-repeat 50% bottom;
  background-size: 2000px;
  padding-bottom: 40px;
}

.nextgene .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 0 0;
}

.nextgene .heading img {
  width: 120px;
  margin-bottom: 20px;
}

.nextgene .heading h2 {
  margin-bottom: 25px;
}

.nextgene .heading h2 img {
  width: 193px;
  margin-bottom: 0;
}

.nextgene .heading .en {
  font-size: 80px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  color: #ff6633;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
}

.nextgene .heading .lead {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 30px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .nextgene {
    background: none;
    padding-bottom: 0;
  }

  .nextgene .heading img {
    width: 80px;
    margin-bottom: 20px;
  }

  .nextgene .heading h2 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .nextgene .heading h2 img {
    width: 150px;
  }

  .nextgene .heading .en {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .nextgene .heading .lead {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/*------CHALLENGE------*/

.challenge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ff6633 url("../img/home/bg_pc_2.png") no-repeat 50% top;
  background-size: 2000px;
  padding-bottom: 30px;
}

.challenge .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 20px;
}

.challenge .heading .lead {
  text-align: center;
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .challenge {
    background: none;
    padding-bottom: 0;
  }

  .challenge .heading {
    padding: 20px 0 20px;
  }

  .challenge .heading .lead {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/*------NEXT------*/

.next {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ededed url("../img/home/bg_pc_3.png") no-repeat 50% top;
  background-size: 2000px;
  padding-bottom: 30px;
}

.next .heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 90px 0 20px;
}

.next .heading .lead {
  text-align: center;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .next {
    background: none;
    padding-bottom: 0;
  }

  .next .heading {
    padding: 20px 0 40px;
  }

  .next .heading .lead {
    font-size: 20px;
  }
}

/*------リンク用ボックス------*/

.cont {
  width: 700px;
  display: flex;
  justify-content: space-between;
}

.box {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.box .img {
  width: 100%;
  height: 200px;
}

.about .img {
  background: url("../img/home/img_about.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work .img {
  background: url("../img/home/img_work_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.home .staff .img {
  background: url("../img/home/img_staff_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.president .img {
  background: url("../img/home/img_president3.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.welfare .img {
  background: url("../img/home/img_welfare_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.entry .img {
  background: url("../img/home/img_entry_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.box .txt {
  background-color: #fff;
  width: 260px;
  position: relative;
  top: -20px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box .txt span {
  font-size: 40px;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}

.box .txt::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/home/plus.png") no-repeat 50% 50%;
  background-size: 14px;
}

.box .txt h3 {
  font-size: 18px;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  font-weight: normal;
}

.box .txt a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6633;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  height: 40px;
  width: 160px;
  position: relative;
  transition: 0.3s background-color ease;
}

.box .txt a:hover {
  background-color: #ff9470;
}

.box .txt a::after {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  width: 12px;
  height: 8px;
  content: "";
  display: inline-block;
  background: url("../img/home/arrow.png") no-repeat 50% 50%;
  background-size: 12px;
}

@media screen and (max-width: 767px) {
  .cont {
    width: 100%;
    flex-direction: column;
  }

  .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .box .img {
    width: 100%;
    max-width: 480px;
    height: 250px;
  }

  .box .txt {
    width: 300px;
    height: 200px;
  }

  .box .txt a {
    width: 180px;
    height: 45px;
    background-color: #ff6633;
  }

  .bg,
  .bg2 {
    position: absolute;
    left: 0;
    width: 100%;
  }

  .about .bg {
    top: -80px;
    height: 472px;
    background: url("../img/home/bg_sp_1.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -999;
  }

  .work .bg {
    top: -80px;
    height: 472px;
    background: url("../img/home/bg_sp_2.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -999;
  }

  .home .staff {
    margin-bottom: 40px;
  }

  .home .staff .bg {
    top: -150px;
    height: 472px;
    background: url("../img/home/bg_sp_1.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -999;
  }

  .president .bg {
    top: -190px;
    height: 472px;
    background: url("../img/home/bg_sp_3.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -999;
  }

  .welfare {
    margin-bottom: 40px;
  }

  .welfare .bg {
    top: -190px;
    height: 472px;
    background: url("../img/home/bg_sp_1.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -999;
  }

  .entry .bg {
    top: -210px;
    height: 472px;
    background: url("../img/home/bg_sp_4.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -999;
  }

  .entry .bg2 {
    top: 280px;
    height: 181px;
    background: url("../img/home/bg_sp_5.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -999;
  }
}

/*------次世代の------*/

.mono {
  width: 100%;
  height: 400px;
  background: url("../img/home/img_mono_01.jpg") no-repeat 50% 50%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mono2 {
  background: url("../img/home/img_mono2_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.mono p {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3",
    "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  text-align: center;
  font-weight: 900;
  font-size: 44px;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

@media screen and (max-width: 767px) {
  .mono {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .mono {
    height: 500px;
  }
}

/*------FOOTER------*/
footer {
  background-color: #231815;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ft_entry {
  width: 100%;
  background: #000 url("../img/home/bg_footer_01.jpg") no-repeat 50% 50%;
  background-size: cover;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ft_entry_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.ft_entry_box .ttl {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
}
.ft_entry_box .txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
}

.ft_entry_box .entry_btn {
  height: 64px;
  width: 480px;
  background-color: #ff6633;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 50px;
  transition: background-color 0.3s ease;
}

.ft_entry_box .entry_btn:hover {
  background-color: #ff9470;
}

.ft_entry_box .privacy_btn {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.ft_entry_box .privacy_btn:hover {
  color: #ccc;
}

.ft_entry_box .privacy_btn::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url("../img/home/arrow_privacy.png") no-repeat left top;
  background-size: 25px;
  margin-right: 1em;
}

/*.ft_entry_box .privacy_btn:hover::before {
	background: url("../img/home/arrow_privacy.png") no-repeat left bottom;
	background-size: 25px;
}*/

footer .inner {
  width: 700px;
  display: flex;
  flex-direction: column;
  padding: 30px 0;
}

.ftr_a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.ftr_a .name {
  display: flex;
  align-items: center;
}

.ftr_a .name a {
  margin-right: 20px;
}
.ftr_a .name a img {
  width: 119px;
  transition: opacity 0.3s ease;
}

.ftr_a .name a:hover img {
  opacity: 0.6;
}

.ftr_a .name p img {
  width: 140px;
}

.ftr_a .name span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.ftr_a a.entrybtn {
  background-color: #ff6633;
  color: #fff;
  width: 250px;
  height: 46px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: relative;
  transition: 0.3s background-color ease;
}

.ftr_a a.entrybtn::before {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
  width: 26px;
  height: 26px;
  content: "";
  display: inline-block;
  background: url("../img/home/icon_entry.png") no-repeat 50% 50%;
  background-size: 26px;
}

.ftr_a a.entrybtn:hover {
  background-color: #ff9470;
}

footer nav {
  display: flex;
  flex-direction: column;
}

.ftr_navi {
  display: flex;
}

.ftr_navi li:last-child {
  margin-right: 0;
}

.ftr_navi a {
  text-decoration: none;
}

.ftr_main_navi {
  margin-bottom: 20px;
}

.ftr_main_navi li {
  margin-right: 30px;
}

.ftr_main_navi a {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s color ease;
}

.ftr_main_navi a:hover {
  color: #ccc;
}

.ftr_sub_navi {
  margin-bottom: 40px;
}

.ftr_sub_navi li {
  margin-right: 20px;
}

.ftr_sub_navi a {
  color: #ccc;
  font-size: 12px;
}

small {
  color: #ccc;
  font-size: 12px;
  font-family: Arial, Helvetica, "sans-serif";
}

@media screen and (max-width: 767px) {
  footer {
  }

  .ft_entry {
    height: 320px;
    padding: 0 10px;
  }

  .ft_entry_box .ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .ft_entry_box .txt {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .ft_entry_box .entry_btn {
    height: 50px;
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .ft_entry_box .privacy_btn {
    font-size: 13px;
  }

  .ft_entry_box .privacy_btn::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url("../img/home/arrow_privacy.png") no-repeat left top;
    background-size: 18px;
  }

  .ft_entry_box .privacy_btn:hover::before {
    background: url("../img/home/arrow_privacy.png") no-repeat left bottom;
    background-size: 18px;
  }

  footer .inner {
    width: 100%;
    padding: 20px 20px 30px;
  }

  .ftr_a {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .ftr_a .name {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .ftr_a .name img {
    width: 100px;
    margin: 0 0 15px;
  }

  .ftr_a .name p {
    font-size: 13px;
  }

  .ftr_a .name span {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
  }

  .ftr_a a.entrybtn {
    width: 100%;
    max-width: 360px;
    height: 50px;
  }

  .ftr_main_navi {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .ftr_main_navi li {
    margin: 0 0 20px 0;
  }

  .ftr_main_navi a {
    font-size: 15px;
    font-weight: bold;
  }

  .ftr_sub_navi {
    margin-bottom: 30px;
  }

  .ftr_sub_navi li {
    margin: 0 20px 0 0;
  }

  .ftr_sub_navi a {
    font-size: 12px;
  }

  small {
    font-size: 11px;
  }
}

/*------2階層目タイトル------*/

.ttlimg {
  width: 100%;
  height: 578px;
}

.ttlimg .inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.about .ttlimg .inner {
  background: url("../img/about/main_about.jpg") no-repeat 50% top;
  background-size: cover;
}

.work .ttlimg .inner {
  background: url("../img/work/main_work_01.jpg") no-repeat 50% top;
  background-size: cover;
}

.staff .ttlimg .inner {
  background: url("../img/staff/main_staff_01.jpg") no-repeat 50% top;
  background-size: cover;
}

.entry .ttlimg .inner {
  background: url("../img/entry/main_entry_01.jpg") no-repeat 50% top;
  background-size: cover;
}

.welfare .ttlimg .inner {
  background: url("../img/welfare/main_welfare_01.jpg") no-repeat 50% top;
  background-size: cover;
}

.privacy .ttlimg .inner {
  background: url("../img/privacy/main_privacy.jpg") no-repeat 50% top;
  background-size: cover;
}

.ttlimg .h1_box {
  display: inline-block;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  text-align: center;
  color: #fff;
}

.ttlimg .h1_box p {
  font-size: 72px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 30px;
}

.ttlimg .h1_box h1 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .ttlimg {
    height: 154px;
  }

  .ttlimg .h1_box p {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .ttlimg .h1_box h1 {
    font-size: 14px;
  }
}

/*------2階層目背景------*/

.content {
  width: 100%;
  background: #ededed url("../img/work/bg_nextg.png") no-repeat 50% top;
  background-size: 2000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.05em;
  position: relative;
  padding-top: 160px;
  font-size: 15px;
}

.work .content {
  padding: 160px 10px 0;
  overflow: hidden;
}

.president .content {
  padding: 140px 10px 0;
}

.staffmore .content {
  padding-top: 0;
  background: #ededed url("../img/staff/bg_staff.png") no-repeat 50% top;
  background-size: 2000px;
}

.about .content {
}

@media screen and (max-width: 767px) {
  .content {
    background: #ededed url("../img/home/bg_spcont.png") no-repeat 50% top;
    background-size: 768px;
    padding-top: 60px;
  }

  .work .content {
    background: #fff;
    padding: 40px 0 0;
  }

  .president .content {
    padding: 40px 0 0;
  }

  .staffmore .content {
    background: #ededed url("../img/staff/bg_staff_sp.png") no-repeat 50% top;
    background-size: 768px;
    padding: 0 0 0;
  }

  .entry .content {
    display: block;
  }
}

/*------WORK------*/

.work_box {
  width: 100%;
  max-width: 1000px;
  height: 415px;
  margin-bottom: 70px;
  position: relative;
}

.work_box .img {
  width: 50%;
  height: 415px;
  position: absolute;
  left: 0;
  top: 0;
}

.work_box.labo_third .img {
  background: url("../img/work/img_labo3_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.labo_second .img {
  background: url("../img/work/img_labo2_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.sales_first .img {
  background: url("../img/work/img_sales1.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.sales_third .img {
  background: url("../img/work/img_sales3_01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.add_first .img {
  background: url("../img/work/img_add-01.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.add_second .img {
  background: url("../img/work/img_add-02.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.add_third .img {
  background: url("../img/work/img_add-03.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.add_fourth .img {
  background: url("../img/work/img_add-04.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.work_box.second .img {
  left: 50%;
  top: 20px;
}

.work_box .txt {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 50%;
  height: 450px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.work_box.second .txt {
  left: 0;
  top: 0;
}

.work_box .txt h2 {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 30px;
}

.work_box .txt .caption {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 30px;
  padding: 0 35px;
  max-width: 100%;
}

.work_box .txt .staff {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work_box .txt h3 {
  font-size: 16px;
  color: #ff6633;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: normal;
}

.work_box .txt h3::before,
.work_box .txt h3::after {
  content: "―";
  display: inline-block;
  color: #ff6633;
}

.work_box .txt h3::before {
  margin-right: 1em;
}

.work_box .txt h3::after {
  margin-left: 1em;
}

.work_box .txt ul {
  display: flex;
  width: 100%;
}

.work_box .txt li {
  width: 100%;
  padding: 0 10px;
}

.work_box .txt li a {
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.work_box .txt li a:hover {
  opacity: 0.6;
}

.work_box .txt img {
  width: 87px;
  height: auto;
}

.work_box .txt .desc {
  margin-left: 15px;
}

.work_box .txt li .name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.work_box .txt li .date {
  font-size: 12px;
}

.work_box_bg {
  display: none;
}

@media screen and (max-width: 767px) {
  .work_box {
    width: 100%;
    height: auto;
    padding: 0 10px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .work_box.labo_third {
    z-index: 4;
  }

  .work_box.labo_second {
    z-index: 3;
  }

  .work_box.sales_first {
    z-index: 2;
  }

  .work_box.sales_third {
    z-index: 1;
  }

  .work_box.add_first,
  .work_box.add_second,
  .work_box.add_fourth,
  .work_box.add_third {
    z-index: 1;
  }

  .work_box_bg {
    display: block;
    top: -60px;
    height: 472px;
    background: url("../img/home/bg_sp_2.png") no-repeat 50% top;
    background-size: 768px;
    z-index: -1;
    position: absolute;
    left: 0;
    width: 100%;
  }

  .work_box.second .work_box_bg {
    top: -120px;
    background: url("../img/home/bg_sp_1.png") no-repeat 50% top;
    background-size: 768px;
  }

  .work_box.sales .work_box_bg {
    top: -160px;
  }

  .work_box.sales_third .work_box_bg {
    top: -120px;
    background: url("../img/home/bg_sp_1.png") no-repeat 50% top;
    background-size: 768px;
    /* height: 1080px; */
  }

  .work_box .img {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 440px;
    height: 200px;
    background: url("../img/work/img_labo3.jpg") no-repeat 50% 50%;
    background-size: cover;
  }

  .work_box.second .img {
    left: auto;
    top: auto;
  }

  .work_box .txt {
    position: relative;
    left: auto;
    width: 100%;
    height: auto;
    max-width: 300px;
    top: -20px;
    padding: 20px;
  }

  .work_box.second .txt {
    left: auto;
    top: -20px;
  }

  .work_box .txt h2 {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 20px;
  }

  .work_box .txt .caption {
    font-size: 13px;
    margin-bottom: 30px;
    padding: 0;
  }

  .work_box .txt h3 {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .work_box .txt ul {
    display: flex;
    flex-direction: column;
  }

  .work_box .txt li {
    width: auto;
    margin-bottom: 25px;
  }

  .work_box .txt li:last-child {
    margin-left: 0;
    margin-bottom: 0;
  }

  .work_box .txt li .name {
    font-size: 13px;
  }

  .work_box .txt li .date {
    font-size: 11px;
  }
}

/*------STAFF------*/

.ul_staff {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
}

.ul_staff li {
  width: 28%;
  margin: 0 6% 70px 0;
}

.ul_staff li:nth-child(3n),
.ul_staff li:nth-child(5n) {
  margin-right: 0;
}

.ul_staff li a {
  position: relative;
  display: block;
  color: #000;
  text-decoration: none;
}

.ul_staff li img {
  width: 100%;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ul_staff li a:hover img {
  transform: scale(1.05);
}

.ul_staff li div {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: #fff;
  width: 200px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.ul_staff li div .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.ul_staff li div .department {
  font-size: 10px;
  margin-bottom: 10px;
}

.ul_staff li div .date {
  font-size: 12px;
  line-height: 175%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ul_staff {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 480px;
    padding: 0 10px;
  }

  .ul_staff li {
    width: 48%;
    margin: 0 4% 30px 0;
  }

  .ul_staff li:nth-child(3n),
  .ul_staff li:nth-child(5n) {
    margin: 0 4% 30px 0;
  }

  .ul_staff li:nth-child(2n) {
    margin: 0 0 30px 0;
  }

  .ul_staff li a {
    display: flex;
    flex-direction: column;
  }

  .ul_staff li img {
    width: 100%;
  }

  .ul_staff li a:hover img {
    transform: scale(1);
  }

  .ul_staff li div {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 80px;
  }

  .ul_staff li div .name {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .ul_staff li div .date {
    font-size: 9px;
    line-height: 175%;
    text-align: center;
  }
}

/*------スタッフ詳細イメージ------*/

.staffimg {
  width: 100%;
  height: 698px;
}

.staffimg .inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.mita .staffimg .inner {
  background: url("../img/staff/mita/image.jpg") no-repeat 50% top;
  background-size: cover;
}

.noji .staffimg .inner {
  background: url("../img/staff/noji/image.jpg") no-repeat 50% top;
  background-size: cover;
}

.tanaka .staffimg .inner {
  background: url("../img/staff/tanaka/image.jpg") no-repeat 50% top;
  background-size: cover;
}

.shukuin .staffimg .inner {
  background: url("../img/staff/shukuin/image.jpg") no-repeat 50% top;
  background-size: cover;
}

.yamaguchi .staffimg .inner {
  background: url("../img/staff/yamaguchi/image.jpg") no-repeat 50% top;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .ttlimg {
    height: 214px;
  }
}

/*------スタッフ詳細------*/

.staff_profile {
  max-width: 1240px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  z-index: 9;
}

.staff_profile .inner {
  width: 280px;
  height: 280px;
  background-color: #ff6633;
  color: #fff;
  position: absolute;
  left: 20px;
  bottom: -60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.staff_profile .inner h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
}

.staff_profile .inner p {
  font-weight: bold;
  font-size: 14px;
}

.staff_profile .inner h2 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.75rem;
  text-align: center;
}

.interview {
  width: 100%;
}

.interview .inner {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 140px 10px 80px;
}

.president .interview .inner {
  padding: 0 10px 80px;
  max-width: 768px;
}

.interview h3 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
}

.president .interview p.lead {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 50px;
  text-align: center;
}

.president .interview h3 {
  font-size: 16px;
  color: #ff6633;
  font-weight: bold;
  margin-bottom: 20px;
}

.interview h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 768px;
  width: 100%;
}

.interview p.honbun {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 2em;
  max-width: 768px;
  width: 100%;
}

.interview p.honbun.last {
  margin-bottom: 4em;
}

.interview p.honbun.last2 {
  margin-bottom: 3em;
}

.president .interview img {
  width: 100%;
  max-width: 768px;
  margin-bottom: 4em;
  flex-shrink: 0;
}

.president_last {
  max-width: 768px;
  width: 100%;
  flex-shrink: 0;
}

.president_last .left {
  width: 340px;
  flex-shrink: 0;
}

.president_last .left img {
  margin-bottom: 2em !important;
}

.president_last .right {
  width: calc(100% - 380px);
}

.staffmoreimg {
  position: relative;
  z-index: 9;
  width: 100%;
  flex-shrink: 0;
}

.staffmoreimg ul {
  display: flex;
  width: 100%;
  flex-shrink: 0;
}

.staffmoreimg ul li {
  width: 33.333%;
  flex-shrink: 0;
}

.staffmoreimg li img {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.staffmoreimg .bg {
  width: 100%;
  position: absolute;
  left: 0;
  top: -188px;
  height: 188px;
  background: url("../img/staff/staff_ora.png") no-repeat 50% bottom;
  background-size: 2000px;
  z-index: -1;
}

.interview.second {
  background: url("../img/staff/bg_staff2.png") no-repeat 50% top;
  background-size: 2000px;
}

.schedule {
  width: 100%;
  min-height: 500px;
  color: #fff;
  margin-bottom: 70px;
}

.noji .schedule {
  background: #000 url("../img/staff/noji/bg.jpg") no-repeat 50% 0%;
  background-size: cover;
}

.mita .schedule {
  background: #000 url("../img/staff/mita/bg.jpg") no-repeat 50% 0%;
  background-size: cover;
}

.tanaka .schedule {
  background: #000 url("../img/staff/tanaka/bg.jpg") no-repeat 50% 0%;
  background-size: cover;
}

.shukuin .schedule {
  background: #000 url("../img/staff/shukuin/bg.jpg") no-repeat 70% 0%;
  background-size: cover;
}

.yamaguchi .schedule {
  background: #000 url("../img/staff/yamaguchi/bg.jpg") no-repeat 50% 0%;
  background-size: cover;
}

.schedule h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 50px;
}

.schedule h3 span {
  font-size: 40px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 50px;
  margin-right: 1em;
}

.schedule .inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 50px 0;
}

.schedule .table {
  font-size: 15px;
  line-height: 1.5;
  display: table;
}

.schedule .tr {
  display: table-row;
}

.schedule .th,
.schedule .td {
  display: table-cell;
  padding-bottom: 2em;
}

.schedule .th {
  width: 140px;
}

.movie {
  width: 100%;
  font-size: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.youtube_wrap {
  max-width: 768px;
  width: 100%;
  margin: 0 auto 15px;
}

.home .youtube_wrap {
  width: 700px;
  margin-top: 40px;
}

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

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.pageback {
  margin-bottom: 70px;
}

.pageback a {
  width: 480px;
  height: 64px;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.pageback a:hover {
  opacity: 0.6;
}

.flex_box {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  .staff_profile .inner {
    width: 280px;
    height: 280px;
    bottom: -60px;
  }

  .staff_profile .inner h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .staff_profile .inner p {
    font-size: 12px;
  }

  .staff_profile .inner h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .staff_profile {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .staff_profile .inner {
    min-width: 300px;
    width: 70%;
    height: 155px;
    position: relative;
    left: auto;
    bottom: 15px;
  }

  .staff_profile .inner h1 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .staff_profile .inner p {
    font-weight: normal;
    font-size: 13px;
  }

  .staff_profile .inner h2 {
    font-weight: normal;
    font-size: 13px;
    margin-bottom: 10px;
  }

  .interview .inner {
    padding: 30px 10px 60px;
    max-width: 100%;
  }

  .interview h3,
  .president .interview p.lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
  }

  .president .interview h3 {
    max-width: 100%;
    font-size: 13px;
    margin-bottom: 15px;
  }

  .interview h4 {
    max-width: 100%;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .interview p.honbun {
    max-width: 100%;
    font-size: 13px;
    line-height: 2;
    margin-bottom: 2em;
  }

  .interview p.honbun.last {
    margin-bottom: 4em;
  }

  .president .interview img {
    margin-bottom: 2em;
  }

  .president_last {
    width: 100%;
  }

  .president_last .left {
    width: 100%;
    max-width: 300px;
  }

  .president_last .right {
    width: 100%;
  }

  .staffmoreimg {
    width: 100%;
  }

  .staffmoreimg ul {
    flex-direction: column;
  }

  .staffmoreimg ul li {
    width: 100%;
    text-align: center;
  }

  .staffmoreimg li img {
    width: 100%;
    max-width: 400px;
  }

  .staffmoreimg .bg {
    top: -88px;
    height: 472px;
    background: url("../img/home/bg_sp_2.png") no-repeat 50% bottom;
    background-size: 768px;
    z-index: -1;
  }

  .interview.second {
    background: none;
  }

  .schedule {
    min-height: auto;
    margin-bottom: 40px;
  }

  .schedule h3 {
    font-size: 14px;
    margin-bottom: 40px;
    text-align: center;
  }

  .schedule h3 span {
    font-size: 30px;
  }

  .schedule .inner {
    max-width: 480px;
    padding: 30px 10px;
  }

  .schedule .table {
    font-size: 13px;
    display: block;
  }

  .schedule .tr {
    display: block;
  }

  .schedule .th,
  .schedule .td {
    display: block;
    padding-bottom: 2em;
  }

  .schedule .th {
    padding-bottom: 1em;
  }

  .schedule .th {
    width: 100%;
  }

  .movie {
    font-size: 13px;
  }

  .movie p {
    margin-bottom: 50px;
  }

  .youtube_wrap {
    width: 100%;
  }

  .home .youtube_wrap {
    width: 100%;
    padding: 0 10px;
    margin-top: 10px;
  }

  .pageback {
    width: 100%;
    max-width: 480px;
    padding: 0 10px;
  }

  .pageback a {
    width: 100%;
    height: 50px;
    font-size: 13px;
  }

  .flex_box {
    flex-direction: column;
    align-items: center;
  }
}

/*------社長イメージ------*/

.presidentimg {
  width: 100%;
  height: 578px;
}

.presidentimg .inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.presidentimg .inner {
  background: url("../img/president/image3.jpg") no-repeat 50% top;
  background-size: cover;
}

.presidentimg .h1_box {
  position: absolute;
  width: 100%;
  max-width: 1000px;
  right: 50%;
  bottom: 0;
  padding: 0 0 80px 20px;
  transform: translate(50%, 0);
  color: #fff;
}

.presidentimg .h1_box p {
  font-size: 72px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 30px;
}

.presidentimg .h1_box h1 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .presidentimg {
    height: 214px;
  }

  .presidentimg .h1_box {
    padding: 0 0 20px 20px;
  }

  .presidentimg .h1_box p {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .presidentimg .h1_box h1 {
    font-size: 14px;
  }
}

/*------エントリー------*/

.ul_pagelink {
  font-size: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px;
}

.ul_pagelink li {
  margin-bottom: 40px;
  padding: 0 30px;
}

.ul_pagelink a {
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.ul_pagelink a::before {
  content: "";
  width: 34px;
  height: 34px;
  display: inline-block;
  background: url("../img/entry/arrow.png") no-repeat 50% 50%;
  background-size: 34px;
  margin-right: 1em;
}

.ul_pagelink a:hover {
  opacity: 0.6;
}

.entry .content .inner {
  max-width: 1000px;
  padding: 0 10px;
}

.hdg_a {
  background-color: #333;
  height: 56px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 56px;
  width: 100%;
  margin-bottom: 50px;
  font-size: 20px;
}

.hdg_b {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.entry .table {
  display: table;
  margin-bottom: 60px;
}

.entry .table .tr {
  display: table-row;
}

.entry .table .th,
.entry .table .td {
  display: table-cell;
  background-color: #fff;
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  border-bottom: 1px solid #ededed;
}

.entry .table .th {
  text-align: center;
  width: 180px;
  border-right: 1px solid #ededed;
  vertical-align: middle;
}

.entry .table .td p {
  margin-bottom: 1.5em;
}

.entry .table .td p:last-of-type {
  margin-bottom: 0;
}

.entry .honbun {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 5em;
}

.entry_box {
  max-width: 768px;
  background-color: #fff;
  padding: 20px 20px 30px;
  margin: 0 auto 50px;
  font-size: 15px;
  text-align: center;
}

.entry_box h2 {
  background-color: #ff6633;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 30px;
}

.entry_box p {
  margin-bottom: 30px;
  line-height: 1.5;
}

.entry_box a {
  transition: opacity 0.3s ease;
}

.entry_box a:hover {
  opacity: 0.6;
}

.flow {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 70px;
}

.flow li {
  text-align: center;
}

.flow div {
  background-color: #fff;
  height: 56px;
  line-height: 56px;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}

.flow div::before {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translate(0, -50%);
  line-height: 26px;
  font-size: 16px;
  color: #fff;
  background-color: #ff6633;
  border-radius: 13px;
  height: 26px;
  width: 80px;
}

.flow div.step1::before {
  content: "STEP 1";
}
.flow div.step2::before {
  content: "STEP 2";
}
.flow div.step3::before {
  content: "STEP 3";
}
.flow div.step4::before {
  content: "STEP 4";
}
.flow div.step5::before {
  content: "STEP 5";
}
.flow div.step6::before {
  content: "STEP 6";
}

.flow li::after {
  display: inline-block;
  width: 52px;
  height: 20px;
  content: "";
  background: url("../img/entry/triangle.png") no-repeat 50% 50%;
  background-size: 52px;
  margin: 15px 0;
}

.flow li:last-child::after {
  display: none;
}

.faq {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 40px;
}

.faq .question {
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 30px;
  line-height: 1.5;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
}

.faq .question::before {
  content: "Q";
  display: inline-block;
  width: 46px;
  height: 46px;
  background-color: #ff6633;
  color: #fff;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  margin-right: 25px;
}

.faq .answer {
  padding-top: 30px;
  display: flex;
}

.faq .answer > div {
  width: calc(100% - 71px);
}

.faq .answer::before {
  content: "A";
  display: inline-block;
  width: 46px;
  height: 46px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  margin-right: 25px;
}

.faq .answer p {
  line-height: 1.8;
  margin-bottom: 1em;
  font-size: 15px;
}

.faq .answer p:last-of-type {
  margin-bottom: 0;
}

.faq .answer a {
  color: #ff6633;
}

.faq .answer a:hover {
  text-decoration: none;
}

.table_kenshu {
  display: table;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 100%;
}

.tr_kenshu {
  display: table-row;
}

.th_kenshu,
.td_kenshu {
  display: table-cell;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 1.2em;
  line-height: 1.5;
  vertical-align: middle;
}

.th_kenshu {
  text-align: center;
  font-weight: bold;
  background-color: #ededed;
}

@media screen and (max-width: 767px) {
  .ul_pagelink {
    font-size: 15px;
    font-weight: bold;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0 0 10px;
    padding-left: 15px;
    width: 100%;
  }

  .ul_pagelink li {
    margin-bottom: 30px;
    padding: 0;
  }

  .ul_pagelink a::before {
    width: 20px;
    height: 20px;
    background: url("../img/entry/arrow.png") no-repeat 50% 50%;
    background-size: 20px;
    margin-right: 1em;
  }

  .entry .content .inner {
    max-width: 1000px;
    padding: 0 10px;
  }

  .hdg_a {
    height: 36px;
    line-height: 36px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  .hdg_b {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .entry .table {
    display: block;
    margin-bottom: 60px;
  }

  .entry .table .tr {
    display: block;
  }

  .entry .table .th,
  .entry .table .td {
    display: block;
    padding: 20px 15px;
    font-size: 14px;
    border: none;
  }

  .entry .table .th {
    text-align: center;
    font-weight: bold;
    width: 100%;
    border: none;
    background-color: #fff2e3;
  }

  .entry .table .td p {
    margin-bottom: 1.5em;
  }

  .entry .honbun {
    font-size: 13px;
    text-align: left;
    margin-bottom: 3em;
  }

  .entry_box {
    padding: 10px 10px 20px;
    margin: 0 auto 50px;
    font-size: 13px;
  }

  .entry_box h2 {
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .entry_box p {
    margin-bottom: 20px;
    text-align: left;
  }

  .flow {
    margin: 0 auto 40px;
  }

  .flow div {
    height: auto;
    line-height: 1.5;
    font-size: 16px;
    padding: 20px 0;
  }

  .flow div::before {
    display: block;
    position: relative;
    left: auto;
    top: auto;
    transform: translate(0, 0);
    margin: 0 auto 15px;
  }

  .flow li::after {
    margin: 10px 0;
  }

  .faq {
    padding: 20px 10px;
    margin-bottom: 20px;
  }

  .faq .question {
    font-size: 14px;
    padding-bottom: 20px;
  }

  .faq .question::before {
    width: 34px;
    height: 34px;
    line-height: 30px;
    font-size: 18px;
    margin-right: 20px;
  }

  .faq .answer {
    padding-top: 20px;
  }

  .faq .question > div,
  .faq .answer > div {
    width: calc(100% - 54px);
  }

  .faq .answer::before {
    width: 34px;
    height: 34px;
    line-height: 30px;
    font-size: 18px;
    margin-right: 20px;
  }

  .faq .answer p {
    line-height: 1.8;
    font-size: 13px;
  }

  .table_scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .table_scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .table_scroll::-webkit-scrollbar-thumb {
    background: #bcbcbc;
  }

  .table_kenshu {
  }
  .th_kenshu,
  .td_kenshu {
    padding: 1em;
    font-size: 13px;
  }
}

/*------福利厚生------*/

.welfare .content .inner {
  max-width: 1000px;
  width: 100%;
  padding: 0 10px;
  flex-shrink: 0;
}

.welfare .lead {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 50px;
  text-align: center;
}

.welfare .ul_icon {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 640px;
  margin: 0 auto 40px;
}

.welfare .ul_icon img {
  width: 118px;
  margin-bottom: 10px;
}

.welfare .ul_icon li {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.welfare .catch {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 60px;
  text-align: center;
}

.welfare .ul_fukuri {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.welfare .ul_fukuri.one {
  justify-content: center;
}

.welfare .ul_fukuri li {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  flex-shrink: 0;
}

.welfare .ul_fukuri.three li {
  width: 31.5%;
}

.welfare .ul_fukuri.two li {
  width: 48.5%;
}

.welfare .ul_fukuri.one li {
  width: 48.5%;
}

.welfare .ul_fukuri img {
  max-width: 100%;
  flex-shrink: 0;
}

.welfare .ul_fukuri div {
  padding: 25px;
  max-width: 100%;
}

.welfare .ul_fukuri h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.5;
}

.welfare .ul_fukuri p {
  font-size: 14px;
  line-height: 1.8;
}

.welfare p.honbun {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 5em;
}

@media screen and (max-width: 767px) {
  .welfare .lead {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 30px;
  }

  .welfare .ul_icon {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px;
  }

  .welfare .ul_icon img {
    width: 70px;
  }

  .welfare .ul_icon li {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .welfare .catch {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .welfare .ul_fukuri {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

  .welfare .ul_fukuri li {
    margin-bottom: 30px;
    max-width: 400px;
    background-color: transparent;
    align-items: center;
  }

  .welfare .ul_fukuri.three li {
    width: 100%;
  }

  .welfare .ul_fukuri.two li {
    width: 100%;
  }

  .welfare .ul_fukuri.one li {
    width: 100%;
  }

  .welfare .ul_fukuri div {
    padding: 25px;
    background-color: #fff;
  }

  .welfare .ul_fukuri.photo div {
    width: 90%;
    position: relative;
    top: -10px;
  }

  .welfare .ul_fukuri h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .welfare .ul_fukuri p {
    font-size: 13px;
  }

  .welfare p.honbun {
    font-size: 13px;
    text-align: left;
    margin-bottom: 5em;
  }
}

/*------プライバシー------*/

.privacy .content .inner {
  max-width: 788px;
  width: 100%;
  padding: 0 10px;
}

.privacy .honbun {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 3em;
}

.privacy .honbun.right {
  text-align: right;
}

.privacy p.contact {
  text-align: center;
  margin-bottom: 5em;
}

.privacy ol {
  list-style: decimal inside;
  margin-left: 1em;
  font-size: 15px;
  line-height: 2;
}

.privacy ol li {
  margin-bottom: 2em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  .privacy .honbun {
    font-size: 13px;
    margin-bottom: 3em;
  }

  .privacy p.contact {
    margin-bottom: 5em;
  }

  .privacy ol {
    font-size: 13px;
  }

  .privacy ol li {
    margin-bottom: 2em;
  }
}

/*------ABOUT------*/

.about_01 {
  width: 100%;
  max-width: 1000px;
  flex-shrink: 0;
}

.about_h2 {
  padding: 60px 0;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.about_h2.jigyo {
  background: url("../img/about/bg_business.png") no-repeat 50% 50%;
  background-size: 1130px;
}

.about_h2.rinen {
  background: url("../img/about/bg_philosophy.png") no-repeat 50% 50%;
  background-size: 970px;
}

.about_h2.reason {
  background: url("../img/about/bg_reason.png") no-repeat 50% 50%;
  background-size: 621px;
}

.about_h2.number {
  background: url("../img/about/bg_statistics.png") no-repeat 50% 50%;
  background-size: 864px;
}

.about_h2.photo {
  background: url("../img/about/bg_photo.png") no-repeat 50% 50%;
  background-size: 516px;
}

.about_h2.douga {
  background: url("../img/about/bg_movie.png") no-repeat 50% 50%;
  background-size: 466px;
  margin-bottom: 20px;
}

.about_h2 h2 {
  color: #ff6633;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.about_h2 p {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}

.about .honbun {
  line-height: 2;
  font-size: 15px;
  width: 100%;
  max-width: 788px;
  padding: 0 10px;
  margin-bottom: 60px;
}

.about .honbun strong {
  color: #ff6633;
  font-weight: bold;
}

.about .business_wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}

.about .business {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
}

.about .hdg_a {
  max-width: 980px;
}

.about .business li {
  width: calc(50% - 20px);
  background-color: #fff;
  padding: 30px;
  margin-bottom: 40px;
}

.about .business span {
  display: block;
  width: 60px;
  height: 50px;
  background-color: #ff6633;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  margin: 0 auto -10px;
  position: relative;
  top: -40px;
}

.about .business h4 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}

.about .business p {
  font-size: 14px;
  line-height: 2;
}

.about .about_02 {
  padding: 0 10px;
}

.about .about_02 img {
  max-width: 768px;
  width: 100%;
  margin-bottom: 20px;
}

.about .about_02 p {
  text-align: center;
  margin-bottom: 100px;
  font-size: 15px;
}

.about .ul_about_photo {
  display: flex;
  width: 100%;
  flex-shrink: 0;
}

.about .ul_about_photo li {
  width: 33.33%;
  flex-shrink: 0;
}

.about .ul_about_photo img {
  max-width: 100%;
  flex-shrink: 0;
}

.about .reason_wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  background: url("../img/about/bg_topclass.png") no-repeat 50% top;
  background-size: 2000px;
}

.about .reason_wrap h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  width: 100%;
  max-width: 788px;
  line-height: 1.5;
  padding: 0 10px;
  color: #ff6633;
}

.about .reason_box {
  max-width: 1000px;
  width: 100%;
  margin-bottom: 60px;
  padding: 0 10px;
  flex-shrink: 0;
}

.about .reason_box .img_box,
.about .reason_box .txt_box {
  width: 50%;
}

.about .reason_box .img_box {
  float: left;
  position: relative;
}

.about .reason_box.second .img_box {
  float: right;
  top: 20px;
}

.about .reason_box img {
  max-width: 100%;
}

.about .reason_box .txt_box {
  float: right;
  background-color: #fff;
  position: relative;
  top: 20px;
  padding: 40px;
}

.about .reason_box.second .txt_box {
  float: left;
  top: 0px;
}

.about .reason_box .txt_box .inner {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}

.about .reason_box span {
  width: 80px;
  height: 80px;
  background-color: #ff6633;
  text-align: center;
  line-height: 80px;
  color: #fff;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
  margin-right: 30px;
  display: block;
}

.about .reason_box h3 {
  font-size: 22px;
  line-height: 1.5;
}

.about .reason_box h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

.about .reason_box p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.about .reason_box p:last-of-type {
  margin-bottom: 0;
}

.about .number_wrap {
  padding: 40px 0 0;
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.about .ul_number {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.about .ul_number > li {
  background-color: #ededed;
  width: 48%;
  display: flex;
  justify-content: space-between;
  min-height: 250px;
  padding: 30px 0px 30px 30px;
  margin-bottom: 40px;
}

.about .ul_number h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
}

.about .ul_number .more {
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 15px;
}

.about .ul_number .more li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.about .ul_number p {
  line-height: 1.5;
  font-size: 14px;
}

.about .ul_number .img_box img {
  position: relative;
  transform: translate(0, -50%);
}

@media all and (-ms-high-contrast: none) {
  .about .ul_number .img_box img {
    transform: translate(0, 0);
  }
}

@supports (-ms-ime-align: auto) {
  .about .ul_number .img_box img {
    transform: translate(0, 0);
  }
}

.about .chart01 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart02 {
  width: 230px;
  left: -25px;
  top: 50%;
}
.about .chart03 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart04 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart05 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart06 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart07 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart08 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart09 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart10 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart11 {
  width: 230px;
  left: 0px;
  top: 50%;
}
.about .chart12 {
  width: 230px;
  left: 0px;
  top: 50%;
}

.about .photo_wrap {
  padding: 40px 0 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.about .ul_photo {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 0 10px;
}

.about .ul_photo li {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-content: center;
  margin-bottom: 40px;
}

.about .ul_photo img {
  width: 100%;
  margin-bottom: 20px;
  height: auto;
  flex-shrink: 0;
}

.about .ul_photo p {
  text-align: center;
}

.about .movie_wrap {
  background-color: #fff;
  padding: 40px 10px;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .about_h2 {
    padding: 30px 10px;
  }

  .about_h2.jigyo {
    background: url("../img/about/bg_business.png") no-repeat 50% 50%;
    background-size: 565px;
  }

  .about_h2.rinen {
    background: url("../img/about/bg_philosophy.png") no-repeat 50% 50%;
    background-size: 485px;
  }

  .about_h2.reason {
    background: url("../img/about/bg_reason.png") no-repeat 50% 50%;
    background-size: 310px;
  }

  .about_h2.number {
    background: url("../img/about/bg_statistics.png") no-repeat 50% 50%;
    background-size: 432px;
  }

  .about_h2.photo {
    background: url("../img/about/bg_photo.png") no-repeat 50% 50%;
    background-size: 258px;
  }

  .about_h2.douga {
    background: url("../img/about/bg_movie.png") no-repeat 50% 50%;
    background-size: 233px;
  }

  .about_h2 h2 {
    margin-bottom: 15px;
    font-size: 13px;
  }

  .about_h2 p {
    font-size: 15px;
  }

  .about .honbun {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .about .business {
    flex-direction: column;
  }

  .about .business li {
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
  }

  .about .business li:last-child {
    margin-bottom: 0;
  }

  .about .business span {
    width: 50px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin: 0 auto 0;
    top: -20px;
  }

  .about .business h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .about .business p {
    font-size: 13px;
  }

  .about .about_02 {
    width: 100%;
    flex-shrink: 0;
  }

  .about .about_02 img {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .about .about_02 p {
    margin-bottom: 40px;
    font-size: 12px;
    line-height: 1.5;
  }

  .about .ul_about_photo {
    flex-direction: column;
    align-items: center;
  }

  .about .ul_about_photo li {
    width: 100%;
  }

  .about .ul_about_photo img {
    max-width: 440px;
    width: 100%;
  }

  .about .reason_wrap {
    background: none;
  }

  .about .reason_wrap h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .about .reason_box {
    margin-bottom: 40px;
  }

  .about .reason_box .img_box,
  .about .reason_box .txt_box {
    width: 100%;
  }

  .about .reason_box .img_box {
    float: none;
    text-align: center;
  }

  .about .reason_box.second .img_box {
    float: none;
    top: 0;
  }

  .about .reason_box img {
    max-width: 440px;
    width: 100%;
  }

  .about .reason_box .txt_box {
    float: none;
    top: 0;
    padding: 20px 10px;
  }

  .about .reason_box.second .txt_box {
    float: none;
  }

  .about .reason_box .txt_box .inner {
    margin-bottom: 30px;
  }

  .about .reason_box span {
    width: 60px;
    height: 60px;
    line-height: 60px;
    margin-right: 20px;
    font-size: 13px;
  }

  .about .reason_box h3 {
    font-size: 15px;
  }

  .about .reason_box h4 {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .about .reason_box p {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .about .number_wrap {
    padding: 20px 0;
  }

  .about .ul_number {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    margin-top: 20px;
  }

  .about .ul_number > li {
    width: 100%;
    max-width: 400px;
    min-height: auto;
    padding: 20px 0 20px 20px;
    margin-bottom: 20px;
  }

  .about .ul_number h3 {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .about .ul_number .more {
    margin-bottom: 30px;
    font-size: 13px;
  }

  .about .ul_number .more li {
    margin-bottom: 8px;
  }

  .about .ul_number p {
    font-size: 12px;
  }

  .about .chart01 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart02 {
    width: 150px;
    left: -15px;
    top: 50%;
  }
  .about .chart03 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart04 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart05 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart06 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart07 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart08 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart09 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart10 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart11 {
    width: 150px;
    left: 0px;
    top: 50%;
  }
  .about .chart12 {
    width: 150px;
    left: 0px;
    top: 50%;
  }

  .about .photo_wrap {
    padding: 20px 0 0;
  }

  .about .ul_photo {
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .about .ul_photo li {
    width: 100%;
    margin-bottom: 30px;
    align-items: center;
    font-size: 13px;
  }

  .about .ul_photo img {
    width: 100%;
    max-width: 440px;
    margin-bottom: 10px;
  }
}

/*	PAGETOP	*/
#pageTop {
  position: fixed;
  right: -60px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5) url(../img/home/pagetop.png) no-repeat 50% 50%;
  background-size: 27px;
  z-index: 9998;
  transition: all 0.3s ease;
  text-indent: -9999px;
}

#pageTop.showIn {
  right: 0;
}

@media screen and (min-width: 768px), print {
  #pageTop {
    right: 35px;
    bottom: -60px;
  }

  #pageTop.showIn {
    right: 35px;
    bottom: 30px;
  }
}
