@charset "UTF-8";
html {
  width: 100%;
  margin-top: 0 !important;
}
body {
  /* font-size: small; */
  /* font: x-small; */
  font-size: 13px;
  background-color: #000;
  color: #333333;
  line-height: 1.2;
  font-family: 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka,
    'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  text-align: left;
  width: 100%;
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: 100%;
}
@font-face {
  font-family: 'Yu Gothic';
  src: local('Yu Gothic Medium');
  font-weight: 100;
}
@font-face {
  font-family: 'Yu Gothic';
  src: local('Yu Gothic Medium');
  font-weight: 200;
}
@font-face {
  font-family: 'Yu Gothic';
  src: local('Yu Gothic Medium');
  font-weight: 300;
}
@font-face {
  font-family: 'Yu Gothic';
  src: local('Yu Gothic Medium');
  font-weight: 400;
}
@font-face {
  font-family: 'Yu Gothic';
  src: local('Yu Gothic Bold');
  font-weight: bold;
}
#wrap {
  text-align: left;
  overflow: hidden;
  background-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
img,
table,
th,
td,
dl,
dt,
dd {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
}
li {
  list-style-type: none;
}
table {
  border-collapse: collapse;
}
a {
  cursor: pointer;
  color: #333;
  text-decoration: none;
}
a {
  -webkit-tap-highlight-color: transparent;
}
a:link {
  color: #333;
  text-decoration: none;
}
a:visited {
  color: #333;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
a img {
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
input,
textarea,
select,
button,
label {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
:focus {
  outline: 0;
  border-color: orange;
}

/* header
-----------------------------------------------*/
header {
  position: fixed !important;
}

/* #main .movie
-----------------------------------------------*/
#main .movie {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  background-image: url('/images/top/img-main_01.jpg');
  background-size: cover;
  background-position: center;
}
#main .movie::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
}
#main .movie iframe {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
}
/* main
-----------------------------------------------*/
#main {
  position: relative;
  padding: 0;
  box-sizing: border-box;
  height: 100vh;
  max-height: 860px;
  min-height: 600px;
  background-color: #000;
}
#main .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#main .txt {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 300px;
  width: 100vw;
  box-sizing: border-box;
  -webkit-transform: translateY(-46%);
  -ms-transform: translateY(-46%);
  transform: translateY(-46%);
}
@keyframes main_txt {
  0% {
    opacity: 0;
    left: 30px;
  }
  10% {
    opacity: 0;
    left: 30px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
#main .slick-current .txt {
  animation: 1.2s cubic-bezier(0.21, 0.6, 0.35, 1);
  animation-name: main_txt;
}
@keyframes main_txt_first {
  0% {
    opacity: 0;
    left: 30px;
  }
  10% {
    opacity: 0;
    left: 30px;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
#main .first .txt {
  animation-name: main_txt_first;
}
#main .txt img {
  display: block;
}
#main .txt img.spOnly {
  display: none;
}
#main .img50th .txt img {
  margin-left: -45px;
}
#main .imgMC .txt img {
  margin-left: -22px;
}
#main .txt img + .btn {
  margin-top: 36px;
}
#main .txt .btn {
  display: block;
  width: 100%;
  max-width: 343px;
  height: 48px;
  font-size: 16px;
  line-height: 48px;
  font-weight: bold;
  text-align: center;
}
#main .txt .btn + .btn {
  margin-top: 24px;
}
#main .txt .btn a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #00afdd;
  position: relative;
  border-radius: 4px;
}
#main .txt .btn a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#main .txt .btn a:hover::after {
  opacity: 0.2;
}
#main .txt .btn a span::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-bottom: 1px;
}
#main .slider {
  position: relative;
  z-index: 1;
  height: 100%;
}
#main .slick-next,
#main .slick-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 80px;
  height: 24px;
  font-size: 0;
  z-index: 1001;
  background: rgba(0, 26, 44, 0.5);
  padding: 0;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s cubic-bezier(0.21, 0.6, 0.35, 1),
    opacity 0.8s cubic-bezier(0.21, 0.6, 0.35, 1);
  opacity: 0;
}
/* load */
.load #main .slick-next,
.load #main .slick-prev {
  opacity: 1;
}
#main .slick-next:hover,
#main .slick-prev:hover {
  background: #00afdd;
}
#main .slick-next {
  right: 0;
}
#main .slick-prev {
  left: 0;
}
#main .slick-arrow::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  box-sizing: border-box;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
#main .slick-next::before {
  right: 12px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
#main .slick-prev::before {
  left: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#main .thumb-item-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
  padding: 0 40px;
  z-index: 1;
}
#main .thumb-item-nav > div {
  max-width: 192px;
  width: 100%;
  margin: 0 auto;
  font-size: 0;
  float: right;
  margin-right: -4px;
}
#main .thumb-item-nav li {
  position: relative !important;
  display: inline-block;
  margin: 0 4px;
  height: 4px;
  width: 56px;
  cursor: pointer;
}
#main .thumb-item-nav li::before,
#main .thumb-item-nav li::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
#main .thumb-item-nav li::after {
  z-index: 1;
  width: 100%;
  background-color: #001a2c;
}
#main .thumb-item-nav li::before {
  z-index: 2;
  width: 0;
  background-color: #00afdd;
}
@keyframes thumb-item-nav {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes thumb-item-nav2 {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#main .thumb-item-nav li.slick-current::before {
  -webkit-animation: 7.6s linear;
  -ms-animation: 7.6s linear;
  animation: 7.6s linear;
  animation-name: thumb-item-nav;
}
#main .thumb-item-nav li.slick-current.firstThumb::before {
  -webkit-animation: 7s linear;
  -ms-animation: 7s linear;
  animation: 7s linear;
  animation-name: thumb-item-nav2;
}
#main #movieBtn {
  display: none;
}
@media screen and (max-width: 1000px) {
  #main .txt {
    padding: 0 150px;
  }
}
@media screen and (max-width: 750px) {
  #main {
    height: 600px;
    max-height: 600px;
    min-height: 600px;
  }
  #main .txt {
    top: auto;
    width: 100%;
    bottom: 142px;
    padding: 0 32px;
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }
  #main .txt img {
    width: 100%;
    margin: 0 auto;
  }
  #main .txt img.pcOnly {
    display: none;
  }
  #main .txt img.spOnly {
    display: block;
  }
  #main .img1 .txt img {
    max-width: 260px;
  }
  #main .img2 .txt img {
    max-width: 249px;
  }
  #main .img50th .txt img {
    max-width: 300px;
    margin: 0 auto;
  }
  #main .imgMC .txt img {
    max-width: 250px;
    margin: 0 auto;
  }
  #main .txt .btn {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
  }
  #main .txt img + .btn {
    margin-top: 20px;
  }
  #main .img1 .txt img + .btn {
    margin-top: 30px;
  }
  #main .txt .btn + .btn {
    margin-top: 12px;
  }
  #main .slick-next,
  #main .slick-prev {
    width: 44px;
    height: 48px;
  }
  #main .slick-arrow::before {
    width: 6px;
    height: 6px;
  }
  #main .slick-prev::before {
    left: 20px;
  }
  #main .slick-next::before {
    right: 19px;
  }
  #main .thumb-item-nav {
    bottom: 36px;
  }
  #main .thumb-item-nav > div {
    float: none;
    margin: 0 auto;
  }
  #main #movieBtn {
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    z-index: 1;
    display: block;
  }
  #main #movieBtn span {
    display: block;
    width: 194px;
    height: 42px;
    margin: 0 auto;
    box-sizing: border-box;
    border: solid 1px #fff;
    font-size: 13px;
    line-height: 42px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
}

/* importantNews
-----------------------------------------------*/
#importantNews {
  padding: 36px 40px 0;
}
.importantBox {
  background: #f0f0f0;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 20px 20px 24px;
  text-align: center;
  margin: 8px auto 0;
}
.importantBox:first-child {
  margin-top: 0;
}
.importantBox h2 {
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: 0.01em;
}
.importantBox p {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
.importantBox p span {
  display: block;
  font-weight: bold;
}
.importantBox .btn {
  width: 180px;
  margin: 10px auto 0;
}
.importantBox .btn a {
  display: block;
  position: relative;
  background: #00afdd;
  border-radius: 4px;
}
.importantBox .btn a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  opacity: 0;
  background: #333;
  transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
.importantBox .btn a:hover::after {
  opacity: 0.2;
}
.importantBox .btn a span {
  font-size: 13px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.importantBox .btn a span::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  margin-left: 6px;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  #importantNews {
    padding: 0;
  }
  .importantBox {
    padding: 20px 16px;
  }
  .importantBox h2 {
    font-size: 15px;
    line-height: 1.73;
  }
  .importantBox p {
    font-size: 13px;
    line-height: 1.84;
    margin-top: 0;
  }
  .importantBox .btn a {
    border-radius: 2px;
  }
  .importantBox .btn a::after {
    border-radius: 2px;
  }
}

/* bnr
-----------------------------------------------*/

#bnr {
  padding: 36px 40px 30px;
}
#bnr ul {
  font-size: 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
#bnr ul li {
  display: inline-block;
  vertical-align: top;
  width: 22.75%;
  margin-left: 3%;
  font-size: 14px;
  line-height: 1.71;
  text-align: left;
}
#bnr ul li:first-child {
  margin-left: 0;
}
#bnr ul li a .thumb {
  margin-bottom: 10px;
  overflow: hidden;
}
#bnr ul li a .thumb img {
  transition: transform 0.2s ease-out;
}
#bnr ul li a:hover .thumb img {
  transform: scale(1.04);
}
#bnr ul li a span {
  display: inline-block;
  width: 103px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  color: #f0f0f0;
  text-align: center;
  background: #003459;
  margin-bottom: 10px;
}
#bnr ul li a span.red {
  width: auto;
  height: auto;
  background: none;
  color: rgb(208, 1, 1);
  font-size: 14px;
  line-height: 1.71;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #bnr {
    padding: 20px 16px 16px;
  }
  #bnr ul {
    text-align: left;
    margin-right: -20px;
  }
  #bnr ul::after {
    content: '';
    display: block;
    clear: both;
  }
  #bnr ul li {
    display: block;
    float: left;
    width: 50%;
    margin-left: 0;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.84;
  }
  #bnr ul li:nth-child(-n + 2) {
    margin-top: 0;
  }
  #bnr ul li:nth-child(2n + 1) {
    clear: left;
  }
  #bnr ul li a {
    display: block;
    margin-right: 20px;
  }
  #bnr ul li a .thumb {
    margin-bottom: 13px;
  }
  #bnr ul li a span {
    width: auto;
    height: 21px;
    padding: 0 7px;
    line-height: 21px;
  }
  #bnr ul li a span.red {
    font-size: 13px;
  }
}

/* section
-----------------------------------------------*/
section {
  position: relative;
}
section .ttlArea {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
section .ttlArea h2 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
section .ttlArea h2 span {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 36px;
  line-height: 0.9;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
}
section .ttlArea h2 strong {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: -3px;
}
@media screen and (max-width: 750px) {
  section .ttlArea h2 {
    font-size: 13px;
  }
  section .ttlArea h2 span {
    font-size: 32px;
    margin-right: 12px;
  }
}

/* services
-----------------------------------------------*/
#services {
  background: #f0f0f0 url('/images/top/2020/bgi-services_01.jpg') no-repeat center top;
  background-size: 100% auto;
  padding: 240px 0 0;
}
#services .inner {
  max-width: 1440px;
  background: url('/images/top/2020/bgi-services_inner_01.png') repeat-x left top;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 78px 40px 102px;
}
#services .ttlArea h2 {
  color: #003459;
}
#services .linkList {
  max-width: 1200px;
  margin: 0 auto;
}
#services .linkList ul::after {
  content: '';
  display: block;
  clear: both;
}
#services .linkList ul li {
  float: left;
  width: 48.5%;
  margin-left: 3%;
  margin-top: 36px;
  box-shadow:
    0 24px 12px rgba(0, 0, 0, 0.1),
    0 0 12px rgba(0, 26, 51, 0.05);
}
#services .linkList ul li:nth-child(2n + 1) {
  margin-left: 0;
  clear: left;
}
#services .linkList ul li a {
  display: block;
  background: #fff;
  text-align: center;
  padding: 50px 56px;
}
#services .linkList ul li a h3 {
  font-size: 28px;
  line-height: 1.2;
}
#services .linkList ul li a .logo {
  font-size: 16px;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #003459;
  margin: 6px auto 0;
}
#services .linkList ul li a .logo.ms {
  width: 133px;
}
#services .linkList ul li a .logo.us {
  width: 90px;
}
#services .linkList ul li a p {
  font-size: 14px;
  line-height: 1.71;
  margin-top: 20px;
}
#services .linkList ul li a .more {
  font-size: 13px;
  line-height: 1.2;
  font-weight: bold;
  color: #00afdd;
  margin-top: 15px;
}
#services .linkList ul li a .more::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #00afdd;
  border-right: solid 2px #00afdd;
  margin-left: 6px;
  transform: rotate(45deg);
}
#services .linkList ul li a .thumb {
  margin-top: 26px;
  overflow: hidden;
}
#services .linkList ul li a .thumb img {
  transition: transform 0.2s ease-out;
}
#services .linkList ul li a:hover .thumb img {
  transform: scale(1.04);
}
@media screen and (max-width: 980px) {
  #services .linkList ul li a {
    padding: 40px 30px;
  }
  #services .linkList ul li a h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 750px) {
  #services {
    padding: 120px 0 0;
    background: #f0f0f0 url('/images/top/2020/bgi-services_01_sp.jpg') no-repeat center top;
    background-size: 100% auto;
  }
  #services .inner {
    padding: 60px 16px 58px;
  }
  #services .linkList ul li {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: 18px;
  }
  #services .linkList ul li a {
    padding: 28px;
  }
  #services .linkList ul li a h3 {
    font-size: 21px;
  }
  #services .linkList ul li a .logo {
    font-size: 12px;
  }
  #services .linkList ul li a .logo.ms {
    width: 114px;
  }
  #services .linkList ul li a .logo.us {
    width: 76px;
  }
  #services .linkList ul li a p {
    font-size: 13px;
    line-height: 1.84;
    margin-top: 16px;
  }
  #services .linkList ul li a .more {
    margin-top: 10px;
  }
  #services .linkList ul li a .thumb {
    margin-top: 16px;
  }
}

/* aboutus
-----------------------------------------------*/
#aboutus {
  color: #fff;
}
#aboutus .inner {
  padding: 80px 0 56px;
  max-width: 1600px;
  margin: 0 auto;
}
#aboutus .inner::after {
  content: '';
  display: block;
  clear: both;
}
#aboutus .ttlArea {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
#aboutus .ttlArea h2 {
  color: #003459;
}
#aboutus .lead {
  margin-top: 38px;
  display: table;
  width: 100%;
}
#aboutus .recruit {
  margin-top: 56px;
  display: table;
  width: 100%;
}
#aboutus .lead .img,
#aboutus .recruit .txt,
#aboutus .lead .txt,
#aboutus .recruit .img {
  display: table-cell;
  vertical-align: top;
  width: 50%;
}
#aboutus .lead .img,
#aboutus .recruit .img {
  position: relative;
}
#aboutus .lead .img img.spOnly,
#aboutus .recruit .img img.spOnly {
  display: none;
}
#aboutus .lead .img::before,
#aboutus .recruit .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  padding-top: 57.5%;
}
#aboutus .lead .img img,
#aboutus .recruit .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
#aboutus .recruit .txt,
#aboutus .lead .txt {
  padding: 56px 0;
  transform: translate(0px, 56px);
  background: #003459;
  position: relative;
}
#aboutus .lead .txt::before,
#aboutus .recruit .txt::before {
  content: '';
  display: block;
  width: 136px;
  height: 100%;
  background: #003459;
  position: absolute;
  top: 0;
}
#aboutus .lead .txt::before {
  left: 0;
  transform: translate(-100%, 0%);
}
#aboutus .recruit .txt::before {
  right: 0;
  transform: translate(100%, 0%);
}
#aboutus .recruit .txt::after {
  content: '';
  display: block;
  clear: both;
}
#aboutus .lead .txtInner,
#aboutus .recruit .txtInner {
  width: 600px;
  box-sizing: border-box;
}
#aboutus .lead .txtInner {
  padding: 0 0 0 56px;
}
#aboutus .recruit .txtInner {
  padding: 0 56px 0 0;
  float: right;
}
#aboutus .lead h3,
#aboutus .recruit h3 {
  line-height: 1.55;
  font-weight: normal;
}
#aboutus .lead h3 {
  font-size: 28px;
}
#aboutus .recruit h3 {
  font-size: 36px;
}
#aboutus .recruit h4 {
  font-size: 18px;
  line-height: 1.5;
  display: inline-block;
  padding: 0 55px;
  position: relative;
  margin-top: 10px;
}
#aboutus .recruit h4::before,
#aboutus .recruit h4::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#aboutus .recruit h4::before {
  left: 0;
}
#aboutus .recruit h4::after {
  right: 0;
}
#aboutus .recruit p {
  font-size: 14px;
  line-height: 1.71;
  margin-top: 25px;
}
#aboutus .more {
  font-size: 13px;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 8px;
}
#aboutus .more a {
  color: #00afdd;
}
#aboutus .more a::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #00afdd;
  border-right: solid 2px #00afdd;
  margin-left: 6px;
  transform: rotate(45deg);
}
#aboutus .linkBtn {
  margin-top: 30px;
}
#aboutus .linkBtn::after {
  content: '';
  display: block;
  clear: both;
}
#aboutus .linkBtn .btn {
  width: 46.32%;
  float: left;
  margin-left: 7.35%;
}
#aboutus .linkBtn .btn:first-child {
  margin-left: 0;
}
#aboutus .linkBtn .btn a {
  display: block;
  position: relative;
  background: #00afdd;
}
#aboutus .linkBtn .btn a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: #333;
  transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#aboutus .linkBtn .btn a:hover::after {
  opacity: 0.2;
}
#aboutus .linkBtn .btn a span {
  display: block;
  height: 48px;
  text-align: center;
  font-size: 16px;
  line-height: 48px;
  font-weight: bold;
  color: #fff;
}
#aboutus .linkBtn .btn a span::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  margin-left: 6px;
  margin-bottom: 3px;
  transform: rotate(45deg);
}
#aboutus #pickup {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px 0;
  clear: both;
}
#aboutus #pickup h3 {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #003459;
}
#aboutus #pickup .bnrLink {
  margin-top: 24px;
}
#aboutus #pickup .bnrLink::after {
  content: '';
  display: block;
  clear: both;
}
#aboutus #pickup .bnrLink li {
  float: left;
  width: 31.33%;
  margin-left: 3%;
}
#aboutus #pickup .bnrLink li:first-child {
  margin-left: 0;
}
#aboutus #pickup .bnrLink li a {
  display: table;
  width: 100%;
  min-height: 96px;
  position: relative;
  background: #003459;
}
#aboutus #pickup .bnrLink li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#aboutus #pickup .bnrLink li a:hover::after {
  opacity: 0.2;
}
#aboutus #pickup .bnrLink li a .thumb {
  display: table-cell;
  vertical-align: middle;
  width: 45.47%;
  position: relative;
  overflow: hidden;
}
#aboutus #pickup .bnrLink li a .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: none;
  height: 100%;
}
#aboutus #pickup .bnrLink li a .txt {
  display: table-cell;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.71;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1295px) {
  #aboutus .lead .img,
  #aboutus .recruit .img {
    overflow: hidden;
    height: 370px;
  }
  #aboutus .lead .img::after,
  #aboutus .recruit .img::after {
    content: '';
    display: block;
    clear: both;
  }
  #aboutus .lead .img img,
  #aboutus .recruit .img img {
    height: 100%;
    width: auto;
    max-width: none;
  }
  #aboutus .lead .img img {
    left: auto;
    right: 0;
  }
  #aboutus .lead .txt,
  #aboutus .recruit .txt {
    width: 640px;
    box-sizing: border-box;
  }
  #aboutus .lead .txt {
    padding-right: 40px;
  }
  #aboutus .recruit .txt {
    padding-left: 40px;
  }
}
@media screen and (max-width: 980px) {
  #aboutus .inner {
    padding-bottom: 0;
  }
  #aboutus .lead {
    display: block;
    float: none;
  }
  #aboutus .recruit {
    position: relative;
  }
  #aboutus .recruit::before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-top: 57.5%;
  }
  #aboutus .lead .img,
  #aboutus .recruit .img {
    display: block;
    width: 100%;
    height: auto;
  }
  #aboutus .recruit .img {
    position: absolute;
    top: 0;
    left: 0;
  }
  #aboutus .lead .img img,
  #aboutus .recruit .img img {
    float: none;
    width: 100%;
  }
  #aboutus .lead .txt,
  #aboutus .recruit .txt {
    display: block;
    width: 100%;
    padding: 40px;
    transform: translate(0px, 0px);
  }
  #aboutus .lead .txt::before,
  #aboutus .recruit .txt::before {
    display: none;
  }
  #aboutus .lead .txtInner,
  #aboutus .recruit .txtInner {
    width: auto;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  #aboutus .recruit .txtInner {
    float: none;
  }
  #aboutus #pickup .bnrLink li a .txt {
    font-size: 13px;
  }
}
@media screen and (max-width: 750px) {
  #aboutus .ttlArea {
    padding: 0 16px;
  }
  #aboutus .lead {
    margin-top: 18px;
  }
  #aboutus .recruit {
    margin-top: 60px;
  }
  #aboutus .recruit::before {
    padding-top: 61.3333%;
  }
  #aboutus .lead .img {
    position: relative;
  }
  #aboutus .lead .img::before,
  #aboutus .recruit .img::before {
    padding-top: 61.3333%;
  }
  #aboutus .lead .img img.pcOnly,
  #aboutus .recruit .img img.pcOnly {
    display: none;
  }
  #aboutus .lead .img img.spOnly,
  #aboutus .recruit .img img.spOnly {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  #aboutus .lead .txt,
  #aboutus .recruit .txt {
    padding: 24px 16px 28px;
  }
  #aboutus .lead h3,
  #aboutus .recruit h3 {
    font-size: 24px;
    line-height: 1.41;
  }
  #aboutus .recruit h4 {
    font-size: 12px;
    padding: 0 36px;
    margin-top: 6px;
  }
  #aboutus .recruit h4::before,
  #aboutus .recruit h4::after {
    width: 28px;
  }
  #aboutus .recruit p {
    font-size: 13px;
    margin-top: 13px;
  }
  #aboutus .more {
    margin-top: 12px;
  }
  #aboutus .linkBtn {
    margin-top: 16px;
    margin-right: -20px;
  }
  #aboutus .linkBtn .btn {
    width: 50%;
    margin-left: 0;
  }
  #aboutus .linkBtn .btn a {
    margin-right: 20px;
  }
  #aboutus .linkBtn .btn a span {
    height: 31px;
    font-size: 13px;
    line-height: 31px;
  }
  #aboutus .linkBtn .btn a span::after {
    width: 6px;
    height: 6px;
  }
  #aboutus #pickup {
    padding: 40px 16px 0;
    max-width: 343px;
  }
  #aboutus #pickup h3 {
    font-size: 18px;
  }
  #aboutus #pickup .bnrLink {
    margin: 18px auto 0;
  }
  #aboutus #pickup .bnrLink li {
    float: none;
    width: 100%;
    margin: 12px 0 0;
  }
  #aboutus #pickup .bnrLink li:first-child {
    margin-top: 0;
  }
  #aboutus #pickup .bnrLink li a {
    min-height: 88px;
  }
}

/* news
-----------------------------------------------*/
#news {
  padding: 80px 40px 80px;
}
#news .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
#news .ttlArea h2 {
  color: #003459;
}
#news .topContentsNews {
  margin-top: 38px;
  background: #e3e9f1;
  padding: 8px 36px 11px;
}
.newsTable {
  width: 100%;
}
.newsTable th,
.newsTable td {
  vertical-align: top;
  padding: 25px 18px;
  border-bottom: 1px solid #fff;
  line-height: 1.5;
  font-weight: normal;
}
.newsTable th {
  padding-left: 0;
}
.newsTable th,
.newsTable td:nth-child(1) {
  padding-left: 0;
  white-space: nowrap;
}
.newsTable td:nth-child(2) {
  white-space: nowrap;
}
.newsTable td:nth-child(3) {
  width: 100%;
}
.newsTable tr:last-child th,
.newsTable tr:last-child td {
  border-bottom: none;
}
.newsTable td span {
  display: block;
  background-color: #003459;
  color: #fff;
  width: 103px;
  text-align: center;
  font-size: 12px;
  padding: 1px 0;
}
.newsTable td a {
  transition: color 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
.newsTable td a:hover {
  color: #00afdd;
}
.newsTable .newsNone th {
  border: none;
  padding: 0;
}
#news .more {
  width: 99px;
  height: 36px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 13px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
}
#news .more a {
  display: block;
  height: 100%;
  background: #e3e9f1;
  border-radius: 4px;
  color: #003459;
  position: relative;
}
#news .more a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#news .more a:hover::before {
  opacity: 0.2;
}
#news .more a::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 7px;
  height: 7px;
  box-sizing: border-box;
  border-top: solid 2px #003459;
  border-right: solid 2px #003459;
  margin-left: 6px;
  margin-bottom: 3px;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  #news {
    padding: 33px 16px 40px;
  }
  #news .inner::after {
    content: '';
    display: block;
    clear: both;
  }
  #news .topContentsNews {
    margin-top: 18px;
    padding: 0;
  }
  .newsTable tr {
    display: block;
    width: 100%;
    border-top: solid 1px #ffffff;
    padding: 18px;
    box-sizing: border-box;
  }
  .newsTable tr:first-child {
    border-top: none;
  }
  .newsTable th {
    display: inline-block;
    width: 6em;
    font-size: 12px;
    padding: 0;
    border: none;
    color: #003459;
  }
  .newsTable td {
    color: #003459;
  }
  .newsTable td:nth-child(2) {
    display: inline-block;
    width: auto;
    padding: 0;
    border: none;
  }
  .newsTable td:nth-child(3) {
    display: block;
    width: 100%;
    font-size: 13px;
    line-height: 1.84;
    padding: 0;
    border: none;
    margin-top: 0.5em;
  }
  .newsTable td a {
    color: #003459;
  }
  .newsTable td span {
    width: auto;
    padding: 0 8px;
  }
  #news .more {
    position: relative;
    float: right;
    margin-top: 18px;
  }
}

/* sns
-----------------------------------------------*/
#sns {
  padding: 80px 40px;
  background: #003459;
}
#sns .inner {
  max-width: 1200px;
  margin: 0 auto;
}
#sns .ttlArea h2 {
  color: #fff;
}
#sns .link {
  margin-top: 36px;
  display: table;
  width: 100%;
}
#sns .link li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 20%;
  border-right: solid #001a2c 1px;
}
#sns .link li:first-child {
  border-left: solid #001a2c 1px;
}
#sns .link li a {
  display: block;
  height: 72px;
  box-sizing: border-box;
  padding: 0 10px;
  position: relative;
  color: #f0f0f0;
}
#sns .link li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#sns .link li a:hover::after {
  opacity: 0.2;
}
#sns .link li a .btn {
  display: table;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translate(0%, -50%);
}
#sns .link li a .img {
  display: table-cell;
  vertical-align: middle;
  padding-right: 16px;
  width: 32px;
}
#sns .link li a strong {
  display: table-cell;
  vertical-align: middle;
  font-size: 12px;
  text-align: left;
}
#sns .link li a strong .tbOnly {
  display: none;
}
#sns .box {
  font-size: 0;
  margin-top: 36px;
}
#sns .box .col {
  display: inline-block;
  vertical-align: top;
  width: 22.75%;
  margin-left: 3%;
}
#sns .box .col:first-child {
  margin-left: 0;
}
#sns .box .col .instagram-media {
  width: 100% !important;
  min-width: 100% !important;
  box-sizing: border-box !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.eapps-instagram-feed-title-container,
.eapps-instagram-feed-posts-grid-load-more {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  #sns .link li a strong .tbOnly {
    display: block;
  }
}
@media screen and (max-width: 1040px) {
  #sns .link li a {
    display: table;
    height: 95px;
    width: 100%;
  }
  #sns .link li a .btn {
    display: table-cell;
    vertical-align: middle;
    top: 0;
    transform: translate(0%, 0%);
  }
  #sns .link li a .img {
    display: block;
    margin: 0 auto;
    padding: 0;
  }
  #sns .link li a strong {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    text-align: center;
  }
  #sns .link li:last-child a strong .tbOnly {
    display: none;
  }
  #sns .box .col {
    width: 48.5%;
  }
  #sns .box .col:nth-child(3) {
    margin-left: 0;
    clear: left;
  }
  #sns .box .col:nth-child(3),
  #sns .box .col:nth-child(4) {
    margin-top: 36px;
  }
}
@media screen and (max-width: 750px) {
  #sns {
    padding: 40px 16px;
  }
  #sns .link {
    display: block;
    margin-top: 18px;
    font-size: 0;
  }
  #sns .link li {
    display: inline-block;
    width: 33.33%;
    box-sizing: border-box;
  }
  #sns .link li:nth-child(4),
  #sns .link li:nth-child(5) {
    width: 50%;
    margin-top: 14px;
  }
  #sns .link li:nth-child(4) {
    border-left: solid #001a2c 1px;
  }
  #sns .link li a {
    height: 64px;
  }
  #sns .link li a .btn {
    vertical-align: bottom;
  }
  #sns .link li a .img {
    width: 25px;
  }
  #sns .link li a strong {
    font-size: 10px;
    line-height: 1.5;
    margin-top: 6px;
  }
  #sns .link li a strong .tbOnly {
    display: none;
  }
  #sns .box {
    margin-top: 28px;
  }
  #sns .box .col {
    display: none;
  }
  #sns .box .col:first-child {
    display: block;
    width: 100%;
  }
  #eapps-instagram-feed-1 {
    width: 100% !important;
  }
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  margin: 0;
  height: 100%;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide:focus {
  outline: none;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

/* loading
-----------------------------------------------*/
#loading {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1003;
  opacity: 1;
  transition: width 0.8s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#loading.end {
  width: 0;
}
#loading::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1003;
  width: 100%;
  height: 100%;
  background-color: #000;
}
#loading .inner {
  position: relative;
  z-index: 1004;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.loader,
.loader:before,
.loader:after {
  width: 1em;
  height: 1em;
  margin: 0 auto;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #fff;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#loading.end .loader {
  opacity: 0;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -1.8em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.8em;
}
@media screen and (max-width: 980px) {
  #loading .loaderIcon {
    font-size: 6px;
  }
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  0%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}

/* footer
-----------------------------------------------*/
footer {
  margin-top: 0 !important;
}

/* チャットアイコン 201028add
=========================================================================*/
#chatplusview #eye_catcher {
  width: 112px;
  height: 96px;
  box-sizing: border-box;
  padding-top: 18px;
  right: 12px !important;
  background: #001a2c;
  border-radius: 12px;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 0 12px rgba(0, 26, 51, 0.05);
  transition: background 0.2s cubic-bezier(0.21, 0.6, 0.35, 1);
}
#chatplusview #eye_catcher:hover {
  background: #00afdd;
}
#chatplusview #eye_catcher::before {
  content: '';
  display: block;
  width: 43px;
  height: 37px;
  background: url('/common/images/ms/ico-chat.svg') no-repeat center;
  background-size: 100%;
  margin: 0 auto 12px;
}
#chatplusview #eye_catcher::after {
  content: 'チャットで質問' !important;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
}
#chatplusview #eye_catcher img {
  display: none;
}
@media screen and (max-width: 740px) {
  #chatplusview #eye_catcher {
    width: 85px;
    height: 72px;
    padding-top: 14px;
    right: 7px !important;
    border-radius: 6px;
  }
  #chatplusview #eye_catcher::before {
    width: 32px;
    height: 27.5349px;
    background-size: 100%;
    margin: 0 auto 8px;
  }
  #chatplusview #eye_catcher::after {
    font-size: 10px;
  }
}

/* print
-----------------------------------------------*/
@media print {
  #services .grid a .hover {
    display: none;
  }
  #services .grid > div {
    top: 0;
    opacity: 1;
  }
  #about .bg::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0.5;
  }
  #about #joinUs {
    bottom: -50px;
    opacity: 1;
  }
  #stories .photo li {
    top: 0;
    opacity: 1;
  }
  #info #htu ul li {
    top: 0;
    opacity: 1;
  }
}

#movieSp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
}
#movieSp .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
#movieSp .movie {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  padding-top: 56.25%;
}
#movieSp .movie.fade {
  transition: opacity 0.5s;
  opacity: 1;
}
#movieSp .movie iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#movieSp .movieClose {
  width: 18px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  top: -15px;
  right: 15px;
  transform: translate(0%, -100%);
}
#movieSp .movieClose::before,
#movieSp .movieClose::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
}
#movieSp .movieClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#movieSp .movieClose::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media screen and (max-height: 500px) {
  #movieSp .movie {
    max-width: 600px;
  }
}
@media screen and (max-height: 430px) {
  #movieSp .movie {
    max-width: 500px;
  }
}
@media screen and (max-height: 320px) {
  #movieSp .movie {
    max-width: 400px;
  }
}
