@charset "UTF-8";

/* --- Base / Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  border-style: none;
  height:auto;
}

img,
picture {
  display: block;
  width: 100%;
}

iframe {
  border: none;
}

html {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  color: #2c2c2c;
  font-size: 1rem;
  font-family: "HiraKakuStd-W7", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.025em;
}

/* --- Layout Components --- */
header {
  position: fixed !important;
  top: 0;
  z-index: 100;
  width: 750px;
}

.header_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #fff;
  width: 100%;
}
.header_logo {
  width:20%;
  margin-right:50px;
}
.header_buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width:80%;
}
.header_buttons a{
  width:100%;
}
main {
  background: #fff;
}

/* --- Main Visual --- */
.mainvisual {
  position: relative;
  margin-top: 60px;
}

.mainvisual .flaot_Imgs {
  position: absolute;
  bottom: 3%;
  left: 4%;
  display: block;
  animation: updown 2s ease-in-out 0s infinite;
}

.mainvisual .flaot_Imgs img {
  width: 70%;
  height: 100%;
  margin: 20px auto;
  vertical-align: top;
  block-size: auto;
}

@keyframes updown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* --- Content Sections --- */
.complain {
  width: 100%;
  margin: 0 auto;
}

.complain img {
  max-width: 100%;
}

.intro {
  background-color: #ffed32;
  background-size: auto;
}

.intro .section_ttl {
  margin-bottom: 40px;
  padding-top: 50px;
  font-size: 50px;
  text-align: center;
}

.intro .section_ttl img {
  width: 635px;
}

.intro h2 img,
.intro .intro_inner .bottom img {
  width: 100%;
}

.intro .intro_inner .bottom img {
  margin-top: 20px;
}

/* --- Slider Zone --- */
.slider_zone .slider_inner {
  padding: 5px 0 32px 0;
}

.slider_zone .slider_inner .slick-arrow {
  display: none !important;
}

.slider_zone .slider_inner .slider_card {
  position: relative;
  width: 625px;
  margin: 20px;
}

.slider_zone .slider_inner .slider_card .work_place_image {
  width: 100%;
  margin-right: 30px;
  object-fit: cover;
}

.slider_zone .slider_inner .slick-dots li {
  width: 30px;
}

.slider_zone .slider_inner .slick-dots li button::before {
  color: #bababa;
  font-size: 20px;
  opacity: 1;
}

.slider_zone .slider_inner .slick-dots .slick-active button::before {
  color: #000;
}

/* --- Footer --- */
.footerimg {
  height: 10vw;
  background: url(/assets_lp/cnt/portal/images/footer_back.webp) center center / cover;
}

#footerbar {
  width: 100%;
  background: #333;
}

#footerbar .footerbar_inner {
  margin: 0 auto;
  padding: 5vw 5vw 8vw 5vw;
  color: #fff;
  font-size: 90%;
}

#footerbar .footerbar_inner a {
  color: #fff !important;
}

#footerbar .footerbar_inner .company {
  margin-bottom: 1vw;
  font-weight: 700;
}

#footerbar .footerbar_inner .copyright {
  margin-top: 2vw;
  padding: 2vw 0;
  border-top: 1px solid #666;
}

/* --- Responsive (Max-width: 750px) --- */
@media (max-width: 750px) {
  header {
    width: 100%;
  }

  .header_logo {
    width: 25%;
  }

  .header_buttons {
    width: 75%;
  }

  .mainvisual {
    margin-top:40px
  }

  .mainvisual .flaot_Imgs {
    bottom: 10%;
    left: 6%;
  }

  .mainvisual .flaot_Imgs img {
    margin: 10px auto;
  }

  .intro .section_ttl {
    margin-bottom: 0;
    padding-top: 20px;
  }

  .intro .intro_inner .section_ttl img {
    width: 100%;
  }

  .intro .intro_inner .bottom img {
    margin-top: 10px;
  }

  .slider_zone .slider_inner {
    padding: 3vw 0;
  }

  .slider_zone .slider_inner .slider_card {
    margin: 2.67vw;
  }

  .slider_zone .slider_inner .slider_card .work_place_image {
    width: 100%;
    margin-right: 35px;
  }

  .slider_zone .slider_inner .slick-dots li {
    width: 4vw;
  }

  .slider_zone .slider_inner .slick-dots li button::before {
    font-size: 5.33vw;
  }
}

/* --- Responsive (Max-width: 560px) --- */
@media (max-width: 560px) {
  .intro .slider_zone .slider_inner .slider_card .text-flex .work_place_image {
    margin-right: 15px;
  }
}