
/* _reset.scss
--------------------------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

q:before, q:after {
  content: '';
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

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

/*　default link color
---------------------------------------------------------------------------------------*/
a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

body {
  font-size: 15px;
  font-family:Helvetica Neue,PingFang SC,Helvetica,Arial,Hiragino Sans GB,Microsoft Yahei,\5FAE软雅黑,STHeiti,\534E文细黑,sans-serif;
  line-height: 1.6;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.pc_none {
  display: none;
}

a.link_text {
  position: relative;
  display: inline-block;
  transition: .3s;
}

a.link_text::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
}

.link_text_black.link_text::after {
  background-color: #000 !important;
}

a.link_text:hover::after {
  width: 100%;
}

.see_more {
  display: block;
  background: #000;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.07em;
  font-size: 13px;
  position: relative;
  border: 2px solid #000;
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.see_more:hover {
  color: #000;
}

.see_more:after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.see_more:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.see_more span {
  position: relative;
  z-index: 5;
  width: 100%;
  display: inline-block;
}

.arrow_right span::before,
.arrow_right span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  content: "";
  vertical-align: middle;
  -webkit-transition: all 950ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 950ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 950ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.arrow_right span::before {
  width: 14px;
  height: 2px;
  background: #FFCC00;
}

.arrow_right span::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFCC00;
  border-right: 2px solid #FFCC00;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.see_more:hover span::before {
  background: #000;
}

.see_more:hover span::after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

img {
  max-width: 100%;
  height: auto;
}

@-webkit-keyframes slide_line {
  0% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes slide_line {
  0% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

/* loading
--------------------------------------------------------- */
#js_site_pager {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 44px;
  left: 0;
  z-index: 1001;
  background: #FFCC00;
  -webkit-transition: all 1s 0s cubic-bezier(0.96, 0.1, 0.91, 0.82);
  -moz-transition: all 1s 0s cubic-bezier(0.96, 0.1, 0.91, 0.82);
  transition: all 1s 0s cubic-bezier(0.96, 0.1, 0.91, 0.82);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transform: translateY(100%) scaleX(0);
  transform: translateY(100%);
}

#js_site_pager.changed {
  transform: translateY(-120%);
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 301;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #FFCC00;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/* ページスライド
--------------------------------------------------------- */
#l_containerAll {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow-x: hidden;
}

/* header
--------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  z-index: 11;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1920px;
}

.header::after {
  content: "";
  display: block;
  clear: both;
}

.header .logo {
  padding: 35px 0 0 30px;
  float: left;
  -webkit-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.changed {
  transform: translate(0px, 0px) !important;
  -webkit-transition: all 1.8s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 1.8s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 1.8s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.gnav {
  float: right;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.gnav::after {
  content: "";
  display: block;
  clear: both;
}

.gnav ul {
  padding: 0 116px 0 0px;
  background: #000;
  -webkit-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.gnav ul::after {
  content: "";
  display: block;
  clear: both;
}

.gnav ul.hide {
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(-120px);
}

.gnav ul li {
  float: left;
  display: table;
}

.gnav ul li:first-child a {
  padding-left: 70px;
}

.gnav ul li a {
  color: #fff;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  padding: 0px 40px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 21px;
  height: 116px;
  display: table-cell;
  vertical-align: middle;
  -webkit-transition: all 350ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 350ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 350ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gnav ul li a:hover {
  color: #FFCC00;
  transform: translateY(-5px);
}

.gnav .switchWrap {
  width: 116px;
  height: 116px;
  background: #FFCC00;
  display: block;
  position: relative;
  z-index: 2;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: auto;
  left: auto;
  cursor: pointer;
}

.gnav .swich_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.gnav .switch__line {
  display: block;
  width: 45px;
  height: 2px;
  position: absolute;
  top: auto;
  right: 0;
  bottom: auto;
  left: 0;
  background: #000;
  margin: auto;
  -webkit-transition: all 350ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 350ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 350ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gnav .switch__line:nth-child(1) {
  top: 45%;
}

.gnav .switch__line:nth-child(2) {
  top: 55%;
}

.gnav .hover .switch__line:nth-child(1), .gnav .hover .switch__line:nth-child(2) {
  top: 50%;
}

.gnav .active .switch__line:nth-child(1), .gnav .active .switch__line:nth-child(2) {
  top: 50%;
}

.gnav .active .switch__line:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gnav .active .switch__line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ハンバーガー menu
--------------------------------------------------------- */
.close_menu {
  -webkit-transition: all 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s 0s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
  height: 100vh;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #000;
  opacity: 0.90;
  color: #FFCC00;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transform: translateX(100%);
}

.close_menu.active {
  transform: translateX(0);
}

.close_menu div {
  position: relative;
  width: 100%;
  height: 100vh;
}

.close_menu ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 100%;
}

.close_menu ul li {
  margin-bottom: 20px;
}

.close_menu ul li:first-child a {
  color: #FFCC00;
}

.close_menu a {
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* main_v
--------------------------------------------------------- */
.main_v {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background-size: cover;
  position: relative;
  margin-bottom: 130px;
}

#footer {
  width: 100%;
  background: #000;
  color: #fff;
}

#footer .inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 65px 20px;
}

#footer .inner::after {
  content: "";
  display: block;
  clear: both;
}

#footer .inner .block_L {
  float: left;
  width: 30%;
}

#footer .inner .block_L .logo {
  margin-bottom: 20px;
}

#footer .inner .block_R {
  float: right;
  width: 58%;
  max-width: 615px;
  padding-top: 40px;
}

#footer .inner .block_R::after {
  content: "";
  display: block;
  clear: both;
}

#footer .inner .block_R .tel_block {
  float: left;
  max-width: 618px;
  width: 52%;
}

#footer .inner .block_R .tel_block .read_1 {
  margin-bottom: 5px;
}

#footer .inner .block_R .tel_block .tel {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.07em;
}

#footer .inner .block_R .tel_block .tel a {
  color: #fff;
}

#footer .inner .block_R .tel_block .tel .tel_span {
  display: inline-block;
  font-weight: 500;
  font-size: 21px;
  margin-right: 5px;
  background: url(../image/footer_tel_icon.png) no-repeat left center;
  padding-left: 25px;
}

#footer .inner .block_R .contact_link {
  display: block;
  background: #FFCC00;
  border: 2px solid #FFCC00;
  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
  float: right;
  width: 46%;
  text-align: center;
  max-width: 280px;
  font-size: 14px;
}

#footer .inner .block_R .contact_link:hover {
  background: #fff;
}

#footer .inner .block_R .contact_link span {
  display: inline-block;
  background: url(../image/footer_contact_icon.png) no-repeat left center;
  padding-left: 30px;
  letter-spacing: 0.1em;
}

#footer .copyright {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.08em;
  border-top: 1px solid #fff;
}

#footer .copyright .footer__copy {
  font-family: "Work Sans", sans-serif;
  text-align: center;
}

/* top.scss
--------------------------------------------------------------------------------------- */
#home {
  background: #F9F9F9;
}

.main_v {
  background: url(../image/main_v.jpg) no-repeat center center;
  height: 100vh;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background-size: cover;
}

.main_v .copy_area {
  position: absolute;
  top: 26%;
  right: auto;
  bottom: auto;
  left: 50px;
}

.main_v .copy_area .en_copy {
  font-family: "Work Sans", sans-serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 45px;
  position: relative;
  text-transform: uppercase;
}

.main_v .copy_area .en_copy span {
  position: relative;
  display: inline-block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateX(-30px);
  -moz-transition-property: opacity, transform !important;
  -webkit-transition-property: opacity, transform !important;
  transition-property: opacity, transform !important;
}

.main_v .copy_area .en_copy:nth-of-type(1) span {
  -webkit-transition: opacity 0.5s 1.3s cubic-bezier(0.65, 0.84, 0.44, 1);
  -moz-transition: opacity 0.5s 1.3s cubic-bezier(0.65, 0.84, 0.44, 1);
  transition: opacity 0.5s 1.3s cubic-bezier(0.65, 0.84, 0.44, 1);
}

.main_v .copy_area .en_copy:nth-of-type(2) span {
  -webkit-transition: opacity 0.5s 1.5s cubic-bezier(0.65, 0.84, 0.44, 1);
  -moz-transition: opacity 0.5s 1.5s cubic-bezier(0.65, 0.84, 0.44, 1);
  transition: opacity 0.5s 1.5s cubic-bezier(0.65, 0.84, 0.44, 1);
}

.main_v .copy_area .en_copy:nth-of-type(3) span {
  -webkit-transition: opacity 0.5s 1.7s cubic-bezier(0.65, 0.84, 0.44, 1);
  -moz-transition: opacity 0.5s 1.7s cubic-bezier(0.65, 0.84, 0.44, 1);
  transition: opacity 0.5s 1.7s cubic-bezier(0.65, 0.84, 0.44, 1);
}

.main_v .copy_area .en_copy span.changed {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateX(0px);
}

.main_v .copy_area .jp_copy {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.main_v .scroll {
  display: block;
  background: #FFCC00;
  width: 108px;
  height: 108px;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0%;
  margin-right: auto;
  margin-left: auto;
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main_v .scroll:hover {
  background: #000;
}

.main_v .scroll:hover span {
  color: #fff;
}

.main_v .scroll:hover .inner .arrow::before {
  background: #FFCC00;
}

.main_v .scroll:hover .inner .arrow::after {
  border-top: 4px solid #FFCC00;
  border-right: 4px solid #FFCC00;
}

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

.main_v .scroll .inner .arrow {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

.main_v .scroll .inner .arrow::before,
.main_v .scroll .inner .arrow::after {
  position: absolute;
  content: "";
  vertical-align: middle;
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main_v .scroll .inner .arrow::before {
  width: 4px;
  height: 28px;
  top: 30px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  background: #000;
}

.main_v .scroll .inner .arrow::after {
  width: 16px;
  height: 16px;
  top: 36px;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  border-top: 4px solid #000;
  border-right: 4px solid #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.main_v .scroll .inner .arrow span {
  display: block;
  position: absolute;
  top: 70px;
  right: auto;
  bottom: auto;
  left: auto;
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.concept {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 140px;
}

.concept .inner {
  position: relative;
  width: 100%;
  height: 660px;
}

.concept .inner::after {
  content: "";
  display: block;
  clear: both;
}

.concept .catch {
  font-size: 130px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1;
  padding-top: 80px;
  padding-left: 80px;
  margin-bottom: 100px;
  text-transform: uppercase;
}

.concept .lead_area {
  width: 40%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px 0 80px;
}

.concept .catch2 {
  font-size: 46px;
  margin-bottom: 50px;
}

.concept .lead {
  font-size: 17px;
  line-height: 2.2;
  font-weight: bold;
}

.concept .img_area {
  width: 60%;
  height: 660px;
  overflow-x: hidden;
  background: url(../image/sec2.jpg) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 0;
  -webkit-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/*
.concept .img_area:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0;
  background-color: #F9F9F9;
  z-index: 1;
  -webkit-transition: all 0.8s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.8s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.8s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
}*/

.concept .img_area img {
  display: none;
}

.concept .img_area.changed:after {
  left: 2000px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.service {
  width: 96%;
  max-width: 1700px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 80px;
}

.service::after {
  content: "";
  display: block;
  clear: both;
}

.service #web {
  float: left;
}

.service #graphic {
  float: right;
}

.service .box {
  width: 48%;
  max-width: 820px;
  background: #fff;
  padding: 80px 0 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.service .box .midashi {
  position: absolute;
  top: -45px;
  right: auto;
  bottom: auto;
  left: -10px;
  display: table;
}

.service .box .midashi span {
  display: table-cell;
  vertical-align: middle;
}

.service .box .midashi .en {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 700;
  padding-right: 20px;
}

.service .box ul {
  margin-bottom: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.service .box ul::after {
  content: "";
  display: block;
  clear: both;
}

.service .box ul li {
  width: 33.33%;
  float: left;
  text-align: center;
  position: relative;
}

.service .box ul li a {
  display: block;
  width: 100%;
  width: 100%;
  height: 100%;
}

.service .box ul li a:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.service .box ul li .img {
  margin-bottom: 25px;
}

.service .box ul li .img img {
  -webkit-transition: all 0.5s 0s ease;
  -moz-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.service .box ul li .m {
  font-size: 20px;
}

.service .box ul li .m span {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}

.works {
  padding: 90px 0 120px;
  background: #fff;
}

.works .m {
  font-size: 70px;

  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.works .read {
  text-align: center;
  font-weight: bold;
  margin-bottom: 55px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.works .works_list::after {
  content: "";
  display: block;
  clear: both;
}

.works .see_more {
  max-width: 380px;
  width: 96%;
  margin-right: auto;
  margin-left: auto;
}

.works_list {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

li.work {
  float: left;
  width: 33.33%;
  position: relative;
  margin-bottom: 50px;
  -webkit-transition: all 0.5s 0s ease-out;
  -moz-transition: all 0.5s 0s ease-out;
  transition: all 0.5s 0s ease-out;
  overflow: hidden;
  z-index: 0;
}

li.work:hover {
  box-shadow: 0 0 30px rgba(12, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 30px rgba(12, 0, 0, 0.3);
  -moz-box-shadow: 0 0 30px 2px rgba(12, 0, 0, 0.3);
  z-index: 1;
}

li.work:hover .img_box img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

li.work .tag {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 5;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  font-size: 12px;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
}

li.work .graphic {
  background: #FFCC00;
}

li.work .web {
  background: #0D366E;
}

li.work a.link_work {
  -webkit-transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

li.work a.link_work:hover .title {
  color: #fff;
}

li.work a.link_work:hover .detail_box::before {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

li.work .img_box {
  line-height: 0;
  overflow: hidden;
}

li.work .img_box img {
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

li.work .detail_box {
  width: 100%;
  padding: 20px 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

li.work .detail_box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #111;
  z-index: 0;
  -webkit-transition: all 0.4s 0s cubic-bezier(0.26, 0.45, 0.46, 0.94);
  -moz-transition: all 0.4s 0s cubic-bezier(0.26, 0.45, 0.46, 0.94);
  transition: all 0.4s 0s cubic-bezier(0.26, 0.45, 0.46, 0.94);
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  z-index: 0;
}

li.work .title {
  font-size: 20px;
  position: relative;
  z-index: 2;
}

li.work .naiyou {
  font-size: 13px;
}

li.work .naiyou strong {
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
}

.recruit {
  width: 100%;
  background: #fff;
  position: relative;
  height: 589px;
}

.recruit .recruit_m.pc_none {
  padding-top: 0px;
  margin-bottom: 20px;
  font-family: "Work Sans", sans-serif;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.recruit .inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: #FFCC00;
  height: 351px;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: auto;
  -webkit-transition: all 1.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 1.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scaleY(0);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.recruit .inner.changed {
  transform: scaleY(1);
}

.recruit .inner2 {
  width: 96%;
  max-width: 1500px;
  height: 503px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  background: url(../image/sec5.jpg) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
}

.recruit .inner2 .recruit_m {
  font-family: "Work Sans", sans-serif;
  font-size: 70px;
  font-weight: bold;
  text-align: center;
  color: #FFCC00;
  padding-top: 50px;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.recruit .inner2 .read {
  color: #fff;
  text-align: center;
  line-height: 2.5;
  margin-bottom: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.recruit .inner2 .see_more {
  max-width: 380px;
  margin-right: auto;
  margin-left: auto;
}

.recruit .inner3 {
  position: relative;
  z-index: 2;
  top: -24px;
  background: #FFCC00;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  padding: 6% 4%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.recruit .inner3 .read {
  color: #000;
  margin-bottom: 20px;
}

.event {
  padding: 80px 0 90px;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
}

.event .event_m {
  font-family: "Work Sans", sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.event .event_ul {
  margin-bottom: 60px;
}

.event .event_ul::after {
  content: "";
  display: block;
  clear: both;
}

.event .event_ul li {
  float: left;
  width: 25%;
  position: relative;
  overflow: hidden;
  z-index: 0;
  -webkit-transition: all 0.5s 0s ease-out;
  -moz-transition: all 0.5s 0s ease-out;
  transition: all 0.5s 0s ease-out;
}

.event .event_ul li:hover {
  box-shadow: 0 0 30px rgba(12, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 30px rgba(12, 0, 0, 0.3);
  -moz-box-shadow: 0 0 30px 2px rgba(12, 0, 0, 0.3);
  z-index: 1;
}

.event .event_ul li a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.3s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event .event_ul li a:hover .img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.event .event_ul li a:hover .detail_area {
  background: #0D366E;
  color: #fff;
}

.event .event_ul li .img {
  line-height: 0;
  overflow: hidden;
}

.event .event_ul li .img img {
  -webkit-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 750ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
}

.event .event_ul li .detail_area {
  padding: 4% 4%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.9s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.9s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.9s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.event .event_ul li .date {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.event .event_ul li .title {
  font-weight: normal;
  position: relative;
  z-index: 1;
}

.event .see_more {
  max-width: 380px;
  margin-right: auto;
  margin-left: auto;
}

.topics {
  padding: 80px 0 80px;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}

.topics .topics_m {
  font-family: "Work Sans", sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 40px;
}

.topics .topics_ul {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-bottom: 60px;
}

.topics .topics_ul::after {
  content: "";
  display: block;
  clear: both;
}

.topics .topics_ul li {
  width: 22%;
  margin-left: 2%;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -moz-inline-box;
  display: inline-block !important;
  text-align: left;
}

.topics .topics_ul li:first-child {
  margin-left: 0px;
}

.topics .topics_ul li a {
  display: block;
  padding: 15px;
  border: 4px solid #fff;
  -webkit-transition: all 0.5s 0s cubic-bezier(0.245, 0.045, 0.355, 1);
  -moz-transition: all 0.5s 0s cubic-bezier(0.245, 0.045, 0.355, 1);
  transition: all 0.5s 0s cubic-bezier(0.245, 0.045, 0.355, 1);
}

.topics .topics_ul li a:hover {
  border: 4px solid #000;
}

.topics .topics_ul li .title {
  font-weight: normal;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}

.topics .topics_ul li .date {
  text-align: right;
  padding-top: 20px;
  font-weight: bold;
}

.topics .see_more {
  max-width: 380px;
  margin-right: auto;
  margin-left: auto;
}

/* sub.scss
--------------------------------------------------------------------------------------- */
.main_v_2nd {
  width: 100%;
  height: 500px;
  position: relative;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  background: url(../image/main_v.jpg) no-repeat center center;
}

.main_v_2nd .title_area {
  position: absolute;
  top: 35%;
  left: 80px;
  color: #fff;
  letter-spacing: 0.08em;
}

.main_v_2nd .en_title {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: #fff;
  position: relative;
  text-transform: uppercase;
}

.main_v_2nd .jp_title {
  font-size: 30px;
  position: relative;
}

.no_main {
  padding: 200px 0 50px !important;
}

.no_main .m {
  font-size: 70px;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.no_main .m2_jp {
  font-size: 20px;
  text-align: center;
}

.slide_line {
  position: relative;
}

.slide_line:after {
  display: inline;
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background: #0D366E;
}

.slide_line.on:after {
  -webkit-animation: slide_line 1s ease 1.5s 1 normal both running;
  animation: slide_line 1s ease 1.5s 1 normal both running;
}

.jp_title .slide_line.on:after {
  -webkit-animation: slide_line 1s ease 1.7s 1 normal both running;
  animation: slide_line 1s ease 1.7s 1 normal both running;
}

.slide_line .hide {
  -webkit-transition: all 0s 1.95s ease;
  -moz-transition: all 0s 1.95s ease;
  transition: all 0s 1.95s ease;
  opacity: 0;
  filter: alpha(opacity=0);
}

.jp_title .slide_line .hide {
  -webkit-transition: all 0s 2.15s ease;
  -moz-transition: all 0s 2.15s ease;
  transition: all 0s 2.15s ease;
}

.slide_line.on .hide {
  opacity: 1;
  filter: alpha(opacity=100);
}

.contents {
  width: 100%;
}

/* company.scss
--------------------------------------------------------------------------------------- */
#company .main_v_2nd {
  background: url(../image/main_v1.jpg) no-repeat center center;
}

.company1 {
  padding: 80px 20px 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.company1 .title2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.company1 .title2 .jp_title {
  display: block;
  font-size: 17px;
}

.company1 .table_area {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
}

.company1 .table_area::after {
  content: "";
  display: block;
  clear: both;
}

.company1 .table_area .left_block, .company1 .table_area .right_block {
  width: 48%;
}

.company1 .table_area .left_block {
  float: left;
}

.company1 .table_area .right_block {
  float: right;
}

.company1 .table_area .tb1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px 0px;
  width: 100%;
}

.company1 .table_area .tb1 th, .company1 .table_area .tb1 td {
  padding: 30px 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
}

.company1 .table_area .tb1 th {
  border-bottom: 2px solid #000;
  width: 23%;
  max-width: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.company1 .table_area .tb1 td {
  border-bottom: 2px solid #ddd;
  width: 70%;
  max-width: 350px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 2;
}

.company1 .table_area .tb1 .pin_link {
  padding-left: 20px;
  background: url(../image/pin.png) no-repeat left center;
}

.company1 .table_area .tb1 .pin_link span {
  color: #1400A3;
  border-bottom: 1px solid #8D7CD7;
}

.company1 .gaikan {
  text-align: center;
}

.company2 {
  width: 100%;
  padding: 20px 20px 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.company2 #map_canvas {
  width: 100%;
  height: 300px;
}

.company2 .lead1 {
  text-align: center;
  padding: 30px 15px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 2.5;
}

.company3 {
  margin: auto;
  padding: 30px 0 70px;
  /*左右の矢印の色を変える*/
  /*左右の矢印の位置を変える*/
}

.company3 .inner {
  max-width: 1200px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  padding: 0 4%;
}

.company3 .inner::after {
  content: "";
  display: block;
  clear: both;
}

.company3 .inner h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.company3 .inner .img {
  float: left;
  width: 46%;
}

.company3 .inner .lead1 {
  float: right;
  width: 48%;
  text-align: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 2.5;
}

.company3 .autoplay {
  margin-bottom: 70px !important;
}

.company3 .slick-slide {
  margin: 0 1px;
}

.company3 .slick-arrow {
  padding: 30px;
  border: 2px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.company3 .slick-prev::before, .company3 .slick-next::before {
  font-family: 'slick';
  font-weight: bold;
  font-size: 25px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  margin: auto;
}

.company3 .slick-prev:before,
.company3 .slick-next:before {
  color: #000;
}

.company3 .slick-prev {
  left: 60px;
  z-index: 100;
}

.company3 .slick-next {
  right: 60px;
  z-index: 99;
}

/* works.scss
--------------------------------------------------------------------------------------- */
#works .main_v_2nd, #graphic .main_v_2nd {
  display: none;
}

#graphic .works_list {
  text-align: center;
}

#graphic .works_list .work {
  width: 30%;
  margin: 0 1% 4%;
  display: inline-block;
  float: none;
}

#graphic .works_list .work .detail_box {
  text-align: left;
}

.pager {
  padding: 120px 45px;
  position: relative;
  text-align: center;
}

.pager__buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.pager__buttons__button {
  font-size: 20px;
  font-family: Raleway,sans-serif;
  color: #7f7f7f;
  letter-spacing: 2px;
  -webkit-transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
}

.pager__buttons__button:hover {
  color: #0D366E;
}

.pager__buttons__button.is-left {
  margin-left: auto;
}

.pager__list {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translatex(-50%);
  -ms-transform: translatex(-50%);
  transform: translatex(-50%);
  margin-top: -25px;
  display: inline-block;
  margin-right: -10px;
}

.pager__list > li.enable {
  display: inline-block;
}

.pager__list > li {
  display: inline-block;
  margin-right: 10px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #7f7f7f;
  width: 50px;
  height: 50px;
}

.pager__list .is-active {
  color: #0D366E;
}

.pager__list a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #7f7f7f;
  text-align: center;
  line-height: 50px;
  transition: background 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pager__list a:hover {
  background: #0D366E;
  color: #fff;
}

.prev a:hover, .next a:hover {
  background: none;
  color: #0D366E;
}

#graphic .works_link {
  background: #0D366E;
}

#graphic .works .works_link {
  color: #fff;
}

#graphic .works .works_link::before {
  background: #fff;
}

#graphic .works .works_link::after {
  width: 16px;
  height: 16px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
}

.works .works_link {
  width: 96%;
  margin-right: auto;
  margin-left: auto;
  font-weight: bold;
  padding: 20px;
  color: #000;
  background: #FFCC00;
  text-align: center;
  display: block;
}

.works .works_link span.en {
  font-size: 50px;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
}

.works .works_link span.jp {
  display: block;
  font-size: 15px;
}

.works .works_link::before {
  background: url(../image/arrow.svg) no-repeat right center;
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4%;
  margin: auto;
  z-index: 10;
}

/* service.scss
--------------------------------------------------------------------------------------- */
#service .main_v_2nd {
  background: url(../image/main_v2.jpg) no-repeat center center;
}

.service_list_wrap {
  width: 100%;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 90px;
}

.service_list_wrap::after {
  content: "";
  display: block;
  clear: both;
}

.web_list, .graphic_list {
  width: 50%;
  float: left;
  text-align: center;
  padding-top: 40px;
  position: relative;
}

.web_list .title, .graphic_list .title {
  font-size: 18px;
  position: relative;
  z-index: 1;
  top: 35px;
  text-transform: uppercase;
}

.web_list .title span, .graphic_list .title span {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 60px;
  display: block;
  line-height: 1.2;
}

.web_list {
  border-top: 8px solid #0D366E;
}

.graphic_list {
  border-top: 8px solid #FFCC00;
}

.service_ul {
  width: 100%;
  position: relative;
  z-index: 0;
}

.service_ul::after {
  content: "";
  display: block;
  clear: both;
}

.service_ul li {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}

.service_ul li a {
  display: block;
  padding: 70px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.2s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service_ul li a:hover .img img {
  transform: scale(1.2);
}

.service_ul li .img {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.service_ul li .img img {
  width: 22%;
  -webkit-transition: all 0.4s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.4s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service_ul li .title2 {
  font-size: 13px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
}

.service_ul li .title2 span {
  display: block;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.service_ul li .arrow {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 45px;
  height: 45px;
  padding: 0;
  background: #000;
  border: none;
  cursor: pointer;
}

.service_ul li .arrow::before {
  font-family: 'slick';
  font-weight: bold;
  font-size: 25px;
  line-height: 1;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  content: '→';
}

.web_list li {
  background: #F0F0F0;
}

.web_list li:nth-child(odd) {
  border-left: 2px solid #F0F0F0;
}

.web_list li .title2 {
  color: #0D366E;
}

.graphic_list li {
  background: #F9F9F9;
}

.graphic_list li .title2 {
  color: #FFCC00;
}

/* contact.scss
--------------------------------------------------------------------------------------- */
#contact {
  background: #F9F9F9;
}

#contact .main_v_2nd {
  background: url(../image/main_v3.jpg) no-repeat center center;
}

.contact1 {
  padding: 80px 4%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  line-height: 2.4;
}

.contact1.no_main {
  padding: 150px 0 50px !important;
}

.contact1 .read2_m {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
}

.contact1 .lead {
  margin-bottom: 50px;
}

.contact1 .step_ul {
  text-align: center;
}

.contact1 .step_ul li {
  display: inline;
  color: #0D366E;
  font-size: 18px;
  font-weight: bold;
}

.contact1 .step_ul li:nth-child(n+2)::before {
  content: '';
  display: inline-block;
  width: 180px;
  height: 1px;
  background: #e0e0e0;
  vertical-align: .3em;
  margin: 0 20px 0 17px;
}

.contact1 .step_ul .is-active {
  color: #FFCC00;
}

.contact2 {
  width: 100%;
}

.contact2 .inner {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.contact2 .f_set {
  padding: 28px 30px 0;
}

.contact2 .midashi {
  font-weight: bold;
  margin-bottom: 12px;
  display: block;
  width: 100%;
}

.contact2 .midashi .hissu {
  color: red;
  margin-right: 5px;
}

.contact2 .midashi .en_m {
  margin-left: 10px;
}

.contact2 input {
  height: 62px;
  margin-bottom: 20px;
  padding: 0 18px;
  background: #fff;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  font-size: 16px;
}

.contact2 textarea {
  width: 100%;
  height: 200px;
  padding: 14px 18px;
  border: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 350px;
}

.js-err {
  color: red;
  display: none;
}

.js-mes-err .js-err {
  display: block;
}

.checkbox {
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  width: 40%;
  height: 72px;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.checkbox input, .submit__policy input {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}

label {
  position: relative;
  cursor: pointer;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 72px;
  margin: 0;
  z-index: 2;
  padding: 0px 65px;
  display: block;
  transition: all .5s ease 0s;
  background: #235187;
  color: #fff;
}

label:hover {
  background: #0D366E;
}

label:hover .box_outline {
  border-radius: 30%;
}

.box_outline {
  position: absolute;
  top: 19px;
  left: 20px;
  display: inline-block;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  z-index: 3;
  background: #f6f6f6;
  transition: all .5s ease 0s;
}

.checkbox input:checked + label .box_outline {
  border-radius: 50%;
  background: #FFCC00;
}

.box_outline::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all .5s ease 0s;
}

.checkbox input:checked + label .box_outline::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.checkbox input:checked + label {
  background-color: #0D366E;
}

.contact__form__policy {
  padding: 60px 0;
}

.submit_policy {
  width: 100%;
  height: auto;
}

.submit_policy input:checked + label {
  background: none;
}

.submit_policy a {
  color: blue;
}

.submit_policy label {
  background: none;
  color: #000;
  padding: 0 0px 0 80px;
  line-height: 32px;
  width: 460px;
  margin-right: auto;
  margin-left: auto;
}

.submit_policy .box_outline {
  top: 0;
}

.button_submit {
  display: block;
  width: 40%;
  margin-right: auto;
  margin-left: auto;
  background: #000;
  margin-bottom: 80px;
  padding: 40px 0;
  color: #fff;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0.5;
  -webkit-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.agree.button_submit {
  opacity: 1;
}

.see_more:after {
  color: #000;
}

.buttons {
  padding: 60px 4% 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.buttons::after {
  content: "";
  display: block;
  clear: both;
}

.buttons #mail_form1, .buttons #mail_form2 {
  width: 48%;
}

.buttons #mail_form1 {
  float: left;
}

.buttons #mail_form1 .button_submit {
  background: #0D366E;
  border-color: #0D366E;
}

.buttons #mail_form2 {
  float: right;
}

.buttons .button_submit {
  width: 100%;
}

.confirm .hissu {
  display: none;
}

.confirm .f_set {
  background: #eee;
  padding: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.confirm .f_set .midashi {
  font-size: 14px;
}

.confirm .f_set .f_set_txt2 {
  font-size: 18px;
}

.thanks .lead5 {
  padding: 30px 4% 80px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 2.5;
}

/* pvivacy.scss
--------------------------------------------------------------------------------------- */
#privacy .main_v_2nd {
  display: none;
}

#privacy .container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 4% 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container section {
  padding-top: 55px;
}

.container section .leter-space01 {
  letter-spacing: 0.1em;
}

.container section .policy_title {
  margin-bottom: 15px;
}

.container section h4 {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

.container section ol {
  list-style: disc;
  list-style-position: inside;
}

/* service_web.scss
--------------------------------------------------------------------------------------- */
#web_nav {
  width: 100%;
  padding: 20px 0 20px;
  border-bottom: 2px solid #000;
  margin-bottom: 60px;
}

#web_nav ul::after {
  content: "";
  display: block;
  clear: both;
}

#web_nav ul li {
  float: left;
  width: 16.5%;
  text-align: center;
}

#web_nav ul li:first-child a {
  border-left: none;
}

#web_nav ul li a {
  width: 100%;
  display: inline-block;
  padding: 0px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 2px solid #000;
}

#web_nav ul li a span {
  background-repeat: no-repeat;
  background-size: 20px auto;
  padding-left: 35px;
}

#web_nav ul li #web_link1 span {
  background-image: url("../image/web_nav1.png");
}

#web_nav ul li #web_link2 span {
  background-image: url("../image/web_nav2.png");
}

#web_nav ul li #web_link3 span {
  background-image: url("../image/web_nav3.png");
}

#web_nav ul li #web_link4 span {
  background-image: url("../image/web_nav4.png");
}

#web_nav ul li #web_link5 span {
  background-image: url("../image/web_nav5.png");
}

#web_nav ul li #web_link6 span {
  background-image: url("../image/web_nav6.png");
}

.web_line_up {
  width: 100%;
  max-width: 1500px;
  padding-right: 4%;
  padding-left: 4%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
}

.web_line_up .service_one {
  margin-bottom: 120px;
}

.web_line_up .service_one::after {
  content: "";
  display: block;
  clear: both;
}

.web_line_up .service_left {
  float: left;
  width: 24%;
  max-width: 350px;
  border-top: 7px solid #000;
  padding-top: 30px;
  font-family: "Work Sans", sans-serif;
}

.web_line_up .service_left .no {
  font-size: 50px;
  color: #FFCC00;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.web_line_up .service_left .m {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
}

.web_line_up .service_left span {
  display: block;
  font-size: 16px;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  padding-top: 20px;
}

.web_line_up .service_right {
  float: right;
  width: 72%;
  font-weight: 1100;
  border-top: 4px solid #000;
  padding-top: 50px;
}

.web_line_up .read1 {
  font-size: 26px;
  color: #0D366E;
  letter-spacing: 0.07em;
  margin-bottom: 50px;
}

.web_line_up #sec1 .wrap {
  margin-bottom: 70px;
}

.web_line_up #sec1 .wrap::after {
  content: "";
  display: block;
  clear: both;
}

.web_line_up #sec1 .read2 {
  float: left;
  width: 55%;
  line-height: 2;
}

.web_line_up #sec1 .lineup_img {
  float: right;
  width: 40%;
}

.web_line_up #sec1 .wrap2 {
  width: 100%;
  background: #0D366E;
  padding: 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
}

.web_line_up #sec1 .wrap2::after {
  content: "";
  display: block;
  clear: both;
}

.web_line_up #sec1 .wrap2 .point4 {
  width: 50%;
  float: left;
  padding: 0px 0px 0px 90px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url("../image/sec1_icon1.png");
  background-repeat: no-repeat;
  background-position: left top;
}

.web_line_up #sec1 .wrap2 #point4_1 {
  background-image: url("../image/sec1_icon1.png");
  margin-bottom: 50px;
  padding-right: 50px;
}

.web_line_up #sec1 .wrap2 #point4_2 {
  background-image: url("../image/sec1_icon2.png");
  margin-bottom: 50px;
}

.web_line_up #sec1 .wrap2 #point4_3 {
  background-image: url("../image/sec1_icon3.png");
  padding-right: 50px;
}

.web_line_up #sec1 .wrap2 #point4_4 {
  background-image: url("../image/sec1_icon4.png");
}

.web_line_up #sec1 .wrap2 .m {
  font-size: 17px;
  margin-bottom: 20px;
}

.web_line_up #sec1 .wrap2 .lead4 {
  font-size: 13px;
  line-height: 1.8;
}

.web_line_up #sec2 .wrap::after {
  content: "";
  display: block;
  clear: both;
}

.web_line_up #sec2 .block_l {
  float: left;
  width: 31%;
  max-width: 280px;
}

.web_line_up #sec2 .m3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.web_line_up #sec2 .list li {
  background: url("../image/sec2_list_icon.png") no-repeat left center;
  padding-left: 25px;
  margin-bottom: 10px;
}

.web_line_up #sec2 .block_r {
  float: right;
  width: 66%;
  max-width: 764px;
}

.web_line_up #sec2 .m3_2 {
  background: #000;
  padding: 8px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.web_line_up #sec2 .cms_list {
  width: 100%;
}

.web_line_up #sec2 .cms_list::after {
  content: "";
  display: block;
  clear: both;
}

.web_line_up #sec2 .cms_list li {
  float: left;
  width: 24%;
  height: 74px;
  border: 2px solid #000;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  margin-left: 1%;
  padding: 0px 10px;
}

.web_line_up #sec2 .cms_list li:first-child {
  margin-left: 0;
  width: 25%;
}

.web_line_up #sec2 .cms_list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.web_line_up #sec2 .cms_list li img {
  vertical-align: middle;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
}

.web_line_up #sec4 {
  margin-bottom: 90px;
}

.web_line_up #sec4 .wrap::after {
  content: "";
  display: block;
  clear: both;
}

.web_line_up #sec4 .other_one {
  float: left;
  border: 2px solid #000;
  width: 48%;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.web_line_up #sec4 .other_one:nth-child(even) {
  float: right;
}

.web_line_up #sec4 .other_one .inner {
  padding-left: 80px;
  background: url("../image/other1.png") no-repeat left center;
}

.web_line_up #sec4 .other_one .m3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.web_line_up #sec4 #other2 .inner {
  background: url("../image/other2.png") no-repeat left center;
}

.web_line_up #sec4 #other3 .inner {
  background: url("../image/other3.png") no-repeat left center;
}

.web_line_up #sec5 {
  border-top: 4px solid #000;
  padding-top: 50px;
}

.web_line_up #sec5 .m {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Work Sans", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}

.web_line_up #sec5 span {
  display: block;
  font-size: 16px;
  font-family: "Avenir", "Helvetica Neue", "Helvetica", "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  padding-top: 20px;
}

.web_line_up #sec5 .lead6 {
  text-align: center;
  margin-bottom: 50px;
}

.web_line_up #sec5 .m3 {
  background: #000;
  padding: 8px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}

.web_line_up #sec5 .wrap {
  width: 100%;
  border: 1px solid #000;
  padding: 50px 30px 50px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.web_line_up #sec5 .wrap::after {
  content: "";
  display: block;
  clear: both;
}

.web_line_up #sec5 .partner_list li {
  float: left;
  border-left: 1px solid #000;
  width: 33.33%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px 30px;
}

.web_line_up #sec5 .partner_list li:first-child {
  border-left: none;
}

.web_line_up #sec5 .partner_list .m4 {
  font-size: 18px;
  margin-bottom: 15px;
}

/* recruit.scss
--------------------------------------------------------------------------------------- */
#recruit .main_v_2nd {
  background: url(../image/main_v4.jpg) no-repeat center center;
  height: 100vh;
  background-size: cover;
}

#recruit .main_v_2nd #catch {
  width: 100%;
  position: absolute;
  top: 40%;
  text-align: center;
}

#rec1 {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#rec1 .w1500 {
  max-width: 1500px;
  padding: 180px 0% 50px;
  width: 92%;
  margin: 0 auto 0;
  position: relative;
}

#rec1 .m2 {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: normal;
  position: absolute;
  top: 35px;
  left: 90px;
}

#rec1 .en_rubi {
  display: block;
  font-size: 90px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

#rec1 .blockL {
  background: #FFCC00;
  padding: 160px 0px 60px 90px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 74%;
}

#rec1 .blockL::after {
  content: "";
  display: block;
  clear: both;
}

#rec1 .blockL .inner {
  position: relative;
  width: 65%;
  float: left;
}

#rec1 .blockL .catch {
  font-size: 40px;
  margin-bottom: 35px;
  font-weight: bold;
}

#rec1 .blockL .read {
  line-height: 2;
  margin-bottom: 60px;
}

#rec1 .blockL .see_more {
  width: 70%;
}

#rec1 figure {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 50%;
}

.m2_rec {
  font-size: 60px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.m2_rec span {
  display: block;
  font-family: jp_font;
  font-size: 17px;
}

.w1000_rec {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

#rec2 {
  padding-top: 110px;
  margin-bottom: 40px;
}

.seido_list {
  width: 100%;
}

.seido_list::after {
  content: "";
  display: block;
  clear: both;
}

.seido_list li {
  float: left;
  width: 30%;
  margin-left: 3%;
  background: #eee;
  text-align: center;
  border-top: 7px solid #000;
  padding: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.seido_list .icon {
  width: 88px;
  height: 84px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url("../image/icon1.png");
  margin-right: auto;
  margin-left: auto;
  display: block;
  margin-bottom: 20px;
}

.seido_list .icon2 {
  background-image: url("../image/icon2.png");
}

.seido_list .icon3 {
  background-image: url("../image/icon3.png");
}

.seido_list .icon4 {
  background-image: url("../image/icon4.png");
}

.seido_list .icon5 {
  background-image: url("../image/icon5.png");
}

.seido_list .icon6 {
  background-image: url("../image/icon6.png");
}

.seido_list .m3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.seido_list .m3 span {
  font-size: 13px;
  display: block;
}

.seido_list .read3 {
  line-height: 2.2;
}

#rec3 {
  width: 100%;
  background: url("../image/sec3_bg.jpg") no-repeat center center;
  padding: 60px 0;
}

#rec3 .block {
  max-width: 560px;
  width: 40%;
  background: #fff;
  padding: 50px 80px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  left: 55%;
  letter-spacing: 0.03em;
}

#rec3 .block .m3 {
  font-size: 40px;
  margin-bottom: 30px;
}

#rec3 .block .read4 {
  line-height: 2.2;
}

#rec4 {
  padding: 90px 0;
}

#rec4 .link_h3, #rec4 .link_h3_off {
  padding: 20px 4%;
  font-size: 23px;
  cursor: pointer;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#rec4 .link_h3 span, #rec4 .link_h3_off span {
  text-align: left;
}

#rec4 .link_h3 .em1, #rec4 .link_h3_off .em1 {
  margin-left: 20px;
  font-size: 14px;
}

#rec4 .link_h3_off {
  background: #333;
  cursor: default;
  color: #FFCC00;
}

#rec4 .link_h3_off span {
  opacity: 0.4;
  color: #fff;
}

#rec4 .link_h3_off .em2 {
  color: #FFCC00;
  letter-spacing: 0.04em;
  margin-left: 20px;
  font-size: 16px;
}

#rec4 .arrow_right span::before, #rec4 .arrow_right span::after {
  -webkit-transition: all 250ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 250ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 250ms 0s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#rec4 .active span::before {
  display: none;
}

#rec4 .active span::after {
  transform: rotate(135deg);
}

#rec4 .tb_block {
  margin-bottom: 30px;
}

#rec4 .tb1 {
  width: 100%;
}

#rec4 .tb1 th, #rec4 .tb1 td {
  padding: 15px 20px;
  border-bottom: 6px solid #fff;
}

#rec4 .tb1 th {
  width: 30%;
  background: #eee;
}

#rec4 .tb1 td {
  background: #F9F9F9;
}

#rec5 {
  margin-bottom: 100px;
}

#rec5::after {
  content: "";
  display: block;
  clear: both;
}

#rec5 .flow_1 {
  width: 25%;
  float: left;
  padding: 10px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#rec5 .flow_1 .box {
  width: 100%;
  max-width: 200px;
  border: 2px solid #000;
  text-align: center;
  padding: 20px 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

#rec5 .flow_1:last-of-type .box::before {
  display: none;
}

#rec5 .flow_1 .box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#rec5 .flow_1 .no {
  font-family: "Work Sans", sans-serif;
  color: #FFCC00;
  font-size: 27px;
  margin-bottom: 15px;
}

#rec5 .flow_1 i {
  display: block;
  margin-bottom: 15px;
}

#rec6 {
  margin-bottom: 90px;
}

#rec6 .company3 {
  padding-bottom: 0;
}

#rec7 {
  background: url("../image/sec7_bg.jpg") no-repeat center center;
  padding: 50px 4%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#rec7 .catch {
  text-align: center;
  margin-bottom: 30px;
}

#rec7 .see_more {
  width: 30%;
  margin: 0 auto;
  background: #fff;
  color: #000;
}

#rec7 .see_more::after {
  background: #FFCC00;
}

#rec7 .see_more span {
  font-size: 18px;
}

#rec7 .see_more span::before {
  background: #000;
}

#rec7 .see_more span::after {
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

/* detail.scss
--------------------------------------------------------------------------------------- */
#works_single {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 4%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#works_single .mm {
  font-size: 32px;
  font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

#works_single .url {
  font-size: 16px;
  margin-bottom: 30px;
}

#works_single .url a {
  background: url("../image/out_linkj.svg") no-repeat right center;
  background-size: 14px auto;
  padding-right: 25px;
  transition: all .3s;
}

#works_single .url a:hover {
  color: #2ecc71;
}

#works_single .post_img {
  margin-bottom: 50px;
}

#works_single .post {
  padding-top: 30px;
}

#works_single .post h3 {
  padding-left: 20px;
  border-left: 2px solid #FFCC00;
  font-size: 20px;
  margin-bottom: 25px;
}

#works_single .post p {
  margin-bottom: 20px;
  line-height: 2.2;
}

#works_single .credit {
  width: 100%;
}

#works_single .credit .m {
  font-size: 30px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
}

#works_single .credit .tb10 th, #works_single #works_single .credit .tb10 td {
  padding: 5px;
}

#works_single .credit .tb10 th {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 1500px) {
  body {
    font-size: 15px;
  }
  .main_v .copy_area .en_copy {
    font-size: 92px;
  }
  .main_v .copy_area .jp_copy {
    font-size: 25px;
  }
  .main_v .scroll {
    width: 88px;
    height: 88px;
  }
  .main_v .scroll .inner .arrow::before {
    top: 22px;
  }
  .main_v .scroll .inner .arrow::after {
    top: 32px;
  }
  .main_v .scroll .inner .arrow span {
    font-size: 13px;
    top: auto;
    bottom: 10px;
    line-height: 1;
  }
  .concept .catch {
    font-size: 110px;
  }
  .concept .catch2 {
    font-size: 40px;
  }
  .service_ul li .title2 span {
    font-size: 18px;
  }
  #web_nav ul li {
    font-size: 13px;
  }
  #rec1 .en_rubi {
    font-size: 80px;
  }
  #rec1 .blockL {
    padding: 160px 0px 60px 60px;
    width: 88%;
  }
  #rec1 .blockL .inner {
    width: 70%;
  }
}

@media screen and (max-width: 1280px) {
  body {
    font-size: 15px;
  }
  .concept .catch {
    padding-left: 40px;
  }
  .concept .lead_area {
    padding: 0 20px 0 40px;
  }
  .service .box ul li .m {
    font-size: 16px;
  }
  .event .event_ul li {
    width: 50%;
    margin-bottom: 50px;
  }
  .event .event_ul li .img {
    text-align: center;
  }
  #web_nav ul li {
    width: 33%;
    margin-bottom: 20px;
    font-size: 14px;
  }
  #web_nav ul li:nth-child(4) a {
    border: none;
  }
  #web_nav ul li a {
    padding: 0px 10px;
  }
  .web_line_up .service_one {
    margin-bottom: 80px;
  }
  .web_line_up .service_left {
    width: 20%;
  }
  .web_line_up .service_left .no {
    font-size: 30px;
  }
  .web_line_up .service_left .m {
    font-size: 45px;
  }
  .web_line_up .service_right {
    width: 76%;
  }
  .web_line_up #sec2 .block_l {
    width: 45%;
  }
  .web_line_up #sec2 .block_r {
    width: 58%;
  }
  .web_line_up #sec2 .cms_list li {
    width: 49% !important;
    margin-left: 0 !important;
    margin-bottom: 20px;
  }
  .web_line_up #sec2 .cms_list li:nth-child(even) {
    float: right;
  }
  #rec1 figure {
    left: 55%;
    width: 45%;
    top: 38%;
  }
}

@media screen and (min-width: 1025px) {
  body {
    font-size: 15px;
  }
  .header.scroll .logo, .header.scroll2 .logo {
    padding: 25px 0 0 25px;
  }
  .header.scroll .gnav ul, .header.scroll2 .gnav ul {
    padding: 0 75px 0 0px;
  }
  .header.scroll .gnav ul li:first-child a, .header.scroll2 .gnav ul li:first-child a {
    padding-left: 40px;
  }
  .header.scroll .gnav ul li a, .header.scroll2 .gnav ul li a {
    font-size: 18px;
    height: 75px;
    padding: 0px 25px;
  }
  .header.scroll .switchWrap, .header.scroll2 .switchWrap {
    width: 75px;
    height: 75px;
  }
  .header.scroll .switch__line, .header.scroll2 .switch__line {
    width: 28px;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 15px;
  }
  .see_more {
    padding: 20px 10px;
  }
  .header .logo {
    padding: 25px 0 0 25px;
  }
  .gnav ul {
    padding: 0 75px 0 0px;
  }
  .gnav ul li:nth-child(2) {
    display: none;
  }
  .gnav ul li:first-child a {
    padding-left: 50px;
  }
  .gnav ul li a {
    font-size: 18px;
    height: 75px;
    padding: 0px 25px;
  }
  .gnav .switchWrap {
    width: 75px;
    height: 75px;
  }
  .gnav .switch__line {
    width: 28px;
  }
  #footer .inner .block_R {
    max-width: 475px;
    width: 65%;
  }
  #footer .inner .block_R .tel_block {
    width: 42%;
  }
  #footer .inner .block_R .tel_block .tel .time_span {
    display: none;
  }
  #footer .inner .block_R .contact_link {
    width: 55%;
  }
  .main_v {
    margin-bottom: 60px;
  }
  .main_v .copy_area {
    width: 100%;
    padding: 0 4%;
    position: absolute;
    top: 26%;
    right: auto;
    bottom: auto;
    left: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .main_v .copy_area .en_copy {
    font-size: 78px;
  }
  .main_v .scroll {
    width: 68px;
    height: 68px;
  }
  .main_v .scroll .inner .arrow::before {
    top: 12px;
    height: 26px;
  }
  .main_v .scroll .inner .arrow::after {
    top: 19px;
  }
  .main_v .scroll .inner .arrow span {
    font-size: 12px;
    bottom: 7px;
  }
  .concept {
    margin-bottom: 70px;
  }
  .concept .catch {
    font-size: 90px;
  }
  .concept .catch2 {
    font-size: 30px;
  }
  .concept .lead {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }
  .service {
    margin-bottom: 50px;
  }
  .service #web {
    margin-bottom: 80px;
  }
  .service .box {
    float: none !important;
    width: 100%;
    max-width: 100%;
  }
  .service .box .midashi {
    left: 4%;
  }
  .works {
    padding: 50px 0 80px;
  }
  .works .see_more {
    max-width: 280px;
  }
  li.work {
    width: 50%;
  }
  li.work .img_box {
    margin-bottom: 5px;
  }
  li.work .title {
    font-size: 17px;
  }
  .topics {
    padding: 30px 0 50px;
  }
  .topics .topics_m {
    margin-bottom: 20px;
  }
  .topics .topics_ul {
    margin-bottom: 20px;
  }
  .topics .topics_ul li {
    width: 46%;
    margin-bottom: 20px;
    margin-left: 0;
  }
  .topics .topics_ul li a {
    padding: 10px;
  }
  .topics .topics_ul li .title {
    padding-bottom: 15px;
  }
  .topics .topics_ul li .date {
    padding-top: 10px;
  }
  .topics .see_more {
    max-width: 280px;
  }
  .company1 .table_area .left_block, .company1 .table_area .right_block {
    width: 100%;
    float: none;
  }
  .company3 .inner .img {
    float: none;
    width: 100%;
    margin-bottom: 20px;
  }
  .company3 .inner .lead1 {
    float: none;
    width: 100%;
  }
  .company3 .slick-arrow {
    padding: 15px;
  }
  .company3 .slick-prev::before, .company3 .slick-next::before {
    font-size: 15px;
    width: 15px;
    height: 15px;
  }
  .company3 .slick-prev {
    left: 10px;
  }
  .company3 .slick-next {
    right: 10px;
  }
  #graphic .works_list .work {
    width: 46%;
  }
  .works .works_link {
    font-size: 25px;
  }
  .web_list, .graphic_list {
    width: 100%;
  }
  .web_list {
    margin-bottom: 80px;
  }
  .service_ul li {
    width: 33.33%;
  }
  .service_ul li .title2 span {
    font-size: 16px;
  }
  .web_list li:nth-child(odd) {
    border-left: 2px solid #fff;
  }
  .web_line_up .service_left {
    width: 100%;
    max-width: 100%;
    float: none;
  }
  .web_line_up .service_left .m .sp_none {
    display: none;
  }
  .web_line_up .service_left span {
    display: inline-block;
    padding-top: 0px;
    margin-left: 20px;
  }
  .web_line_up .service_right {
    width: 100%;
    float: none;
    border-top: none;
    padding-top: 35px;
  }
  .web_line_up .read1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .web_line_up #sec1 .read2 {
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
  .web_line_up #sec1 .lineup_img {
    float: none;
    width: 100%;
    text-align: center;
  }
  .web_line_up #sec1 .wrap2 {
    padding: 4%;
  }
  .web_line_up #sec1 .wrap2 .point4 {
    float: none;
    width: 100%;
    margin-bottom: 40px !important;
    padding-right: 0 !important;
  }
  .web_line_up #sec5 .m {
    font-size: 45px;
  }
  #rec1 .w1500 {
    padding: 150px 0% 50px;
  }
  #rec1 .m2 {
    left: 0px;
    width: 100%;
    text-align: center;
  }
  #rec1 .en_rubi {
    font-size: 70px;
  }
  #rec1 .blockL {
    width: 100%;
    padding: 125px 4% 40px;
    text-align: center;
  }
  #rec1 .blockL .inner {
    float: none;
    width: 100%;
  }
  #rec1 .blockL .catch {
    font-size: 30px;
  }
  #rec1 .blockL .see_more {
    margin-right: auto;
    margin-left: auto;
  }
  #rec1 figure {
    display: none;
  }
  .seido_list li {
    width: 46%;
    margin: 0 2% 20px;
  }
  #rec3 .block {
    width: 100%;
    left: 0%;
    margin: 0 auto;
    opacity: 0.8;
    padding: 50px 6%;
  }
  #rec5 .flow_1 .box::before {
    right: -8%;
  }
  #rec7 .see_more {
    width: 92%;
  }
  #rec7 .see_more span {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }
  .header .logo {
    padding: 25px 0 0 15px;
  }
  .gnav ul {
    display: none;
  }
  .close_menu ul li {
    margin-bottom: 18px;
  }
  .close_menu a {
    font-size: 24px;
  }
  #footer .inner {
    padding: 35px 20px;
  }
  #footer .inner .block_L {
    float: none;
    width: 100%;
    text-align: center;
  }
  #footer .inner .block_L .logo img {
    width: 180px;
  }
  #footer .inner .block_R {
    float: none;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding-top: 10px;
  }
  #footer .inner .block_R .tel_block {
    max-width: 100%;
    float: none;
    width: 100%;
  }
  #footer .inner .block_R .tel_block .read_1 {
    display: none;
  }
  #footer .inner .block_R .tel_block .tel {
    margin-bottom: 20px;
  }
  #footer .inner .block_R .contact_link {
    float: none;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .main_v {
    background: url(../image/main_v_sp.jpg) no-repeat center center;
    background-size: cover;
  }
  .main_v .copy_area .en_copy {
    font-size: 58px;
  }
  .main_v .copy_area .jp_copy {
    font-size: 20px;
  }
  .concept .inner {
    height: auto;
  }
  .concept .catch {
    font-size: 45px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 4%;
    margin-bottom: 25px;
    text-align: center;
  }
  .concept .lead_area {
    width: 100%;
    padding: 0 4%;
    text-align: center;
    margin-bottom: 40px;
  }
  .concept .catch2 {
    margin-bottom: 20px;
  }
  .concept .lead {
    text-align: justify;
  }
  .concept .img_area {
    background: none;
    height: auto;
    width: 100%;
    position: relative;
  }
  .concept .img_area img {
    display: block;
  }
  .service .box {
    padding-top: 50px;
  }
  .service .box .midashi {
    top: -32px;
  }
  .service .box .midashi .en {
    font-size: 40px;
  }
  .service .box .midashi .jp {
    display: none;
  }
  .service .box ul {
    margin-bottom: 30px;
  }
  .service .box ul li .m {
    font-size: 14px;
  }
  .works .m {
    font-size: 50px;
  }
  .works .read {
    margin-bottom: 30px;
    padding: 0 4%;
  }
  li.work {
    width: 100%;
    margin-bottom: 30px;
  }
  li.work .tag {
    padding: 6px 20px;
  }
  li.work .title {
    font-size: 15px;
  }
  li.work .naiyou {
    font-size: 12px;
  }
  .recruit {
    height: auto;
  }
  .recruit .inner {
    height: auto;
  }
  .recruit .inner2 {
    background: url(../image/sec5_sp.jpg) no-repeat center center;
    background-size: auto auto;
    background-size: cover;
    position: relative;
    padding-top: 56.25%;
    height: auto;
  }
  .recruit .inner2 .recruit_m {
    font-size: 50px;
  }
  .recruit .inner2 .read {
    padding: 0 20px;
    text-align: left;
  }
  .recruit .inner2 .see_more {
    max-width: 280px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
  }
  .event {
    padding: 50px 0 50px;
  }
  .event .event_m {
    margin-bottom: 20px;
  }
  .event .event_ul {
    margin-bottom: 0px;
  }
  .event .event_ul li {
    width: 100%;
    margin-bottom: 50px;
  }
  .event .see_more {
    max-width: 280px;
  }
  .topics .topics_ul li {
    width: 96%;
  }
  .main_v_2nd {
    height: 300px;
  }
  .main_v_2nd .title_area {
    top: 35%;
    left: 20px;
  }
  .main_v_2nd .en_title {
    font-size: 60px;
  }
  .main_v_2nd .en_title .small {
    display: none;
  }
  .main_v_2nd .jp_title {
    font-size: 22px;
  }
  .no_main {
    padding: 100px 0 50px !important;
  }
  .no_main .m {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .no_main .m2_jp {
    font-size: 16px;
  }
  #company .main_v_2nd {
    background: url(http://localhost:52198/mobile/img/company/main_v_sp.jpg) no-repeat right center;
    background-size: cover;
  }
  .company1 {
    padding: 30px 10px 0px;
  }
  .company1 .title2 {
    font-size: 40px;
  }
  .company1 .table_area .tb1 {
    border-spacing: 8px 0px;
  }
  .company1 .table_area .tb1 th, .company1 .table_area .tb1 td {
    padding: 20px 0 10px;
  }
  .company2 {
    padding: 30px 10px 20px;
  }
  .company2 .lead1 {
    text-align: left;
    padding: 20px 15px 0;
    line-height: 1.8;
  }
  .company3 .inner h3 {
    font-size: 22px;
    padding: 0 4%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px;
  }
  .company3 .autoplay {
    margin-bottom: 30px !important;
  }
  #graphic .works_list .work {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .pager {
    padding: 30px 10px;
    margin-bottom: 30px;
  }
  .pager__buttons__button {
    font-size: 16px;
  }
  .pager__list {
    position: static;
    margin-top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .pager__list a {
    width: 35px;
    height: 35px;
    font-size: 15px;
    line-height: 35px;
  }
  .works .works_link {
    padding: 15px 15px;
    font-size: 18px;
  }
  .works .works_link span.en {
    display: none;
  }
  .works .works_link::before {
    width: 20px;
    height: 20px;
  }
  #service .main_v_2nd {
    background: url(../image/main_v_sp1.jpg) no-repeat center center;
    background-size: cover;
  }
  .web_list .title, .graphic_list .title {
    top: 20px;
  }
  .web_list .title span, .graphic_list .title span {
    font-size: 40px;
  }
  .service_ul li a {
    padding: 28px 5px;
  }
  .service_ul li .title2 {
    line-height: 1.7;
  }
  .service_ul li .arrow {
    width: 32px;
    height: 32px;
  }
  .service_ul li .arrow::before {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
  #contact .main_v_2nd {
    background: url(../image/main_v_sp2.jpg) no-repeat center center;
    background-size: cover;
  }
  .contact1 {
    padding: 30px 4%;
  }
  .contact1.no_main {
    padding: 80px 0 40px !important;
  }
  .contact1 .lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .contact1 .step_ul li:nth-child(n+2)::before {
    width: 3px;
    margin: 0 4%;
  }
  .contact2 .f_set {
    padding: 28px 4% 0;
  }
  .contact2 textarea {
    height: 150px;
  }
  .checkbox {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    height: 48px;
  }
  label {
    padding: 0px 50px;
    line-height: 48px;
  }
  .box_outline {
    top: 12px;
    width: 22px;
    height: 22px;
  }
  .contact__form__policy {
    padding: 20px 0;
  }
  .submit_policy label {
    width: 100%;
    max-width: 460px;
    padding: 0 0px 0 70px;
    font-size: 13px;
  }
  .button_submit {
    width: 82%;
    padding: 20px 0;
  }
  .confirm .f_set {
    padding: 4%;
  }
  #privacy .container {
    padding: 40px 4% 0;
  }
  .container section {
    padding-top: 35px;
  }
  #web_nav ul li {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }
  #web_nav ul li a {
    border-left: none;
  }
  #web_nav ul li a {
    padding: 0px 10px 10px;
    border-bottom: 1px dotted #ccc;
  }
  #web_nav ul li a span {
    padding-left: 25px;
  }
  .web_line_up .service_one {
    margin-bottom: 40px;
  }
  .web_line_up .service_left .no {
    display: inline-block;
    font-size: 25px;
    margin-right: 10px;
  }
  .web_line_up .service_left .m {
    font-size: 35px;
    display: inline-block;
  }
  .web_line_up .service_left span {
    display: none;
  }
  .web_line_up .read1 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .web_line_up #sec1 .read2 {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .web_line_up #sec1 .wrap2 .point4 {
    padding: 0px 0px 0px 60px;
    background-size: 40px auto;
  }
  .web_line_up #sec2 .block_l {
    width: 100% !important;
    float: none;
    margin-bottom: 40px;
  }
  .web_line_up #sec2 .list li {
    font-size: 14px;
  }
  .web_line_up #sec2 .block_r {
    width: 100% !important;
    float: none;
  }
  .web_line_up #sec4 {
    margin-bottom: 60px;
  }
  .web_line_up #sec4 .other_one {
    float: none !important;
    width: 100%;
    padding: 4%;
  }
  .web_line_up #sec4 .other_one:last-of-type {
    margin-bottom: 0px !important;
  }
  .web_line_up #sec4 .other_one .inner {
    padding-left: 50px;
    background-size: 30px auto !important;
  }
  .web_line_up #sec5 .m {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .web_line_up #sec5 .lead6 {
    margin-bottom: 20px;
  }
  .web_line_up #sec5 .wrap {
    padding: 30px 3% 30px;
  }
  .web_line_up #sec5 .partner_list li {
    width: 100%;
    float: none;
    border-left: none !important;
    padding: 0 0;
    margin-bottom: 40px;
  }
  .web_line_up #sec5 .partner_list li:last-of-type {
    margin-bottom: 0;
  }
  #recruit .main_v_2nd {
    background: url(../image/main_v_sp3.jpg) no-repeat right center;
    background-size: cover;
  }
  #recruit .main_v_2nd #catch {
    padding: 0 4%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #rec1 .w1500 {
    padding: 130px 0% 50px;
  }
  #rec1 .m2 {
    font-size: 18px;
  }
  #rec1 .en_rubi {
    font-size: 38px;
    padding-top: 20px;
  }
  #rec1 .blockL {
    padding: 75px 4% 40px;
  }
  #rec1 .blockL .catch {
    font-size: 24px;
    margin-bottom: 20px;
  }
  #rec1 .blockL .read {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 30px;
  }
  .m2_rec {
    font-size: 45px;
  }
  #rec2 {
    padding-top: 20px;
  }
  .seido_list li {
    width: 48%;
    margin: 0 1% 20px;
    padding: 4%;
  }
  .seido_list .icon {
    width: 44px;
    height: 42px;
  }
  .seido_list .m3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  #rec3 .block .m3 {
    font-size: 25px;
  }
  #rec4 {
    padding: 50px 0;
  }
  #rec4 .link_h3, #rec4 .link_h3_off {
    font-size: 18px;
  }
  #rec4 .link_h3 .em1, #rec4 .link_h3_off .em1 {
    display: none;
  }
  #rec4 .link_h3_off .em2 {
    font-size: 14px;
    margin-left: 0px;
    display: block;
  }
  #rec5 {
    margin-bottom: 60px;
  }
  #rec5 .flow_1 {
    width: 50%;
    padding: 10px 5px;
  }
  #rec5 .flow_1 .box {
    max-width: 100%;
    padding: 12px 5px;
  }
  #rec5 .flow_1 .box::before {
    display: none;
  }
  #rec7 {
    background: url("../image/sec7_bg_sp.jpg") no-repeat left center;
  }
  #rec7 .catch {
    width: 80%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #works_single .mm {
    font-size: 22px;
  }
}

@media screen and (max-width: 640px) {
  body {
    font-size: 15px;
  }
  .header .logo {
    width: 60%;
  }
  #footer .copyright .footer__copy {
    width: 100%;
  }
  .company1 .title2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  .company1 .table_area .tb1 th, .company1 .table_area .tb1 td {
    display: block;
    width: 100% !important;
    max-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .company1 .table_area .tb1 th {
    border: none;
    padding: 20px 0 0px;
  }
  .company1 .table_area .tb1 td {
    border-bottom: 1px dotted #ddd;
    padding: 10px 0 10px;
  }
  .company3 .inner h3 {
    text-align: left;
    font-size: 18px;
  }
  .company3 .inner .lead1 {
    text-align: left;
    line-height: 2;
  }
  .service_ul li {
    width: 50%;
  }
  .service_ul li .title2 {
    height: 74px;
    overflow: hidden;
  }
}

@media screen and (max-width: 640px) and (orientation: portrait) {
  body {
    font-size: 15px;
  }
  .main_v .copy_area .en_copy {
    font-size: 38px;
    line-height: 1.8;
    margin-bottom: 5px;
  }
  .main_v .copy_area .jp_copy {
    padding-top: 20px;
    line-height: 1.8;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1024px) {
  .header.scroll .gnav ul li:first-child a, .header.scroll2 .gnav ul li:first-child a {
    padding-left: 50px;
  }
}

/*# sourceMappingURL=map/style.css.map */

.logo img{
    max-width:60%;
    max-height:100px;
}
.bottomSlider {
    display: block !important;
}
}
.bottomSlider li a {
    display: block;
    width: 100%;
    height: 100%;
}
.bottomSlider {
    display: none;
    width: 92%;
    position: fixed;
    bottom: 6px;
    left: 50%;
    margin-left: -46%;
    background: #ff0000;
    height: 42px;
    border-radius: 21px;
    z-index: 300;
}
.bottomSlider li {
    width: 50%;
    float: left;
    height: 41px;
}
.bottomSlider li.phone_icon a {
    background: url(../image/phone_icon.png) no-repeat center;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-image: url("../image/phone_icon.png");
    background-size: auto auto;
    background-size: auto 25px;
    border-right: 1px solid #fff;
        background-size:20px 20px;
    background-repeat: no-repeat;
    background-position: 20px center;
    font-size: 14px;
    color: #fff;
    line-height: 45px;
    padding-left: 60px;
    display:block;
}
.bottomSlider li.speak_icon a {
    background: url(http://localhost:52198/mobile/img/speak_icon.png) no-repeat center;
    background-position-x: center;
    background-position-y: center;
    background-size:20px 20px;
    background-repeat: no-repeat;
    background-image: url("http://localhost:52198/mobile/img/speak_icon.png");
    background-size: auto auto;
    background-size: auto 25px;
    background-repeat: no-repeat;
    background-position: 20px center;
    font-size: 14px;
    color: #fff;
    line-height: 45px;
    padding-left: 60px;
    display:block;
}
.h50{
    height:50px;
}
.sec6{
    margin:0 1rem;
}
.sec6 h3{
    font-size: 2rem;
text-transform: uppercase;
text-align: center;
margin-bottom: 20px;
margin-top:30px;
}
.sec6 p{
    text-align:center;
    margin-bottom:30px;
}
.contact-form-wrapper label{
    float: left;
width: 125px;
color: #333;
line-height: 26px;
width:100%;
font-size:13px;
padding-left:0;
background:none;
}
.contact-form-wrapper input[type="text"], .contact-form-wrapper textarea, .contact-form-wrapper select {
    font-size: 1.2em;
    padding: 10px;

}
.contact-form-wrapper label, .contact-form-wrapper input[type="text"], .contact-form-wrapper textarea {
    width: 100%;
}
.contact-form-wrapper input[type="text"] {
    font-size: 1em;
    border: 0;
    width: 100%;
    border: 0;
    background: #fff;
    margin: 0 ;
    padding: 15px;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 3px solid #e0dedb;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-appearance: none;
}
.contact-form-wrapper input[type="text"], .contact-form-wrapper textarea, .project-nav a, .about-agency p strong, .blog-topic p strong, .blog-page #more_posts, .landing-slogan .landing-slogan-wrapper, .contact-form-wrapper input[type="submit"], .contact ul li .icon span {
    font-weight: 400;
    outline: none;
        outline-width: medium;
    outline-width: 0;
}
.full-center .see_more{
    margin-top:20px;
    margin-bottom:35px
}