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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

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

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
  .wow {
    visibility: visible !important;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #323232;
  font-family: Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.ft-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #323232;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

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

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.container {
  overflow: hidden;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 751px) {
  body {
    position: static;
    top: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }

  .container {
    min-width: 1200px;
  }

  .wrapper {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 750px) {
  .md {
    display: none !important;
  }

  html {
    font-size: 12px;
  }

  body {
    font-size: 12px;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* PARTS
 * ----------------------------------------------- */
header {
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}
header .logo img {
  width: 100%;
  display: block;
}

@media print, (min-width: 751px) {
  header {
    padding: 30px 0 20px;
  }
  header .wrapper {
    *zoom: 1;
  }
  header .wrapper:after {
    content: "";
    display: table;
    clear: both;
  }
  header .logo {
    float: left;
    width: 290px;
  }
  header .logo img {
    width: 100%;
    display: block;
  }
  header .navigation {
    float: right;
    margin-top: 6px;
    display: block !important;
  }
  header .navigation-list > li {
    display: inline-block;
    vertical-align: middle;
    margin-left: 40px;
  }
  header .navigation-list > li a {
    color: #000;
    display: block;
  }
  header .navigation-list > li a > img {
    height: 20px;
    display: block;
  }
}
@media only screen and (max-width: 750px) {
  header {
    padding: 11px 0 8px;
  }
  header .logo {
    width: 110px;
  }
  header .navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 2200;
  }
  header .navigation-inner {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  header .navigation-list {
    padding: 50px 20px 40px;
  }
  header .navigation-list > li {
    padding: 25px 15px;
    border-bottom: 1px solid #000;
  }
  header .navigation-list > li a {
    display: block;
  }
  header .navigation-list > li a > img {
    height: 14px;
    display: block;
  }
  header .btn-menu {
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    top: 2px;
    right: 23px;
    z-index: 6000;
  }
  header .btn-menu > span {
    width: 23px;
    height: 3px;
    background: #3CA096;
    display: block;
    position: absolute;
    left: 0;
    margin-left: 3px;
    border-radius: 10px;
  }
  header .btn-menu > span:nth-child(1) {
    -webkit-animation: menu-bar01 0.75s forwards;
    animation: menu-bar01 0.75s forwards;
    top: 8px;
  }
  header .btn-menu > span:nth-child(2) {
    transition: all 0.25s 0.25s;
    opacity: 1;
    top: 14px;
  }
  header .btn-menu > span:nth-child(3) {
    -webkit-animation: menu-bar02 0.75s forwards;
    animation: menu-bar02 0.75s forwards;
    top: 20px;
  }

  .btn-menu.is-active span:nth-child(1) {
    -webkit-animation: active-menu-bar01 0.75s forwards;
    animation: active-menu-bar01 0.75s forwards;
  }
  .btn-menu.is-active span:nth-child(2) {
    opacity: 0;
  }
  .btn-menu.is-active span:nth-child(3) {
    -webkit-animation: active-menu-bar03 0.75s forwards;
    animation: active-menu-bar03 0.75s forwards;
  }
}
@-webkit-keyframes menu-bar01 {
  0% {
    -moz-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
  50% {
    -moz-transform: translateY(6px) rotate(0);
    -ms-transform: translateY(6px) rotate(0);
    -webkit-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    -moz-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
  50% {
    -moz-transform: translateY(6px) rotate(0);
    -ms-transform: translateY(6px) rotate(0);
    -webkit-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    -moz-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    -moz-transform: translateY(-6px) rotate(0);
    -ms-transform: translateY(-6px) rotate(0);
    -webkit-transform: translateY(-6px) rotate(0);
    transform: translateY(-6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    -moz-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    -moz-transform: translateY(-6px) rotate(0);
    -ms-transform: translateY(-6px) rotate(0);
    -webkit-transform: translateY(-6px) rotate(0);
    transform: translateY(-6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(6px) rotate(0);
    -ms-transform: translateY(6px) rotate(0);
    -webkit-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(6px) rotate(0);
    -ms-transform: translateY(6px) rotate(0);
    -webkit-transform: translateY(6px) rotate(0);
    transform: translateY(6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(6px) rotate(45deg);
    -ms-transform: translateY(6px) rotate(45deg);
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
  }
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(-6px) rotate(0);
    -ms-transform: translateY(-6px) rotate(0);
    -webkit-transform: translateY(-6px) rotate(0);
    transform: translateY(-6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(-6px) rotate(0);
    -ms-transform: translateY(-6px) rotate(0);
    -webkit-transform: translateY(-6px) rotate(0);
    transform: translateY(-6px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer {
  position: relative;
}
footer::before {
  position: absolute;
  content: "";
  background: #3CA096;
  width: 100%;
  top: 50%;
  left: 0;
}
footer .footer-contact {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
footer .img-employees img {
  width: 100%;
  display: block;
}
footer .contact-content {
  position: relative;
}
footer .footer-logo {
  margin: 0 auto;
}
footer .footer-logo img {
  width: 100%;
  display: block;
}
footer .address {
  text-align: center;
}

.copyright {
  font-size: 10px;
  color: #fff;
  text-align: center;
  line-height: 1.75;
  letter-spacing: normal;
  background: #3CA096;
}

.btn-top {
  position: fixed;
  cursor: pointer;
}
.btn-top img {
  width: 100%;
  display: block;
}

@media print, (min-width: 751px) {
  footer {
    padding-top: 105px;
    letter-spacing: 0.09em;
  }
  footer::before {
    height: 150px;
    margin-top: -111px;
  }
  footer .img-employees {
    width: 428px;
    margin-top: -10px;
  }
  footer .img-employees > img {
    width: 428px;
    display: block;
  }
  footer .tel {
    width: 512px;
    display: block;
    margin-bottom: 20px;
  }
  footer .working-hours {
    margin-bottom: 13px;
  }
  footer .working-hours > img {
    width: 121px;
  }
  footer .comment > img {
    height: 16px;
  }
  footer .contact-content {
    width: 573px;
    padding-left: 33px;
    margin-top: -20px;
  }
  footer .footer-logo {
    width: 360px;
  }
  footer .address {
    margin-top: 17px;
  }
  footer .address > img {
    width: 216px;
    margin: 0 auto;
  }
  footer .footer-nav {
    text-align: center;
    margin-top: 20px;
  }
  footer .footer-nav a {
    display: block;
  }
  footer .footer-nav > li {
    display: inline-block;
    vertical-align: baseline;
    padding: 0 19px 0 17px;
  }
  footer .footer-nav > li:not(:last-child) {
    border-right: 1px solid #000;
  }
  footer .footer-nav > li img {
    height: 15px;
  }

  .copyright {
    font-size: 10px;
    margin-top: 20px;
  }

  .btn-top {
    width: 60px;
    height: 60px;
    bottom: 58px;
    right: 50%;
    margin-right: -490px;
  }
}
@media print, (min-width: 750px) and (max-width: 1170px) {
  .btn-top {
    right: 0;
    margin-right: 0;
  }
}
@media only screen and (max-width: 750px) {
  footer {
    padding-top: 25px;
  }
  footer::before {
    height: 108px;
    top: 35px;
  }
  footer img {
    display: block;
  }
  footer .img-employees {
    width: 163px;
    margin-top: -10px;
  }
  footer .tel {
    display: block;
    margin-bottom: 10px;
  }
  footer .tel > img {
    width: 180px;
  }
  footer .working-hours {
    margin-bottom: 4px;
  }
  footer .working-hours > img {
    width: 60px;
  }
  footer .comment > img {
    width: 136px;
    display: block;
  }
  footer .contact-content {
    width: 204px;
    padding-left: 10px;
  }
  footer .footer-logo {
    width: 186px;
    margin: 15px auto 12px;
  }
  footer .address > img {
    width: 108px;
    margin: 0 auto 12px;
  }

  .copyright {
    font-size: 10px;
    margin-top: 20px;
  }

  .btn-top {
    width: 30px;
    height: 30px;
    bottom: 25px;
    right: 15px;
  }
}
@media only screen and (max-width: 374px) {
  footer .img-employees {
    width: 120px;
  }
  footer .contact-content {
    width: 170px;
  }
  footer:before {
    height: 90px;
    top: 30px;
  }
  footer .tel > img {
    width: 140px;
  }
}
.btn-primary {
  display: block;
}

@media print, (min-width: 751px) {
  .btn-primary {
    width: 332px;
  }
  .btn-primary > img {
    width: 100%;
    display: block;
  }
  .btn-email {
    position: absolute;
    bottom: -7px;
    right: -110px;
  }
  .btn-email > img {
    width: 205px !important;
    display: block;
  }
  .btn-ourwork {
    margin: 28px auto 10px;
  }
  .btn-recruit {
    margin-top: 57px;
    float: right;
  }
}
@media only screen and (max-width: 750px) {
  .btn-primary {
    display: block;
    margin: 15px auto 0;
    width: 170px;
  }
  .btn-primary > img {
    width: 170px;
    height: 24px;
    display: block;
  }
  .btn-email {
    position: relative;
    z-index: 2;
    width: 166px;
    margin: 0 auto;
  }
  .btn-email > img {
    width: 100%;
  }
}
/*----SECTION KEYVISUAL------ */
.section-common-keyvisual {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.section-common-keyvisual:before {
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
  background: url(../img/common/bg_filter.png) no-repeat center center;
  background-size: 100% 100%;
}

@media print, (min-width: 751px) {
  .section-common-keyvisual:before {
    height: 380px;
    bottom: -240px;
  }
}
@media only screen and (max-width: 750px) {
  .section-common-keyvisual {
    margin-top: -37px;
  }
  .section-common-keyvisual:before {
    height: 100px;
    bottom: -62px;
  }
}
table {
  line-height: 1.3;
}
table th {
  background: #A0D2CD;
  text-align: center;
  border-bottom: 1px solid #fff;
}
table th .order {
  margin-top: 13px;
}
table td {
  background: #F0F0F0;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
table th,
table td {
  vertical-align: baseline;
}

img {
  display: block;
}

.sec-content {
  font-size: 15px;
  line-height: 1.75;
}

@media only screen and (max-width: 750px) {
  .sec-content {
    font-size: 10px;
  }
}
/* COMMON ANIMATION
 * ----------------------------------------------- */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up;
}

.fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}

/* PAGES
 * ----------------------------------------------- */
/* SECTION KEYVISUAL
 * ----------------------------------------------- */
.page-top {
  background-image: url(../img/top/background_top.jpg);
}
.page-top .img-top {
  position: absolute;
}
.page-top .img-top > img {
  width: 100%;
}
.page-top .sec-title img {
  width: 100%;
  display: block;
}

@media print, (min-width: 751px) {
  .page-top {
    padding: 92px 0 360px;
  }
  .page-top .img-top {
    width: 525px;
    bottom: -193px;
    right: 148px;
  }
  .page-top .sec-title {
    width: 496px;
    margin-top: 64px;
  }
}
@media only screen and (max-width: 750px) {
  .page-top {
    padding: 60px 0 93px;
  }
  .page-top .img-top {
    width: 175px;
    bottom: -53px;
    right: 0;
  }
  .page-top .sec-title {
    width: 201px;
    margin-top: 37px;
  }
}
.section-top-event {
  position: relative;
  z-index: 1;
}

@media print, (min-width: 751px) {
  .section-top-event {
    padding: 118px 0 120px;
  }
  .section-top-event img {
    width: 726px;
    display: block;
  }
}
@media only screen and (max-width: 750px) {
  .section-top-event {
    padding: 27px 0 23px;
  }
  .section-top-event img {
    width: 304px;
    display: block;
  }
}
.section-top-about {
  background: #E2F1F0;
}
.section-top-about .row {
  display: -webkit-flex;
  display: flex;
}
.section-top-about .about-content {
  background: #fff;
}
.section-top-about .about-img img {
  width: 100%;
  display: block;
}
.section-top-about .icn-logo {
  position: relative;
}
.section-top-about .icn-logo::before {
  content: "";
  position: absolute;
  background: url(../img/common/logo_letter_large.png) no-repeat top center;
  background-size: auto 100%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media print, (min-width: 751px) {
  .section-top-about {
    background: #E2F1F0;
  }
  .section-top-about .about-img {
    width: 664px;
    margin-right: -160px;
  }
  .section-top-about .about-img img {
    width: 100%;
    display: block;
  }
  .section-top-about .about-content {
    width: 480px;
    margin: 9px 10px;
  }
  .section-top-about .about-content > img {
    width: 424px;
    display: block;
    margin: 25px auto 0;
  }
  .section-top-about .position .about-img {
    order: 1;
    margin-left: -160px;
    margin-right: 0;
  }
  .section-top-about .position .about-content {
    order: 2;
  }
  .section-top-about .position .about-content > img {
    margin: 39px auto 0;
  }
  .section-top-about .icn-logo::before {
    width: 161px;
    height: 66px;
    top: -37px;
    left: 50%;
  }
}
@media only screen and (max-width: 750px) {
  .section-top-about {
    padding: 10px 0;
  }
  .section-top-about .wrapper {
    padding-left: 5px;
    padding-right: 5px;
  }
  .section-top-about .row {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section-top-about .about-content {
    width: 100%;
    padding: 20px 15px;
  }
  .section-top-about .about-content > img {
    width: 246px;
    display: block;
    margin: 0 auto;
  }
  .section-top-about .about-img {
    width: 50%;
    padding: 3px 3px;
  }
  .section-top-about .icn-logo::before {
    width: 57px;
    height: 25px;
    top: -17px;
    left: 50%;
  }
}
.section-top-recruit .recruit-title {
  background: #3CA096;
  border-radius: 50%;
  position: relative;
}
.section-top-recruit .recruit-title img {
  margin: 0 auto;
  display: block;
}
.section-top-recruit .recruit-title:before {
  content: "";
  background: url(../img/common/icn_logo_white.png) no-repeat center center;
  background-size: auto 100%;
  position: absolute;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section-top-recruit .recruit-content p {
  line-height: 1.75;
}

@media print, (min-width: 751px) {
  .section-top-recruit {
    padding: 120px 0 236px;
    position: relative;
  }
  .section-top-recruit::after {
    position: absolute;
    content: "";
    background: url(../img/top/img_recruit.png) no-repeat center center;
    background-size: auto 100%;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 908px;
    height: 328px;
    bottom: 0px;
  }
  .section-top-recruit .recruit-container {
    display: -webkit-flex;
    display: flex;
  }
  .section-top-recruit .recruit-intro {
    width: 425px;
  }
  .section-top-recruit .recruit-title {
    width: 402px;
    height: 402px;
  }
  .section-top-recruit .recruit-title img {
    width: 330px;
    padding-top: 115px;
  }
  .section-top-recruit .recruit-title:before {
    width: 127px;
    height: 60px;
    top: 40px;
  }
  .section-top-recruit .recruit-content {
    padding: 20px 0 0 15px;
    width: 575px;
  }
  .section-top-recruit .recruit-content p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 750px) {
  .section-top-recruit {
    padding: 15px 0 20px;
  }
  .section-top-recruit .recruit-intro {
    position: relative;
    padding-bottom: 100px;
  }
  .section-top-recruit .recruit-intro::after {
    position: absolute;
    content: "";
    background: url(../img/top/img_recruit.png) no-repeat center center;
    background-size: auto 100%;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    height: 121px;
    bottom: 0;
  }
  .section-top-recruit .recruit-title {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .section-top-recruit .recruit-title img {
    width: 124px;
    padding-top: 50px;
  }
  .section-top-recruit .recruit-title:before {
    width: 52px;
    height: 24px;
    top: 10px;
  }
  .section-top-recruit .recruit-content {
    padding: 10px 0 0;
  }
  .section-top-recruit .recruit-content p {
    font-size: 10px;
  }
}
.section-top-news {
  position: relative;
}
.section-top-news::before {
  position: absolute;
  content: "";
  background: #FFFFE6;
  width: 100%;
  left: 0;
  z-index: -1;
}
.section-top-news .news-content {
  display: table;
}
.section-top-news .date,
.section-top-news .content {
  display: table-cell;
  font-weight: bold;
  line-height: 1.75;
  vertical-align: top;
}

@media print, (min-width: 751px) {
  .section-top-news {
    padding: 45px 0 45px;
  }
  .section-top-news::before {
    height: 275px;
    top: -45px;
  }
  .section-top-news .news-container {
    display: -webkit-flex;
    display: flex;
  }
  .section-top-news .sec-title {
    width: 228px;
    padding: 9px 0 80px;
    border-right: 1px solid #000;
  }
  .section-top-news .sec-title img {
    width: 174px;
    display: block;
  }
  .section-top-news .news-content {
    padding: 5px 0 0 25px;
  }
  .section-top-news .date,
  .section-top-news .content {
    font-size: 15px;
  }
  .section-top-news .date {
    width: 115px;
  }
}
@media only screen and (max-width: 750px) {
  .section-top-news {
    padding: 10px 0 60px;
  }
  .section-top-news::before {
    height: 118px;
    top: 0px;
  }
  .section-top-news .sec-title {
    width: 89px;
    margin: 0 auto 10px;
  }
  .section-top-news .sec-title img {
    width: 89px;
    display: block;
  }
  .section-top-news .date,
  .section-top-news .content {
    font-size: 10px;
  }
  .section-top-news .date {
    width: 75px;
  }
}
.page-about {
  background-image: url(../img/about/background_about.jpg);
  position: relative;
}
.page-about .sec-title {
  position: absolute;
}
.page-about .sec-title > img {
  width: 100%;
  display: block;
}

@media print, (min-width: 751px) {
  .page-about {
    padding: 236px 0 360px;
  }
  .page-about .sec-title {
    position: absolute;
    bottom: -62px;
    right: 160px;
    width: 410px;
  }

  .sec-content {
    font-size: 15px;
    line-height: 1.75;
  }
}
@media only screen and (max-width: 750px) {
  .page-about {
    padding: 130px 0 100px;
  }
  .page-about .sec-title {
    bottom: -18px;
    right: 9px;
    width: 150px;
  }
}
.section-about-achievement {
  position: relative;
  z-index: 1;
}
.section-about-achievement .row {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media print, (min-width: 751px) {
  .section-about-achievement {
    padding: 177px 0 77px;
  }
  .section-about-achievement .sec-title {
    width: 416px;
    margin-bottom: 20px;
  }
  .section-about-achievement .sec-title > img {
    width: 100%;
    display: block;
  }
  .section-about-achievement .sec-content {
    margin-bottom: 53px;
  }
  .section-about-achievement .achievement-content {
    display: -webkit-flex;
    display: flex;
  }
  .section-about-achievement .row {
    width: 50%;
    padding: 19px 15px 0 0;
  }
  .section-about-achievement .row .sec-content {
    margin-bottom: 16px;
  }
  .section-about-achievement .sub-title {
    margin-bottom: 7px;
  }
  .section-about-achievement .sub-title > img {
    height: 44px;
    display: block;
  }
  .section-about-achievement .technology {
    border-right: 1px solid #000;
  }
  .section-about-achievement .technology .row-img > img {
    width: 130px;
    display: block;
  }
  .section-about-achievement .technology .row-content {
    padding: 0 34px 0 30px;
  }
  .section-about-achievement .adaptability {
    padding-left: 62px;
  }
  .section-about-achievement .adaptability .row-img > img {
    width: 112px;
    display: block;
  }
  .section-about-achievement .adaptability .row-content {
    padding: 0 0 0 30px;
  }
}
@media only screen and (max-width: 750px) {
  .section-about-achievement {
    padding: 50px 0 5px;
  }
  .section-about-achievement .sec-title {
    width: 155px;
    margin-bottom: 15px;
  }
  .section-about-achievement .sec-title > img {
    width: 100%;
    display: block;
  }
  .section-about-achievement .sec-content {
    font-size: 10px;
  }
  .section-about-achievement .row {
    padding: 20px 15px 20px 0;
  }
  .section-about-achievement .row-img > img {
    width: 60px;
    display: block;
  }
  .section-about-achievement .row-content {
    padding-left: 20px;
  }
  .section-about-achievement .sub-title {
    margin-bottom: 5px;
  }
  .section-about-achievement .sub-title > img {
    height: 22px;
    display: block;
  }
  .section-about-achievement .technology {
    border-bottom: 1px solid #000;
  }
}
.section-about-message {
  background: #E2F1F0;
}

@media print, (min-width: 751px) {
  .section-about-message {
    padding: 65px 0 63px;
  }
  .section-about-message .message-container {
    display: -webkit-flex;
    display: flex;
  }
  .section-about-message .img-content {
    width: 350px;
  }
  .section-about-message .img-content > img {
    width: 350px;
  }
  .section-about-message .message-content {
    width: 630px;
    padding-left: 80px;
  }
  .section-about-message .sec-title {
    width: 328px;
    margin-bottom: 15px;
  }
  .section-about-message .sec-title > img {
    width: 100%;
  }
  .section-about-message .sec-content {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 15px;
  }
  .section-about-message .director {
    float: right;
    margin: 37px 6px 0 0;
  }
  .section-about-message .director > img {
    height: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .section-about-message {
    padding: 20px 0;
  }
  .section-about-message .img-content {
    width: 132px;
    margin: 0 auto 10px;
  }
  .section-about-message .img-content > img {
    width: 132px;
    display: block;
  }
  .section-about-message .sec-title {
    width: 164px;
    margin: 0 auto 15px;
  }
  .section-about-message .sec-title > img {
    height: 35px;
    display: block;
  }
  .section-about-message .sec-content {
    font-size: 10px;
    line-height: 1.75;
    margin-bottom: 15px;
  }
  .section-about-message .eng {
    height: 36px;
  }
  .section-about-message .japan {
    height: 15px;
    padding-left: 15px;
  }
  .section-about-message .director > img {
    height: 12px;
    margin: 15px auto 0;
    display: block;
  }
}
.section-about-information .sec-title img {
  display: block;
}
.section-about-information .map {
  background: #A0D2CD;
}
.section-about-information .map iframe {
  width: 100%;
}

@media print, (min-width: 751px) {
  .section-about-information {
    padding: 61px 0 27px;
  }
  .section-about-information .eng {
    width: 584px;
    margin: 0 auto 15px;
  }
  .section-about-information .japan {
    width: 102px;
    margin: 0 auto 32px;
  }
  .section-about-information .information-content {
    display: -webkit-flex;
    display: flex;
  }
  .section-about-information table {
    width: 50%;
    font-size: 16px;
    margin-bottom: 85px;
  }
  .section-about-information table th {
    width: 145px;
    padding: 5px 0 4px;
  }
  .section-about-information table td {
    padding: 5px 0 4px 24px;
  }
  .section-about-information table td span {
    padding-left: 13px;
  }
  .section-about-information .left {
    margin-right: 5px;
  }
  .section-about-information .right {
    margin-left: 5px;
  }
  .section-about-information .different {
    padding-left: 8px;
  }
  .section-about-information .map iframe {
    padding: 0 100px;
    height: 500px;
    display: block;
  }
}
@media only screen and (max-width: 750px) {
  .section-about-information {
    padding: 30px 0 0;
  }
  .section-about-information .eng {
    width: 290px;
    margin: 0 auto 15px;
  }
  .section-about-information .japan {
    width: 53px;
    margin: 0 auto 15px;
  }
  .section-about-information table {
    width: 100%;
    font-size: 10px;
    line-height: 1.3;
  }
  .section-about-information table th {
    width: 90px;
    padding: 3px 0;
  }
  .section-about-information table td {
    padding: 3px 0 3px 15px;
  }
  .section-about-information table td span {
    padding-left: 13px;
  }
  .section-about-information .sub-data {
    padding-left: 23px;
  }
  .section-about-information .map {
    padding: 0 15px;
  }
}
.page-recruit {
  background-image: url(../img/recruit/background_recruit.jpg);
}
.page-recruit .sec-title {
  position: absolute;
}
.page-recruit .sec-title > img {
  width: 100%;
}

@media print, (min-width: 751px) {
  .page-recruit {
    padding: 236px 0 360px;
  }
  .page-recruit .sec-title {
    position: absolute;
    bottom: -40px;
    right: 165px;
    width: 144px;
  }
}
@media only screen and (max-width: 1600px) {
  .page-recruit {
    padding: 32% 0 100px;
    background-position: center 0;
  }
}
@media only screen and (max-width: 750px) {
  .page-recruit {
    padding: 130px 0 100px;
    background-position: center 0;
  }
  .page-recruit .sec-title {
    bottom: -8px;
    right: 5px;
    width: 52px;
  }
}
@media only screen and (max-width: 600px) {
  .page-recruit {
    background-position: center 25px;
  }
}
.section-recruit-interview {
  position: relative;
  z-index: 1;
}

@media print, (min-width: 751px) {
  .section-recruit-interview {
    padding: 120px 0 0;
  }
  .section-recruit-interview .sec-title {
    margin-bottom: 35px;
  }
  .section-recruit-interview .sec-title > img {
    width: 452px;
    display: block;
  }
  .section-recruit-interview .interview-content {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 130px;
  }
  .section-recruit-interview .content {
    width: 336px;
    padding-top: 35px;
  }
  .section-recruit-interview .content > img {
    width: 286px;
    display: block;
  }
  .section-recruit-interview .interview-img {
    width: 644px;
  }
  .section-recruit-interview .interview-img > img {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 750px) {
  .section-recruit-interview {
    padding: 25px 0 15px;
  }
  .section-recruit-interview .sec-title {
    margin-bottom: 35px;
  }
  .section-recruit-interview .sec-title > img {
    width: 168px;
  }
  .section-recruit-interview .content > img {
    width: 347px;
    display: block;
    margin: 0 auto;
  }
  .section-recruit-interview .interview-img {
    width: 634px;
  }
  .section-recruit-interview .interview-img > img {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 374px) {
  .section-recruit-interview .content > img {
    width: 290px;
  }
}
.section-recruit-senior {
  background: #FFFFE6;
  position: relative;
}
.section-recruit-senior::after {
  content: "";
  position: absolute;
  background: url(../img/recruit/bg_interview.png) no-repeat center center;
  background-size: 100% 100%;
  width: 100%;
  left: 0;
}

@media print, (min-width: 751px) {
  .section-recruit-senior {
    padding: 105px 0 100px;
  }
  .section-recruit-senior::after {
    height: 302px;
    bottom: -208px;
  }
  .section-recruit-senior .senior-content {
    display: -webkit-flex;
    display: flex;
    margin: 0 -30px;
    position: relative;
    z-index: 2;
  }
  .section-recruit-senior .senior-item {
    width: 33.33333%;
    padding: 1px 30px 0;
    border-left: 1px solid #000;
  }
  .section-recruit-senior .senior-item:nth-child(3n+1) {
    border-left: none;
  }
  .section-recruit-senior .senior-item .senior-img {
    width: 280px;
    margin: -315px auto 25px;
  }
  .section-recruit-senior .senior-item .senior-img > img {
    width: 100%;
  }
  .section-recruit-senior .senior-name {
    margin-bottom: 7px;
  }
  .section-recruit-senior .senior-name > img {
    max-width: 100%;
    height: 59px;
    margin: 0 auto;
    display: block;
  }
  .section-recruit-senior .content {
    padding: 23px 0 10px;
  }
}
@media only screen and (max-width: 750px) {
  .section-recruit-senior {
    padding: 20px 0 50px;
  }
  .section-recruit-senior::after {
    height: 90px;
    bottom: -20px;
  }
  .section-recruit-senior .senior-item {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 20px;
  }
  .section-recruit-senior .senior-img {
    width: 30%;
  }
  .section-recruit-senior .senior-img > img {
    width: 100%;
  }
  .section-recruit-senior .content {
    width: 70%;
    padding-left: 20px;
  }
  .section-recruit-senior .senior-name {
    width: auto;
    margin-bottom: 8px;
  }
  .section-recruit-senior .senior-name > img {
    width: auto;
    height: 15px;
  }
}
.section-recruit-step {
  position: relative;
}

@media print, (min-width: 751px) {
  .section-recruit-step {
    padding: 52px 0 130px;
  }
  .section-recruit-step .sec-title > img {
    height: 75px;
    display: block;
    margin: 20px auto 87px;
  }
  .section-recruit-step .step-content {
    display: -webkit-flex;
    display: flex;
  }
  .section-recruit-step .row > img {
    height: 104px;
    display: block;
  }
  .section-recruit-step .row:not(.last-child) {
    border-right: 1px solid #000;
  }
  .section-recruit-step .row:not(.middle-child) {
    width: 315px;
  }
  .section-recruit-step .middle-child {
    width: 350px;
  }
  .section-recruit-step .middle-child > img {
    margin: 0 auto;
  }
  .section-recruit-step .last-child > img {
    float: right;
  }
}
@media only screen and (max-width: 750px) {
  .section-recruit-step {
    margin-top: -30px;
  }
  .section-recruit-step .sec-title > img {
    height: 38px;
    margin: 0 auto 40px;
  }
  .section-recruit-step .row > img {
    height: 48px;
    margin: 0 auto 30px;
  }
}
/*---RECRUIT REQUIREMENT---- */
.section-recruit-requirement .sec-title {
  background: #3CA096;
}
.section-recruit-requirement .sec-title > img {
  margin: 0 auto;
  display: block;
}
.section-recruit-requirement table {
  width: 100%;
  line-height: 1.75;
}
.section-recruit-requirement table td {
  border-left: 4px solid #fff;
}

@media print, (min-width: 751px) {
  .section-recruit-requirement {
    padding-bottom: 30px;
  }
  .section-recruit-requirement .sec-title {
    padding: 12px 0 10px;
    margin-bottom: 45px;
  }
  .section-recruit-requirement .sec-title > img {
    width: 170px;
  }
  .section-recruit-requirement table {
    font-size: 18px;
  }
  .section-recruit-requirement table th {
    width: 228px;
    padding: 5px 0;
  }
  .section-recruit-requirement table td {
    padding: 5px 0 5px 27px;
  }
}
@media only screen and (max-width: 750px) {
  .section-recruit-requirement .sec-title {
    padding: 4px 0;
    margin-bottom: 10px;
  }
  .section-recruit-requirement .sec-title > img {
    width: 64px;
  }
  .section-recruit-requirement table {
    font-size: 10px;
  }
  .section-recruit-requirement table th {
    width: 75px;
    padding: 4px 0;
  }
  .section-recruit-requirement table td {
    padding: 4px 0 4px 15px;
  }
}

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