* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: #e5ebf6;
  color: #113577;
}

.corp-pagebody {
  width: 100%;
  margin: 0 auto;
  padding: 72px 0 90px;
	color:#333;
}

.corp-page__hero { margin-bottom: 30px; }
.corp-page__eyebrow {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #4568ac;
  font-weight: 700;
}
.corp-page__title {
  margin: 12px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  color: #1247c5;
}
.corp-page__lead {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
	
}

.tabs__input { display: none; }

.tabs__labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tabs__label {
  padding: 14px 12px;
  border-radius: 999px;
  background: #d3ddf1;
  border: 1px solid #b8c8e8;
  color: #244b95;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

#tab-restore:checked ~ .tabs__labels label[for="tab-restore"],
#tab-cleaning:checked ~ .tabs__labels label[for="tab-cleaning"],
#tab-plumbing:checked ~ .tabs__labels label[for="tab-plumbing"],
#tab-exterior:checked ~ .tabs__labels label[for="tab-exterior"] {
  background: #1547c3;
  color: #fff;
  border-color: #1547c3;
}

.tabs__panels {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #c9d6ed;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(16, 54, 126, 0.08);
  overflow: hidden;
	color:#333;
	
}

.tabs__panel { display: none; }
#tab-restore:checked ~ .tabs__panels .tabs__panel--restore,
#tab-cleaning:checked ~ .tabs__panels .tabs__panel--cleaning,
#tab-plumbing:checked ~ .tabs__panels .tabs__panel--plumbing,
#tab-exterior:checked ~ .tabs__panels .tabs__panel--exterior { display: block; }

.tabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 380px;
}

.tabs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tabs__body { padding: 34px 34px 30px; }
.tabs__body h2 {
  margin: 0;
  color: #1045c0;
  font-size: 40px;
}
.tabs__body p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
	color:#333;
}

.tabs__tags {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tabs__tags li {
  border: 1px solid #9cb5e1;
  color: #2d569d;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  background: #f7faff;
}

@media (max-width: 767px) {
  .corp-page { width: calc(100% - 24px); padding: 44px 0 60px; }
  .corp-page__title { font-size: 36px; line-height: 1.4; }
  .corp-page__lead { font-size: 15px; }

  .tabs__labels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tabs__label { font-size: 14px; }

  .tabs__panel-inner { grid-template-columns: 1fr; min-height: auto; }
  .tabs__media img { height: 220px; }
  .tabs__body { padding: 22px 16px 20px; }
  .tabs__body h2 { font-size: 30px; }
  .tabs__body p { font-size: 15px; }
}



/* ===================================================
   corporate-services.css
   法人向けサービス 下層ページ
   =================================================== */


/* ---------- ページ共通 ---------- */
.corp-page {
   width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 0;
  color: #333;
}

/* ---------- ヒーロー ---------- */
.corp-page__hero {
  margin-bottom: 30px;
	
}

.corp-page__eyebrow {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #4568ac;
  font-weight: 700;
}

.corp-page__title {
  margin: 12px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 52px;
  color: #1247c5;
}

.corp-page__lead {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}

/* =============================================
   タブセクション
   ============================================= */
.tabs__input { display: none; }

.tabs__labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.tabs__label {
  padding: 14px 12px;
  border-radius: 999px;
  background: #d3ddf1;
  border: 1px solid #b8c8e8;
  color: #244b95;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.2s;
}

#tab-restore:checked ~ .tabs__labels label[for="tab-restore"],
#tab-cleaning:checked ~ .tabs__labels label[for="tab-cleaning"],
#tab-plumbing:checked ~ .tabs__labels label[for="tab-plumbing"],
#tab-exterior:checked ~ .tabs__labels label[for="tab-exterior"] {
  background: #1547c3;
  color: #fff;
  border-color: #1547c3;
}

.tabs__panels {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #c9d6ed;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(16, 54, 126, 0.08);
  overflow: hidden;
  color: #333;
}

.tabs__panel { display: none; }

#tab-restore:checked ~ .tabs__panels .tabs__panel--restore,
#tab-cleaning:checked ~ .tabs__panels .tabs__panel--cleaning,
#tab-plumbing:checked ~ .tabs__panels .tabs__panel--plumbing,
#tab-exterior:checked ~ .tabs__panels .tabs__panel--exterior {
  display: block;
}

.tabs__panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 380px;
}

.tabs__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tabs__body {
  padding: 34px 34px 30px;
}

.tabs__body h2 {
  margin: 0;
  color: #1045c0;
  font-size: 40px;
}

.tabs__body p {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 700;
  color: #333;
}

.tabs__tags {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tabs__tags li {
  border: 1px solid #9cb5e1;
  color: #2d569d;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  background: #f7faff;
}

/* =============================================
   対応エリア
   ============================================= */
.area {
  background: #dce3f2;
  padding: 76px 0 84px;
}

.area__container {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.area__header {
  margin-bottom: 40px;
}

.area__eyebrow {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #4568ac;
  font-weight: 700;
}

.area__title {
  margin: 12px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 46px;
  color: #0f43c0;
}

.area__lead {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: #23417f;
}

.area__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.area__main-block {
  background: #fff;
  border: 1px solid #c5d3eb;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(17, 53, 124, 0.08);
}

.area__badge {
  display: inline-block;
  background: #0f43c0;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.area__badge--sub {
  background: #3a5ca3;
}

.area__block-title {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  color: #0f43c0;
}

.area__group {
  margin-bottom: 24px;
}

.area__group:last-child {
  margin-bottom: 0;
}

.area__group-label {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #3a5ca3;
  padding-left: 2px;
}

.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area__tag {
  font-size: 14px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f7faff;
  color: #355fa9;
  border: 1px solid #95b0dd;
}

.area__tag--focus {
  background: #d8e6ff;
  color: #0f43c0;
  border-color: #aac4f2;
}

.area__sub-block {
  background: #fff;
  border: 1px solid #c5d3eb;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 12px 30px rgba(17, 53, 124, 0.08);
}

.area__sub-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.area__sub-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: #edf3ff;
  border: 1px solid #c8d8f3;
  border-radius: 16px;
  text-align: center;
}

.area__sub-name {
  font-size: 18px;
  font-weight: 700;
  color: #0f43c0;
}

.area__sub-note {
  font-size: 13px;
  color: #4568ac;
  font-weight: 700;
}

.area__sub-notice {
  font-size: 13px;
  color: #4568ac;
  line-height: 1.7;
  font-weight: 700;
  margin: 0;
}

/* =============================================
   よくある質問
   ============================================= */
.faq {
  padding: 76px 0 84px;
  background: #e5ebf6;
}

.faq__container {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
}

.faq__header {
  margin-bottom: 40px;
}

.faq__eyebrow {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: #4568ac;
  font-weight: 700;
}

.faq__title {
  margin: 12px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 46px;
  color: #0f43c0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  background: #fff;
  border: 1px solid #c9d6ed;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(16, 54, 126, 0.06);
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}

.faq__question:hover {
  background: #f7faff;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__q-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0f43c0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
}

.faq__q-text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: #113577;
  line-height: 1.6;
}

.faq__toggle {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
}

.faq__toggle::before,
.faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #4568ac;
  border-radius: 1px;
  transition: transform 0.3s;
}

.faq__toggle::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq__item[open] .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__question {
  border-bottom: 1px solid #e0e8f5;
}

.faq__answer {
  display: flex;
  gap: 16px;
  padding: 22px 24px 26px;
  background: #f9fbff;
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq__a-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d8e6ff;
  color: #0f43c0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
}

.faq__a-text {
  font-size: 16px;
  color: #333;
  line-height: 1.9;
  margin: 0;
  padding-top: 6px;
  font-weight: 700;
}

/* =============================================
   CTA
   ============================================= */
.corp-cta {
  position: relative;
  background: linear-gradient(150deg, #0f3fba 0%, #082c85 100%);
  color: #fff;
  padding: 72px 0;
  overflow: hidden;
}

.corp-cta__inner {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.corp-cta__eyebrow {
  margin: 0;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #bad0ff;
  font-weight: 700;
}

.corp-cta__title {
  margin: 10px 0 0;
  font-family: "Noto Serif JP", serif;
  font-size: 44px;
}

.corp-cta__text {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.8;
  color: #e0e9ff;
  font-weight: 700;
}

.corp-cta__buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.corp-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.2s;
}

.corp-cta__btn--phone {
  background: #fff;
  color: #0e3eb9;
}

.corp-cta__btn--phone:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.corp-cta__btn--mail {
  background: #0f43c0;
  color: #fff;
  border: 2px solid #5a8cf0;
  box-shadow: 0 10px 24px rgba(15, 67, 192, 0.25);
}

.corp-cta__btn--mail:hover {
  background: #1a52d4;
  transform: translateY(-2px);
}

.corp-cta__hours {
  margin-top: 14px;
  font-size: 12px;
  color: #d5e4ff;
}

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 767px) {
  .corp-page {
    width: calc(100% - 24px);
    padding: 44px 0 0;
  }

  .corp-page__title {
    font-size: 36px;
    line-height: 1.4;
  }

  .corp-page__lead {
    font-size: 15px;
  }

  .tabs__labels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tabs__label {
    font-size: 14px;
  }

  .tabs__panel-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tabs__media img {
    height: 220px;
  }

  .tabs__body {
    padding: 22px 16px 20px;
  }

  .tabs__body h2 {
    font-size: 30px;
  }

  .tabs__body p {
    font-size: 15px;
  }

  /* エリア */
  .area {
    padding: 52px 0 64px;
  }

  .area__container {
    width: calc(100% - 24px);
  }

  .area__title {
    font-size: 28px;
    line-height: 1.45;
  }

  .area__lead {
    font-size: 15px;
  }

  .area__main-block,
  .area__sub-block {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .area__block-title {
    font-size: 22px;
  }

  .area__tag {
    font-size: 12px;
    padding: 5px 10px;
  }

  .area__sub-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .area__sub-item {
    padding: 14px;
  }

  .area__sub-name {
    font-size: 16px;
  }

  /* FAQ */
  .faq {
    padding: 52px 0 64px;
  }

  .faq__container {
    width: calc(100% - 24px);
  }

  .faq__title {
    font-size: 28px;
  }

  .faq__question {
    padding: 18px 16px;
    gap: 12px;
  }

  .faq__q-label,
  .faq__a-label {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq__q-text {
    font-size: 15px;
  }

  .faq__answer {
    padding: 16px 16px 20px;
    gap: 12px;
  }

  .faq__a-text {
    font-size: 14px;
  }

  /* CTA */
  .corp-cta {
    padding: 52px 0;
  }

  .corp-cta__inner {
    width: calc(100% - 24px);
  }

  .corp-cta__title {
    font-size: 30px;
    line-height: 1.45;
  }

  .corp-cta__text br {
    display: none;
  }

  .corp-cta__buttons {
    flex-direction: column;
  }

  .corp-cta__btn {
    width: 100%;
    font-size: 17px;
    padding: 14px 16px;
  }
}