@charset "UTF-8";
@-webkit-keyframes bgfade {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 91, 172, 0.5);
  }
}
@keyframes bgfade {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 91, 172, 0.5);
  }
}

@-webkit-keyframes bgfade2 {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 156, 230, 0.5);
  }
}

@keyframes bgfade2 {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(0, 156, 230, 0.5);
  }
}

.mv {
  position: relative;
  width: 100%;
  height: 80vh;
  opacity: 0;
  -webkit-transform: translateY(5%);
  transform: translateY(5%);
  -webkit-transition: 0.8s ease 0.6s;
  transition: 0.8s ease 0.6s;
  z-index: 3;
}

.loaded .mv {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.mv__title {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 10px 20px;
  font-size: 3rem;
  color: #fff;
  background-color: rgba(0, 91, 172, 0.5);
  z-index: 10;
  line-height: 1.4;
}
@media screen and (max-width: 500px) {
  .mv__title {
    font-size: 2.6rem;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 350px) {
  .mv__title {
    padding: 8px 14px;
  }
}

.mv__title__sub {
  font-size: 2rem;
  color: #fff;
  display: table;
}
@media screen and (max-width: 500px) {
  .mv__title__sub {
    font-size: 1.6rem;
  }
}

.mv__images {
  height: 100%;
}
.mv__image {
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 2s;
}

.mv__image img {
  height: 100%;
}

.mv__image:nth-child(n + 2) {
  position: absolute;
  top: 0;
  left: 0;
}
.js-active01 .mv__image:nth-child(1) {
  opacity: 1;
  z-index: 2;
}
.js-active02 .mv__image:nth-child(2) {
  opacity: 1;
  z-index: 2;
}
.js-active03 .mv__image:nth-child(3) {
  opacity: 1;
  z-index: 2;
}
.js-active04 .mv__image:nth-child(4) {
  opacity: 1;
  z-index: 2;
}

.mv-news {
  position: absolute;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  max-width: 1024px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 10%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

@media screen and (max-width: 1024px) {
  .mv-news {
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .mv-news {
    width: 90%;
  }
}

@media screen and (max-width: 500px) {
  .mv-news {
    width: 96%;
    padding: 8px 6px;
  }
}

.mv-news a {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .mv-news a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.mv-news a:nth-child(2) {
  padding: 10px;
  width: 85%;
}

.mv-news a:nth-child(3) {
  padding: 10px;
  width: 15%;
  min-width: 150px;
}

@media screen and (max-width: 768px) {
  .mv-news a:nth-child(3) {
    padding: 6px;
    min-width: 140px;
  }
}

@media screen and (max-width: 500px) {
  .mv-news a:nth-child(3) {
    min-width: 110px;
  }
}

.mv-news a:nth-child(3) span {
  position: relative;
  padding: 2px 18px;
  border-left: 1px solid #000;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .mv-news a:nth-child(3) span {
    padding: 2px 12px;
  }
}

.mv-news a:nth-child(3) span::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 6px;
  height: 6px;
  right: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
  top: 45%;
  right: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mv-news a:nth-child(3):hover span::after {
  border-color: #065bab;
}

.mv-news a:hover {
  opacity: 0.8;
}

.mv-news_tag {
  padding: 10px 18px;
  position: relative;
}

@media screen and (max-width: 500px) {
  .mv-news_tag {
    padding: 6px 8px 6px 4px;
  }
}

.mv-news .view .mv-news_tag::after {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.mv-news_cat {
  padding: 2px 6px;
  background-color: rgba(0, 91, 172, 0.9);
  color: #fff;
  margin-left: 8px;
}

.mv-news_area {
  padding: 2px 6px;
  background-color: rgba(0, 156, 230, 0.9);
  color: #fff;
  margin-left: 8px;
}

.mv-news_date {
  padding: 2px 6px 2px 18px;
}

.mv-news_desc {
  padding: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 360px;
}

@media screen and (max-width: 1024px) {
  .mv-news_desc {
    max-width: 300px;
  }
}

.mv-tag {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.mv-tag p {
  background-color: rgba(0, 52, 99, 0.5);
  color: #fff;
  font-size: 2.8rem;
}

@media screen and (max-width: 500px) {
  .mv-tag p {
    font-size: 2.2rem;
  }
}

.mv-tag_1 {
  letter-spacing: 0.2em;
  bottom: 22%;
  left: 50%;
}

@media screen and (max-width: 500px) {
  .mv-tag_1 {
    bottom: 21%;
    left: 25%;
  }
}

.mv-tag_1 p {
  padding: 10px 14px;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.2s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.2s;
}

@media screen and (max-width: 500px) {
  .mv-tag_1 p {
    padding: 8px 10px;
  }
}

.box0 .mv-tag_1 p {
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.6s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.6s;
}

.mv-tag_2 {
  bottom: 30%;
  left: 75%;
}

@media screen and (min-width: 1100px) and (max-height: 780px) {
  .mv-tag_2 {
    bottom: 33%;
  }
}

@media screen and (max-width: 1024px) {
  .mv-tag_2 {
    bottom: 35%;
  }
}

@media screen and (max-width: 500px) {
  .mv-tag_2 {
    bottom: 35%;
    left: 50%;
  }
}

.mv-tag_2 p {
  line-height: 1;
  padding: 0px 12px 8px 12px;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
}

@media screen and (max-width: 500px) {
  .mv-tag_2 p {
    padding: 2px 12px 2px 12px;
  }
}

@media screen and (max-width: 500px) {
  .mv-tag_2 p .odometer.odometer-auto-theme {
    line-height: 1.4em;
    letter-spacing: 0.15em;
    padding-right: 2px;
  }
}

.box0 .mv-tag_2 p p {
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 2s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 2s;
}

.mv-tag_2 p .result {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: inline-block;
}

.mv-tag_2 p .odometer-value {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", YuMincho,
    "MS P明朝", "MS PMincho", "Noto Serif JP", "serif";
  font-size: 2.8rem;
}

.catch-en {
  position: relative;
  display: block;
  font-size: 5rem;
  line-height: 1.2;
  overflow: hidden;
  letter-spacing: 0.15em;
  margin: 0 0 10px 30px;
}

.catch-en span {
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
}

.box0 .catch-en span {
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
}

.loaded .box0 .catch-en span,
.is-active .catch-en span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.catch-en::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #000;
  width: 100%;
  content: "";
  -webkit-transition: background-color 0.5s ease-in-out 0.8s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.5s;
  transition: background-color 0.5s ease-in-out 0.8s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.5s;
  transition: transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.5s,
    background-color 0.5s ease-in-out 0.8s;
  transition: transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.5s,
    background-color 0.5s ease-in-out 0.8s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.5s;
}

@media screen and (max-width: 500px) {
  .catch-en::before {
    height: 1px;
  }
}

.box0 .catch-en::before {
  -webkit-transition: background-color 0.5s ease-in-out 1.4s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.1s;
  transition: background-color 0.5s ease-in-out 1.4s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.1s;
  transition: transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.1s,
    background-color 0.5s ease-in-out 1.4s;
  transition: transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.1s,
    background-color 0.5s ease-in-out 1.4s,
    -webkit-transform 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.1s;
}

.loaded .box0 .catch-en::before,
.is-active .catch-en::before {
  background-color: #fff;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.catch-ruby {
  margin-bottom: 20px;
  overflow: hidden;
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .catch-ruby {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
}

.catch-ruby span {
  display: block;
  font-weight: bold;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
}

.box0 .catch-ruby span {
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
}

.catch-main {
  font-size: 2.8rem;
  margin-bottom: 12px;
  overflow: hidden;
  padding-left: 30px;
}

@media screen and (max-width: 500px) {
  .catch-main {
    font-size: 2.1rem;
    padding-left: 20px;
  }
}

.catch-main span {
  font-weight: bold;
  display: block;
  -webkit-transform: translateX(-103%);
  transform: translateX(-103%);
  -webkit-transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
  transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
  opacity: 0;
}

.box0 .catch-main span {
  -webkit-transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
  transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
}

.loaded .box0 .catch-main span,
.is-active .catch-main span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.catch-sub {
  font-size: 1.8rem;
  overflow: hidden;
  padding-left: 30px;
}

@media screen and (max-width: 500px) {
  .catch-sub {
    padding-left: 20px;
  }
}

.catch-sub span {
  font-weight: bold;
  display: block;
  -webkit-transform: translateX(-103%);
  transform: translateX(-103%);
  -webkit-transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
  transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.8s;
  opacity: 0;
}

.box0 .catch-sub span {
  -webkit-transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
  transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 1.4s;
}

.loaded .box0 .catch-sub span,
.is-active .catch-sub span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .top-expert .desc {
    width: 75%;
    margin-left: 25%;
  }
}

.top-expert_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top-expert_list {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  height: 320px;
  position: relative;
  margin-bottom: 5%;
  background-size: cover;
}

@media screen and (max-width: 1024px) {
  .top-expert_list {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .top-expert_list {
    height: 260px;
  }
}

@media screen and (max-width: 500px) {
  .top-expert_list {
    height: 200px;
  }
}

.top-expert_list .link-bx {
  bottom: 20px;
  right: 18px;
}

@media screen and (max-width: 768px) {
  .top-expert_list .link-bx {
    bottom: 16px;
    right: 9px;
  }
}

@media screen and (max-width: 500px) {
  .top-expert_list .link-bx {
    right: 12px;
  }
}

@media screen and (max-width: 500px) {
  .top-expert_list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

.top-expert_list:last-child,
.top-expert_list:nth-last-child(2) {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .top-expert_list:last-child,
  .top-expert_list:nth-last-child(2) {
    margin-bottom: 5%;
  }
}

@media screen and (max-width: 500px) {
  .top-expert_list:last-child,
  .top-expert_list:nth-last-child(2) {
    margin-bottom: 30px;
  }
}

.top-expert_list a {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  padding: 65px 80px 0 0;
  background-color: transparent;
  color: #fff;
  -webkit-transition: background-color 0.5s ease 0.7s;
  transition: background-color 0.5s ease 0.7s;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .top-expert_list a {
    padding: 45px 55px 0 0;
  }
}

@media screen and (max-width: 500px) {
  .top-expert_list a {
    padding: 40px 45px 0 0;
  }
}

.top-expert_list a::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top-expert_list a::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 100%;
  background-color: rgba(6, 92, 172, 0.5);
  content: "";
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .top-expert_list a::before {
    width: 44px;
  }
}

.top-expert_list a:hover + .b-back1 span::before {
  opacity: 0;
}

.top-expert_list a .ttl-01::before {
  background-color: transparent;
}

.top-expert_list a .desc-txt span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.top-expert_list a .txt-shadow {
  text-shadow: none;
}

.top-expert_list a:hover .txt-shadow {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
}

.top-expert_list.view a .ttl-01::before {
  background-color: #fff;
}

.top-service {
  padding-bottom: 5%;
}

@media screen and (max-width: 500px) {
  .top-service .desc {
    width: 75%;
    margin-left: 0;
  }
}

.top-service_thumb {
  width: 75%;
  height: 320px;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .top-service_thumb {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .top-service_thumb {
    height: 260px;
  }
}

@media screen and (max-width: 500px) {
  .top-service_thumb {
    height: 200px;
  }
}

.top-service_thumb img {
  height: 320px;
}

@media screen and (max-width: 1024px) {
  .top-service_thumb img {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .top-service_thumb img {
    height: 260px;
  }
}

@media screen and (max-width: 500px) {
  .top-service_thumb img {
    height: 200px;
  }
}

.top-about {
  padding: 5% 0;
}

.top-about > .d-f {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top-about_thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  height: 360px;
  margin-top: auto;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .top-about_thumb {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .top-about_thumb {
    height: 280px;
  }
}

@media screen and (max-width: 500px) {
  .top-about_thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    height: 200px;
  }
}

.top-about_thumb img {
  height: 360px;
}

@media screen and (max-width: 1024px) {
  .top-about_thumb img {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .top-about_thumb img {
    height: 280px;
  }
}

@media screen and (max-width: 500px) {
  .top-about_thumb img {
    height: 200px;
  }
}

.top-about_desc {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  padding-bottom: 3%;
  padding-right: 30px;
}

@media screen and (max-width: 500px) {
  .top-about_desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .top-about_desc .more-btn {
    margin-left: 50vw;
    margin-top: 0;
  }
  .top-about_desc .desc-head {
    margin-top: 0;
  }
}

.top-about_desc .ttl-01 {
  padding-right: 46px;
}

@media screen and (max-width: 1024px) {
  .top-about_desc .ttl-01 {
    padding-right: 60px;
  }
}

@media screen and (max-width: 500px) {
  .top-about_desc .ttl-01 {
    padding-right: 70px;
  }
}

.top-staff {
  padding-bottom: 5%;
}

.top-staff .desc {
  padding-right: 30px;
}

@media screen and (max-width: 500px) {
  .top-staff .desc {
    width: 75%;
    margin-left: 25%;
  }
}

.top-staff_thumb {
  width: 75%;
  height: 320px;
  margin-left: auto;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .top-staff_thumb {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .top-staff_thumb {
    height: 260px;
  }
}

@media screen and (max-width: 500px) {
  .top-staff_thumb {
    height: 200px;
  }
}

.top-staff_thumb img {
  height: 320px;
}

@media screen and (max-width: 1024px) {
  .top-staff_thumb img {
    height: 280px;
  }
}

@media screen and (max-width: 768px) {
  .top-staff_thumb img {
    height: 260px;
  }
}

@media screen and (max-width: 500px) {
  .top-staff_thumb img {
    height: 200px;
  }
}

.top-publish {
  padding: 5% 0;
}

.top-publish .d-f:nth-child(1) {
  margin-left: 25%;
}

@media screen and (max-width: 500px) {
  .top-publish .d-f:nth-child(2) {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.top-publish .desc {
  padding: 8% 10% 8% 0;
}

@media screen and (max-width: 500px) {
  .top-publish .desc {
    padding: 30px 8% 30px 0;
  }
  .top-publish .desc .desc-txt {
    margin-top: 0;
  }
}

.top-publish_desc {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 3% 0;
}

@media screen and (max-width: 500px) {
  .top-publish_desc {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.top-publish_thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  height: 600px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .top-publish_thumb {
    height: 540px;
  }
}

@media screen and (max-width: 768px) {
  .top-publish_thumb {
    height: 480px;
  }
}

@media screen and (max-width: 500px) {
  .top-publish_thumb {
    height: 280px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.top-publish_thumb img {
  height: 600px;
}

@media screen and (max-width: 1024px) {
  .top-publish_thumb img {
    height: 540px;
  }
}

@media screen and (max-width: 768px) {
  .top-publish_thumb img {
    height: 480px;
  }
}

@media screen and (max-width: 500px) {
  .top-publish_thumb img {
    height: 280px;
  }
}

@media screen and (max-width: 500px) {
  .top-publish .more-btn {
    margin-top: 0;
  }
}

.top-column {
  padding: 5% 0;
}

.top-column_ttl {
  position: absolute;
  left: 50%;
  z-index: 3;
}

@media screen and (max-width: 500px) {
  .top-column_ttl {
    left: 0;
  }
}

.top-column_slider {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 500px) {
  .top-column_slider {
    margin-bottom: 80px;
  }
}

.top-column_slider .btn-slider {
  margin: 40px 20px;
}

@media screen and (max-width: 500px) {
  .top-column_slider .btn-slider {
    margin: 0;
    position: absolute;
    top: 360px;
    left: 75vw;
  }
}

.top-column_slider .archive-link {
  position: absolute;
  bottom: 20px;
}

@media screen and (max-width: 500px) {
  .top-column_slider .archive-link {
    bottom: -65px;
    margin-left: 50%;
  }
}

@media screen and (max-width: 500px) {
  .column-slider_list > .d-f {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 90px;
  }
}

.column-slider_list a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

.column-slider_list a:hover {
  opacity: 0.7;
}

.column-slider_thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  height: 550px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .column-slider_thumb {
    height: 520px;
  }
}

@media screen and (max-width: 768px) {
  .column-slider_thumb {
    height: 420px;
  }
}

@media screen and (max-width: 500px) {
  .column-slider_thumb {
    height: 240px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.is-active .column-slider_thumb {
  opacity: 0.7;
}

.column-slider_thumb:before {
  right: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
  content: "";
}

@media screen and (max-width: 500px) {
  .column-slider_thumb:before {
    right: 33.33%;
  }
}

.column-slider_thumb:after {
  right: 66.66%;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
}

@media screen and (max-width: 500px) {
  .column-slider_thumb:after {
    content: "";
  }
}

.column-slider_thumb img {
  height: 550px;
}

@media screen and (max-width: 1024px) {
  .column-slider_thumb img {
    height: 520px;
  }
}

@media screen and (max-width: 768px) {
  .column-slider_thumb img {
    height: 420px;
  }
}

@media screen and (max-width: 500px) {
  .column-slider_thumb img {
    height: 240px;
  }
}

.column-slider_desc {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  padding-top: 80px;
  margin-top: 200px;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .column-slider_desc {
    margin-top: 160px;
  }
}

@media screen and (max-width: 500px) {
  .column-slider_desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    margin-top: 0px;
    margin-bottom: 0;
  }
}

a:hover + .column-slider_desc {
  opacity: 0.7;
}

.column-slider_desc .area-tag {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .column-slider_desc .area-tag {
    top: 20px;
  }
}

@media screen and (max-width: 500px) {
  .column-slider_desc .area-tag {
    top: 22px;
  }
}

.column-slider_desc a {
  display: block;
}

.column-slider_desc .more-btn {
  z-index: 0;
}

.column-slider_info {
  background-color: #eee;
  padding: 20px 25px;
  min-height: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}

@media screen and (max-width: 500px) {
  .column-slider_info {
    padding: 20px 15px;
  }
}

.column-slider_info:before {
  right: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
  content: "";
}

@media screen and (max-width: 500px) {
  .column-slider_info:before {
    right: 33.33%;
  }
}

.column-slider_info:after {
  right: 66.66%;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
}

@media screen and (max-width: 500px) {
  .column-slider_info:after {
    content: "";
  }
}

.column-slider_info dd {
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

a:hover .column-slider_info {
  color: #065bab;
}

.column-slider_date {
  padding-right: 14px;
}

.column-slider_cate {
  padding-left: 14px;
  border-left: 1px solid #000;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

.column-slider_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  height: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
  z-index: 2;
}

.column-slider .btn-slider {
  margin: 30px 0 40px 12px;
}

.top-case {
  padding-top: 5%;
}

.top-case_link {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 450px;
  margin-bottom: 5%;
}

@media screen and (max-width: 1024px) {
  .top-case_link {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .top-case_link {
    height: 320px;
  }
}

@media screen and (max-width: 500px) {
  .top-case_link {
    height: 250px;
    padding: 40px 0;
    margin-bottom: 45px;
    display: block;
  }
}

.top-case_link::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .top-case_link::before {
    width: 44px;
  }
}

.top-case_link::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 100%;
  background-color: rgba(6, 92, 172, 0.5);
  content: "";
  z-index: 2;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-case_link .b-back span::before {
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-case_link_inner {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  color: #fff;
  position: relative;
  z-index: 2;
}

.top-case_link_inner .ttl-01::before {
  background-color: rgba(180, 180, 180, 0.6);
}

.top-case_link_inner .desc-txt {
  padding-right: 15%;
}

.top-case_link_inner:nth-child(2) {
  max-width: 75%;
  margin-left: auto;
}

.top-case_link.view .b-back span::before {
  -webkit-animation: bgfade 0.5s ease 0.7s forwards;
  animation: bgfade 0.5s ease 0.7s forwards;
}

.top-case_link.view .ttl-01::before {
  background-color: #fff;
}

.top-case_link .txt-shadow {
  text-shadow: none;
}

.b-back2 span:nth-child(4)::before {
  left: initial;
  right: 66px;
  width: calc(25% - 66px);
}

@media screen and (max-width: 768px) {
  .b-back2 span:nth-child(4)::before {
    right: 44px;
    width: calc(25% - 44px);
  }
}

.top-case_link:hover .b-back2 span::before {
  opacity: 0;
}

.top-case_link:hover .txt-shadow {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
}

.top-case_list {
  margin-bottom: 5%;
}

.top-case_list .d-f {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top-case_list:last-child {
  margin-bottom: 0;
}
.top-case_list .b-back1 span:nth-child(2)::before {
  right: 0;
  width: 50%;
}

.top-case_list_thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 260px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 1024px) {
  .top-case_list_thumb {
    height: 245px;
  }
}

@media screen and (max-width: 768px) {
  .top-case_list_thumb {
    height: 220px;
  }
}

@media screen and (max-width: 500px) {
  .top-case_list_thumb {
    height: 170px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.top-case_list_thumb.is-active .b-back span::before {
  opacity: 0;
}

.top-case_list_thumb .ttl-set {
  position: relative;
  z-index: 10;
  color: #fff;
}

.top-case_list_thumb .ttl-set .ttl-01::before {
  background-color: rgba(180, 180, 180, 0.6);
}

.top-case_list_thumb.view .b-back span::before {
  -webkit-animation: bgfade 0.5s ease 0.7s forwards;
  animation: bgfade 0.5s ease 0.7s forwards;
}

.top-case_list_thumb.view .ttl-set .ttl-01::before {
  background-color: #fff;
}

.top-case_list_thumb .txt-shadow {
  text-shadow: none;
}

.top-case_list_thumb.is-active .txt-shadow {
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
}

.top-case_list_desc {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

@media screen and (max-width: 500px) {
  .top-case_list_desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.top-case_list_desc.seminar-new dl dd:nth-child(2) {
  margin-bottom: 4px;
}

.top-case_list_desc.seminar-new dl dt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.top-case_list_desc .d-f {
  margin-top: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 160px;
  background-color: #eee;
  position: relative;
  z-index: 3;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 1024px) {
  .top-case_list_desc .d-f {
    margin-top: 16px;
    min-height: 150px;
  }
}

@media screen and (max-width: 768px) {
  .top-case_list_desc .d-f {
    margin-top: 15px;
    min-height: 130px;
  }
}

.top-case_list_desc .d-f:hover {
  background-color: #f2f2f2;
  color: rgba(0, 91, 172, 0.9);
}

.top-case_list_desc .d-f:before {
  right: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
  content: "";
}

@media screen and (max-width: 500px) {
  .top-case_list_desc .d-f:before {
    right: 33.33%;
  }
}

.top-case_list_desc .d-f:after {
  right: 66.66%;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
}

@media screen and (max-width: 500px) {
  .top-case_list_desc .d-f:after {
    content: "";
  }
}

.top-case_list_desc .d-f dl {
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

.top-case_list_desc .d-f dl dt {
  font-weight: bold;
  margin-bottom: 10px;
}

.top-case_list_desc .d-f dl dt:last-child {
  margin-bottom: 0;
}

.top-case_list_desc .d-f dl dd {
  margin-bottom: 10px;
}

.top-case_list_desc .d-f dl dd:last-child {
  margin-bottom: 0;
}

.top-case_list_desc .more-btn {
  margin-top: 12px;
}

@media screen and (max-width: 500px) {
  .top-case_list_desc .more-btn {
    margin-left: 50vw;
  }
}

.top-recruit_link {
  position: relative;
  display: block;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 5%;
}

@media screen and (max-width: 1024px) {
  .top-recruit_link {
    height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .top-recruit_link {
    height: 400px;
  }
}

@media screen and (max-width: 500px) {
  .top-recruit_link {
    height: 250px;
  }
}

.top-recruit_link .more-btn {
  margin-top: 0;
  position: absolute;
  left: 50%;
  bottom: 5%;
}

@media screen and (max-width: 1024px) {
  .top-recruit_link .more-btn {
    bottom: 8%;
  }
}

.top-recruit_banners {
  padding-top: 5%;
}

@media screen and (max-width: 500px) {
  .top-recruit_banners {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.top-recruit_banner {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

@media screen and (max-width: 500px) {
  .top-recruit_banner {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
}

.top-recruit_banner a {
  display: block;
  height: 260px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top-recruit_banner a {
    height: 200px;
  }
}

@media screen and (max-width: 500px) {
  .top-recruit_banner a {
    height: 160px;
  }
}

.top-recruit_banner a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 91, 172, 0.1);
  content: "";
  -webkit-transform: translateX(-103%);
  transform: translateX(-103%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-recruit_banner a:hover::before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.top-recruit_banner a img {
  height: 260px;
}

@media screen and (max-width: 768px) {
  .top-recruit_banner a img {
    height: 200px;
  }
}

@media screen and (max-width: 500px) {
  .top-recruit_banner a img {
    height: 160px;
  }
}

.news_lists {
  padding: 3% 0;
}

.news-list a {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 1024px) {
  .news-list a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 500px) {
  .news-list a {
    padding: 6px 0;
  }
}

.news-list a:hover {
  opacity: 0.8;
  color: #065bab;
}

.news-data {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 470px;
  flex: 0 0 470px;
}

.news-data1 {
  display: inline-block;
  width: 145px;
}

@media screen and (max-width: 768px) {
  .news-data1 {
    width: 130px;
  }
}

@media screen and (max-width: 500px) {
  .news-data1 {
    width: 110px;
  }
}

.news-data2 {
  display: inline-block;
  width: 145px;
}

@media screen and (max-width: 768px) {
  .news-data2 {
    width: 130px;
  }
}

@media screen and (max-width: 500px) {
  .news-data2 {
    width: 110px;
  }
}

.news-data3 {
  display: inline-block;
}

@media screen and (max-width: 500px) {
  .news-data3 {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .news-data {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}

.news-cat {
  display: inline-block;
  padding: 2px 6px;
  background-color: rgba(0, 52, 99, 0.7);
  color: #fff;
  margin-left: 8px;
  width: 140px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .news-cat {
    width: 124px;
  }
}

@media screen and (max-width: 500px) {
  .news-cat {
    width: 100px;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-left: 8px;
  }
}

.news-area {
  display: inline-block;
  padding: 2px 6px;
  background-color: rgba(0, 156, 230, 0.7);
  color: #fff;
  margin-left: 8px;
  width: 140px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .news-area {
    width: 134px;
  }
}

@media screen and (max-width: 768px) {
  .news-area {
    width: 122px;
  }
}

@media screen and (max-width: 500px) {
  .news-area {
    width: 96px;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-left: 2px;
  }
}

.news-date {
  padding: 2px 6px 2px 14px;
}

@media screen and (max-width: 1024px) {
  .news-date {
    padding: 2px 6px 2px 10px;
  }
}

@media screen and (max-width: 500px) {
  .news-date {
    padding: 6px 0 2px 10px;
    font-size: 1.4rem;
    display: block;
  }
}

.news-desc {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 470px);
  flex: 0 0 calc(100% - 470px);
  padding: 2px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 1024px) {
  .news-desc {
    max-width: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 4px 10px;
  }
}

.staff-slider_lists {
  padding: 3% 0;
  position: relative;
  z-index: 3;
}

.staff-slider_list.slick-active .staff-thumb.view .w-back5 span::before {
  -webkit-transform: translateX(103%);
  transform: translateX(103%);
}

.staff-slider_list a {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.staff-slider_list a:hover .staff-thumb::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.staff-slider_list .staff-thumb {
  overflow: hidden;
  position: relative;
}

.staff-slider_list .staff-thumb::before {
  -webkit-transform: translateY(103%);
  transform: translateY(103%);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: rgba(0, 91, 172, 0.5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.staff-slider_list .staff-thumb:after {
  right: 50%;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(180, 180, 180, 0.5);
}

@media screen and (max-width: 500px) {
  .staff-slider_list .staff-thumb:after {
    content: "";
  }
}

.staff-slider_list .staff-thumb.view .w-back5 span::before {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.staff-slider_list .staff-thumb,
.staff-slider_list .staff-thumb img {
  height: 340px;
}

@media screen and (max-width: 1024px) {
  .staff-slider_list .staff-thumb,
  .staff-slider_list .staff-thumb img {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .staff-slider_list .staff-thumb,
  .staff-slider_list .staff-thumb img {
    height: 220px;
  }
}

@media screen and (max-width: 500px) {
  .staff-slider_list .staff-desc {
    padding: 22px 0;
  }
}

.staff-slider_list .staff-thumb img {
  -o-object-position: top;
  object-position: top;
}

.slick-initialized .staff-slider_list.slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service-features_list {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .service-features_list {
    padding: 15px 0;
  }
  .service-features_list .slide-r {
    -webkit-transform: translateX(-120%);
    transform: translateX(-120%);
  }
}

.service-features_list .desc {
  height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3% 0;
}

@media screen and (max-width: 1024px) {
  .service-features_list .desc {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .service-features_list .desc {
    height: 360px;
    padding: 2% 0;
  }
}

@media screen and (max-width: 600px) {
  .service-features_list .desc {
    height: 440px;
  }
}

@media screen and (max-width: 500px) {
  .service-features_list .desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    height: auto;
  }
}

.service-features_list .desc-head {
  padding-right: 40px;
}

@media screen and (max-width: 500px) {
  .service-features_list .desc-head {
    padding-right: 20px;
  }
}

.service-features_list .desc-txt {
  padding-right: 40px;
  margin-top: 20px;
}

@media screen and (max-width: 500px) {
  .service-features_list .desc-txt {
    padding-right: 20px;
  }
}

.service-features_list .desc-txt span {
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.7s;
  transition: 0.5s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.7s;
}

.service-features_list:nth-child(even) .service-features_img {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media screen and (max-width: 500px) {
  .service-features_list:nth-child(even) .service-features_img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-left: auto;
  }
}

.service-features_list:nth-child(even) .desc {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (max-width: 500px) {
  .service-features_list:nth-child(even) .desc {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: auto;
  }
}

.service-features_list h2 {
  font-size: 2rem;
  font-weight: bold;
}

.service-features_list h2.desc-txt span {
  -webkit-transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.3s;
  transition: 0.8s cubic-bezier(0.05, 0.39, 0.76, 0.89) 0.3s;
}

.service-features_img {
  position: relative;
  height: 360px;
}

@media screen and (max-width: 1024px) {
  .service-features_img {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .service-features_img {
    height: 300px;
  }
}

@media screen and (max-width: 500px) {
  .service-features_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    height: 220px;
  }
}

.service-features_img img {
  height: 360px;
}

@media screen and (max-width: 1024px) {
  .service-features_img img {
    height: 320px;
  }
}

@media screen and (max-width: 768px) {
  .service-features_img img {
    height: 300px;
  }
}

@media screen and (max-width: 500px) {
  .service-features_img img {
    height: 220px;
  }
}

.service-who {
  position: relative;
  width: 100%;
  background-color: #eeeeee;
  z-index: 5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5% 0;
}

@media screen and (max-width: 500px) {
  .service-who {
    padding: 5%;
  }
}

.service-who_heading {
  position: relative;
  display: inline-block;
  margin: 0 auto 2.5% auto;
  padding: 10px 6%;
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  max-width: 75%;
}

@media screen and (max-width: 500px) {
  .service-who_heading {
    font-size: 2rem;
    margin: 0 auto 5% auto;
    max-width: 90%;
    padding: 10px 4%;
  }
  .android .service-who_heading {
    max-width: 94%;
  }
}

.service-who_heading .borders01::before {
  top: 0;
  left: 0;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: 0.4s linear;
  transition: 0.4s linear;
}

.service-who_heading .borders01::after {
  top: 0;
  right: 0;
  -webkit-transition: 0.2s linear 0.4s;
  transition: 0.2s linear 0.4s;
  -webkit-transform-origin: top;
  transform-origin: top;
}

.service-who_heading .borders02::before {
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s linear 0.6s;
  transition: 0.4s linear 0.6s;
  -webkit-transform-origin: right;
  transform-origin: right;
}

.service-who_heading .borders02::after {
  bottom: 0;
  left: 0;
  -webkit-transition: 0.2s linear 1s;
  transition: 0.2s linear 1s;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.service-who_heading .borders01::before,
.service-who_heading .borders02::before {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #065bab;
  content: "";
}

.service-who_heading .borders01::after,
.service-who_heading .borders02::after {
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #065bab;
  content: "";
}

.service-who_lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  width: 60%;
  margin: 0 auto auto;
}

@media screen and (max-width: 1024px) {
  .service-who_lists {
    width: 70%;
  }
}

@media screen and (max-width: 500px) {
  .service-who_lists {
    width: 90%;
  }
}

.service-who_list {
  margin: 0 0 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 500px) {
  .service-who_list {
    margin: 0 0 10px;
  }
}

.service-who_list p {
  margin-left: 1.9rem;
  font-size: 1.9rem;
  font-weight: bold;
}

.service-who_list .desc-txt {
  margin: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
}

.service-who_list .desc-txt span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .service-who_list .desc-txt {
    font-size: 1.7rem;
    padding-left: 10px;
  }
}

@media screen and (max-width: 500px) {
  .service-who_list .desc-txt {
    padding-left: 8px;
    padding-right: 8px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 26px);
    flex: 0 0 calc(100% - 26px);
  }
}

.info-news {
  background-color: #eee;
  padding: 20px 0;
}

.info-news.top-info {
  margin-top: -78px;
}
.info-news.top-info.column {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .info-news.top-info {
    margin-top: -112px;
  }
}

@media screen and (max-width: 768px) {
  .info-news.top-info {
    margin-top: -106px;
  }
}

@media screen and (max-width: 500px) {
  .info-news.top-info {
    margin-top: -90px;
    padding-top: 0;
  }
  .android .info-news.top-info {
    margin-top: -95px;
  }
}

.info-news .mv-news {
  position: relative;
  -webkit-transform: none;
  transform: none;
  left: 0;
  bottom: 0;
}

.info-news .mv-news_tag {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10%;
  flex: 0 0 10%;
  height: 100%;
}
.info-news.column .mv-news_tag {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
}
.info-news.column .mv-news_tag span {
  display: block;
}

@media screen and (max-width: 768px) {
  .info-news .mv-news_tag {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8%;
    flex: 0 0 8%;
  }
}

.info-news .mv-news a:nth-child(3) {
  margin-left: auto;
}

.info-news .mv-news a:nth-child(3):hover {
  color: #065bab;
}

.info-news .mv-news a:nth-child(3) span {
  border-left: none;
}

.info-news .news-lists {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90%;
  flex: 0 0 90%;
  position: relative;
}
.info-news.column .news-lists {
  -ms-flex: 0 0 80%;
  flex: 0 0 80%;
}

@media screen and (max-width: 1024px) {
  .info-news .news-lists {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 85%;
    flex: 0 0 85%;
  }
}

@media screen and (max-width: 768px) {
  .info-news .news-lists {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 82%;
    flex: 0 0 82%;
  }
}

@media screen and (max-width: 500px) {
  .info-news .news-lists {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 82%;
    flex: 0 0 82%;
  }
}

.info-news .news-lists::before {
  position: absolute;
  top: 10px;
  left: 0;
  height: calc(100% - 20px);
  width: 1px;
  background-color: #000;
  content: "";
}

@media screen and (max-width: 768px) {
  .info-news .news-desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: none;
    padding-left: 10px;
    padding-top: 4px;
  }
}

.pages-about .link-blue {
  width: 100%;
}

.pages-about li {
  padding-bottom: 60px;
  background-color: #ffffff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .pages-about li {
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 500px) {
  .pages-about li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 30px;
  }
}

.pages-about li:last-child {
  padding-bottom: 0;
  position: relative;
  background-color: #eeeeee;
}

@media screen and (max-width: 500px) {
  .pages-about li:last-child {
    display: none;
  }
}

.pages-about li:last-child::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  content: "";
}

@media screen and (max-width: 768px) {
  .pages-about li .pages-about li:last-child::after {
    height: 45px;
  }
}
.pages-about a:hover + .b-back1 span::before {
  opacity: 0;
}

.expert-reason_head {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 500px) {
  .expert-reason_head {
    width: 87.5%;
    padding-left: 12.5%;
    margin-left: 0;
  }
  .expert-reason_head .slide-r {
    -webkit-transform: translateX(-130%);
    transform: translateX(-130%);
  }
}

.expert-reason_head h2 {
  padding-left: 30px;
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .expert-reason_head h2 {
    padding-left: 20px;
  }
}

@media screen and (max-width: 500px) {
  .expert-reason_head h2 {
    padding-left: 0;
  }
}

.expert-reason_head h2 span {
  font-size: 4.8rem;
  padding: 0 6px;
  line-height: 1.1;
  vertical-align: middle;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .expert-reason_head h2 span {
    font-size: 4rem;
  }
}

.android .expert-reason_head h2 span {
  line-height: 1.2;
}

.expert-reason_head h2 span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  -webkit-transform-origin: left;
  transform-origin: left;
  background-color: #065bab;
  -webkit-transition: 0.8s ease 1.6s;
  transition: 0.8s ease 1.6s;
  content: "";
}

.expert-reason_list {
  margin-bottom: 3%;
}

.expert-reason_list .desc-txt {
  padding-right: 5%;
}

@media screen and (max-width: 500px) {
  .expert-reason_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .expert-reason_list .thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .expert-reason_list .desc {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
}

.expert-reason_list .thumb,
.expert-reason_list .thumb img {
  height: 320px;
}

@media screen and (max-width: 1024px) {
  .expert-reason_list .thumb,
  .expert-reason_list .thumb img {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .expert-reason_list .thumb,
  .expert-reason_list .thumb img {
    height: 250px;
  }
}

@media screen and (max-width: 500px) {
  .expert-reason_list .thumb,
  .expert-reason_list .thumb img {
    height: 200px;
  }
}

.expert-reason_list .desc {
  padding: 3% 0;
  height: 300px;
}

@media screen and (max-width: 500px) {
  .expert-reason_list .desc {
    padding: 25px 0;
    height: auto;
  }
}

.expert-reason_list:nth-child(odd) .desc {
  margin-left: auto;
}

.expert-reason_list:nth-child(even) .thumb {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media screen and (max-width: 500px) {
  .expert-reason_list:nth-child(even) .thumb {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.expert-reason_list:nth-child(even) .desc {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media screen and (max-width: 500px) {
  .expert-reason_list:nth-child(even) .desc {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.bar-blue {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 1px;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 500px) {
  .bar-blue {
    bottom: 6px;
  }
}

.bar-blue > span {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.active .bar-blue > span {
  width: 100%;
  background-color: #065bab;
}

/* Windows対応 */
.win .catch-en,
.win .ttl-01 {
  line-height: 1.5;
}

.ttl {
  display: inline-block;
}

.ttl .ttl-01 {
  display: block;
}
/*# sourceMappingURL=.map */
