/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.clear {
  clear: both;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}

/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/*===== COMMON =====*/
html, body {
  width: 100%;
  min-height: 100%;
}

body {
  background: #fff;
  font-size: 14px;
  font-family: "Noto Sans Japanese", sans-serif;
  -webkit-text-size-adjust: none;
  line-height: 1.444;
  color: #231F20;
}

.ft_serif {
  font-family: "Hiragino Mincho Pro", Times, "Times New Roman", Georgia, serif;
}

a:link,
a:visited,
a:active {
  color: #231F20;
  text-decoration: none;
}

.trans {
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
}

.trans:hover {
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -webkit-opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  -ms-opacity: 0.8;
  -o-opacity: 0.8;
  opacity: 0.8;
}

.wrapper {
  width: 100%;
  min-width: 320px;
}

.container {
  max-width: 1310px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.hidden {
  display: none;
  visibility: hidden;
}

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

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

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

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

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

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

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

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

.list-inline > li {
  display: inline-block;
}

.mb0 {
  margin-bottom: 0 !important;
}

.full-width {
  width: 100%;
}

.main-content {
  padding-top: 5%;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/*===== RESPONSIVE =====*/
.sm, .sm1 {
  display: none !important;
}

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

  .sm {
    display: block !important;
  }

  img {
    height: auto;
  }

  img.inline {
    display: inline;
    width: auto;
  }

  .trans,
  .trans:hover {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
  }

  .container {
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*
 * Keyvisual
 */
.key-visual {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
}

.top-slider .slide-wrap .description,
.key-visual .inner-kv .description {
  position: absolute;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  /*&:not(:target) {
    top: 26%\9;
  }*/
  margin-top: -2%;
  color: #fff;
  letter-spacing: 4px;
  text-align: right;
  z-index: 99;
}
@media all and (-ms-high-contrast: none) {
  .top-slider .slide-wrap .description:not(:target),
  .key-visual .inner-kv .description:not(:target) {
    top: 50%;
  }
}
.top-slider .slide-wrap .description p,
.key-visual .inner-kv .description p {
  font-size: 25px;
  line-height: 1.6;
  font-weight: 600;
}
.top-slider .slide-wrap .description .btn,
.key-visual .inner-kv .description .btn {
  font-size: 16px;
  border-color: #fff;
  padding: 2px 30px;
  margin-top: 10%;
}
.top-slider .slide-wrap .description .btn.hidden-pc,
.key-visual .inner-kv .description .btn.hidden-pc {
  display: none;
}
.top-slider .slide-wrap .factory,
.key-visual .inner-kv .factory {
  position: absolute;
  left: 15px;
  bottom: 8px;
  width: 34%;
}

.key-visual .inner-kv .description {
  right: 3%;
}
.key-visual .inner-kv .description a.btn {
  display: none;
}

.page-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.page-banner .inner-kv {
  position: relative;
  height: 100%;
}
.page-banner .inner-kv .wood-maruyama {
  display: block;
  position: absolute;
  width: 14%;
  bottom: 20px;
  right: 3%;
}
.page-banner .inner-kv .maruyama {
  display: none;
}
.page-banner .inner-kv .nav-control {
  display: none;
}
.page-banner.page-banner-top {
  position: static;
}

@media screen and (max-width: 1200px) {
  .top-slider .slide-wrap .description p,
  .key-visual .inner-kv .description p {
    font-size: 22px;
  }
}
@media screen and (max-width: 980px) {
  .top-slider .slide-wrap .description p,
  .key-visual .inner-kv .description p {
    font-size: 20px;
  }
}
@media screen and (max-width: 820px) {
  .top-slider .slide-wrap .description p,
  .key-visual .inner-kv .description p {
    font-size: 18px;
  }
}
@media screen and (max-width: 750px) {
  .top-slider .slide-wrap .description p,
  .key-visual .inner-kv .description p {
    font-size: 16px;
  }
}
@media screen and (max-width: 728px) {
  .top-slider .slide-wrap .description p,
  .key-visual .inner-kv .description p {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 680px) {
  .page-banner .inner-kv .wood-maruyama {
    right: auto;
    left: 10px;
    bottom: 10px;
    width: 30%;
  }
  .page-banner .inner-kv .maruyama {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: #fff;
    width: 56%;
  }
  .page-banner .inner-kv .description {
    width: 100%;
  }
  .page-banner .inner-kv .description a.btn {
    display: inline-block !important;
    color: #fff;
    margin-top: 15px;
    font-size: 11px;
    padding: 2px 20px;
  }
  .page-banner .inner-kv .description .nav-control {
    display: block;
    margin-top: 10px;
    position: relative;
  }
  .page-banner .inner-kv .description .nav-control .arrow {
    display: inline-block;
    width: 50px;
    height: 32px;
    background: #fff url(../img/common/arrow.png) no-repeat center center;
    -webkit-background-size: 75% auto;
    -khtml-background-size: 75% auto;
    -moz-background-size: 75% auto;
    -ms-background-size: 75% auto;
    -o-background-size: 75% auto;
    background-size: 75% auto;
    -webkit-border-radius: 4px;
    -khtml-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    outline: none;
  }
  .page-banner .inner-kv .description .nav-control .arrow.open {
    background-image: url(../img/common/ico_time.png);
  }
  .page-banner .inner-kv .description .nav-control .menu-kv {
    position: absolute;
    top: 100%;
    right: 5px;
    width: 70%;
    z-index: 9999;
    display: none;
  }
  .page-banner .inner-kv .description .nav-control .menu-kv li {
    margin-bottom: 1px;
    display: block;
  }
  .page-banner .inner-kv .description .nav-control .menu-kv li a {
    display: block;
    color: #fff;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding: 10px 20px;
    background: #231F20;
  }
  .page-banner.page-banner-top .wood-maruyama {
    width: 37%;
  }
  .page-banner.page-banner-top .maruyama {
    bottom: 30px;
  }

  .top-slider .slide-wrap .description p,
  .key-visual .inner-kv .description p {
    font-size: 14px;
    font-weight: normal;
  }
  .top-slider .slide-wrap .description p strong,
  .key-visual .inner-kv .description p strong {
    display: block;
    font-size: 150%;
    font-weight: 600;
    margin-top: 4px;
  }
  .top-slider .slide-wrap .factory,
  .key-visual .inner-kv .factory {
    display: none;
  }

  .key-visual .inner-kv .description {
    margin-top: 4%;
  }
}
/*
 * Title
 */
.sec-title {
  text-transform: uppercase;
  font-size: 2.375em;
  letter-spacing: 4px;
}

@media screen and (max-width: 680px) {
  .sec-title {
    font-size: 22px;
  }
}
/*
 * BUTTONS STYLE 
 */
.btn {
  display: inline-block;
  line-height: normal;
  padding: 5px 15px;
  border: 2px solid transparent;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  text-align: center;
  white-space: nowrap;
}
.btn.btn-viewmore {
  letter-spacing: 2px;
  border-color: #231F20;
}

@media (max-width: 680px) {
  .btn {
    border-width: 1px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
  }
}
/*
 * Breadcrumb
 */
.breadcrumb {
  margin: 2% 0 0;
}
.breadcrumb li {
  line-height: 1;
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #231F20;
}
.breadcrumb li:last-child {
  border-right: 0;
}

@media (max-width: 890px) {
  .breadcrumb {
    font-size: 12px;
  }
}
/*
 * section main top
 */
.sec-main-top {
  font-size: 16px;
  text-align: center;
  padding-bottom: 3%;
}
.sec-main-top h2 {
  font-weight: 600;
  font-size: 1.688em;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 2em;
}
.sec-main-top .txt {
  font-size: 1.125em;
  line-height: 2.5;
  margin: 2.5em 0;
}
.sec-main-top .btn {
  border-color: #231F20;
  font-size: 1.438em;
  font-weight: 600;
  padding-left: 2.85em;
  padding-right: 2.85em;
  margin: 0 0.3em;
  letter-spacing: 2px;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  min-width: 330px;
}

@media (max-width: 1170px) {
  .sec-main-top {
    font-size: 15px;
  }
}
@media (max-width: 980px) {
  .sec-main-top {
    font-size: 14px;
  }
  .sec-main-top h2 {
    font-size: 1.4em;
  }
  .sec-main-top .txt {
    font-size: 1em;
    line-height: 2;
  }
}
@media (max-width: 890px) {
  .sec-main-top {
    font-size: 13px;
  }
}
@media (max-width: 750px) {
  .sec-main-top {
    font-size: 12px;
  }
}
@media (max-width: 680px) {
  .sec-main-top h2 {
    font-size: 14px;
  }
  .sec-main-top .btn {
    display: block;
    font-size: 13px;
    padding: 6px 10px;
    margin: 5px 0;
    min-width: 0;
  }
  .sec-main-top .txt {
    padding: 15px 0;
    text-align: left;
  }
}
/*
 * Box gray has thumb 
 */
.box-line.box-has-thumb {
  background: #E6E6E6;
  margin-top: 5%;
  font-size: 18px;
}
.box-line.box-has-thumb .box-img {
  width: 57.1%;
}
.box-line.box-has-thumb .box-img.lg {
  width: 61.8%;
}
.box-line.box-has-thumb .box-info {
  width: 42.9%;
  position: relative;
}
.box-line.box-has-thumb .box-info .inner {
  padding: 13% 10.5% 0;
}
.box-line.box-has-thumb .box-info.sml {
  width: 38.2%;
}
.box-line.box-has-thumb .box-info h3 {
  font-size: 1.389em;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.3em;
}
.box-line.box-has-thumb .box-info .txt {
  line-height: 1.6;
}
.box-line.box-has-thumb .box-info .links {
  position: absolute;
  right: 10.5%;
  bottom: 15%;
}

.permalink-has-ico {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  padding-right: 2em;
  padding-top: 1em;
  background-repeat: no-repeat;
  background-position: right bottom;
  -webkit-background-size: 31px auto;
  background-size: 31px auto;
}
.permalink-has-ico.ico-building {
  background-image: url(../img/common/ico_building@2x.png);
}
.permalink-has-ico.ico-pointer {
  background-image: url(../img/common/ico_pointer.png);
}

@media (max-width: 1170px) {
  .box-line.box-has-thumb {
    font-size: 17px;
  }
  .box-line.box-has-thumb .box-info .inner {
    padding: 8% 8% 0;
  }
  .box-line.box-has-thumb .box-info .links {
    bottom: 8%;
    right: 8%;
  }

  .permalink-has-ico {
    font-size: 18px;
  }
}
@media (max-width: 980px) {
  .box-line.box-has-thumb {
    font-size: 16px;
  }

  .permalink-has-ico {
    font-size: 16px;
    -webkit-background-size: 25px auto;
    background-size: 25px auto;
  }
}
@media (max-width: 920px) {
  .box-line.box-has-thumb {
    font-size: 15px;
  }

  .permalink-has-ico {
    font-size: 15px;
  }
}
@media (max-width: 860px) {
  .box-line.box-has-thumb {
    font-size: 14px;
  }

  .permalink-has-ico {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .box-line.box-has-thumb {
    font-size: 13px;
  }

  .permalink-has-ico {
    font-size: 13px;
  }
}
@media (max-width: 750px) {
  .box-line.box-has-thumb {
    font-size: 12px;
  }
  .box-line.box-has-thumb .box-info h3 {
    font-size: 1.2em;
    margin-bottom: 1em;
  }

  .permalink-has-ico {
    font-size: 12px;
    -webkit-background-size: 20px auto;
    background-size: 20px auto;
  }
}
@media (max-width: 680px) {
  .box-line.box-has-thumb {
    padding: 10px;
  }
  .box-line.box-has-thumb .box-info,
  .box-line.box-has-thumb .box-img {
    float: none;
    width: 100% !important;
  }
  .box-line.box-has-thumb .box-info .inner {
    padding: 15px 10px;
  }
  .box-line.box-has-thumb .box-info .inner .links {
    position: static;
    text-align: right;
  }

  .permalink-has-icon {
    -webkit-background-size: 18px auto;
    background-size: 18px auto;
  }
}
/*
 * section intro
 */
.sec-intro {
  color: #808285;
  text-align: center;
  margin-bottom: 1em;
}

/*
 * Part company tsukechi
 */
.part-company {
  margin-top: 6%;
  font-size: 18px;
  margin-bottom: 5%;
}
.part-company .location {
  margin-bottom: 4%;
}
.part-company .location .company-profile {
  text-align: right;
  float: left;
  width: 41.5%;
  margin-right: 4%;
}
.part-company .location .company-map {
  float: left;
  width: 40%;
  position: relative;
}
.part-company .location .company-map .map-large {
  display: block;
  position: absolute;
  bottom: 0;
  right: 100%;
  white-space: nowrap;
  margin-right: 8%;
  font-size: 0.778em;
  color: #808285;
  text-decoration: underline;
}
.part-company .location h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 1.5em;
}
.part-company .location .address p {
  margin-bottom: 5px;
}
.part-company .location .google-map {
  width: 100%;
  height: 310px;
}

@media (max-width: 1170px) {
  .part-company {
    font-size: 17px;
  }
  .part-company .location .google-map {
    height: 290px;
  }
}
@media (max-width: 980px) {
  .part-company {
    font-size: 16px;
  }
  .part-company .location .google-map {
    height: 270px;
  }
}
@media (max-width: 890px) {
  .part-company {
    font-size: 15px;
  }
  .part-company .location .google-map {
    height: 250px;
  }
}
@media (max-width: 820px) {
  .part-company {
    font-size: 14px;
  }
  .part-company .location .google-map {
    height: 230px;
  }
}
@media (max-width: 750px) {
  .part-company {
    font-size: 13px;
  }
  .part-company h3 {
    margin-bottom: 1.2em;
  }
  .part-company .location .google-map {
    height: 210px;
  }
}
@media (max-width: 680px) {
  .part-company {
    margin-bottom: 40px;
  }
  .part-company .location .company-profile,
  .part-company .location .company-map {
    float: none;
    text-align: center;
    width: auto;
  }
  .part-company .location .company-profile {
    margin: 0 0 20px;
  }
  .part-company .location .company-profile h3 {
    margin-bottom: 15px;
  }
  .part-company .company-banner {
    display: none;
  }
}
.section-staff .row-item {
  margin-bottom: 7%;
  font-size: 19px;
}
.section-staff .row-item .staff-info {
  float: left;
}
.section-staff .row-item .staff-info h2 small {
  display: block;
  font-size: 1.158em;
  letter-spacing: 1px;
  color: #379248;
  margin-bottom: 0.3em;
}
.section-staff .row-item .staff-info .slogan {
  font-size: 1.579em;
  font-weight: 600;
}
.section-staff .row-item .staff-info .about-staff .name {
  border-bottom: 2px solid;
  padding-bottom: 0.1em;
}
.section-staff .row-item .staff-info .about-staff .name .posi {
  font-size: 0.84em;
  margin-right: 1.5em;
}
.section-staff .row-item .staff-info .about-staff .name .kana {
  display: inline-block;
  font-size: 0.895em;
  margin-left: 1.5em;
}
.section-staff .row-item .staff-info .about-staff .name .kanji {
  font-size: 1.316em;
  font-weight: 600;
}
.section-staff .row-item .staff-info .about-staff .exp {
  font-size: 0.842em;
  margin-top: 0.5em;
  font-weight: 500;
}
.section-staff .row-item .staff-info .career-obj {
  line-height: 1.6;
}
.section-staff .row-item .staff-info .career-obj dt {
  font-weight: 600;
}
.section-staff .row-item .staff-info .career-obj dd {
  padding-left: 1.5em;
  position: relative;
}
.section-staff .row-item .staff-info .career-obj dd:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 100%;
  border-top: 2px solid #231F20;
}
.section-staff .row-item .staff-info .career-obj dd > span {
  display: block;
  background: #fff;
  padding-left: 0.5em;
  position: relative;
  z-index: 99;
}
.section-staff .row-item .img-detail {
  float: right;
  width: 47.5%;
  position: relative;
}
.section-staff .row-item .img-detail .career-goal {
  border: 3px solid #231F20;
  -webkit-border-radius: 8px;
  -khtml-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  right: 1em;
  bottom: 1em;
  background: #fff;
  width: 77%;
}
.section-staff .row-item .img-detail .career-goal .joy {
  display: block;
  position: absolute;
  right: 5px;
  top: -3.5em;
  width: 22%;
}
.section-staff .row-item .img-detail .career-goal .head {
  text-align: right;
  padding: 2% 23% 1% 0;
  font-weight: 500;
  border-bottom: 1px solid #231F20;
}
.section-staff .row-item .img-detail .career-goal .ct {
  font-weight: 600;
  padding: 2% 5% 4%;
}
.section-staff.staff-iwamura .staff-info {
  width: 48%;
}
.section-staff.staff-iwamura .staff-info .thumbnail {
  width: 64%;
  margin-bottom: 2em;
}
.section-staff.staff-iwamura .staff-info h2 {
  min-height: 8em;
}
.section-staff.staff-iwamura .staff-info .about-staff {
  text-align: right;
  margin-bottom: 2.3em;
}
.section-staff.staff-ochiai .row-item {
  position: relative;
  background-repeat: no-repeat;
  -webkit-background-size: 21.97% auto;
  background-size: 21.97% auto;
}
.section-staff.staff-ochiai .row-item.ochiai-staff01 {
  background-image: url(../img/ochiai/thumb_staff01x05.png);
  background-position: right bottom;
}
.section-staff.staff-ochiai .row-item.ochiai-staff02 {
  background-image: url(../img/ochiai/thumb_staff02x05.png);
  background-position: 0 bottom;
}
.section-staff.staff-ochiai .row-item.ochiai-staff03 {
  background-image: url(../img/ochiai/thumb_staff03x05.png);
  background-position: right bottom;
}
.section-staff.staff-ochiai .staff-info {
  width: 52.5%;
}
.section-staff.staff-ochiai .staff-info .career-obj {
  position: absolute;
  bottom: 0;
  width: 38%;
}
.section-staff.staff-ochiai .staff-info .slogan {
  margin-top: 2em;
}
.section-staff.staff-ochiai .staff-info.fr {
  float: right;
}
.section-staff.staff-ochiai .staff-info.fr h2,
.section-staff.staff-ochiai .staff-info.fr .about-staff p,
.section-staff.staff-ochiai .staff-info.fr .slogan {
  padding-left: 6%;
}
.section-staff.staff-ochiai .staff-info.fr .career-obj {
  left: 47.5%;
  padding-left: 4%;
}
.section-staff.staff-ochiai .staff-info.fl h2,
.section-staff.staff-ochiai .staff-info.fl .about-staff p,
.section-staff.staff-ochiai .staff-info.fl .slogan {
  padding-right: 6%;
}
.section-staff.staff-ochiai .staff-info.fl .slogan {
  text-align: right;
}
.section-staff.staff-ochiai .staff-info.fl .career-obj {
  right: 47.5%;
  padding-right: 3%;
}
.section-staff.staff-ochiai .img-detail.fr {
  float: right;
}

@media (max-width: 1200px) {
  .section-staff .row-item {
    font-size: 18px;
  }
}
@media (max-width: 1170px) {
  .section-staff .row-item {
    font-size: 17px;
  }
}
@media (max-width: 1024px) {
  .section-staff .row-item {
    font-size: 16px;
  }
  .section-staff .row-item .staff-info {
    width: 50%;
  }
  .section-staff .row-item .staff-info .slogan {
    font-size: 1.4em;
  }
  .section-staff .row-item .img-detail .career-goal {
    width: 85%;
    border-width: 2px;
  }
  .section-staff.staff-iwamura .staff-info .thumbnail {
    margin-bottom: 1.5em;
  }
  .section-staff.staff-iwamura .staff-info h2 {
    min-height: 0;
    margin-bottom: 1.5em;
  }
  .section-staff.staff-iwamura .staff-info .about-staff {
    margin-bottom: 1.5em;
  }
  .section-staff.staff-ochiai .row-item .staff-info.fr .career-obj {
    left: 50%;
    width: 37%;
  }
}
@media (max-width: 960px) {
  .section-staff .row-item {
    font-size: 15px;
  }
}
@media (max-width: 890px) {
  .section-staff .row-item {
    font-size: 14px;
  }
}
@media (max-width: 820px) {
  .section-staff .row-item {
    font-size: 13px;
  }
}
@media (max-width: 750px) {
  .section-staff .row-item {
    font-size: 12px;
  }
}
@media (max-width: 680px) {
  .section-staff .row-item .wrap {
    position: relative;
  }
  .section-staff .row-item .staff-info {
    margin-bottom: 20px;
    width: 48%;
  }
  .section-staff .row-item .staff-info .thumbnail,
  .section-staff .row-item .staff-info .career-obj {
    display: none;
  }
  .section-staff .row-item .staff-info .slogan {
    font-size: 15px;
  }
  .section-staff .row-item .staff-info .about-staff {
    text-align: left !important;
    position: absolute;
    width: inherit;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
  }
  .section-staff .row-item .staff-info .about-staff .name .kanji {
    display: block;
  }
  .section-staff .row-item .staff-info .about-staff .name .kana {
    margin-left: 0;
    font-weight: 600;
    color: #A7A9AC;
  }
  .section-staff .row-item .staff-info .about-staff .exp {
    font-size: 12px;
    font-weight: normal;
  }
  .section-staff .row-item .staff-info .about-staff .exp span {
    display: block;
  }
  .section-staff .row-item .img-detail {
    width: 49%;
  }
  .section-staff .row-item .img-detail .career-goal {
    display: none;
  }
  .section-staff .row-item .summary-info {
    background: #dcddde;
    padding: 20px;
    margin-top: 20px;
    line-height: 1.8;
  }
  .section-staff .row-item .summary-info dt {
    font-weight: 600;
  }
  .section-staff .row-item .summary-info dd:before {
    content: "-";
  }
  .section-staff.staff-ochiai .row-item {
    background: none !important;
  }
  .section-staff.staff-ochiai .row-item .staff-info .career-obj {
    position: static;
    width: 100% !important;
  }
  .section-staff.staff-ochiai .row-item .staff-info .slogan {
    margin: 15px 0;
    text-align: left !important;
  }
  .section-staff.staff-ochiai .row-item .staff-info .about-staff {
    width: inherit;
  }
  .section-staff.staff-ochiai .row-item .staff-info h2,
  .section-staff.staff-ochiai .row-item .staff-info .about-staff p,
  .section-staff.staff-ochiai .row-item .staff-info .slogan,
  .section-staff.staff-ochiai .row-item .staff-info .career-obj {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .section-staff.staff-ochiai .row-item .img-detail > img {
    width: 100%;
  }
  .section-staff.staff-ochiai .row-item .staff-info.fr {
    padding-left: 10px;
  }
  .section-staff.staff-ochiai .row-item .staff-info.fr .about-staff {
    padding-left: 10px;
    left: auto;
    right: 0;
  }
}
@media (max-width: 380px) {
  .section-staff.tsukechi-list-staff .row-item .staff-info .slogan,
  .section-staff.staff-ochiai .row-item .staff-info .slogan {
    font-size: 13px;
  }
  .section-staff.tsukechi-list-staff .row-item .staff-info .about-staff .posi,
  .section-staff.tsukechi-list-staff .row-item .staff-info .about-staff .jp,
  .section-staff.staff-ochiai .row-item .staff-info .about-staff .posi,
  .section-staff.staff-ochiai .row-item .staff-info .about-staff .jp {
    display: none;
  }
  .section-staff.tsukechi-list-staff .row-item .staff-info .about-staff .name .kanji,
  .section-staff.staff-ochiai .row-item .staff-info .about-staff .name .kanji {
    font-size: 13px;
  }
  .section-staff.tsukechi-list-staff .row-item .staff-info .about-staff .exp,
  .section-staff.staff-ochiai .row-item .staff-info .about-staff .exp {
    font-size: 11px;
  }

  .section-staff.staff-ochiai .row-item .staff-info .slogan {
    margin: 0;
    letter-spacing: -0.07em;
  }
}
/* ========= PAGE STAFF IWABISHI =========== */
.section-iwabishi-staff {
  padding-bottom: 80px;
}
.section-iwabishi-staff .row-ttl {
  color: #31357B;
  font-weight: bold;
  text-align: center;
  font-size: 30px;
  border-bottom: 3px solid #31357B;
  padding-bottom: 18px;
  letter-spacing: 0.2em;
}
.section-iwabishi-staff .row + .row {
  margin-top: 286px;
}
.section-iwabishi-staff .list-staff {
  overflow: hidden;
  margin-top: 130px;
  font-size: 14px;
}
.section-iwabishi-staff .list-staff li {
  float: left;
  overflow: hidden;
  width: 47.3%;
  margin-right: 5.4%;
  margin-top: 85px;
}
.section-iwabishi-staff .list-staff li:first-child, .section-iwabishi-staff .list-staff li:nth-child(2) {
  margin-top: 0;
}
.section-iwabishi-staff .list-staff li img {
  float: left;
  width: 37.7%;
}
.section-iwabishi-staff .list-staff li .about-staff .name {
  border-bottom: 2px solid;
  padding-bottom: 0.1em;
}
.section-iwabishi-staff .list-staff li .about-staff .name .kana {
  display: inline-block;
  font-size: 0.895em;
  margin-left: 1.5em;
}
.section-iwabishi-staff .list-staff li .about-staff .name .kanji {
  font-size: 1.316em;
  font-weight: 600;
}
.section-iwabishi-staff .list-staff li .about-staff .exp {
  font-size: 0.842em;
  margin-top: 0.5em;
  font-weight: 500;
}
.section-iwabishi-staff .list-staff li .col-info {
  float: left;
  padding-left: 3.3%;
  width: 62.3%;
}
.section-iwabishi-staff .list-staff li:nth-child(2n) {
  margin-right: 0;
}
.section-iwabishi-staff .list-staff li a {
  display: block;
}
.section-iwabishi-staff .txt-detail {
  font-weight: bold;
  line-height: 1.54;
  font-size: 1.7em;
  margin-top: -0.3em;
  height: 7em;
}
.section-iwabishi-staff .box-name {
  text-align: right;
  letter-spacing: 2px;
}
.section-iwabishi-staff .box-name .txt-name {
  font-weight: bold;
  font-size: 1.78em;
}
.section-iwabishi-staff .box-name .txt-en {
  margin-top: 0.168em;
  font-size: 1.28em;
}
.section-iwabishi-staff .box-name .txt-pos {
  border-top: 2px solid #000;
  font-size: 1.14em;
  margin-top: 0.375em;
  padding-top: 0.5em;
  margin-bottom: -0.22em;
}
.section-iwabishi-staff .link-staff {
  -webkit-border-radius: 12px;
  -khtml-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
  display: block;
  margin: 78px auto 0;
  width: 100%;
  max-width: 482px;
  border: 4px solid #000;
  padding: 22px 69px 28px;
}
.section-iwabishi-staff .link-staff span {
  display: block;
}
.section-iwabishi-staff .link-staff .txt-manu {
  color: #808285;
  font-size: 28px;
}
.section-iwabishi-staff .link-staff .txt-fac {
  font-weight: bold;
  font-size: 42px;
  margin-top: -4px;
  letter-spacing: 3px;
}
.section-iwabishi-staff .link-staff .txt-fac small {
  font-size: 36px;
}

@media (max-width: 1240px) {
  br.md {
    display: none;
  }

  .section-iwabishi-staff .list-staff {
    font-size: 13px;
  }
}
@media (max-width: 980px) {
  .section-iwabishi-staff {
    padding-bottom: 100px;
  }
  .section-iwabishi-staff .row + .row {
    margin-top: 143px;
  }
  .section-iwabishi-staff .list-staff {
    margin-top: 80px;
    font-size: 12px;
  }
}
@media (max-width: 750px) {
  .section-iwabishi-staff {
    padding-bottom: 50px;
  }
  .section-iwabishi-staff .row-ttl {
    font-size: 28px;
    border-bottom-width: 2px;
    padding-bottom: 10px;
  }
  .section-iwabishi-staff .row + .row {
    margin-top: 80px;
  }
  .section-iwabishi-staff .list-staff {
    margin-top: 50px;
  }
  .section-iwabishi-staff .list-staff li {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-top: 60px;
  }
  .section-iwabishi-staff .list-staff li:first-child {
    margin-top: 0;
  }
  .section-iwabishi-staff .list-staff li:nth-child(2) {
    margin-top: 60px;
  }
  .section-iwabishi-staff .list-staff li img {
    width: 30%;
  }
  .section-iwabishi-staff .list-staff li .col-info {
    padding-left: 4%;
    width: 70%;
  }
  .section-iwabishi-staff .link-staff {
    -webkit-border-radius: 6px;
    -khtml-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    border-width: 2px;
    text-align: center;
    padding: 22px 0 28px;
  }
  .section-iwabishi-staff .link-staff p {
    display: inline-block;
    text-align: left;
  }
  .section-iwabishi-staff .link-staff .txt-manu {
    font-size: 20px;
  }
  .section-iwabishi-staff .link-staff .txt-fac {
    font-size: 35px;
    margin-top: 0;
  }
  .section-iwabishi-staff .link-staff .txt-fac small {
    font-size: 30px;
  }
}
@media (max-width: 680px) {
  .section-iwabishi-staff .list-staff .col-info .txt-detail {
    height: auto;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .section-iwabishi-staff .list-staff .col-info .box-name .txt-name,
  .section-iwabishi-staff .list-staff .col-info .box-name .txt-en,
  .section-iwabishi-staff .list-staff .col-info .box-name .txt-post {
    font-size: 15px;
  }
  .section-iwabishi-staff .list-staff .col-info .box-name .txt-en {
    color: #A7A9AC;
    margin-top: 0;
    letter-spacing: 0;
  }
  .section-iwabishi-staff .list-staff .col-info .box-name .txt-name,
  .section-iwabishi-staff .list-staff .col-info .box-name .txt-en {
    font-weight: 600;
  }
  .section-iwabishi-staff .list-staff .col-info .box-name .txt-post {
    padding-top: 2px;
    margin-bottom: 2px;
  }
}
@media (max-width: 480px) {
  .section-iwabishi-staff .link-staff {
    padding: 15px 0;
    margin-top: 40px;
  }
  .section-iwabishi-staff .link-staff .txt-manu {
    font-size: 15px;
  }
  .section-iwabishi-staff .link-staff .txt-fac {
    font-size: 20px;
    margin-top: 0;
  }
  .section-iwabishi-staff .link-staff .txt-fac small {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .section-iwabishi-staff .row-ttl {
    font-size: 20px;
    border-width: 1px;
    padding-bottom: 5px;
  }
  .section-iwabishi-staff .list-staff {
    margin-top: 25px;
  }
  .section-iwabishi-staff .list-staff li {
    margin-top: 40px;
  }
  .section-iwabishi-staff .list-staff li:first-child {
    margin-top: 0;
  }
  .section-iwabishi-staff .list-staff li:nth-child(2) {
    margin-top: 60px;
  }
  .section-iwabishi-staff .link-staff {
    border-width: 1px;
  }
}

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