@charset "UTF-8";
body {
  margin: 0;
  min-width: 1300px;
}

.l-container {
  min-width: 1300px;
  position: relative;
}

.l-main {
  margin: 0 auto;
}

.l-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
}
.l-header__inner {
  width: 1300px;
  height: 100px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo {
  width: 229px;
  height: 76px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFF;
}
.l-header__logo img {
  width: 216px;
  height: 39px;
}
.l-header .top_menu {
  list-style: none;
  color: #000;
  font-size: 18px;
  font-family: Inter;
  font-weight: 400;
  word-wrap: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
  margin: 0 auto 0 30px;
}
.l-header .top_menu a {
  color: black;
  text-decoration: none;
}
.l-header .top_menu a:visited {
  color: black;
  text-decoration: none;
}
.l-header .top_menu li a {
  position: relative; /*線の基点*/
}
.l-header .top_menu li.current_page a, .l-header .top_menu li a:hover {
  color: black;
}
.l-header .top_menu li a::after {
  content: "";
  position: absolute; /*絶対配置*/
  bottom: 3px;
  left: -10px;
  width: calc(100% + 20px);
  height: 6px;
  background: #FAF12A;
  border-radius: 9999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  z-index: -1;
}
.l-header .top_menu li.current_page a::after, .l-header .top_menu li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1); /*X方向に拡大*/
  z-index: -1;
}
.l-header .top_menu a:hover {
  z-index: 1;
}
.l-header .button_contact_us {
  color: #178352;
  background: rgba(23, 131, 82, 0.1);
  text-decoration: none;
  width: 200px;
  height: 95px;
  border: 3px solid #178352;
  font-size: 24px;
  font-family: Inter;
  font-weight: 600;
  letter-spacing: 4.8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.l-header .button_contact_us:hover {
  color: white;
  background: #178352;
  text-decoration: none;
}

.l-footer {
  width: 100%;
  margin: 50px 0 0 0;
  padding: 32px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#A0E1FF), to(#BBE8A6));
  background: -webkit-linear-gradient(top, #A0E1FF 0%, #BBE8A6 100%);
  background: linear-gradient(180deg, #A0E1FF 0%, #BBE8A6 100%);
  display: block;
}
.l-footer__inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 16px;
}
.l-footer__breadcrumb {
  font-size: 12px;
  color: #fff;
  font-family: Inter;
  font-weight: 400;
  line-height: 24px;
  width: 100%;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.l-footer__breadcrumb::after {
  content: "";
  width: 375px;
  height: 2px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: -5px;
}
.l-footer__breadcrumb-item + .l-footer__breadcrumb-item::before {
  content: ">";
  margin: 0 0 0 5px;
}
.l-footer__logo {
  width: 229px;
  height: 76px;
  background: #FFF;
}
.l-footer__logo a {
  width: 229px;
  height: 76px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-footer__logo img {
  width: 216px;
  height: 39px;
}
.l-footer__nav {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-footer__nav-list {
  font-size: 18px;
  font-family: Inter;
  font-weight: 400;
  list-style: none;
  margin: 0;
  -webkit-column-count: 4;
     -moz-column-count: 4;
          column-count: 4;
}
.l-footer__nav-link {
  color: #000;
  text-decoration: none;
}
.l-footer__nav-link:hover {
  text-decoration: underline;
}

.button_link {
  position: relative;
  left: 10px; /* 右に10pxずらす */
  top: 10px; /* 下に10pxずらす */
  font-size: 16px;
  color: black;
  background-color: #FAF12A; /* ボタンの背景色 */
  border: none; /* ボタンの枠線を削除 */
  cursor: pointer;
  outline: none;
  z-index: 8;
}

.link {
  position: relative;
  left: -10px; /* 10pxずらす */
  top: -10px; /* 10pxずらす */
  font-size: 24px;
  line-height: 2.2;
  font-family: Inter;
  font-weight: 400;
  word-wrap: normal;
  color: black;
  border: 2px solid black;
  cursor: pointer;
  text-align: center;
  z-index: 9;
}

.button_link:hover {
  background: #ffffff;
}

.link:hover {
  background: #FAF12A;
}

.button_shop {
  color: black;
  background: #FAF12A;
}

.button_shop:hover {
  color: white;
  background: #FAA50F;
  -webkit-text-stroke: 1px black;
}

.button_recruit {
  color: black;
  background: #FAF12A;
}

.button_recruit:hover {
  color: white;
  background: #A0E1FF;
  -webkit-text-stroke: 1px black;
}

.button_contact_us {
  color: #178352;
  background: rgba(23, 131, 82, 0.1);
  text-decoration: none;
}

.button_contact_us:hover {
  color: white;
  background: #178352;
  text-decoration: none;
}

.marquee0 {
  width: 1920px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.marquee1,
.marquee2 {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: auto;
  height: auto;
  display: inline-block;
  text-wrap: nowrap;
  white-space: nowrap;
}

.marquee1 {
  -webkit-animation: marquee-left-1 25s infinite linear 0.1s both;
          animation: marquee-left-1 25s infinite linear 0.1s both;
}

.marquee2 {
  -webkit-animation: marquee-left-2 25s infinite linear 0.1s both;
          animation: marquee-left-2 25s infinite linear 0.1s both;
}

/* アニメーション */
@-webkit-keyframes marquee-left-1 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes marquee-left-1 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes marquee-left-2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes marquee-left-2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* アニメーション */
@-webkit-keyframes marquee-left {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes marquee-left {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-home-kv {
  margin: 36px 0 0 0;
  padding: 0 42px;
  position: relative;
}
.p-home-kv__image {
  width: 1000px;
  margin: 0 auto;
  display: block;
  position: relative;
}
.p-home-kv__image img {
  width: 100%;
}

.p-home-about {
  position: relative;
  width: 1188px;
  height: 597px;
  margin: 120px auto 0 auto;
}

.p-home-marquee {
  margin-top: 70px;
  width: 100%;
  height: 80px;
  position: relative;
  background: #fff;
  border-top: 1px black solid;
  border-bottom: 1px black solid;
  overflow: hidden;
}

.p-home-service {
  width: 1188px;
  height: 312px;
  margin: 170px auto 0 auto;
  position: relative;
  z-index: -1;
}

.p-home-society {
  width: 1188px;
  height: 354px;
  margin: 170px auto 0 auto;
  position: relative;
}
.p-home-society__inner {
  width: 868px;
  position: relative;
  margin: 0 70px 0 auto;
}

.p-home-group {
  width: 1188px;
  margin: 200px auto 0 auto;
  position: relative;
}
.p-home-group__inner {
  width: 948px;
  height: 312px;
  position: relative;
  margin-left: 100px;
}

.p-home-sns {
  width: 100%;
}
.p-home-sns__inner {
  width: 1262px;
  margin: 150px auto 0 auto;
  position: relative;
}
.p-home-sns__image {
  width: 874px;
  margin: 0 auto;
  position: relative;
}

.l-floating {
  position: -webkit-sticky;
  position: sticky;
  width: 200px;
  height: 1px;
  top: 30%;
  margin: 0 0 0 auto;
  z-index: 9;
}

.p-home-info {
  width: 1236px;
  margin: 100px auto 0 auto;
  position: relative;
  height: 665px;
}

.p-company-philosophy {
  width: 1236px;
  margin: 0 auto;
  padding-top: 100px;
  position: relative;
}
.p-company-philosophy__inner {
  width: 1060px;
  margin: 0 auto;
  position: relative;
}
.p-company-philosophy__frame {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  border: 0.5px black solid;
  padding: 30px 0;
}

.p-company-greeting {
  width: 1236px;
  margin: 110px auto 0 auto;
  position: relative;
}
.p-company-greeting__inner {
  width: 1076px;
  height: 612px;
  margin: 0 auto;
  position: relative;
}

.p-company-outline {
  width: 1236px;
  margin: 100px auto 0 auto;
  position: relative;
}
.p-company-outline__inner {
  width: 750px;
  height: 800px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 100px auto 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#A0E1FF), to(#BBE8A6));
  background: -webkit-linear-gradient(top, #A0E1FF 0%, #BBE8A6 100%);
  background: linear-gradient(180deg, #A0E1FF 0%, #BBE8A6 100%);
  position: relative;
}

.p-company-history {
  width: 1236px;
  margin: 280px auto 0 auto;
  position: relative;
}
.p-company-history__inner {
  width: 726px;
  height: 225px;
  margin: 0 auto;
  position: relative;
}

.p-company-facility {
  width: 1236px;
  margin: 300px auto 0 auto;
  position: relative;
}
.p-company-facility__image {
  width: 1050px;
  margin: -50px auto 0 auto;
  position: relative;
  z-index: -1;
}

.p-job-kv {
  width: 1245px;
  margin: 0 auto;
  position: relative;
}

.p-job-philosophy {
  width: 1245px;
  margin: 220px auto 0 auto;
  position: relative;
}
.p-job-philosophy__inner {
  width: 1060px;
  margin: 0 auto;
  position: relative;
}
.p-job-philosophy__frame {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  border: 0.5px black solid;
  padding: 30px 0;
}

.p-job-about {
  width: 1245px;
  margin: 60px auto 0 auto;
  position: relative;
}

.p-job-human {
  width: 1245px;
  margin: 235px auto 0 auto;
  position: relative;
}
.p-job-human__inner {
  width: 1076px;
  height: 645px;
  margin: 0 auto;
  position: relative;
}

.p-job-description {
  width: 1245px;
  margin: 105px auto 0 auto;
  position: relative;
}
.p-job-description__inner {
  width: 1100px;
  position: relative;
}
.p-job-description__lead {
  width: 1100px;
  height: 214px;
  position: relative;
}
.p-job-description__person {
  width: 833px;
  height: 352px;
  margin-left: auto;
  position: relative;
}
.p-job-description__detail {
  width: 833px;
  height: 312px;
  margin: 0 auto;
  position: relative;
}
.p-job-description__charm {
  width: 820px;
  height: 444px;
  margin-left: auto;
  position: relative;
}
.p-job-description__benefits {
  width: 893px;
  height: 314px;
  margin: 20px auto 0 auto;
  position: relative;
}

.p-job-miesokusei {
  width: 1245px;
  margin: 80px auto 0 auto;
  position: relative;
}
.p-job-miesokusei__inner {
  width: 100%;
  height: 1900px;
  position: relative;
}

.p-job-recruitment {
  width: 1245px;
  margin: 80px auto 0 auto;
  position: relative;
}
.p-job-recruitment__section {
  width: 616px;
  margin-top: 60px !important;
  padding: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px #BBE8A6 solid;
  -webkit-border-image: -webkit-gradient(linear, right top, left top, from(#A0E1FF), to(#BBE8A6)) 1;
  -webkit-border-image: -webkit-linear-gradient(right, #A0E1FF, #BBE8A6) 1;
       -o-border-image: linear-gradient(to left, #A0E1FF, #BBE8A6) 1;
          border-image: -webkit-gradient(linear, right top, left top, from(#A0E1FF), to(#BBE8A6)) 1;
          border-image: linear-gradient(to left, #A0E1FF, #BBE8A6) 1;
  margin: 0 auto;
  position: relative;
}
.p-job-recruitment__section-title {
  color: #178352;
  margin: 0;
}
.p-job-recruitment__section-label {
  font-size: 13px;
  margin-top: 10px;
  padding: 5px 20px;
  border: 2px solid #000;
  background-color: #faf12a;
  display: inline-block;
}
.p-job-recruitment__section-image {
  width: 277px;
  aspect-ratio: 277/147;
  position: absolute;
  right: -25px;
  bottom: -25px;
  z-index: -1;
}
.p-job-recruitment__section-image::after {
  content: "";
  width: 172px;
  height: 175px;
  top: -15px;
  right: -15px;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(#A0E1FF), to(#BBE8A6));
  background: -webkit-linear-gradient(top, #A0E1FF 0%, #BBE8A6 100%);
  background: linear-gradient(180deg, #A0E1FF 0%, #BBE8A6 100%);
  z-index: -1;
}
.p-job-recruitment__section-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.p-job-company {
  width: 1236px;
  margin: 300px auto 0 auto;
  position: relative;
}
.p-job-company__inner {
  width: 750px;
  height: 800px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#A0E1FF), to(#BBE8A6));
  background: -webkit-linear-gradient(top, #A0E1FF 0%, #BBE8A6 100%);
  background: linear-gradient(180deg, #A0E1FF 0%, #BBE8A6 100%);
  position: relative;
}/*# sourceMappingURL=style.css.map */