/* - - - - - - - - - - - - - - - 
base
- - - - - - - - - - - - - - - - */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}
ul,
li {
  margin: 0;
  list-style: none;
}
img {
  vertical-align: bottom;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
dl,
dt,
dd,
span,
body,
figcaption,
figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
/*----------------------------------------------------
	再設定
----------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  color: #000000;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  body {
    min-width: 1020px;
  }
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
div {
  word-wrap: break-word;
}
a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
a img {
  border: 0;
}
a:link,
a:visited {
  text-decoration: none;
  color: #000000;
}

@media screen and (min-width: 769px),
  only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
  a.hv-cl:hover,
  a.hv-c:active,
  a:hover .hv-cl {
    color: #f864bc;
  }
}

@media (min-device-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}
a:focus {
  outline: none;
}
/*----------------------------------------------------
	header
----------------------------------------------------*/
body.no-scroll {
  height: 100vh;
  overflow: hidden;
}

/*----------------------------------------------------
	ヘッダー
----------------------------------------------------*/
header {
  position: relative;
}
@media (min-width: 768px) {
  header:after {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 100;
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
    content: "";
    background-color: #003567;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;

    -o-transition: height 0.3s;
  }
  header.nav-open:after {
    height: 45px;
  }
}
@media (max-width: 767px) {
  header {
    height: 54px;
  }
}

@media (min-width: 768px) {
  .header-content {
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: calc(50% + 500px);
    min-width: 1000px;
    margin-left: auto;

    -webkit-box-align: center;
    -webkit-box-pack: justify;
  }
}

@media (max-width: 767px) {
  .header-content {
    padding: 12px 10px;
  }
}

@media (max-width: 767px) {
  .header-logo img {
    width: 220px;
  }
}

.header-nav .action-entry {
  background-color: #00a0e9;
}

.header-nav .action-corporate {
  background-color: #006ec8;
}

@media (min-width: 768px) {
  .header-nav {
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-align: center;
  }
  .header-nav .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
  }
  .header-nav .nav > li {
    position: relative;
    height: 100px;
    padding-top: 38px;
  }
  .header-nav .nav > li:not(:last-child):after {
    margin: 0 0.5em;
    content: "/";
    font-weight: bold;
  }
  .header-nav .nav > li > a {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .header-nav .nav > li > a:hover {
    color: #006ec8;
  }
  .header-nav .nav > li.active > a {
    color: #006ec8;
  }
  .header-nav .nav > li.active:before {
    position: absolute;
    bottom: 0;
    left: calc(50% - 2em);
    width: 0;
    height: 0;
    content: "";
    border-color: transparent transparent #003567 transparent;
    border-style: solid;
    border-width: 0 10px 10px 10px;
  }
  .header-nav .active .sub-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav .sub-nav {
    position: absolute;
    top: 100px;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    z-index: 200;
    display: none;
    width: 500px;
    height: 45px;
    color: #fff;

    -webkit-box-align: center;
  }
  .header-nav .sub-nav:before {
    display: block;
    width: 10px;
    height: 2px;
    margin-right: 10px;
    content: "";
    background-color: #fff;
  }
  .header-nav .sub-nav > li > a {
    font-size: 1.6rem;
    font-weight: bold;
  }
  .header-nav .sub-nav > li > a:hover {
    color: #00a0e9;
  }
  .header-nav .sub-nav > li:not(:last-child):after {
    margin: 0 0.5em;
    content: "/";
    font-weight: bold;
  }
  .header-nav .sub-nav a {
    color: #fff;
  }
  .header-nav .action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav .action a {
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 150px;
    height: 100px;

    -webkit-box-align: center;
    -webkit-box-pack: center;
  }
}

@media (max-width: 767px) {
  .header-nav {
    position: absolute;
    top: 54px;
    left: 0;
    z-index: 999;
    display: none;
    width: 100%;
    height: calc(100vh - 50px);
    background: rgba(255, 255, 255, 0.9);
  }
  .header-nav.open {
    display: block;
    -webkit-animation: fadeIn 0.3s;
    animation: fadeIn 0.3s;
  }
  /*	.header-nav .nav{
		padding: 8px 10px;
	}
*/
  .header-nav .nav > li {
    font-size: 1.6rem;
  }
  .header-nav .nav > li:not(:last-child) {
  }
  .header-nav .nav > li > a {
    display: block;
    color: #fff;
    font-weight: bold;
    background-color: #003567;
    padding: 10px 0 10px 15px;
  }
  .header-nav .nav > li._news > a{
    border-bottom: 1px solid #fff;
  }
  .header-nav .sub-nav > li > a {
    display: block;
    color: #006ec8;
    font-size: 1.4rem;
    font-weight: bold;
    position: relative;
    padding: 10px 0 10px 40px;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #006ec8;
  }
  .header-nav .sub-nav > li > a::before {
    display: block;
    height: 2px;
    width: 10px;
    content: "";
    background: #006ec8;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .header-nav .action {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav .action a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 20px 0;
  }
  .header-nav .action li {
    width: 50%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .header-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 54px;
    height: 54px;
    cursor: pointer;
  }
  .header-menu div {
    position: relative;
  }
  .header-menu span {
    position: absolute;
    left: 11px;
    display: block;
    width: 32px;
    height: 4px;
    background: #006ec8;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;

    -o-transition: 0.35s ease-in-out;
  }
  .header-menu span:nth-child(1) {
    top: 14px;
  }
  .header-menu span:nth-child(2) {
    top: 23px;
  }
  .header-menu span:nth-child(3) {
    top: 32px;
  }
  .header-menu.open span:nth-child(1) {
    top: 23px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header-menu.open span:nth-child(2) {
    left: 50%;
    width: 0;
  }
  .header-menu.open span:nth-child(3) {
    top: 23px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/*----------------------------------------------------
	ボタン
----------------------------------------------------*/
a.main-btn01 {
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 56px;
  font-weight: bold;

  -webkit-box-align: center;
  -webkit-box-pack: center;
}
a.main-btn01:after {
  position: absolute;
  top: calc(50% - 0.875rem);
  right: 18px;
  content: "\f105";
  font-family: FontAwesome;
  font-size: 1.8rem;
  line-height: 1;
}
@media (max-width: 767px) {
  a.main-btn01 {
    height: 45px;
  }
}

/*----------------------------------------------------
	アニメーション
----------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*---------------------------------------------------------------------
					見出し
-----------------------------------------------------------------------*/
.main-title .title {
  border: solid #006ec8 4px;
  position: relative;
  text-align: center;
}
.main-title .title::after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}

.main-title .title-pic {
  position: relative;
  z-index: -2;
}
/* 2603ここから */
#interview-list .main-title .title {
  margin-left: auto;
  margin-right: auto;
}
/* 2603ここまで */


@media (min-width: 768px) {
  .main-title .title {
    padding: 30px 0 0 25px;
  }
  .main-title {
    height: 460px;
  }
/* 2603ここから */
#interview-list .main-title{
  height: auto;
  margin-bottom: 50px;
}
/* 2603ここまで */
  .main-title .title {
    width: 380px;
    height: 170px;
  }
  .main-title .title::after {
    top: 20px;
    left: 30px;
  }
  .main-title .title-pic {
    /*		top: 40px;
		right: 0;
*/
    width: 920px;
    height: 350px;
    margin: -125px 0 0 auto;
  }
}
@media (max-width: 767px) {
  .main-title .title {
    width: 59.3%;
    min-width: 190px;
    padding: 20px 0 15px;
  }
  .main-title .title img {
    height: 59px;
  }
  .main-title .title::after {
    top: 10px;
    left: 15px;
  }
  .main-title {
    margin-bottom: 20px;
  }
  .main-title .title-pic {
    width: 81.5%;
    padding-top: 31%;
    margin: -15px 0 20px auto;
    height: 100%;
  }
  /*	.main-title .title-pic{
		width: 81.5%;
		padding-top: 54%;
		margin: -75px 0 0 auto;
		min-height: 175px;
	}
*/
  .main-title.container {
    margin: 0 0 20px 20px;
    padding: 0;
  }
}

/*---------------------------*/

h3 .ff-market {
  color: #006ec8;
  line-height: 1;
}
h3 div.ff-mds {
  position: relative;
  background: #00a0e9;
  color: #fff;
  line-height: 2;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.6rem;
  padding: 0px 20px;
}
h3 div.ff-mds::before {
  display: block;
  height: 2px;
  content: "";
  background-color: #006ec8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media (min-width: 768px) {
  h3 .ff-market {
    font-size: 7.6rem;
  }
  h3 div.ff-mds {
    margin-left: 30px;
  }
  h3 div.ff-mds::before {
    width: 18px;
    left: -9px;
  }
  h3 p.ff-mds {
    font-size: 2rem;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  h3 .ff-market {
    font-size: 4.2rem;
  }
  h3 div.ff-mds {
    margin-left: 30px;
  }
  h3 div.ff-mds::before {
    width: 18px;
    left: -9px;
  }
  h3 p.ff-mds {
    font-size: 1.6rem;
    display: block;
    margin-top: 10px;
  }
}

/*--------------------*/

.s-ttl {
  position: relative;
  line-height: 2;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.3);
  display: inline-block;
}
.s-ttl::before {
  display: block;
  content: "";
  background-color: #006ec8;
  position: absolute;
}

@media (min-width: 768px) {
  .s-ttl {
    font-size: 2rem;
    padding: 0px 20px;
    margin-left: 12px;
  }
  .s-ttl::before {
    width: 24px;
    height: 2px;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .s-ttl {
    font-size: 1.6rem;
    padding: 0px 20px;
    margin-left: 7px;
  }
  .s-ttl::before {
    width: 15px;
    height: 2px;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
}

/*---------------------------------------------------------------------
			パンくず		
-----------------------------------------------------------------------*/
.bleadcrumb {
  padding: 10px 0;
  border-top: solid #003567 2px;
}
.bleadcrumb ul {
  padding: 0;
}
.bleadcrumb li {
  display: inline-block;
  margin-right: 0.3em;
}
@media (min-width: 768px) {
  .bleadcrumb li {
    font-size: 1.2rem;
    padding: 10px 0;
  }
  .bleadcrumb a:hover {
    color: #00a0e9;
  }
}
@media (max-width: 767px) {
  .bleadcrumb li {
    font-size: 1rem;
    padding: 0;
  }
}
.bleadcrumb li:first-child a {
  display: inline-block;
  position: relative;
}
.bleadcrumb li:nth-child(n + 2)::before {
  content: "\f105";
  font-family: "FontAwesome";
  padding-right: 0.3em;
}

/*----------------------------------------------------
	メイン
----------------------------------------------------*/
main {
  display: block;
  position: relative;
}

aside {
  display: block;
  position: fixed;
  top: 206px;
  right: 0;
  z-index: 9999;
}

@media (min-width: 768px) {
  aside div {
    /*		position: absolute;
		z-index: 999;
		right: 0;
*/
    background-color: #00a0e9;
    width: 76px;
    height: 315px;
  }
  aside div a:hover {
    background: #006ec8;
  }

  aside div a {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    width: 100%;
    height: 100%;
    padding: 34px 0 49px;
  }
}

@media (max-width: 1024px) {
  aside div {
    display: none;
  }
}

/*---------------------------------------------------------------------
					下層entry
-----------------------------------------------------------------------*/

.entry-area {
  background: url(/recruit_newgraduate/css/../images/entry-area_bg.gif) repeat;
  color: #fff;
  text-align: center;
  padding: 40px 0;
}
.entry-area .entry-btn {
  background: #fff;
}
.entry-area .entry-btn a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 30px 0 16px;
}

@media (min-width: 768px) {
  .entry-area {
    font-size: 1.8rem;
  }
  .entry-area .entry-btn {
    width: 67.25%;
    margin: 40px auto 0;
  }
  .entry-area .entry-btn a:hover {
    background: #006ec8;
  }
  .entry-area .entry-btn a {
    padding: 30px 0 16px;
  }
}
@media (max-width: 767px) {
  .entry-area {
    font-size: 1.2rem;
  }
  .entry-area .entry-btn {
    width: 93.3%;
    margin: 20px auto 0;
  }
  .entry-area .entry-btn a {
    padding: 12px 0 6px;
  }
  .entry-area .entry-btn img {
    height: 33px;
  }
}

/*---------------------------------------------------------------------
					footer	
-----------------------------------------------------------------------*/

#footer .footer-nav {
  background: #006ec8;
}
#footer .footer-link li {
  display: inline-block;
  margin-right: 1rem;
}
#footer .footer-link li a {
  color: #fff;
}
#footer .footer-link li .fas {
  margin-right: 0.5rem;
}
@media screen and (min-width: 769px),
  only screen and (min-device-width: 769px) and (max-device-width: 1024px) and (orientation: landscape) {
  #footer .footer-link li a:hover {
    color: #87f6f6;
  }
}
@media (min-width: 768px) {
  #footer .footer-nav {
    margin-bottom: 36px;
  }
  #footer .footer-nav .row {
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-align: center;
  }
}
@media (max-width: 767px) {
  #footer .footer-nav {
    margin-bottom: 20px;
  }
  #footer .footer-nav .container {
    padding-right: 0;
  }
  #footer .footer-link {
    width: 85.6%;
    padding: 1em;
  }
  #footer .footer-link li {
    display: inline-block;
    margin-right: 0.5em;
  }
  #footer .footer-link li:last-child {
    width: 100%;
    border-top: #ffffff 1px solid;
    margin: 0.5em 0 0;
    padding: 0.5em 0 0;
  }
}

#footer .btn-pagetop a {
  display: block;
  color: #fff;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(135, 246, 246, 1) 0%,
    rgba(0, 160, 233, 1) 100%
  );
}
#footer .btn-pagetop a:hover {
  color: #006ec8;
}

@media (min-width: 768px) {
  #footer .btn-pagetop a {
    font-size: 3rem;
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  #footer .footer-nav .btn-pagetop {
    width: 14.4%;
  }
  #footer .footer-nav .btn-pagetop a {
    height: 100%;

    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -ms-flex-align: center;
  }
}

/* --- */

#footer .footer-middle {
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  #footer .footer-middle {
    margin-bottom: 1.5em;
  }
}

/* --- */

#footer .footer-logo {
  margin-bottom: 1.85em;
}
#footer .parent-logo li + li {
  margin-left: 1em;
}
#footer .parent-logo ._kbi img {
  height: 1.85em;
}
#footer .parent-logo ._daigas img {
  height: 1.6em;
}

@media (max-width: 767px) {
  #footer .footer-logo-area {
    margin-bottom: 1.25em;
  }
  #footer .footer-logo {
    margin-bottom: 1em;
  }
  #footer .footer-logo img {
    width: 220px;
  }
  #footer .parent-logo ._kbi img {
    height: 1.5em;
  }
  #footer .parent-logo ._daigas img {
    height: 1em;
  }
}

/* --- */

#footer .footer-sitemap dt + dd,
#footer .footer-sitemap dd + dd {
  margin-top: 0.75em;
}
#footer .footer-sitemap dt,
#footer .footer-sitemap dt a {
  color: #006ec8;
  font-weight: bold;
}
#footer .footer-sitemap a:hover {
  /* text-decoration: underline; */
  color: #00a0e9;
}
#footer .footer-sitemap a i {
  margin-right: 0.25em;
}
@media (min-width: 768px) {
  #footer .footer-sitemap dl {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  #footer .footer-sitemap dl {
    width: 47.5%;
  }
  #footer .footer-sitemap dl:nth-of-type(n + 3) {
    margin-top: 0.75em;
  }
}
/* --- */

#footer .copy {
  text-align: center;
  border-top: 1px solid #d9d9d9;
  padding: 1.25em 0;
  font-size: 12px;
}

@media (max-width: 767px) {
  #footer .copy {
    font-size: 10px;
  }
}

/*----------------------------------------------------
    その他
----------------------------------------------------*/
/*.container {
	position: relative;
	width: 980px;
	margin: 0 auto;
	padding: 0 10px;
}*/
.container {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    max-width: 1020px; /*--0116追記--*/
  }
}

@media (min-width: 768px) {
  .container--xs {
    max-width: 660px;
  }
}

.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
