@charset "UTF-8";
/* ベース */
#visual {
  width: 100%;
  height: 30vh; /* 高さはお好みで調整（例：50%画面） */
  background-image: url("../../img/top/kv.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* テキスト配置 */
#visual .visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

#visual .visual-text {
  position: absolute;
  top: 2.3rem;
  left: 4rem;
  color: #696969;
  font-size: 2rem;
  font-weight: bold;
  /* text-shadow: 1px 1px 4px rgba(0,0,0,0.6); */
  background-color: #fff;
  padding: 0.5em 1em;
  line-height: 1.2;
  border-radius: 10px;
}

#visual .visual-text span {
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
  /* opacity: 0.8; */
  color: #037Fb9;
  padding: 0;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  #visual {
    height: 40vh;
  }

  #visual .visual-text {
    font-size: 1.4rem;
    left: 1rem;
  }

  #visual .visual-text span {
    font-size: 0.9rem;
  }
}





#cleanservice{
}



.cleanservice-section__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

.cleanservice-section__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cleanservice-block {
  padding: 24px;
  border: 1px solid #d9e6f2;
  border-radius: 16px;
  background: #f8fbff;
}

.cleanservice-block__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cleanservice-block__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
  color: #223548;
}

.cleanservice-block__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3b070;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.cleanservice-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cleanservice-block__list li {
  position: relative;
  margin: 0;
  padding-left: 1.2em;
  font-size: 16px;
  line-height: 1.9;
  color: #333;
}

.cleanservice-block__list li + li {
  margin-top: 10px;
}

.cleanservice-block__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #2589d0;
  font-weight: 700;
}

.cleanservice-section__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cleanservice-section__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* タブレット・スマホ */
@media screen and (max-width: 768px) {
  .cleanservice-section {
    padding: 56px 16px;
  }

  .cleanservice-section__inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cleanservice-section__text {
    gap: 20px;
  }

  .cleanservice-block {
    padding: 18px;
    border-radius: 14px;
  }

  .cleanservice-block__title {
    font-size: 20px;
  }

  .cleanservice-block__tag {
    font-size: 13px;
    padding: 5px 12px;
  }

  .cleanservice-block__list li {
    font-size: 15px;
    line-height: 1.8;
  }

  .cleanservice-section__gallery {
    gap: 12px;
  }
}





#officeservice{
padding: 7em 0;
}


.officeservice__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  
  
  
}

/* 左テキスト */
.officeservice__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.office-block {
  padding: 22px;
  border: 1px solid #d9e6f2;
  border-radius: 16px;
  background: #f8fbff;
}

.office-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.office-block__title {
  margin: 0;
  font-size: 22px;
  color: #223548;
}

/* タグ */
.office-block__tags {
  display: flex;
  gap: 8px;
}

.office-tag {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #222;
}

.office-tag--physical {
  background: #d9e1ea;
}

.office-tag--intellectual {
  background: #f3b070;
}

.office-tag--mental {
  background: #b9d98d;
}

/* テキスト */
.office-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.office-block__list li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.9;
  color: #333;
}

.office-block__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #2589d0;
}

/* 右：画像 */
.officeservice__gallery {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.officeservice__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .officeservice__inner {
    grid-template-columns: 1fr;
  }

  .officeservice__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ */
@media screen and (max-width: 768px) {
  #officeservice {
    padding: 56px 16px;
  }

  .officeservice__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .office-block__title {
    font-size: 20px;
  }

  .office-tag {
    font-size: 12px;
  }
}


#cleanservice .cleanservice-area img,#officeservice .officeservice-area img{
padding:0 0 1em 1.5em;
}


@media screen and (max-width: 768px) {
#cleanservice .cleanservice-area,#officeservice .officeservice-area{
display:block;
}

#cleanservice .cleanservice-area img,#officeservice .officeservice-area img{
padding:1em 0 3em 0;
}


}



#officeservice h3 {
  padding: 1em 0 0.5em 0;
  font-size: 1.1rem;
}









