@charset "UTF-8";
/*
サイトトップページ
Version: 1.1.0
Update: 2024-08-30
*/
footer {
  border-top-width: 0;
}

.topImage {
  position: relative;
  height: 47vw;
}

@media screen and (max-width: 767px) {
  .topImage {
    height: auto;
  }
}

.topImage .slider {
  float: right;
  width: 75%;
  max-height: 47vw;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .topImage .slider {
    float: none;
    width: 100%;
    max-height: 61vw;
    padding-left: 20px;
  }
}

.topImage .slider .slick-img {
  position: relative;
  height: 47vw;
  max-height: 800px;
}

@media screen and (max-width: 767px) {
  .topImage .slider .slick-img {
    height: 61vw;
  }
}

.topImage .slider .slick-img img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: auto;
  height: 47vw;
  max-height: 800px;
}

@media screen and (max-width: 767px) {
  .topImage .slider .slick-img img {
    max-width: none;
    height: 61vw;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
    /* 拡大率 */
  }
}

.topImage .slider .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.topImage .slider .slick-arrow {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  font-size: 0;
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .topImage .slider .slick-arrow {
    display: none !important;
  }
}

.topImage .slider .slick-arrow.slick-prev {
  left: 0;
}

.topImage .slider .slick-arrow.slick-next {
  right: 0;
}

.topImage .slider .slick-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 42px;
  height: 42px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.topImage .slider .slick-arrow.slick-prev::after {
  margin-left: -10px;
  transform: rotate(-135deg);
}

.topImage .slider .slick-dots {
  position: absolute;
  top: 50%;
  left: calc(-33.3% + 100px);
  z-index: 100;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 3s 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .topImage .slider .slick-dots {
    top: auto;
    left: 20px;
    bottom: -160px;
  }
}

.topImage .slider .slick-dots li {
  display: inline-block;
  padding: 0 1px;
}

.topImage .slider .slick-dots li button {
  padding: 0;
  margin-right: 9px;
  outline: none;
  appearance: none;
  border: none;
  cursor: pointer;
  width: 18px;
  height: 18px;
  font-size: 0;
  background-color: #b2d2e9;
  border-radius: 9px;
  transition-duration: 1s;
}

@media screen and (max-width: 767px) {
  .topImage .slider .slick-dots li button {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }
}

.topImage .slider .slick-dots li.slick-active button {
  background-color: #0068b6;
}

.topImage .copy {
  position: absolute;
  top: 40px;
  left: 100px;
  z-index: 100;
  color: #0068b6;
  font-family: "Noto Sans Black", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 3.25vw;
  line-height: 1.75;
  text-align: left;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 3s 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

@media screen and (max-width: 767px) {
  .topImage .copy {
    position: static;
    top: auto;
    left: auto;
    padding: 10px 20px 30px;
    font-size: 2.2rem;
    text-align: left;
  }
}

.topImage.is-show .copy {
  opacity: 1;
  transform: translateX(0);
}

.topImage.is-show .slick-dots {
  opacity: 1;
  transform: translateX(0);
}

.content .container {
  width: 1200px;
}

@media screen and (max-width: 767px) {
  .content .container {
    width: 100%;
  }
}

.content section {
  padding: 100px 0;
  background-color: transparent !important;
}

@media screen and (max-width: 767px) {
  .content section {
    padding: 40px 0;
  }
}

.content section .heading .en {
  padding-bottom: 30px;
  font-size: 4.5em;
}

@media screen and (max-width: 767px) {
  .content section .heading .en {
    padding-bottom: 15px;
    font-size: 2.3em;
  }
}

/* トピックス */
#topics .container {
  overflow: hidden;
}

#topics .container .heading {
  float: left;
  width: 300px;
  padding-top: 25px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #topics .container .heading {
    float: none;
    width: 100%;
    padding-top: 0;
    padding-bottom: 10px;
  }
}

#topics .container .heading .en {
  padding-bottom: 10px;
}

#topics .container .topicsList {
  float: right;
  width: 760px;
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 767px) {
  #topics .container .topicsList {
    float: none;
    width: 100%;
  }
}

#topics .container .topicsLink {
  clear: left;
  float: left;
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  #topics .container .topicsLink {
    float: none;
    padding-top: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  #topics .container .topicsLink a {
    width: 90%;
  }
}

/* 事業紹介 */
#business {
  position: relative;
  padding: 200px 0 80px;
}

@media screen and (max-width: 767px) {
  #business {
    padding: 20px 0 40px;
  }
}

#business .businessImage {
  position: absolute;
  top: 60px;
  left: 50%;
  margin-left: -860px;
  z-index: 11;
}

@media screen and (max-width: 767px) {
  #business .businessImage {
    position: static;
    top: auto;
    left: auto;
    margin-right: 20px;
    margin-left: -20px;
  }
}

#business .businessImage.imageb {
  top: 100px;
  margin-left: -820px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  #business .businessImage.imageb {
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: -1;
    margin-left: 0;
  }
}

#business .businessTexts {
  padding: 80px 0 100px;
  padding-left: 660px;
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #business .businessTexts {
    width: 100%;
    padding: 40px 0 50px;
    padding-left: 50px;
  }
}

#business .businessTexts .heading {
  text-align: left;
}

#business .businessTexts .heading .en,
#business .businessTexts .heading .jp {
  color: #fff;
}

#business .businessTexts .heading .en {
  position: relative;
}

#business .businessTexts .heading .en::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: -200px;
  right: 0;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  #business .businessTexts .heading .en::before {
    left: 0;
    right: -20px;
    bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  #business .businessTexts .comment {
    font-size: 85%;
  }
}

@media screen and (max-width: 767px) {
  #business .businessTexts .pageLink {
    padding-right: 20px;
    text-align: center;
  }
}

#business .businessTexts .pageLink a {
  color: #0068b6;
  background-image: none;
  background-color: #fff;
}

#business .businessTexts .pageLink a::after {
  border-top: 2px solid #0068b6;
  border-right: 2px solid #0068b6;
}

#business .contentPageList {
  margin: 0 -60px;
  padding-top: 240px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #business .contentPageList {
    margin: 0 -20px;
    padding-top: 0;
  }
}

#business .contentPageList > li {
  position: relative;
  float: left;
  width: 50%;
  padding: 40px 60px;
}

@media screen and (max-width: 767px) {
  #business .contentPageList > li {
    float: none;
    width: 100%;
    padding: 25px 0 0;
    padding-left: 50px;
  }
}

#business .contentPageList > li a {
  display: block;
  color: #0068b6;
}

#business .contentPageList > li a::before {
  content: "";
  position: absolute;
  display: block;
  right: 79px;
  bottom: 76px;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  #business .contentPageList > li a::before {
    right: 32px;
    bottom: 15px;
    width: 12px;
    height: 12px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}

#business .contentPageList > li a::after {
  content: "";
  position: absolute;
  display: block;
  right: 60px;
  bottom: 60px;
  z-index: 1;
  width: 50px;
  height: 50px;
  background-color: #0068b6;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  #business .contentPageList > li a::after {
    right: 20px;
    bottom: 5px;
    width: 32px;
    height: 32px;
  }
}

#business .contentPageList > li .heading.en {
  position: absolute;
  display: inline-block;
  top: 40px;
  left: 50px;
  color: #0068b6;
  font-family: "Graphie SemiBold", "Noto Sans Bold", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 3.2rem;
  text-align: left;
  transform: rotate(90deg);
  transform-origin: 0 0;
}

@media screen and (max-width: 767px) {
  #business .contentPageList > li .heading.en {
    top: 25px;
    left: 40px;
    font-size: 1.6rem;
  }
}

#business .contentPageList > li .heading.jp {
  padding-top: 20px;
  font-family: "Noto Sans Bold", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 3.2rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #business .contentPageList > li .heading.jp {
    padding-top: 15px;
    padding-bottom: 10px;
    font-size: 2rem;
  }
}

#business .contentPageList > li img {
  max-width: 100%;
}

#business::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 0;
  right: 100%;
  bottom: 0;
  background-color: #e5f0f8;
  z-index: -3;
  transition-duration: 0.3s;
}

@media screen and (max-width: 767px) {
  #business::before {
    top: 120px;
  }
}

#business::after {
  content: "";
  position: absolute;
  top: 200px;
  right: 0;
  width: 0;
  height: 520px;
  background-image: linear-gradient(90deg, #408ec8, #0068b6);
  z-index: -2;
  transition-duration: 0.3s;
  transition-delay: 0.6s;
}

@media screen and (max-width: 767px) {
  #business::after {
    top: 260px;
    left: 100%;
    height: 370px;
  }
}

#business.is-show::before {
  right: 0;
}

@media screen and (max-width: 767px) {
  #business.is-show::before {
    right: 0;
  }
}

#business.is-show::after {
  width: 1680px;
}

@media screen and (max-width: 767px) {
  #business.is-show::after {
    left: 50px;
    width: auto;
  }
}

/* わたしたちの取組み */
#challenge {
  position: relative;
}

#challenge .challengeTexts {
  display: inline-block;
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #challenge .challengeTexts {
    display: block;
  }
}

#challenge .challengeTexts .heading {
  text-align: left;
}

#challenge .challengeTexts .heading .en,
#challenge .challengeTexts .heading .jp {
  color: #fff;
}

#challenge .challengeTexts .heading .en {
  position: relative;
}

#challenge .challengeTexts .heading .en::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: -600px;
  right: 0;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  #challenge .challengeTexts .heading .en::before {
    left: 0;
    right: -20px;
    bottom: 8px;
  }
}

#challenge .challengeImageBox {
  position: relative;
  overflow: hidden;
}

#challenge .challengeImageBox .challengeImage {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#challenge .challengeImageBox .challengeImage img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

#challenge .challengeImageBox .contentPageList {
  padding: 80px 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList {
    padding: 40px 0;
  }
}

#challenge .challengeImageBox .contentPageList > li {
  float: left;
  width: 50%;
  border: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList > li {
    float: none;
    width: 100%;
  }
}

#challenge .challengeImageBox .contentPageList > li:first-child {
  border-right-width: 0;
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList > li:first-child {
    border-right-width: 1px;
    border-bottom-width: 0;
  }
}

#challenge .challengeImageBox .contentPageList > li a {
  position: relative;
  display: block;
  padding: 160px 50px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList > li a {
    padding: 90px 25px;
  }
}

#challenge .challengeImageBox .contentPageList > li a::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 44px;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border-top: 4px solid #0068b6;
  border-right: 4px solid #0068b6;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList > li a::before {
    right: 26px;
    margin-top: -6px;
    width: 12px;
    height: 12px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}

#challenge .challengeImageBox .contentPageList > li a::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 25px;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background-color: #fff;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList > li a::after {
    right: 15px;
    margin-top: -15px;
    width: 30px;
    height: 30px;
  }
}

#challenge .challengeImageBox .contentPageList > li a .heading {
  text-align: left;
}

#challenge .challengeImageBox .contentPageList > li a .heading.en {
  padding: 0;
  font-family: "Graphie SemiBold", "Noto Sans Bold", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList > li a .heading.en {
    font-size: 1.6rem;
  }
}

#challenge .challengeImageBox .contentPageList > li a .heading.jp {
  padding: 20px 0 0;
  font-family: "Noto Sans Bold", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 3.8rem;
}

@media screen and (max-width: 767px) {
  #challenge .challengeImageBox .contentPageList > li a .heading.jp {
    padding-top: 15px;
    font-size: 2rem;
  }
}

#challenge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  background-color: #e5f0f8;
  z-index: -3;
  transition-duration: 0.3s;
}

#challenge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 100px;
  background-image: linear-gradient(90deg, #408ec8, #0068b6);
  z-index: -1;
  transition-duration: 0.3s;
}

#challenge.is-show::before {
  left: 0;
}

#challenge.is-show::after {
  left: 0;
}

/* 採用情報 */
#recruit {
  position: relative;
}

#recruit .recruitTexts {
  text-align: center;
  transition-duration: 0.3s;
}

#recruit .recruitTexts .heading {
  display: inline-block;
}

#recruit .recruitTexts .heading .en,
#recruit .recruitTexts .heading .jp {
  color: #fff;
}

#recruit .recruitTexts .heading .en {
  position: relative;
}

#recruit .recruitTexts .heading .en::before {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  #recruit .recruitTexts .heading .en::before {
    right: 0;
    width: auto;
    bottom: 8px;
  }
}

#recruit .recruitTexts .pageLink a {
  color: #0068b6;
  background-color: #fff;
  background-image: none;
}

#recruit .recruitTexts .pageLink a::after {
  border-top-color: #0068b6;
  border-right-color: #0068b6;
}

#recruit .recruitImage {
  padding-top: 80px;
}

@media screen and (max-width: 767px) {
  #recruit .recruitImage {
    padding-top: 40px;
  }
}

#recruit .recruitImage .loop_wrap {
  display: flex;
  height: auto;
  overflow: hidden;
  width: 3840px;
}

@media screen and (max-width: 767px) {
  #recruit .recruitImage .loop_wrap {
    height: 180px;
  }
  #recruit .recruitImage .loop_wrap img {
    max-width: 1920px;
    width: auto !important;
  }
}

#recruit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, #408ec8, #0068b6);
  z-index: -1;
  transition-duration: 0.3s;
}

#recruit.is-show::after {
  left: 0;
}

/* お問い合わせ */
#contact {
  position: relative;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  #contact {
    padding: 50px 0 40px;
  }
}

#contact .contactTexts {
  width: 600px;
  margin-left: 600px;
  padding: 60px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #contact .contactTexts {
    width: 100%;
    margin-left: 0;
    padding: 50px 0;
  }
}

#contact .contactTexts .heading .en {
  padding-bottom: 10px;
}

#contact .contactTexts .comment {
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  #contact .contactTexts .comment {
    text-align: center;
  }
}

#contact .contactTexts .pageLink {
  text-align: center;
}

#contact .contactTexts .pageLink a {
  padding: 10px 80px;
}

#contact .contactTexts .pageLink a::after {
  display: none;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
  background-color: #e5f0f8;
  z-index: -3;
  transition-duration: 0.3s;
}

#contact::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 100%;
  right: 0;
  bottom: 100px;
  background-color: #fff;
  z-index: -2;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}

@media screen and (max-width: 767px) {
  #contact::after {
    top: 330px;
    bottom: 40px;
  }
}

#contact .companyInformation {
  position: absolute;
  top: 160px;
  left: 40px;
  width: 330px;
  transition-duration: 0.3s;
}

@media screen and (max-width: 767px) {
  #contact .companyInformation {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    padding-bottom: 60px;
  }
}

#contact .companyInformation img {
  max-width: 100%;
}

#contact .companyInformation .name {
  padding-bottom: 20px;
}

#contact .companyInformation .address {
  padding-bottom: 10px;
}

#contact .companyInformation .tel,
#contact .companyInformation .fax,
#contact .companyInformation .mail {
  padding: 10px 0;
  padding-left: 40px;
  color: #0068b6;
  font-family: "Roboto Bold";
  font-size: 2.2rem;
  line-height: 1;
  background: no-repeat center left;
  background-size: 30px 30px;
}

@media screen and (max-width: 767px) {
  #contact .companyInformation .tel,
  #contact .companyInformation .fax,
  #contact .companyInformation .mail {
    font-size: 2.5rem;
  }
}

#contact .companyInformation .tel {
  background-image: url(../img/icon_tel.png);
}

#contact .companyInformation .fax {
  background-image: url(../img/icon_fax.png);
}

#contact .companyInformation .mail {
  background-image: url(../img/icon_mail.png);
}

#contact.is-show::before {
  right: 0;
}

#contact.is-show::after {
  left: 36%;
}

@media screen and (max-width: 767px) {
  #contact.is-show::after {
    left: 0;
  }
}
