@charset "UTF-8";
#mainvisual .group {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#mainvisual:after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  /*mix-blend-mode: overlay;*/
  background: rgb(0, 161, 238);
  background: -moz-linear-gradient(242deg, rgba(0, 161, 238, 0) 0%, rgb(48, 102, 129) 100%);
  background: -webkit-linear-gradient(242deg, rgba(0, 161, 238, 0) 0%, rgb(48, 102, 129) 100%);
  background: linear-gradient(242deg, rgba(0, 161, 238, 0) 0%, rgb(48, 102, 129) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00a1ee",endColorstr="#306681",GradientType=1);
}

#mainvisual .video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /*	width: auto;*/
  width: 100%;
  height: 100%;
}

#mainvisual .video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#mainvisual .area {
  height: 100%;
  position: relative;
  z-index: 2;
}

#mainvisual .slogan {
  font-size: 9rem;
  padding-left: 2em;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.09);
}

#mainvisual .slogan .box {
  display: block;
}

@media screen and (max-width: 770px) {
  #mainvisual .area {
    width: 100%;
    justify-content: center;
  }
  #mainvisual .slogan {
    font-size: 8vw;
    padding: 0 5vw;
    text-align: center;
  }
}
/*--------------------------------------------------------------------*/
section.news {
  position: relative;
  margin-top: -7em;
  right: 0;
  z-index: 3;
}

section.news .area {
  background-color: #fff;
  padding: 3em;
  width: 45vw;
  box-sizing: border-box;
}

section.news .area .heading {
  padding-right: 3em;
  border-right: 1px solid #DCDCDC;
}

section.news .area .container {
  padding: 0 2em;
  width: 70%;
}

section.news .area .container .line {
  margin-bottom: 1.2em;
}

section.news .panel .area .container .line {
  cursor: pointer;
}

section.news .area .container .the_time {
  color: #CCCCCC;
}

section.news .area .container .the_title {
  transition: color 0.3s;
}

section.news .panel .area .container .the_title:hover {
  color: #3387c3;
}

section.news .area .container .the_content {
  margin: 2em 0;
}

section.news .area .expand .button {
  cursor: pointer;
}

@media screen and (max-width: 770px) {
  section.news {
    margin-top: 0;
  }
  section.news .area {
    padding: 6vw 5vw;
    width: auto;
    flex-direction: column;
  }
  section.news .area .heading {
    padding-right: 0;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }
  section.news .area .container {
    padding: 0 0 0 0;
    width: auto;
  }
  section.news .area .expand {
    position: absolute;
    right: 3vw;
    top: 3vw;
  }
  section.news .area .expand .button {
    width: 7vw;
    line-height: 1;
  }
}
/*--------------------------------------------------------------------*/
section.news .modal {
  position: fixed;
  bottom: 0;
  right: 0;
  max-height: 0vh;
  overflow: auto;
  transition: max-height 0.3s ease-in-out;
  z-index: 901;
}

section.news.active .modal {
  max-height: 90vh;
}

section.news .modal .area {
  padding: 5em 3em;
  max-height: 100%;
  overflow: auto;
}

section.news .modal .container .line {
  margin-bottom: 5em;
}

section.news .modal .container .line a {
  color: #208EC7;
  text-decoration: underline;
}

section.news .modal .area .expand .button {
  transform: rotate(180deg);
}

@media screen and (max-width: 770px) {
  section.news .modal .area {
    padding: 4em 5vw;
  }
  section.news .modal .area .heading {
    margin-bottom: 2em;
  }
  section.news .modal .container .line:last-of-type {
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------------------*/
section.introduction .inner {
  padding: 3em 4vw;
}

section.introduction .message {
  padding-right: 7%;
}

section.introduction .title {
  margin-bottom: 1.5em;
  line-height: 1.2;
  padding-left: 1.2em;
  border-left: 4px solid #208EC7;
}

section.introduction .index {
  font-size: 4rem;
  margin-bottom: 1em;
  white-space: nowrap;
}

section.introduction .text p {
  margin-bottom: 2em;
}

@media screen and (max-width: 770px) {
  section.introduction .area {
    flex-direction: column-reverse;
  }
  section.introduction .inner {
    padding: 2em 5vw;
  }
  section.introduction .message {
    padding-right: 0;
  }
  section.introduction .index {
    font-size: 8vw;
    white-space: normal;
  }
}
/*--------------------------------------------------------------------*/
section.introduction .message,
section.introduction .image {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 2s, opacity 2s;
}

section.introduction .image {
  transition-delay: 0.4s;
}

section.introduction.-anim-start .message,
section.introduction.-anim-start .image {
  transform: translateY(0px);
  opacity: 1;
}

@media screen and (max-width: 770px) {
  section.introduction .message {
    transition-delay: 0.4s;
  }
  section.introduction .image {
    transition-delay: 0s;
    margin-bottom: 3em;
  }
}
/*--------------------------------------------------------------------*/
section.introduction .image {
  position: relative;
  width: 874px;
  height: 583px;
  max-width: 46vw;
}

section.introduction .image img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 770px) {
  section.introduction .image {
    width: 100%;
    height: auto;
    max-width: none;
  }
  section.introduction .image img {
    position: static;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
/*--------------------------------------------------------------------*/
section.thoughts {
  padding: 120px 0;
  position: relative;
  /*overflow: hidden;*/
}

section.thoughts .heading {
  padding-top: 5em;
  margin-top: -5em;
  padding-right: 4vw;
  position: sticky;
  top: 0;
}

section.thoughts .heading .commonIndex {
  margin-bottom: 4em;
}

section.thoughts .heading .commonIndex .en:after {
  width: 70%;
  height: 120%;
  background-image: url("../img/dots.png");
  background-repeat: repeat;
  background-position: left center;
  background-size: auto;
  top: 0.5em;
  left: 2.5em;
  z-index: 0;
}

section.thoughts .heading .commonIndex .en span {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 770px) {
  section.thoughts {
    padding: 2em 5vw;
    padding-right: 10vw;
  }
  section.thoughts .heading {
    padding-top: 0;
    margin-top: 0;
    padding-right: 0;
    position: static;
    top: 0;
  }
  section.thoughts .heading .commonIndex {
    margin-bottom: 2.5em;
  }
  section.thoughts .heading .commonIndex .en:after {
    background-image: url("../img/dots@2x.png");
    background-size: 8px;
  }
  section.thoughts .heading .commonIndex .en span {
    position: relative;
    z-index: 1;
  }
}
/*--------------------------------------------------------------------*/
section.thoughts .heading.-revealer .en,
section.thoughts .heading.-revealer .ja,
section.thoughts .heading.-revealer .description {
  opacity: 0;
  transition: opacity 3s;
}

section.thoughts .heading.-revealer.-anim-start .en,
section.thoughts .heading.-revealer.-anim-start .ja,
section.thoughts .heading.-revealer.-anim-start .description {
  opacity: 1;
}

section.thoughts .heading.-revealer.-anim-start .en {
  transition-delay: 0s;
}

section.thoughts .heading.-revealer.-anim-start .ja {
  transition-delay: 0.3s;
}

section.thoughts .heading.-revealer.-anim-start .description {
  transition-delay: 0.6s;
}

/*--------------------------------------------------------------------*/
section.thoughts .lists {
  width: 52.5%;
}

section.thoughts .lists .box {
  margin-bottom: 3.5em;
}

section.thoughts .lists .image {
  overflow: hidden;
}

section.thoughts .lists .image img {
  transition: transform 7s;
}

section.thoughts .lists .image:hover img {
  transform: scale(1.1);
}

section.thoughts .lists .num {
  padding-right: 1.5em;
}

section.thoughts .lists .title {
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding: 1em 5em 1em 0;
  margin-top: -4em;
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0.9416141457) 87%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0.9416141457) 87%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9416141457) 87%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

section.thoughts .lists .title .label .en {
  margin-bottom: 1em;
}

section.thoughts .lists .title .label .ja {
  font-size: 3rem;
}

@media screen and (max-width: 770px) {
  section.thoughts .lists {
    width: auto;
  }
  section.thoughts .lists .title .label .ja {
    font-size: 1.8rem;
  }
  section.thoughts .lists .title .num img {
    width: auto;
    height: 2em;
  }
}
/*--------------------------------------------------------------------*/
section.thoughts .lists .box.-revealer {
  transform: translateY(3%);
  opacity: 0;
  transition: opacity 2s, transform 1s;
}

section.thoughts .lists .box.-revealer.-anim-start {
  transform: translateY(0%);
  opacity: 2;
}

/*--------------------------------------------------------------------*/
section.thoughts .-parent {
  position: relative;
}

section.thoughts .group {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  position: absolute;
  height: 100%;
  right: -8vw;
  top: 0;
}

section.thoughts .group .title {
  transform: rotate(90deg);
}

section.thoughts .group .label {
  transform: rotate(90deg) translateX(40%);
}

section.thoughts .group .line {
  height: calc(100% - 8em);
  width: 1px;
  background-color: #ccc;
  margin: 0 auto;
}

@media screen and (max-width: 1520px) {
  section.thoughts .group {
    right: -5vw;
  }
}
@media screen and (max-width: 1420px) {
  section.thoughts .group {
    display: none;
  }
}
@media screen and (max-width: 770px) {
  section.thoughts .group {
    width: 1em;
    right: -7vw;
  }
  section.thoughts .group .label {
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------------*/
section.mission {
  overflow: hidden;
  padding-bottom: 100px;
}

section.mission .head {
  height: 599px;
  overflow: hidden;
}

section.mission .head img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  transition: transform 7s;
}

section.mission .head:hover img {
  transform: scale(1.1);
}

section.mission .panel {
  width: 742px;
  box-sizing: border-box;
  position: relative;
}

section.mission .panel .paper {
  /*position: absolute;*/
  top: 50%;
  left: 0;
  margin-top: -15em;
  /*transform: translateY(-40%);*/
  background-color: #fff;
  padding: 120px 50px 70px 122px;
}

section.mission .panel .paper .heading {
  margin-bottom: 3em;
}

section.mission .panel .paper .message {
  margin-bottom: 2em;
}

@media screen and (max-width: 770px) {
  section.mission {
    padding-bottom: 25px;
  }
  section.mission .head {
    height: 300px;
  }
  section.mission .panel {
    width: 100%;
    padding: 3vw;
  }
  section.mission .panel .paper {
    margin-top: -7em;
    padding: 3em 6vw;
  }
  section.mission .panel .paper {
    margin-top: -7em;
    padding: 3em 6vw;
  }
  section.mission .commonIndex .en {
    font-size: 2em;
  }
  section.mission .panel .message {
    font-size: 2.1rem !important;
  }
}
/*--------------------------------------------------------------------*/
section.knowledge {
  margin-bottom: 100px;
}

section.knowledge .heading {
  padding: 80px 0 50px 0;
}

section.knowledge .heading::before {
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  background-color: #F8F8F8;
}

section.knowledge .heading .commonIndex {
  position: relative;
  z-index: 2;
}

section.knowledge .container {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

section.knowledge article.item {
  width: 28.33%;
  margin: 2.5%;
}

section.knowledge article.item a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

section.knowledge article.item .thumbnail .visible {
  padding-top: 54.5454%;
}

section.knowledge article.item .the_time {
  margin: 0.6em 0;
}

section.knowledge article.item .the_time .label {
  color: #fff;
  background-color: #208EC7;
  padding: 0.5em 0.7em;
  display: inline-block;
  font-size: 85%;
}

section.knowledge article.item .the_title {
  margin-bottom: 0.5em;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #208EC7;
  font-weight: 500;
  font-size: 110%;
}

section.knowledge article.item .the_excerpt {
  line-height: 2;
  height: 4em;
  overflow: hidden;
  margin-bottom: 1em;
}

section.knowledge article.item .more {
  margin-top: auto;
}

section.knowledge article.item .more .label {
  font-size: 85%;
  border-bottom: 1px solid #707070;
  margin-bottom: 2px;
}

section.knowledge article.item .more .label::before {
  top: 3px;
}

@media screen and (max-width: 520px) {
  section.knowledge {
    margin-bottom: 50px;
    padding: 5vw 6vw;
  }
  section.knowledge .heading {
    padding: 40px 0 30px 0;
  }
  section.knowledge .heading::before {
    height: 100%;
  }
  section.knowledge .heading .commonIndex .en {
    font-size: 3rem;
  }
  section.knowledge .container {
    margin-bottom: 30px;
  }
  section.knowledge article.item {
    width: 46%;
    margin: 6% 2%;
  }
  section.knowledge article.item .the_title {
    font-size: 100%;
  }
  section.knowledge article.item .the_excerpt {
    height: 7.2em;
    font-size: 90%;
    line-height: 1.8;
  }
}
/*--------------------------------------------------------------------*/
section.reviews {
  padding-left: calc((100vw - 1360px) / 2);
  overflow: hidden;
  padding-bottom: 150px;
}

section.reviews .heading {
  margin-bottom: 70px;
}

section.reviews .heading .commonIndex .en {
  font-size: 5rem;
}

section.reviews .heading .description {
  padding: 1.5em 0;
  padding-left: 4em;
  border-left: 1px solid #ccc;
  margin-left: 4em;
}

@media screen and (max-width: 770px) {
  section.reviews {
    padding-left: 0;
    padding: 2em 5vw;
    padding-bottom: 75px;
  }
  section.reviews .heading {
    margin-bottom: 2.5em;
  }
  section.reviews .heading .commonIndex {
    margin-bottom: 1em;
  }
  section.reviews .heading .commonIndex .en {
    font-size: 3rem;
  }
  section.reviews .heading .description {
    padding: 0;
    padding-left: 0;
    border-left: 0;
    margin-left: 0;
    padding-top: 1em;
    border-top: 1px solid #ccc;
    margin-top: 1em;
  }
}
/*--------------------------------------------------------------------*/
section.reviews .swiper-container {
  width: 590px;
  margin: 0;
  overflow: visible;
}

@media screen and (max-width: 770px) {
  section.reviews .swiper-container {
    min-width: 0;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    overflow: visible;
  }
  section.reviews .swiper-wrapper {
    display: block;
  }
}
/*--------------------------------------------------------------------*/
section.reviews .lists .wrap {
  width: 100%;
  box-sizing: border-box;
}

section.reviews .lists .item {
  width: 31%;
  min-width: 0;
  padding-right: 2%;
}

section.reviews .lists .item .card {
  padding-right: 0;
}

section.reviews .lists .item .card .image img {
  width: 100%;
}

section.reviews .lists .num {
  padding-right: 1.5em;
  display: none;
}

section.reviews .lists .title {
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding: 1em 0;
  /*margin-top: -4em;*/
}

section.reviews .lists .title .label .en {
  margin-bottom: 1em;
}

section.reviews .lists .title .label .ja {
  font-size: 2.4rem;
}

section.reviews .lists .title .label .ja .name {
  /*margin-left: 2em;*/
  padding-bottom: 0.5em;
  margin-top: 0.5em;
}

section.reviews .lists .title .label .whome {
  padding: 0.5em 0;
  margin-top: 0.5em;
  border-top: 1px solid #e8e8e8;
}

section.reviews .lists .title .label .whome .company {
  margin-bottom: 0.1em;
}

section.reviews .lists .title .label .url {
  padding-bottom: 0.7em;
  border-bottom: 1px solid #e8e8e8;
}

section.reviews .lists .title .label .url a {
  text-decoration: underline;
}

@media screen and (max-width: 770px) {
  section.reviews .lists .item {
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    max-width: none;
    margin-bottom: 8vw;
  }
  section.reviews .lists .item .card {
    padding-right: 0;
  }
  section.reviews .lists .num {
    padding-right: 1.5em;
  }
  section.reviews .lists .num img {
    width: auto;
    height: 2em;
  }
  section.reviews .lists .title {
    padding: 1em 0;
  }
  section.reviews .lists .title .label .en {
    margin-bottom: 0.3em;
    font-size: 1rem !important;
  }
  section.reviews .lists .title .label .ja {
    font-size: 1.8rem;
  }
}
/*--------------------------------------------------------------------*/
section.reviews nav {
  padding: 3em 0;
  display: none;
}

section.reviews nav .button {
  width: 45px;
  height: 45px;
  background-color: #fff;
  box-shadow: 4px 3px 12px rgba(0, 0, 0, 0.1);
  margin: 3px;
  transition: top 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

section.reviews nav .button:hover {
  position: relative;
  top: 2px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
}

section.reviews nav .button .ico_arrow {
  padding: 0;
  width: 100%;
  height: 100%;
}

section.reviews nav .button .ico_arrow:before {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 6px;
}

section.reviews nav .button.prev .ico_arrow:before {
  transform: translate(-50%, -50%) rotate(225deg);
}

@media screen and (max-width: 770px) {
  section.reviews nav {
    display: none;
  }
}
/*--------------------------------------------------------------------*/
section.recruit {
  background-image: url("../img/home/recruit_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px;
  margin-bottom: 100px;
}

section.recruit .banner {
  background-color: rgba(56, 73, 81, 0.82);
  color: #fff;
  padding: 100px;
}

section.recruit .banner .description {
  margin-left: 5em;
}

section.recruit .banner .description .commonLink a {
  border-color: #fff;
}

section.recruit .banner .description .commonLink a .ico_arrow:before {
  border-color: #fff;
}

section.recruit .banner .description .commonLink a:hover {
  border-color: #ccc;
  background-color: #fff;
  color: #000;
  opacity: 1;
}

section.recruit .banner .description .commonLink a:hover .ico_arrow:before {
  border-color: #000;
}

@media screen and (max-width: 770px) {
  section.recruit {
    padding: 15px;
    background-size: cover;
    background-attachment: scroll;
    margin-bottom: 50px;
  }
  section.recruit .banner {
    padding: 10vw;
  }
  section.recruit .banner .heading {
    margin-bottom: 2em;
  }
  section.recruit .banner .description {
    margin-left: 0;
  }
}
/*--------------------------------------------------------------------*/
section.contact .form {
  border-top: 1px solid #ccc;
  padding: 100px 0;
}

section.contact .heading {
  margin-bottom: 2.5em;
}

section.contact .introduction {
  margin-bottom: 2.5em;
}

section.contact .table table {
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 1em;
}

section.contact .table table th {
  font-weight: normal;
  width: 12em;
}

section.contact .table input[type=text],
section.contact .table input[type=email],
section.contact .table textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7em 1.2em;
  border: 1px solid #D2D2D2;
  background-color: #F8F8F8;
  font-family: inherit;
}

section.contact .required {
  display: inline-block;
}

section.contact .required:after {
  content: "*";
  right: -0.7em;
  top: 0;
  color: #f00;
}

@media screen and (max-width: 770px) {
  section.contact .table table th,
  section.contact .table table td {
    display: block;
  }
  section.contact .form {
    /* 固定ヘッダー(ロゴ)分の上余白を確保（タイトル重なり防止） */
    padding: 100px 5vw 2em;
  }
}
/*--------------------------------------------------------------------*/
section.contact .send {
  padding: 3em 0;
}

section.contact .send .submit {
  display: inline-block;
  border: 1px solid #D2D2D2;
  background-color: #F8F8F8;
  padding-right: 0;
  border-radius: 3em;
}

section.contact .send .submit:before {
  right: 3em;
  transition: right 0.3s;
}

section.contact .send .submit:hover:before {
  right: 2em;
}

section.contact .table input[type=submit] {
  padding: 0.7em 6.2em;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;
  color: #000;
}

/*--------------------------------------------------------------------*/
.wpcf7-not-valid-tip {
  position: absolute;
  right: 1.3em;
  top: 50%;
  font-size: 1.1rem;
  transform: translateY(-50%);
}

.height .wpcf7-not-valid-tip {
  top: 1em;
  transform: translateY(0%);
}

.wpcf7 .ajax-loader {
  position: absolute;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
}

section.contact .table input[type=text].wpcf7-not-valid,
section.contact .table input[type=email].wpcf7-not-valid,
section.contact .table textarea.wpcf7-not-valid {
  border: 1px solid #de5858;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1em 2em;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.1);
  border-width: 1px;
  border-radius: 3em;
}

.wpcf7-list-item {
  margin: 0 1em 0 0;
}

/*--------------------------------------------------------------------*/
.pdf_link a {
  font-size: 15px;
  line-height: 1.4;
  position: relative;
  padding: 0.8em 3em;
  border: 1px solid #208EC7;
  border-radius: 3em;
  text-decoration: none;
  color: #208EC7;
}

@media screen and (max-width: 770px) {
  .pdf_link a {
    font-size: 13px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
  }
}
.pdf_link a br {
  display: none;
}

@media screen and (max-width: 770px) {
  .pdf_link a br {
    display: block;
  }
}
.pdf_link a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../img/ico_pdf_blue.svg) no-repeat;
  background-size: cover;
  margin-right: 4px;
  position: absolute;
  top: 13px;
  right: 10px;
}

@media screen and (max-width: 770px) {
  .pdf_link a::before {
    top: 17px;
  }
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.red {
  color: #f00;
}
