@charset "UTF-8";
/**
 * Swiper 14.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 20, 2026
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-slides-offset-before);
  scroll-margin-inline-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper > .swiper-slide:last-child {
  margin-inline-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-slides-offset-before);
  scroll-margin-block-start: var(--swiper-slides-offset-before);
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper > .swiper-slide:last-child {
  margin-block-end: var(--swiper-slides-offset-after);
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
.swiper-pagination-bullet:is(button) {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.fv {
  --swiper-pagination-color: #16c47f;
  --swiper-pagination-bullet-inactive-color: #1f1f1f;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-horizontal-gap: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 8.2rem;
}
.fv .inner {
  position: relative;
  display: flow-root;
  min-height: 72.5rem;
}
.fv .fv_slider {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100vw;
  height: 64rem;
  transform: translateX(-50%);
}
.fv .fv_slider .swiper-slide {
  width: max(72rem, 50vw);
  height: 100%;
}
.fv .fv_slider .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.fv .fv_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.fv .fv_slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  transition: opacity 0.4s ease;
}
.fv .fv_slider .swiper-slide.swiper-slide-active::after {
  background: rgba(226, 248, 243, 0.55);
  opacity: 0.2;
}
.fv .fv_pager {
  position: absolute;
  top: 67rem;
  bottom: auto;
  left: 50%;
  z-index: 2;
  width: auto;
  transform: translateX(-50%);
}
.fv .fv_body {
  position: absolute;
  top: 27.4rem;
  left: 4rem;
  z-index: 2;
}
.fv .fv_body .fv_catch {
  margin-bottom: 2.4rem;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.35;
  color: #000;
  letter-spacing: 0.03em;
  text-shadow: 0 0 6px rgba(226, 248, 243, 0.25);
}
.fv .fv_body .fv_catch .fv_catch-hl {
  color: #ffffff;
}
.fv .fv_body .fv_lead {
  margin-bottom: 4rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #000;
  text-shadow: 0 0 8px rgba(226, 248, 243, 0.25);
}
.fv .fv_body .fv_btns {
  display: flex;
  gap: 1rem;
}
.fv .fv_body .fv_btns .fv_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  padding: 0 4.4rem;
  background: #16c47f;
  border-radius: 100vmax;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.fv .fv_body .fv_btns .fv_btn::after {
  content: "→";
  margin-left: 0.8rem;
}
.fv .fv_body .fv_btns .fv_btn:hover {
  opacity: 0.8;
}
.fv .fv_body .fv_btns .fv_btn.-biz {
  background: #22b24b;
}
.fv .fv_news {
  position: relative;
  z-index: 2;
  width: calc(50vw - 50% + 44rem);
  margin-top: 46rem;
  margin-left: calc(100% - 44rem);
  padding: 3.2rem 0 1rem 4.2rem;
  background: #ffffff;
  border-radius: var(--radius-lg) 0 0 0;
  min-height: 31.6rem;
}
.fv .fv_news .news_empty {
  display: none;
  padding: 2.2rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #22b24b;
  text-align: center;
  max-width: 41rem;
}
.fv .fv_news:not(:has(.news_list)) .news_empty {
  display: block;
}
.fv .fv_news::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14rem;
  width: 4rem;
  height: 4rem;
  transform: translate(-100%, 0);
  background: url("/assets/images/common/curve.svg") no-repeat;
}
.fv .fv_news .fv_news-head {
  width: 41rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.fv .fv_news .fv_news-head .fv_news-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f1f1f;
}
.fv .fv_news .fv_news-head .fv_news-more {
  padding: 0.4rem 0.1rem 0.5rem;
  border-bottom: 1px solid #229050;
  font-size: 1.4rem;
  font-weight: 700;
  color: #229050;
  transition: opacity 0.3s ease;
}
.fv .fv_news .fv_news-head .fv_news-more::after {
  content: "→";
  margin-left: 0.6rem;
}
.fv .fv_news .fv_news-head .fv_news-more:hover {
  opacity: 0.6;
}
.fv .fv_news .news_list {
  width: 41rem;
}
.fv .fv_news .news_list .news_item {
  border-bottom: 1px solid #d3d6d9;
}
.fv .fv_news .news_list .news_item:nth-child(n+3) {
  display: none;
}
.fv .fv_news .news_list .news_item .item_link {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2.2rem 0 2.6rem 0.2rem;
  transition: opacity 0.3s ease;
}
.fv .fv_news .news_list .news_item .item_link:hover {
  opacity: 0.6;
}
.fv .fv_news .news_list .news_item .item_link .item_meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fv .fv_news .news_list .news_item .item_link .item_meta .item_date {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(31, 31, 31, 0.4);
}
.fv .fv_news .news_list .news_item .item_link .item_meta .item_tag {
  padding: 0.4rem 1.4rem 0.5rem;
  background: #229050;
  border-radius: 100vmax;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
}
.fv .fv_news .news_list .news_item .item_link .item_meta .item_tag.info {
  background: #9ed63a;
}
.fv .fv_news .news_list .news_item .item_link .item_meta .item_tag.recruit {
  background: #229050;
}
.fv .fv_news .news_list .news_item .item_link .item_meta .item_tag.business {
  background: #ece852;
  color: #1f1f1f;
}
.fv .fv_news .news_list .news_item .item_link .item_ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1f1f1f;
}

.business {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.business .inner {
  padding-top: 4.4rem;
  padding-bottom: 10rem;
}
.business .business_head {
  position: relative;
  z-index: 1;
  margin-bottom: 3.8rem;
}
.business .business_head::before {
  content: "";
  position: absolute;
  top: 6rem;
  right: -10rem;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  background: url("/assets/images/common/deco-circle-g.svg") no-repeat center/contain;
}
.business .business_head .business_lead {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(31, 31, 31, 0.4);
}
.business .business_head .business_more {
  position: absolute;
  top: 14rem;
  right: 2rem;
  z-index: 1;
  padding: 1rem 0;
  border-bottom: 1px solid #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.business .business_head .business_more::after {
  content: "→";
  margin-left: 0.8rem;
}
.business .business_head .business_more:hover {
  opacity: 0.8;
}
.business .biz_list {
  display: flex;
  position: relative;
  z-index: 1;
  gap: 2.4rem;
}
.business .biz_list::before {
  content: "";
  position: absolute;
  bottom: -4rem;
  left: -9.6rem;
  z-index: -1;
  width: 14.7rem;
  height: 15.1rem;
  background: url("/assets/images/common/deco-dots.svg") no-repeat center/contain;
}
.business .biz_list .biz_item {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 4px solid #16c47f;
  border-radius: var(--radius-lg);
  background: #16c47f;
  overflow: hidden;
}
.business .biz_list .biz_item .item_img {
  height: 18rem;
}
.business .biz_list .biz_item .item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.business .biz_list .biz_item .item_body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.4rem;
  padding: 2.4rem 2.5rem 2.8rem;
}
.business .biz_list .biz_item .item_body .item_ttl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
}
.business .biz_list .biz_item .item_body .item_ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ffffff;
}
.business .biz_list .biz_item .item_body .item_txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  color: #ffffff;
}

.location {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.location .inner {
  padding-top: 4.4rem;
  padding-bottom: 10rem;
}
.location .location_head {
  position: relative;
  z-index: 1;
  margin-bottom: 3.8rem;
}
.location .location_head::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -10rem;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  background: url("/assets/images/common/deco-circle-g.svg") no-repeat center/contain;
}
.location .location_head .location_lead {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(31, 31, 31, 0.4);
}
.location .location_head .location_more {
  position: absolute;
  top: 9.9rem;
  right: 2rem;
  z-index: 1;
  padding: 1rem 0;
  border-bottom: 1px solid #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.location .location_head .location_more::after {
  content: "→";
  margin-left: 0.8rem;
}
.location .location_head .location_more:hover {
  opacity: 0.8;
}
.location .card_list {
  display: flex;
  position: relative;
  z-index: 1;
  gap: 2.4rem;
}
.location .card_list::after {
  content: "";
  position: absolute;
  bottom: 6.3rem;
  left: -9.5rem;
  z-index: -1;
  width: 12.2rem;
  height: 15.7rem;
  background: url("/assets/images/common/deco-dots-ring.svg") no-repeat center/contain;
}
.location .card_list .card {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.location .card_list .card .card_photo {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 20rem;
}
.location .card_list .card .card_photo picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.location .card_list .card .card_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.location .card_list .card .card_photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(31, 31, 31, 0.1);
}
.location .card_list .card .card_photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(34, 144, 80, 0) 50%, rgba(34, 144, 80, 0.65) 100%);
  mix-blend-mode: multiply;
}
.location .card_list .card .card_photo .card_label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0 3rem 2rem;
}
.location .card_list .card .card_photo .card_label .label_en {
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  font-style: normal;
  color: #9ed63a;
  letter-spacing: 0.1em;
}
.location .card_list .card .card_photo .card_label .label_ttl {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}
.location .card_list .card .card_map {
  height: 17.9rem;
}
.location .card_list .card .card_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.location .card_list .card .card_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem;
  background: #f0f3f6;
}
.location .card_list .card .card_body .card_address {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #1f1f1f;
  text-align: center;
  font-style: normal;
}
.location .card_list .card .card_body .card_address a {
  color: inherit;
  transition: opacity 0.3s ease;
}
.location .card_list .card .card_body .card_address a:hover {
  opacity: 0.6;
}
.location .card_list .card .card_body .card_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem 1rem 3rem;
  background: #1f1f1f;
  border-radius: 100vmax;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.location .card_list .card .card_body .card_btn::after {
  content: "→";
  margin-left: 0.8rem;
}
.location .card_list .card .card_body .card_btn:hover {
  opacity: 0.8;
}

.recruit {
  position: relative;
  overflow: hidden;
  background: #16c47f;
}
.recruit .inner {
  padding-top: 6.1rem;
  padding-bottom: 10rem;
}
.recruit .recruit_head {
  position: relative;
  z-index: 1;
  margin-bottom: 3.8rem;
}
.recruit .recruit_head::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -10rem;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  background: url("/assets/images/common/deco-circle-w.svg") no-repeat center/contain;
}
.recruit .recruit_head .sec_ttl {
  margin-bottom: 2rem;
}
.recruit .recruit_head .sec_ttl .en_ttl {
  border-color: #ece852;
  color: #ece852;
}
.recruit .recruit_head .sec_ttl .sec_ttl-txt {
  color: #ffffff;
}
.recruit .recruit_head .recruit_lead {
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
}
.recruit .recruit_head .recruit_more {
  position: absolute;
  top: 9.9rem;
  right: 2rem;
  z-index: 1;
  padding: 1rem 0;
  border-bottom: 1px solid #229050;
  font-size: 1.4rem;
  font-weight: 700;
  color: #229050;
  transition: opacity 0.3s ease;
}
.recruit .recruit_head .recruit_more::after {
  content: "→";
  margin-left: 0.8rem;
}
.recruit .recruit_head .recruit_more:hover {
  opacity: 0.7;
}
.recruit .recruit_grid {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2.4rem;
}
.recruit .recruit_grid::before {
  content: "";
  position: absolute;
  bottom: -6.4rem;
  left: -9.6rem;
  z-index: -1;
  width: 14.7rem;
  height: 15.1rem;
  background: url("/assets/images/common/deco-dots.svg") no-repeat center/contain;
}
.recruit .recruit_grid .recruit_side {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2.4rem;
}
.recruit .recruit_card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.recruit .recruit_card.-main {
  flex: 0 0 66.2rem;
}
.recruit .recruit_card.-sub .card_content {
  gap: 1rem;
}
.recruit .recruit_card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit .recruit_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.25);
}
.recruit .recruit_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34, 144, 80, 0) 50%, #229050 100%);
}
.recruit .recruit_card .card_content {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  flex-direction: column;
  gap: 2rem;
  padding: 0 4rem 3rem;
}
.recruit .recruit_card .card_ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}
.recruit .recruit_card .card_txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
}
.recruit .recruit_card .card_tags {
  display: flex;
  gap: 1rem;
}
.recruit .recruit_card .card_tags .tag {
  padding: 0.4rem 1.5rem 0.5rem;
  background: #ece852;
  border-radius: 100vmax;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1f1f1f;
}

.voice {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.voice .inner {
  position: relative;
  padding-top: 4.4rem;
  padding-bottom: 10rem;
}
.voice .inner::before {
  content: "";
  position: absolute;
  top: 41.4rem;
  left: -9.5rem;
  z-index: -1;
  width: 12.2rem;
  height: 15.7rem;
  background: url("/assets/images/common/deco-dots-ring.svg") no-repeat center/contain;
}
.voice .voice_head {
  position: relative;
  z-index: 1;
  margin-bottom: 3.8rem;
}
.voice .voice_head::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -10rem;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  background: url("/assets/images/common/deco-circle-g.svg") no-repeat center/contain;
}
.voice .voice_head .voice_lead {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(31, 31, 31, 0.4);
}
.voice .voice_slider {
  position: relative;
  left: 50%;
  z-index: 1;
  width: 100vw;
  margin-bottom: 4rem;
  transform: translateX(-50%);
}
.voice .voice_slider .staff_card_list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  grid-template-rows: auto auto auto 1fr;
  align-items: stretch;
}
.voice .voice_slider .staff_card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  width: 37rem;
  height: auto;
  border: 4px solid #16c47f;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #16c47f;
}
.voice .voice_slider .staff_card .card_photo {
  grid-row: 1;
  position: relative;
  height: 20rem;
  background-color: #ffffff;
}
.voice .voice_slider .staff_card .card_photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice .voice_slider .staff_card .card_photo .card_tag {
  position: absolute;
  top: 2rem;
  right: 2.4rem;
  padding: 0.45rem 1.5rem 0.45rem;
  background: #ece852;
  border-radius: 100vmax;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f1f1f;
}
.voice .voice_slider .staff_card .card_body {
  display: grid;
  grid-row: 2/span 3;
  grid-template-rows: subgrid;
  row-gap: 0.7rem;
  padding: 2.1rem 3rem 3rem;
  background: #16c47f;
}
.voice .voice_slider .staff_card .card_body .card_name {
  grid-row: 1;
  font-weight: 700;
  color: #ffffff;
}
.voice .voice_slider .staff_card .card_body .card_name .name_main {
  font-size: 2.2rem;
}
.voice .voice_slider .staff_card .card_body .card_role {
  grid-row: 2;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #ece852;
}
.voice .voice_slider .staff_card .card_body .card_txt {
  grid-row: 3;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  text-align: justify;
}
.voice .voice_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voice .voice_foot .voice_nav {
  display: flex;
  gap: 1.5rem;
}
.voice .voice_foot .voice_nav .voice_nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  background: #f0f3f6;
  border: none;
  border-radius: 100vmax;
  transition: background-color 0.3s ease;
}
.voice .voice_foot .voice_nav .voice_nav-btn img {
  transition: filter 0.3s ease;
}
.voice .voice_foot .voice_nav .voice_nav-btn.-prev img {
  transform: scaleX(-1);
}
.voice .voice_foot .voice_nav .voice_nav-btn:hover {
  background: #16c47f;
}
.voice .voice_foot .voice_nav .voice_nav-btn:hover img {
  filter: invert(1);
}
.voice .voice_foot .voice_more {
  position: absolute;
  top: 14.3rem;
  right: 6rem;
  z-index: 1;
  padding: 1rem 0;
  border-bottom: 1px solid #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.voice .voice_foot .voice_more::after {
  content: "→";
  margin-left: 0.8rem;
}
.voice .voice_foot .voice_more:hover {
  opacity: 0.8;
}
.voice .voice_foot .voice_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  padding: 0 4.4rem;
  background: #229050;
  border-radius: 100vmax;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.voice .voice_foot .voice_cta::after {
  content: "→";
  margin-left: 0.8rem;
}
.voice .voice_foot .voice_cta:hover {
  opacity: 0.8;
}

.benefit {
  position: relative;
  overflow: hidden;
  background: #f0f3f6;
}
.benefit .inner {
  padding-top: 4.3rem;
  padding-bottom: 9.9rem;
}
.benefit .benefit_head {
  position: relative;
  z-index: 1;
  margin-bottom: 3.8rem;
}
.benefit .benefit_head::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -10rem;
  z-index: -1;
  width: 30rem;
  height: 30rem;
  background: url("/assets/images/common/deco-circle-g.svg") no-repeat center/contain;
}
.benefit .benefit_head .benefit_lead {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(31, 31, 31, 0.4);
}
.benefit .benefit_head .benefit_more {
  position: absolute;
  top: 9.9rem;
  right: 2rem;
  z-index: 1;
  padding: 1rem 0;
  border-bottom: 1px solid #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.benefit .benefit_head .benefit_more::after {
  content: "→";
  margin-left: 0.8rem;
}
.benefit .benefit_head .benefit_more:hover {
  opacity: 0.8;
}
.benefit .benefit_grid {
  display: flex;
  position: relative;
  z-index: 1;
  gap: 2.4rem;
}
.benefit .benefit_grid::before {
  content: "";
  position: absolute;
  bottom: -6.7rem;
  left: -9.6rem;
  z-index: -1;
  width: 14.7rem;
  height: 15.1rem;
  background: url("/assets/images/common/deco-dots.svg") no-repeat center/contain;
}
.benefit .benefit_grid .benefit_list {
  display: grid;
  flex: 0 0 43.4rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 2.5rem 2.4rem;
}
.benefit .benefit_grid .benefit_list .benefit_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 2rem;
}
.benefit .benefit_grid .benefit_list .benefit_item .benefit_icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
}
.benefit .benefit_grid .benefit_list .benefit_item .benefit_icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.benefit .benefit_grid .benefit_list .benefit_item .item_ttl {
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #16c47f;
}
.benefit .benefit_grid .benefit_list .benefit_item .item_txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: justify;
  color: #4f4f4f;
}
.benefit .benefit_grid .benefit_feature {
  position: relative;
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.benefit .benefit_grid .benefit_feature img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefit .benefit_grid .benefit_feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34, 144, 80, 0) 50%, #229050 100%);
}
.benefit .benefit_grid .benefit_feature .feature_content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 0 4rem 4rem;
}
.benefit .benefit_grid .benefit_feature .feature_ttl {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
}
.benefit .benefit_grid .benefit_feature .feature_ttl img {
  width: 4.3rem;
  height: 4rem;
}
.benefit .benefit_grid .benefit_feature .feature_txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  text-align: justify;
}
@media (max-width: 767px){
  .fv {
    margin-top: 8.5rem;
  }
  .fv .inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .fv .fv_slider {
    position: relative;
    left: auto;
    order: 2;
    height: 40rem;
    margin: 0 -2rem 0.2rem;
    transform: none;
  }
  .fv .fv_slider .swiper-slide {
    width: 88vw;
  }
  .fv .fv_slider .swiper-slide img {
    border-radius: 2.6rem;
    -o-object-position: center;
       object-position: center;
  }
  .fv .fv_slider .swiper-slide::after {
    border-radius: 2.6rem;
  }
  .fv .fv_pager {
    position: static;
    order: 3;
    width: 100%;
    transform: none;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .fv .fv_body {
    display: contents;
  }
  .fv .fv_body .fv_catch {
    order: 1;
    margin-bottom: 1.4rem;
    font-size: 3.6rem;
    text-shadow: none;
  }
  .fv .fv_body .fv_catch .fv_catch-hl {
    color: #16c47f;
  }
  .fv .fv_body .fv_lead {
    order: 4;
    margin-bottom: 1.2rem;
    text-align: justify;
    padding: 0 0.4rem;
    text-shadow: none;
  }
  .fv .fv_body .fv_btns {
    order: 5;
    flex-direction: column;
    margin-bottom: 4.4rem;
  }
  .fv .fv_news .news_empty {
    max-width: initial;
  }
  .fv .fv_news {
    position: static;
    order: 6;
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    min-height: initial;
  }
  .fv .fv_news::before {
    content: none;
  }
  .fv .fv_news .fv_news-head,
  .fv .fv_news .news_list {
    width: 100%;
  }
  .fv .fv_news .news_list .news_item .item_link {
    padding: 1.6rem 0.3rem 1.8rem;
  }
  .fv .fv_news .news_list .news_item .item_link .item_meta .item_tag {
    padding-top: 0.45rem;
  }
  .fv .fv_news .news_list .news_item .item_link .item_ttl {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .business .inner {
    padding-bottom: 0.6rem;
  }
  .business .business_head {
    margin-bottom: 1.8rem;
  }
  .business .business_head::before {
    display: none;
  }
  .business .business_head .business_more {
    display: block;
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    border-color: #16c47f;
    color: #16c47f;
  }
  .business .biz_list {
    flex-direction: column;
    gap: 1.4rem;
  }
  .business .biz_list::before {
    display: none;
  }
  .business .biz_list .biz_item .item_body .item_txt {
    font-size: 1.5rem;
  }
  .location .inner {
    padding-bottom: 4.4rem;
  }
  .location .location_head {
    margin-bottom: 1.8rem;
  }
  .location .location_head::before {
    display: none;
  }
  .location .location_head .location_more {
    display: block;
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    border-color: #16c47f;
    color: #16c47f;
  }
  .location .card_list {
    flex-direction: column;
    gap: 1.4rem;
  }
  .location .card_list::after {
    display: none;
  }
  .location .card_list .card .card_photo .card_label {
    padding: 0 2rem 1.4rem;
  }
  .location .card_list .card .card_body {
    padding: 2rem;
  }
  .location .card_list .card .card_body .card_btn {
    padding: 1.4rem 3rem 1.6rem 3.8rem;
  }
  .recruit .inner {
    padding-top: 4.4rem;
    padding-bottom: 6rem;
  }
  .recruit .recruit_head {
    margin-bottom: 1.8rem;
  }
  .recruit .recruit_head::before {
    display: none;
  }
  .recruit .recruit_head .recruit_more {
    display: block;
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    border-color: #ffffff;
    color: #ffffff;
  }
  .recruit .recruit_grid {
    flex-direction: column;
    gap: 1.4rem;
  }
  .recruit .recruit_grid::before {
    display: none;
  }
  .recruit .recruit_grid .recruit_side {
    gap: 1.4rem;
  }
  .recruit .recruit_card {
    height: 32rem;
  }
  .recruit .recruit_card.-main {
    flex: 0 0 auto;
    width: 100%;
  }
  .recruit .recruit_card.-sub {
    height: 24rem;
  }
  .recruit .recruit_card .card_content {
    padding: 0 2.4rem 2.4rem;
    gap: 1rem;
  }
  .voice .inner {
    padding-bottom: 6rem;
  }
  .voice .inner::before {
    display: none;
  }
  .voice .voice_head {
    margin-bottom: 1.8rem;
  }
  .voice .voice_head::before {
    display: none;
  }
  .voice .voice_slider .staff_card {
    width: 30rem;
    border-radius: var(--radius-lg);
  }
  .voice .voice_slider .staff_card .card_photo {
    display: flex;
    justify-content: center;
    height: auto;
    aspect-ratio: 292/183;
  }
  .voice .voice_slider .staff_card .card_photo .card_tag {
    top: 1.4rem;
    right: 1.2rem;
  }
  .voice .voice_slider .staff_card .card_body {
    row-gap: 0.6rem;
    padding: 2rem 2.8rem 2.8rem;
  }
  .voice .voice_slider .staff_card .card_body .card_name {
    line-height: 1;
  }
  .voice .voice_slider .staff_card .card_body .card_txt {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .voice .voice_foot {
    flex-wrap: wrap;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 4.9rem;
  }
  .voice .voice_foot .voice_more {
    position: static;
    padding: 1rem 0.6rem;
    border-color: #16c47f;
    font-size: 1.6rem;
    line-height: normal;
    color: #16c47f;
  }
  .voice .voice_foot .voice_cta {
    width: 100%;
    height: 6.3rem;
  }
  .benefit .inner {
    padding-bottom: 6rem;
  }
  .benefit .benefit_head {
    margin-bottom: 1.8rem;
  }
  .benefit .benefit_head::before {
    display: none;
  }
  .benefit .benefit_head .benefit_more {
    display: block;
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    border-color: #16c47f;
    color: #16c47f;
  }
  .benefit .benefit_grid {
    flex-direction: column-reverse;
  }
  .benefit .benefit_grid::before {
    display: none;
  }
  .benefit .benefit_grid .benefit_list {
    flex: 0 0 auto;
    width: 100%;
    gap: 1.4rem;
  }
  .benefit .benefit_grid .benefit_list .benefit_item .benefit_icon {
    margin-bottom: 0.4rem;
    width: 5rem;
    height: 5rem;
  }
  .benefit .benefit_grid .benefit_list .benefit_item .item_ttl {
    font-size: 1.8rem;
  }
  .benefit .benefit_grid .benefit_list .benefit_item .item_txt {
    line-height: 1.45;
  }
  .benefit .benefit_grid .benefit_feature .feature_content {
    padding: 0 2.4rem 2.4rem;
  }
  .benefit .benefit_grid .benefit_feature .feature_ttl {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .benefit .benefit_grid .benefit_feature .feature_ttl img {
    width: 3.6rem;
    height: auto;
  }
  .benefit .benefit_grid .benefit_feature .feature_txt {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media (min-width: 768px){
  .fv .fv_slider .swiper-slide img[src*=hero-02] {
    -o-object-position: center 65%;
       object-position: center 65%;
  }
  .fv .fv_slider .swiper-slide img[src*=hero-03] {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .fv .fv_slider .swiper-slide img[src*=hero-04] {
    -o-object-position: center 20%;
       object-position: center 20%;
  }
  .fv .fv_slider .swiper-slide img[src*=hero-05] {
    -o-object-position: center 85%;
       object-position: center 85%;
  }
}/*# sourceMappingURL=maps/top.css.map */
