@charset "UTF-8";

/* ---- 開業支援：一覧 / 詳細 ---- */

#support_archive,
#support_single {
  --section-color: var(--medix-blue-deep);
  --line-color: var(--medix-blue-deep);
  padding-bottom: var(--section-margin);
}

/* ---- archive list ---- */
#support_archive .lists .item {
  --img-width: 42%;
  --gap: 1.75em;
  position: relative;
  margin: 0;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  box-shadow: var(--medix-card-shadow, 0 3px 12px rgba(0, 0, 0, 0.06));
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

#support_archive .lists .item:not(:last-child) {
  margin-bottom: 1.25em;
}

#support_archive .lists .item_link {
  position: relative;
  gap: var(--gap);
  -webkit-align-items: stretch;
  align-items: stretch;
  padding: 1.5em 1.5em 1.75em;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

/* ホバー：青シャドウ（影は .item、番号クリップは .item_link） */
#support_archive .lists .item:hover,
#support_archive .lists .item:focus-within {
  -webkit-box-shadow: 0 10px 28px rgba(128, 148, 221, 0.28);
  box-shadow: var(--medix-card-shadow-hover, 0 10px 28px rgba(128, 148, 221, 0.28));
}

#support_archive .lists .item .img {
  position: relative;
  display: block;
  width: var(--img-width);
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #eef2f7;
  overflow: hidden;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

#support_archive .lists .item .img img,
#support_archive .lists .item .img .img_placeholder:not(.is_logo) {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
}

#support_archive .lists .item .img .img_placeholder.is_logo {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #eef2f7;
}

#support_archive .lists .item .img .img_placeholder.is_logo img {
  width: 30%;
  max-width: 7em;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

#support_archive .lists .item:hover .img img,
#support_archive .lists .item:focus-within .img img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

#support_archive .lists .item .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: calc(100% - var(--img-width) - var(--gap));
  min-width: 0;
  padding: 0.1em 4em 0 0;
}

#support_archive .lists .item .num {
  position: absolute;
  top: -0.08em;
  right: -0.05em;
  z-index: 0;
  font-size: clamp(4.5rem, 12vw, 7.5rem);
  line-height: 0.85;
  color: rgba(128, 148, 221, 0.12);
  pointer-events: none;
}

#support_archive .meta {
  display: block;
  margin: 0 0 0.65em;
  font-size: 0.85em;
  color: #8094dd;
  color: var(--medix-blue-deep);
}

#support_archive .card_title {
  display: block;
  margin: 0 0 0.75em;
  font-size: clamp(1.15em, 2.2vw, 1.4em);
  font-weight: 700;
  line-height: 1.5;
}

#support_archive .lead {
  display: block;
  margin: 0 0 1.25em;
  font-size: 0.92em;
  line-height: 1.8;
  color: #555;
}

#support_archive .more_box {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: auto;
  -webkit-align-self: flex-end;
  align-self: flex-end;
}

#support_archive .more_box .more_link {
  display: inline-block;
  padding: 0.55em 1.35em;
  font-family: var(--font-futura-pt);
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8094dd;
  color: var(--medix-blue-deep);
  background: transparent;
  border-radius: 2px;
  -webkit-transition: color 0.25s ease, background-color 0.25s ease;
  transition: color 0.25s ease, background-color 0.25s ease;
}

#support_archive .lists .item:hover .more_box .more_link,
#support_archive .lists .item:focus-within .more_box .more_link {
  color: #fff;
  background: #e86162;
  background: var(--medix-footer-accent);
}

#support_archive .support_list_empty {
  margin: 1em auto 0;
}

/* =========================================================
   開業支援 詳細（#support_single）
   3層: .support_detail > .detail_contents > .content > .box
   （ページのサイド＋メイン用 .inner > .contents とは別）
   ========================================================= */

#support_single>.inner>.contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 2.5em;
}

#support_single .main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  min-width: 0;
}

#support_single .support_detail {
  --detail-blue: #8094dd;
  --detail-blue: var(--medix-blue-deep, #8094dd);
  --detail-title: #3453C3;
  --detail-title: var(--medix-title-en, #3453C3);
  --detail-pink: #e86162;
  --detail-pink: var(--medix-footer-accent, #e86162);
  --detail-line: #9eb8de;
  --detail-line-soft: #d5dde8;
}

#support_single .support_detail>.title {
  margin: 0 0 1.75em;
}

#support_single .support_detail>.title .meta {
  margin: 0 0 0.75em;
  font-size: 0.9em;
  color: var(--detail-blue);
  font-weight: 700;
}

#support_single .support_detail>.title h1 {
  margin: 0 0 0.85em;
  font-size: clamp(1.5rem, 3vw, 2em);
  font-weight: 700;
  line-height: 1.45;
  color: var(--detail-title);
}

#support_single .support_detail>.title .hero {
  margin: 0 0 1.5em;
}

#support_single .support_detail>.title .hero .hero_img {
  overflow: hidden;
  aspect-ratio: 4 / 1;
  background: #eef2f7;
}

#support_single .support_detail>.title .hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#support_single .support_detail>.title .hero figcaption {
  margin: 0.55em 0 0;
  text-align: center;
  font-size: 0.82em;
  line-height: 1.6;
  color: #888;
}

#support_single .support_detail>.title .lead {
  position: relative;
  margin: 1.15em 0 0;
  padding: 1.15em 1.35em 1.2em 1.4em;
  border-left: 4px solid var(--detail-blue);
  background: #f4f7fb;
  background: linear-gradient(90deg, #eef3fa 0%, #f7f9fc 55%, #f7f9fc 100%);
  font-size: clamp(1.02em, 1.5vw, 1.12em);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: #2a3340;
}

#support_single .support_detail>.thumbnail {
  margin: 0 0 2.5em;
  overflow: hidden;
  aspect-ratio: 4 / 1;
  background: #eef2f7;
}

#support_single .support_detail>.thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#support_single .support_detail>.detail_contents {
  margin: 0 0 2.5em;
  line-height: 1.95;
  color: #333;
}

#support_single .detail_contents strong,
#support_single .detail_contents b {
  font-weight: 700;
  color: var(--detail-pink);
}

#support_single .box>p.lead {
  font-size: 1.28em;
  line-height: 1;
  text-align: center;
  margin: 2em 0 2em;
}

#support_single .support_detail>.detail_contents>.content:not(:last-child),
#support_single .support_detail>.detail_contents>.step_flow:not(:last-child),
#support_single .support_detail>.detail_contents>.color_box:not(:last-child) {
  margin-bottom: 3em;
}

#support_single .content>*:not(:last-child):not(h2) {
  margin-bottom: 2em;
}

/* ---- STEP 流れ・背景付きセクション（白カード＋下向き矢印） ---- */
#support_single .step_flow,
#support_single .content.section_bg,
#support_single .env_bg_band {
  padding: 1.75em 1.5em 1.85em;
  background: #e8eef6;
  background: -webkit-linear-gradient(top, #e8eef6, #eef3fa);
  background: linear-gradient(180deg, #e8eef6 0%, #eef3fa 100%);
}

#support_single .content.section_bg.bg_gray,
#support_single .env_bg_band.bg_gray {
  background: #f4f6f8;
}

#support_single .content.section_bg.bg_pink,
#support_single .env_bg_band.bg_pink {
  background: #fff4f7;
}

#support_single .content.section_bg.bg_white,
#support_single .env_bg_band.bg_white {
  background: #fff;
}

#support_single .content.section_bg.bg_custom,
#support_single .env_bg_band.bg_custom {
  background: #e8eef6;
}

#support_single .step_flow>.content {
  margin-bottom: 0;
}

#support_single .step_flow .box,
#support_single .content.section_bg>.box,
#support_single .env_bg_band>.box {
  background: #fff;
  padding: 1.75em 1.85em 2em;
  -webkit-box-shadow: 0 4px 18px rgba(0, 45, 100, 0.08);
  box-shadow: 0 4px 18px rgba(0, 45, 100, 0.08);
}

#support_single .step_flow>.content:not(:last-child)::after,
#support_single .step_flow>.box:not(:last-child)::after,
#support_single .step_flow .content>.box:has(.env_step):not(:last-child)::after,
#support_single .content.section_bg>.box:has(.env_step):not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 1.75em auto 1.75em;
  border-left: 1.25em solid transparent;
  border-right: 1.25em solid transparent;
  border-top: 1.7em solid var(--detail-pink, #e85a8c);
}

#support_single .step_flow>.box:not(:last-child),
#support_single .step_flow .content>.box:has(.env_step):not(:last-child),
#support_single .content.section_bg>.box:has(.env_step):not(:last-child) {
  margin-bottom: 0;
}

/* ---- 要素タイプ「矢印」（STEP と同じ下向き三角形） ---- */
#support_single .env_arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 1.25em 0;
}

#support_single .env_arrow.pos_left {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

#support_single .env_arrow.pos_center {
  -webkit-justify-content: center;
  justify-content: center;
}

#support_single .env_arrow.pos_right {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

#support_single .env_arrow .arrow_mark {
  display: block;
  width: 0;
  height: 0;
  border-left: 1.25em solid transparent;
  border-right: 1.25em solid transparent;
  border-top: 1.7em solid var(--detail-pink, #e85a8c);
}

#support_single .env_arrow.size_s .arrow_mark {
  border-left-width: 0.85em;
  border-right-width: 0.85em;
  border-top-width: 1.15em;
}

#support_single .env_arrow.size_l .arrow_mark {
  border-left-width: 1.75em;
  border-right-width: 1.75em;
  border-top-width: 2.4em;
}

#support_single .env_arrow.color_blue .arrow_mark {
  border-top-color: var(--detail-blue, #8094DD);
}

#support_single .env_arrow.color_black .arrow_mark {
  border-top-color: #222;
}

#support_single .env_arrow.is_image img {
  display: block;
  width: 2.8em;
  height: auto;
}

#support_single .env_arrow.size_s.is_image img {
  width: 2em;
}

#support_single .env_arrow.size_l.is_image img {
  width: 4.2em;
}

#support_single .step_flow>.content:has(.env_arrow)::after,
#support_single .step_flow>.content:has(+ .env_arrow)::after,
#support_single .step_flow>.box:has(+ .env_arrow)::after,
#support_single .step_flow .content>.box:has(+ .env_arrow)::after,
#support_single .content.section_bg>.box:has(+ .env_arrow)::after {
  content: none;
  display: none;
  margin: 0;
  border: 0;
}

#support_single .content>h2,
#support_single .env_sec_title_lg {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.35em;
  margin: 0 0 1em;
  margin-bottom: 1em;
  padding: 0;
  border: 0;
  font-size: clamp(1.25em, 2.4vw, 1.55em);
  font-weight: 700;
  line-height: 1.4;
  color: var(--detail-blue);
}

#support_single .content>h2 .pink_deco,
#support_single .env_sec_title_lg .pink_deco {
  display: block;
  width: 1.55em;
  height: 1.55em;
  margin-right: -0.35em;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  line-height: 0;
}

#support_single .content>h2 .pink_deco svg,
#support_single .env_sec_title_lg .pink_deco svg {
  display: block;
  width: 100%;
  height: 100%;
}

#support_single .content>h2 .pink_deco svg path,
#support_single .env_sec_title_lg .pink_deco svg path {
  stroke: var(--detail-pink);
  stroke-width: 28px;
}

#support_single .box:not(:last-child) {
  margin-bottom: 2em;
}

#support_single .box>*:not(:last-child) {
  margin-bottom: 1em;
}

#support_single .box>h3:not(.env_step):not(.env_circle_heading),
#support_single .content>h3.env_sec_title,
#support_single .env_sec_title:not(.env_sec_title_lg):not(.env_sec_title_sm) {
  margin: 0 0 1em;
  padding: 0.15em 0 0.55em 0.85em;
  border-left: 4px solid var(--detail-blue);
  border-bottom: 1px solid var(--detail-line);
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.45;
  color: var(--detail-title);
}

/* h4：色のみ（背景・ボーダーなし） */
#support_single .box>h4,
#support_single .env_sec_title_sm {
  margin: 1.35em 0 0.65em;
  padding: 0;
  border: 0;
  background: none;
  font-size: 1.02em;
  font-weight: 700;
  line-height: 1.55;
  color: var(--detail-pink);
}

#support_single .box>h4:first-child,
#support_single .box>.env_sec_title_sm:first-child {
  margin-top: 0;
}

/* ---- STEP 見出し ---- */
#support_single .env_step {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.85em;
  margin: 0 0 1em;
  padding: 0;
  border: 0;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.35;
  color: var(--detail-title);
}

#support_single .env_step .step_badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  min-width: 3.5em;
  padding: 0.75em 0.75em;
  border-radius: 0em 0.5em 0.5em 0.5em;
  background: #8094dd;
  background: var(--detail-blue);
  color: #fff;
  line-height: 1.05;
  text-align: center;
}

#support_single .env_step .step_word {
  display: block;
  font-family: var(--font-futura-pt);
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.95;
}

#support_single .env_step .step_num {
  display: block;
  font-family: var(--font-futura-pt);
  font-size: 1.28em;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

#support_single .env_step .step_title {
  display: block;
  min-width: 0;
  padding: 0.08em 0.1em 0.18em 0;
  border-bottom: 4px solid var(--detail-pink);
  color: var(--detail-title);
  font-family: var(--font-heading);
  font-size: 1.28em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

/* ---- QA（よくある質問） ---- */
#support_single .qa_list {
  margin: 0;
  padding: 1.4em 1.5em 0.35em;
  background: #f4f6f8;
}

#support_single .qa_item {
  margin: 0 0 1.85em;
}

#support_single .qa_item:last-child {
  margin-bottom: 1.15em;
}

#support_single .qa_q {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 0;
  padding: 0.3em 0 0.55em 0.9em;
  border-left: 4px solid #8094dd;
  border-left-color: var(--detail-blue, #8094dd);
  border-bottom: 1px solid #d5dde8;
  font-size: 1.06em;
  font-weight: 700;
  line-height: 1.55;
  color: #3453C3;
  color: var(--detail-title, #3453C3);
}

#support_single .qa_q::before {
  content: "Q.";
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 0.45em;
  font-family: var(--font-futura-pt);
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: #8094dd;
  color: var(--detail-blue, #8094dd);
}

#support_single .qa_a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 0.9em 0 0;
  padding: 0 0 0 0.9em;
  color: #4a5560;
  font-weight: 400;
  line-height: 1.95;
}

#support_single .qa_a::before {
  content: "A.";
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-right: 0.45em;
  font-family: var(--font-futura-pt);
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #e86162;
  color: var(--detail-pink, #e86162);
}

/* ---- 円数字見出し ---- */
#support_single .env_circle_heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.75em;
  margin: 0 0 1em;
  padding: 0;
  border: 0;
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.4;
  color: #e86162;
  color: var(--detail-pink);
}

#support_single .env_circle_heading .circle_badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: 1.85em;
  height: 1.85em;
  border-radius: 50%;
  background: var(--detail-pink);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1;
}

#support_single .env_circle_heading .circle_title {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  color: #e86162;
  color: var(--detail-pink);
  line-height: 1.4;
}

#support_single .box>p {
  margin: 0;
  line-height: 1.9;
}

#support_single .box>.sub_lead {
  font-size: 1.05em;
  font-weight: 700;
}

#support_single .box>.note,
#support_single .note {
  margin: 0;
  padding: 0;
  font-size: 0.88em;
  line-height: 1.7;
  color: #777;
  background: transparent;
}

#support_single .list {
  margin: 0;
  padding: 1em 1.25em;
  list-style: none;
  background: #fff;
}

#support_single .list li {
  position: relative;
  padding-left: 1.15em;
  line-height: 1.75;
  color: #333;
}

#support_single .list li:not(:last-child) {
  margin-bottom: 0.55em;
}

#support_single .list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: var(--detail-pink);
}

#support_single .attention {
  margin: 0;
  padding: 1em 1.25em;
  list-style: none;
  background: #e8eaed;
}

#support_single .attention li {
  padding: 0;
  line-height: 1.75;
  font-size: 0.95em;
  color: #555;
}

#support_single .attention li:not(:last-child) {
  margin-bottom: 0.55em;
}

#support_single .attention li::before {
  content: none;
}

#support_single .attention.no_bg {
  background: transparent;
  padding: 0;
}

#support_single .table_box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#support_single .env_table_block .table_title {
  margin: 0 0 0.65em;
  padding: 0;
  font-size: 1.08em;
  font-weight: 700;
  line-height: 1.5;
  color: #e86162;
  color: var(--detail-pink);
}

#support_single .table_box table,
#support_single .support_therapy_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95em;
}

#support_single .table_box th,
#support_single .table_box td,
#support_single .support_detail table th,
#support_single .support_detail table td {
  padding: 0.85em 0.75em;
  border: 1px solid #d5dde8;
  vertical-align: middle;
  text-align: left;
  background: #fff;
  color: #333;
  empty-cells: show;
}

#support_single .table_box thead th,
#support_single .support_detail table thead th {
  font-weight: 700;
  color: var(--detail-title);
  background: #fff;
  text-align: center;
}

#support_single .table_box th[scope="row"],
#support_single .table_box thead th:first-child,
#support_single .support_detail table th[scope="row"],
#support_single .support_detail table thead th:first-child {
  width: 32%;
  min-width: 7em;
  font-weight: 700;
  color: var(--detail-title);
  background: #f0f5fa;
  text-align: left;
}

#support_single .table_box.is_stack th,
#support_single .table_box.is_stack td,
#support_single .table_box.is_stack.is_kv th,
#support_single .table_box.is_stack.is_kv th[scope="row"] {
  width: 100%;
  min-width: 0;
  text-align: left;
}

#support_single .table_box.is_stack tr.is_head th,
#support_single .table_box.is_stack.is_kv tr.is_head th,
#support_single .table_box.is_stack.is_kv tr.is_head th[scope="row"] {
  color: #222;
  background: #f4f6fa;
  font-weight: 700;
  text-align: left;
}

#support_single .table_box.is_stack tr.is_body td,
#support_single .table_box.is_stack.is_kv tr.is_body td {
  color: #333;
  background: #fff;
  font-weight: 400;
  text-align: left;
}

#support_single .table_box.is_cols th,
#support_single .table_box.is_cols td,
#support_single .table_box.is_cols thead th,
#support_single .table_box.is_cols thead th:first-child,
#support_single .table_box.is_cols th[scope="row"] {
  width: auto;
  min-width: 0;
  text-align: left;
}

#support_single .table_box.is_cols thead th,
#support_single .table_box.is_cols thead th:first-child,
#support_single .table_box.is_cols tr.is_head th {
  color: #222;
  background: #f4f6fa;
  font-weight: 700;
  text-align: left;
}

#support_single .table_box.is_cols td,
#support_single .table_box.is_cols tr.is_body td {
  color: #333;
  background: #fff;
  font-weight: 400;
  text-align: left;
}

#support_single .table_box.is_parallel td,
#support_single .table_box.is_parallel td[colspan] {
  background: #f7f8fa;
  text-align: center;
}

#support_single .table_box.is_parallel thead th:not(:first-child),
#support_single .table_box.is_parallel thead th[colspan] {
  text-align: center;
  background: #fff;
}

#support_single .table_box.is_parallel th[scope="row"] {
  text-align: left;
}

#support_single .table_box.is_parallel table {
  min-width: 480px;
}

#support_single .table_box td.therapy_cat {
  width: 6.5em;
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  color: var(--detail-blue);
  background: #f5f8fc;
}

#support_single .table_box .product_link,
#support_single .table_box td a,
#support_single .table_box .product_name,
#support_single .table_box .therapy_name {
  color: #2f8f4e;
  font-weight: 700;
}

#support_single .table_box .product_link:hover,
#support_single .table_box td a:hover {
  color: var(--detail-pink);
}

#support_single .table_box td ul {
  margin: 0;
  padding-left: 1.1em;
  list-style: disc;
}

#support_single .table_box td ul li::before {
  content: none;
}

#support_single .content.cta {
  margin-top: 0;
}

#support_single .content.cta .color_box {
  margin: 0;
  padding: 2.15em 1.75em 2em;
  background: #f3f7fc;
  text-align: center;
}

#support_single .color_box {
  margin: 2.5em 0;
  padding: 2em 1.75em 1.85em;
  background: #f3f7fc;
  text-align: center;
}

#support_single .color_box:not(:has(p)):not(:has(.color_title)) {
  padding: 1.25em 1.5em;
}

#support_single .content.cta .color_title,
#support_single .color_box .color_title {
  margin: 0 0 0.9em;
  padding: 0;
  border: 0;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--detail-title);
}

#support_single .color_box>p {
  margin: 0 auto 0.9em;
  max-width: 42em;
  line-height: 1.9;
  font-size: 1em;
  font-weight: 400;
  color: #333;
}

#support_single .color_box>p.color_title {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--detail-title);
  max-width: none;
}

#support_single .color_box .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.75em;
  width: 100%;
  margin: 1.5em 0 0;
}

#support_single .color_box .btns:first-child {
  margin-top: 0;
}

#support_single .color_box .btn,
#support_single .color_box a.btn,
#support_single .support_cta a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 3em;
  padding: 0.85em 1.4em;
  border-radius: 4px;
  background: var(--detail-blue);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
}

#support_single .color_box .btn:hover,
#support_single .color_box a.btn:hover,
#support_single .support_cta a:hover {
  background: var(--detail-pink);
  color: #fff;
}

/* ---- PDF付き文章 ---- */
#support_single .env_pdf_box {
  margin: 1.15em 0;
}

#support_single .env_pdf_box>p {
  margin: 0 0 0.75em;
}

#support_single .env_pdf_link {
  margin: 0;
}

#support_single .env_pdf_btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4em;
  min-height: 2.6em;
  padding: 0.55em 1.15em;
  border: 1px solid #8094DD;
  border-color: var(--detail-blue);
  border-radius: 4px;
  background: #fff;
  color: #8094DD;
  color: var(--detail-blue);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.35;
}

#support_single .env_pdf_btn .pdf_mark {
  font-size: 0.85em;
  font-weight: 700;
  color: #e86162;
  color: var(--detail-pink);
}

#support_single .env_pdf_btn:hover {
  background: #8094DD;
  background: var(--detail-blue);
  color: #fff;
}

#support_single .env_pdf_btn:hover .pdf_mark {
  color: #fff;
}

/* ---- 動画 / YouTube ---- */
#support_single .env_inline_video,
#support_single .env_embed_video {
  margin: 0 0 1.5em;
}

#support_single .env_inline_video_title,
#support_single .env_embed_caption {
  margin: 0 0 0.55em;
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--detail-title);
}

#support_single .env_video_wrap,
#support_single .env_embed_frame {
  position: relative;
  width: 100%;
  background: #111;
}

#support_single .env_video_wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

#support_single .env_embed_frame {
  padding-top: 56.25%;
}

#support_single .env_video_wrap video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

#support_single .env_embed_frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- 警告 ---- */
#support_single .env_warn {
  position: relative;
  margin: 1.5em 0;
  padding: 1.2em 1.4em 1.25em 4.15em;
  background: #fdecec;
  border: 2px solid #c62828;
  border-left-width: 8px;
}

#support_single .env_warn::before {
  content: "!";
  position: absolute;
  left: 1.15em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 1.85em;
  height: 1.85em;
  border-radius: 50%;
  background: #c62828;
  color: #fff;
  font-family: "futura-pt", var(--font-heading, sans-serif);
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
}

#support_single .env_warn_label {
  margin: 0 0 0.3em;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  color: #c62828;
}

#support_single .env_warn_text {
  margin: 0;
  font-weight: 700;
  line-height: 1.75;
  color: #5a1515;
}

#support_single .support_detail>.back {
  margin: 2.5em 0 0;
  text-align: center;
}

#support_single .content figure,
#support_single .support_figure,
#support_single .env_figure {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 2em auto;
  overflow: visible;
  text-align: center;
  aspect-ratio: auto;
  background: transparent;
}

#support_single .content figure.size_m,
#support_single .support_figure.size_m,
#support_single .env_figure.size_m {
  max-width: 640px;
}

#support_single .content figure.size_w,
#support_single .support_figure.size_w,
#support_single .env_figure.size_w {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

#support_single .content figure.size_w img,
#support_single .support_figure.size_w img,
#support_single .env_figure.size_w img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  object-position: center;
  background: #eef2f7;
}

#support_single .content figure.size_s,
#support_single .support_figure.size_s,
#support_single .env_figure.size_s {
  max-width: 400px;
}

#support_single .content figure img,
#support_single .support_figure img,
#support_single .env_figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

#support_single .content figure figcaption,
#support_single .support_figure figcaption,
#support_single .env_figure .env_caption {
  display: block;
  margin-top: 0.55em;
  font-size: 0.88em;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

/* 本文内写真の直後テキスト余白 */
#support_single .support_figure+p,
#support_single .content figure+p,
#support_single .env_figure+p {
  margin-top: 1.5em;
}

/* ---- 複数画像グリッド（2〜4列） ---- */
#support_single .env_image_grid {
  margin: 2em auto;
}

#support_single .env_image_grid .lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 1em;
  margin: 0;
}

#support_single .env_image_grid .env_figure,
#support_single .env_image_grid figure {
  margin: 0;
  width: auto;
  max-width: none;
}

#support_single .env_image_grid.cols_2 .lists .env_figure {
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 calc(50% - 0.5em);
  flex: 0 0 calc(50% - 0.5em);
  max-width: calc(50% - 0.5em);
}

#support_single .env_image_grid.cols_3 .lists .env_figure {
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 calc(33.333% - 0.67em);
  flex: 0 0 calc(33.333% - 0.67em);
  max-width: calc(33.333% - 0.67em);
}

#support_single .env_image_grid.cols_4 .lists .env_figure {
  -webkit-box-flex: 1;
  -webkit-flex: 0 0 calc(25% - 0.75em);
  flex: 0 0 calc(25% - 0.75em);
  max-width: calc(25% - 0.75em);
}

#support_single .env_image_grid > .env_caption {
  margin: 0.55em 0 0;
  font-size: 0.88em;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #support_archive .lists .item_link {
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  #support_archive .lists .item .img,
  #support_archive .lists .item .text {
    width: 100%;
  }

  #support_archive .lists .item .img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  #support_archive .lists .item .text {
    padding: 1.25em 0 0;
  }

  #support_archive .more_box {
    -webkit-align-self: flex-start;
    align-self: flex-start;
  }

  #support_single>.inner>.contents {
    display: block;
  }

  #support_single .support_detail>.title h1 {
    font-size: 1.35em;
  }

  #support_single .step_flow,
  #support_single .content.section_bg {
    padding: 1.15em 0.85em 1.25em;
  }

  #support_single .step_flow .box,
  #support_single .content.section_bg>.box {
    padding: 1.25em 1.15em 1.4em;
  }

  #support_single .step_flow>.content:not(:last-child)::after,
  #support_single .step_flow>.box:not(:last-child)::after,
  #support_single .step_flow .content>.box:has(.env_step):not(:last-child)::after,
  #support_single .content.section_bg>.box:has(.env_step):not(:last-child)::after {
    margin: 1.4em auto 1.4em;
    border-left-width: 1.05em;
    border-right-width: 1.05em;
    border-top-width: 1.45em;
  }

  #support_single .qa_list {
    padding: 1.15em 1em 0.2em;
  }

  #support_single .env_image_grid.cols_3 .lists .env_figure,
  #support_single .env_image_grid.cols_4 .lists .env_figure {
    -webkit-flex: 0 0 calc(50% - 0.5em);
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}

@media screen and (max-width: 480px) {
  #support_single .env_image_grid .lists .env_figure {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
