@charset "UTF-8";
/* --

 company.css

 ------------------------------------
-- */
@import url(https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese);
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&display=swap");
/* --

 * clearfix............float解除
 * font-size...........フォントサイズ指定（px指定はIE8対策）
 * moving-base.........基本のアニメーション
 * FontAwesome.........アイコンフォント使用（FontAwesome）
 * opacity.............透明度設定（IE対応含む）
 * tablet..............ブレイクポイント設定（タブレット）
 * mobile..............ブレイクポイント設定（スマホ）

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル

-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(0deg);
    transform: translateY(-4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(4px) rotate(0deg);
    transform: translateY(4px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-2px) rotate(45deg);
    transform: translateY(-2px) rotate(45deg);
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadein {
  -webkit-animation: fadein 0.5s ease-out forwards;
          animation: fadein 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeinUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeinUp {
  -webkit-animation: fadeinUp 0.5s ease-out forwards;
          animation: fadeinUp 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinRight {
  -webkit-animation: fadeinRight 0.5s ease-out forwards;
          animation: fadeinRight 0.5s ease-out forwards;
}

@-webkit-keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeinLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeinLeft {
  -webkit-animation: fadeinLeft 0.5s ease-out forwards;
          animation: fadeinLeft 0.5s ease-out forwards;
}

/*-----------------------------------

	$contents

-----------------------------------*/
.contents__title {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-color: #041f94;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.contents__title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(3, 114, 239, 0.8);
}
.company .contents__title {
  background-image: url("../images/company/contents-title.jpg");
}
.business .contents__title {
  background-image: url("../images/business/contents-title.jpg");
}
.recruit .contents__title {
  background-image: url("../images/recruit/contents-title.jpg");
}
.contact .contents__title {
  background-image: url("../images/contact/contents-title.jpg");
}
.privacy .contents__title {
  background-image: url("../images/privacy/contents-title.jpg");
}
.contents__title .inner {
  position: relative;
  z-index: 1;
  display: table;
  height: 100%;
}
.contents__title h2,
.contents__title .breadcrumbs {
  display: table-cell;
  vertical-align: middle;
}
.contents__title h2 {
  color: #fff;
  line-height: 1.4;
}
.contents__title h2 span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
.contents__title h2 span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background: url("../images/common/bolt.svg") no-repeat 0 0;
  background-size: cover;
  margin-right: 0.25em;
}
.contents__title h2 b {
  font-size: 36px;
  font-size: 3.6rem;
}
.contents__title .breadcrumbs {
  text-align: right;
  color: #fff;
}
.contents__title .breadcrumbs a {
  color: #fff;
}
.contents__title .breadcrumbs a:hover, .contents__title .breadcrumbs a:active, .contents__title .breadcrumbs a:focus {
  color: #f73838;
}
.contents__title .breadcrumbs ul {
  font-size: 0;
}
.contents__title .breadcrumbs li {
  font-size: 13px;
  font-size: 1.3rem;
  display: inline-block;
}
.contents__title .breadcrumbs li:not(:first-child)::before {
  content: "/";
  padding: 0 1em;
}
@media screen and (max-width: 560px) {
  .contents__title .breadcrumbs {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contents__title h2 b {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .contents__title {
    height: 120px;
  }
  .contents__title h2 {
    text-align: center;
  }
  .contents__title h2 b {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.contents__lead {
  padding-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .contents__lead {
    padding-bottom: 30px;
  }
}

/*-----------------------------------

	$contact

-----------------------------------*/
.contact__lead {
  padding-bottom: 50px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact__lead {
    padding-bottom: 30px;
  }
}
.contact .xf_block,
.contact .tbl-02 {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.contact .xf_block tr:first-child th,
.contact .tbl-02 tr:first-child th {
  border-top: 1px solid #041f94;
}
.contact .xf_block tr:first-child td,
.contact .tbl-02 tr:first-child td {
  border-top: 1px solid #ddd;
}
.contact .xf_block th,
.contact .xf_block .xf_field,
.contact .tbl-02 th,
.contact .tbl-02 .xf_field {
  font-weight: bold;
  width: 20%;
  border-bottom: 1px solid #041f94;
}
.contact .xf_block td,
.contact .xf_block .xf_input,
.contact .tbl-02 td,
.contact .tbl-02 .xf_input {
  border-bottom: 1px solid #ddd;
}
.contact .xf_block td,
.contact .xf_block th,
.contact .xf_block .xf_field,
.contact .xf_block .xf_input,
.contact .tbl-02 td,
.contact .tbl-02 th,
.contact .tbl-02 .xf_field,
.contact .tbl-02 .xf_input {
  padding: 1.4em 1.2em;
  text-align: left;
}
.contact .xf_block th,
.contact .xf_block .xf_field,
.contact .tbl-02 th,
.contact .tbl-02 .xf_field {
  font-weight: bold;
  width: 30%;
  vertical-align: middle;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact .xf_block th, .contact .xf_block td,
.contact .xf_block .xf_field,
.contact .xf_block .xf_input,
.contact .tbl-02 th,
.contact .tbl-02 td,
.contact .tbl-02 .xf_field,
.contact .tbl-02 .xf_input {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .contact .xf_block th,
.contact .xf_block .xf_field,
.contact .tbl-02 th,
.contact .tbl-02 .xf_field {
    background: #f2f4fa;
    color: #041f94;
    padding: 0.7em 0.6em;
    position: relative;
  }
  .contact .xf_block td,
.contact .xf_block .xf_input,
.contact .tbl-02 td,
.contact .tbl-02 .xf_input {
    padding: 0.7em 0 2em;
  }
  .contact .xf_block tr:first-child th, .contact .xf_block tr:first-child td,
.contact .xf_block tr:first-child .xf_field,
.contact .xf_block tr:first-child .xf_input,
.contact .tbl-02 tr:first-child th,
.contact .tbl-02 tr:first-child td,
.contact .tbl-02 tr:first-child .xf_field,
.contact .tbl-02 tr:first-child .xf_input {
    border-top: none;
  }
  .contact .xf_block tr:last-child td,
.contact .xf_block tr:last-child .xf_input,
.contact .tbl-02 tr:last-child td,
.contact .tbl-02 tr:last-child .xf_input {
    padding-bottom: 0;
  }
}
.contact .xf_essential {
  position: absolute;
  right: 2%;
  top: 50%;
  font-size: 0px;
  font-size: 0rem;
}
.contact .xf_essential::after {
  content: "必須";
  background: #f73838;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  padding: 0.3em 0.6em;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact input,
.contact textarea {
  width: 100%;
  padding: 0.8em 0.5em;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.contact__entry {
  text-align: center;
  background: #ebf7fc;
  padding: 40px;
  margin-top: 40px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .contact__entry {
    text-align: left;
    padding: 20px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .contact__entry {
    margin-top: 30px;
  }
}
.contact__entry-btn {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .contact__entry-btn {
    padding-top: 16px;
  }
}
.contact input[type=submit],
.contact input[type=button],
.contact input[type=reset] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  border-radius: 100px;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 0.25em 2em;
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  border: 2px solid #0372ef;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  appearance: none;
}
.contact input[type=submit],
.contact input[type=button] {
  background: #0372ef;
  color: #fff;
  margin-top: 30px;
}
.contact input[type=submit]:hover, .contact input[type=submit]:active, .contact input[type=submit]:focus,
.contact input[type=button]:hover,
.contact input[type=button]:active,
.contact input[type=button]:focus {
  background: #f73838;
  border-color: #f73838;
  outline: 0;
}
.contact input[type=reset] {
  background: #fff;
  color: #0372ef;
  margin-top: 20px;
}
.contact input[type=reset]:hover, .contact input[type=reset]:active, .contact input[type=reset]:focus {
  border-color: #f73838;
  outline: 0;
  color: #f73838;
}