@charset "UTF-8";
/* =================================================================================================

　基本スタイル

================================================================================================= */
/* CSS Document */
/* ----------------------------------------------------------------------------
　リセット
---------------------------------------------------------------------------- */
body a {
  outline: 0;
}

body, h1, h2, h3, h4, h5, ul, li, dl, dt, dd, p, strong, address {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

address {
  font-style: normal;
}

img {
  border: 0;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

/* ----------------------------------------------------------------------------
　フォントサイズ
---------------------------------------------------------------------------- */
html {
  font-size: 16px;
}

@media screen and (max-width: 800px) {
  html {
    font-size: 15px;
  }
}

@media screen and (max-width: 592px) {
  html {
    font-size: 14px;
  }
}

@media screen and (max-width: 350px) {
  html {
    font-size: 12px;
  }
}

body {
  -webkit-text-size-adjust: 100%;
}

/* ----------------------------------------------------------------------------
　フォントファミリー
---------------------------------------------------------------------------- */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  font-weight: 600;
  color: #333;
}

/* ----------------------------------------------------------------------------
　リンク
---------------------------------------------------------------------------- */
a {
  color: #006dd9;
}

a:hover {
  text-decoration: none;
}

/* ----------------------------------------------------------------------------
　要素の表示・非表示
---------------------------------------------------------------------------- */
.is-visible-xld,
.is-visible-ld,
.is-visible-md,
.is-visible-sd {
  display: none;
}

@media all and (max-width: 1366px) {
  .is-visible-xld {
    display: block;
  }
  .is-hidden-xld {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .is-visible-ld {
    display: block;
  }
  .is-hidden-ld {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .is-visible-md {
    display: block;
  }
  .is-hidden-md {
    display: none;
  }
}

@media screen and (max-width: 592px) {
  .is-visible-sd {
    display: block;
  }
  .is-hidden-sd {
    display: none !important;
  }
}

/* ----------------------------------------------------------------------------
　印刷時Chrome対応
---------------------------------------------------------------------------- */
@media print {
  html,
  body {
    zoom: 0.9;
  }
}

/* ----------------------------------------------------------------------------
　デバッグ用
---------------------------------------------------------------------------- */
#widthdebug {
  position: fixed;
  left: 0rem;
  bottom: 0rem;
  background-color: #000;
  color: #fff;
  font-size: 0.875rem;
  z-index: 1000000;
}

main {
  padding-top: 3rem;
}

/* ----------------------------------------------------------------------------
　ヘッダ
---------------------------------------------------------------------------- */
header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  padding: 1.5rem 0.5rem 1.5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  header {
    padding: 1.2rem;
  }
}

@media screen and (max-width: 800px) {
  header {
    padding: 0 0 0 1rem;
  }
}

@media print {
  header {
    position: absolute;
  }
}

header .logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

header .logo img {
  width: 300px;
}

@media screen and (max-width: 592px) {
  header .logo img {
    width: 60%;
  }
}

header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 800px) {
  header .menu {
    display: none;
  }
}

header .menu li {
  position: relative;
}

header .menu li:after {
  content: "";
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 1px;
  height: 100%;
  background-color: #d0d0d0;
}

header .menu li:last-child {
  margin-right: 0rem;
  padding-right: 0rem;
}

header .menu li:last-child:after {
  display: none;
}

header .menu li a {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  line-height: 120%;
  color: #2e3192;
  padding: 0 1.5rem;
  text-decoration: none;
}

@media screen and (max-width: 1024px) {
  header .menu li a {
    padding: 0 0.8rem;
    font-size: 0.8rem;
  }
}

header .menu li a:hover {
  opacity: 0.8;
}

@media print {
  header .menu li a {
    font-size: 0.7rem;
    padding: 0 0.8rem;
  }
}

header .menu li a span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 1px;
  line-height: 120%;
  margin-top: 0.4rem;
}

header .btn_dropdown_open {
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  header .btn_dropdown_open {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }
}

@media screen and (max-width: 592px) {
  header .btn_dropdown_open {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
  }
}

header .btn_dropdown_open img {
  width: 100%;
}

header .btn_dropdown_open:hover {
  opacity: 0.8;
}

/* ----------------------------------------------------------------------------
　ヘッダドロップダウンメニュー
---------------------------------------------------------------------------- */
#header_dropdown {
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  z-index: 200000;
  background-color: #2e3192;
  color: #fff;
}

#header_dropdown a {
  color: #fff;
  text-decoration: none;
}

#header_dropdown.active {
  display: block;
  -webkit-animation: headerDropdownAnime 0.3s ease-in-out .0s forwards;
          animation: headerDropdownAnime 0.3s ease-in-out .0s forwards;
}

@media screen and (max-width: 1024px) {
  #header_dropdown {
    height: 100%;
  }
}

@media screen and (min-width: 800px) {
  #header_dropdown {
    display: none !important;
  }
}

#header_dropdown .scroll {
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: auto;
}

#header_dropdown .scroll::-webkit-scrollbar {
  width: 5px;
  background-color: #aaa;
}

#header_dropdown .scroll::-webkit-scrollbar-thumb {
  background-color: #666;
}

#header_dropdown .scroll_inner {
  padding-bottom: 1.5rem;
}

@-webkit-keyframes headerDropdownAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes headerDropdownAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

#header_dropdown .close a {
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 15%;
}

#header_dropdown .close a img {
  width: 100%;
}

/* メインメニュー */
#header_dropdown .menu {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

#header_dropdown .menu li {
  margin-bottom: 2.5rem;
}

#header_dropdown .menu li:last-child {
  margin-bottom: 0rem;
}

#header_dropdown .menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#header_dropdown .menu li .text1 {
  width: 100%;
  text-align: right;
  font-weight: normal;
  margin-right: 1.5rem;
}

#header_dropdown .menu li .text2 {
  width: 100%;
}

#header_dropdown .btn_intern a {
  width: 70%;
  margin: 0 auto 1.5rem;
  display: block;
  border: 1px solid #fff;
  text-align: center;
  padding: 1.5rem 0;
}

#header_dropdown .btn_taikenki a {
  width: 70%;
  margin: 0 auto 1rem;
  display: block;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
}

#header_dropdown .btn_corpo {
  text-align: center;
  margin-top: 2rem;
}

#header_dropdown .btn_corpo a {
  text-align: center;
  color: #fff;
}

/* ----------------------------------------------------------------------------
　ボタンスタイル1
---------------------------------------------------------------------------- */
.btn_style1 a {
  display: inline-block;
  font-size: 1rem;
  line-height: 130%;
  font-weight: 600;
  color: #2e3192;
  text-decoration: none;
  background: url("../img/btn_style1_right.svg") right 0rem top 0 no-repeat;
  background-size: 20px auto;
  padding-right: 35px;
}

@media screen and (max-width: 592px) {
  .btn_style1 a {
    background-size: 18px auto;
    padding-right: 25px;
  }
}

.btn_style1 a:hover {
  opacity: 0.8;
}

@media all and (-ms-high-contrast: none) {
  .btn_style1 a {
    padding-right: 3rem;
    background-position: right -50px top 0px;
    background-attachment: local;
    background-size: 50%;
  }
}

.btn_style1.down a {
  background: url("../img/btn_style1_down.svg") right 0rem top 0 no-repeat;
  background-size: 20px auto;
}

@media screen and (max-width: 592px) {
  .btn_style1.down a {
    background-size: 18px auto;
    padding-right: 25px;
  }
}

@media all and (-ms-high-contrast: none) {
  .btn_style1.down a {
    background-position: right -20% top 50%;
    background-attachment: local;
    background-size: 30%;
  }
}

.btn_style1 a span {
  padding-bottom: 0.2rem;
  border-bottom: 8px solid #f3e000;
  display: inline-block;
}

@media screen and (max-width: 592px) {
  .btn_style1 a span {
    border-bottom: 5px solid #f3e000;
  }
}

/* ----------------------------------------------------------------------------
　ボタンスタイル2
---------------------------------------------------------------------------- */
.btn_style2 a {
  display: block;
  background-color: #f6e001;
  text-decoration: none;
  color: #172166;
  font-weight: 600;
  text-align: center;
  padding: 2rem 0;
  font-size: 1.275rem;
  letter-spacing: 5px;
  line-height: 120%;
}

.btn_style2 a:hover {
  opacity: 0.8;
}

.btn_style2 a span {
  padding: 0 3rem 0 0;
  background-image: url(../img/btn_style2_right.svg);
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: auto;
}

@media all and (-ms-high-contrast: none) {
  .btn_style2 a span {
    padding-right: 5rem;
    background-position: right -250% top 40%;
    background-attachment: local;
    background-size: 80%;
  }
}

/* ----------------------------------------------------------------------------
　追従ボタン
---------------------------------------------------------------------------- */
#fixed_btn {
  position: fixed;
  top: 110px;
  right: 0rem;
  z-index: 5;
  width: 40px;
}

@media screen and (max-width: 592px) {
  #fixed_btn {
    width: 100%;
    top: initial;
    right: initial;
    bottom: 0rem;
    left: 0rem;
  }
}

@media print {
  #fixed_btn {
    display: none;
  }
}

#fixed_btn .page_top {
  text-align: right;
}

#fixed_btn .page_top img {
  width: 13%;
  position: relative;
  top: 1px;
}

@media screen and (max-width: 592px) {
  #fixed_btn ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#fixed_btn li {
  margin-bottom: 1px;
  position: relative;
}

#fixed_btn li:last-child {
  top: -1px;
}

@media screen and (max-width: 592px) {
  #fixed_btn li {
    width: 50%;
    margin-bottom: 0px;
  }
  #fixed_btn li:last-child {
    top: 0;
  }
}

#fixed_btn li img {
  width: 100%;
}

#fixed_btn li a {
  display: block;
}

#fixed_btn li a:hover {
  opacity: 0.8;
}

/* ----------------------------------------------------------------------------
　フッタ
---------------------------------------------------------------------------- */
.footer_page_top {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 100002;
}

.footer_page_top img {
  width: 70px;
}

.footer_page_top a:hover {
  opacity: 0.8;
}

@media print {
  .footer_page_top {
    display: none;
  }
}

footer {
  background-color: #4d4d4d;
  color: #fff;
  padding: 2.7rem 0 2rem;
  position: relative;
  z-index: 100002;
}

@media screen and (max-width: 592px) {
  footer {
    padding: 2rem 0 2rem;
  }
}

footer .footer_inner {
  width: 760px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 840px) {
  footer .footer_inner {
    width: 95%;
  }
}

@media print {
  footer .footer_inner {
    padding: 1.5rem 2rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

footer .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 3rem;
}

@media screen and (max-width: 592px) {
  footer .btn_box {
    margin-bottom: 2.5rem;
  }
}

footer .btn_box .btn_recruit {
  font-size: 1rem;
  letter-spacing: 1px;
  display: block;
  color: #fff;
  text-decoration: none;
  line-height: 120%;
  position: relative;
  position: relative;
  top: 0.4rem;
}

footer .btn_box .btn_internship a {
  font-size: 0.875rem;
  display: block;
  background: url("../img/btn_style2_right.svg") 1rem 50% no-repeat;
  background-size: 17px auto;
  background-color: #2e3192;
  color: #fff;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  text-decoration: none;
  line-height: 120%;
}

footer .btn_box .btn_internship a:hover {
  opacity: 0.8;
}

footer .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}

@media screen and (max-width: 592px) {
  footer .menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 1rem;
  }
}

footer .menu li {
  margin-right: 1.5rem;
  position: relative;
}

@media screen and (max-width: 1024px) {
  footer .menu li {
    margin-right: 0.7rem;
  }
}

footer .menu li:last-child {
  margin-right: 0rem;
  padding-right: 0rem;
}

@media screen and (max-width: 592px) {
  footer .menu li {
    width: 48%;
    margin-right: 0rem;
    padding-right: 0rem;
    margin-bottom: 1.5rem;
  }
}

footer .menu li a {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 600;
  line-height: 120%;
  color: #fff;
  text-decoration: none;
}

footer .menu li a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1024px) {
  footer .menu li a {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 592px) {
  footer .menu li a {
    font-size: 1rem;
  }
}

footer .menu li a span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 2px;
  font-weight: normal;
}

@media screen and (max-width: 592px) {
  footer .menu li a span {
    font-size: 0.7rem;
    margin-top: 0.3rem;
  }
}

footer .corpolink {
  position: absolute;
  right: 0rem;
  bottom: 0rem;
  font-size: 0.75rem;
  font-weight: normal;
}

@media screen and (max-width: 592px) {
  footer .corpolink {
    position: relative;
    margin-bottom: 1rem;
  }
}

footer .corpolink a {
  color: #fff;
}

footer address {
  font-size: 0.7rem;
  font-weight: normal;
  letter-spacing: 0.5px;
}

.fixed_text {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  display: inline-block;
  color: #f6e214;
  position: absolute;
  top: 2rem;
  left: -10rem;
  font-size: 1.125rem;
  line-height: 100%;
}

@media screen and (max-width: 592px) {
  .fixed_text {
    display: none;
  }
}
/*# sourceMappingURL=base.css.map */
