@charset "utf-8";

/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/

html,
input,
textarea,
select,
button {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}

/* IE10以降 游ゴシック文字ずれ対応 */
html.ie10,
.ie10 input,
.ie10 textarea,
.ie10 select,
.ie10 button,
html.ie11,
.ie11 input,
.ie11 textarea,
.ie11 select,
.ie11 button {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}

html {
  color: #707070;
  background: #fff;
  font-size: 14px;
  line-height: 1;
  word-break: break-all;
}

body {
  background: #fff;
  margin: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: #707070;
  text-decoration: none;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.outer-block {
  min-width: 1140px;
}

.inner-block {
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 1100px;
}

#wrapper {
  position: relative;
}

.pc {
  display: block !important;
}

.pc-ib {
  display: inline-block !important;
}

.sp {
  display: none !important;
}

.sp-ib {
  display: none !important;
}

@media screen and (min-width: 641px) {
  a,
  a:before,
  a:after,
  button,
  .pagenation .page-num-ul li:hover,
  .pagenation .prev:hover,
  .pagenation .next:hover,
  .back-feature:hover {
    -webkit-transition: 0.2s cubic-bezier(.75,.02,.31,.92);
    transition: 0.2s cubic-bezier(.75,.02,.31,.92);
  }
}

main {
  display: block;
}


@font-face {
  font-family: Roboto;
  font-weight: 100;
  src: url("../font/Roboto-Light.eot");
  src: url("../font/Roboto-Light.woff") format("woff"),
  url("../font/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 300;
  src: url("../font/Roboto-Regular.eot");
  src: url("../font/Roboto-Regular.woff") format("woff"),
  url("../font/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: Roboto;
  font-weight: 500;
  src: url("../font/Roboto-Bold.eot");
  src: url("../font/Roboto-Bold.woff") format("woff"),
  url("../font/Roboto-Bold.ttf") format("truetype");
}


.pagetop {
  position: absolute;
  margin-bottom: 15px;
  right: 15px;
  z-index: 99;
}
.pagetop > a {
  position: relative;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  width: 70px;
  height: 70px;
}
.pagetop img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 42px;
  height: 32px;
}

.is-fixed.pagetop {
  position: fixed;
  bottom: 15px;
  margin-bottom: 0;
}

@media screen and (min-width: 641px) {
  .pagetop > a:hover {
    opacity: 0.7;
  }
}


/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
  border-bottom: 1px solid transparent;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.header .area-logo {
  float: left;
  padding: 16px 0 32px;
}
.header .area-nav {
  float: right;
  padding: 32px 0;
}
.header .area-logo > a {
  position: relative;
  display: inline-block;
  width: 113px;
  height: 50px;
}
.header .area-logo > a > img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.nav > li {
  float: left;
}
.nav > li + li {
  margin-left: 25px;
}
.nav a {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  padding: 10px 0.5em;
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #fff;
  -webkit-transform: skewX(-45deg);
  transform: skewX(-45deg);
}


/* is-color */
.header.is-color .area-logo > a > img:nth-child(1),
.header:not(.is-color) .area-logo > a > img:nth-child(2) {
  opacity: 0;
}
.is-color.header {
  background-color: #fff;
}
.is-color .nav a {
  color: #333;
}
.is-color .nav a::after {
  background-color: #333;
}


@media screen and (min-width: 641px) {
  .header .area-logo > a:hover {
    opacity: 0.7;
  }
  .nav a:hover::after {
    width: 100%;
    left: 0;
  }
}


/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
.footer {
  background-color: #222;
  min-width: 1140px;
  overflow: hidden;
}
.footer-main {
  color: #fff;
  padding: 50px 0;
}


.footer-main-contact {
  float: left;
  padding: 5px 0;
}
.footer-main-contact > .title {
  font-size: 24px;
  margin-bottom: 1em;
}
.footer-main-contact > .text {
  font-size: 16px;
  margin-bottom: 35px;
}
.footer-main-contact .btn {
  position: relative;
  background-color: #fff;
  display: inline-block;
  font-size: 18px;
  width: 307px;
  height: 65px;
  line-height: 65px;
  text-align: center;
}
.footer-main-contact .btn::after {
  content: '';
  border: 2px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
}

.footer-main-nav {
  float: right;
  text-align: right;
}
.footer-main-nav > li + li {
  margin-top: 20px;
}
.footer-main-nav a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
}

.copyright {
  background-color: #fff;
  color: #959595;
  font-size: 12px;
  text-align: center;
  height: 40px;
  line-height: 40px;
}


.footer-mail-text{
  position: relative;
}

.footer-mail-text:before{
  content: '';
  display: inline-block;
  width:31px;
  height:21px;
  background:url(../img/common/icon_mail_white.svg) no-repeat;
  background-size:contain;
  position: absolute;
  top:0;
  bottom:0;
  margin:auto 0;
  left:-60px;
  transition: 0.2s;
  opacity:0;
}

.footer-mail-text:after{
  content: '';
  display: inline-block;
  width:31px;
  height:21px;
  background:url(../img/common/icon_mail_black.svg) no-repeat;
  background-size:contain;
  position: absolute;
  top:0;
  bottom:0;
  margin:auto 0;
  left:-60px;
  transition: 0.2s;
  opacity:1;
}


@media screen and (min-width: 641px) {
  .footer-main-nav a::after {
    content: '';
    display: inline-block;
    background-color: #fff;
    width: 0;
    height: 1px;
    vertical-align: middle;
  }
  .footer-main-nav a:hover::after {
    width: 1.6em;
    margin-left: 0.4em;
  }
  .footer-main-contact .btn:hover {
    background-color: #222;
    color: #fff;
  }
  .footer-main-contact .btn:hover::after {
    opacity: 1;
  }

  .footer-main-contact .btn:hover .footer-mail-text:after{
    opacity:0;
  }

  .footer-main-contact .btn:hover .footer-mail-text:before{
    opacity:1;
  }
}


/*------------------------------------------------------------------------------
  main
------------------------------------------------------------------------------*/
.main {
  padding-top: 100px;
}
.main.top {
  padding-top: 0;
}
.contents-block {
  padding: 80px 0;
  overflow: hidden;
}


/* 汎用 */
.c-title {
  color: #666;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
.c-title > span {
  color: #959595;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin-bottom: 30px;
}

.c-title.wt {
  color: #fff;
}
.c-title.wt > span {
  color: #959595;
}

.c-btn {
  position: relative;
  background-color: #fff;
  color: #1b1b1b;
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 18px;
  display: inline-block;
  width: 483px;
  height: 67px;
  line-height: 67px;
}
.c-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 2px solid #fff;
  opacity: 0;
}
.c-btn > .plus {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  width: 16px;
  height: 16px;
  pointer-events: none;
}
.c-btn > .plus::before,
.c-btn > .plus::after {
  content: '';
  position: absolute;
  background-color: #1b1b1b;
}
.c-btn > .plus::before {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -1px;
}
.c-btn > .plus::after {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  margin-top: -1px;
}


@media screen and (min-width: 641px) {
  .c-btn:hover {
    background-color: transparent;
    color: #fff;
  }
  .c-btn:hover::before {
    opacity: 1;
  }
  .c-btn > .plus,
  .c-btn > .plus::before,
  .c-btn > .plus::after {
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .c-btn:hover > .plus {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
  .c-btn:hover > .plus::before,
  .c-btn:hover > .plus::after {
    background-color: #fff;
  }
}



.kv-block {
  position: relative;
  height: 100vh;
  padding: 0;
  z-index: 0;
  overflow: hidden;
}
/*.kv-block::before {*/
  /*content: '';*/
  /*background: url(../img/top/kv_img.jpg) center center no-repeat;*/
  /*background-size: cover;*/
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*bottom: 0;*/
  /*right: 0;*/
  /*pointer-events: none;*/
/*}*/
.kv-block .kv-img {
  width:100%;
  height:100%;
  background: url(../img/top/kv_img.jpg) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
.kv-text-area {
  position: absolute;
  right: 60px;
  bottom: 50px;
  text-align: right;
  z-index: 2;
}
.kv-text-area > .text {
  margin-top: 40px;
}


.mission-block {
  background:
    url(../img/top/mission_bg.png) top 5px center no-repeat;
  background-color: #fff;
  padding: 120px 0 140px;
}
.mission-title {
  margin-bottom: 60px;
}
.mission-about {
  color: #555;
  font-size: 20px;
  line-height: 2.5;
  text-align: center;
}



.pickup-block {
  background-color: #fafafa;
  padding-top: 60px;
}
.pickup-title {
  color: #707070;
  font-size: 30px;
  font-family: 'Roboto';
  font-weight: 100;
  text-align: center;
  margin-bottom: 40px;
}
.pickup-list {
  font-size: 0;
  text-align: center;
}
.pickup-list > li {
  display: inline-block;
  width: 320px;
}
.pickup-list > li + li {
  margin-left: 70px;
}
.pickup-list > li:nth-child(4) {
  margin-left: 0;
}
.pickup-list > li:nth-child(n + 4) {
  margin-top: 40px;
}
.pickup-list a {
  display: block;
}


@media screen and (min-width: 641px) {
  .pickup-list a:hover {
    opacity: 0.7;
  }
}


.x-block {
  position: relative;
  background-color: #1b1b1b;
  overflow: hidden;
  padding: 0;
  z-index: 1;
}

.x-block-before {
  display: block;
  position: absolute;
  left: 90%;
  bottom: 0;
  content: '';
  background: url(../img/top/bg_x.svg) center bottom no-repeat;
  background-size: 100% auto;
  width: 250%;
  height: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}


.news-block {
  padding: 65px 0 85px;
}
.news-title {
  margin-bottom: 65px;
}

.news-wrap + .news-wrap {
  display: none;
  margin-top: 40px;
}

.news-list > li {
  width: 528px;
  float: left;
}
.news-list > li:nth-child(2n) {
  float: right;
}
.news-list > li:nth-child(n+3) {
  margin-top: 40px;
}

.news-link {
  background-color: #fff;
  display: flex;
  align-items: center;
}
.news-list-img {
  position: relative;
  width: 277px;
  z-index: 0;
  overflow: hidden;
}
.news-list-img::after {
  content: '';
  background-color: #fff;
  width: 10em;
  height: 100%;
  position: absolute;
  left: 277px;
  bottom: 0;
  -webkit-transform-origin: top left;
  -webkit-transform: skewX(-34deg);
  transform-origin: top left;
  transform: skewX(-34deg);
  z-index: 1;
  pointer-events: none;
}

.news-list-body {
  position: relative;
  color: #959595;
  width: calc(100% - 277px);
  padding-right: 1em;
  margin-left: -1em;
  text-align: justify;
  z-index: 2;
}

.news-list-body > .date {
  font-size: 12px;
  margin-bottom: 15px;
}
.news-list-body > .text {
  font-size: 15px;
  line-height: 1.6;
}

.news-btn-area {
  text-align: center;
  margin-top: 90px;
}

.news-error-text{
  color:#fff;
  text-align: center;
  font-size:16px;
}

.current .news-link,
.current .news-list-img::after {
  background-color: #292929;
  cursor: default;
}
.current .news-link .news-list-body {
  color: #fff;
}
.current .news-link .news-list-img > img {
  transform: scale(1.1);
}

@media screen and (min-width: 641px) {
  .news-link,
  .news-link .news-list-body,
  .news-link .news-list-img::after {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .news-link .news-list-img > img {
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
  }
  .news-link:hover,
  .news-link:hover .news-list-img::after {
    background-color: #292929;
  }
  .news-link:hover .news-list-body {
    color: #fff;
  }
  .news-link:hover .news-list-img > img {
    transform: scale(1.1);
  }
}


.service-block {
  padding: 85px 0 150px;
}
.service-title {
  margin-bottom: 95px;
}

.service-list > li {
  position: relative;
  display: flex;
  align-items: center;
}
.service-list > li + li {
  margin-top: 190px;
}
.service-list > li:nth-child(2n) > .service-media {
  order: 1;
}
.service-list > li:nth-child(2n) > .service-body {
  order: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.service-list > li > .number {
  background-size: contain;
  content: '';
  position: absolute;
  top: 600px;
  height: 217px;
  pointer-events: none;
}
.service-list > li:nth-child(1) > .number {
  background: url(../img/top/service_num01.svg);
  width: 178px;
  right: 84px;
}
.service-list > li:nth-child(2) > .number {
  background: url(../img/top/service_num02.svg);
  width: 202px;
  left: 260px;
}
.service-list > li:nth-child(3) > .number {
  background: url(../img/top/service_num03.svg);
  width: 203px;
  right: 46px;
}
.service-list > li:nth-child(4) > .number {
  background: url(../img/top/service_num04.svg);
  width: 210px;
  left: 260px;
}
.service-list > li:nth-child(5) > .number {
  background: url(../img/top/service_num05.svg);
  width: 203px;
  right: 46px;
}

.service-media {
  width: 500px;
}
.service-body {
  color: #fff;
  width: calc(100% - 500px);
  padding-left: 80px;
}
.service-body > .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.375;
  margin-bottom: 1em;
}
.service-body > .text {
  font-size: 16px;
  text-align: justify;
  line-height: 1.875;
}



.company-block {
  padding-bottom: 100px;
}
.company-title {
  margin-bottom: 100px;
}
.company-name {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.company-name > span {
  display: block;
  font-family: 'Roboto';
  font-size: 16px;
  font-weight: 300;
  margin-top: 20px;
}

.company-box > .detail {
  float: left;
  width: 544px;
}
.company-box > .map {
  float: right;
  width: 503px;
}
.g-map {
  position: relative;
  width: 100%;
  height: 350px;
  filter: grayscale(100%);
}
.g-map > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company-table {
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.875;
}
.company-table tr {
  border-top: 1px solid #e5e5e5;
}
.company-table th,
.company-table td {
  font-size: 16px;
  vertical-align: top;
  padding: 15px 0;
  text-align: left;
}
.company-table th {
  font-weight: normal;
  width: 125px;
}
.company-table td {
  position: relative;
}
.company-table .googlemap {
  text-decoration: underline;
  position: absolute;
  right: 0;
  bottom: 12px;
}



@media screen and (min-width: 641px) {
  .company-table .googlemap:hover {
    text-decoration: none;
  }
}




.recruit-block {
  background-color: #fafafa;
  padding: 70px 0 105px;
}
.recruit-caption {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
  z-index: -1;
}
.recruit-list > li {
  background-color: #fff;
  display: table;
  padding: 15px 0;
  width: 100%;
  min-height: 100px;
}
.recruit-list > li > * {
  display: table-cell;
  vertical-align: middle;
}
.recruit-list > li + li {
  margin-top: 15px;
}

.recruit-list-title {
  font-size: 16px;
  text-align: center;
  width: 235px;
  border-right: 1px solid #c9c9c9;
}

.recruit-list-body {
  font-size: 16px;
  padding-left: 75px;
  line-height: 1.875;
}

.recruit-title + .text {
	font-size: 16px;
	margin: 0;
	padding: 0;
	text-align: center;
}
.recruit-button {
	margin: 30px 0 0;
}
.button-gray-big {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 40px 0;
	width: 90%;
	max-width: 750px;
	background: #646464;
	font-size: 20px;
	color: #fff;
	text-align: center;
}
.button-gray-big::after {
	content: "";
	position: absolute;
	top: 50%;
	right:15px;
	margin-top: -5px;
	width: 9px;
	height: 9px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}


/*------------------------------------------------------------------------------
  news
------------------------------------------------------------------------------*/
.news-detail-block {
  padding: 50px 0 100px;
}
.news-title-area {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
.news-title-area > .title {
  border-right: 1px solid #c9c9c9;
  color: #333;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.44;
  letter-spacing: -0.7px;
  padding-right: 30px;
  width: 970px;
}
.news-title-area > .sns {
  width: calc(100% - 970px);
  padding-left: 40px;
}

.news-sns-list {
  display: table;
  table-layout: fixed;
}
.news-sns-list > li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.news-sns-list > li.twitter {
  padding-left: 0.6em;
}
.news-sns-list > li:first-child {
  text-align: left;
}
.news-sns-list > li:last-child {
  text-align: right;
}

.news-sns-list > li a {
  display: inline-block;
}

.news-detail-media {
  margin-bottom: 90px;
}
.news-detail-media > img {
  width: 100%;
}

.news-detail-body-inner {
  width: 800px;
  margin: 0 auto;
}

.news-detail-body-inner p {
  color: #565656;
  font-size: 16px;
  line-height: 1.88;
  letter-spacing: 0.8px;
  margin-bottom: 1em;
  text-align: justify;
}
.news-detail-body-inner h2 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.9px;
  margin-top: 70px;
  margin-bottom: 30px;
}

.news-media-container {
  margin: 60px 0 70px;
}
.news-media-container::after {
  content: '';
  clear: both;
  display: table;
}
.news-media-container > .media {
  float: left;
  width: 380px;
}
.news-media-container > .body {
  overflow: hidden;
  padding-left: 40px;
}
.news-media-container p {
  letter-spacing: 0.4px;
}
.news-media-container p:last-child {
  margin-bottom: 0;
}


.news-detail-body > .date {
  color: #555;
  font-size: 16px;
  letter-spacing: -0.3px;
  margin-bottom: 25px;
}

.news-video-container {
  position: relative;
  margin: 50px 0 60px;
  padding-top: 56.25%;
}
.news-video-container > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-site-link {
  width: 483px;
  margin: 80px auto 0;
}
.news-site-link > .btn {
  position: relative;
  background-color: #1b1b1b;
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: bold;
  height: 67px;
  line-height: 67px;
  text-align: center;
}
.news-site-link > .btn::before {
  content: '';
  border: 2px solid #1b1b1b;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.news-site-link .icon {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 15px;
  height: 12px;
}
.news-site-link .icon img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.2s cubic-bezier(.75,.02,.31,.92);
  transition: 0.2s cubic-bezier(.75,.02,.31,.92);
}
.news-site-link .icon img:nth-child(2) {
  opacity: 0;
}


.pagination {
  font-size: 0;
  margin-top: 60px;
  text-align: center;
}
.pagination > .item {
  display: inline-block;
  border: 1px solid #c9c9c9;
  background-color: #f9f9f9;
  width: 44px;
  height: 44px;
}
.pagination > .item + .item {
  margin-left: 80px;
}

.pagination > .arrow {
  position: relative;
}
.pagination > .arrow::before,
.pagination > .arrow::after {
  content: '';
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 10px;
  height: 17px;
}
.pagination > .arrow-left::before {
  background-image: url(../img/common/arrow_left.svg);
}
.pagination > .arrow-left::after {
  background-image: url(../img/common/arrow_left-wt.svg);
  opacity: 0;
}
.pagination > .arrow-right::before {
  background-image: url(../img/common/arrow_right.svg);
}
.pagination > .arrow-right::after {
  background-image: url(../img/common/arrow_right-wt.svg);
  opacity: 0;
}



.news-block-detail {
  background-color: #1b1b1b;
  padding: 55px 0 100px;
}

@media screen and (min-width: 641px) {
  .news-site-link > .btn:hover {
    background-color: transparent;
    color: #1b1b1b;
  }
  .news-site-link > .btn:hover::before {
    opacity: 1;
  }
  .news-site-link > .btn:hover .icon img:nth-child(1) {
    opacity: 0;
  }
  .news-site-link > .btn:hover .icon img:nth-child(2) {
    opacity: 1;
  }
  .pagination > .item:hover {
    background-color: #666;
    border-color: #666;
    color: #f9f9f9;
  }
  .pagination > .arrow:hover::before {
    opacity: 0;
  }
  .pagination > .arrow:hover::after {
    opacity: 1;
  }
  .news-sns-list a:hover {
    opacity: 0.7;
  }
}

.t-indent {
  padding-left: 1em;
}

.not-recruit {
  background-color: #646464;
  position: relative;
  height: 180px;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 99;
}

#recruit {
  z-index: 0;
}

/*------------------------------------------------------------------------------
  policy
------------------------------------------------------------------------------*/

main.policy-area {
  margin-top: 100px;
}

main.policy-area .container {
  margin: 0px 10%;
}

main.policy-area p {
  margin-bottom: 1.2em;
  font-size: 1.0rem;
  line-height: 1.5
}

main.policy-area h2 {
  font-size: 1.5rem;
  color: black;
  padding-bottom: 15px;
  border-bottom: dotted 1px #3e3a39;
  padding-top: 50px;
  margin-bottom: 3%;
}

h1.policy-title {
  font-size: 1.7rem;
  padding-bottom: 15px;
  border-bottom: dotted 1px #3e3a39;
  margin-top: 50px;
  position: relative;
  /* padding-left: 0.5em; */
  margin-bottom: 3%;
  color: #041b96;
}

p.policy-description {
  font-size: 1.3rem;
  line-height: 1.5
}

/*------------------------------------------------------------------------------
  google-translate-wrap
------------------------------------------------------------------------------*/
.google-translate-wrap {
  margin: 0 0 30px;
  position: absolute;
  right: 0;
  top: 0;
  width: 140px;
  overflow: hidden;
}
.google-translate-wrap #flags {
  display: none;
}
.google-translate-wrap .skiptranslate > div {
  display: inline-block;
  margin: 0 10px 0 0;
}
.google-translate-wrap #google_language_translator select.goog-te-combo {
  font-size: 14px;
  width: 140px;
}


/*------------------------------------------------------------------------------
  clearfix
------------------------------------------------------------------------------*/

.clearfix:after,
.inner-block:after {
  clear: both;
  content: "";
  display: block;
  height: 0px;
  font-size: 0;
  visibility: hidden;
}


/*------------------------------------------------------------------------------
  js
------------------------------------------------------------------------------*/

/* top */
[data-type="top"]::before {
  -webkit-transition: 0.9s cubic-bezier(.75,.02,.31,.92);
  transition: 0.9s cubic-bezier(.75,.02,.31,.92);
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
[data-type="top"] .title,
[data-type="top"] .text {
  -webkit-transition: 1.6s ease-in-out;
  transition: 1.6s ease-in-out;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
[data-type="top"]::before {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0;
}
[data-type="top"] .title,
[data-type="top"] .text {
  -webkit-transform: translateX(-150%);
  transform: translateX(-150%);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
}
[data-type="top"] .text {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

/* is-active */
.is-active[data-type="top"]::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.is-active[data-type="top"] .title,
.is-active[data-type="top"] .text {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}


/* bottom */
[data-type="t-btm"] {
  -webkit-transition: 0.9s ease-in-out;
  transition: 0.9s ease-in-out;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.is-active[data-type="t-btm"] {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}


/* group */
[data-type="t-group"] > * {
  -webkit-transition: 0.9s ease-out;
  transition: 0.9s ease-out;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.is-active[data-type="t-group"] > * {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}


/* image */
[data-type="t-media"] img {
  opacity: 0;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
[data-type="t-media"] [data-media] {
  position: relative;
  overflow: hidden;
}
[data-type="t-media"] [data-media]::after {
  content: '';
  background-color: #555;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
[data-type="t-media"] [data-body] {
  -webkit-transition: 0.8s cubic-bezier(.75,.02,.31,.92);
  transition: 0.8s cubic-bezier(.75,.02,.31,.92);
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
  opacity: 0;
}
[data-type="t-media"] [data-body="odd"] {
  -webkit-transform: translateX(70%);
  transform: translateX(70%);
}
[data-type="t-media"] [data-body="even"] {
  -webkit-transform: translateX(-70%);
  transform: translateX(-70%);
}


.is-active[data-type="t-media"] [data-media]::after {
  -webkit-animation:
    slideImg 0.9s cubic-bezier(.75,.02,.31,.92) forwards;
  animation:
    slideImg 0.9s cubic-bezier(.75,.02,.31,.92) forwards;
}
.is-active[data-type="t-media"] img {
  opacity: 1;
}
.is-active[data-type="t-media"] [data-body] {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}


@-webkit-keyframes slideImg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 500px;
  }
  60% {
    left: 0;
    width: 500px;
  }
  100% {
    left: 100%;
    width: 500px;
  }
}
@keyframes slideImg {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 500px;
  }
  60% {
    left: 0;
    width: 500px;
  }
  100% {
    left: 100%;
    width: 500px;
  }
}