@charset "UTF-8";

/* =========================================================
   Column: セットアップオフィス (setup-office)
   ========================================================= */

/* 既存 contact.css などの制約を上書きしてコンテンツ幅を 980px に */
#contents.setup-office .inner {
  max-width: 1000px;
  width: 90%;
}

.setup-office .colArticle {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 0 80px;
}

/* ---------- タイトル ---------- */
.setup-office .colArticle__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.setup-office .colArticle__title {
  margin: 0;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  color: #000;
}
@media (min-width: 769px) {
  .setup-office .colArticle__title {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: 1.6px;
  }
}
.setup-office .colArticle__titleBar {
  display: block;
  width: 72px;
  height: 4px;
  background: #000;
}

/* ---------- イントロ段落 ---------- */
.setup-office .colArticle__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}
.setup-office .colArticle__intro p {
  margin: 0;
}

/* ---------- 居抜きバナー（PC/SP 合成済み画像を <picture> で切り替え） ---------- */
.setup-office .colBanner {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.setup-office .colBanner:hover {
  opacity: 0.85;
}
.setup-office .colBanner picture,
.setup-office .colBanner img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- セクション共通 ---------- */
.setup-office .colSection {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.setup-office .colSection__bar {
  margin: 0;
  padding: 10px 15px;
  background: #f54825;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
@media (min-width: 769px) {
  .setup-office .colSection__bar {
    font-size: 20px;
  }
}
.setup-office .colSection__lead,
.setup-office .colSection__closing {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}

/* ---------- セクション1 body (テキスト + 写真) ---------- */
.setup-office .colSection__intro {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .setup-office .colSection__intro {
    flex-direction: column;
    gap: 20px;
  }
}
.setup-office .colSection__introText {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.setup-office .colSection__introText p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
}
.setup-office .colSection__introPhoto {
  flex-shrink: 0;
  width: 350px;
  height: 234px;
}
@media (max-width: 768px) {
  .setup-office .colSection__introPhoto {
    width: 100%;
    height: auto;
    aspect-ratio: 350 / 234;
  }
}
.setup-office .colSection__introPhoto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* ---------- カードグリッド ---------- */
.setup-office .colCards {
  display: grid;
  gap: 25px;
}
.setup-office .colCards--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.setup-office .colCards--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 768px) {
  .setup-office .colCards--cols-2,
  .setup-office .colCards--cols-3 {
    grid-template-columns: 1fr;
  }
}
.setup-office .colCard {
  display: flex;
  flex-direction: column;
  padding: 32px 32px 36px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}
.setup-office .colCard__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.setup-office .colCard__iconChip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 10px;
}
.setup-office .colCard__iconChip svg {
  display: block;
  width: 24px;
  height: 24px;
}
.setup-office .colCard__title {
  margin: 0;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #000;
}
/* メリット・デメリット・注意点のカードはアイコン無し → タイトル単独にマージンを維持 */
.setup-office .colCard > .colCard__title {
  margin: 0 0 16px;
}
.setup-office .colCard__body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #000;
  flex: 1;
}
/* div.colCard__body（複数段落）のときのみ段落間スペース */
.setup-office div.colCard__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.setup-office .colCard__body p {
  margin: 0;
}
.setup-office .colCard__body strong {
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
}
.setup-office .colCard__link {
  align-self: flex-end;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 28px;
  color: #498ad1;
  text-decoration: underline;
}
.setup-office .colCard__link:before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 8px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 14'><path d='M1 1l5 6-5 6' stroke='%23f54825' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* ---------- 物件リストボックス ---------- */
.setup-office .colPropertiesBox {
  padding: 60px 40px;
  background: #f3f3f3;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .setup-office .colPropertiesBox {
    padding: 32px 20px;
  }
}
.setup-office .colPropertiesBox__title {
  margin: 0;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
}
@media (min-width: 769px) {
  .setup-office .colPropertiesBox__title {
    font-size: 24px;
    line-height: 34px;
  }
}
.setup-office .colProperties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .setup-office .colProperties {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.setup-office .colProperty {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-bottom: 3px solid #f54825;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}
.setup-office .colProperty:hover {
  opacity: 0.85;
}
.setup-office .colProperty__img {
  aspect-ratio: 330 / 237;
  overflow: hidden;
}
.setup-office .colProperty__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.setup-office .colProperty__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.setup-office .colProperty__title {
  margin: 0;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}
.setup-office .colProperty__metaRow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.setup-office .colProperty__meta {
  margin: 0;
  padding-left: 18px;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.36px;
  color: #757c88;
}
.setup-office .colProperty__meta--area:before,
.setup-office .colProperty__meta--size:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: center/contain no-repeat;
}
.setup-office .colProperty__meta--area:before {
  background-image: url("../images/icon/ico_place.png");
}
.setup-office .colProperty__meta--size:before {
  background-image: url("../images/icon/ico_scale.png");
}
.setup-office .colProperty__price {
  margin: 0;
  font-size: 0;
  color: #000;
}
.setup-office .colProperty__price .num {
  font-family: "Roboto", "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
.setup-office .colProperty__price .unit {
  margin-left: 4px;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
}

/* ---------- 物件リストボックス CTA ---------- */
.setup-office .colCtaRow {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.setup-office .colCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 64px;
  padding: 0 25px;
  border-radius: 8px;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.setup-office .colCta:hover {
  opacity: 0.85;
}
.setup-office .colCta__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.setup-office .colCta__icon img,
.setup-office .colCta__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.setup-office .colCta--black {
  background: #000;
  color: #fff;
}
.setup-office .colCta--orange {
  background: #fca83c;
  color: #000;
}

/* ---------- デメリットの後の濃紺CTA ---------- */
.setup-office .colNavyCta {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #39374d;
  border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
}
@media (max-width: 768px) {
  .setup-office .colNavyCta {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
}
.setup-office .colNavyCta__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.setup-office .colNavyCta__title {
  margin: 0;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: #fff;
}
@media (min-width: 769px) {
  .setup-office .colNavyCta__title {
    font-size: 24px;
  }
}
.setup-office .colNavyCta__desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
}
.setup-office .colNavyCta__desc strong {
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
}
.setup-office .colNavyCta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 64px;
  padding: 0 25px;
  border: 1px solid #fff;
  border-radius: 8px;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.setup-office .colNavyCta__btn:hover {
  opacity: 0.85;
}

/* ---------- フッターCTA（オレンジ枠） ---------- */
.setup-office .colFooterCta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
  border: 3px solid #f54825;
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 768px) {
  .setup-office .colFooterCta {
    padding: 24px 20px;
  }
}
.setup-office .colFooterCta__title {
  margin: 0;
  font-family: "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #f54825;
  text-align: left;
  width: 100%;
}
@media (min-width: 769px) {
  .setup-office .colFooterCta__title {
    font-size: 31px;
  }
}
.setup-office .colFooterCta__body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #151515;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.setup-office .colFooterCta__body p {
  margin: 0;
}
@media (min-width: 769px) {
  .setup-office .colFooterCta__body {
    font-size: 17px;
  }
}
.setup-office .colFooterCta__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  max-width: 100%;
  padding: 24px 30px;
  background: #f54825;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
.setup-office .colFooterCta__btn:hover {
  opacity: 0.85;
}
.setup-office .colFooterCta__btnTxt {
  font-family: "Inter", "Noto Sans JP", "NotoSansCJKjp-bold", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.setup-office .colFooterCta__btnArrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 7px;
  height: 14px;
}
.setup-office .colFooterCta__btnArrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- コラム一覧 + 会社情報（従来のコンテンツを踏襲） ---------- */
.setup-office .nap_info {
  margin-top: 40px;
}
.setup-office .nap_info h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 40px 0 10px;
}
.setup-office .nap_info h2:first-child {
  margin-top: 0;
}
.setup-office ol.list-page {
  margin: 15px 0 40px !important;
  padding: 0;
}
.setup-office .list-page li {
  margin-bottom: 10px;
  font-weight: normal;
  margin-left: 25px;
  list-style: decimal;
}
.setup-office .list-page li a {
  line-height: 2;
  text-decoration: underline;
}
.setup-office .nap_table {
  width: 100%;
  font-size: 16px;
  text-align: left;
  margin: 20px auto 0;
  border-collapse: collapse;
}
.setup-office .nap_table th {
  width: 25%;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  font-weight: normal;
}
.setup-office .nap_table td {
  vertical-align: middle;
  padding: 10px;
  border: 1px solid #ddd;
}
