@charset "UTF-8";
@import url("https://use.typekit.net/bpa3xfm.css");
@import url("https://use.typekit.net/qjf2jtv.css");
@import url("https://use.typekit.net/qao5wlx.css");
/* リセット
 ------------------------------------------*/
header, div, span, applet, object, iframe, input[type=file], h1, h2, h3, h4, h5, h6, p, select, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0 auto;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-family: "noto-sans-cjk-jp", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}

.ma20 {
  margin-top: 20px;
}

small {
  font-size: 8em;
}

a {
  text-decoration: none;
  outline: none;
  border: none;
}

a:hover {
  text-decoration: none;
}

a img, img {
  border: 0;
}

blockquote, dd, div, dl, dt, h1, h2, h3, h4, h5, h6, li, p, pre, span, td, th, ul {
  margin: 0;
  padding: 0;
}

abbr, acronym {
  border: 0;
}

address, caption, cite, code, dfn, em, th, strong, var {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

code, kbd, pre, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

* + html code, kbd, pre, samp, tt {
  font-size: 108%;
}

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

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button, fieldset, form, input, label, legend, textarea {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%; /*table-layout:fixed;*/
}

table td {
  vertical-align: middle;
}

.right {
  float: right;
}

.left {
  float: left;
}

/* クリア
 ------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* HEADER*/
.pc {
  display: block;
}
@media screen and (max-width: 736px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 736px) {
  .sp {
    display: block;
  }
}

/* CSS Document */
body {
  color: #5f5f5f;
  background-color: #f5f5f7;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  vertical-align: bottom;
}

section {
  padding: 180px 0 80px;
}
section .box .inner-box {
  padding: 0 50px 0 200px;
}
section .box .inner-box a.btn-more {
  color: #0b318f;
  font-family: "poppins", sans-serif;
  border: 1px solid #0b318f;
  padding: 10px 60px 10px 50px;
  border-radius: 100px;
  background-color: #f5f5f7;
  position: absolute;
  bottom: auto;
  transition: 0.2s;
  margin-top: 30px;
}
section .box .inner-box a.btn-more::after {
  content: "";
  background-color: #0b318f;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: 0.2s;
}
section .box .inner-box a.btn-more:hover {
  opacity: 1;
  background-color: #0b318f;
  color: #fff;
}
section .box .inner-box a.btn-more:hover::after {
  content: "";
  background-color: #fff;
  background-image: url(../img/top/icon-arrow-bl.svg);
  background-size: 25%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%) scale(3);
  transform-origin: center;
}

.fp-section {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.fp-section.fp-table {
  display: flex;
  align-items: center;
}

.fp-tableCell {
  height: auto !important;
  width: 100% !important;
  display: block;
}

.section.whiteout::before {
  animation: smokeEffect 1s forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-color: white;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  filter: blur(20px);
  border-radius: 500px;
}

@keyframes smokeEffect {
  0% {
    width: 0;
    height: 0;
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    width: 100%;
    height: 100vh;
    transform: scale(1.5);
    opacity: 1;
  }
}
.section.whitein::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: white;
  transform: scale(1.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  filter: blur(20px);
  border-radius: 500px;
  animation: whiteInEffect 1s forwards;
}

@keyframes whiteInEffect {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadein01, .fadein02, .fadein03 {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1.5s, transform 1.5s;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header h1.header-logo {
  margin: 50px 0 0 50px;
}
header h1.header-logo img {
  width: auto;
  height: 40px;
}
header .ham-menu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #f5f5f7;
  transition: right 0.3s ease;
  padding: 80px 50px;
}
header .ham-menu.show {
  right: 0;
}
header .ham-menu ul.menu-box {
  display: flex;
  justify-content: space-between;
  margin: 0 50px 0 50%;
}
header .ham-menu ul.menu-box li {
  margin: 0;
}
header .ham-menu ul.menu-box li a {
  font-size: 16px;
  color: #5f5f5f;
  font-family: "Roboto", sans-serif !important;
  font-weight: 300;
}
header .ham-menu ul.menu-box li ul {
  margin: 20px 0;
}
header .ham-menu ul.menu-box li ul li a {
  font-size: 14px;
}
header .ham-menu .panel-box {
  display: flex;
  justify-content: space-between;
  margin: 50px 50px 0 50%;
}
header .ham-menu .panel-box .contact-panel, header .ham-menu .panel-box .recruit-panel {
  width: 48%;
  border-radius: 10px;
}
header .ham-menu .panel-box .contact-panel a, header .ham-menu .panel-box .recruit-panel a {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
header .ham-menu .panel-box .contact-panel a h2, header .ham-menu .panel-box .recruit-panel a h2 {
  font-size: 22px;
  font-weight: 500;
  width: 100%;
  font-family: "poppins", sans-serif;
}
header .ham-menu .panel-box .contact-panel a h2 span, header .ham-menu .panel-box .recruit-panel a h2 span {
  display: block;
  font-size: 11px;
}
header .ham-menu .panel-box .contact-panel a p, header .ham-menu .panel-box .recruit-panel a p {
  font-size: 13px;
}
header .ham-menu .panel-box .contact-panel {
  background-color: #5f5f5f;
}
header .ham-menu .panel-box .contact-panel a h2 {
  color: #fff;
}
header .ham-menu .panel-box .contact-panel a p {
  color: #fff;
}
header .ham-menu .panel-box .recruit-panel a {
  background-color: #fff;
  color: #5f5f5f;
}
header .ham-menu .panel-box .recruit-panel a h2::first-letter {
  color: #0b318f;
}
header .ham-menu .bottom-box {
  width: 100%;
  padding: 0 50px;
  position: absolute;
  bottom: 80px;
  left: 0;
  display: flex;
  justify-content: space-between;
}
header .ham-menu .bottom-box .bottom-left {
  position: relative;
}
header .ham-menu .bottom-box .bottom-left .logo img {
  width: auto;
  height: 40px;
}
header .ham-menu .bottom-box .bottom-left p {
  font-size: 11px;
  line-height: 1.5em;
  margin-top: 20px;
}
header .ham-menu .bottom-box .bottom-left p.blue {
  color: #0b318f;
  margin-top: 20px;
}
header .ham-menu .bottom-box .bottom-left ul.sns-icon {
  display: flex;
  position: absolute;
  right: -100px;
  bottom: 0;
}
header .ham-menu .bottom-box .bottom-left ul.sns-icon li {
  margin-right: 10px;
}
header .ham-menu .bottom-box .bottom-left ul.sns-icon li a img {
  width: 40px;
}
header .ham-menu .bottom-box .bottom-right {
  width: 40%;
}
header .ham-menu .bottom-box .bottom-right ul.right-icon {
  justify-content: flex-end;
  margin-bottom: 20px;
}
header .ham-menu .bottom-box .bottom-right ul.right-icon li a img {
  width: auto;
  height: 80px;
}
header .ham-menu .bottom-box .bottom-right ul {
  display: flex;
  flex-wrap: wrap;
}
header .ham-menu .bottom-box .bottom-right ul li {
  margin-right: 10px;
  min-width: 9em;
  line-height: 1em;
}
header .ham-menu .bottom-box .bottom-right ul li a {
  font-size: 11px;
  line-height: 1.5em;
  color: #5f5f5f;
}
header .menu-icon {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 99999;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
}
header .menu-icon span {
  width: 100%;
  height: 2px;
  background-color: #0b318f;
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
}
header .menu-icon span:nth-of-type(1) {
  top: 0;
}
header .menu-icon span:nth-of-type(2) {
  top: 8px;
}
header .menu-icon span:nth-of-type(3) {
  top: 16px;
}
header .menu-icon.active span:nth-of-type(1) {
  top: 3px;
  transform: translateY(6px) rotate(-30deg);
  width: 100%;
}
header .menu-icon.active span:nth-of-type(2) {
  opacity: 0;
}
header .menu-icon.active span:nth-of-type(3) {
  top: 15px;
  transform: translateY(-6px) rotate(30deg);
  width: 100%;
}

#side-menu {
  position: fixed;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}
#side-menu ul {
  position: relative;
}
#side-menu ul::before {
  content: "";
  background-color: #ccc;
  width: 1px;
  height: calc(100% - 75px);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
#side-menu ul li a {
  display: block;
  color: #ccc;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  padding: 30px 20px;
}
#side-menu ul li a::before {
  content: "";
  background-color: #ccc;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
#side-menu ul li.active a {
  color: #0b318f;
  font-weight: 700;
}
#side-menu ul li.active a::before {
  content: "";
  background-color: #0b318f;
}
#side-menu ul li.active a::after {
  content: "";
  border: 1px solid #0b318f;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: 1s circleanime linear infinite;
}
@keyframes circleanime {
  0% {
    transform: translate(-50%, -50%) scale(0.68);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

#mv {
  width: 100%;
  height: 100vh;
  overflow: scroll;
  background-color: #f5f5f7;
  padding: 0;
}
#mv canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#mv .box {
  width: 100%;
  height: 100vh;
}
#mv .box .inner-box {
  width: 100%;
  height: 100vh;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#mv .box .inner-box .title {
  display: inline-block;
  text-align: center;
}
#mv .box .inner-box .title h1 {
  font-size: 8vw;
  font-weight: 500;
  font-family: "din-condensed", sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
#mv .box .inner-box .title h1 span {
  color: #0b318f;
  font-weight: 500;
  font-family: "din-condensed", sans-serif;
}
#mv .box .inner-box .title h2 {
  font-size: 1.6vw;
  margin-bottom: 80px;
}
#mv .box .inner-box .title p {
  font-size: 1.1vw;
}
#mv .box .inner-box .news-picker {
  position: absolute;
  bottom: 50px;
  left: 200px;
}
#mv .box .inner-box .news-picker a {
  display: flex;
  align-items: center;
  border: 1px solid #0b318f;
  padding: 10px 80px 10px 20px;
  border-radius: 100px;
  background-color: #f5f5f7;
  position: relative;
}
#mv .box .inner-box .news-picker a::after {
  content: "";
  background-color: #0b318f;
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  transition: 0.2s;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
}
#mv .box .inner-box .news-picker a span.date {
  color: #999;
  font-size: 0.9vw;
  padding-right: 10px;
  font-family: "Roboto", sans-serif !important;
}
#mv .box .inner-box .news-picker a h2 {
  font-size: 1vw;
  color: #0b318f;
}
#mv .box .inner-box .news-picker a:hover {
  opacity: 1;
}
#mv .box .inner-box .news-picker a:hover::after {
  content: "";
  background-color: #0b318f;
  background-image: url(../img/top/icon-arrow-wh.svg);
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%) scale(3);
  transform-origin: center;
}
#mv .box .inner-box .scroll-guide {
  position: absolute;
  bottom: 50px;
  right: 10%;
  writing-mode: vertical-rl;
  padding-bottom: 50px;
}
#mv .box .inner-box .scroll-guide::after {
  content: "";
  background-color: #0b318f;
  width: 1px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: calc(10% + 10px);
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 70px;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 120px;
    opacity: 0;
  }
}
#mv .box .inner-box .scroll-guide span {
  font-size: 12px;
  color: #0b318f;
  font-weight: 500;
}

.business-img {
  position: fixed;
  width: 45%;
  right: 0;
  top: 100px;
  z-index: -1;
  transition: 0.3s;
}

#business {
  padding-top: 0;
}
#business .box .inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 220px;
  padding-bottom: 320px;
}
#business .box .inner-box .text {
  width: 45%;
}
#business .box .inner-box .text h2 {
  color: #0b318f;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 50px;
}
#business .box .inner-box .text p {
  font-size: 14px;
  margin-bottom: 30px;
}
#business .box .inner-box .text .panel-box {
  margin-top: 120px;
}
#business .box .inner-box .text .panel-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#business .box .inner-box .text .panel-box ul li {
  width: 48%;
}
#business .box .inner-box .text .panel-box ul li:nth-of-type(1), #business .box .inner-box .text .panel-box ul li:nth-of-type(2) {
  margin-bottom: 4%;
}
#business .box .inner-box .text .panel-box ul li a {
  display: block;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  transition: 0.3s;
}
#business .box .inner-box .text .panel-box ul li a h3 {
  font-size: 16px;
  font-weight: 500;
  font-family: "poppins", sans-serif;
  color: #0b318f;
  text-align: center;
  transition: 0.3s;
}
#business .box .inner-box .text .panel-box ul li a h3 span {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: #5f5f5f;
  transition: 0.3s;
}
#business .box .inner-box .text .panel-box ul li a:hover {
  background-color: #0b318f;
  opacity: 1;
}
#business .box .inner-box .text .panel-box ul li a:hover h3 {
  color: #fff;
}
#business .box .inner-box .text .panel-box ul li a:hover h3 span {
  color: #fff;
}
#business .box .inner-box .text .pickup-box {
  margin-top: 120px;
}
#business .box .inner-box .text .pickup-box h3 {
  font-size: 20px;
  font-weight: 500;
  color: #0b318f;
  margin-bottom: 20px;
}
#business .box .inner-box .text .pickup-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#business .box .inner-box .text .pickup-box ul li {
  width: 31%;
}
#business .box .inner-box .text .pickup-box ul li a {
  display: block;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 6px 6px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  font-size: 16px;
  color: #5f5f5f;
}
#business .box .inner-box .text .pickup-box ul li a:hover {
  background-color: #0b318f;
  color: #fff;
  opacity: 1;
}
#business .box .inner-box .img {
  width: 50%;
}
#business .box .inner-box .img canvas {
  background-color: #f5f5f7;
}

#works .box .inner-box .works-pick ul .slick-track {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#works .box .inner-box .works-pick ul .slick-next {
  right: 5px;
}
#works .box .inner-box .works-pick ul .slick-prev {
  left: auto;
  right: 60%;
  z-index: 1;
}
#works .box .inner-box .works-pick ul .slick-next:before,
#works .box .inner-box .works-pick ul .slick-prev:before {
  font-family: "Roboto", sans-serif !important;
  content: "";
  background-image: url(../img/top/icon-arrow-bl.svg);
  background-repeat: no-repeat;
  background-color: #fff;
  border: 1px solid #0b318f;
  padding: 10px 15px;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  display: block;
  background-position: center;
  opacity: 1;
}
#works .box .inner-box .works-pick ul .slick-prev:before {
  transform: rotate(180deg);
}
#works .box .inner-box .works-pick ul .slick-dots {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  bottom: -25px;
}
#works .box .inner-box .works-pick ul .slick-dots li {
  width: 30px;
  height: 3px;
  margin: 0;
}
#works .box .inner-box .works-pick ul .slick-dots li button {
  width: 30px;
  height: 3px;
  padding: 0;
}
#works .box .inner-box .works-pick ul .slick-dots li button::before {
  content: "";
  width: 30px;
  height: 3px;
  opacity: 1;
  background-color: #ccc;
  transition: 0.3s;
}
#works .box .inner-box .works-pick ul .slick-dots li.slick-active button::before {
  background-color: #0b318f;
}
#works .box .inner-box .works-pick ul li {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#works .box .inner-box .works-pick ul li .text {
  width: 38%;
  position: relative;
  display: flex;
  align-items: center;
}
#works .box .inner-box .works-pick ul li .text p {
  font-size: 14px;
}
#works .box .inner-box .works-pick ul li .text a {
  position: absolute;
  bottom: 0;
  margin-top: 30px;
}
#works .box .inner-box .works-pick ul li .img {
  width: 60%;
  background: #f5f5f7;
  position: relative;
}
#works .box .inner-box .works-pick ul li .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .box .inner-box .works-pick ul li .img .caption {
  display: inline-block;
  background-color: #fff;
  padding: 20px 50px 0 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
#works .box .inner-box .works-pick ul li .img .caption span {
  color: #999;
  font-size: 13px;
}
#works .box .inner-box .works-pick ul li .img .caption h3 {
  font-size: 14px;
  font-weight: 500;
  color: #0b318f;
}
#works .box .inner-box .works-list {
  margin-top: 80px;
}
#works .box .inner-box .works-list ul {
  display: flex;
}
#works .box .inner-box .works-list ul li {
  background-color: #fff;
  width: 18%;
  margin-right: 1%;
}

#about .box .inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#about .box .inner-box .text {
  width: 45%;
}
#about .box .inner-box .text h2 {
  color: #0b318f;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 50px;
}
#about .box .inner-box .text p {
  font-size: 14px;
  margin-bottom: 30px;
}
#about .box .inner-box .img {
  width: 50%;
}

#contact .box .inner-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: 100px;
  display: flex;
  flex-wrap: wrap;
}
#contact .box .inner-box .contact-panel, #contact .box .inner-box .recruit-panel {
  width: 48%;
  border-radius: 10px;
}
#contact .box .inner-box .contact-panel a, #contact .box .inner-box .recruit-panel a {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  position: relative;
}
#contact .box .inner-box .contact-panel a h2, #contact .box .inner-box .recruit-panel a h2 {
  font-size: 40px;
  font-weight: 500;
  width: 100%;
  font-family: "poppins", sans-serif;
}
#contact .box .inner-box .contact-panel a h2 span, #contact .box .inner-box .recruit-panel a h2 span {
  display: block;
  font-size: 14px;
}
#contact .box .inner-box .contact-panel a p, #contact .box .inner-box .recruit-panel a p {
  font-size: 13px;
}
#contact .box .inner-box .contact-panel {
  background-color: #5f5f5f;
}
#contact .box .inner-box .contact-panel a::after {
  content: "";
  background-image: url(../img/top/icon-arrow-wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
#contact .box .inner-box .contact-panel a h2 {
  color: #fff;
}
#contact .box .inner-box .contact-panel a p {
  color: #fff;
}
#contact .box .inner-box .recruit-panel a {
  background-color: #fff;
  color: #5f5f5f;
}
#contact .box .inner-box .recruit-panel a::after {
  content: "";
  background-image: url(../img/top/icon-link-wh.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}
#contact .box .inner-box .recruit-panel a h2::first-letter {
  color: #0b318f;
}
#contact footer {
  padding: 100px 100px 0 200px;
  display: flex;
}
#contact footer .footer-left {
  width: 50%;
}
#contact footer .footer-left ul {
  display: flex;
  flex-wrap: wrap;
}
#contact footer .footer-left ul li {
  margin-right: 10px;
  min-width: 9em;
  line-height: 1em;
}
#contact footer .footer-left ul li a {
  font-size: 11px;
  line-height: 1.5em;
}
#contact footer .footer-right {
  width: 50%;
}
#contact footer .footer-right p {
  font-size: 11px;
  line-height: 1.5em;
}
#contact footer .footer-right ul.sns-icon {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}
#contact footer .footer-right ul.sns-icon li {
  margin-left: 10px;
}
#contact footer .footer-right ul.sns-icon li a img {
  width: 40px;
}/*# sourceMappingURL=top.css.map */