@charset "UTF-8";
/*

normalize.css + common.css + style.css

ページごとの記述はstyle.css
共通項目はcommon.css

bodyにpageのidを付与
ページidごとに記述していく

汎用クラスは接頭語 m-
ページ全体を横割りに跨ぐ区切り sct-
sctの中でのグループ分け grp-

クラス名に汎用語を使う場合は、ある程度の詳細度を持つこと

予約クラス一覧
container
sp pc tab sp-tab pc-tab


*/
.container {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 1019px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
  .container img {
    max-width: 100%;
  }
}

.wrap {
  position: relative;
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  z-index: 9999999;
  -webkit-animation: Shutter 8s forwards;
  animation: Shutter 8s forwards;
}
.shutter img {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 250px;
  -webkit-animation: shutterTxt 7s forwards;
  animation: shutterTxt 7s forwards;
}
@media screen and (max-width: 767px) {
  .shutter img {
    width: 150px;
  }
}

@keyframes Shutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterTxt {
  0% {
    opacity: 0;
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
  }
  20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#header {
  z-index: 100;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  height: 60px;
}
#header .container {
  height: 60px;
}
#header .navibutton {
  position: absolute;
  width: 30px;
  height: 40px;
  top: 10px;
  left: 20px;
}
#header .navibutton:hover {
  cursor: pointer;
}
#header .navibutton span {
  display: block;
  position: absolute;
  background-color: #FFF;
  height: 2px;
  width: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header .navibutton .l1 {
  top: 12px;
  -moz-transform-origin: top right;
  -ms-transform-origin: top right;
  -webkit-transform-origin: top right;
  transform-origin: top right;
}
#header .navibutton .l2 {
  top: 19px;
}
#header .navibutton .l3 {
  top: 26px;
  -moz-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
}
#header .navibutton.active .l1 {
  -moz-transform: translateX(-4px) translateY(-4px) rotate(-45deg);
  -ms-transform: translateX(-4px) translateY(-4px) rotate(-45deg);
  -webkit-transform: translateX(-4px) translateY(-4px) rotate(-45deg);
  transform: translateX(-4px) translateY(-4px) rotate(-45deg);
}
#header .navibutton.active .l2 {
  opacity: 0;
}
#header .navibutton.active .l3 {
  -moz-transform: translateX(-4px) translateY(3px) rotate(45deg);
  -ms-transform: translateX(-4px) translateY(3px) rotate(45deg);
  -webkit-transform: translateX(-4px) translateY(3px) rotate(45deg);
  transform: translateX(-4px) translateY(3px) rotate(45deg);
}

#navi {
  z-index: 99;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
}
#navi ul {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: 'Montserrat', "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
}
#navi ul li a {
  width: 100%;
  font-size: 20px;
  line-height: 60px;
  text-decoration: none;
  display: block;
}
#navi ul li a:hover {
  background: #333;
}

#index .sct-mainimg .container {
  height: 100vh;
}
#index .sct-mainimg .logo {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index .sct-greeting .container {
  width: 600px;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #index .sct-greeting .container {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 0;
  }
}
#index .sct-greeting .greeting {
  *zoom: 1;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#index .sct-greeting .greeting:before, #index .sct-greeting .greeting:after {
  content: "";
  display: table;
}
#index .sct-greeting .greeting:after {
  clear: both;
}
@media screen and (max-width: 767px) {
  #index .sct-greeting .greeting {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
  }
}
#index .sct-greeting .greeting .txt {
  text-align: left;
  margin-bottom: 30px;
}
#index .sct-greeting .greeting .name {
  width: 100px;
  float: right;
  font-size: 12px;
  text-align: left;
}
#index .sct-greeting .greeting .name span {
  display: block;
  font-size: 18px;
}
#index .sct-business .container {
  width: 600px;
  height: 200vh;
}
@media screen and (max-width: 767px) {
  #index .sct-business .container {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 0;
  }
}
#index .sct-business .business {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #index .sct-business .business {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
  }
}
#index .sct-business .business ul {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-business .business ul {
    margin-bottom: 30px;
  }
}
#index .sct-business .business ul li {
  text-align: left;
  margin-bottom: 30px;
}
#index .sct-business .business ul li:last-child {
  margin-bottom: 0;
}
#index .sct-business .business ul li h3 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #666;
  padding-bottom: 2px;
  margin-bottom: 10px;
}
#index .sct-business .business ul li .txt {
  min-height: 88px;
  background-size: 150px 100%;
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 170px;
}
@media screen and (max-width: 767px) {
  #index .sct-business .business ul li .txt {
    min-height: auto;
    background-size: 100% 200px;
    background-position: center top;
    padding-top: 220px;
    padding-left: 0;
  }
}
#index .sct-company .container {
  width: 600px;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #index .sct-company .container {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 0;
  }
}
#index .sct-company .company {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #index .sct-company .company {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
  }
}
#index .sct-company .company table {
  text-align: left;
}
#index .sct-company .company table tr th {
  width: 20%;
  font-weight: normal;
  vertical-align: top;
  padding: 5px 0;
}
@media screen and (max-width: 1019px) {
  #index .sct-company .company table tr th {
    width: 25%;
    padding: 2px 0;
  }
}
#index .sct-company .company table tr td {
  width: 80%;
  text-align: left;
  padding: 5px 0;
}
#index .sct-company .company table tr td a {
  text-decoration: none;
}
@media screen and (max-width: 1019px) {
  #index .sct-company .company table tr td {
    width: 75%;
    padding: 2px 0;
  }
}
#index .sct-recruit .container {
  width: 600px;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #index .sct-recruit .container {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 0;
  }
}
#index .sct-recruit .recruit {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #index .sct-recruit .recruit {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
  }
}
#index .sct-recruit .recruit table {
  text-align: left;
  border-collapse: collapse;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #index .sct-recruit .recruit table {
    margin-bottom: 30px;
  }
}
#index .sct-recruit .recruit table tr th {
  width: 20%;
  font-weight: normal;
  vertical-align: top;
  border: 1px solid #666;
  padding: 10px;
}
@media screen and (max-width: 1019px) {
  #index .sct-recruit .recruit table tr th {
    width: 25%;
    padding: 5px;
  }
}
#index .sct-recruit .recruit table tr td {
  width: 80%;
  text-align: left;
  border: 1px solid #666;
  padding: 10px;
}
#index .sct-recruit .recruit table tr td a {
  text-decoration: none;
}
@media screen and (max-width: 1019px) {
  #index .sct-recruit .recruit table tr td {
    width: 75%;
    padding: 5px;
  }
}
#index .sct-contact .container {
  width: 600px;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .container {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 0;
  }
}
#index .sct-contact .grp {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  #index .sct-contact .grp {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
  }
}
#index .sct-contact .grp p {
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 1019px) {
  #index .sct-contact .grp p {
    margin-bottom: 20px;
  }
}
#index .sct-contact .grp .caution {
  color: #F00;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .grp .row .col {
    width: 100%;
  }
}
#index .sct-contact .submit {
  margin-top: 60px;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  #index .sct-contact .submit {
    margin-top: 30px;
  }
}
#index .sct-contact .submit .button {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  display: inline-block;
  font-weight: bold;
  padding: 10px 60px;
  font-size: 14px;
  margin: 0 20px;
  color: #304564;
  background-color: #FFF;
  border: 1px solid #FFF;
}
#index .sct-contact .submit .button:hover {
  color: #FFF;
  background-color: #304564;
  border: 1px solid #304564;
  cursor: pointer;
}
#index .sct-contact .submit a.button {
  text-decoration: none;
  color: #304564;
}
@media screen and (max-width: 1019px) {
  #index .sct-map {
    margin-top: 100px;
  }
}
#index .sct-map .map {
  height: 300px;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 1019px) {
  #index .sct-map .map {
    height: 250px;
  }
}

.sct-pagetitle {
  position: relative;
  height: 320px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: #eeeeee;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sct-pagetitle {
    height: 160px;
  }
}
.sct-pagetitle .title {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sct-pagetitle .title .e {
  font-size: 24px;
  margin-bottom: 5px;
}
.sct-pagetitle .title .j {
  font-size: 11px;
}

.sct-breadcrumb {
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .sct-breadcrumb {
    display: none;
  }
}
.sct-breadcrumb .container {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 20px;
}
.sct-breadcrumb ul {
  font-size: 0;
}
.sct-breadcrumb ul li {
  display: inline-block;
  font-size: 14px;
}
.sct-breadcrumb ul li a {
  color: #333;
}
.sct-breadcrumb ul li:after {
  content: '＞';
  display: inline-block;
  margin: 0 8px;
}
.sct-breadcrumb ul li:last-child:after {
  display: none;
}

#contact .sct-contact .container {
  width: 600px;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact .container {
    width: 100%;
    height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1019px) {
  #contact .sct-contact .container {
    padding-top: 90px;
  }
}
@media screen and (min-width: 1020px) {
  #contact .sct-contact .grp {
    text-align: center;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
#contact .sct-contact .grp p {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact .grp p {
    text-align: left;
    margin-bottom: 20px;
  }
}
#contact .sct-contact .grp .caution {
  color: #F00;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact .grp .row .col {
    width: 100%;
  }
}
#contact .sct-contact .submit {
  margin-top: 60px;
  font-size: 0;
}
@media screen and (max-width: 767px) {
  #contact .sct-contact .submit {
    margin-top: 30px;
  }
}
#contact .sct-contact .submit .button {
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  display: inline-block;
  font-weight: bold;
  padding: 10px 60px;
  font-size: 14px;
  margin: 0 20px;
  color: #304564;
  background-color: #FFF;
  border: 1px solid #FFF;
}
#contact .sct-contact .submit .button:hover {
  color: #FFF;
  background-color: #304564;
  border: 1px solid #304564;
  cursor: pointer;
}
#contact .sct-contact .submit a.button {
  color: #304564;
  text-decoration: none;
}
#contact .sct-confirm dl {
  text-align: left;
}
#contact .sct-confirm dl dt {
  display: block;
  font-size: 1.2rem;
  color: #9e9e9e;
}
#contact .sct-confirm dl dd {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #9e9e9e;
}
@media screen and (max-width: 767px) {
  #contact .sct-confirm dl dd {
    font-size: 14px;
  }
}
#contact .sct-submit em {
  display: block;
  text-align: center;
  padding: 60px 0;
  font-style: normal;
  font-size: 2rem;
}

#footer .copy {
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  background-color: #304564;
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
#pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  line-height: 50px;
  background: rgba(48, 69, 100, 0.6);
  border-radius: 50%;
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
}
#pagetop a:hover {
  background: #304564;
  opacity: 1;
}
#pagetop a .svg-inline--fa.fa-w-14 {
  width: 100%;
}
@media screen and (max-width: 768px){
  .recruit-lp{
    width: 50%;
    max-width: 320px;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 767px){
  .recruit-lp{
    width: 80%;
    max-width: 728px;
    margin-bottom: 20px;
  }
}