@charset "UTF-8";
/* Common Style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
@import url("./fontawesome.css");
@import url("./fa-brands.css");
@import url("./fa-regular.css");
@import url("./fa-solid.css");
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, font, 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, figure, footer, header,
menu, nav, section, audio, video, canvas {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

body {
  color: #333;
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  clear: both;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

blockquote {
  quotes: none;
}

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

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a img {
  border: none;
  vertical-align: middle;
}

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

*::selection {
  background: rgba(51, 153, 153, .6);
}

*::-moz-selection {
  background: rgba(51, 153, 153, .6);
}

a, input[type=submit] {
  transition: all 0.2s ease;
}

/* Main global 'theme' and typographic styles */
body {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: subpixel-antialiased;
  font-family: "FOT-筑紫ゴシック Pr5 R", "TsukuGoPr5-R", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  position: relative;
}

body,
input,
textarea {
  color: #111;
  line-height: 1.6;
}

a:link,
a:visited {
  color: #111;
  cursor: hand;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

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

hr {
  background-color: #ccc;
  border: 0;
  clear: both;
  width: 100%;
  height: 1px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
}

p {
  margin-bottom: 1.5em;
}

ul {
  list-style: square;
  margin: 0 0 1.5em 2em;
}

ol {
  list-style: decimal;
  margin: 0 0 1.5em 2em;
}

ol ol {
  list-style: upper-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

ol ol ol ol {
  list-style: lower-alpha;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-bottom: 0;
}

dl {
  margin: 0 0 1.8em 0;
}

dt {
  font-weight: bold;
}

dt:last-child {
  margin-bottom: 0;
}

dd {
  margin-bottom: 1.5em;
}

dd:last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: bold;
}

cite,
em,
i {
  font-style: italic;
}

big {
  font-size: 131.25%;
}

ins {
  background: #ffc;
  text-decoration: none;
}

blockquote {
  font-style: italic;
  padding: 0 2em;
}

blockquote cite,
blockquote em,
blockquote i {
  font-style: normal;
}

pre {
  background: #f7f7f7;
  color: #222;
  line-height: 1.5;
  margin-bottom: 1.5em;
  overflow: auto;
  padding: 1.5em;
}

blockquote {
  quotes: "" "";
}

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

q {
  quotes: "“" "”" "‘" "’";
}

:focus {
  outline: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

sup,
sub {
  height: 0;
  line-height: 1;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

small {
  font-size: .8em;
}

table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
  margin-bottom: 1.5em;
}

th, td {
  padding: .5em .8em;
  vertical-align: top;
  border-bottom: none;
  text-align: left;
  background: #fff;
}

th {
  font-weight: normal;
}

/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
/* エフェクトで使う keyframes */
@-webkit-keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}
@keyframes blink {
  50% {
    opacity: .3;
  }
  0%, 100% {
    opacity: .9;
  }
}

/* フェードイン */
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* フェードアウト */
@-webkit-keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* スプリング(拡大してバウンド) */
@-webkit-keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes spring {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  75% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* 上に移動しながらフェードイン */
@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 下に移動しながらフェードイン */
@-webkit-keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* 左に移動しながらフェードイン */
@-webkit-keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* 右に移動しながらフェードイン */
@-webkit-keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/* X方向スケールアップ */
@-webkit-keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes scale-up-x {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

/* Y方向スケールアップ */
@-webkit-keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes scale-up-y {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

/* Y方向スケールダウン */
@-webkit-keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}
@keyframes scale-down-y {
  from {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  to {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

/* Y方向に拡大しながらフェードイン */
@-webkit-keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-y-fade-in {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードイン */
@-webkit-keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-fade-in {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

/* 拡大しながらフェードアウト */
@-webkit-keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes scale-fade-out {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

body {
  font-family: "FOT-筑紫ゴシック Pr5 R", "TsukuGoPr5-R", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
}

code {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

#header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  background: rgba(255, 255, 255, .8);
  border-bottom: 1px solid #dddddd;
  z-index: 100;
  transition: all 0.4s ease;
}

#header.is-index {
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(221, 221, 221, 0);
}

#header.is-index.is-current .siteLogo .topLogo, #header.is-index:hover .siteLogo .topLogo {
  opacity: 0;
}

#header.is-index.is-current .siteLogo .commonLogo, #header.is-index:hover .siteLogo .commonLogo {
  opacity: 1;
}

#header.is-current, #header:hover {
  background: white;
}

#header img {
  vertical-align: bottom;
  transition: all 0.4s ease;
}

#header a {
  transition: all 0.4s ease;
}

.siteLogo {
  width: 185px;
  margin: 0;
}

.siteLogo a {
  display: block;
}

.siteLogo .topLogo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.is-index .siteLogo .topLogo {
  opacity: 1;
}

.is-index .siteLogo .commonLogo {
  opacity: 0;
}

@media screen and (max-width: 1200px) {
  #header {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  #header {
    height: 60px;
    padding: 0 0 0 15px;
    background: white;
  }
  #header.is-index {
    background: white;
    border-bottom: 1px solid #dddddd;
  }
  #header.is-index:hover .siteLogo .topLogo {
    opacity: 0;
  }
  #header.is-index:hover .siteLogo .commonLogo {
    opacity: 1;
  }
  #header:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    background: #fff;
    z-index: 100;
  }
  .siteLogo {
    width: 138px;
    z-index: 101;
  }
  .is-index .siteLogo .topLogo {
    opacity: 0;
  }
  .is-index .siteLogo .commonLogo {
    opacity: 1;
  }
}

.navTrigger {
  display: none;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  background: #008927;
  z-index: 5;
}

.navTrigger .fa-times {
  display: none;
}

.navTrigger.is-current .fa-times {
  display: block;
}

.navTrigger.is-current .fa-bars {
  display: none;
}

.navTrigger.is-current + #gNav {
  display: block;
}

#gNav {
  width: calc(100% - 200px);
  z-index: 5;
}

#gNav > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  width: 100%;
  margin: 0;
  list-style: none;
}

#gNav > ul a:hover {
  opacity: .5;
}

#gNav > ul > li {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  height: 80px;
  padding: 0 10px;
}

#gNav > ul > li > span,
#gNav > ul > li > a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  height: 80px;
  font-size: 18px;
  cursor: pointer;
  font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  transition: all 0.4s ease;
}

#gNav > ul > li > span .fa,
#gNav > ul > li > a .fa {
  display: none;
}

#gNav > ul > li > span:after {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  display: block;
  content: '';
  width: 16px;
  height: 10px;
  box-sizing: border-box;
  border: 0px solid transparent;
  border-width: 0 8px 10px;
  border-bottom-color: #3e6415;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 0;
  transition: all 0.4s ease;
}

#gNav > ul > li.is-current .navChild,
#gNav > ul > li.is-current > span:after {
  opacity: 1;
}

#gNav > ul > li.is-current .navChild {
  pointer-events: auto;
}

.is-edge #gNav > ul > li.is-current .navChild,
.is-ie #gNav > ul > li.is-current .navChild {
  display: -webkit-flex;
  display: flex;
}

#gNav > ul > li.gNav01, #gNav > ul > li.gNav07 {
  display: none;
}

#gNav > ul > li.gNav08, #gNav > ul > li.gNav09 {
  padding-right: 0;
}

#gNav > ul > li.gNav08 a, #gNav > ul > li.gNav09 a {
  height: auto;
  padding: 7px 20px;
  background: #008927;
  font-size: 16px;
  color: #fff;
  border: 1px solid #008927;
}

#gNav > ul .navChild {
  position: fixed;
  top: 79px;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100vw;
  padding: 25px;
  margin: 0;
  list-style: none;
  background: #e5e5e5;
  text-align: center;
  pointer-events: none;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 1;
}

.is-edge #gNav > ul .navChild,
.is-ie #gNav > ul .navChild {
  display: none;
}

#gNav > ul .navChild li {
  font-size: 18px;
  line-height: 1.2;
  padding: 0 10px;
}

#gNav > ul .navChild li i.fa {
  margin-right: 5px;
}

#header.is-index #gNav > ul > li > a,
#header.is-index #gNav > ul > li > span {
  color: #fff;
}

#header.is-index #gNav > ul > li.gNav08 a, #header.is-index #gNav > ul > li.gNav09 a {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

#header.is-index.is-current #gNav > ul > li > span,
#header.is-index.is-current #gNav > ul > li > a, #header.is-index:hover #gNav > ul > li > span,
#header.is-index:hover #gNav > ul > li > a {
  color: #000;
}

#header.is-index.is-current #gNav > ul > li.gNav08 a, #header.is-index.is-current #gNav > ul > li.gNav09 a, #header.is-index:hover #gNav > ul > li.gNav08 a, #header.is-index:hover #gNav > ul > li.gNav09 a {
  background: #008927;
  color: #fff;
  border: 1px solid #008927;
}

@media screen and (max-width: 1200px) {
  #gNav > ul > li > span,
  #gNav > ul > li > a {
    font-size: 16px;
  }
  #gNav > ul > li.gNav08 a, #gNav > ul > li.gNav09 a {
    padding: 7px 15px;
    font-size: 14px;
  }
  #gNav > ul .navChild {
    padding: 20px;
  }
  #gNav > ul .navChild li {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .navTrigger {
    display: -webkit-flex;
    display: flex;
    z-index: 101;
  }
  .navTrigger.is-current + #gNav {
    right: 0;
    opacity: 1;
  }
  #gNav {
    position: fixed;
    top: 60px;
    right: -410px;
    width: 400px;
    max-height: calc(100vh - 140px);
    background: #f5f5f5;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 0.3s ease;
    z-index: 99;
    opacity: 0;
  }
  #gNav > ul {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  #gNav > ul > li {
    -webkit-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
  }
  #gNav > ul > li > span,
  #gNav > ul > li > a {
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    font-size: 16px;
    text-align: left;
    color: #000;
    border-bottom: 1px solid #ddd;
  }
  #gNav > ul > li > span .fa,
  #gNav > ul > li > a .fa {
    display: block;
    color: #bbb;
  }
  #gNav > ul > li > span:after {
    display: none;
  }
  #gNav > ul > li > span > .fa {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #gNav > ul > li > span.is-current > .fa {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  #gNav > ul > li > span.is-current + .navChild {
    display: block;
  }
  #gNav > ul > li.is-current > span:after {
    opacity: 0;
  }
  #gNav > ul > li.is-current .navChild {
    pointer-events: auto;
  }
  #gNav > ul > li.gNav01, #gNav > ul > li.gNav07 {
    display: -webkit-flex;
    display: flex;
  }
  #gNav > ul > li.gNav08, #gNav > ul > li.gNav09 {
    padding: 10px 3.5% 0px 3.5%;
  }
  #gNav > ul > li.gNav08 a, #gNav > ul > li.gNav09 a {
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
    padding: 7px 10px;
    font-size: 18px;
  }
  #gNav > ul > li.gNav08 a .fa, #gNav > ul > li.gNav09 a .fa {
    display: none;
  }
  #gNav > ul > li:last-child {
    padding-bottom: 20px;
  }
  #gNav > ul .navChild {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    -webkit-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding: 0;
    background: #eaeaea;
    text-align: left;
    pointer-events: auto;
    opacity: 1;
    display: none;
  }
  #gNav > ul .navChild li {
    width: 100%;
    font-size: 16px;
    padding: 0;
  }
  #gNav > ul .navChild li > a {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    width: 100%;
    padding: 10px 15px 10px 31px;
    background: #eaeaea;
    border-bottom: 1px solid #ddd;
  }
  #gNav > ul .navChild li > a > span {
    -webkit-order: 1;
            order: 1;
  }
  #gNav > ul .navChild li > a > .fa {
    -webkit-order: 2;
            order: 2;
    margin: 0;
    color: #bbb;
  }
  #gNav > ul .navChild li:last-child > a {
    border-bottom: none;
  }
  #header.is-index #gNav > ul > li > a,
  #header.is-index #gNav > ul > li > span {
    color: #000;
  }
  #header.is-index #gNav > ul > li.gNav08 a, #header.is-index #gNav > ul > li.gNav09 a {
    -webkit-justify-content: center;
            justify-content: center;
    background: #008927;
    color: #fff;
    border: 1px solid #008927;
  }
  #header.is-index:hover #gNav > ul > li > span,
  #header.is-index:hover #gNav > ul > li > a {
    color: #000;
  }
  #header.is-index:hover #gNav > ul > li.gNav08 a, #header.is-index:hover #gNav > ul > li.gNav09 a {
    background: #008927;
    color: #fff;
    border: 1px solid #008927;
  }
}

@media screen and (max-width: 450px) {
  #gNav {
    width: 90%;
  }
}

#fNav {
  width: 100%;
  padding: 50px 40px;
  background: #f9f9f9;
}

#fNav .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

#fNav dl {
  -webkit-flex: 1;
          flex: 1;
  margin: 0;
}

#fNav dl:nth-child(3) {
  -webkit-flex: 1.1;
          flex: 1.1;
}

#fNav dt {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: normal;
  color: #008927;
}

#fNav dd {
  margin: 0;
}

#fNav dd ul {
  width: 100%;
  margin: 0;
  list-style: none;
}

#fNav dd li {
  text-indent: -1em;
  padding-left: 1em;
}

#fNav dd li i {
  width: 1em;
  text-indent: 0;
}

#fNav dd li span {
  text-indent: 0;
}

#fNav dd li + li {
  margin-top: 5px;
}

#fNav dd li a:hover span {
  opacity: .5;
  text-decoration: underline;
}

#footer {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 40px 40px;
}

#footer img {
  vertical-align: bottom;
}

#footer .footLogo {
  width: 185px;
  margin: 0;
}

#footer .footAddress {
  width: calc(100% - 185px);
  padding-left: 50px;
  line-height: 1.2;
  margin-bottom: 30px;
}

#footer .footAddress h5 {
  font-size: 17px;
  font-weight: bold;
  font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#footer .footAddress p {
  margin: 0;
  font-size: 15px;
}

#footer .footAddress p span {
  display: inline-block;
  margin-right: 1em;
}

#footer .footAddress br {
  display: none;
}

#footer .footCopyright {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #333;
}

.pagetop {
  position: fixed;
  top: auto;
  right: 20px;
  bottom: -100px;
  left: auto;
  margin: 0;
  text-align: right;
  transition: all 0.3s ease;
  z-index: 80;
}

.pagetop.is-view {
  bottom: 220px;
}

.pagetop a {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 30px;
  line-height: 58px;
  text-align: center;
}

.pagetop a:hover {
  opacity: .5;
}

@media screen and (max-width: 1200px) {
  #fNav {
    padding: 40px 20px;
  }
  #footer {
    padding: 30px 20px 40px;
  }
  #footer .footAddress {
    padding-left: 30px;
  }
}

@media screen and (max-width: 1024px) {
  #fNav {
    display: none;
  }
  #footer {
    -webkit-justify-content: center;
            justify-content: center;
    padding-top: 0;
  }
  #footer .footLogo {
    margin: 0 0 15px;
  }
  #footer .footAddress {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  #footer .footAddress h5 {
    display: none;
  }
  #footer .footAddress br {
    display: block;
  }
  #footer .footCopyright {
    font-size: 11px;
  }
  .pagetop {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    background: #000;
  }
  .pagetop.is-view {
    bottom: auto;
  }
  .pagetop a {
    width: 100%;
    height: auto;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  #footer .footAddress p {
    font-size: 12px;
  }
  #footer .footCopyright {
    font-size: 11px;
  }
}

@media screen and (max-width: 414px) {
  #footer {
    padding: 0 3.5% 20px;
  }
  .pagetop a {
    font-size: 16px;
    line-height: 30px;
  }
}

body:not(.page-index) {
  padding-top: 80px;
}

.noscript {
  display: none;
}

.fa {
  vertical-align: baseline;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  body:not(.page-index) {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
  .is-sp {
    display: block;
  }
  body:not(.page-index) {
    padding-top: 85px;
  }
}

#rNav {
  width: 100%;
  background: #0c6d29;
}

#rNav:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 50%;
  background: #008927;
}

#rNav .inner {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #0c6d29;
}

#rNav h4 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  /*-webkit-flex: 1;*/
          /*flex: 1;*/
  padding: 1.1em;
  height: 110px;
  font-size: 28px;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  background: #008927;
}

#rNav h4:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 64px;
  background: #008927;
  -webkit-transform: skewX(-30deg) translate(50%, 0);
          transform: skewX(-30deg) translate(50%, 0);
  z-index: 0;
}

#rNav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex: 4;
          flex: 4;
  list-style: none;
  margin: 0;
  padding-left: 40px;
}

#rNav ul li {
  padding: 0 12px;
}
#rNav ul li.rNav03 a{
  color: #ff7b7b;
}

#rNav ul a {
  font-size: 20px;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
}


@media screen and (max-width: 767px) {
  #rNav {
    margin: -24px 0 0;
  }
  #rNav:before {
    display: none;
  }
  #rNav .inner {
    -webkit-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  #rNav h4 {
    width: 100%;
    height: auto;
    padding: 5px 0;
    font-size: 16px;
  }
  #rNav h4:before {
    display: none;
  }
  #rNav ul {
    -webkit-flex: 1;
            flex: 1;
    padding: .6em 3.5%;
  }
  #rNav ul li {
    padding: 0 12px;
  }
  #rNav ul a {
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  #rNav h4 {
    font-size: 14px;
  }
  #rNav ul li {
    padding: 0 6px;
  }
  #rNav ul a {
    font-size: 12px;
  }
}

/* Components style
-----------------------------------*/
.column {
  -webkit-flex-basis: 0;
          flex-basis: 0;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
          flex-shrink: 1;
  padding: 10px;
}

.column.is-narrow {
  -webkit-flex: none;
          flex: none;
}

.column.is-full {
  -webkit-flex: none;
          flex: none;
  width: 100%;
}

.column.is-three-quarters {
  -webkit-flex: none;
          flex: none;
  width: 75%;
}

.column.is-two-thirds {
  -webkit-flex: none;
          flex: none;
  width: 66.6666%;
}

.column.is-half {
  -webkit-flex: none;
          flex: none;
  width: 50%;
}

.column.is-one-third {
  -webkit-flex: none;
          flex: none;
  width: 33.3333%;
}

.column.is-one-quarter {
  -webkit-flex: none;
          flex: none;
  width: 25%;
}

.column.is-offset-three-quarters {
  margin-left: 75%;
}

.column.is-offset-two-thirds {
  margin-left: 66.6666%;
}

.column.is-offset-half {
  margin-left: 50%;
}

.column.is-offset-one-third {
  margin-left: 33.3333%;
}

.column.is-offset-one-quarter {
  margin-left: 25%;
}

.column.is-1 {
  -webkit-flex: none;
          flex: none;
  width: 8.33333%;
}

.column.is-offset-1 {
  margin-left: 8.33333%;
}

.column.is-2 {
  -webkit-flex: none;
          flex: none;
  width: 16.66667%;
}

.column.is-offset-2 {
  margin-left: 16.66667%;
}

.column.is-3 {
  -webkit-flex: none;
          flex: none;
  width: 25%;
}

.column.is-offset-3 {
  margin-left: 25%;
}

.column.is-4 {
  -webkit-flex: none;
          flex: none;
  width: 33.33333%;
}

.column.is-offset-4 {
  margin-left: 33.33333%;
}

.column.is-5 {
  -webkit-flex: none;
          flex: none;
  width: 41.66667%;
}

.column.is-offset-5 {
  margin-left: 41.66667%;
}

.column.is-6 {
  -webkit-flex: none;
          flex: none;
  width: 50%;
}

.column.is-offset-6 {
  margin-left: 50%;
}

.column.is-7 {
  -webkit-flex: none;
          flex: none;
  width: 58.33333%;
}

.column.is-offset-7 {
  margin-left: 58.33333%;
}

.column.is-8 {
  -webkit-flex: none;
          flex: none;
  width: 66.66667%;
}

.column.is-offset-8 {
  margin-left: 66.66667%;
}

.column.is-9 {
  -webkit-flex: none;
          flex: none;
  width: 75%;
}

.column.is-offset-9 {
  margin-left: 75%;
}

.column.is-10 {
  -webkit-flex: none;
          flex: none;
  width: 83.33333%;
}

.column.is-offset-10 {
  margin-left: 83.33333%;
}

.column.is-11 {
  -webkit-flex: none;
          flex: none;
  width: 91.66667%;
}

.column.is-offset-11 {
  margin-left: 91.66667%;
}

.column.is-12 {
  -webkit-flex: none;
          flex: none;
  width: 100%;
}

.column.is-offset-12 {
  margin-left: 100%;
}

.column.is-order1 {
  -webkit-order: 1;
          order: 1;
}

.column.is-order2 {
  -webkit-order: 2;
          order: 2;
}

.column.is-order3 {
  -webkit-order: 3;
          order: 3;
}

.column.is-order4 {
  -webkit-order: 4;
          order: 4;
}

.column.is-order5 {
  -webkit-order: 5;
          order: 5;
}

.column.is-order6 {
  -webkit-order: 6;
          order: 6;
}

.column.is-order7 {
  -webkit-order: 7;
          order: 7;
}

.column.is-order8 {
  -webkit-order: 8;
          order: 8;
}

.column.is-order9 {
  -webkit-order: 9;
          order: 9;
}

.column.is-order10 {
  -webkit-order: 10;
          order: 10;
}

.column.is-order11 {
  -webkit-order: 11;
          order: 11;
}

.column.is-order12 {
  -webkit-order: 12;
          order: 12;
}

.columns {
  display: -webkit-flex;
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}

.columns:last-child {
  margin-bottom: -10px;
}

.columns:not(:last-child) {
  margin-bottom: 10px;
}

.columns.is-centered {
  -webkit-justify-content: center;
          justify-content: center;
}

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.columns.is-gapless:last-child {
  margin-bottom: 0;
}

.columns.is-gapless:not(:last-child) {
  margin-bottom: 20px;
}

.columns.is-gapless > .column {
  margin: 0;
  padding: 0;
}

.columns.is-multiline {
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.tile {
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-flex-basis: auto;
          flex-basis: auto;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -webkit-flex-shrink: 1;
          flex-shrink: 1;
  min-height: -webkit-min-content;
  min-height: min-content;
}

.tile.is-ancestor {
  margin-left: -10px;
  margin-right: -10px;
  margin-top: -10px;
}

.tile.is-ancestor:last-child {
  margin-bottom: -10px;
}

.tile.is-ancestor:not(:last-child) {
  margin-bottom: 10px;
}

.tile.is-child {
  margin: 0 !important;
}

.tile.is-parent {
  padding: 10px;
}

.tile.is-vertical {
  -webkit-flex-direction: column;
          flex-direction: column;
}

.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 20px !important;
}

.tile:not(.is-child) {
  display: -webkit-flex;
  display: flex;
}

.tile.is-1 {
  -webkit-flex: none;
          flex: none;
  width: 8.33333%;
}

.tile.is-2 {
  -webkit-flex: none;
          flex: none;
  width: 16.66667%;
}

.tile.is-3 {
  -webkit-flex: none;
          flex: none;
  width: 25%;
}

.tile.is-4 {
  -webkit-flex: none;
          flex: none;
  width: 33.33333%;
}

.tile.is-5 {
  -webkit-flex: none;
          flex: none;
  width: 41.66667%;
}

.tile.is-6 {
  -webkit-flex: none;
          flex: none;
  width: 50%;
}

.tile.is-7 {
  -webkit-flex: none;
          flex: none;
  width: 58.33333%;
}

.tile.is-8 {
  -webkit-flex: none;
          flex: none;
  width: 66.66667%;
}

.tile.is-9 {
  -webkit-flex: none;
          flex: none;
  width: 75%;
}

.tile.is-10 {
  -webkit-flex: none;
          flex: none;
  width: 83.33333%;
}

.tile.is-11 {
  -webkit-flex: none;
          flex: none;
  width: 91.66667%;
}

.tile.is-12 {
  -webkit-flex: none;
          flex: none;
  width: 100%;
}

/* @ breadcrumbs
// ------------------------------------------------------------ */
.breadcrumbs {
  width: 100%;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.breadcrumbs + .pageMainTitle {
  margin-top: -40px;
}

.breadcrumbs ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.breadcrumbs ul li {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  height: 30px;
  list-style: none;
  font-size: 12px;
  line-height: 1.2;
}

.breadcrumbs ul li a {
  text-decoration: none;
}

.breadcrumbs ul li .fa-home {
  margin-right: .5em;
}

.breadcrumbs ul li:not(:first-child):before {
  display: inline-block;
  content: '>';
  margin: 0 .7em;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs ul {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
  .breadcrumbs + .pageMainTitle {
    margin-top: -25px;
  }
}

.modal {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-align-items: center;
          align-items: center;
  display: none;
  -webkit-justify-content: center;
          justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 100000;
  padding: 0 5.867%;
  /**
	 * Movieモーダル
	 */
}

.modal.is-active {
  display: -webkit-flex;
  display: flex;
}

.modal .delete {
  position: absolute;
  right: -22px;
  top: -22px;
  display: inline-block;
  width: 44px;
  height: 44px;
  vertical-align: top;
  background-color: #111;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: 100;
}

.modal .delete:before, .modal .delete:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  margin-left: -25%;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 50%;
}

.modal .delete:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal .delete:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal-background {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(17, 17, 17, .75);
}

.modal-container {
  width: 100%;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  background: #fff;
}

.modal-content .message {
  width: 100%;
  max-height: calc(100vh - 100px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content .message-body {
  padding: 30px;
}

.modal-content .message-body > *:last-child {
  margin-bottom: 0 !important;
}

.modal-content .message-header {
  padding: 20px 30px 0;
}

.modal.modalMovie .modal-content .message-body {
  padding: 0;
  border: 1px solid #fff;
}

.modal.modalComment {
  color: #311b00;
}

.modal.modalComment p:last-child {
  margin-bottom: 0 !important;
}

.modal.modalComment hr {
  margin-bottom: 25px;
}

.modal.modalComment .message-body {
  padding: 10px 30px 30px;
}

.modal.modalComment .message-header {
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
}

.modal.modalComment h5 {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 5px;
  color: #fff;
  background: #311b00;
}

.modal.modalComment .prev,
.modal.modalComment .next {
  position: absolute;
  top: 50%;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  font-size: 25px;
  line-height: 1;
  color: #311b00;
  background: #fff;
  border: 2px solid #311b00;
  border-radius: 22px;
  -webkit-appearance: none;
  z-index: 100;
  cursor: pointer;
}

.modal.modalComment .prev {
  left: -1em;
}

.modal.modalComment .next {
  right: -1em;
}

.modalMovie .modal-content {
  max-width: 900px;
}

.modalMovie .modal-content .message-body {
  padding: 0;
}

.modalMovie .modal-content .message-body .video-container {
  border: none;
  padding-bottom: 55.25%;
  margin: 0;
}

@media screen and (max-width: 667px) {
  .modal .delete {
    width: 38px;
    height: 38px;
    position: absolute;
    right: -16px;
    top: -16px;
  }
}

/* @ pagination
// ------------------------------------------------------------ */
.pagination {
  margin: 0 0 50px;
  padding-top: 10px;
  text-align: center;
}

.pagination ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}

.pagination ul li {
  display: inline-block;
  list-style: none;
  padding: 0 4px;
  font-size: 15px;
}

.pagination ul li span,
.pagination ul li a {
  display: inline-block;
  min-width: 2.2em;
  height: 2.2em;
  line-height: 2.1;
  outline: none;
  padding: 0;
  text-align: center;
  border: solid 1px #000;
  color: #000;
  background: #fff;
  text-decoration: none;
}

.pagination ul li span.is-current,
.pagination ul li a.is-current {
  color: #fff !important;
  background: #000;
}

.pagination ul li span.is-current:hover,
.pagination ul li a.is-current:hover {
  opacity: 1;
}

.pagination ul li.prev a,
.pagination ul li.next a {
  padding: 0 1em;
}

.pagination.single ul {
  width: 100%;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.pagination.single ul .list a {
  padding: 0 1em;
  color: #fff;
  background: #000;
}

@media screen and (max-width: 768px -1px) {
  .pagination ul li {
    padding: 0 2px;
  }
}

@media screen and (max-width: 414px) {
  .pagination {
    margin: 0 0 30px;
  }
  .pagination ul li {
    font-size: 13px;
  }
  .pagination.single ul {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .pagination.single ul li {
    width: 49%;
  }
  .pagination.single ul li a {
    width: 100%;
  }
  .pagination.single ul .prev {
    -webkit-order: 1;
            order: 1;
  }
  .pagination.single ul .next {
    -webkit-order: 2;
            order: 2;
  }
  .pagination.single ul .list {
    -webkit-order: 3;
            order: 3;
    width: 100%;
    padding-top: 2%;
  }
}

@media screen and (max-width: 374px) {
  .pagination ul li {
    padding: 0 1px;
  }
  .pagination ul li.prev a,
  .pagination ul li.next a {
    padding: 0 .7em;
  }
}

.touchlink {
  cursor: pointer;
}

/* View style
-----------------------------------*/
/* window size
-----------------*/
/* font
-----------------*/
/* color
-----------------*/
#indexMv {
  width: 100%;
  height: 100vh;
  padding-top: 80px;
  overflow: hidden;
  text-align: center;
}

#indexMv:before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("../images/index/dot.png");
  z-index: 0;
}

#indexMv .indexWord {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  height: calc(100vh - 80px);
  font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

#indexMv .indexMvWord01 {
  font-size: 50px;
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
  transition: all ease-out 1s;
}

#indexMv .indexMvWord01.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#indexMv .indexMvWord02 {
  font-size: 20px;
  line-height: 1.5;
  opacity: 0;
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
  transition: all ease-out .7s;
}

#indexMv .indexMvWord02.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#indexMv .indexMvLink {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  transition: all ease-out .6s;
}

#indexMv .indexMvLink.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

#indexMv .indexMvLink .btn {
  display: inline-block;
  padding: 10px 40px;
  font-size: 18px;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

#indexMv .indexMvLink .btn:hover {
  color: #000;
  background: #fff;
  text-shadow: 1px 1px 0 #fff;
}

#indexMv .scroll {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 40px;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, 50px);
          transform: translate(-50%, 50px);
  transition: all ease-out .6s;
}

#indexMv .scroll.is-view {
  opacity: 1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

#indexMv .scroll a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column;
          flex-flow: column;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  font-size: 14px;
  line-height: 1;
}

#indexMv .scroll a span {
  display: inline-block;
}

#indexMv .scroll a i {
  font-size: 30px;
}

#indexBgMv {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.indexBana {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  height: auto;
  text-align: center;
}

.indexBana a:hover {
  opacity: .6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.indexBanaKv {
  z-index: 100;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 400px;
}

.indexBanaPage {
  display: none;
}

.indexSecTitle {
  margin-bottom: 50px;
  font-size: 50px;
  text-align: center;
}

#indexSec01 {
  padding: 100px 0 70px;
}

.indexSec01Content {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  font-size: 25px;
}

.indexSec01Content img {
  vertical-align: bottom;
}

.indexSec01List {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}

.indexSec01List .content {
  padding: 0 20px;
}

.indexSec01List .content p:last-child {
  margin: 0;
}

.indexSec01List .content em {
  display: inline-block;
  font-size: 32px;
  font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #288d08;
  font-style: normal;
}

.indexSec01List:nth-child(1) figure {
  -webkit-order: 2;
          order: 2;
  width: 42%;
  max-width: 385px;
}

.indexSec01List:nth-child(2) figure {
  width: 42%;
  max-width: 500px;
  padding: 0 3%;
}

.indexSec01List:nth-child(2) .content {
  width: 50%;
}

.indexSec01List:nth-child(2) .content p:first-child {
  margin-bottom: 2.2em;
}

.indexSec01List .indexBtn {
  display: inline-block;
  width: 335px;
  padding: 5px;
  font-size: 20px;
  font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #666;
  background: #dbdbd5;
  text-align: center;
}

.indexSec01List .indexBtn:after {
  position: absolute;
  top: 15%;
  right: 10%;
  bottom: 15%;
  left: auto;
  display: block;
  width: 30px;
  content: '';
  background: right center no-repeat url("../images/common/button-arrow-white.png");
  background-size: contain;
}

.indexSec01List .indexBtn:hover {
  color: #000;
  background: #eee;
}

#indexSec02 {
  padding: 70px 0 80px;
  background: #f9f9f9;
}

.indexSec02Content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}

.indexSec02Content img {
  vertical-align: bottom;
}

.indexSec02List {
  width: calc(33.33% - 13.33333px);
}

.indexSec02List a {
  display: block;
}

.indexSec02List a:hover {
  opacity: .5;
}

.indexSec02List figure:after {
  box-sizing: border-box;
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border: 10px solid #f9f9f9;
  border-top-color: #000;
}

.indexSec02List .content {
  padding: 20px 0 0;
}

.indexSec02List h4 {
  margin-bottom: 10px;
  font-size: 40px;
  font-family: "FOT-筑紫ゴシック Pr5 R", "TsukuGoPr5-R", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
}

.indexSec02List p {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  font-size: 16px;
  text-align: justify;
}

#indexSec03 {
  padding: 70px 40px 80px;
  background: center center no-repeat url("../images/index/division-bg.jpg");
  background-size: cover;
}

#indexSec03 .indexSecTitle {
  color: #fff;
}

#indexSec03 .indexSecTitleSub {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
  font-size: 34px;
}

.indexSec03Content {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  padding: 0 40px;
  margin: 0 auto;
}

.indexSec03Content img {
  vertical-align: bottom;
}

.indexSec03List {
  width: 31.333%;
  margin-bottom: 40px;
}

.indexSec03List a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  padding: 30px 0 20px;
  background: #eae9e9;
}

.indexSec03List a:hover {
  background: #ddd;
}

.indexSec03List a:hover figure:before {
  background: #bbb;
}

.indexSec03List figure {
  width: 100%;
  padding: 0 15px;
  margin-bottom: 6px;
}

.indexSec03List figure:after, .indexSec03List figure:before {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 15px;
  display: block;
  content: '';
  width: 26px;
  height: 26px;
  background: #dadad4;
  z-index: 2;
  transition: all 0.3s ease;
}

.indexSec03List figure:after {
  position: absolute;
  top: 5px;
  right: auto;
  bottom: auto;
  left: 20px;
  width: 16px;
  height: 16px;
  background: center center no-repeat url("../images/common/button-arrow-white.png");
  background-size: contain;
}

.indexSec03List figure img {
  z-index: 1;
}

.indexSec03List .content {
  width: 100%;
  text-align: center;
  line-height: 1.4;
}

.indexSec03List .content h4 {
  font-size: 26px;
  margin: 0;
}

.indexSec03List .content h4 small {
  display: inline-block;
  font-size: 18px;
}

.indexSec03List00 {
  width: 65.666%;
}

.indexSec03List00 figure {
  width: calc(50% - 10px);
}

.indexSec04-5 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  width: 100%;
}

.indexSec04-5 img {
  vertical-align: bottom;
}

#indexSec04,
#indexSec05 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 50%;
  padding: 90px 20px;
}

.is-ie #indexSec04, .is-ie
#indexSec05 {
  display: block;
}

#indexSec04 a,
#indexSec05 a {
  display: block;
  width: 100%;
  max-width: 560px;
}

#indexSec04 a:hover,
#indexSec05 a:hover {
  opacity: .7;
}

#indexSec04::after,
#indexSec05::after {
  content: '';
  display: table;
  width: 100%;
}

#indexSec04 h2, #indexSec04 h3,
#indexSec05 h2,
#indexSec05 h3 {
  width: 100%;
  text-align: center;
}

#indexSec04 .indexSecTitle,
#indexSec05 .indexSecTitle {
  font-size: 40px;
  margin-bottom: 20px;
}

#indexSec04 .indexSecTitleSub,
#indexSec05 .indexSecTitleSub {
  font-size: 24px;
}

#indexSec04 figure,
#indexSec05 figure {
  width: 100%;
}

#indexSec04 figure:after, #indexSec04 figure:before,
#indexSec05 figure:after,
#indexSec05 figure:before {
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  display: block;
  content: '';
  width: 30px;
  height: 33.33%;
  background: #999;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

#indexSec04 figure:after,
#indexSec05 figure:after {
  right: 15px;
  width: 16px;
  height: 18px;
  background: center center no-repeat url("../images/common/button-arrow-white.png");
  background-size: contain;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

#indexSec04 {
  -webkit-align-items: flex-end;
          align-items: flex-end;
  background: #f4f4f4;
}

.is-ie #indexSec04 a {
  float: right;
}

#indexSec05 {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  background: #eaeaea;
}

#indexNews {
  width: 100%;
  max-width: 1260px;
  padding: 50px 40px 20px;
  margin: 0 auto;
}

#indexNews .indexSecTitle {
  font-size: 30px;
  margin-bottom: 20px;
}

#indexNews .moreLink {
  position: absolute;
  top: 60px;
  right: 40px;
  bottom: auto;
  left: auto;
  margin: 0;
}

#indexNews .moreLink a {
  display: inline-block;
  padding: 3px 10px 3px 20px;
  font-size: 14px;
  color: #666;
  background: #dadad4;
}

#indexNews .moreLink a:after {
  display: inline-block;
  content: '';
  width: 1em;
  height: 1em;
  margin-left: 5px;
  background: center center no-repeat url("../images/common/button-arrow-white.png");
  background-size: contain;
  -webkit-transform: translate(0, 2px);
          transform: translate(0, 2px);
}

#indexNews .moreLink a:hover {
  color: #000;
  background: #eee;
}

@media screen and (max-width: 1200px) {
  .is-android #indexMv,
  .is-iphone #indexMv,
  .is-ipad #indexMv {
    height: calc(100vh - 60px);
  }
  #indexMv .indexWord {
    height: calc(100vh - 140px);
  }
  #indexMv .scroll {
    bottom: 20px;
  }
  .indexSecTitle {
    font-size: 40px;
  }
  #indexSec01 {
    padding: 80px 0 40px;
  }
  .indexSec01Content {
    padding: 0 30px;
    font-size: 22px;
  }
  .indexSec01List .content {
    padding: 0 20px;
  }
  .indexSec01List .content p:last-child {
    margin: 0;
  }
  .indexSec01List .content em {
    font-size: 1.28em;
    font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #288d08;
    font-style: normal;
  }
  .indexSec01List:nth-child(1) figure {
    -webkit-order: 2;
            order: 2;
    width: 42%;
    max-width: 385px;
  }
  .indexSec01List:nth-child(2) figure {
    width: 42%;
    max-width: 500px;
    padding: 0 3%;
  }
  .indexSec01List:nth-child(2) .content {
    width: 50%;
  }
  .indexSec01List:nth-child(2) .content p:first-child {
    margin-bottom: 2.2em;
  }
  .indexSec02Content {
    padding: 0 20px;
  }
  .indexSec02List h4 {
    font-size: 28px;
  }
  .indexSec02List p {
    font-size: 15px;
  }
  #indexSec03 {
    padding: 70px 20px 80px;
  }
  #indexSec03 .indexSecTitleSub {
    font-size: 26px;
  }
  .indexSec03List a {
    padding: 20px 0 20px;
  }
  .indexSec03List .content h4 {
    font-size: 22px;
  }
  .indexSec03List .content h4 small {
    font-size: 14px;
  }
  #indexSec04,
  #indexSec05 {
    padding: 60px 20px;
  }
  #indexSec04 .indexSecTitle,
  #indexSec05 .indexSecTitle {
    font-size: 30px;
  }
  #indexSec04 .indexSecTitleSub,
  #indexSec05 .indexSecTitleSub {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  #indexMv {
    padding-top: 60px;
  }
  .indexSecTitle {
    margin-bottom: 30px;
  }
  .indexSec01List:nth-child(1) figure {
    width: 30%;
  }
  .indexSec01List:nth-child(2) figure {
    width: 36%;
    padding: 0;
  }
  .indexSec01List:nth-child(2) .content {
    width: 60%;
  }
  #indexSec03 {
    padding: 40px 20px 0;
  }
  #indexSec03 .indexSecTitleSub {
    margin-bottom: 0;
  }
  .indexSec03Content {
    padding: 0;
  }
}

@media screen and (max-width: 1100px) {
  .indexBanaKv {
    width: 300px;
  }
}

@media screen and (max-width: 900px) {
  .indexBanaKv {
    display: none;
  }
  .indexBanaPage {
    display: inline-block;
    z-index: 100;
    position: fixed;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 70%;
  }
}

@media screen and (max-width: 900px) {
  #indexSec04,
  #indexSec05 {
    padding: 40px 20px;
  }
  #indexSec04 .indexSecTitleSub,
  #indexSec05 .indexSecTitleSub {
    font-size: 16px;
  }
}

@media screen and (max-width: 800px) {
  #indexMv .indexMvWord01 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  #indexMv .indexMvWord02 {
    font-size: 16px;
  }
  #indexMv .indexMvLink a {
    font-size: 16px;
  }
  .indexSecTitle {
    font-size: 32px;
  }
  #indexSec01 {
    padding: 40px 0 40px;
  }
  .indexSec01Content {
    padding: 0 20px;
    font-size: 18px;
  }
  .indexSec01List .content em {
    font-size: 1.28em;
  }
  .indexSec01List:nth-child(1) figure {
    width: 34%;
  }
  .indexSec01List:nth-child(2) figure {
    width: 36%;
  }
  .indexSec01List:nth-child(2) .content {
    width: 60%;
  }
  .indexSec01List .indexBtn {
    font-size: 18px;
  }
  .indexSec01List .indexBtn:after {
    position: absolute;
    top: 20%;
    right: 10%;
    bottom: 20%;
    left: auto;
    width: 30px;
  }
  #indexSec03 .indexSecTitleSub {
    font-size: 22px;
  }
  .indexSec04-5 {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
  #indexSec04,
  #indexSec05 {
    width: 100%;
  }
  #indexSec04 a,
  #indexSec05 a {
    max-width: 100%;
  }
  #indexSec04 .indexSecTitleSub,
  #indexSec05 .indexSecTitleSub {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  #indexSec04 figure,
  #indexSec05 figure {
    width: 100%;
  }
  #indexNews {
    padding: 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  #indexMv .indexMvWord01 {
    font-size: 38px;
    line-height: 1.2;
  }
  #indexMv .indexMvWord02 {
    font-size: 16px;
  }
  #indexMv .indexMvLink a {
    padding: 5px 25px;
  }
  #indexMv .scroll {
    bottom: 15px;
  }
  .indexSecTitle {
    font-size: 36px;
    line-height: 1.4;
  }
  #indexSec01 {
    padding: 40px 0 40px;
  }
  .indexSec01Content {
    padding: 0 3.5%;
  }
  .indexSec01List {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: 8%;
  }
  .indexSec01List figure {
    text-align: center;
  }
  .indexSec01List .content {
    padding: 0;
  }
  .indexSec01List:nth-child(1) {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .indexSec01List:nth-child(1) figure {
    -webkit-order: 1;
            order: 1;
    width: 100%;
    max-width: 400px;
    padding: 0 5%;
    margin-bottom: 5%;
  }
  .indexSec01List:nth-child(1) .content {
    -webkit-order: 2;
            order: 2;
  }
  .indexSec01List:nth-child(2) {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .indexSec01List:nth-child(2) figure {
    width: 100%;
    max-width: 400px;
    padding: 0 5%;
    margin-bottom: 5%;
  }
  .indexSec01List:nth-child(2) .content {
    width: 100%;
  }
  .indexSec01List:nth-child(2) .content p:first-child {
    margin-bottom: 1.2em;
  }
  .indexSec01List .indexBtn {
    width: 100%;
  }
  #indexSec02 {
    padding: 70px 0 20px;
    background: #f9f9f9;
  }
  .indexSec02Content {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .indexSec02List {
    width: 100%;
  }
  .indexSec02List .content {
    padding: 10px 0 30px;
  }
  .indexSec02List h4 {
    font-size: 30px;
  }
  .indexSec02List p {
    font-size: 14px;
  }
  #indexSec03 {
    padding: 40px 3.5% 5%;
  }
  #indexSec03 .indexSecTitleSub {
    font-size: 20px;
  }
  .indexSec03List {
    width: 48.5%;
    margin-bottom: 5%;
  }
  .indexSec03List a {
    padding: 5% 0;
  }
  .indexSec03List .content h4 {
    font-size: 21px;
  }
  .indexSec03List .content h4 small {
    font-size: 11px;
  }
  .indexSec03List figure {
    padding: 0 5%;
    margin-bottom: 2px;
  }
  .indexSec03List00 {
    width: 100%;
  }
  .indexSec03List00 a {
    padding: 2.5% 0;
  }
  .indexSec03List00 figure {
    width: 49.25%;
    padding: 0 2.5%;
  }
  #indexNews {
    padding: 30px 3.5%;
  }
  #indexNews .indexSecTitle {
    margin-bottom: 5px;
    font-size: 23px;
    line-height: 1.2;
  }
  #indexNews .moreLink {
    position: relative;
    top: auto;
    right: auto;
    margin: 0;
    text-align: right;
  }
  #indexNews .moreLink a {
    padding: 3px 5px 3px 15px;
    font-size: 12px;
  }
}

@media screen and (max-width: 568px) {
  #indexSec04,
  #indexSec05 {
    padding: 30px 3.5% 40px;
  }
  #indexSec04 figure:after, #indexSec04 figure:before,
  #indexSec05 figure:after,
  #indexSec05 figure:before {
    width: 15px;
    height: 25%;
  }
  #indexSec04 figure:after,
  #indexSec05 figure:after {
    right: 7.5px;
    width: 15px;
    height: 12px;
  }
}

@media screen and (max-width: 375px) {
  .indexSec02List .content {
    padding: 0 0 30px;
  }
  #indexSec03 .indexSecTitleSub {
    font-size: 20px;
  }
  .indexSec03List .content h4 small {
    font-size: 10px;
  }
}

@media screen and (max-width: 374px) {
  #indexMv .indexMvWord01 {
    font-size: 30px;
    line-height: 1.2;
  }
  #indexMv .scroll {
    bottom: 10px;
  }
  .indexSecTitle {
    font-size: 30px;
  }
  .indexSec01Content {
    font-size: 15px;
  }
  #indexSec03 .indexSecTitleSub {
    font-size: 16px;
  }
  .indexSec03List .content h4 {
    font-size: 16px;
  }
  .indexSec03List .content h4 small {
    font-size: 9px;
  }
}

body.is-eventNone * {
  pointer-events: none !important;
}

.openLoader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  z-index: 10000;
  transition: all linear .8s;
}

.openLoader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.openLoader .loader {
  color: #008927;
  font-size: 1em;
  z-index: 10000;
}

.loader {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5em;
  height: 5em;
  margin: -2.5em 0 0 -2.5em;
  font-size: 10px;
  text-indent: -9999em;
  border-top: 0.4em solid rgba(0, 137, 39, .3);
  border-right: 0.4em solid rgba(0, 137, 39, .3);
  border-bottom: 0.4em solid rgba(0, 137, 39, .3);
  border-left: 0.4em solid #008927;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
  transition: all ease-in-out .5s;
  border-radius: 50%;
  z-index: 0;
  opacity: 0;
}

.loader.is-active {
  z-index: 100;
  opacity: .5;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.inview {
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
}

.inview.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.commonWrapper {
  width: 100%;
  padding: 100px 0;
}
.commonWrapper02 {
  width: 100%;
  padding: 50px 0;
}
.commonWrapper > *:last-child {
  margin-bottom: 0;
}

.commonWrapper:nth-of-type(1) {
  padding: 40px 0 100px;
}

.commonWrapper.navWrapper {
  padding-bottom: 40px;
}

.commonWrapper > .inner,
.commonWrapper02 > .inner{
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  font-size: 18px;
}

.commonWrapper > .inner.has-sidebar {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.commonWrapper > .inner.has-sidebar .mainColumn {
  width: calc(100% - 300px);
}

.commonWrapper > .inner.has-sidebar .sidebar {
  width: 250px;
}

.commonWrapper.is-type2 {
  background-color: #eaeaea;
}

.commonWrapper.is-type2:nth-of-type(1) {
  padding: 100px 0;
}

.commonWrapper.is-type3 {
  background-color: #f8f8f8;
}

.commonWrapper.is-type3:nth-of-type(1) {
  padding: 100px 0;
}

.commonWrapper.is-type3.formThanx {
  padding: 80px 0;
  margin-top: 30px;
  margin-bottom: -50px;
  text-align: center;
}

.recruit .commonWrapper {
  font-size: 16px;
}

.pageMainTitle {
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: column wrap;
   flex-flow: column wrap;
   -webkit-align-items: center;
   align-items: center;
   -webkit-justify-content: center;
   justify-content: center;
   width: 100%;
   height: 400px;
   font-size: 38px;
   line-height: 1.4;
   color: #fff;
   text-shadow: 0 0 5px black;
   background: center center no-repeat;
   background-size: cover;
 }
.pageMainTitle .isLeft{
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
  text-align: left !important;
}
.pageMainTitle .isLeftBlack{
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
  text-align: left !important;
  color: #111;
  text-shadow: none;
}

.page-fukaeword .pageMainTitle {
  background-image: url("../images/mainvisual/kv-fukaeword.jpg");
}

.page-division .pageMainTitle {
  background-image: url("../images/mainvisual/kv-division.jpg");
}

.page-fukaeism .pageMainTitle {
  background-image: url("../images/mainvisual/kv-fukaeism.jpg");
}

.page-iso .pageMainTitle {
  background-image: url("../images/mainvisual/kv-iso.jpg");
}

.page-operation .pageMainTitle {
  background-image: url("../images/mainvisual/kv-operation.jpg");
}

.page-1997 .pageMainTitle,
.page-1987-1996 .pageMainTitle,
.page-1980-1986 .pageMainTitle,
.page-1971-1979 .pageMainTitle,
.page-1957-1970 .pageMainTitle,
.page-history .pageMainTitle {
  background-image: url("../images/mainvisual/kv-history.jpg");
}

.page-products .pageMainTitle {
  background-image: url("../images/mainvisual/kv-products.jpg");
}

.page-stamping .pageMainTitle {
  background-image: url("../images/mainvisual/kv-stamping.jpg");
}

.page-production .pageMainTitle {
  background-image: url("../images/mainvisual/kv-production.jpg");
}

.page-factory-yukuhashi .pageMainTitle {
  background-image: url("../images/mainvisual/kv-factory-yukuhashi.jpg");
}

.page-factory-yukuhashi02 .pageMainTitle {
  background-image: url("../images/mainvisual/kv-factory-yukuhashi02.jpg");
}

.page-factory-mizumaki .pageMainTitle {
  background-image: url("../images/mainvisual/kv-factory-mizumaki.jpg");
}

.page-factory-nakama .pageMainTitle {
  background-image: url("../images/mainvisual/kv-factory-nakama.jpg");
}

.page-factory-toyotsu .pageMainTitle {
  background-image: url("../images/mainvisual/kv-factory-toyotsu.jpg");
}

.page-company .pageMainTitle {
  background-image: url("../images/mainvisual/kv-company.jpg");
}



.page-womans .pageMainTitle {
  background-image: url("../images/mainvisual/kv-womans.jpg");
}
.page-womans-discussion .pageMainTitle {
  background-image: url("../images/mainvisual/kv-womans-discussion.jpg");
}
.page-womans-jobtype .pageMainTitle {
  background-image: url("../images/mainvisual/kv-womans-jobtype.jpg");
}
.page-womans-approach .pageMainTitle {
  background-image: url("../images/mainvisual/kv-womans-approach.jpg");
}

.pageMainTitle span, .pageMainTitle small {
  display: inline-block;
  width: 100%;
  text-align: center;
  line-height: 1;
}

.pageMainTitle small {
  padding-top: 20px;
  font-size: 20px;
}

.pageTitle {
  padding: 0 20px;
  margin-bottom: 50px;
  font-size: 45px;
  text-align: center;
}

.commonWrapper > .inner > .pageTitle {
  margin-bottom: 40px;
}

.pageTitle + .commonWrapper {
  padding-top: 0;
}

.pageTitleR {
  padding: 0 20px;
  margin-bottom: 50px;
  font-size: 34px;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  text-align: center;
  line-height: 1;
}

.pageTitleR span {
  font-size: 18px;
}

.commonWrapper .inner > .pageTitleR {
  padding-top: 40px;
}

.pageTitleR + .divisionFeature {
  margin-bottom: 100px;
}

.titleType01 {
  padding-left: 10px;
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 1.2;
  border-left: 5px solid #000;
}

.titleListNum {
  margin-bottom: 20px;
}

.titleListNum span {
  display: inline-block;
  min-width: 4em;
  padding: 0 10px;
  font-size: 30px;
  line-height: 1.4;
  color: #fff;
  background: #000;
}

.read {
  text-align: center;
}

.newsList {
  width: 100%;
  list-style: none;
  margin: 0 auto 40px;
}

.newsListItem {
  border-bottom: 1px dotted rgba(0, 0, 0, .15);
}

#indexNews .newsListItem:last-child {
  border-bottom: none;
}

.newsListItem a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
  padding: 10px 20px;
  font-size: 18px;
}

.newsListItem a:hover {
  opacity: .5;
}

.newsListItem a:hover p {
  text-decoration: underline;
}

.newsListItem i {
  display: inline-block;
  min-width: 75px;
  margin: 0 20px;
  padding: 2px 5px;
  font-style: normal;
  font-size: 14px;
  text-align: center;
  color: #666;
  background: #dadad4;
  -webkit-transform: translate(0, 2px);
          transform: translate(0, 2px);
}

.newsListItem i.cat-office {
  background: #dadad4;
}

.newsListItem i.cat-kanagata, .newsListItem i.cat-yahata {
  background: #d8e2b7;
}

.newsListItem i.cat-toyotsu {
  background: #ecddc0;
}

.newsListItem i.cat-yukuhashi {
  background: #deceea;
}

.newsListItem i.cat-production, .newsListItem i.cat-mizumaki {
  background: #ecc0c0;
}

.newsListItem i.cat-press, .newsListItem i.cat-nakama {
  background: #c0ecd4;
}

.newsListItem i.cat-recruit {
  background: #c8e4ed;
}

.newsListItem p {
  margin: 0;
}

.table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 90px;
}

.table.is-fixed table {
  table-layout: fixed;
}

.tableWrapper {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.table table {
  min-width: 100%;
  background: #ddd;
}

.table table th, .table table td {
  font-size: 15px;
}

.table table th {
  background: #f9f9f9;
}

.table table td {
  background: #fff;
}

.table table thead th {
  text-align: center;
}

.table .tableTrigger {
  display: none;
}

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

.youtubeVideo iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .commonWrapper > .inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  .commonWrapper {
    padding: 70px 0 80px;
  }
  body > .commonWrapper:nth-of-type(1) {
    padding: 30px 0 80px;
  }
  body > .commonWrapper.navWrapper {
    padding-bottom: 30px;
  }
  .commonWrapper.is-type2:nth-of-type(1) {
    padding: 70px 0 80px;
  }
  .commonWrapper.navWrapper {
    padding-bottom: 30px;
  }
  .pageMainTitle {
    height: 300px;
  }
  .pageTitle {
    margin-bottom: 44px;
    font-size: 36px;
  }
  .commonWrapper > .inner > .pageTitle {
    margin-bottom: 30px;
  }
  .pageTitleR {
    margin-bottom: 44px;
  }
  .titleListNum span {
    min-width: 4em;
    font-size: 26px;
  }
  .table table {
    min-width: 900px;
  }
  .tableWrapper {
    overflow-x: scroll;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 800px) {
  .pageMainTitle {
    height: 250px;
  }
  .titleType01 {
    font-size: 26px;
  }
  .pageTitleR {
    font-size: 30px;
  }
  .pageTitleR span {
    font-size: 16px;
  }
  .newsListItem a {
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 10px 15px;
    font-size: 16px;
  }
  .newsListItem i {
    margin: 0 15px;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 1.2;
  }
  .newsListItem p {
    width: 100%;
    line-height: 1.4;
  }
  .tableWrapper {
    height: 200px;
    overflow: hidden;
    border: 1px solid #ccc;
  }
  .table.is-active .tableTrigger, .table.is-active:before {
    display: none;
  }
  .table.is-active .tableTrigger.close {
    display: inline-block;
  }
  .table.is-active .tableWrapper {
    height: auto;
    overflow-x: scroll;
    overflow-y: scroll;
    border: none;
  }
  .table:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    content: '';
    background: rgba(0, 0, 0, .5);
    z-index: 10;
  }
  .table .tableTrigger {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 8px 2em;
    font-size: 20px;
    border: 1px solid #666;
    border-radius: 4px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 12;
    font-weight: bold;
  }
  .table .tableTrigger .fa {
    margin-left: .5em;
  }
  .table .tableTrigger.close {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto 20px;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .table table {
    min-width: 900px;
  }
  .table table th, .table table td {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .commonWrapper {
    padding: 50px 0 60px;
  }
  .commonWrapper > .inner {
    padding: 0 3.5%;
    font-size: 16px;
  }
  .commonWrapper > .inner.has-sidebar {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .commonWrapper > .inner.has-sidebar .mainColumn {
    width: 100%;
  }
  .commonWrapper > .inner.has-sidebar .sidebar {
    width: 100%;
  }
  body > .commonWrapper:nth-of-type(1) {
    padding: 20px 0 60px;
  }
  body > .commonWrapper:nth-of-type(1).navWrapper {
    padding-bottom: 20px;
  }
  .commonWrapper.is-type2:nth-of-type(1) {
    padding: 50px 0 60px;
  }
  .commonWrapper.navWrapper {
    padding-bottom: 50px;
  }
  .pageMainTitle {
    height: 200px;
    font-size: 28px;
  }
  .pageMainTitle small {
    padding-top: 10px;
    font-size: 16px;
  }
  .pageTitle {
    padding: 0 3.5%;
    margin-bottom: 20px;
    font-size: 28px;
  }
  .commonWrapper > .inner > .pageTitle {
    margin-bottom: 20px;
  }
  .pageTitleR {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .pageTitleR span {
    font-size: 14px;
  }
  .commonWrapper .inner > .pageTitleR {
    padding-top: 20px;
  }
  .pageTitleR + .divisionFeature {
    margin-bottom: 50px;
  }
  .titleType01 {
    font-size: 24px;
  }
  .read {
    text-align: left;
  }
  .titleListNum {
    margin-bottom: 15px;
  }
  .titleListNum span {
    font-size: 22px;
  }
  .newsListItem a {
    padding: 10px 0;
    font-size: 14px;
  }
  .newsListItem i {
    margin: 0 10px;
    font-size: 10px;
  }
  .table .tableTrigger {
    width: 80%;
    padding: 8px 2em;
    font-size: 14px;
    text-align: center;
  }
  .table .tableTrigger.close {
    width: 100%;
  }
  .tableWrapper {
    height: 150px;
  }
}

@media screen and (max-width: 374px) {
  .pageTitle {
    font-size: 24px;
  }
  .titleListNum span {
    font-size: 20px;
  }
}

.has-sidebar .sidebarSection {
  width: 100%;
  margin-bottom: 25px;
  border: 1px solid #ddd;
}

.has-sidebar .sidebarSection .title {
  width: 100%;
  padding: 10px 20px;
  font-size: 20px;
  background: #e9e9e9;
  border-bottom: 1px solid #ddd;
}

.has-sidebar .sidebarSection .content {
  padding: 20px 10px;
}

.has-sidebar .sidebarSection .content > *:last-child {
  margin-bottom: 0;
}

.has-sidebar .sidebarSection .searchForm button {
  height: 30px;
}

.has-sidebar .sidebarCatList {
  width: 100%;
  margin: 0;
  list-style: none;
}

.has-sidebar .sidebarCatList li {
  width: 100%;
}

.has-sidebar .sidebarCatList li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.has-sidebar .sidebarCatList li a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 10px 10px 10px 20px;
}

@media screen and (max-width: 767px) {
  .has-sidebar .sidebar {
    padding-top: 20px;
  }
  .has-sidebar .sidebarSection:last-child {
    margin-bottom: 0;
  }
  .has-sidebar .sidebarSection .title {
    font-size: 18px;
    padding: 10px 3.5%;
  }
  .has-sidebar .sidebarCatList li a {
    padding: 10px 1.75% 10px 3.5%;
  }
}

.singleTitle {
  margin-bottom: 10px;
  font-size: 30px;
  text-align: left;
}

.singleMeta {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
  margin-bottom: 40px;
  font-size: 16px;
}

.singleMeta .tag {
  display: inline-block;
  min-width: 75px;
  margin: 0 20px;
  padding: 2px 5px;
  font-style: normal;
  font-size: 14px;
  text-align: center;
  color: #666;
  background: #dadad4;
  -webkit-transform: translate(0, 2px);
          transform: translate(0, 2px);
  margin: -2px 0 0 10px;
  line-height: 1.2;
}

.singleMeta .tag.cat-office {
  background: #dadad4;
}

.singleMeta .tag.cat-kanagata, .singleMeta .tag.cat-yahata {
  background: #d8e2b7;
}

.singleMeta .tag.cat-toyotsu {
  background: #ecddc0;
}

.singleMeta .tag.cat-yukuhashi {
  background: #deceea;
}

.singleMeta .tag.cat-production, .singleMeta .tag.cat-mizumaki {
  background: #ecc0c0;
}

.singleMeta .tag.cat-press, .singleMeta .tag.cat-nakama {
  background: #c0ecd4;
}

.singleMeta .tag.cat-recruit {
  background: #c8e4ed;
}

.singleContent {
  text-align: left;
  padding-bottom: 50px;
  /* align */
}

.singleContent::after {
  content: '';
  display: table;
  width: 100%;
}

.singleContent figure {
  margin-bottom: 1.5em;
}

.singleContent h1 {
  font-size: 2em;
  font-weight: bold;
}

.singleContent h2 {
  font-size: 1.5em;
  font-weight: bold;
}

.singleContent h3 {
  font-size: 1.17em;
  font-weight: bold;
}

.singleContent h4 {
  font-size: 1em;
  font-weight: bold;
}

.singleContent h5 {
  font-size: 0.83em;
  font-weight: bold;
}

.singleContent h6 {
  font-size: 0.67em;
  font-weight: bold;
}

.singleContent .alignleft {
  z-index: 2;
  display: inline;
  float: left;
  padding-right: .5em;
  margin-bottom: .5em;
  max-width: 50%;
}

.singleContent .alignright {
  z-index: 2;
  display: inline;
  float: right;
  padding-left: .5em;
  margin-bottom: .5em;
  max-width: 50%;
}

.singleContent .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: .5em;
}

.has-sidebar .mainColumn .singleTitle {
  text-align: left;
}

.has-sidebar .mainColumn .singleMeta {
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.has-sidebar .mainColumn .singleContent {
  text-align: left;
  min-height: 300px;
}

@media screen and (max-width: 767px) {
  .singleTitle {
    font-size: 20px;
  }
  .singleMeta {
    margin-bottom: 20px;
  }
  .singleContent {
    padding-bottom: 30px;
    /* align */
  }
  .singleContent .alignleft {
    display: block;
    float: none;
    margin: 0 auto .5em;
    padding-right: 0;
    max-width: 100%;
  }
  .singleContent .alignright {
    display: block;
    float: none;
    padding-left: 0;
    margin: 0 auto .5em;
    max-width: 100%;
  }
  .singleContent .aligncenter {
    margin-bottom: .5em;
  }
  .has-sidebar .mainColumn .singleContent {
    min-height: 150px;
  }
}

@media screen and (max-width: 374px) {
  .singleTitle {
    font-size: 18px;
  }
  .singleMeta .tag {
    padding: 2px 5px;
    font-size: 12px;
    line-height: 1.2;
  }
  .singleContent {
    font-size: 14px;
  }
}

.productCatLink {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  list-style: none;
  margin: 0 0 30px;
}

.productCatLink li {
  width: 30%;
}

.productCatLink li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-size: 22px;
  text-align: center;
  border: 1px solid #ddd;
  background: #e9e9e9;
}

.productCatLink li a:hover {
  background: #a4d092;
}

.searchResult {
  width: 100%;
  padding: 0 20px;
  margin-top: -20px;
  font-size: 24px;
  text-align: center;
}

.searchResultList {
  width: 100%;
  margin-bottom: 40px;
}

.searchResultListItem {
  padding: 15px;
  border-bottom: 1px dotted #ddd;
}

.searchResultListItem:first-of-type {
  padding-top: 0;
}

.searchResultListItem a {
  display: block;
}

.searchResultListItem a:hover {
  opacity: .5;
}

.searchResultListItem .title {
  width: 100%;
  font-size: 18px;
  margin-bottom: 5px;
  color: #005fb8;
}

.searchResultListItem .description {
  margin-bottom: 0;
  font-size: 16px;
}

.searchResultListItem .fa-angle-right {
  display: none;
}

.searchForm {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  max-width: 460px;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
}

.searchForm input {
  width: calc(100% - 40px);
  margin: 0;
  padding: 0 8px;
  background: #fff;
  border: none;
  font-size: .9em;
  line-height: 1.2;
  -webkit-appearance: none;
}

.searchForm button {
  margin: 0;
  width: 40px;
  height: 40px;
  border: none;
  color: #fff;
  font-size: 18px;
  background: #000;
  -webkit-appearance: none;
  transition: all 0.4s ease;
}

.searchForm button:hover {
  background: #555;
}

@media screen and (max-width: 800px) {
  .searchResult {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .productCatLink {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin: 0 0 10px;
  }
  .productCatLink li {
    width: 100%;
  }
  .productCatLink li + li {
    margin-top: 10px;
  }
  .productCatLink li a {
    font-size: 16px;
  }
  .searchResult {
    margin-top: -10px;
    font-size: 16px;
  }
  .searchResultList {
    margin-bottom: 20px;
  }
  .searchResultListItem {
    padding: 0;
  }
  .searchResultListItem:first-of-type {
    padding-top: 0;
  }
  .searchResultListItem .title {
    font-size: 16px;
  }
  .searchResultListItem a {
    padding: 10px 6% 10px 2%;
  }
  .searchResultListItem .description {
    font-size: 14px;
  }
  .searchResultListItem .fa-angle-right {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    font-size: 26px;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    color: #bbb;
  }
  .searchForm {
    max-width: 100%;
  }
}

.divisionRead::after {
  content: '';
  display: table;
  width: 100%;
}

.divisionReadTitle {
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 1.4;
}

.divisionReadImgLeft {
  float: left;
  width: 100%;
  max-width: 435px;
  padding: 0 1.5em 50px 0;
  text-align: left;
}

.divisionReadImg {
  float: right;
  width: 100%;
  max-width: 435px;
  padding: 0 0 50px 1.5em;
  text-align: right;
}

.divisionReadImgBottom {
  margin-top: 1.5em;
  vertical-align: bottom;
}

.divisionReadPar {
  line-height: 1.7;
}

.divisionReadPar > *:last-child {
  margin: 0;
}

.divisionOffice img {
  vertical-align: bottom;
}

.divisionOfficeList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.divisionOfficeList:not(:last-of-type) {
  margin-bottom: 90px;
}

.divisionOffice .titleType01 {
  width: 100%;
}

.divisionOfficeImg, .divisionOfficeDetail {
  width: calc(50% - 25px);
}

.divisionOfficeDetail {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-align-content: space-between;
          align-content: space-between;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.divisionOfficeAddress {
  width: 57%;
  margin-bottom: 20px;
}

.no-iso .divisionOfficeAddress {
  width: 100% !important;
}

.divisionOfficeISO {
  width: 43%;
  margin-bottom: 20px;
}

.divisionOfficeISO dl {
  margin: 0;
}

.divisionOfficeISO dt, .divisionOfficeISO dd {
  margin: 0;
}

.divisionOfficeISO dd {
  padding-left: 1em;
}

.divisionOfficeMap {
  width: 100%;
}

.divisionOfficeMap iframe {
  width: 100%;
}

.divisionFeatureList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.divisionFeatureList:not(:last-of-type) {
  margin-bottom: 100px;
}

.divisionFeatureList.is-flexStart {
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.divisionFeatureList:nth-of-type(odd) .divisionFeatureImg {
  -webkit-order: 2;
          order: 2;
}

.divisionFeatureList:nth-of-type(odd) .divisionFeatureContent {
  -webkit-order: 1;
          order: 1;
  padding-right: 60px;
}

.divisionFeatureList:nth-of-type(odd).no-img .divisionFeatureContent {
  padding-right: 0 !important;
}

.divisionFeatureList:nth-of-type(even) .divisionFeatureImg {
  -webkit-order: 1;
          order: 1;
}

.divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
  -webkit-order: 2;
          order: 2;
  padding-left: 60px;
}

.divisionFeatureList:nth-of-type(even).no-img .divisionFeatureContent {
  padding-left: 0 !important;
}

.divisionFeatureList.no-img .divisionFeatureContent {
  width: 100% !important;
}

.reverse .divisionFeatureList:nth-of-type(odd) .divisionFeatureImg {
  -webkit-order: 1;
          order: 1;
}

.reverse .divisionFeatureList:nth-of-type(odd) .divisionFeatureContent {
  -webkit-order: 2;
          order: 2;
  padding-left: 60px;
  padding-right: 0;
}

.reverse .divisionFeatureList:nth-of-type(odd).no-img .divisionFeatureContent {
  padding-left: 0 !important;
}

.reverse .divisionFeatureList:nth-of-type(even) .divisionFeatureImg {
  -webkit-order: 2;
          order: 2;
}

.reverse .divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
  -webkit-order: 1;
          order: 1;
  padding-right: 60px;
  padding-left: 0;
}

.reverse .divisionFeatureList:nth-of-type(even).no-img .divisionFeatureContent {
  padding-right: 0 !important;
}

.divisionFeatureImg {
  width: 50%;
}

.divisionFeatureContent {
  width: 50%;
}

.divisionFeatureTitle {
  margin-bottom: 25px;
  font-size: 30px;
}

.divisionFeaturePar > *:last-child {
  margin-bottom: 0;
}

.divisionItem {
  width: 100%;
}

.divisionItemList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
}

.divisionItemList figure {
  width: calc(25% - 30px);
  margin-bottom: 40px;
}

.divisionItemList figure:not(:nth-child(4n)) {
  margin-right: 40px;
}

.divisionItemList figure img {
  vertical-align: bottom;
  margin-bottom: 8px;
}

.divisionItemList figcaption {
  width: 100%;
  text-align: center;
  font-size: 18px;
}

.divisionFacility {
  width: 100%;
}

.divisionFacility .table .td0 {
  width: 90px;
}

.divisionFacility .table .td2 {
  width: 250px;
}

.divisionFacility .table .td3 {
  width: 200px;
}

.divisionFacility .table .td4 {
  width: 65px;
  text-align: center;
}

.divisionFacility .table .td5 {
  width: 180px;
  white-space: nowrap;
}

.divisionFacilityAttention {
  margin: -10px 0 0;
  font-size: 16px;
}

.divisionMachine {
  width: 100%;
}

.divisionMachine .table {
  margin-bottom: 0 !important;
}

.divisionMachine .table .td0 {
  width: 90px;
}

.divisionMachine .table .td2 {
  width: 250px;
}

.divisionMachine .table .td3 {
  width: 200px;
}

.divisionMachine .table .td4 {
  width: 65px;
  text-align: center;
}

.divisionMachine .table .td5 {
  width: 180px;
  white-space: nowrap;
}

.divisionMachineAttention {
  margin: -10px 0 0;
  font-size: 16px;
}

.divisionGallery {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
}

.divisionGallery figure {
  width: calc(33% - 30px);
  margin-bottom: 40px;
}

.divisionGallery figure:not(:nth-child(3n)) {
  margin-right: 40px;
}

.divisionGallery figure img {
  vertical-align: bottom;
  margin-bottom: 8px;
}

.divisionGallery figcaption {
  width: 100%;
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 1140px) {
  .divisionOfficeList:not(:last-of-type) {
    margin-bottom: 70px;
  }
  .divisionOfficeImg, .divisionOfficeDetail {
    width: calc(50% - 25px);
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .divisionReadTitle {
    font-size: 28px;
  }
  .divisionOfficeImg {
    width: 40%;
  }
  .divisionOfficeDetail {
    width: 57%;
  }
  .divisionFeatureList {
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }
  .divisionFeatureList:nth-of-type(odd) .divisionFeatureContent {
    padding-right: 40px;
  }
  .divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
    padding-left: 40px;
  }
  .reverse .divisionFeatureList:nth-of-type(odd) .divisionFeatureContent {
    padding-left: 40px;
  }
  .reverse .divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
    padding-right: 40px;
  }
  .divisionFeatureImg {
    width: 40%;
  }
  .divisionFeatureContent {
    width: 60%;
  }
  .divisionFeatureTitle {
    font-size: 26px;
  }
  .divisionItemList figure {
    width: calc(33.33% - 20px);
    margin-bottom: 30px;
  }
  .divisionItemList figure:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .divisionItemList figure:not(:nth-child(3n)) {
    margin-right: 30px;
  }
  .divisionFacility .table .td0 {
    width: 80px;
  }
  .divisionFacility .table .td2 {
    width: 220px;
  }
  .divisionFacility .table .td3 {
    width: 150px;
  }
  .divisionFacility .table .td4 {
    width: 60px;
    text-align: center;
  }
  .divisionFacility .table .td5 {
    width: 140px;
  }
}

@media screen and (max-width: 800px) {
  .divisionReadImgLeft {
    max-width: 40%;
    padding: 0 1.5em 30px 0;
  }
  .divisionReadImg {
    max-width: 40%;
    padding: 0 0 30px 1.5em;
  }
  .divisionReadImgBottom {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .divisionOfficeImg {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .divisionOfficeDetail {
    width: 100%;
  }
  .divisionFeatureList:nth-of-type(odd) .divisionFeatureContent {
    padding-right: 20px;
  }
  .divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
    padding-left: 20px;
  }
  .reverse .divisionFeatureList:nth-of-type(odd) .divisionFeatureContent {
    padding-left: 20px;
  }
  .reverse .divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
    padding-right: 20px;
  }
  .divisionFacilityAttention {
    margin: 10px 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .divisionReadTitle {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .divisionReadImgLeft {
    float: none;
    max-width: 100%;
    padding: 1em 15% 0;
    text-align: center;
  }
  .divisionReadImg {
    float: none;
    max-width: 100%;
    padding: 0 15% 1em;
    text-align: center;
  }
  .divisionReadImgBottom {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .divisionOfficeImg {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .divisionOfficeDetail {
    width: 100%;
  }
  .divisionFeatureList:nth-of-type(odd) .divisionFeatureImg, .divisionFeatureList:nth-of-type(even) .divisionFeatureImg {
    -webkit-order: 2;
            order: 2;
  }
  .divisionFeatureList:nth-of-type(odd) .divisionFeatureContent, .divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
    -webkit-order: 1;
            order: 1;
    padding: 0;
  }
  .reverse .divisionFeatureList:nth-of-type(odd) .divisionFeatureImg, .reverse .divisionFeatureList:nth-of-type(even) .divisionFeatureImg {
    -webkit-order: 2;
            order: 2;
  }
  .reverse .divisionFeatureList:nth-of-type(odd) .divisionFeatureContent, .reverse .divisionFeatureList:nth-of-type(even) .divisionFeatureContent {
    -webkit-order: 1;
            order: 1;
    padding: 0;
  }
  .divisionFeatureImg {
    width: 100%;
    padding: 0 15%;
  }
  .divisionFeatureContent {
    width: 100%;
    margin-bottom: 30px;
  }
  .divisionFeatureTitle {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .divisionItemList {
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .divisionItemList figure {
    width: 48.5%;
    margin-bottom: 25px;
    text-align: center;
  }
  .divisionItemList figure:not(:nth-child(4n)) {
    margin-right: 0;
  }
  .divisionItemList figure:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .divisionFacilityAttention {
    font-size: 14px;
  }
  .divisionGallery {
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .divisionGallery figure {
    width: calc(50% - 20px);
    margin-bottom: 25px;
  }
  .divisionGallery figure:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .divisionGallery figure:not(:nth-child(2n)) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 568px) {
  .divisionOfficeAddress {
    width: 100%;
  }
  .divisionOfficeISO {
    width: 100%;
  }
  .divisionItemList figcaption {
    font-size: 14px;
  }
  .divisionGallery figcaption {
    font-size: 14px;
  }
}

@media screen and (max-width: 374px) {
  .divisionReadTitle {
    font-size: 20px;
  }
  .divisionFeatureTitle {
    font-size: 20px;
  }
}

.fukaeismRead .divisionReadImg {
  max-width: 475px;
}

.fukaeismPlan .divisionReadImg {
  max-width: 320px;
}

.historyNav {
  width: 100%;
  margin-bottom: -20px;
}

.historyNav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  list-style: none;
  margin: 0;
}

.historyNav li {
  width: calc(33.33% - 20px);
  margin-bottom: 20px;
}

.historyNav li a {
  display: inline-block;
  width: 100%;
  padding: 10px;
  font-size: 22px;
  text-align: center;
  background: #e9e9e9;
  border: 1px solid #ddd;
}

.historyNav li a span, .historyNav li a small {
  display: inline-block;
}

.historyNav li a small {
  margin-left: 10px;
  font-size: 16px;
}

.historyNav li.is-current a {
  background: #a4d092;
}

.historyReadTitle {
  margin-bottom: 40px;
  font-size: 34px;
  text-align: center;
}

.ismNav {
  width: 100%;
  padding: 90px 20px 100px;
  text-align: center;
  background: #eaeaea;
}

.ismNav img {
  margin-bottom: 10px;
  vertical-align: none;
}

.ismNavList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto -30px;
  font-size: 24px;
  list-style: none;
}

.ismNavList li {
  width: calc(50% - 20px);
  margin-bottom: 30px;
}

.ismNavList a {
  display: block;
}

.ismNavList a:hover {
  opacity: .5;
}

.ismNavList .fa {
  position: absolute;
  top: 50%;
  right: 5px;
  bottom: auto;
  left: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
  .historyNav {
    margin-bottom: -15px;
  }
  .historyNav li {
    width: calc(33.33% - 10px);
    margin-bottom: 15px;
  }
  .historyNav li a {
    font-size: 18px;
  }
  .historyNav li a small {
    margin-left: 6px;
    font-size: 14px;
  }
  .historyReadTitle {
    font-size: 28px;
  }
  .ismNav {
    padding: 70px 3.5% 80px;
  }
}

@media screen and (max-width: 900px) {
  .ismNavList {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .fukaeismRead .divisionReadImg {
    max-width: 100%;
  }
  .fukaeismPlan .divisionReadImg {
    max-width: 100%;
  }
  .historyNav {
    margin-bottom: -10px;
  }
  .historyNav li {
    width: 48.5%;
    margin-bottom: 10px;
  }
  .historyNav li a {
    line-height: 1;
    font-size: 14px;
  }
  .historyNav li a span, .historyNav li a small {
    width: 100%;
  }
  .historyNav li a small {
    margin-left: 0;
    font-size: 11px;
  }
  .historyReadTitle {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
  }
  .historyReadTitle br {
    display: none;
  }
  .ismNav {
    padding: 50px 3.5% 60px;
  }
  .ismNavList {
    margin: 0 auto -20px;
    font-size: 18px;
  }
  .ismNavList img {
    margin-bottom: 5px;
  }
  .ismNavList li {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 414px) {
  .fukaeismPlan .divisionReadImg {
    max-width: 100%;
    padding: 0 25% 1em;
  }
}

@media screen and (max-width: 374px) {
  .historyReadTitle {
    font-size: 20px;
  }
  .ismNavList {
    font-size: 14px;
  }
}

.productsRead::after {
  content: '';
  display: table;
  width: 100%;
}

.productsReadTitle {
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 1.4;
  text-align: center;
}

.productsReadImg {
  float: right;
  width: 100%;
  max-width: 50%;
  padding: 0 0 0 1.5em;
  margin-left: 1em;
  text-align: right;
}

.productsReadPar {
  line-height: 1.7;
}

.productsReadPar > *:last-child {
  margin: 0;
}

.productsFeatureList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.productsFeatureList:not(:last-of-type) {
  margin-bottom: 100px;
}

.productsFeatureList.no-img .divisionFeatureContent {
  width: 100% !important;
}

.productsFeatureList img {
  vertical-align: bottom;
}

.productsFeatureImg {
  width: 380px;
  margin-left: 50px;
}

.productsFeatureContent {
  width: calc(100% - 450px);
}

.no-img .productsFeatureContent {
  width: 100%;
  padding-right: 0;
}

.productsFeatureContent .imgList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  width: 100%;
}

.productsFeatureContent .imgList figure {
  width: 380px;
  margin-right: 30px;
}

.productsFeatureTitle {
  margin-bottom: 25px;
  font-size: 40px;
}

.productsFeatureTitle small {
  display: inline-block;
  font-size: .75em;
  -webkit-transform: translate(0, -0.7em);
          transform: translate(0, -0.7em);
}

.productsFeaturePar > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .productsReadTitle {
    font-size: 28px;
  }
  .productsFeatureTitle {
    font-size: 28px;
  }
  .productsFeatureImg {
    width: 31.33%;
    margin-left: 0;
  }
  .productsFeatureContent {
    width: 66.66%;
  }
  .no-img .productsFeatureContent {
    width: 100%;
  }
  .productsFeatureContent .imgList {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    width: 100%;
  }
  .productsFeatureContent .imgList figure {
    width: 31.33%;
  }
}

@media screen and (max-width: 800px) {
  .productsReadImg {
    max-width: 46%;
    padding: 0 0 30px 1em;
  }
}

@media screen and (max-width: 767px) {
  .productsReadTitle {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .productsReadTitle br {
    display: none;
  }
  .productsReadImg {
    float: none;
    max-width: 100%;
    padding: 0 15% 1.5em;
    margin: 0;
    text-align: center;
  }
  .productsFeatureImg {
    width: 100%;
    padding: 0 15%;
  }
  .productsFeatureContent {
    width: 100%;
    margin-bottom: 30px;
  }
  .productsFeatureContent .imgList {
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
  .productsFeatureContent .imgList figure {
    width: 100%;
    padding: 0 15%;
    margin: 0;
  }
  .productsFeatureContent .imgList figure + figure {
    margin-top: 20px;
  }
  .productsFeatureTitle {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 374px) {
  .productsReadTitle {
    font-size: 20px;
  }
  .productsFeatureTitle {
    font-size: 20px;
  }
}

.companyMessage::after {
  content: '';
  display: table;
  width: 100%;
}

.companyMessageName {
  text-align: right;
}

.companyMessageTitle {
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 1.4;
}

.companyMessageImg {
  float: left;
  width: 100%;
  max-width: 580px;
  padding: 0 1.5em 50px 0em;
  text-align: right;
}

.companyProfile {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: stretch;
          align-items: stretch;
  width: 100%;
}

.companyProfile img {
  vertical-align: bottom;
}

.companyProfile .pageTitle {
  width: 100%;
}

.companyProfileImg {
  -webkit-order: 3;
          order: 3;
  width: calc(50% - 40px);
  text-align: right;
}

.companyProfileDetail {
  -webkit-order: 2;
          order: 2;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: calc(50% - 40px);
}

.companyProfileDetail iframe {
  width: 100%;
  vertical-align: bottom;
}

.companyProfileTable {
  font-size: 16px;
  background: #ddd;
}

.companyProfileTable th {
  width: 150px;
  background: #f9f9f9;
}

.companyHistoryTable {
  font-size: 16px;
  background: #ddd;
}

.companyHistoryTable th {
  width: 150px;
  background: #f9f9f9;
}

.companyHistoryTable a {
  color: #0060ff;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {
  .companyMessageTitle {
    font-size: 28px;
  }
  .companyProfileImg {
    width: calc(50% - 20px);
  }
  .companyProfileDetail {
    width: calc(50% - 20px);
  }
  .companyProfileTable {
    font-size: 16px;
  }
  .companyProfileTable th {
    width: 130px;
  }
  .companyHistoryTable {
    font-size: 16px;
  }
  .companyHistoryTable th {
    width: 130px;
  }
}

@media screen and (max-width: 800px) {
  .companyMessageImg {
    max-width: 40%;
    padding: 0 1.5em 30px 0;
  }
  .companyProfileImg {
    -webkit-order: 2;
            order: 2;
    width: 100%;
    padding: 0 15%;
    margin-bottom: 30px;
  }
  .companyProfileDetail {
    -webkit-order: 3;
            order: 3;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .companyMessageName {
    text-align: right;
  }
  .companyMessageName img {
    height: 2.5em;
  }
  .companyMessageTitle {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .companyMessageImg {
    float: none;
    max-width: 100%;
    padding: 0 15% 1em;
    text-align: center;
  }
  .companyProfileTable {
    font-size: 14px;
  }
  .companyProfileTable th {
    width: 100px;
    background: #f9f9f9;
  }
  .companyHistoryTable {
    display: block;
    font-size: 14px;
    background: none;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
  }
  .companyHistoryTable tbody, .companyHistoryTable tr, .companyHistoryTable th, .companyHistoryTable td {
    display: block;
    width: 100%;
  }
  .companyHistoryTable th, .companyHistoryTable td {
    margin-bottom: 1px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .companyHistoryTable th {
    font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .companyHistoryTable td {
    font-family: "FOT-筑紫ゴシック Pr5 R", "TsukuGoPr5-R", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }
  .companyHistoryTable tbody:last-child {
    margin-bottom: 1px;
  }
  .companyHistoryTable:not(.recruitTable) td br {
    display: none;
  }
}

@media screen and (max-width: 374px) {
  .companyMessageTitle {
    font-size: 20px;
  }
}

.inquiryRead, .inquiryRead2 {
  font-size: 18px;
  text-align: center;
}

.inquiryRead2 {
  margin-bottom: 0;
}

.inquiryList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  padding: 45px 50px 20px;
  margin-bottom: 50px;
  border: 1px solid #d8d8d8;
  background: #f9f9f9;
}

.inquiryList:last-of-type {
  margin-bottom: 0;
}

.inquiryList h3 {
  width: 60%;
  margin-bottom: 40px;
  line-height: 1.4;
}

.inquiryList h3 span {
  display: block;
  width: 100%;
  font-size: 34px;
  font-family: "FOT-筑紫ゴシック Pr5 M", "TsukuGoPr5-M", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryList h3 a {
  font-family: "FOT-筑紫ゴシック Pro E", "TsukuGoPro-E", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryList h3 a:hover {
  opacity: .5;
  text-decoration: underline;
}

.inquiryList .formLink {
  width: 40%;
  margin-bottom: 40px;
  text-align: right;
}

.inquiryList .button {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 10px;
  height: 80px;
  width: 100%;
  max-width: 350px;
  font-size: 22px;
  font-family: "FOT-筑紫ゴシック Pro E", "TsukuGoPro-E", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  background: #008927;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.inquiryList .button:hover {
  opacity: .6;
}

.inquiryList .button span {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  text-align: center;
}

.inquiryList .button:before {
  display: inline-block;
  width: 1em;
  min-width: 1em;
  content: '';
  text-align: center;
}

.inquiryList .button i {
  width: 1em;
  text-align: right;
}

.inquiryOffice {
  font-size: 16px;
  background: #ddd;
}

.inquiryOffice th, .inquiryOffice td {
  padding: 15px 20px;
}

.inquiryOffice th {
  width: 300px;
  background: #f9f9f9;
  vertical-align: middle;
}

.inquiryOfficeList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.inquiryOfficeItem {
  width: 50%;
  margin-bottom: 20px;
  line-height: 1.6;
}

.inquiryOfficeItem > span {
  display: inline-block;
}

.inquiryOfficeItem .tel > span {
  font-size: 1.6em;
  line-height: 1.2;
  color: #008927;
}

.inquiryOfficeItem .tel a {
  color: #008927;
}

.inquiryOfficeItem .zip, .inquiryOfficeItem .tel {
  padding-right: 1em;
}

.inquiryTable {
  margin-bottom: 50px;
  background: #ccc;
}

.inquiryTable th, .inquiryTable td {
  padding: 15px;
  vertical-align: middle;
  background: #fff;
}

.inquiryTable th {
  text-align: center;
  background: #f9f9f9;
}

.inquiryTable th.th1 {
  width: 95px;
}

.inquiryTable th.th2 {
  width: 184px;
}

.inquiryTable th.is-required:after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1em;
  bottom: auto;
  left: auto;
  content: '必須';
  width: 2em;
  font-size: 12px;
  color: #ea0000;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.inquiryTable td label {
  display: inline-block;
  margin-right: 2em;
}

.inquiryTable td label input {
  margin-right: .5em;
}

.inquiryTable td select {
  font-size: 16px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryTable td input {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryTable td [type="text"],
.inquiryTable td [type="email"],
.inquiryTable td [type="tel"] {
  padding: .2em .5em;
  font-size: 16px;
  border: 1px solid #ddd;
}

.inquiryTable td textarea {
  padding: .2em .5em;
  width: 100%;
  height: 200px;
  border: 1px solid #ddd;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryTable td [type="tel"] {
  width: 220px;
}

.inquiryTable td [type="email"] {
  width: 300px;
}

.inquiryTable.schoolInfo th {
  width: 280px;
}

.inquiryTable .form-other th {
  font-size: 16px;
}

.inquiryTable .form-other td input {
  width: 100%;
  max-width: 500px;
}

.inquiryTable .form-company td input,
.inquiryTable .form-furi td input,
.inquiryTable .form-department td input,
.inquiryTable .form-name td input {
  width: 300px;
}

.inquiryTable .form-address1 td input,
.inquiryTable .form-address2 td input,
.inquiryTable .form-address3 td input {
  width: 400px;
}

.inquiryTable .form-zip td .zipcode1 {
  width: 80px;
  margin-right: .5em;
}

.inquiryTable .form-zip td .zipcode2 {
  width: 100px;
}

.inquiryTable .form-zip td .button-zip {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  background: #ddd;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 4px 1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.inquiryTable .form-zip td .button-zip:hover {
  opacity: .6;
}

.inquiryTable .form-tel label {
  width: 100%;
  margin: 0 0 10px;
}

.inquiryTable .form-tel label:last-child {
  margin-bottom: 0;
}

.inquiryTable .form-birth td > div,
.inquiryTable .form-graduate td > div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}

.inquiryTable .form-birth td span,
.inquiryTable .form-graduate td span {
  display: inline-block;
  padding: 0 5px;
  line-height: 1.2;
  vertical-align: middle;
}

.inquiryTable .privacyTD {
  height: 250px;
}

.inquiryTable .privacyArea {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 250px;
  padding: 20px;
  font-size: 16px;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.inquiryTable .privacyArea h4 {
  font-size: 1.4em;
  margin-bottom: 20px;
  text-align: center;
  font-family: "FOT-筑紫ゴシック Pro E", "TsukuGoPro-E", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryTable .privacyArea dt {
  font-size: 1.2em;
  font-family: "FOT-筑紫ゴシック Pro E", "TsukuGoPro-E", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryTable .privacyArea .signature h6, .inquiryTable .privacyArea .signature b {
  font-family: "FOT-筑紫ゴシック Pro E", "TsukuGoPro-E", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.inquiryTable .privacyArea .signature p {
  margin-bottom: 0;
}

.inquiryTable .checkItem {
  display: inline-block;
  padding-right: 3em;
}

.privacyConfirm {
  text-align: center;
  margin: -1em 0 4em;
  font-size: 18px;
}

.privacyConfirm input {
  margin-right: .5em;
}

.mw_wp_form .inquiryTable td .horizontal-item + .horizontal-item {
  margin-left: 0;
}

.mw_wp_form_confirm .inquiryTable td .only-input {
  display: none;
}

.submitArea {
  text-align: center;
}

.buttonTwoBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
}

.buttonTwoBlock > * {
  width: 49%;
  margin-bottom: 0;
}

.buttonTwoBlock > *:first-child {
  text-align: right;
}

.buttonTwoBlock > *:last-child {
  text-align: left;
}

.buttonTwoBlock > * .button {
  margin: 0;
}

.button-prev,
.button-submit {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 10px;
  height: 80px;
  width: 100%;
  max-width: 350px;
  font-size: 22px;
  color: #fff !important;
  background: #008927;
  border-radius: 10px;
  border: none;
  -webkit-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-prev:hover,
.button-submit:hover {
  opacity: .6;
}

.button-prev span,
.button-submit span {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  font-family: "FOT-筑紫ゴシック Pro E", "TsukuGoPro-E", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600 !important;
}

.button-prev:before,
.button-submit:before {
  display: inline-block;
  width: 1em;
  min-width: 1em;
  content: '';
  text-align: center;
}

.button-prev i,
.button-submit i {
  display: inline-block;
  width: 1em;
  text-align: right;
}

.button-prev {
  background: #999;
  color: #fff !important;
}

.button-prev i {
  text-align: left;
}

.button-prev:before {
  display: none;
}

.button-prev:after {
  display: inline-block;
  content: '';
  width: 1em;
  min-width: 1em;
  text-align: center;
}

.stepBar {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: -20px auto 40px;
  padding: 0 15px;
  text-align: center;
  list-style: none;
}

.stepBar .step {
  -webkit-flex: 1;
          flex: 1;
  padding: 0 40px 0 20px;
  line-height: 50px;
  font-size: 20px;
  font-weight: 600;
  background: #e6e6e6;
}

.stepBar .step > em {
  font-style: normal;
}

.stepBar .step:before, .stepBar .step:after {
  position: absolute;
  left: -15px;
  display: block;
  content: '';
  background: #e6e6e6;
  border-left: 4px solid #fff;
  width: 20px;
  height: 25px;
}

.stepBar .step:after {
  top: 0;
  -webkit-transform: skew(30deg);
          transform: skew(30deg);
}

.stepBar .step:before {
  bottom: 0;
  -webkit-transform: skew(-30deg);
          transform: skew(-30deg);
}

.stepBar .step:first-child:before, .stepBar .step:first-child:after {
  content: none;
}

.stepBar .step.current {
  background-color: #9ac987;
}

.stepBar .step.current:before, .stepBar .step.current:after {
  background-color: #9ac987;
}

.commonWrapper.formThanx h3 {
  margin-bottom: 10px;
  color: #008927;
  font-size: 30px;
  font-family: "FOT-筑紫ゴシック Pr5 D", "TsukuGoPr5-D", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.commonWrapper.formThanx h3 + p {
  margin-bottom: 2em;
  text-align: center;
}

.commonWrapper.formThanx hr {
  margin-bottom: 2em;
}

.page-recruit .commonWrapper.formThanx {
  padding-top: 10px;
}

.commonWrapper.is-type3.formThanx {
  text-align: left;
}

.commonWrapper.is-type3.formThanx h3 {
  text-align: center;
}

.commonWrapper.is-type3.formThanx p {
  width: 80%;
  margin: 0 auto 2em auto;
}

@media screen and (max-width: 1060px) {
  .inquiryRead2 {
    font-size: 14px;
  }
  .inquiryList {
    padding: 40px 40px 20px;
    margin-bottom: 50px;
  }
  .inquiryList h3 span {
    font-size: 28px;
  }
  .inquiryList .button {
    height: 60px;
    font-size: 20px;
  }
  .inquiryOfficeItem {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .stepBar {
    margin: -20px auto 30px;
  }
  .commonWrapper.is-type3.formThanx {
    margin-bottom: -20px;
  }
  .commonWrapper.is-type3.formThanx p {
    width: 100%;
  }
}

@media screen and (max-width: 940px) {
  .inquiryList {
    padding: 20px 25px 0;
    margin-bottom: 50px;
  }
  .inquiryList h3 {
    margin-bottom: 20px;
  }
  .inquiryList h3 span {
    font-size: 22px;
  }
  .inquiryList .formLink {
    margin-bottom: 20px;
  }
  .inquiryList .button {
    height: 50px;
    font-size: 18px;
  }
  .inquiryOfficeItem {
    font-size: 14px;
  }
  .stepBar .step {
    font-size: 16px;
  }
}

@media screen and (max-width: 800px) {
  .inquiryOfficeItem {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .inquiryRead {
    font-size: 14px;
  }
  .inquiryRead, .inquiryRead2 {
    padding: 0 1em;
  }
  .inquiryList {
    padding: 20px 5% 0;
  }
  .inquiryList h3 {
    width: 100%;
  }
  .inquiryList h3 span {
    font-size: 18px;
  }
  .inquiryList .formLink {
    width: 100%;
  }
  .inquiryList .button {
    max-width: 100%;
    height: 40px;
    font-size: 15px;
  }
  .inquiryOfficeItem {
    width: 100%;
  }
  .inquiryTable {
    display: block;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
  }
  .inquiryTable tbody, .inquiryTable tr, .inquiryTable th, .inquiryTable td {
    display: block;
    width: 100%;
  }
  .inquiryTable th, .inquiryTable td {
    padding: 6px 10px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
  }
  .inquiryTable th {
    font-weight: 500;
    text-align: left;
  }
  .inquiryTable th.th1 {
    width: 100%;
  }
  .inquiryTable th.th2 {
    width: 100%;
  }
  .inquiryTable.schoolInfo th {
    width: 100%;
  }
  .inquiryTable td {
    font-size: 14px;
    min-height: 2em;
  }
  .inquiryTable td select,
  .inquiryTable td tel,
  .inquiryTable td [type="tel"],
  .inquiryTable td [type="email"] {
    width: 100%;
  }
  .inquiryTable .form-other td input {
    max-width: 100%;
  }
  .inquiryTable .form-company td input,
  .inquiryTable .form-furi td input,
  .inquiryTable .form-department td input,
  .inquiryTable .form-name td input,
  .inquiryTable .form-address1 td input,
  .inquiryTable .form-address2 td input,
  .inquiryTable .form-address3 td input {
    width: 100%;
  }
  .inquiryTable .checkItem {
    display: inline-block;
    padding-right: 2em;
  }
  .inquiryTable .privacyArea {
    font-size: 12px;
  }
  .inquiryTable .privacyArea h4 {
    margin-bottom: 12px;
  }
  .buttonTwoBlock {
    -webkit-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .buttonTwoBlock > * {
    width: 100%;
  }
  .buttonTwoBlock > *.next {
    -webkit-order: 1;
            order: 1;
    margin-bottom: 15px;
  }
  .buttonTwoBlock > *.prev {
    -webkit-order: 2;
            order: 2;
  }
  .button-prev,
  .button-submit {
    max-width: 100%;
    height: 40px;
    font-size: 15px;
    border-radius: 6px;
  }
  .stepBar {
    margin: 0 auto 20px;
    padding: 0 3.5%;
  }
  .stepBar .step {
    padding: 0 20px 0 10px;
    line-height: 40px;
    font-size: 14px;
    background: #e6e6e6;
  }
  .stepBar .step > em {
    display: none;
  }
  .stepBar .step:before, .stepBar .step:after {
    position: absolute;
    left: -10px;
    width: 10px;
    height: 20px;
  }
  .stepBar .step:after {
    -webkit-transform: skew(25deg);
            transform: skew(25deg);
  }
  .stepBar .step:before {
    bottom: 0;
    -webkit-transform: skew(-25deg);
            transform: skew(-25deg);
  }
  .commonWrapper.is-type3.formThanx {
    padding: 40px 0 30px;
    text-align: left;
  }
  .commonWrapper.is-type3.formThanx h3 {
    font-size: 20px;
    text-align: center;
  }
  .commonWrapper.is-type3.formThanx p {
    font-size: .825em;
  }
  .page-recruit .commonWrapper.is-type3.formThanx {
    padding-top: 0;
    margin-top: 20px;
  }
  .page-recruit-confirm .commonWrapper:nth-of-type(1) {
    padding: 0 0 30px;
    margin-top: 20px;
  }
  .privacyConfirm {
    margin: -2em 0 2em;
    font-size: 1em;
  }
}

@media screen and (max-width: 413px) {
  .inquiryOfficeItem .zip {
    width: 100%;
  }
  .inquiryRead2 br {
    display: none;
  }
  .inquiryTable .form-zip td .zipcode1 {
    width: 60px;
  }
  .inquiryTable .form-zip td .zipcode2 {
    width: 80px;
  }
  .inquiryTable .form-zip td .button-zip {
    font-size: 12px;
    padding: 6px 1em;
  }
  .stepBar .step {
    line-height: 30px;
  }
  .stepBar .step:before, .stepBar .step:after {
    height: 15px;
  }
}

@media screen and (max-width: 374px) {
  .inquiryRead {
    font-size: 12px;
  }
  .inquiryTable .form-zip td .zipcode1 {
    width: 55px;
  }
  .inquiryTable .form-zip td .zipcode2 {
    width: 75px;
  }
  .inquiryTable .form-zip td .button-zip {
    padding: 6px .6em;
  }
  .commonWrapper.is-type3.formThanx {
    padding: 20px 0 10px;
  }
  .page-recruit .commonWrapper.is-type3.formThanx {
    padding-top: 0;
  }
}

.recruitMV {
  width: 100%;
  height: 550px;
  margin: 0;
}

.recruitMV:before {
  display: block;
  content: '';
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 1400px;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  background: right top no-repeat url("../images/recruit/index/key.jpg");
  background-size: cover;
}

.recruitMV span {
  position: absolute;
  display: block;
  top: 50%;
  right: 50%;
  width: 100%;
  max-width: 1280px;
  padding-left: 40px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  font-family: "FOT-筑紫明朝 Pr6 D", "TsukuMinPr6-D", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 46px;
  line-height: 1.4;
  color: #000;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, .8);
}

.recruitMV + .divisionFeature {
  margin-bottom: 80px;
}

.recruitStaffMV {
  width: 100%;
  height: 550px;
  margin-top: 1px;
  margin-bottom: 0;
}

.recruitStaffMV + .commonWrapper {
  padding-top: 40px;
}

.recruitStaffMV .img {
  display: block;
  content: '';
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 1400px;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.recruitStaffMV .recruitStaffMVRead {
  position: absolute;
  right: 50%;
  top: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 600px;
  height: 400px;
  padding: 0 40px;
  background: rgba(255, 255, 255, .8);
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.4;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.recruitStaffMV .recruitStaffMVRead .staffMeta {
  width: 100%;
  font-size: 16px;
  margin-bottom: 15px;
}

.recruitStaffMV .recruitStaffMVRead .staffMeta span {
  display: inline-block;
  min-width: 10.4em;
  padding: 3px 1.2em;
  margin-right: .6em;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: #008927;
}

.recruitStaffMV .recruitStaffMVRead .staffCatch {
  width: 100%;
  margin-bottom: 15px;
  font-size: 36px;
  font-family: "FOT-筑紫明朝 Pr6 D", "TsukuMinPr6-D", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.2;
}

.recruitStaffMV .recruitStaffMVRead .staffName {
  width: 100%;
  font-size: 30px;
}

.recruitStaffMV .recruitStaffMVRead .staffName small {
  display: inline-block;
  margin-right: .5em;
}

.recruitStaffMV .recruitStaffMVRead .staffEducation {
  width: 100%;
  font-size: 16px;
  margin: 0;
}

.recruitStaffRead {
  margin-bottom: 85px;
  font-size: 16px;
}

.staffInterview {
  width: 100%;
}

.staffInterview img {
  vertical-align: bottom;
}

.staffInterviewList,
.staffInterviewList02{
  width: 100%;
  padding-top: 70px;
  margin-bottom: 100px;
}
.staffInterview:not(.reverse) .staffInterviewList:nth-child(even) .staffInterviewImg,
.staffInterview.reverse .staffInterviewList:nth-child(odd) .staffInterviewImg {
  right: auto;
  left: 0;
}
.staffInterview:not(.reverse) .staffInterviewList02:nth-child(even) .staffInterviewImg,
.staffInterview.reverse .staffInterviewList02:nth-child(odd) .staffInterviewImg {
  right: auto;
  left: 0;
}

.staffInterview:not(.reverse) .staffInterviewList:nth-child(even) .staffInterviewContent,
.staffInterview.reverse .staffInterviewList:nth-child(odd) .staffInterviewContent {
  margin-left: 50%;
}
.staffInterview:not(.reverse) .staffInterviewList02:nth-child(even) .staffInterviewContent,
.staffInterview.reverse .staffInterviewList02:nth-child(odd) .staffInterviewContent {
  margin-left: 50%;
}
.staffInterviewImg {
  position: absolute;
  right: 0;
  top: 0;
  width: 66.66%;
}

.staffInterviewImg img + img {
  margin-top: 2px;
}

.staffInterviewContent {
  width: 50%;
  padding: 60px 40px;
  background: #f8f8f8;
  font-size: 16px;
}
.staffInterviewPar{
  margin-bottom: 60px;
}
.staffInterviewTitle {
  margin-bottom: .8em;
  font-size: 30px;
  font-family: "FOT-筑紫明朝 Pr6 D", "TsukuMinPr6-D", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.staffInterviewTitle span{
  margin-right: 5px;
  color: #0c6d29;
}
.staffInterviewTitle i {
  margin-right: .3em;
}

.staffInterviewContent > *:last-child {
  margin-bottom: 0 !important;
}


.staffInterviewComment {
  background-color: #0c6d29;
}
.staffInterviewComment::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 15vh solid #027e23;  /* 三角を白にする */
  border-left: 96vw solid transparent;
}
.staffInterviewComment > .inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
.staffInterviewCommentLeft{
  width: 65%;
  padding: 20px 0;
}
.staffInterviewComment figure{
  width: 30%;
  margin-top: -160px;
  vertical-align: baseline;
}
.staffInterviewComment img{
  width: 100%;
  vertical-align: bottom;
  filter: drop-shadow(5px -1px 5px rgba(0,0,0,.2));
}
.staffInterviewComment h5{
  margin-bottom: 20px;
  font-size: 34px;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  line-height: 1;
  color: #fff;
}

.staffInterviewComment h5 span {
  font-size: 18px;

}
.staffInterviewComment h5:first-letter {
  font-size: 150%;
  color: #f2bd19;
}

.speechBubbleR{
  position: relative;
  width: 100%;
  /*height: 200px;*/
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  font-size: 20px;
}
.speechBubbleR::after {
  border-left: 15px solid #fff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  content: '';
  margin-top: -13px;
  position: absolute;
  right: -15px;
  top: 50%;
}


.staffList {
  width: 100%;
}

.staffList h3 {
  margin-bottom: 60px;
  font-size: 34px;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  text-align: center;
}

.staffList ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  list-style: none;
  margin: 0;
}

.staffList ul img {
  vertical-align: bottom;
}

.staffList ul li {
  width: calc(50% - 10px);
  margin-bottom: 20px;
}

.staffList li.staffOld a{
  background: #f8f8f8;
  border: 1px solid #ddd;
}
.staffList li.staffNew a{
  background: #333;
  color: #fff;
}
.staffList li.staffNew:before {
  border-color: transparent #f2bd19 transparent transparent;
  border-style: solid;
  border-width: 0 60px 60px 0;
  content: "";
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  z-index: 2;
}
.staffList li.staffNew:after {
  content: "NEW";
  font-size: 12px;
  position: absolute;
  top: 15px;
  right: 8px;
  transform: rotate(45deg);
  z-index: 3;
}

.staffList ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.staffList ul li a > div,
.staffList ul li a figure {
  width: 50%;
}

.staffList ul li a > div {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 35px 20px 0;
}

.staffList ul li a .job {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 180px;
  margin: 0;
  font-size: 18px;
  padding: 2px 0;
  text-align: center;
  background: #008927;
  color: #fff;
}

.staffList ul li a .name {
  font-size: 30px;
  margin-bottom: 15px;
}

.staffList ul li a .name small {
  font-size: .666em;
}

.staffList ul li a .meta {
  margin-bottom: 0;
  font-size: 14px;
}

.workplaceList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 90px;
  font-size: 16px;
}

.workplaceList > div {
  width: 50%;
  padding-right: 60px;
}

.workplaceList > figure {
  width: 50%;
}

.workplaceList > figure img {
  vertical-align: bottom;
}

.workplaceListTitle {
  width: 100%;
  padding: 5px 0;
  margin-bottom: 30px;
  font-size: 30px;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.workplaceListTitle:before, .workplaceListTitle:after {
  display: block;
  content: '';
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #ddd;
}

.workplaceListTitle:after {
  right: auto;
  width: 150px;
  background: #008927;
}

.workplaceList .read {
  margin-bottom: 45px;
  text-align: left;
}

.workplaceList dl {
  width: 100%;
  margin-bottom: 0;
}

.workplaceList dl dt {
  width: 100%;
  margin-bottom: 5px;
  padding-left: 40px;
  font-family: "FOT-筑紫明朝 Pr6 D", "TsukuMinPr6-D", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 26px;
}

.workplaceList dl dt:before {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  content: '';
  width: 30px;
  height: 2px;
  margin-top: -1px;
  background: #000;
}

.workplaceList dl dd {
  width: 100%;
  padding-left: 40px;
  margin-bottom: 0;
}


.companyHistoryTable.recruitTable {
  margin-bottom: 50px;
}

.companyHistoryTable.recruitTable + .submitArea .button-submit {
  min-width: 500px;
  font-size: 30px;
}

.companyHistoryTable.recruitTable .col150 {
  display: inline-block;
  min-width: 150px;
}

.companyHistoryTable.recruitTable .col180 {
  display: inline-block;
  min-width: 180px;
}

/* fukae womans*/
.womansIndex01-1 {
  width: 100%;
  text-align: center;
  /*margin-top: -40px;*/

}
.womansIndex01-2 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  width: 100%;
}

.womansIndex01-1 img,
.womansIndex01-2 img,
.womansIndex01-3 img{
  vertical-align: bottom;
}

.womansIndex01-1 img{
  border: 1px solid #ff7b7b;
}
#womansIndex01,
#womansIndex02 {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  width: 50%;
  padding: 70px 20px;
}
#womansIndex03 {
  width: 100%;
  padding: 70px 20px;
  margin: 0 auto;
}

.is-ie #womansIndex01, .is-ie
#womansIndex02,
#womansIndex03{
  display: block;
}

#womansIndex01 a,
#womansIndex02 a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
}
#womansIndex03 a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1160px;
  text-align: center;
  margin: 0 auto;
}
#womansIndex01 a:hover,
#womansIndex02 a:hover,
#womansIndex03 a:hover{
  opacity: .7;
}

#womansIndex01::after,
#womansIndex02::after,
#womansIndex03::after{
  content: '';
  display: table;
  width: 100%;
}

#womansIndex01 h2,
#womansIndex02 h2{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 0 0 0 30px;
  color: #fff;
  text-shadow: 0 0 5px black;
  width: 100%;
  text-align: left;
  z-index: 10;
}
#womansIndex03 h2{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  padding: 0 0 0 30px;
  color: #111;
  text-shadow: 0 0 5px #fff;
  width: 100%;
  text-align: left;
  z-index: 10;
}

#womansIndex01 .indexSecTitle,
#womansIndex02 .indexSecTitle,
#womansIndex03 .indexSecTitle{
  font-size: 32px;
  margin-bottom: 30px;
  line-height: 1.4;
}

#womansIndex01 figure,
#womansIndex02 figure,
#womansIndex03 figure{
  width: 100%;
}
#womansIndex01 figure:after, #womansIndex01 figure:before,
#womansIndex02 figure:after,
#womansIndex02 figure:before,
#womansIndex03 figure:after, #womansIndex03 figure:before{
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  display: block;
  content: '';
  width: 30px;
  height: 33.33%;
  background: #ff7b7b;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

#womansIndex01 figure:after,
#womansIndex02 figure:after,
#womansIndex03 figure:after{
  right: 15px;
  width: 16px;
  height: 18px;
  background: center center no-repeat url("../images/common/button-arrow-white.png");
  background-size: contain;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

#womansIndex01 {
  -webkit-align-items: flex-end;
  align-items: flex-end;
  background: #fdddd8;
}

.is-ie #womansIndex01 a {
  float: right;
}

#womansIndex02 {
  -webkit-align-items: flex-start;
  align-items: flex-start;
  background: #ffe9e5;
}
/*#womansIndex03 {*/
  /*background: #fff5f3;*/
/*}*/

.womansJobtype {
  width: 100%;
}

.womansJobtype img {
  vertical-align: bottom;
}

.womansJobtypeList {
  width: 100%;
  padding-top: 50px;
  margin-bottom: 150px;
}

.womansJobtype:not(.reverse) .womansJobtypeList:nth-child(even) .womansJobtypeImg,
.womansJobtype.reverse .womansJobtypeList:nth-child(odd) .womansJobtypeImg {
  right: auto;
  left: 0;
}

.womansJobtype:not(.reverse) .womansJobtypeList:nth-child(even) .womansJobtypeContent,
.womansJobtype.reverse .womansJobtypeList:nth-child(odd) .womansJobtypeContent {
  margin-left: 43%;
}

.womansJobtypeImg {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;

}
.womansJobtypeContent {
  width: 57%;
  padding: 70px 50px;
  background: #f8f8f8;
  font-size: 16px;
}
.womansJobtypeContent100 {
  width: 100%;
  padding: 70px 50px;
  background: #f8f8f8;
  font-size: 16px;
  margin-top: -50px;
}

.womansTitle {
  margin-bottom: .8em;
  font-size: 30px;
  border-bottom: solid 4px #ffd295;
  padding-bottom:  5px;
  position:  relative;
  font-weight:  normal;
}
.womansTitle:before {
  content:  '';
  width: 150px;
  height: 4px;
  background-color: #ff7b7b;
  display:  block;
  position:  absolute;
  left:  0;
  bottom: -4px;
}

.womansApproachPhoto{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.womansApproachPhoto img{
  width: 49%;
  height: 100%;
}

.womansApproachList {
  margin-bottom: 85px;
}

.womansApproachList .read {
  font-size: 16px;
  text-align: left;
}

.womansApproachList .womansApproach > dt {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.womansApproachList .womansApproach > dd {
  padding-left: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.womansApproachList .womansApproach > dd > dl {
  margin-bottom: 0;
}

.womansApproachList .womansApproach > dd > dl dt {
  margin-bottom: 15px;
}

.womansApproachList .womansApproach > dd > dl dd {
  margin-bottom: 30px;
  line-height: 1.4;
}

.womansApproachList .womansApproach > dd > dl dd *:last-child {
  margin-bottom: 0;
}

.womansApproachList .womansApproach > dd > dl dd ul {
  margin: 0 0 0 3em;
  padding-top: 25px;
  list-style: disc;
}

.womansApproachList .womansApproach > dd > dl dd ul li {
  padding-top: 0 !important;
}

.womansApproachList .womansApproach .goal,
.womansApproachList .womansApproach .goal2 {
  width: 100%;
  padding: 10px 1em;
  margin-bottom: 0;
  background: #ffe9e5;
}

.womansApproachList .womansApproach .goal + .goal,
.womansApproachList .womansApproach .goal + .goal2,
.womansApproachList .womansApproach .goal2 + .goal,
.womansApproachList .womansApproach .goal2 + .goal2 {
  margin-top: 10px;
}

.womansApproachList .womansApproach .goal {
  font-family: "FP-ヒラギノ角ゴ ProN W6", "FP-HiraKakuProN-W6", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.womansApproachList .womansApproach .goal2 {
  background: #f8f8f8;
}

.womansApproachList .womansApproach .goal2 + p {
  padding: 5px 1em 0;
  line-height: 1.6;
}

.womansApproachList .womansApproach .goal2 p {
  margin-left: 3.3rem;
  text-indent: -3.3rem;
}

.womansApproachSec03-01{
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}
.womansApproachSec03-01 figure{
  width: 30%;
  border-right: 1px solid #ddd;
  padding-right: 2em;
  margin-right: 2em;
}
.womansApproachSec03-01 p{
  width: 70%;
}

.womansApproachSec03-02{
  width: 100%;
  border: 2px solid #ff7b7b;
  padding: 70px 50px;
  text-align: left;
  font-size: 16px;
}
.womansApproachSec03-02 img{
  margin-bottom: 50px;
}
.womansApproachCase{
  display: inline-block;
  padding: .3em 1em;
  margin-bottom: .5em;
  background: #4cbec8;
  font-size: 18px;
  color: #fff;
}
.womansApproachRead{
  margin-bottom: 1;
  text-align: center;
  font-size: 36px;
  color: #ff7b7b;
  line-height: 2;
}
.womansApproachRead span{
  border-bottom: solid 3px #ff7b7b;
}

.womansDiscussionTame{
  margin-bottom: 1.5em;
  font-size: 30px;
  text-align: center;
  line-height: 1.2;
}
.womansDiscussionTame span{
  margin-right: 1em;
  padding: .3em 1em;
  background: #ff7b7b;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  vertical-align: text-top;
}
.womansDiscussionTitle {
  margin-bottom: .8em;
  font-size: 26px;
  line-height: 1.5;
  color: #ff7b7b;
}
.womansDiscussionTitle span{
  display: block;
  font-size: 16px;
  color: #111;
}

.womansDiscussionCont div{
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
}
.womansDiscussionCont div span{
  width: 50px;
  color: #ff7b7b;
}
.womansDiscussionCont div p{
  width: calc(100% - 70px);
}
.womansDiscussionMenberBox{
  align-content: center;
  border: 1px solid #ff7b7b;
  padding: 50px 50px;
  margin-bottom: 100px;
  background: #fff4f2;
}
.womansDiscussionMenber{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.womansDiscussionMenber div{
  width: 25%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: start;
  align-items: center;
  /*align-content: center;*/
  margin-bottom: 1em;
}
.womansDiscussionMenber div p{
  margin-bottom: 0;
}
.womansDiscussionMenberName{
  width: 70px;/*幅*/
  height: 70px;/*高さ*/
  border-radius: 50%;/*角丸*/
  background: #ff7b7b;
  color: #fff;
  text-align:center !important;
  line-height: 70px;
  margin:0 .5em 0 0;
}
.womansDiscussionMenberSmall{
  font-size: .8em;
}
@media screen and (max-width: 1100px) {
  .womansJobtypeList {
    padding-top: 50px;
  }
  .womansJobtypeContent {
    padding: 50px 40px;
  }
  .womansJobtypeContent100 {
    padding: 50px 40px;
  }
}

@media screen and (max-width: 950px){

  .womansDiscussionMenberBox{
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  .womansJobtypeList {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    flex-flow: column nowrap;
    width: 100%;
    padding-top: 0;
  }
  .womansJobtype:not(.reverse) .womansJobtypeList:nth-child(even) .womansJobtypeImg,
  .womansJobtype.reverse .womansJobtypeList:nth-child(odd) .womansJobtypeImg {
    left: auto;
  }
  .womansJobtype:not(.reverse) .womansJobtypeList:nth-child(even) .womansJobtypeContent,
  .womansJobtype.reverse .womansJobtypeList:nth-child(odd) .womansJobtypeContent {
    margin-left: 0;
  }
  .womansJobtypeImg {
    -webkit-order: 2;
    order: 2;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
  .womansJobtypeContent {
    -webkit-order: 1;
    order: 1;
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  .womansJobtypeContent100 {
    padding: 30px 20px;
  }

  .womansDiscussionMenberBox{
    padding: 30px 20px;
    margin-bottom: 50px;
  }
  .womansDiscussionMenber div{
    width: 50%;
    margin-bottom: 1em;
  }

}


@media screen and (max-width: 767px) {
  .womansJobtypeList {
    margin-bottom: 50px;
  }
  .womansJobtypeContent {
    padding: 20px 5%;
    font-size: 14px;
  }
  .womansJobtypeContent100 {
    padding: 20px 5%;
    font-size: 14px;
  }
  .womansTitle {
    font-size: 20px;
  }
  .womansApproachSec03-01{
    flex-flow: column;
    margin-bottom: 30px;
    justify-content: center;
  }
  .womansApproachSec03-01 figure{
    width: 50%;
    margin-bottom: 1em;
    border-right: 0 solid #ddd;
    padding-right: 0;
    margin-right: 0;
  }
  .womansApproachSec03-01 p{
    width: 100%;
  }

  .womansApproachSec03-02{
    padding: 50px 3.5%;
    font-size: 14px;
  }
  .womansApproachSec03-02 img{
    margin-bottom: 30px;
  }
  .womansApproachCase{
    font-size: 16px;
  }
  .womansApproachRead{
    text-align: left;
    font-size: 24px;
  }
  .womansApproachRead br{
    display: none;
  }
  .womansDiscussionMenberBox{
    padding: 20px 5%;
    /*margin-bottom: 50px;*/
  }
  .womansDiscussionTame{
    font-size: 20px;
  }
  .womansDiscussionTame span{
    padding: .2em 1em;
    font-size: 14px;
  }
  .womansDiscussionTitle {
    font-size: 20px;
  }
  .womansDiscussionTitle span{
    font-size: 14px;
  }
}

@media screen and (max-width: 500px ){
  .womansDiscussionMenberName{
    width: 50px;/*幅*/
    height: 50px;/*高さ*/
    line-height: 50px;
  }
}
@media screen and (max-width: 414px) {
  .womansApproachSec03-01 figure{
    width: 60%;
  }
  .womansApproachRead{
    font-size: 20px;
  }
  .womansDiscussionMenber div{
    width: 100%;
    margin-bottom: .5em;
  }
  .womansDiscussionTitle {
    font-size: 18px;
  }
  .womansDiscussionTitle br{
    display: none;
  }
  .womansApproachPhoto{
    flex-flow: column;
  }
  .womansApproachPhoto img{
    width: 100%;
    margin-bottom: 1em;
  }

}

@media screen and (max-width: 1200px) {
  .recruitMV {
    height: 45.8vw;
  }
  .recruitMV span {
    font-size: 4vw;
  }
  .recruitStaffMV {
    height: 45.8vw;
  }
  .recruitStaffMV .recruitStaffMVRead {
    width: 50%;
    height: 320px;
    padding: 0 40px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffMeta {
    font-size: 14px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffMeta span {
    font-size: 16px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffCatch {
    font-size: 30px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffName {
    font-size: 24px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffEducation {
    font-size: 14px;
  }
  .staffList ul li a > div {
    padding: 30px 20px 0;
  }
  .staffList ul li a .job {
    font-size: 16px;
  }
  .staffList ul li a .name {
    margin-bottom: 10px;
    font-size: 26px;
  }
  .staffList ul li a .meta {
    font-size: 12px;
  }

  .staffInterviewComment > .inner {
    align-items: end;
  }
  .staffInterviewCommentLeft{
    width: 70%;
    padding: 20px 0;
  }
  .staffInterviewComment figure{
    width: 28%;
    margin-top: -100px;
  }

  #womansIndex01,
  #womansIndex02,
  #womansIndex03{
    padding: 50px 20px;
  }
  #womansIndex01 .indexSecTitle,
  #womansIndex02 .indexSecTitle,
  #womansIndex03 .indexSecTitle{
    font-size: 26px;
  }

}

@media screen and (max-width: 1100px) {
  .staffInterviewList,
  .staffInterviewList02{
    padding-top: 50px;
  }
  .staffInterviewContent {
    padding: 50px 40px;
  }
}

@media screen and (max-width: 1024px) {
  .recruitStaffMV + .commonWrapper {
    padding-top: 30px;
  }
  .staffInterviewComment figure{
    margin-top: -50px;
  }
}

@media screen and (max-width: 900px) {
  .recruitMV {
    margin-bottom: 0;
  }
  .recruitStaffMV {
    margin-bottom: 0;
  }
  .recruitStaffMV .recruitStaffMVRead {
    height: 260px;
    padding: 0 20px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffMeta {
    font-size: 12px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffMeta span {
    font-size: 14px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffCatch {
    font-size: 24px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffName {
    font-size: 20px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffEducation {
    font-size: 12px;
  }
  .staffInterviewList,
  .staffInterviewList02{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
            flex-flow: column nowrap;
    width: 100%;
    padding-top: 0;
  }
  .staffInterview:not(.reverse) .staffInterviewList:nth-child(even) .staffInterviewImg,
  .staffInterview.reverse .staffInterviewList:nth-child(odd) .staffInterviewImg {
    left: auto;
  }
  .staffInterview:not(.reverse) .staffInterviewList02:nth-child(even) .staffInterviewImg,
  .staffInterview.reverse .staffInterviewList02:nth-child(odd) .staffInterviewImg {
    left: auto;
  }
  .staffInterview:not(.reverse) .staffInterviewList:nth-child(even) .staffInterviewContent,
  .staffInterview.reverse .staffInterviewList:nth-child(odd) .staffInterviewContent {
    margin-left: 0;
  }
  .staffInterview:not(.reverse) .staffInterviewList02:nth-child(even) .staffInterviewContent,
  .staffInterview.reverse .staffInterviewList02:nth-child(odd) .staffInterviewContent {
    margin-left: 0;
  }
  .staffInterviewImg {
    -webkit-order: 2;
            order: 2;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }
  .staffInterviewContent {
    -webkit-order: 1;
            order: 1;
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  .staffList ul {
    -webkit-justify-content: center;
            justify-content: center;
  }
  .staffList ul li {
    width: 100%;
    max-width: 500px;
  }
  .staffInterviewComment figure{
    margin-top: 0;
  }
  .staffInterviewComment > .inner {
    padding: 0 20px;
  }
  .workplaceList > div {
    width: 100%;
    padding-right: 0;
    margin-bottom: 50px;
  }
  .workplaceList > figure {
    width: 100%;
  }

  #womansIndex01,
  #womansIndex02,
  #womansIndex03{
    padding: 30px 20px;
  }
}

@media screen and (max-width: 800px) {

  .staffInterviewComment h5{
    font-size: 30px;
  }
  .staffInterviewComment h5 span {
    font-size: 16px;

  }
  .speechBubbleR{
    padding: 20px;
    font-size: 18px;
  }

  .womansIndex01-2 {
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  #womansIndex01,
  #womansIndex02 {
    width: 100%;
  }
  #womansIndex01 a,
  #womansIndex02 a {
    max-width: 100%;
  }
  #womansIndex01 figure,
  #womansIndex02 figure {
    width: 100%;
  }
}


@media screen and (max-width: 767px) {
  .recruitMV span {
    font-size: 5vw;
    padding-left: 3.5%;
  }
  .recruitStaffMV {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
            flex-flow: column nowrap;
    height: auto;
  }
  .recruitStaffMV + .commonWrapper {
    padding-top: 20px;
  }
  .recruitStaffMV .img {
    -webkit-order: 1;
            order: 1;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 45.8vw;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .recruitStaffMV .recruitStaffMVRead {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    -webkit-order: 2;
            order: 2;
    width: 100%;
    height: auto;
    padding: 20px 3.5%;
    -webkit-transform: translate(0);
            transform: translate(0);inner
  }
  .recruitStaffMV .recruitStaffMVRead .staffMeta {
    font-size: 12px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffMeta span {
    font-size: 14px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffCatch {
    font-size: 24px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffName {
    font-size: 20px;
  }
  .recruitStaffMV .recruitStaffMVRead .staffEducation {
    font-size: 12px;
  }
  .recruitStaffRead {
    margin-bottom: 45px;
    font-size: 14px;
  }
  .staffInterviewList,
  .staffInterviewList02{
    margin-bottom: 50px;
  }
  .staffInterviewContent {
    padding: 20px 5%;
    font-size: 14px;
  }
  .staffInterviewTitle {
    font-size: 20px;
  }
  .staffList h3 {
    padding-top: 20px;
    margin-bottom: 30px;
    font-size: 22px;
  }
  .staffList ul li a > div {
    padding: 26px 3.5% 0;
  }
  .staffList ul li a .job {
    font-size: 12px;
  }
  .staffList ul li a .name {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.2;
  }
  .staffList ul li a .meta {
    font-size: 9px;
  }
  .staffInterviewComment h5{
    font-size: 22px;
  }
  .staffInterviewComment h5 span {
    font-size: 14px;
  }
  .speechBubbleR{
    font-size: 16px;
  }

  .workplaceList {
    margin-bottom: 60px;
    font-size: 14px;
  }
  .workplaceListTitle {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .workplaceListTitle:after {
    width: 100px;
  }
  .workplaceList > div {
    margin-bottom: 30px;
  }
  .workplaceList .read {
    margin-bottom: 20px;
  }
  .workplaceList dl dt {
    padding-left: 30px;
    font-size: 20px;
  }
  .workplaceList dl dt:before {
    width: 20px;
  }
  .workplaceList dl dd {
    padding-left: 30px;
  }
  .womansApproachList {
    margin-bottom: 45px;
  }
  .womansApproachList .read {
    font-size: 14px;
  }
  .womansApproachList .womansApproach > dt {
    font-size: 16px;
  }
  .womansApproachList .womansApproach > dd {
    padding-left: 0;
    font-size: 14px;
  }
  .womansApproachList .womansApproach > dd > dl dd ol {
    margin: 0 0 0 0;
  }
  .companyHistoryTable.recruitTable {
    margin-bottom: 30px;
  }
  .companyHistoryTable.recruitTable + .submitArea .button-submit {
    width: 100%;
    min-width: 100%;
    height: 60px;
    font-size: 20px;
  }
  .womansApproachList .womansApproach .goal2 p {
    margin-left: 2.8rem;
    text-indent: -2.8rem;
  }
}

@media screen and (max-width: 568px) {

  #womansIndex01,
  #womansIndex02,
  #womansIndex03{
    padding: 20px 3.5% 20px;
  }
  #womansIndex01 figure:after, #womansIndex01 figure:before,
  #womansIndex02 figure:after,
  #womansIndex02 figure:before,
  #womansIndex03 figure:after,
  #womansIndex03 figure:before{
    width: 15px;
    height: 25%;
  }
  #womansIndex01 figure:after,
  #womansIndex02 figure:after,
  #womansIndex03 figure:after{
    right: 7.5px;
    width: 15px;
    height: 12px;
  }
}
@media screen and (max-width: 599px) {
  .staffInterviewComment::before {
    border-bottom: 50vw solid #027e23;  /* 三角を白にする */
  }
  .staffInterviewCommentLeft{
    width: 100%;
  }
  .staffInterviewComment figure{
    width: 50%;
    margin: -40px 0 0;
  }
  .staffInterviewComment > .inner {
    flex-flow: column;
    justify-content: center;
  }
  .speechBubbleR::after {
    border-left: 15px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    content: '';
    margin-top: -8px;
    margin-right: -8px;
    position: absolute;
    transform:rotate(90deg);
    top: 100%;
    right: 50%;
  }

}

@media screen and (max-width: 374px) {
  .staffList ul li a > div {
    padding: 20px 2% 0 3.5%;
  }
  .staffList ul li a .job {
    font-size: 10px;
  }
  .staffList ul li a .name {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.2;
  }
  .staffList ul li a .meta {
    font-size: 9px;
    line-height: 1.2;
  }
}

/* extension style
-----------------------------------*/
.white {
  color: #fff !important;
}

.black {
  color: #111 !important;
}

.blue {
  color: #3f78c6 !important;
}

.green {
  color: #78bc1e !important;
}

.orange {
  color: #fb7818 !important;
}

.red {
  color: #e94709 !important;
}

.yellow {
  color: #fad00d !important;
}

.purple {
  color: #847bb9 !important;
}

.pink {
  color: #ff82a1 !important;
}

.grey {
  color: #acadad !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-black {
  background-color: #111 !important;
}

.bg-blue {
  background-color: #3f78c6 !important;
}

.bg-blue-light {
  background-color: #73cbef !important;
}

.bg-green-light {
  background-color: #a0d264 !important;
}

.bg-orange {
  background-color: #fb7818 !important;
}

.bg-red {
  background-color: #e94709 !important;
}

.bg-yellow {
  background-color: #fad00d !important;
}

.bg-purple {
  background-color: #847bb9 !important;
}

.bg-pink {
  background-color: #ff82a1 !important;
}

.bg-sec-sub {
  background-color: #f4f4f4 !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.w5em {
  width: 5em !important;
}

.w6em {
  width: 6em !important;
}

.w7em {
  width: 7em !important;
}

.w8em {
  width: 8em !important;
}

.w9em {
  width: 9em !important;
}

.w10em {
  width: 10em !important;
}

.flr {
  float: right !important;
}

.fll {
  float: left !important;
}

.fln {
  float: none !important;
}

.clb {
  clear: both !important;
}

.cln {
  clear: none !important;
}

.is-left {
  text-align: left !important;
}

.is-center {
  text-align: center !important;
}

.is-right {
  text-align: right !important;
}

.is-bold {
  font-weight: bold !important;
}

.nowrap {
  white-space: nowrap !important;
}

/* 文字サイズ */
.fs08 {
  font-size: .8em !important;
}

.fs0875 {
  font-size: .875em !important;
}

.fs09 {
  font-size: .9em !important;
}

.fs0937 {
  font-size: .9375em !important;
}

.fs11 {
  font-size: 1.1em !important;
}

.fs12 {
  font-size: 1.2em !important;
}

.fs1125 {
  font-size: 1.125em !important;
}

.fs125 {
  font-size: 1.25em !important;
}

.fs13 {
  font-size: 1.3em !important;
}

.fs14 {
  font-size: 1.4em !important;
}

.fs15 {
  font-size: 1.5em !important;
}

.fs16 {
  font-size: 1.6em !important;
}

.fs17 {
  font-size: 1.7em !important;
}

.fs18 {
  font-size: 1.8em !important;
}

.fs19 {
  font-size: 1.9em !important;
}

.fs20 {
  font-size: 2.0em !important;
}

.lh1 {
  line-height: 1 !important;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh14 {
  line-height: 1.4 !important;
}

.lh16 {
  line-height: 1.6 !important;
}

.lh18 {
  line-height: 1.8 !important;
}

.lh20 {
  line-height: 2 !important;
}

/* margin */
.m0 {
  margin: 0 !important;
}

.m5 {
  margin: 5px !important;
}

.m10 {
  margin: 10px !important;
}

.m15 {
  margin: 15px !important;
}

.m20 {
  margin: 20px !important;
}

.m30 {
  margin: 30px !important;
}

.m40 {
  margin: 40px !important;
}

.m50 {
  margin: 50px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

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

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

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

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.ml0 {
  margin-left: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mlr5 {
  margin-right: 5px !important;
  margin-left: 5px !important;
}

.mlr10 {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

/* padding */
.p0 {
  padding: 0 !important;
}

.p5 {
  padding: 5px !important;
}

.p10 {
  padding: 10px !important;
}

.p15 {
  padding: 15px !important;
}

.p20 {
  padding: 20px !important;
}

.p25 {
  padding: 25px !important;
}

.p30 {
  padding: 30px !important;
}

.p35 {
  padding: 35px !important;
}

.p40 {
  padding: 40px !important;
}

.p45 {
  padding: 45px !important;
}

.p50 {
  padding: 50px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb80 {
  padding-bottom: 50px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.plr5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.plr10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.plr15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.plr20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.plr25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

.ofx {
  width: 100% !important;
  overflow-x: auto;
}

.video-container {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 53%;
  padding-top: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  background: center center no-repeat;
  background-size: cover;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}

hr.dot {
  background: transparent;
  border-bottom: 1px dotted #ccc;
  margin: 0 0 1.5em;
}

hr.clearHr {
  background: transparent;
  border-bottom: none;
  margin: 0 0 30px;
}

.op01 {
  opacity: .1;
}

.op02 {
  opacity: .2;
}

.op03 {
  opacity: .3;
}

.op04 {
  opacity: .4;
}

.op05 {
  opacity: .5;
}

.op06 {
  opacity: .6;
}

.op07 {
  opacity: .7;
}

.op08 {
  opacity: .8;
}

.op09 {
  opacity: .9;
}

.op10 {
  opacity: 10;
}

.cf:after {
  display: table;
  content: '';
  width: 100%;
}


