@charset "UTF-8";

/*---------------------------------------------
    b-type section
---------------------------------------------*/
.b-type-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: #f1faf8;
}
.b-type-section::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  display: none; /* 装飾ブロブ無効化（背景を単色で統一）*/
  z-index: 0;
}
.b-type-section .inner {
  position: relative;
  z-index: 1;
}
.b-type-box {
  max-width: 800px;
  margin: 0 auto;
  background: #f9f7f2;
  border-radius: 16px;
  padding: 36px 40px;
}
.b-type-box p {
  font-size: 1.5rem;
  line-height: 2.0;
  color: #555;
  margin-bottom: 12px;
}
.b-type-box p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .b-type-box {
    padding: 28px 24px;
  }
}

/*---------------------------------------------
    service detail
---------------------------------------------*/
.service-detail-section {
  padding: 60px 0 80px;
}
.service-block {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.service-block:last-of-type {
  margin-bottom: 0;
}
.service-block.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
    gap: 24px;
  }
}
.service-block-img {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.service-block-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.service-block-num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Quicksand", sans-serif;
  font-size: 6.0rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}
.service-block-txt {
  flex: 1;
}
.service-block-txt h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.service-block-txt h3 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #4DB6AC;
  margin-top: 4px;
}
.service-block-txt p {
  font-size: 1.5rem;
  line-height: 2.0;
  color: #555;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags li {
  display: inline-block;
  background: #e8f5f3;
  color: #4DB6AC;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
}

/*---------------------------------------------
    remote section
---------------------------------------------*/
.remote-section {
  padding: 60px 0 80px;
}
.remote-box {
  display: flex;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(77, 182, 172, 0.06) 0%, rgba(245, 166, 35, 0.04) 100%);
  border: 2px solid #e8f5f3;
  border-radius: 16px;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .remote-box {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}
.remote-icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  background: #4DB6AC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.remote-icon i {
  font-size: 3.2rem;
  color: #fff;
}
.remote-txt h3 {
  font-size: 2.0rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.remote-txt p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
}
