@charset "UTF-8";
/* ========================= /
/  mixin
/* =========================*/
/* ========================= /
/  カラー
/* =========================*/
.description img {
  margin: 65px auto 65px;
}
@media screen and (max-width: 768px) {
  .description img {
    margin: 35px auto 35px;
  }
}
.description__logo {
  margin: 0 auto 65px;
}
@media screen and (max-width: 768px) {
  .description__logo {
    max-width: 240px;
    margin-bottom: 35px;
  }
}
.description__logo img {
  margin: auto;
}
.description-slide {
  margin-top: 100px;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .description-slide {
    margin-top: 30px;
  }
}
.description-slide__wrapper {
  display: flex;
  animation: scroll 40s linear infinite;
}
.description-slide__item {
  flex: 0 0 auto;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .description-slide__item {
    width: 40%;
  }
}

/* アニメーション */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.service-card__container {
  display: flex;
  justify-content: space-between;
  gap: min(1.9659239843vw, 30px);
  margin-top: 70px;
}
.service-card__item {
  flex-grow: 1;
}
.service-card__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #EBEBEB;
}
.service-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: none;
  transition: 0.3s;
}
.service-card__ttl {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 2rem;
}
.service-card__txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
}

/* ========================= /
/  feature
/* =========================*/
.feature-list {
  display: flex;
  gap: 34px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .feature-list {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding-inline: 20px;
  }
}
.feature-list__item {
  padding: 30px 20px;
  background: #fff;
}
.feature-list__ttl {
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
.feature-list__txt {
  font-size: 1.4rem;
  line-height: 2.8rem;
}

/* ========================= /
/  induction
/* =========================*/
.induction {
  background-color: #f5f5f5;
}
.induction__inner {
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .induction__inner {
    flex-wrap: wrap;
  }
}
.induction__left-content {
  min-width: 300px;
  flex: 0 0 50%;
}
@media screen and (max-width: 768px) {
  .induction__left-content {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}
.induction__right-content {
  max-width: 460px;
}
.induction__ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .induction__ttl {
    margin-bottom: 20px;
    text-align: center;
  }
}
.induction__txt {
  margin-bottom: 40px;
  font-size: 1.4rem;
  line-height: 2.8rem;
}
.induction__link {
  max-width: 250px;
  background: #005EAA;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .induction__link {
    margin: auto;
  }
}
.induction__link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.induction__link:hover {
  opacity: 0.6;
}/*# sourceMappingURL=service.css.map */