@charset "UTF-8";
/* index.html
---------------------------------------------------- */
#main-visual {
  position: relative;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideIn {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
#main-visual .mv-slider {
  width: 100%;
  height: max(50rem, 600px);
}
#main-visual .mv-slider .swiper-txt {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  margin-left: 40px;
  margin-bottom: 8.75rem;
}
@media screen and (max-width: 1199px) {
  #main-visual .mv-slider .swiper-txt {
    margin-bottom: 8em;
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-slider .swiper-txt {
    margin-left: 20px;
    margin-bottom: 9em;
  }
}
#main-visual .mv-slider .swiper-txt h2 {
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.4em;
}
@media screen and (max-width: 1199px) {
  #main-visual .mv-slider .swiper-txt h2 {
    font-size: 3em;
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-slider .swiper-txt h2 {
    font-size: 2.125em;
  }
}
#main-visual .mv-slider .swiper-img {
  width: 100%;
  height: 100%;
}
#main-visual .mv-slider .swiper-img::before, #main-visual .mv-slider .swiper-img::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  height: 100%;
}
#main-visual .mv-slider .swiper-img::before {
  width: 75%;
  backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to right, #000, transparent);
          mask-image: linear-gradient(to right, #000, transparent);
}
@media screen and (max-width: 767px) {
  #main-visual .mv-slider .swiper-img::before {
    width: 100%;
    -webkit-mask-image: linear-gradient(to top, #000, transparent);
            mask-image: linear-gradient(to top, #000, transparent);
  }
}
#main-visual .mv-slider .swiper-img::after {
  width: 25%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent);
}
@media screen and (max-width: 767px) {
  #main-visual .mv-slider .swiper-img::after {
    top: initial;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent);
  }
}
#main-visual .mv-slider .swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes zoomPan {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06);
  }
}
#main-visual .mv-slider .swiper-slide-active .swiper-img img,
#main-visual .mv-slider .swiper-slide-duplicate-active .swiper-img img,
#main-visual .mv-slider .swiper-slide-prev .swiper-img img {
  animation: zoomPan 8s linear 0s normal both;
}
#main-visual .mv-txt {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  margin-left: 40px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1199px) {
  #main-visual .mv-txt {
    margin-bottom: 4em;
  }
}
@media screen and (max-width: 767px) {
  #main-visual .mv-txt {
    margin-left: 20px;
  }
}
#main-visual .mv-txt p {
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: max(1.5rem, 1.125em);
}

.sec-news .sec-inner {
  background-color: #fff;
  box-shadow: 2px 2px 12px rgba(60, 60, 60, 0.1);
}
@media screen and (max-width: 767px) {
  .sec-news .sec-inner {
    padding-top: 30px;
    padding-right: 20px;
  }
}
.sec-news .sec-inner .flex-wrap {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  .sec-news .sec-inner .flex-wrap {
    display: block;
  }
}
.sec-news .sec-inner .flex-wrap .sec-ttl {
  flex-shrink: 0;
  margin-right: 80px;
}
@media screen and (max-width: 1199px) {
  .sec-news .sec-inner .flex-wrap .sec-ttl {
    margin-right: 0;
    margin-bottom: 2em;
  }
}
.sec-news .sec-inner .flex-wrap .news-list {
  width: 100%;
  max-height: 27em;
  padding-right: 2em;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .sec-news .sec-inner .flex-wrap .news-list {
    max-height: 32em;
  }
}
.sec-news .sec-inner .flex-wrap .news-list {
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.sec-news .sec-inner .flex-wrap .news-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
.sec-news .sec-inner .flex-wrap .news-list ul .news-list-item {
  padding: 1.6em 0;
  border-bottom: solid 1px #ccc;
}
.sec-news .sec-inner .flex-wrap .news-list ul .news-list-item:nth-of-type(1) {
  border-top: solid 1px #ccc;
}
.sec-news .sec-inner .flex-wrap .news-list ul .news-list-item .news-info {
  display: flex;
  align-items: center;
  margin-top: -0.1em;
}
.sec-news .sec-inner .flex-wrap .news-list ul .news-list-item .news-info .__date {
  font-size: 0.95em;
  color: #aaa;
}
.sec-news .sec-inner .flex-wrap .news-list ul .news-list-item .news-info .__new {
  background-color: #dc4545;
  font-size: 0.8em;
  padding: 0.2em 1em;
  margin-left: 1em;
}
.sec-news .sec-inner .flex-wrap .news-list ul .news-list-item .news-txt {
  margin-top: 0.6em;
}
.sec-news .sec-inner .flex-wrap .news-list ul .news-list-item .news-txt a {
  display: inline;
}

.sec-service {
  background-color: #fff;
  box-shadow: 0px 0px 8px rgba(60, 60, 60, 0.1);
}
.sec-service .service-list {
  margin-top: 3em;
}
.sec-service .service-list ul .service-list-item {
  border: solid 1px #0ba652;
  display: flex;
  align-items: flex-start;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item {
    display: block;
    padding-top: 20px;
  }
}
.sec-service .service-list ul .service-list-item .item-num {
  color: #fff;
  background-color: #384c8b;
  border-radius: 6px;
  font-weight: 600;
  font-size: max(1.5rem, 1.125em);
  text-align: center;
  width: 2.2em;
  line-height: 2em;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item .item-num {
    font-size: 1em;
    margin: 0 auto;
  }
}
.sec-service .service-list ul .service-list-item .item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1em;
  padding-left: 2em;
  border-left: solid 1px #ccc;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .sec-service .service-list ul .service-list-item .item-content {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item .item-content {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    margin-top: 0.6em;
    padding-top: 0.6em;
    border-top: solid 1px #ccc;
  }
}
.sec-service .service-list ul .service-list-item .item-content .item-txt {
  width: calc(100% - 25 * 1rem - max(5rem, 2em));
}
@media screen and (max-width: 1199px) {
  .sec-service .service-list ul .service-list-item .item-content .item-txt {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .sec-service .service-list ul .service-list-item .item-content .item-txt h3 {
    text-align: center;
  }
}
.sec-service .service-list ul .service-list-item .item-content .item-txt p {
  font-weight: 400;
  margin-top: 1em;
}
.sec-service .service-list ul .service-list-item .item-content .item-img {
  width: 25rem;
  aspect-ratio: 4/3;
}
@media screen and (max-width: 1199px) {
  .sec-service .service-list ul .service-list-item .item-content .item-img {
    width: min(100%, 360px);
    aspect-ratio: 3/2;
    margin-left: auto;
    margin-top: 2em;
  }
}

.sec-product .__separate-bgimg {
  background-image: url(../images/product-bgimg.jpg);
  height: 25rem;
}
@media screen and (max-width: 1199px) {
  .sec-product .__separate-bgimg {
    background-position: 50% 75%;
    height: 270px;
  }
}
@media screen and (max-width: 767px) {
  .sec-product .__separate-bgimg {
    height: 240px;
  }
}
.sec-product .sec-ttl {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 72px;
  margin-top: -7.5rem;
}
@media screen and (max-width: 991px) {
  .sec-product .sec-ttl {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .sec-product .sec-ttl {
    padding-top: 40px;
    margin-top: -40px;
  }
}
.sec-product .product-list {
  margin-top: 3em;
}
@media screen and (max-width: 991px) {
  .sec-product .product-list {
    margin-top: 2em;
  }
}
.sec-product .product-list ul {
  display: flex;
  flex-wrap: wrap;
}
.sec-product .product-list ul .product-list-item {
  width: calc(50% - 1em);
  margin-right: 2em;
  margin-top: 2em;
}
.sec-product .product-list ul .product-list-item:nth-of-type(2n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .sec-product .product-list ul .product-list-item {
    width: 100%;
    margin-right: 0;
    margin-top: 1em;
  }
}
.sec-product .product-list ul .product-list-item a {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 2px 2px 12px rgba(60, 60, 60, 0.1);
  overflow: clip;
}
.sec-product .product-list ul .product-list-item a::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  display: block;
  background-color: #222;
  opacity: 0.6;
}
.sec-product .product-list ul .product-list-item a .item-bgimg {
  width: 100%;
  height: max(20rem, 200px);
  overflow: clip;
}
@media screen and (max-width: 991px) {
  .sec-product .product-list ul .product-list-item a .item-bgimg {
    height: 240px;
  }
}
@media screen and (max-width: 767px) {
  .sec-product .product-list ul .product-list-item a .item-bgimg {
    height: 160px;
  }
}
.sec-product .product-list ul .product-list-item a .item-bgimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  transition: all 0.3s ease;
}
.sec-product .product-list ul .product-list-item a .item-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  margin-top: 1em;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .sec-product .product-list ul .product-list-item a .item-label p {
    font-size: 0.875em;
  }
}
.sec-product .product-list ul .product-list-item a .item-name {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  margin-bottom: 1em;
  margin-left: 1em;
}
.sec-product .product-list ul .product-list-item a .item-name h3 {
  color: #fff;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
}
.sec-product .product-list ul .product-list-item a .item-arrow {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  margin-bottom: 0.8em;
  margin-right: 0.8em;
  color: #384c8b;
  background-color: #fff;
  font-size: max(1.5rem, 1.125em);
  width: 2.4em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sec-product .product-list ul .product-list-item a .item-arrow {
    font-size: 0.9em;
  }
}
.sec-product .product-list ul .product-list-item a .item-arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec-product .product-list ul .product-list-item a:hover .item-bgimg img {
  transform: scale(1.05);
}
.sec-product .product-list ul .product-list-item a:hover .item-arrow {
  color: #fff;
  background-color: #384c8b;
}
.sec-product .sec-link {
  margin-top: 4em;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .sec-product .sec-link {
    margin-top: 2em;
  }
}
.sec-product .sec-link .__linkbtn01 {
  margin: 0 auto;
}

.sec-recruit a .sec-inner {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 2px 2px 12px rgba(60, 60, 60, 0.1);
  overflow: clip;
  padding: 6.25rem 60px;
}
@media screen and (max-width: 991px) {
  .sec-recruit a .sec-inner {
    padding: 48px;
  }
}
@media screen and (max-width: 767px) {
  .sec-recruit a .sec-inner {
    padding: 48px 24px 30px;
  }
}
.sec-recruit a .sec-inner::before, .sec-recruit a .sec-inner::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  display: block;
  background-image: url(../images/bg-gradation.png);
  background-size: cover;
  background-position: 50% 40%;
  transition: all 0.36s ease;
}
.sec-recruit a .sec-inner::before {
  opacity: 0.9;
}
.sec-recruit a .sec-inner::after {
  transform: scaleY(-1);
  opacity: 0;
}
.sec-recruit a .sec-inner .flex-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sec-recruit a .sec-inner .flex-wrap {
    display: block;
  }
}
.sec-recruit a .sec-inner .flex-wrap .sec-content {
  position: relative;
}
.sec-recruit a .sec-inner .flex-wrap .sec-content .sec-txt {
  margin-top: 2em;
}
.sec-recruit a .sec-inner .flex-wrap .sec-content .sec-txt h3 {
  color: #333;
}
.sec-recruit a .sec-inner .flex-wrap .sec-content .sec-txt p {
  margin-top: 1em;
}
.sec-recruit a .sec-inner .flex-wrap .link-arrow {
  position: relative;
  color: #fff;
  background-color: #0ba652;
  font-size: max(1.6875rem, 1.125em);
  width: 3em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  pointer-events: auto;
  transition: all 0.36s ease;
}
@media screen and (max-width: 767px) {
  .sec-recruit a .sec-inner .flex-wrap .link-arrow {
    width: 2.2em;
    margin-left: auto;
    margin-top: 2em;
    margin-right: -0.6em;
    margin-bottom: -0.6em;
  }
}
.sec-recruit a .sec-inner .flex-wrap .link-arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec-recruit a:hover .sec-inner::before {
  opacity: 0;
}
.sec-recruit a:hover .sec-inner::after {
  opacity: 1;
}
.sec-recruit a:hover .sec-inner .flex-wrap .link-arrow {
  background-color: #333;
}/*# sourceMappingURL=index.css.map */