@charset "UTF-8";
/* stylelint-disable custom-property-no-missing-var-function */
/* アニメーション定義 */
@-webkit-keyframes arrow-move {
  0% {
    transform: translateX(0); /* 初期位置 */
    opacity: 1; /* 表示 */
  }
  50% {
    transform: translateX(20px); /* 右に移動して消える */
    opacity: 0;
  }
  51% {
    transform: translateX(-20px); /* 左から戻ってくる */
    opacity: 0;
  }
  100% {
    transform: translateX(0); /* 元の位置に戻る */
    opacity: 1; /* 表示 */
  }
}
@keyframes arrow-move {
  0% {
    transform: translateX(0); /* 初期位置 */
    opacity: 1; /* 表示 */
  }
  50% {
    transform: translateX(20px); /* 右に移動して消える */
    opacity: 0;
  }
  51% {
    transform: translateX(-20px); /* 左から戻ってくる */
    opacity: 0;
  }
  100% {
    transform: translateX(0); /* 元の位置に戻る */
    opacity: 1; /* 表示 */
  }
}
@-webkit-keyframes arrow-move-position {
  0% {
    transform: translateX(0) translateY(-50%); /* 初期位置 */
    opacity: 1; /* 表示 */
  }
  50% {
    transform: translateX(20px) translateY(-50%); /* 右に移動して消える */
    opacity: 0;
  }
  51% {
    transform: translateX(-20px) translateY(-50%); /* 左から戻ってくる */
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%); /* 元の位置に戻る */
    opacity: 1; /* 表示 */
  }
}
@keyframes arrow-move-position {
  0% {
    transform: translateX(0) translateY(-50%); /* 初期位置 */
    opacity: 1; /* 表示 */
  }
  50% {
    transform: translateX(20px) translateY(-50%); /* 右に移動して消える */
    opacity: 0;
  }
  51% {
    transform: translateX(-20px) translateY(-50%); /* 左から戻ってくる */
    opacity: 0;
  }
  100% {
    transform: translateX(0) translateY(-50%); /* 元の位置に戻る */
    opacity: 1; /* 表示 */
  }
}
/* ズームアニメーション */
@-webkit-keyframes swiper-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes swiper-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@-webkit-keyframes fadeAndShrink {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeAndShrink {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.plink {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1.8823529412vw;
  border-radius: 0.4117647059vw;
  width: 17vw;
  height: 4.4705882353vw;
  box-sizing: border-box;
  border: solid 2px var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.8s;
}
.plink svg {
  position: absolute;
  right: 1.0588235294vw;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease; /* 通常の遷移 */
}
.plink svg path {
  transition: 0.5s;
}
.plink:hover {
  background: #ffffff;
  color: #404DA1;
}
.plink:hover svg {
  -webkit-animation: arrow-move-position 0.5s ease-in-out;
          animation: arrow-move-position 0.5s ease-in-out;
}
.plink:hover svg path {
  fill: #404DA1;
}

@media screen and (max-width: 767px) {
  .plink {
    width: 100%;
    height: 52px;
    padding-left: 23px;
    margin-top: 30px;
    font-size: 12px;
    border-radius: 6px;
  }
  .plink svg {
    right: 22px;
    width: 12px;
    height: 8px;
  }
}
/*=================================================
section#main_visual
==================================================*/
section#main_visual {
  position: relative;
}
section#main_visual .box-img {
  width: 100%;
  height: 100vh;
  overflow: clip;
}
section#main_visual .box-img video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#main_visual .box-img::before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
section#main_visual .box-txt {
  position: absolute;
  top: 55%;
  left: 10vw;
  transform: translateY(-50%);
  width: 52%;
}
section#main_visual .box-txt .ttl-txt {
  margin-bottom: 2.4705882353vw;
}
section#main_visual .box-txt .txt-h1 {
  color: #ffffff;
  letter-spacing: 0.1vw;
  margin-bottom: 0.5vw;
}
section#main_visual .box-txt .txt-e {
  color: #ffffff;
  letter-spacing: 0.5vw;
}
section#main_visual .box-txt .txt-p {
  color: #ffffff;
  letter-spacing: 0.2vw;
  line-height: 2em;
}
section#main_visual .box-txt .txt-a {
  width: 22vw;
  height: 4.5vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  border: solid 2px #ffffff;
  color: #ffffff;
  padding-left: 2.4vw;
  margin-top: 5.3vw;
  transition: 0.8s;
}
section#main_visual .box-txt .txt-a svg {
  position: absolute;
  right: 1.8823529412vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2941176471vw;
  height: 0.9411764706vw;
  display: flex;
  transition: transform 0.3s ease, opacity 0.3s ease; /* 通常の遷移 */
}
section#main_visual .box-txt .txt-a svg path {
  transition: 0.5s;
}
section#main_visual .box-txt .txt-a:hover {
  background: #ffffff;
  color: #404DA1;
}
section#main_visual .box-txt .txt-a:hover svg {
  -webkit-animation: arrow-move-position 0.5s ease-in-out;
          animation: arrow-move-position 0.5s ease-in-out;
}
section#main_visual .box-txt .txt-a:hover svg path {
  fill: #404DA1;
}

@media screen and (max-width: 767px) {
  section#main_visual {
    position: relative;
  }
  section#main_visual .box-img {
    width: 100%;
    height: 90vw;
  }
  section#main_visual .box-txt {
    background: #F7F7F7;
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    width: 100%;
    padding: 47px 5.75% 60px;
    box-sizing: border-box;
  }
  section#main_visual .box-txt .ttl-txt {
    margin-bottom: 20px;
  }
  section#main_visual .box-txt .txt-t {
    color: #404DA1;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 4px;
  }
  section#main_visual .box-txt .txt-e {
    color: #404DA1;
    font-size: 14px;
    letter-spacing: 3.5px;
  }
  section#main_visual .box-txt .txt-h1 {
    color: #161616;
    font-size: 14px;
  }
  section#main_visual .box-txt .txt-a {
    width: 100%;
    height: 52px;
    border: solid 2px #ffffff;
    padding-left: 23px;
    margin-top: 30px;
    background: #404DA1;
    font-size: 12px;
    border-radius: 6px;
  }
  section#main_visual .box-txt .txt-a svg {
    right: 22px;
    width: 12px;
    height: 8px;
  }
}
/*=================================================
section#our_product
==================================================*/
section#our_product .inner {
  padding-top: 8.4705882353vw;
}
section#our_product .box-top {
  align-items: center;
  justify-content: space-between;
}
section#our_product .box-top .ttl .icon {
  width: 2.1470588235vw;
  height: 1.4117647059vw;
}
section#our_product .box-top .ttl .txt-h2 {
  line-height: 1;
  gap: 0.7058823529vw;
  letter-spacing: 0.1vw;
}
section#our_product .box-top .ttl .txt-h2 .txt-e {
  display: block;
}
section#our_product .box-top .ttl .txt-a {
  margin-top: 3.7647058824vw;
}
section#our_product .box-top .txt {
  width: 52.3%;
}
section#our_product .box-top .txt .txt-h3 {
  margin-bottom: 1.2941176471vw;
  letter-spacing: 0.1vw;
}
section#our_product .box-top .txt .txt-p {
  line-height: 2em;
}
section#our_product .box-bot {
  margin-top: 4.4117647059vw;
}
section#our_product .box-bot .ProSwiper {
  width: 100%;
}
section#our_product .box-bot .ProSwiper .arrows {
  display: none;
}
section#our_product .box-bot .swiper-wrapper {
  gap: 1%;
}
section#our_product .box-bot .item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33%;
  box-sizing: border-box;
  position: relative;
}
section#our_product .box-bot .item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
section#our_product .box-bot .item .image {
  width: 100%;
  height: 100%;
  overflow: clip;
}
section#our_product .box-bot .item .image img {
  transition: 0.5s;
}
section#our_product .box-bot .item .txt-h4 {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #ffffff;
  text-align: center;
  width: 90%;
}
section#our_product .box-bot .item .txt-h4 .en {
  display: block;
  padding: 0 2vw;
  position: relative;
  margin: 0 auto;
  margin-top: 0.5vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.2vw;
}
section#our_product .box-bot .item .txt-h4 .en::before, section#our_product .box-bot .item .txt-h4 .en::after {
  content: "";
  background: #ffffff;
  width: 1.4705882353vw;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
section#our_product .box-bot .item .txt-h4 .en::before {
  left: 0;
}
section#our_product .box-bot .item .txt-h4 .en::after {
  right: 0;
}
section#our_product .box-bot .item svg {
  position: absolute;
  bottom: 1.5294117647vw;
  right: 1.2941176471vw;
  z-index: 3;
  display: flex;
  width: 1.7647058824vw;
  height: 1.7647058824vw;
  transition: transform 0.3s ease, opacity 0.3s ease; /* 通常の遷移 */
}
@media screen and (min-width: 768px) {
  section#our_product .box-bot .item.i1 {
    width: 49.5% !important;
  }
  section#our_product .box-bot .item.i2 {
    width: 49.5% !important;
  }
}
section#our_product .box-bot .item:hover svg {
  -webkit-animation: arrow-move 0.5s ease-in-out;
          animation: arrow-move 0.5s ease-in-out;
}
section#our_product .box-bot .item:hover .image img {
  transform: scale(1.2);
}

@media screen and (max-width: 767px) {
  section#our_product .box-top {
    position: relative;
    padding-bottom: 92px;
  }
  section#our_product .box-top .ttl {
    margin-bottom: 30px;
  }
  section#our_product .box-top .ttl .icon {
    width: 30px;
    height: 17px;
    display: flex;
  }
  section#our_product .box-top .ttl .icon svg {
    width: 100%;
    height: 100%;
    display: flex;
  }
  section#our_product .box-top .ttl .txt-h2 {
    font-size: 12px;
  }
  section#our_product .box-top .ttl .txt-h2 .txt-e {
    font-size: 32px;
  }
  section#our_product .box-top .ttl .txt-a {
    margin-top: 0;
    position: absolute;
    bottom: 0;
  }
  section#our_product .box-top .txt {
    width: 100%;
  }
  section#our_product .box-top .txt .txt-h3 {
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }
  section#our_product .box-top .txt .txt-p {
    font-size: 14px;
  }
  section#our_product .box-bot {
    margin-top: 0;
    position: relative;
    width: 100%;
  }
  section#our_product .box-bot .ProSwiper {
    padding-top: 110px;
    padding-bottom: 50px;
    height: calc(46.1538461538vw + 110px + 50px);
    padding-left: 5.75%;
    box-sizing: border-box;
  }
  section#our_product .box-bot .ProSwiper .swiperpro-pagination {
    position: absolute;
    top: 65px;
    left: 5.75%;
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  section#our_product .box-bot .ProSwiper .swiperpro-pagination .swiper-pagination-current, section#our_product .box-bot .ProSwiper .swiperpro-pagination .swiper-pagination-total {
    font-size: 12px;
    font-family: "font-NSJPm", "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
    font-family: "kozuka-gothic-pro", "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
  }
  section#our_product .box-bot .ProSwiper .swiperpro-pagination .swiper-pagination-current {
    color: #404DA1;
  }
  section#our_product .box-bot .ProSwiper .arrows {
    position: absolute;
    bottom: 0;
    right: -0.75%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
  }
  section#our_product .box-bot .ProSwiper .arrows .swiper-button-next, section#our_product .box-bot .ProSwiper .arrows .swiper-button-prev {
    width: 30px;
    height: 30px;
    position: initial;
    margin: 0;
  }
  section#our_product .box-bot .ProSwiper .arrows .swiper-button-next:after, section#our_product .box-bot .ProSwiper .arrows .swiper-button-prev:after {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
  section#our_product .box-bot .ProSwiper .arrows .swiper-button-next:after {
    content: "";
    background: url(../img/swiper-arrow-next.svg) center no-repeat;
    background-size: cover;
    width: 17px;
    height: 15px;
  }
  section#our_product .box-bot .ProSwiper .arrows .swiper-button-prev:after {
    content: "";
    background: url(../img/swiper-arrow-prev.svg) center no-repeat;
    background-size: cover;
    width: 17px;
    height: 15px;
  }
  section#our_product .box-bot .item a::before {
    border-radius: 7px;
  }
  section#our_product .box-bot .item img {
    border-radius: 7px;
  }
  section#our_product .box-bot .item .txt-h4 {
    font-size: 18px;
    letter-spacing: 3px;
  }
  section#our_product .box-bot .item .txt-h4 .en {
    font-size: 14px;
    margin-top: 10px;
    padding: 0 40px;
    letter-spacing: 3px;
  }
  section#our_product .box-bot .item .txt-h4 .en::before, section#our_product .box-bot .item .txt-h4 .en::after {
    width: 25px;
  }
  section#our_product .box-bot .item svg {
    bottom: 12px;
    right: 14px;
    width: 20px;
    height: 20px;
  }
}
/*=================================================
section#rasco_power
==================================================*/
section#rasco_power .inner {
  padding-top: 10vw;
}
section#rasco_power .box {
  background: #F7F7F7;
}
section#rasco_power .img-box {
  width: 100%;
  height: 27.9411764706vw;
  position: relative;
}
section#rasco_power .txt-box {
  position: relative;
  padding: 9.83vw 0;
  box-sizing: border-box;
}
section#rasco_power .txt-box .in-txt {
  padding-left: 15.29%;
}
section#rasco_power .txt-box .in-txt .txt-h3 {
  letter-spacing: 0.3vw;
}
section#rasco_power .txt-box .in-img {
  position: absolute;
  top: -9.8235294118vw;
  right: 10%;
  width: 45%;
  background: #ffffff;
  padding: 2.7604166667vw;
  box-sizing: border-box;
  border-radius: 11px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
section#rasco_power .txt-box .in-img .ttl {
  align-items: center;
  gap: 1.7058823529vw;
  margin-bottom: 2.5294117647vw;
}
section#rasco_power .txt-box .in-img .ttl .icon {
  width: 2.1470588235vw;
  height: 1.4117647059vw;
  display: flex;
}
section#rasco_power .txt-box .in-img .ttl .icon svg {
  display: flex;
  width: 100%;
  height: 100%;
}
section#rasco_power .txt-box .in-img .ttl .txt-h2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}
section#rasco_power .txt-box .in-img .power-link {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3.9411764706vw 0;
}
section#rasco_power .txt-box .in-img .power-link .item {
  width: 47.7%;
  display: flex;
  align-items: center;
  gap: 1.4705882353vw;
  padding-bottom: 1.25vw;
  position: relative;
}
section#rasco_power .txt-box .in-img .power-link .item:before, section#rasco_power .txt-box .in-img .power-link .item:after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #eaeaea;
  z-index: 1;
}
section#rasco_power .txt-box .in-img .power-link .item:after {
  background-color: #404DA1;
  transform: scaleX(0);
  transform-origin: right;
  transition-property: transform;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
}
section#rasco_power .txt-box .in-img .power-link .item .icon {
  width: auto;
  height: 2.7647058824vw;
  display: flex;
}
section#rasco_power .txt-box .in-img .power-link .item .icon img {
  width: auto;
}
section#rasco_power .txt-box .in-img .power-link .item .item-txt .txt-h4 {
  padding-bottom: 0.5vw;
  color: #404DA1;
  transition: 0.5s;
}
section#rasco_power .txt-box .in-img .power-link .item .item-txt .txt-p {
  color: #4B4B4B;
  transition: 0.5s;
}
section#rasco_power .txt-box .in-img .power-link .item .item-txt svg {
  width: 0.9411764706vw;
  height: 0.8235294118vw;
  top: 42%;
  transform: translateY(-50%);
  position: absolute;
  right: 1.0588235294vw;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease; /* 通常の遷移 */
}
section#rasco_power .txt-box .in-img .power-link .item .item-txt svg path {
  transition: 0.5s;
}
section#rasco_power .txt-box .in-img .power-link .item:hover:after {
  transform: scaleX(1);
  transform-origin: left;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
section#rasco_power .txt-box .in-img .power-link .item:hover .item-txt .txt-p {
  color: #404DA1;
}
section#rasco_power .txt-box .in-img .power-link .item:hover .item-txt svg {
  -webkit-animation: arrow-move-position 0.5s ease-in-out;
          animation: arrow-move-position 0.5s ease-in-out;
}
section#rasco_power .txt-box .in-img .power-link .item:hover .item-txt svg path {
  fill: #404DA1;
}

@media screen and (max-width: 767px) {
  section#rasco_power .inner {
    padding-top: 82px;
  }
  section#rasco_power .box-img {
    height: 36vw;
  }
  section#rasco_power .box-img .in-img .bg {
    background-image: url("../img/rasco_power_top_sp.jpg");
  }
  section#rasco_power .box-txt {
    padding: 64px 0;
  }
  section#rasco_power .box-txt .txt-h3 {
    padding: 0;
    width: 88.5%;
    margin: 0 auto;
    margin-bottom: 34px;
    font-size: 20px;
    letter-spacing: 3px;
  }
  section#rasco_power .box-txt .txt {
    position: initial;
    width: 88.5%;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    box-shadow: initial;
  }
  section#rasco_power .box-txt .txt .ttl {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
  }
  section#rasco_power .box-txt .txt .ttl .icon {
    width: 23px;
    height: 15px;
  }
  section#rasco_power .box-txt .txt .ttl .txt-h2 {
    font-size: 16px;
    letter-spacing: 2px;
  }
  section#rasco_power .box-txt .txt .ttl .txt-h2 span {
    letter-spacing: 2px;
  }
  section#rasco_power .box-txt .txt .power-link {
    display: flex;
    gap: 20px 0;
  }
  section#rasco_power .box-txt .txt .power-link .item {
    gap: 15px;
  }
  section#rasco_power .box-txt .txt .power-link .item .icon {
    width: auto;
    height: 30px;
  }
  section#rasco_power .box-txt .txt .power-link .item .item-txt .txt-h4 {
    font-size: 12px;
    margin-bottom: 2px;
    letter-spacing: 2px;
  }
  section#rasco_power .box-txt .txt .power-link .item .item-txt .txt-p {
    font-size: 10px;
  }
  section#rasco_power .box-txt .txt .power-link .item .item-txt svg {
    width: 10px;
    height: 9px;
  }
}
/*=================================================
section#our_company
==================================================*/
section#our_company {
  background: #EBEBEB;
}
section#our_company .inner {
  padding-top: 5.6470588235vw;
  padding-bottom: 5.6470588235vw;
  position: relative;
}
section#our_company .box-top {
  align-items: center;
  justify-content: space-between;
}
section#our_company .box-top .ttl .icon {
  width: 4.4705882353vw;
  height: 3.2352941176vw;
  margin-bottom: 1vw;
  display: flex;
}
section#our_company .box-top .ttl .icon svg {
  display: flex;
  width: 100%;
  height: 100%;
}
section#our_company .box-top .ttl .txt-h2 {
  line-height: 1;
  gap: 0.7058823529vw;
  letter-spacing: 0.1vw;
}
section#our_company .box-top .ttl .txt-h2 .txt-e {
  display: block;
  margin-bottom: 0.8235294118vw;
}
section#our_company .box-top .ttl .txt-a {
  margin-top: 3.7647058824vw;
}
section#our_company .box-top .txt {
  width: 52.3%;
}
section#our_company .box-top .txt .txt-h3 {
  margin-bottom: 1.2941176471vw;
  letter-spacing: 0.1vw;
}
section#our_company .box-top .txt .txt-p {
  line-height: 2em;
  letter-spacing: 0.1vw;
}
section#our_company .box-mid {
  margin-top: 5.5294117647vw;
  justify-content: space-between;
}
section#our_company .box-mid .item {
  width: 31%;
  box-sizing: border-box;
  position: relative;
}
section#our_company .box-mid .item .image {
  height: 15vw;
  position: relative;
  margin-bottom: 1.2941176471vw;
  overflow: clip;
}
section#our_company .box-mid .item .image::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
section#our_company .box-mid .item .image img {
  transition: 0.8s;
}
section#our_company .box-mid .item .txt-h4 {
  color: #161616;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section#our_company .box-mid .item .txt-h4 svg {
  z-index: 3;
  display: flex;
  width: 1vw;
  height: 0.8823529412vw;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease; /* 通常の遷移 */
}
section#our_company .box-mid .item:hover .image img {
  transform: scale(1.2);
}
section#our_company .box-mid .item:hover .txt-h4 svg {
  -webkit-animation: arrow-move 0.5s ease-in-out;
          animation: arrow-move 0.5s ease-in-out;
}
section#our_company .box-bot {
  margin-top: 6.7647058824vw;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
section#our_company .box-bot .TopSwiper, section#our_company .box-bot .BotSwiper {
  width: 49.8%;
  height: 29.0588235294vw;
  padding-bottom: 2.7058823529vw;
  box-sizing: border-box;
  margin: 0;
}
section#our_company .box-bot .swiper-slide {
  overflow: clip;
}
section#our_company .box-bot .swiper-slide-active .swiper-img,
section#our_company .box-bot .swiper-slide-duplicate-active .swiper-img,
section#our_company .box-bot .swiper-slide-prev .swiper-img {
  -webkit-animation: swiper-zoom 7s linear 0s normal both;
          animation: swiper-zoom 7s linear 0s normal both;
}
section#our_company .box-bot .swiper-img {
  width: 100%;
  height: 100%;
}
section#our_company .box-bot .swiper-slide img {
  height: 100%;
  width: 100%;
}
section#our_company .box-bot .swipertop-pagination, section#our_company .box-bot .swiperbot-pagination {
  position: absolute;
  display: flex;
  gap: 0.7058823529vw;
  bottom: 0;
  right: 0;
  width: calc(100% - 1.0588235294vw);
}
section#our_company .box-bot .swipertop-pagination .swiper-pagination-bullet, section#our_company .box-bot .swiperbot-pagination .swiper-pagination-bullet {
  width: 0.6470588235vw;
  height: 0.6470588235vw;
  opacity: 1;
  background: #909090;
  margin: 0;
}
section#our_company .box-bot .swipertop-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, section#our_company .box-bot .swiperbot-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #4B4B4B;
}
section#our_company .box-bot .swipertop-pagination {
  justify-content: flex-end;
}
section#our_company .box-bot .swiperbot-pagination {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  section#our_company .inner {
    padding-top: 64px;
  }
  section#our_company .inner::after {
    content: none;
  }
  section#our_company .box-top {
    align-items: center;
    justify-content: space-between;
  }
  section#our_company .box-top .ttl .icon {
    width: 34px;
    height: 25px;
    margin-bottom: 8px;
  }
  section#our_company .box-top .ttl .txt-h2 {
    letter-spacing: 1px;
    font-size: 12px;
  }
  section#our_company .box-top .ttl .txt-h2 .txt-e {
    font-size: 32px;
    display: block;
    margin-bottom: 0;
  }
  section#our_company .box-top .ttl .txt-a {
    margin-top: 3.7647058824vw;
  }
  section#our_company .box-top .txt {
    width: 100%;
    margin-top: 23px;
  }
  section#our_company .box-top .txt .txt-p {
    font-size: 14px;
    letter-spacing: 1px;
  }
  section#our_company .box-mid {
    display: flex;
    flex-wrap: wrap;
    width: 86%;
    margin: 0 auto;
    margin-top: 40px;
    gap: 25px 0;
  }
  section#our_company .box-mid .item {
    width: 45%;
    box-sizing: border-box;
  }
  section#our_company .box-mid .item .image {
    height: 38.7179487179vw;
    position: relative;
    margin-bottom: 8px;
  }
  section#our_company .box-mid .item .txt-h4 {
    font-size: 11px;
  }
  section#our_company .box-mid .item .txt-h4 svg {
    width: 11px;
    height: 9px;
  }
  section#our_company .box-bot {
    margin-top: 51px;
    width: 100%;
    background: #F7F7F7;
    box-sizing: border-box;
  }
  section#our_company .box-bot .TopSwiper, section#our_company .box-bot .BotSwiper {
    width: 100%;
    height: calc(51.2820512821vw + 16px);
    padding-bottom: 16px;
  }
  section#our_company .box-bot .BotSwiper {
    display: none;
  }
  section#our_company .box-bot .swipertop-pagination {
    position: absolute;
    display: flex;
    gap: 5px;
    bottom: 0;
    right: 0;
    width: 88.5%;
    margin: 0 auto;
  }
  section#our_company .box-bot .swipertop-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  section#our_company .box-bot .swipertop-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #4B4B4B;
  }
}
/*=================================================
section#news
==================================================*/
section#news {
  background: #F7F7F7;
}
section#news .inner {
  padding-top: 6.7058823529vw;
  padding-bottom: 19.1764705882vw;
}
section#news .box-ttl {
  margin-bottom: 2.7058823529vw;
}
section#news .box-ttl .icon {
  width: 2.1470588235vw;
  height: 1.4117647059vw;
  display: flex;
}
section#news .box-ttl .icon svg {
  display: flex;
  width: 100%;
  height: 100%;
}
section#news .box-ttl .txt-h2 {
  line-height: 1;
  gap: 0.7058823529vw;
  letter-spacing: 0.1vw;
}
section#news .box-ttl .txt-h2 .txt-e {
  display: block;
}
section#news .box-list {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.8823529412vw 0;
}
section#news .box-list .item {
  width: 48.81%;
  background: #ffffff;
  border-radius: 7px;
  position: relative;
  transition: 0.8s;
}
section#news .box-list .item a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 2.1vw 2vw;
}
section#news .box-list .item .txt-d {
  color: #404DA1;
  margin-bottom: 0.8823529412vw;
  transition: 0.5s;
}
section#news .box-list .item .txt-h3 {
  color: #161616;
  transition: 0.5s;
}
section#news .box-list .item .icon {
  position: absolute;
  right: 1.8529411765vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1vw;
  height: 0.8823529412vw;
  display: flex;
}
section#news .box-list .item .icon svg {
  display: flex;
  width: 100%;
  height: 100%;
}
section#news .box-list .item .icon svg path {
  transition: 0.5s;
}
section#news .box-list .item .txt-a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.4117647059vw;
  width: 17vw;
  height: 4.4705882353vw;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  padding-left: 1.8823529412vw;
}
section#news .box-list .item .txt-a svg {
  position: absolute;
  right: 1.0588235294vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  width: 1.2352941176vw;
  height: 1.0588235294vw;
}
section#news .box-list .item:hover {
  background: #404DA1;
}
section#news .box-list .item:hover .txt-d {
  color: #ffffff;
}
section#news .box-list .item:hover .icon svg path {
  fill: #ffffff;
}
section#news .box-list .item:hover .txt-h3 {
  color: #ffffff;
}
section#news .box-list .item.ilink {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#news .box-list .item.ilink:hover {
  background: transparent;
}

@media screen and (max-width: 767px) {
  section#news .inner {
    padding-top: 48px;
    padding-bottom: 38px;
  }
  section#news .box-ttl {
    margin-bottom: 20px;
  }
  section#news .box-ttl .icon {
    width: 24px;
    height: 15px;
    margin-bottom: 5px;
  }
  section#news .box-ttl .txt-h2 {
    font-size: 12px;
    letter-spacing: 2px;
  }
  section#news .box-ttl .txt-h2 .txt-e {
    font-size: 24px;
  }
  section#news .box-list {
    display: flex;
    gap: 10px 0;
  }
  section#news .box-list .item {
    width: 100%;
    background: #ffffff;
    border-radius: 7px;
    position: relative;
  }
  section#news .box-list .item .txt-d {
    font-size: 10px;
    margin-bottom: 12px;
  }
  section#news .box-list .item .txt-h3 {
    font-size: 12px;
  }
  section#news .box-list .item .icon {
    right: 15px;
    width: 11px;
    height: 9px;
  }
  section#news .box-list .item .txt-a {
    border-radius: 6px;
    width: 205px;
    height: 52px;
    padding-left: 21px;
  }
  section#news .box-list .item .txt-a svg {
    right: 13px;
    width: 12px;
    height: 8px;
  }
  section#news .box-list .item.ilink {
    margin-top: 34px;
  }
  section#news .box-list .item a {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
  }
}
/*=================================================
section#info_link
==================================================*/
section#info_link {
  position: relative;
}
section#info_link .inner {
  padding-top: 8vw;
  padding-bottom: 8vw;
}
section#info_link .box {
  justify-content: space-between;
}
section#info_link .item {
  width: 33.333%;
  position: relative;
  display: block;
}
section#info_link .item .image {
  width: 100%;
  height: 18.8235294118vw;
  position: relative;
  overflow: clip;
}
section#info_link .item .image::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
section#info_link .item .image img {
  transition: 0.8s;
}
section#info_link .item .txt-h3 {
  position: absolute;
  left: 1.7647058824vw;
  bottom: 1.7647058824vw;
  color: #ffffff;
  z-index: 2;
  transition: 0.5s;
}
section#info_link .item .txt-h3 .txt-e {
  display: block;
}
section#info_link .item svg {
  width: 1.5882352941vw;
  height: 1.5882352941vw;
  display: flex;
  position: absolute;
  right: 1.7647058824vw;
  bottom: 1.7647058824vw;
  z-index: 2;
  transition: 0.5s;
}
section#info_link .item:hover .image img {
  transform: scale(1.2);
}

@media screen and (max-width: 767px) {
  section#info_link {
    position: relative;
  }
  section#info_link::before {
    content: "";
    background: url(../img/info_link_bg_sp.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    height: 27.1794871795vw;
    position: absolute;
    top: 0;
    left: 0;
  }
  section#info_link .inner {
    padding-top: 0;
  }
  section#info_link .box {
    position: initial;
    transform: initial;
    display: flex;
    flex-wrap: wrap;
  }
  section#info_link .item {
    width: 100%;
    margin-bottom: 27px;
  }
  section#info_link .item .image {
    width: 100%;
    height: 54.358974359vw;
    position: relative;
    margin-bottom: 15px;
  }
  section#info_link .item .image::before {
    content: "";
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  section#info_link .item .txt-h3 {
    position: initial;
    font-size: 10px;
    color: #161616;
  }
  section#info_link .item .txt-h3 .txt-e {
    font-size: 14px;
    color: #161616;
    letter-spacing: 0.5px;
  }
  section#info_link .item svg {
    width: 18px;
    height: 18px;
    right: 0;
    bottom: 10px;
  }
  section#info_link .item svg path {
    fill: #161616;
  }
  section#info_link .item.i2, section#info_link .item.i3 {
    width: 48.3%;
  }
  section#info_link .item.i2 .image, section#info_link .item.i3 .image {
    width: 100%;
    height: 26.4102564103vw;
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=top.css.map */