@charset "UTF-8";
@media only screen and (max-width: 1023px) {
  .p-home-first-view-sec {
    padding-top: 20px;
    padding-bottom: 134px;
  }
}

.swiperFv__wrap {
  height: 100%;
}
.swiperFv__wrap .swiperFv {
  height: 100%;
  border-radius: 10px;
}
.swiperFv__wrap .swiperFv .swiper-slide {
  position: relative;
}

.swiperFv__img--wrap {
  overflow: hidden;
  margin: auto;
  width: 100%;
  height: 100%;
}

.swiperFv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-first-view {
  height: calc(var(--vh, 1vh) * 100 - 120px);
  margin: 0 50px;
  max-width: 125vw;
  position: relative;
  /*高さ・位置・透過が変化して線が上から下に動く*/
  /*高さ・位置・透過が変化して線が上から下に動く*/
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view {
    height: calc(var(--vh, 1vh) * 100 - 70px - 20px - 20px - 114px);
    margin: 0 22px;
  }
}
.p-home-first-view__txt-cntr {
  color: #fff;
  position: absolute;
  bottom: 190px;
  left: 60px;
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__txt-cntr {
    bottom: 30px;
    left: 30px;
    margin-right: 30px;
  }
}
.p-home-first-view__ttl-en {
  font-size: 22.5px;
  font-weight: 700;
  text-shadow: #999999 1px 0 5px;
}
@media only screen and (max-width: 1600px) {
  .p-home-first-view__ttl-en {
    font-size: 18px;
  }
}
.p-home-first-view__ttl {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.125;
  text-shadow: #999999 1px 0 5px;
}
@media only screen and (max-width: 1600px) {
  .p-home-first-view__ttl {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__ttl {
    font-size: 24px;
  }
}
.p-home-first-view__link {
  margin-top: 4px;
  display: inline-block;
  color: #fff;
  font-size: 22.5px;
  font-weight: 700;
  line-height: 2;
  text-shadow: #999999 1px 0 5px;
  position: relative;
  padding-left: 42.5px;
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-home-first-view__link:hover {
    color: #004098;
  }
  .p-home-first-view__link:hover::before {
    background-color: #004098;
  }
}
@media only screen and (max-width: 1600px) {
  .p-home-first-view__link {
    font-size: 18px;
    padding-left: 34px;
  }
}
.p-home-first-view__link::before {
  transition: 0.5s;
  position: absolute;
  content: "";
  -webkit-mask: url(/media/images/component/svg-arrow-right.svg) no-repeat center/contain;
          mask: url(/media/images/component/svg-arrow-right.svg) no-repeat center/contain;
  width: 25px;
  height: 25px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 1600px) {
  .p-home-first-view__link::before {
    width: 20px;
    height: 20px;
  }
}
.p-home-first-view__link-txt {
  color: #fff;
  font-size: 22.5px;
  font-weight: 700;
  line-height: 2;
  text-shadow: #999999 1px 0 5px;
  position: relative;
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-home-first-view__link-txt:hover {
    color: #004098;
  }
  .p-home-first-view__link-txt:hover::after {
    background-color: #004098;
  }
}
@media only screen and (max-width: 1600px) {
  .p-home-first-view__link-txt {
    font-size: 18px;
  }
}
.p-home-first-view__link-txt::after {
  transition: 0.5s;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  right: 0;
  bottom: -2px;
  background-color: #fff;
}
.p-home-first-view__scroll-down {
  z-index: 2;
  position: absolute;
  right: 25px;
  top: 50%;
  width: 20px;
  height: 100px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__scroll-down {
    display: none;
  }
}
.p-home-first-view__scroll-down::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
}
.p-home-first-view__scroll-down::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0px;
  left: -5px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2.5s ease-in-out infinite;
}
.p-home-first-view__scroll-down-txt {
  position: absolute;
  top: 6px;
  left: -4px;
  color: #999999;
  font-size: 12px;
  transform: rotate(90deg);
  cursor: pointer;
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-home-first-view__scroll-down-txt:hover {
    opacity: 0.6;
  }
}
@keyframes pathmove {
  0% {
    height: 12px;
    top: 0px;
  }
  25% {
    height: 12px;
  }
  75% {
    height: 12px;
  }
  100% {
    height: 12px;
    top: 100px;
  }
}
@keyframes pathmove2 {
  0% {
    height: 0;
    top: 60px;
    opacity: 0;
  }
  30% {
    height: 117px;
    opacity: 1;
  }
  100% {
    top: 166px;
    opacity: 0;
  }
}
.p-home-first-view__newsCont {
  display: block;
  position: relative;
  padding: 10px 54px 10px 20px;
  background-color: white;
}
@media only screen and (min-width: 1272px) {
  .p-home-first-view__newsCont:hover::after {
    right: 17px;
  }
}
@media only screen and (max-width: 1271px) {
  .p-home-first-view__newsCont {
    padding: 6px 54px 6px 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__newsCont {
    padding: 10px 48px 10px 20px;
  }
}
.p-home-first-view__newsCont::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  -webkit-mask: url("/media/images/component/svg-arrow-right.svg") center/contain no-repeat;
          mask: url("/media/images/component/svg-arrow-right.svg") center/contain no-repeat;
  background-color: #98bfd6;
  transition: 0.5s;
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__newsCont::after {
    right: 17px;
  }
}
.p-home-first-view__newsInfo {
  display: flex;
  gap: 4px;
}
.p-home-first-view__newsDate {
  color: #5b6e85;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.53;
}
@media only screen and (max-width: 1271px) {
  .p-home-first-view__newsDate {
    letter-spacing: 0.03em;
  }
}
.p-home-first-view__newsCat {
  color: #5b6e85;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.53;
}
.p-home-first-view__newsTtl {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-home-first-view__newsTtl:hover {
    color: #004098;
  }
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__newsTtl {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.3333333333;
  }
}
.p-home-first-view__news-cont {
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: 1;
  display: block;
  border-radius: 5px 0 0 5px;
  padding: 10px 54px 10px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  width: 45%;
  margin-left: auto;
}
@media only screen and (min-width: 1272px) {
  .p-home-first-view__news-cont:hover::after {
    right: 17px;
  }
}
@media only screen and (max-width: 1600px) {
  .p-home-first-view__news-cont {
    max-width: 680px;
    width: 100%;
  }
}
@media only screen and (max-width: 1271px) {
  .p-home-first-view__news-cont {
    margin-top: 15px;
    padding: 6px 54px 6px 20px;
  }
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__news-cont {
    margin-top: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
    transform: translateY(100%);
    height: auto;
    padding: 10px 48px 10px 20px;
    border: 1px solid #cddde5;
    border-radius: 5px;
    overflow: hidden;
    max-width: 100%;
  }
}
.p-home-first-view__news-cont::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  -webkit-mask: url("/media/images/component/svg-arrow-right.svg") center/contain no-repeat;
          mask: url("/media/images/component/svg-arrow-right.svg") center/contain no-repeat;
  background-color: #98bfd6;
  transition: 0.5s;
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__news-cont::after {
    right: 17px;
  }
}
.p-home-first-view__news-date {
  color: #5b6e85;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.53;
}
@media only screen and (max-width: 1271px) {
  .p-home-first-view__news-date {
    letter-spacing: 0.03em;
  }
}
.p-home-first-view__news-cat {
  margin-left: 4px;
  color: #5b6e85;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.53;
}
.p-home-first-view__news-ttl {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.5s;
}
@media only screen and (min-width: 1272px) {
  .p-home-first-view__news-ttl:hover {
    color: #004098;
  }
}
@media only screen and (max-width: 1023px) {
  .p-home-first-view__news-ttl {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.3333333333;
  }
}

.swiperNews__wrap {
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: 1;
  display: block;
  border-radius: 5px 0 0 5px;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  width: 45%;
  margin-left: auto;
}
@media only screen and (max-width: 1600px) {
  .swiperNews__wrap {
    max-width: 680px;
    width: 100%;
  }
}
@media only screen and (max-width: 1271px) {
  .swiperNews__wrap {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .swiperNews__wrap {
    margin-top: 0;
    position: absolute;
    bottom: -20px;
    left: 0;
    transform: translateY(100%);
    height: auto;
    border: 1px solid #cddde5;
    border-radius: 5px;
    overflow: hidden;
    max-width: 100%;
  }
}
.p-home-products-sec {
  padding: 136px 0 120px;
}
@media only screen and (max-width: 1023px) {
  .p-home-products-sec {
    padding: 80px 0 60px;
  }
}

.c-home-sec-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .c-home-sec-ttl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.c-home-sec-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 4px;
  background-color: #00a0e9;
}
.c-home-sec-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #004098;
}
.c-home-sec-ttl__txt {
  display: flex;
  align-items: center;
  gap: 20px;
}
.c-home-sec-ttl__en {
  font-size: 44px;
  font-weight: 700;
  color: #004098;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .c-home-sec-ttl__en {
    font-size: 30px;
  }
}
.c-home-sec-ttl__jp {
  font-size: 24px;
  font-weight: 700;
  color: #004098;
}
@media only screen and (max-width: 767px) {
  .c-home-sec-ttl__jp {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .c-home-sec-ttl .c-list-link {
    margin-top: 24px;
    margin-left: auto;
  }
}

.p-home-products {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.p-home-products > * {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media only screen and (max-width: 1023px) {
  .p-home-products > * {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .p-home-products > * {
    width: 100%;
  }
}

.p-home-search {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
@media only screen and (max-width: 767px) {
  .p-home-search {
    gap: 10px;
  }
}
.p-home-search > * {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media only screen and (max-width: 1023px) {
  .p-home-search > * {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .p-home-search > * {
    width: 100%;
  }
}

.p-home-entry {
  margin-top: 80px;
  background-color: #cddde5;
  border-radius: 10px;
  padding: 45px 50px 40px;
}
@media only screen and (max-width: 767px) {
  .p-home-entry {
    padding: 35px 20px 20px;
  }
}
.p-home-entry__desc {
  font-size: 18px;
  font-weight: 700;
}
.p-home-entry__btn-cntr {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .p-home-entry__btn-cntr {
    flex-direction: column;
  }
}

.p-sec-home-btn {
  padding-top: 120px;
}
@media only screen and (max-width: 1023px) {
  .p-sec-home-btn {
    padding-top: 60px;
  }
}

.p-home-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.p-home-btn > * {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media only screen and (max-width: 1271px) {
  .p-home-btn > * {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .p-home-btn > * {
    width: 100%;
  }
}

.p-home-downloads-sec {
  padding-top: 66px;
  padding-bottom: 80px;
  background-color: #f6fbfc;
}
@media only screen and (max-width: 767px) {
  .p-home-downloads-sec {
    padding-bottom: 60px;
  }
}