/* === hotel 専用追加スタイル === */

/* ヘッダー上部の帯 */
.c-header_banner {
  display: flex;
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  background: #11837e;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

/* LiPLUS for ビジネス ロゴ */
.c-header_logo_forbusiness_img {
  width: 157px;
  height: auto;
}
@media (width >= 768px) {
  .c-header_logo_forbusiness_img {
    width: 201px;
  }
}

/* サービス紹介ブロック */
.p-service_intro {
  max-width: 940px;
  margin: 24px auto 0;
  padding: 24px 10px;
  background: #ebfffe;
  border-radius: 8px;
  box-sizing: border-box;
}
.p-service_intro_group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-sizing: border-box;
  margin: 0 auto 24px auto;
}
@media (width >= 768px) {
  .p-service_intro {
    padding: 24px 20px;
  }
  .p-service_intro_group {
    max-width: 560px;
    padding: 20px 20px 23px;
    gap: 11px;
    z-index: 1;
  }
}
@media (width >= 1035px) {
  .p-service_intro_group {
    max-width: 618px;
  }
}

.p-service_intro_group_text {
  color: #505050;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.p-service_intro_group_text .-break_pc {
  display: block;
}
@media (width >= 1035px) {
  .p-service_intro_group_text .-break_pc {
    display: inline;
  }
}
@media (width >= 768px) {
  .p-service_intro_group_text {
    font-size: 16px;
    line-height: 23px;
  }
}

.p-service_intro_logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
@media (width >= 768px) {
  .p-service_intro_logos {
    gap: 29px;
  }
}

.p-service_intro_logo_item {
  width: 100%;
  height: auto;
}
.p-service_intro_logo_img {
  width: auto;
  height: 15.2px;
}
@media (width >= 768px) {
  .p-service_intro_logo_img {
    height: 18px;
  }
}

.p-service_intro_title {
  font-size: 28px;
  font-weight: 700;
  color: #11837e;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 8px;
}
.p-service_intro_sub {
  text-align: center;
  font-weight: bold;
  color: #333;
  line-height: 1.6;
  margin: 0 0 20px;
}
.p-service_intro_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (width >= 768px) {
  .p-service_intro_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .p-service_intro_title {
    font-size: 36px;
  }
}

/* カード */
.p-service_intro_grid_item {
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}

/* アイコン + タイトル行 */
.p-service_intro_grid_head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.p-service_intro_grid_icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.p-service_intro_grid_title {
  font-size: 14px;
  font-weight: 700;
  color: #11837e;
  line-height: 1.3;
  margin: 0;
}
@media (width >= 768px) {
  .p-service_intro_grid_title {
    font-size: 16px;
  }
}

/* 項目リスト */
.p-service_intro_grid_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-service_intro_grid_list li {
  font-size: 12px;
  color: #505050;
  line-height: 1.4;
  padding-left: 10px;
  position: relative;
}
.p-service_intro_grid_list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media (width >= 768px) {
  .p-service_intro_grid_list li {
    font-size: 13px;
  }
}
