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

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

img {
  vertical-align: top;
}

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

li {
  list-style-type: none;
}

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

blockquote,
q {
  quotes: none;
}

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

/* ------------------------------------------------------------
初期設定
------------------------------------------------------------ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

/* ------------------------------------------------------------
iframe
------------------------------------------------------------ */
.google-map iframe {
  vertical-align: bottom;
}

/* ------------------------------------------------------------
表示有無設定（ブラウザサイズ）
------------------------------------------------------------ */
@media print, screen and (min-width: 992px) {
  .min992 {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .max991 {
    display: none;
  }
}

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

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

/* ------------------------------------------------------------
html・body
------------------------------------------------------------ */
html,
body {
  height: 100%;
}

body {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

body {
  font-family: 'Roboto',
 'Noto Sans JP',
 "Helvetica Neue",
 Arial,
 "Hiragino Kaku Gothic ProN",
 "Hiragino Sans",
 メイリオ,
 Meiryo,
 sans-serif;
}

body .ffm {
  font-family: 'Noto Serif JP',
 Georgia,
 游明朝,
 "Yu Mincho",
 YuMincho,
 "Hiragino Mincho ProN",
 HGS明朝E,
 メイリオ,
 Meiryo,
 serif;
}

/* ------------------------------------------------------------
レイアウト・タグ設定
------------------------------------------------------------ */
.ta-right {
  text-align: right;
}

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

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

p {
  margin-bottom: 1em;
}

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

/* ------------------------------------------------------------
リンク設定
------------------------------------------------------------ */
a {
  color: #8686cf;
  text-decoration: none;
}

a:hover {
  color: #8686cf;
  text-decoration: none;
}

a:hover img {
  opacity: 0.6;
}

/* ------------------------------------------------------------
form
------------------------------------------------------------ */
form input[type="text"],
form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
}

form textarea {
  min-height: 100px;
}

form button[type="submit"],
form button[type="button"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  color: #ffffff;
  padding: 10px 40px;
  background: #4d4d4d;
  border-radius: 10px;
  border: none;
}

form button[type="submit"]:hover,
form button[type="button"]:hover {
  color: #ffffff;
  background: #000000;
}

form ::-webkit-input-placeholder {
  color: #cccccc;
}

form ::-moz-placeholder {
  color: #cccccc;
}

form :-ms-input-placeholder {
  color: #cccccc;
}

/* ------------------------------------------------------------
表 - table
------------------------------------------------------------ */
.table-row {
  width: 100%;
}

.table-row tr th,
.table-row tr td {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #eeeeee;
}

.table-row tr th {
  background: #f5f5f5;
}

@media print, screen and (min-width: 1400px) {
  .table-row {
    border-bottom: none;
  }
  .table-row tr th,
  .table-row tr td {
    display: table-cell;
    vertical-align: top;
    padding: 10px;
  }
  .table-row tr th {
    width: 180px;
    background: #ffffff;
  }
  .table-row tr td {
    width: calc(100% - 200px);
  }
}

/* ------------------------------------------------------------
ページトップへ戻る
------------------------------------------------------------ */
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 999;
}

#pagetop img:hover {
  -webkit-animation: rotates 0.7s linear infinite;
          animation: rotates 0.7s linear infinite;
}

@-webkit-keyframes rotates {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes rotates {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* ------------------------------------------------------------
header
------------------------------------------------------------ */
.header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 15px 20px;
}

.header-wrap .logo a:hover img {
  opacity: 1;
}

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

/* ------------------------------------------------------------
footer
------------------------------------------------------------ */
.footer {
  color: #ffffff;
  padding: 80px 0 100px;
  background: #4d4d4d;
}

.footer .logo {
  margin-bottom: 10px;
}

.footer p {
  font-size: 12px;
}

.footer .footer-flex-box {
  text-align: center;
}

.footer .footer-flex-box .box:first-child {
  margin-bottom: 40px;
}

@media screen and (min-width: 1200px) {
  .footer .footer-flex-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
  }
  .footer .footer-flex-box .box:first-child {
    width: 348px;
    text-align: center;
  }
}

.copyright-box {
  text-align: center;
  padding: 30px 20px;
  background: #333333;
}

.copyright-box .footer-link-list {
  display: none;
}

.copyright-box .copyright {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.copyright-box .copyright i {
  margin-right: 5px;
}

@media print, screen and (min-width: 768px) {
  .copyright-box .footer-link-list {
    display: block;
  }
  .copyright-box .footer-link-list a {
    color: #ffffff;
  }
  .copyright-box .footer-link-list a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
  }
  .copyright-box .copyright {
    margin-top: 10px;
  }
}

/* ------------------------------------------------------------
スマホ用グローバルナビ
------------------------------------------------------------ */
.menu-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 650;
  background-color: #000000;
}

@media print, screen and (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 600;
  background-color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 0;
  /*メニューを画面内へ*/
}

.sp-gnav {
  padding: 15px 15px 50px;
}

.sp-gnav .logo {
  margin: 0 65px 25px 0;
}

.sp-gnav ul {
  border-top: 1px solid #e6e6e6;
}

.sp-gnav ul li {
  border-bottom: 1px solid #e6e6e6;
}

.sp-gnav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  text-align: center;
}

.sp-gnav ul li a label {
  width: 100%;
  padding: 10px 15px;
}

.sp-gnav ul li a:hover {
  background: #f5f5f5;
}

/* ------------------------------------------------------------
contents
------------------------------------------------------------ */
#visual {
  position: absolute;
  /* 背景を固定したい場合 absolute を fixed に変える */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.bx-wrapper {
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.bxslider li {
  width: 100%;
  height: 600px;
  background: center/cover no-repeat;
}

@media screen and (min-width: 768px) {
  .bxslider li {
    height: 600px;
  }
}

.slider-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 600px;
}

.slider-box .txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider-box .txt-box img {
  margin: auto;
  padding: 0 30px 30px;
}

.cont-wrap {
  position: relative;
}

.cont-wrap .side-column {
  display: none;
}

@media screen and (min-width: 768px) {
  .cont-wrap .side-column {
    display: block;
    position: fixed;
    width: 200px;
    height: 100vh;
    border-right: 1px solid #999999;
  }
  .cont-wrap .side-column .logo {
    text-align: center;
    margin: 65px auto 35px;
  }
  .cont-wrap .side-column .logo-txt {
    text-align: center;
    margin-bottom: 50px;
  }
  .cont-wrap .side-column ul {
    margin: 0 0 0 50px;
  }
  .cont-wrap .side-column ul li {
    margin-bottom: 18px;
  }
  .cont-wrap .side-column ul li:last-child {
    margin-bottom: 0;
  }
  .cont-wrap .side-column ul li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #000000;
  }
  .cont-wrap .side-column ul li a .icon {
    width: 12px;
    height: 23px;
    margin-right: 8px;
    background: url(../images/common/icon-1.png) no-repeat center center/contain;
  }
  .cont-wrap .side-column ul li a.current, .cont-wrap .side-column ul li a:hover {
    color: #000000;
  }
  .cont-wrap .side-column ul li a.current .icon, .cont-wrap .side-column ul li a:hover .icon {
    background: url(../images/common/icon-2.png) no-repeat center center/contain;
  }
  .cont-wrap .side-column ul li a.current .txt, .cont-wrap .side-column ul li a:hover .txt {
    border-bottom: 1px solid #000000;
  }
}

@media screen and (min-width: 768px) {
  .cont-wrap .main-column {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 200px);
  }
}

.cont-wrap .main-column .cont-title-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background: #f2f2f2;
}

.cont-wrap .main-column .cont-title-line .icon {
  margin-right: 8px;
}

.cont-wrap .main-column .cont-title-line .title-en {
  font-size: 18px;
}

.cont-wrap .main-column .cont-title-line .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px;
}

.cont-wrap .main-column .cont-title-line .title-jp {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .cont-wrap .main-column .cont-title-line {
    padding: 0 0 0 148px;
  }
  .cont-wrap .main-column .cont-title-line .line {
    margin: 0 20px;
  }
}

.cont-box {
  padding: 0 20px;
}

@media screen and (min-width: 992px) {
  .cont-box {
    padding: 0 100px;
  }
}

@media screen and (min-width: 1600px) {
  .cont-box {
    padding: 0 200px;
  }
}

/* ------------------------------------------------------------
NEWS
------------------------------------------------------------ */
.news-list {
  margin: 10px 0 50px;
}

.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #999999;
}

.news-list li .date {
  color: #000000;
  width: 100px;
}

.news-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (min-width: 768px) {
  .news-list li .date {
    width: 180px;
  }
}

/* ------------------------------------------------------------
ABOUT
------------------------------------------------------------ */
.about-box {
  background: url(../images/index/about-bg.png) no-repeat center right/cover;
}

.about-box .txt-box {
  line-height: 2;
  text-shadow: 1px 1px 0 #ffffff,
 -1px 1px 0 #ffffff,
 1px -1px 0 #ffffff,
 -1px -1px 0 #ffffff;
  padding: 60px 0;
}

@media screen and (min-width: 992px) {
  .about-box .txt-box {
    line-height: 3;
  }
}

/* ------------------------------------------------------------
COMPANY・RECRUIT
------------------------------------------------------------ */
.cont-flex-box-1 {
  margin: 60px 0;
}

.cont-flex-box-1 .box {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .cont-flex-box-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cont-flex-box-1 .box:first-child {
    width: 500px;
    margin-right: 70px;
  }
  .cont-flex-box-1 .box:last-child {
    width: 640px;
  }
}

@media screen and (min-width: 1600px) {
  .cont-flex-box-1 .box:first-child {
    margin-right: 140px;
  }
}

/* ------------------------------------------------------------
SERVICE
------------------------------------------------------------ */
.cont-flex-box-2 {
  margin: 60px 0;
  padding-bottom: 60px;
  border-bottom: 1px dashed #cccccc;
}

.cont-flex-box-2:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cont-flex-box-2 .img-box {
  text-align: center;
}

.cont-flex-box-2 .img-box img {
  border: 1px solid #999999;
}

.cont-flex-box-2 .txt-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.cont-flex-box-2 .txt-box .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  margin: 20px 0;
}

.cont-flex-box-2 .txt-box .title img {
  width: 12px;
  height: 23px;
  margin-right: 5px;
}

@media screen and (min-width: 992px) {
  .cont-flex-box-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 0;
    border-bottom: none;
  }
  .cont-flex-box-2 .img-box {
    width: 260px;
    margin-right: 40px;
  }
  .cont-flex-box-2 .txt-box .title {
    margin: 10px 0 20px;
  }
}

@media screen and (min-width: 1400px) {
  .cont-flex-box-2 .img-box {
    width: 440px;
    margin-right: 100px;
  }
  .cont-flex-box-2 .txt-box .title {
    font-size: 18px;
  }
}

/* ------------------------------------------------------------
CONTACT
------------------------------------------------------------ */
.contact-box {
  margin: 40px 0;
  padding: 50px 20px;
  border: 1px solid #999999;
  border-radius: 10px;
}

.contact-box .txt-box-2 {
  font-size: 12px;
  color: #999999;
  margin-bottom: 50px;
}

@media screen and (min-width: 992px) {
  .contact-box {
    padding: 50px 60px;
  }
  .contact-box .txt-box-1 {
    text-align: center;
  }
  .contact-box .txt-box-2 {
    text-align: center;
  }
}

@media screen and (min-width: 1400px) {
  .contact-box {
    margin: 60px 0;
    padding: 50px 200px 70px;
    border: 1px solid #999999;
    border-radius: 10px;
  }
  .contact-box .txt-box-1 {
    text-align: center;
  }
  .contact-box .txt-box-2 {
    font-size: 12px;
    color: #999999;
    text-align: center;
    margin-bottom: 50px;
  }
}

.contact-box .table-contact-1 {
  width: 100%;
}

.contact-box .table-contact-1 th,
.contact-box .table-contact-1 td {
  display: block;
  font-weight: 400;
  text-align: left;
  padding-bottom: 10px;
}

.contact-box .table-contact-1 th span {
  color: #ff0000;
  margin-left: 20px;
}

.contact-box .table-contact-1 td input {
  width: 100%;
}

.contact-box .table-contact-1 td select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 12px;
  width: 280px;
  height: 34px;
  padding: 10px;
  border: 1px solid #c8c8c8;
}

.contact-box .table-contact-1 td select.minimal {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%);
  background-position: calc(100% - 17px) calc(1.2em + 2px), calc(100% - 12px) calc(1.2em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 5px 5px,
 5px 5px,
 1px 1.5em;
  background-repeat: no-repeat;
}

@media screen and (min-width: 992px) {
  .contact-box .table-contact-1 {
    width: 100%;
  }
  .contact-box .table-contact-1 th,
  .contact-box .table-contact-1 td {
    display: table-cell;
  }
  .contact-box .table-contact-1 td {
    text-align: right;
  }
  .contact-box .table-contact-1 td input {
    width: 280px;
  }
}

.contact-box .table-contact-2 {
  width: 100%;
}

.contact-box .table-contact-2 th,
.contact-box .table-contact-2 td {
  display: block;
  font-weight: 400;
  text-align: left;
  padding-bottom: 10px;
}

.contact-box .table-contact-2 th span {
  color: #ff0000;
  margin-left: 20px;
}

.contact-box .table-contact-2 td .txt {
  font-size: 12px;
  color: #999999;
  margin: -8px 0 10px;
}

.contact-box .table-contact-2 td textarea {
  width: 100%;
  height: 180px;
}

.contact-box .recaptcha-box {
  text-align: center;
  margin: 30px 0 60px;
  padding-top: 30px;
  border-top: 1px solid #999999;
}
/*# sourceMappingURL=style.css.map */