@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
:root {
  --vw: 1vw;
}

/*----------------------------------------------------
  ローディング
----------------------------------------------------*/
.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background-color: #fff;
}
.loading .loading-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .loading .loading-area {
    width: 240px;
  }
  .loading .loading-area img {
    width: 240px !important;
  }
}
.loading img.loading-cacth {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: loadingAnime2;
  opacity: 0;
  animation-delay: 0.5s;
  margin-bottom: 2em;
}
@media screen and (max-width: 767.98px) {
  .loading img.loading-cacth {
    width: 140px !important;
    position: relative;
  }
}
.loading .loading-logo {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: loadingAnime;
  opacity: 0;
  animation-delay: 1.25s;
}
@keyframes loadingAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loadingAnime2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    margin-top: -20px;
  }
}

/*----------------------------------------------------
  ヘッダー上書き
----------------------------------------------------*/
header {
  position: absolute;
  background-color: transparent;
  -webkit-transition: none;
  transition: none;
  top: 1.5rem;
}

#header {
  opacity: 1;
}

.fixed-op {
  opacity: 0 !important;
}

#header.fixed {
  opacity: 1 !important;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  top: 0;
}

/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.mainimage-area {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .mainimage-area {
    height: 120vw;
  }
}
.mainimage-area .catch {
  position: absolute;
  z-index: 1;
  right: 61%;
  left: 8rem;
  width: 45vw;
}
@media screen and (max-width: 1390px) {
  .mainimage-area .catch {
    right: auto;
    left: 2rem;
    width: 38vw;
  }
}
@media screen and (max-width: 767.98px) {
  .mainimage-area .catch {
    top: 3rem;
    width: 80vw;
  }
}
.mainimage-area .mask {
  clip-path: url(#svgPath);
  align-content: center;
  display: inline-block;
  max-height: 100%;
  position: absolute;
  left: 36%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1390px) {
  .mainimage-area .mask {
    width: 63vw;
    right: 3rem;
  }
}
@media screen and (max-width: 767.98px) {
  .mainimage-area .mask {
    top: 52vw;
    width: 90vw;
    left: 5%;
    transform: none;
  }
}
@media screen and (max-width: 1390px) {
  .mainimage-area svg.main-mask clipPath {
    width: 76vw;
  }
}
.mainimage-area svg.fig-circle {
  width: 750px;
  height: auto;
  position: absolute;
  z-index: -1;
  bottom: -100px;
  right: 31%;
}
@media screen and (max-width: 1390px) {
  .mainimage-area svg.fig-circle {
    width: 40vw;
  }
}
@media screen and (max-width: 767.98px) {
  .mainimage-area svg.fig-circle {
    width: 54vw;
  }
}
.mainimage-area svg.fig-circle02 {
  width: 750px;
  height: auto;
  position: absolute;
  z-index: -1;
  top: -75px;
  left: 70%;
}
@media screen and (max-width: 1390px) {
  .mainimage-area svg.fig-circle02 {
    width: 40vw;
  }
}
@media screen and (max-width: 767.98px) {
  .mainimage-area svg.fig-circle02 {
    width: 52vw;
    top: 5rem;
  }
}

/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.top-title-sub {
  color: #008C4F;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5em 0 1em;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .top-title-sub {
    font-size: 1.6rem;
    margin-bottom: 0.8em;
  }
}
.top-title-sub::before {
  content: "";
  display: inline-block;
  background-color: #FDD000;
  width: 2.6em;
  height: 2.6em;
  border-radius: 50%;
  position: absolute;
  left: -0.8em;
  top: -0.5em;
  z-index: -1;
}

.top-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #008C4F;
  margin-bottom: 1em;
  -webkit-text-stroke: 4px rgb(239, 238, 234);
  text-stroke: 4px rgb(239, 238, 234);
  paint-order: stroke;
}
@media screen and (max-width: 767.98px) {
  .top-title {
    line-height: 1.4;
    font-size: 2.4rem;
    margin-bottom: 0.7em;
  }
}

a.btn-home {
  display: inline-flex;
  align-items: center;
  padding: 1.5rem 7rem 1.5rem 4rem;
  border-radius: 1.5rem;
  border: 2px solid #008C4F;
  color: #222;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  font-size: 1.8rem;
  position: relative;
  min-width: 290px;
  max-width: 100%;
  height: 92px;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767.98px) {
  a.btn-home {
    font-size: 1.5rem;
    padding-left: 3rem;
    min-width: 270px;
    height: 78px;
    margin-top: 2rem;
  }
}
a.btn-home::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #008C4F;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  a.btn-home::before {
    width: 2.6rem;
    height: 2.6rem;
  }
}
a.btn-home::after {
  content: "";
  display: inline-block;
  border: 6px solid transparent;
  border-right: 0;
  border-left: 8px solid #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
}
@media screen and (max-width: 767.98px) {
  a.btn-home::after {
    border-width: 4px;
    border-left-width: 6px;
  }
}
a.btn-home:hover {
  color: #008C4F;
}

.button-area {
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  .button-area-sp {
    text-align: center;
  }
}

/*----------------------------------------------------
  トップかわら版
----------------------------------------------------*/
.top-kawara-area {
  padding-bottom: 5rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767.98px) {
  .top-kawara-area {
    padding-bottom: 3rem;
  }
}
.top-kawara-area .top-kawara {
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .top-kawara-area .top-kawara {
    display: block;
  }
}
.top-kawara-area .top-kawara .title {
  width: 8em;
  color: #008C4F;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767.98px) {
  .top-kawara-area .top-kawara .title {
    width: auto;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.top-kawara-area .top-kawara .contents {
  flex: 1 auto;
}
.top-kawara-area .top-kawara .contents .kawara-area {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 767.98px) {
  .top-kawara-area .top-kawara .contents .kawara-area {
    text-align: center;
  }
}
.top-kawara-area .top-kawara .contents .kawara-area a {
  color: #222;
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 767.98px) {
  .top-kawara-area .top-kawara .contents .kawara-area a {
    display: block;
  }
}
.top-kawara-area .top-kawara .contents .kawara-area a .image img {
  width: 128px;
  height: auto;
  border-radius: 50%;
  margin-right: 2rem;
}
@media screen and (max-width: 767.98px) {
  .top-kawara-area .top-kawara .contents .kawara-area a .image img {
    width: 96px;
    display: block;
    margin: 1rem auto;
  }
}
.top-kawara-area .top-kawara .contents .kawara-area a p {
  flex: 1;
}
.top-kawara-area .top-kawara .contents .kawara-area a p a {
  color: #222;
}

/*----------------------------------------------------
  私たちについて
----------------------------------------------------*/
.about-wrap {
  position: relative;
  padding: 10rem 0;
  overflow: hidden;
}
@media screen and (max-width: 1279.98px) {
  .about-wrap {
    padding-top: 9vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}
@media screen and (max-width: 767.98px) {
  .about-wrap {
    min-height: 800px;
    margin-bottom: 6em;
  }
}
@media screen and (max-width: 480.98px) {
  .about-wrap {
    min-height: 640px;
    margin-bottom: 3em;
  }
}
.about-wrap .text-block {
  max-width: 640px;
}
.about-wrap .text-block .top-title + p {
  line-height: 2.5;
  -webkit-text-stroke: 4px rgb(239, 238, 234);
  text-stroke: 4px rgb(239, 238, 234);
  paint-order: stroke;
}
@media screen and (max-width: 767.98px) {
  .about-wrap .text-block .top-title + p {
    line-height: 2;
  }
}
.about-wrap .image-block {
  height: 100%;
  width: auto;
  position: absolute;
  bottom: 0px;
  z-index: -1;
  overflow: hidden;
  right: -2rem;
  width: 58vw;
}
@media screen and (max-width: 1199.98px) {
  .about-wrap .image-block {
    width: 65vw;
  }
}
@media screen and (max-width: 767.98px) {
  .about-wrap .image-block {
    height: auto;
    width: auto;
    bottom: 1rem;
    top: auto;
    right: -0.5em;
  }
}
.about-wrap .image-block img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: 5rem;
  margin-top: 10rem;
}
@media screen and (max-width: 1199.98px) {
  .about-wrap .image-block img {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 767.98px) {
  .about-wrap .image-block img {
    width: 90vw;
    min-width: 320px;
    margin-right: 0;
    margin-left: 3rem;
    margin-top: 13vw;
  }
}
.about-wrap .image-block svg {
  position: absolute;
  top: 0px;
  left: 15px;
  z-index: -1;
}
@media screen and (max-width: 1199.98px) {
  .about-wrap .image-block svg {
    width: 62vw;
    height: 62vw;
  }
}

/*----------------------------------------------------
  取り扱いメーカー
----------------------------------------------------*/
.manufacturer-wrap {
  padding: 10rem 0;
  position: relative;
}
.manufacturer-wrap .top-title {
  text-align: center;
}
.manufacturer-wrap .manufacturer-slider {
  overflow: hidden;
  margin: 6rem 0 4rem;
}
@media screen and (max-width: 767.98px) {
  .manufacturer-wrap .manufacturer-slider {
    margin: 4rem 0 3rem;
  }
}
.manufacturer-wrap .manufacturer-slider .swiper-wrapper {
  transition-timing-function: linear;
  width: calc(var(--vw) * 100);
}
.manufacturer-wrap .manufacturer-slider .swiper-slide img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  max-width: 100%;
  height: auto;
}
.manufacturer-wrap svg {
  position: absolute;
  top: 30%;
  left: -200px;
  z-index: -1;
  width: 660px;
}
@media screen and (max-width: 1199.98px) {
  .manufacturer-wrap svg {
    width: 62vw;
    height: 62vw;
    top: 50%;
    left: -25vw;
  }
}

/*----------------------------------------------------
  企業情報
----------------------------------------------------*/
.company-wrap {
  position: relative;
  padding: 10rem 0;
}
@media screen and (max-width: 767.98px) {
  .company-wrap {
    padding: 5rem 0;
  }
}
.company-wrap svg {
  position: absolute;
  width: 500px;
  height: auto;
  top: -30px;
  left: -150px;
  z-index: -1;
}
@media screen and (max-width: 1199.98px) {
  .company-wrap svg {
    width: 62vw;
    height: 62vw;
  }
}

.text-center {
  text-align: center;
}

.company-list {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .company-list {
    flex-wrap: wrap;
    margin-top: 5rem;
    margin-bottom: 0;
  }
}
.company-list > div {
  padding: 0 1.5rem;
  flex: 1 auto;
}
@media screen and (max-width: 767.98px) {
  .company-list > div {
    flex-basis: 100%;
  }
}
.company-list > div a {
  display: block;
  color: #222;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767.98px) {
  .company-list > div a {
    max-width: 280px;
    margin: 0 auto 3rem;
  }
}
.company-list > div a:hover {
  color: #008C4F;
}
.company-list > div a img {
  border-radius: 1.5rem;
}
.company-list > div a p {
  display: inline-block;
  padding-right: 4.5rem;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.5rem;
}
@media screen and (max-width: 991.98px) {
  .company-list > div a p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .company-list > div a p {
    font-size: 1.6rem;
  }
}
.company-list > div a p::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 767.98px) {
  .company-list > div a p::before {
    width: 2.6rem;
    height: 2.6rem;
  }
}
.company-list > div a p::after {
  content: "";
  display: inline-block;
  border: 6px solid transparent;
  border-right: 0;
  border-left: 8px solid #008C4F;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
}
@media screen and (max-width: 767.98px) {
  .company-list > div a p::after {
    border-width: 4px;
    border-left-width: 6px;
  }
}

.txt-company-hokunyu {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 991.98px) {
  .txt-company-hokunyu {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767.98px) {
  .txt-company-hokunyu {
    font-size: 1.6rem;
  }
}

/*----------------------------------------------------
  採用情報
----------------------------------------------------*/
.recruit-wrap {
  padding: 8rem 0;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap {
    padding: 6rem 0 8rem;
  }
}
.recruit-wrap .text-block {
  width: 35%;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .text-block {
    width: auto;
  }
}
.recruit-wrap .image-block {
  width: auto;
  position: absolute;
  top: 8rem;
  z-index: -1;
  overflow: hidden;
  right: 45%;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .image-block {
    position: relative;
    right: auto;
    margin-left: -10%;
    margin-right: 2rem;
    top: 0;
  }
}
.recruit-wrap .image-block img {
  display: block;
  height: auto;
  margin-left: auto;
}
@media screen and (max-width: 767.98px) {
  .recruit-wrap .image-block img {
    max-width: 100%;
  }
}
.recruit-wrap svg {
  position: absolute;
  top: -30%;
  right: -400px;
  z-index: -2;
  width: 660px;
}
@media screen and (max-width: 1199.98px) {
  .recruit-wrap svg {
    width: 62vw;
    height: 62vw;
    top: 0;
    right: -25vw;
  }
}

/*----------------------------------------------------
  お知らせ
----------------------------------------------------*/
.news-wrap {
  margin-bottom: 7rem;
}
@media screen and (max-width: 991.98px) {
  .news-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767.98px) {
  .news-wrap {
    margin-bottom: 4rem;
  }
}
.news-wrap ul.news-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.news-wrap ul.news-list li {
  margin-bottom: 3rem;
  flex: 0 0 50%;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li {
    flex-basis: 100%;
    padding: 0;
    margin-bottom: 1.5rem;
  }
}
.news-wrap ul.news-list li a {
  display: flex;
  padding: 1.5rem;
  background-color: #fff;
  color: #222;
  text-decoration: none;
  transition: 0.1s;
  border-radius: 1.5rem;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li a {
    padding: 1.2rem;
    border-radius: 1.2rem;
    height: auto;
  }
}
.news-wrap ul.news-list li a:hover {
  opacity: 0.7;
}
.news-wrap ul.news-list li a .image {
  width: 150px;
  background-color: #fff;
}
@media screen and (max-width: 991.98px) {
  .news-wrap ul.news-list li a .image {
    width: 130px;
  }
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li a .image {
    width: 100px;
  }
}
@media screen and (max-width: 551.98px) {
  .news-wrap ul.news-list li a .image {
    width: 80px;
  }
}
.news-wrap ul.news-list li a .image img {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: auto;
}
.news-wrap ul.news-list li a .contents {
  padding-left: 2rem;
  padding-right: 0.5rem;
  flex: 1;
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li a .contents {
    padding-left: 1.5rem;
    padding-right: 0;
  }
}
.news-wrap ul.news-list li a .contents .title {
  color: #008C4F;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li a .contents .title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
.news-wrap ul.news-list li a .contents .time-area {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li a .contents .time-area {
    margin-bottom: 1.2rem;
  }
}
.news-wrap ul.news-list li a .contents .time-area time {
  color: #666;
  font-size: 0.9em;
}
.news-wrap ul.news-list li a .contents .time-area .label {
  display: inline-block;
  border: 1px solid #008C4F;
  color: #008C4F;
  font-size: 0.8em;
  line-height: 1.4;
  margin-left: 1.5rem;
  padding: 0.1rem 0.7em;
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li a .contents .time-area .label {
    margin-left: 1rem;
  }
}
.news-wrap ul.news-list li a .contents .time-area + div {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
}
@media screen and (max-width: 767.98px) {
  .news-wrap ul.news-list li a .contents .time-area + div {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=home.css.map */