@charset "utf-8";

/* =============================================================

　　Base Setting

============================================================= */

/*  Overall Setting
--------------------------------------------- */

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "segoe UI","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-size: 1.5em;
  text-align: center;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  letter-spacing: .02em;
}

/*  Color Setting
-------------------------- */

/* -- Common Color -- */

body {
  color: #000;
}

a {
  color: inherit;
}

a:hover,
a:focus {
  color: inherit;
}

/* -- Custom Color -- */

/* Default */
.txt-default,
a.txt-default,
a.txt-default:hover,
a.txt-default:focus {
  color: #333;
}

.bg-default {
  background-color: #333;
}

.txt-default-light,
a.txt-default-light,
a.txt-default-light:hover,
a.txt-default-light:focus {
  color: #ddd;
}

.bg-default-light {
  background-color: #ececec;
}

.txt-default-dark,
a.txt-default-dark,
a.txt-default-dark:hover,
a.txt-default-dark:focus {
  color: #000;
}

.bg-default-dark {
  background-color: #000;
}

/* Base */
.txt-base,
a.txt-base,
a.txt-base:hover,
a.txt-base:focus {
  color: #666;
}

.bg-base {
  background-color: #666;
}

.txt-base-light,
a.txt-base-light,
a.txt-base-light:hover,
a.txt-base-light:focus {
  color: #ccc;
}

.bg-base-light {
  background-color: #ccc;
}

.txt-base-dark,
a.txt-base-dark,
a.txt-base-dark:hover,
a.txt-base-dark:focus {
  color: #444;
}

.bg-base-dark {
  background-color: #444;
}

/* Primary */
.txt-primary,
a.txt-primary,
a.txt-primary:hover,
a.txt-primary:focus {
  color: #003b9f;
}

.bg-primary {
  background-color: #003b9f;
}

.txt-primary-light,
a.txt-primary-light,
a.txt-primary-light:hover,
a.txt-primary-light:focus {
  color: #0085b2;
}

.bg-primary-light {
  background-color: #eef8fa;
}

.txt-primary-dark,
a.txt-primary-dark,
a.txt-primary-dark:hover,
a.txt-primary-dark:focus {
  color: #007a9d;
}

.bg-primary-dark {
  background-color: #007a9d;
}

/* Accent */
.txt-accent,
a.txt-accent,
a.txt-accent:hover,
a.txt-accent:focus {
  color: #d80000;
}

.bg-accent {
}

.txt-accent-light,
a.txt-accent-light,
a.txt-accent-light:hover,
a.txt-accent-light:focus {
}

.bg-accent-light {
}

.txt-accent-dark,
a.txt-accent-dark,
a.txt-accent-dark:hover,
a.txt-accent-dark:focus {
  color: #b20000;
}

.bg-accent-dark {
}

/* Sub */
.txt-sub,
a.txt-sub,
a.txt-sub:hover,
a.txt-sub:focus {
  color: #ffc100;
}

.bg-sub {
}

.txt-sub-light,
a.txt-sub-light,
a.txt-sub-light:hover,
a.txt-sub-light:focus {
}

.bg-sub-light {
}

.txt-sub-dark,
a.txt-sub-dark,
a.txt-sub-dark:hover,
a.txt-sub-dark:focus {
}

.bg-sub-dark {
}

/* -- Form Color -- */

.form-control,
.search-input {
  border: 1px solid #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  color: #333;
}

.form-control:focus,
.search-input:focus {
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 4px rgba(136, 136, 136, .6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 4px rgba(136, 136, 136, .6);
}

/* -- Placeholder Color -- */

:placeholder-shown {
  color: #999;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}


/*  Switch Display
-------------------------- */

.media-sp {
  display: none;
}


/*  Link Setting
-------------------------- */

a {
  text-decoration: none;
}

a,
a:before,
a:after,
a img {
  transition: opacity .3s ease-in-out,
              color .3s ease-in-out,
              background-color .3s ease-in-out,
              border-color .3s ease-in-out,
              text-shadow .3s ease-in-out;
}

a:hover {
  text-decoration: underline;
}

/*  Form Setting
-------------------------- */

.form-control {
  border-radius: 4px;
  height: 30px;
}

.form-control:focus,
.search-input:focus {
  outline: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
button,
select-input,
textarea {
  padding: 5px;
  font-size: .9em;
  font-family: "segoe UI","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
  margin-right: 8px;
  padding: 0;
  font-size: 1.2em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  transition: border-color .3s ease-in-out;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-width: 20px;
  height: 40px;
  height: auto\9;
  padding: 0;
  background-color: #fff;
  padding: 0 30px 0 10px;
  padding: 5px 0 5px 10px \9;
  border: 1px solid #ccc;
  background: url(/recruit/common/img/icn-select.png) no-repeat 97% center;
  background: #fff \9;
  background-position: 200% 200% \9;
  background-size: 16px;
}

/* IE11 */
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, select {
    padding: 0 0 0 10px;
    background-position: 200% 200%;
  }
}

/* IE10 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  select { 
    padding: 0 0 0 10px;
    background-position: 200% 200%;
  }
}
/* IE9 */
select:not(:target) {
  background-position: 200% 200%;
}

/* Edge */
@supports (-ms-ime-align:auto) {
  select:not(:target) {
    background-position: 97% center;
  }
}


/*  Container Setting
--------------------------------------------- */

#container {
  position: relative;
  width: 100% !important;
  min-width: 1250px;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  text-align: center;
}

#container.display-pc {
  width: 100% !important;
  position: relative !important;
  right: auto !important;
}

.inner {
  width: 1250px;
  margin: 0 auto;
  padding-right: 75px;
  padding-left: 75px;
  text-align: left;
}


/*  Header Setting
--------------------------------------------- */

#header {
  border-bottom: 1px solid #ededed;
}

.display-pc #header {
  left: 0 !important;
}

#header .inner {
  position: relative;
  width: 100%;
  padding: 30px 20px;
}

/* -- Effect -- */

.display-pc #header {
  animation: tra1 1s ease 0s 1 forwards;
  transform: translateY(-100px);
}

/* IE9 */
.display-pc #header:not(:target) {
  transform: translateY(0px); \9;
}


/* -------- Site Logo -------- */

#logo {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}

#logo h1 {
  margin: 0;
  font-size: 2em;
}

#logo img {
  width: 320px;
}

#logo span {
  padding-left: 20px;
  font-size: .43em;
  letter-spacing: .1em;
}

#logo a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  text-decoration: none;
}

#logo a:hover {
  opacity: .6;
}

/* -------- Head Link -------- */

#head-link {
  position: absolute;
  top: 30px;
  right: 20px;
}

/* -------- Site Menu -------- */

#sitemenu {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-left: 15px;
  padding-bottom: 4px;
  font-size: .96em;
  letter-spacing: normal;
  vertical-align: bottom;
  text-align: left;
  letter-spacing: .08em;
}

/* -- Menu Button -- */

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

/* -- Menu Content -- */

#sitemenu #menu {
  display: block;
}

.display-pc #sitemenu #menu {
  display: block !important;
  height: auto !important;
  z-index: auto !important;
}

.display-pc #sitemenu #menu,
.display-pc #sitemenu #menu .sub-menu {
  overflow: visible !important;
}

/* ------ Global Navi ------ */

#gnav {
}

#gnav .menu-list {
}

#gnav .menu-list > ul > li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin-left: 15px;
  vertical-align: middle;
}

#gnav .menu-list > ul > li:first-child {
  display: none;
}

#gnav .menu-list a {
  display: block;
  padding: 5px 5px 0;
}

#gnav .menu-list a:hover {
  opacity: .25;
  text-decoration: none;
}


/*  Content Settings
--------------------------------------------- */

#content {
  position: relative;
  background-color: #fff;
}

/*  Content Top
----------------------------------- */

#content-top {
}

/*  Content Main
----------------------------------- */

#content-main {
  padding-top: 90px;
  padding-bottom: 90px;
}


/*  Footer Setting
--------------------------------------------- */

#footer {
  position: relative;
  background-color: #fff;
}

/* ------ Footer Top ------ */

#footer-top {
}

#footer-top .inner {
}

/* ---- Site Navi ---- */

.sitenav {
  position: relative;
  padding: 40px 0;
  color: #666;
  border-top: 1px solid #ececec;
}

.sitenav .inner.column > * {
  margin-top: 0;
}

.sitenav .inner.column > * > * {
  padding: 0 22px;
}

.sitenav a {
  display: block;
  text-decoration: none;
}

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

.sitenav span {
  display: block;
}

.sitenav .txt-num {
  float: left;
  width: 70px;
  font-size: 3.6em;
  font-weight: bold;
  line-height: .8;
  letter-spacing: -.04em;
}

.sitenav .txt-en {
  font-size: 1.65em;
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.2;
}

.sitenav .txt-ja {
  font-size: .9em;
}

.sitenav .current {
  color: #ccc;
}

/* ---- Footer Link ---- */

.footer-link {
  position: relative;
  z-index: 0;
  background: #fff;
}

.footer-link .inner.column > * {
  margin-top: 0;
  margin-left: 0;
}

.footer-link .inner .footer-section {
  padding: 120px 0;
  vertical-align: top;
}

/* Background */
.footer-link .footer-section:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 53.5%;
  height: 100%;
  content: "";
}

.footer-link .footer-section .section-inner {
  margin: 0;
}

.footer-link .footer-section .ttl {
  margin-bottom: 35px;
}

.footer-link .footer-section p {
  margin-bottom: 1.5em;
  line-height: 1.9;
}

.footer-link .footer-section .btn-wrap {
  padding-top: 20px;
}

/* -- Footer Contact -- */

.footer-link .inner .footer-contact {
  padding-right: 80px;
}

.footer-link .footer-contact:before {
  background-color: #ececec;
}

/* -- Footer Entry -- */

.footer-link .inner .footer-entry {
  padding-top: 200px;
  padding-left: 120px;
  color: #fff;
}

.footer-link .footer-entry:before {
  top: 50px;
  left: auto;
  right: 0;
  z-index: -2;
  background-color: #666;
}

/* -- Effect -- */

.display-pc .footer-link .footer-section .section-inner {
  transition: opacity .7s ease-in-out,transform 1s ease-in-out;
  opacity: 0;
}

.display-pc .footer-link.effect .footer-section .section-inner {
  opacity: 1;
}

.display-pc .footer-link .footer-contact:before {
  transition: transform 1.5s ease;
  transform: translateX(-70px);
}

@media screen and (min-width: 1300px) {
  .display-pc .footer-link .footer-contact:before {
    transform: translateX(-94px);
  }
}

.display-pc .footer-link.effect .footer-contact:before {
  transform: translateX(0);
}

.display-pc .footer-link .footer-contact .section-inner {
  transform: translateX(-70px);
}

.display-pc .footer-link.effect .footer-contact .section-inner {
  transition-delay: .2s,.2s;
  transform: translateX(0);
}

.display-pc .footer-link .footer-entry .section-inner {
  transform: translateX(20px);
}

.display-pc .footer-link.effect .footer-entry .section-inner {
  transition-delay: .3s,.3s;
  transform: translateX(0);
}

/* ------ Footer Middle ------ */

#footer-middle {
  background: #000;
  color: #fff;
}

#footer-middle .inner {
  padding-top: 120px;
  padding-bottom: 70px;
  text-align: center;
}

/* ---- Footer Logo ---- */

#footer-logo {
  margin-bottom: 5px;
}

#footer-logo img {
  width: 320px;
}

/* ---- Footer Navi ---- */

#footernav {
  font-size: .95em;
}

#footernav .menu-list {
  padding: 30px 0;
}

#footernav .menu-list li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  margin: 0 10px;
  vertical-align: top;
}

#footernav .menu-list a {
  display: block;
  padding: 5px;
}

#footernav .menu-list a:hover {
  opacity: .6;
  text-decoration: none;
}

/* ------ Footer Bottom ------ */

#footer-bottom {
}

#footer-bottom .inner {
  padding-top: 40px;
  padding-bottom: 70px;
}

/* ---- Copyright ---- */

#copyright {
  display: block;
  font-size: .85em;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}

/* ---- Page Top ---- */

#pagetop {
  visibility: hidden;
  opacity: 0;
  display: none\9;
  transition: opacity .3s ease-in-out,visibility .3s ease-in-out,z-index .3s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: -2;
  width: 58px;
  height: 58px;
}

#pagetop.show {
  opacity: 1;
  display: block\9;
  z-index: 10;
  visibility: visible;
}

#pagetop.fxd {
}

#pagetop a {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 2px solid #000;
  background: #000;
  border-radius: 100%;
}

#pagetop a:before {
  display: block;
  border-radius: 1px;
  overflow: hidden;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-top: -4px;
  margin-left: -8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

#pagetop a:hover {
  background-color: transparent;
}

#pagetop a:hover:before {
  border-top-color: #000;
  border-right-color: #000;
}

#pagetop a span {
  display: none;
}

