@charset "utf-8";
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

/* CSS Document */

/*-------------------------------------*/

.sc-obj-template1 {
  --sc-obj-primary: #336bce;
  --sc-obj-primary-dark: #1890c9;
  --sc-obj-primary-soft: #1890c924;
  --sc-obj-accent: #0f766e;
  --sc-obj-link: #574de0;
  --sc-obj-text: #1f2937;
  --sc-obj-subtext: #5f6b7a;
  --sc-obj-line: #d9e3e8;
  --sc-obj-bg: #f7fafb;
  --sc-obj-white: #ffffff;

  --sc-obj-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  --sc-obj-radius: 18px;
  --sc-obj-radius-sm: 12px;
  --sc-obj-max: 1180px;

  color: var(--sc-obj-text);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.sc-obj-template1.sc-obj-message {
  --sc-obj-primary: #009698;
  --sc-obj-primary-dark: #00796b;
  --sc-obj-primary-soft: #e8f6f4;
}


.sc-obj-template1 *,
.sc-obj-template1 *::before,
.sc-obj-template1 *::after {
  box-sizing: border-box;
}

.sc-obj-template1 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sc-obj-template1 a {
  color: inherit;
  text-decoration: none;
}

.sc-obj-template1 h1,
.sc-obj-template1 h2,
.sc-obj-template1 h3 {
  margin: 18px 0 22px 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--sc-obj-text);
}

.sc-obj-template1 h3::before {
  display: none;
}

.sc-obj-template1 h1 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  color: var(--sc-obj-primary);
}

.sc-obj-template1 h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
}

.sc-obj-template1 h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0 0 0;
}

.sc-obj-template1 p {
  padding-left: 12px;
  margin-bottom: 5px;
}

.sc-obj-template1 strong {
  color: var(--sc-obj-text);
}

.sc-obj-template1 .sc-obj-container {
  width: min(calc(100% - 32px), var(--sc-obj-max));
  margin: 0 auto;
}

.sc-obj-template1 .sc-obj-section {
  padding: 72px 0;
}

.sc-obj-template1 .sc-obj-section-head {
  margin-bottom: 28px;
}

.sc-obj-template1 .sc-obj-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sc-obj-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.sc-obj-template1 .sc-obj-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--sc-obj-primary);
  display: inline-block;
}

.sc-obj-template1 .sc-obj-eyebrow-light {
  color: rgba(255, 255, 255, 0.92);
}

.sc-obj-template1 .sc-obj-eyebrow-light::before {
  background: rgba(255, 255, 255, 0.75);
}

.sc-obj-template1 .sc-obj-lead {
  font-size: 18px;
  line-height: 1.95;
}

.sc-obj-section .sc-obj-lead-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.sc-obj-section .sc-obj-lead-wrap .sc-obj-lead {
  flex: 1;
  margin-bottom: 0;
}

.sc-obj-section .sc-obj-lead-wrap .sc-obj-lead-image {
  flex: 0 0 40%;
}

.sc-obj-section .sc-obj-lead-wrap .sc-obj-lead-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .sc-obj-section .sc-obj-lead-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sc-obj-section .sc-obj-lead-wrap .sc-obj-lead-image {
    width: 100%;
  }
}

.sc-obj-template1 .sc-obj-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sc-obj-template1 .sc-obj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sc-obj-template1 .sc-obj-ctn-btn {
  display: block;
  margin: auto auto 0;
  padding: 10px 10px;
  background: #0078D4;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;

}

.sc-obj-template1 .sc-obj-btn:hover {
  transform: translateY(-2px);
}

.sc-obj-template1 .sc-obj-btn-primary {
  background: var(--sc-obj-primary);
  color: #fff !important;
  box-shadow: 0 10px 26px rgb(26 155 216 / 28%);
}

.sc-obj-template1 .sc-obj-btn-primary:hover {
  background: var(--sc-obj-primary-dark);
}

.sc-obj-template1 .sc-obj-btn-secondary {
  background: #fff;
  color: var(--sc-obj-primary-dark) !important;
  border: 1px solid rgba(0, 150, 136, 0.22);
}

.sc-obj-template1 .sc-obj-btn-primary-ghost {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff !important;
}

/* -----------------------------------------
   Hero
------------------------------------------ */

.sc-obj-template1 .sc-obj-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  background: var(--sc-obj-bg);
}

.sc-obj-template1 .sc-obj-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.sc-obj-template1 .sc-obj-hero-copy p+p {
  margin-top: 14px;
}

.sc-obj-template1 .sc-obj-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.sc-obj-template1 .sc-obj-hero-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 150, 136, 0.14);
  color: var(--sc-obj-primary-dark);
  font-size: 13px;
  font-weight: 700;
}

.sc-obj-template1 .sc-obj-hero-visual {
  position: relative;
}

.sc-obj-template1 .sc-obj-hero-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 16px;
  border: 1px solid #e3edf3;
}

.sc-obj-template1 .sc-obj-hero-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.sc-obj-template1 .sc-obj-floating-note {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--sc-obj-shadow);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 18px;
}

.sc-obj-template1 .sc-obj-floating-note strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.sc-obj-template1 .sc-obj-floating-note p {
  font-size: 13px;
  line-height: 1.7;
}

/* -----------------------------------------
   Common panel/card
------------------------------------------ */

.sc-obj-template1 .sc-obj-panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 24px;
  box-shadow: var(--sc-obj-shadow);
  padding: 28px;
}

/* -----------------------------------------
   Problems
------------------------------------------ */

.sc-obj-template1 .sc-obj-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.sc-obj-template1 .sc-obj-problem-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e7edf0;
  border-radius: 16px;
  padding: 18px;
}

.sc-obj-template1 .sc-obj-problem-icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border-radius: 12px;
  background: var(--sc-obj-primary-soft);
  color: var(--sc-obj-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.sc-obj-template1 .sc-obj-kicker {
  margin-top: 18px;
  background: var(--sc-obj-primary-soft);
  color: var(--sc-obj-primary-dark);
  border-radius: 16px;
  padding: 16px 18px;
  font-weight: 700;
}

/* -----------------------------------------
   Features
------------------------------------------ */

.sc-obj-template1 .sc-obj-feature-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.sc-obj-template1 .sc-obj-feature-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.sc-obj-template1 .sc-obj-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.sc-obj-template1 .sc-obj-feature-card {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid #e6eef0;
  border-radius: 16px;
  background: #fff;
}

.sc-obj-template1 .sc-obj-feature-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--sc-obj-primary-soft);
  color: var(--sc-obj-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 34px;
  margin: 8px 0;
}

.sc-obj-template1 .sc-obj-feature-visual {
  display: flex;
}

.sc-obj-template1 .sc-obj-feature-image-card {
  width: 100%;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #dbe5ec;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.sc-obj-template1 .sc-obj-feature-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* -----------------------------------------
   Flow / Value
------------------------------------------ */

.sc-obj-template1 .sc-obj-flow-card {
  height: 100%;
  background: linear-gradient(180deg, #f8fcfc 0%, #ffffff 100%);
  border: 1px solid #e6edef;
  border-radius: 22px;
  padding: 24px;
}

.sc-obj-template1 .sc-obj-flow-card-wide {
  margin-top: 32px;
  width: 100%;
}

.sc-obj-template1 .sc-obj-flow-card-wide .sc-obj-flow {
  margin-top: 24px;
}

.sc-obj-template1 .sc-obj-flow {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.sc-obj-template1 .sc-obj-flow-step {
  position: relative;
  padding: 22px 20px;
  background: #ffffff;
  border: 1px solid #dbe5ec;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.sc-obj-template1 .sc-obj-flow-step::before {
  content: attr(data-step);
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #009698;
  background: #e8f6f4;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.sc-obj-template1 .sc-obj-flow-step strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
  color: #1f2937;
}

.sc-obj-template1 .sc-obj-flow-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #5f6b7a;
}

.sc-obj-template1 .sc-obj-flow-arrow {
  text-align: center;
}

.sc-obj-template1 .sc-obj-flow-arrow::before {
  content: "→";
  font-size: 22px;
  font-weight: bold;
  color: #009698;
}

/* -----------------------------------------
   Scenes
------------------------------------------ */

.sc-obj-template1 .sc-obj-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.sc-obj-template1 .sc-obj-scene-card {
  background: #fff;
  border: 1px solid #e7edf0;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.sc-obj-template1 .sc-obj-scene-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--sc-obj-primary-soft);
  color: var(--sc-obj-primary-dark);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.sc-obj-template1 .sc-obj-scene-card p {}

/* -----------------------------------------
   Compare
------------------------------------------ */

.sc-obj-template1 .sc-obj-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.sc-obj-template1 .sc-obj-compare-card {
  background: #fff;
  border: 1px solid #e8eef1;
  border-radius: 22px;
  overflow: hidden;
}

.sc-obj-template1 .sc-obj-compare-head {
  padding: 18px 20px;
  font-weight: 800;
  font-size: 18px;
  border-bottom: 1px solid #e8eef1;
}

.sc-obj-template1 .sc-obj-compare-card.general .sc-obj-compare-head {
  background: #f7f9fa;
  color: #43515b;
  text-align: center;
}

.sc-obj-template1 .sc-obj-compare-card.smartcore .sc-obj-compare-head {
  background: var(--sc-obj-primary-soft);
  color: var(--sc-obj-primary-dark);
  text-align: center;
}

.sc-obj-template1 .sc-obj-compare-list {
  padding: 8px 20px 20px;
  display: grid;
  gap: 12px;
}

.sc-obj-template1 .sc-obj-compare-list div {
  padding: 12px 0 12px 28px;
  border-bottom: 1px dashed #e8eef1;
  position: relative;
}

.sc-obj-template1 .sc-obj-compare-list div:last-child {
  border-bottom: none;
}

.sc-obj-template1 .sc-obj-compare-list div::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 11px;
  color: var(--sc-obj-primary);
}

/* -----------------------------------------
   Points
------------------------------------------ */

.sc-obj-template1 .sc-obj-point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.sc-obj-template1 .sc-obj-point-card {
  background: #fff;
  border: 1px solid #e7edf0;
  border-radius: 20px;
  padding: 22px;
}

.sc-obj-template1 .sc-obj-point-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sc-obj-primary-soft);
  color: var(--sc-obj-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

/* -----------------------------------------
   CTA
------------------------------------------ */

.sc-obj-template1 .sc-obj-cta-section {
  padding: 84px 0 96px;
}

.sc-obj-template1 .sc-obj-cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sc-obj-primary) 0%, var(--sc-obj-primary-dark) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 42px rgba(0, 105, 97, 0.24);
}

.sc-obj-template1 .sc-obj-cta-box::before,
.sc-obj-template1 .sc-obj-cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.sc-obj-template1 .sc-obj-cta-box::before {
  width: 260px;
  height: 260px;
  right: -100px;
  top: -100px;
}

.sc-obj-template1 .sc-obj-cta-box::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -80px;
}

.sc-obj-template1 .sc-obj-cta-box>* {
  position: relative;
  z-index: 1;
}

.sc-obj-template1 .sc-obj-cta-box p,
.sc-obj-template1 .sc-obj-cta-box strong,
.sc-obj-template1 .sc-obj-cta-box h2 {
  color: #fff;
}

.sc-obj-template1 .sc-obj-cta-box .sc-obj-btn-secondary {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  color: #0c6f67 !important;
}

/* -----------------------------------------
   Support / Contact
------------------------------------------ */

.sc-obj-template1 .sc-obj-support-section,
.sc-obj-template1 .sc-obj-contact-section {
  padding: 72px 0;
}

.sc-obj-template1 .sc-obj-support-section {
  background: #f7fafc;
}

.sc-obj-template1 .sc-obj-contact-section {
  background: #ffffff;
  border-top: 1px solid #e5edf3;
}

.sc-obj-template1 .sc-obj-support-visual-wrap {
  margin-top: 32px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #dbe5ec;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  text-align: center;
}

.sc-obj-template1 .sc-obj-support-visual-wrap img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.sc-obj-template1 .sc-obj-support-note {
  margin-top: 22px;
  padding: 18px 20px;
  background: #f1f7fa;
  border: 1px solid #d9e6ec;
  border-radius: 14px;
}

.sc-obj-template1 .sc-obj-support-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #5b6875;
}

.sc-obj-template1 .sc-obj-link-row {
  margin-top: 22px;
  text-align: right;
}

.sc-obj-template1 .sc-obj-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--sc-obj-link);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sc-obj-template1 .sc-obj-text-link:hover {
  opacity: 0.82;
  transform: translateX(2px);
}

.sc-obj-template1 .sc-obj-flow-steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.sc-obj-template1 .sc-obj-flow-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 22px 22px;
  color: var(--sc-obj-link);
  background: #ffffff;
  border: 1px solid #dbe5ec;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.sc-obj-template1 .sc-obj-flow-step-card.is-highlight {
  background: linear-gradient(180deg, #f5fbfb 0%, #ffffff 100%);
  border-color: #bfe3df;
  box-shadow: 0 14px 34px rgba(0, 150, 152, 0.08);
}

.sc-obj-template1 .sc-obj-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: #e8f6f4;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

.sc-obj-template1 .sc-obj-flow-step-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.45;
  color: #1f2937;
}

.sc-obj-template1 .sc-obj-flow-step-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #5f6b7a;
}

.sc-obj-template1 .sc-obj-flow-step-card .sc-obj-btn {
  margin-top: 18px;
}

.sc-obj-template1 .sc-obj-flow-step-card>.sc-obj-btn,
.sc-obj-template1 .sc-obj-flow-step-card>a.sc-obj-btn {
  margin-top: auto;
  align-self: flex-start;
}

.sc-obj-template1 .sc-obj-contact-note {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #e5edf3;
  text-align: center;
}

.sc-obj-template1 .sc-obj-contact-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
}

.sc-obj-template1 .sc-obj-btn-row-center {
  justify-content: center;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   sc-obj-template1 Add-on
   Core System / Member Database page
========================================================= */

/* コアシステムの階層表現 */
.sc-obj-template1 .sc-obj-core-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.sc-obj-template1 .sc-obj-core-layer {
  position: relative;
  padding: 18px 20px 18px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 60, 120, 0.12);
  box-shadow: 0 10px 30px rgba(20, 60, 120, 0.06);
}

.sc-obj-template1 .sc-obj-core-layer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1677ff, #5ec8ff);
}

.sc-obj-template1 .sc-obj-core-layer strong {
  display: block;
  margin-bottom: 6px;
  color: #123b75;
  font-size: 16px;
  line-height: 1.5;
}

.sc-obj-template1 .sc-obj-core-layer p {
  margin: 0;
  color: #526174;
  font-size: 14px;
  line-height: 1.8;
}

/* 関連機能リンク */
.sc-obj-template1 .sc-obj-mini-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sc-obj-template1 .sc-obj-mini-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(22, 119, 255, 0.08);
  color: #1456a8;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.sc-obj-template1 .sc-obj-mini-link-list a::after {
  content: "→";
  font-size: 13px;
  line-height: 1;
}

.sc-obj-template1 .sc-obj-mini-link-list a:hover {
  background: rgba(22, 119, 255, 0.14);
  color: #0f4f9e;
  transform: translateY(-1px);
}

/* 画像カード内の画像調整 */
.sc-obj-template1 .sc-obj-feature-image-card img,
.sc-obj-template1 .sc-obj-hero-card img,
.sc-obj-template1 .sc-obj-lead-image img {
  max-width: 100%;
  height: auto;
}

/* セキュリティ・会員管理系のカード読みやすさ調整 */
.sc-obj-template1 .sc-obj-feature-card p,
.sc-obj-template1 .sc-obj-point-card p,
.sc-obj-template1 .sc-obj-scene-card p,
.sc-obj-template1 .sc-obj-problem-item p {
  line-height: 1.8;
}

/* 料金表示 */
.sc-obj-template1 .price {
  font-size: 1.45em;
  font-weight: 800;
  color: #1677ff;
  letter-spacing: 0.02em;
}

/* スマホ調整 */
@media (max-width: 767.98px) {
  .sc-obj-template1 .sc-obj-core-layer {
    padding: 16px 16px 16px 20px;
    border-radius: 16px;
  }

  .sc-obj-template1 .sc-obj-mini-link-list {
    gap: 8px;
  }

  .sc-obj-template1 .sc-obj-mini-link-list a {
    width: 100%;
    justify-content: space-between;
    padding: 11px 14px;
  }
}

/* -----------------------------------------
   Responsive
------------------------------------------ */

@media (max-width: 1080px) {

  .sc-obj-template1 .sc-obj-hero-grid,
  .sc-obj-template1 .sc-obj-feature-wrap,
  .sc-obj-template1 .sc-obj-scene-grid,
  .sc-obj-template1 .sc-obj-point-grid,
  .sc-obj-template1 .sc-obj-compare-grid,
  .sc-obj-template1 .sc-obj-problem-grid {
    grid-template-columns: 1fr;
  }

  .sc-obj-template1 .sc-obj-floating-note {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
}

@media (max-width: 991.98px) {

  .sc-obj-template1 .sc-obj-support-section,
  .sc-obj-template1 .sc-obj-contact-section {
    padding: 56px 0;
  }

  .sc-obj-template1 .sc-obj-feature-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sc-obj-template1 .sc-obj-feature-visual {
    order: 2;
  }

  .sc-obj-template1 .sc-obj-flow-card-wide {
    margin-top: 24px;
  }

  .sc-obj-template1 .sc-obj-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sc-obj-template1 .sc-obj-flow-arrow {
    display: none;
  }

  .sc-obj-template1 .sc-obj-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .sc-obj-template1 .sc-obj-flow-step-card h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .sc-obj-template1 .sc-obj-section {
    padding: 56px 0;
  }

  .sc-obj-template1 .sc-obj-hero {
    padding: 66px 0 48px;
  }

  .sc-obj-template1 .sc-obj-hero-card,
  .sc-obj-template1 .sc-obj-panel,
  .sc-obj-template1 .sc-obj-cta-box {
    padding: 22px;
  }

  .sc-obj-template1 .sc-obj-scene-grid,
  .sc-obj-template1 .sc-obj-point-grid,
  .sc-obj-template1 .sc-obj-problem-grid {
    gap: 14px;
  }

  .sc-obj-template1 .sc-obj-btn-row {
    flex-direction: column;
  }

  .sc-obj-template1 .sc-obj-btn {
    width: 100%;
  }

  .sc-obj-template1 .sc-obj-support-visual-wrap {
    margin-top: 24px;
    padding: 18px;
    border-radius: 16px;
  }

  .sc-obj-template1 .sc-obj-support-note {
    margin-top: 18px;
    padding: 16px;
    border-radius: 12px;
  }

  .sc-obj-template1 .sc-obj-link-row {
    text-align: left;
  }

  .sc-obj-template1 .sc-obj-flow-steps {
    grid-template-columns: 1fr;
  }

  .sc-obj-template1 .sc-obj-flow-step-card {
    padding: 20px 18px 18px;
    border-radius: 16px;
  }

  .sc-obj-template1 .sc-obj-flow-step-card h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .sc-obj-template1 .sc-obj-flow-step-card p,
  .sc-obj-template1 .sc-obj-contact-note p {
    font-size: 14px;
    line-height: 1.8;
  }

  .sc-obj-template1 .sc-obj-btn-row-center {
    flex-direction: column;
    align-items: stretch;
  }

  .sc-obj-template1 .sc-obj-btn-row-center .sc-obj-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.sc-obj-template1 .sc-obj-function-map {
  margin-top: 30px;
}

.sc-obj-template1 .feature_functions_wrap {
  margin: 0;
}

/* =========================================================
   sc-obj-template2
========================================================= */

.sc-obj-template2 {
  --sc2-primary: #1677ff;
  --sc2-primary-dark: #0b5ed7;
  --sc2-bg: #f6f9fc;
  --sc2-bg-blue: #f1f7ff;
  --sc2-card: #fff;
  --sc2-text: #1f2937;
  --sc2-muted: #64748b;
  --sc2-border: #e5eaf1;
  --sc2-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  color: var(--sc2-text);
}

.sc2-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.sc2-section {
  padding: 76px 0;
}

.sc2-section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.sc2-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--sc2-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sc2-section-head h2,
.sc2-detail-card h2,
.sc2-price-card h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.45;
  font-weight: 800;
}

.sc2-section-head p,
.sc2-text-block p,
.sc2-detail-card p,
.sc2-price-card p,
.sc2-support p,
.sc2-contact p {
  color: var(--sc2-muted);
  font-size: 16px;
  line-height: 1.9;
}

.sc-obj-template2 img {
  max-width: 100%;
  height: auto;
}

/* Hero */
.sc2-hero {
  padding: 88px 0;
  background:
    radial-gradient(circle at right top, rgba(22, 119, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #fff 78%);
}

.sc2-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 48px;
  align-items: center;
}

.sc2-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.45;
  font-weight: 800;
}

.sc2-hero p {
  max-width: 760px;
  color: var(--sc2-muted);
  font-size: 17px;
  line-height: 1.9;
}

.sc2-hero-visual {
  text-align: center;
}

.sc2-hero-visual img {
  max-width: 260px;
  filter: drop-shadow(0 20px 28px rgba(15, 23, 42, 0.14));
}

/* Intro */
.sc2-intro {
  background: #fff;
}

.sc2-concept-image {
  max-width: 820px;
  margin: 0 auto 38px;
  padding: 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--sc2-shadow);
}

.sc2-composition {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  margin: 36px auto;
}

.sc2-composition-card {
  width: 210px;
  padding: 26px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--sc2-border);
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.sc2-composition-card img {
  height: 68px;
  margin-bottom: 14px;
}

.sc2-composition-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.sc2-composition-card span {
  font-size: 13px;
  color: var(--sc2-muted);
}

.sc2-plus {
  display: flex;
  align-items: center;
  color: var(--sc2-primary);
  font-size: 28px;
  font-weight: 800;
}

.sc2-text-block {
  max-width: 860px;
  margin: 0 auto;
}

/* Features */
.sc2-features {
  background: var(--sc2-bg);
}

.sc2-feature-list {
  display: grid;
  gap: 22px;
}

.sc2-feature-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--sc2-border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.sc2-feature-media {
  text-align: center;
}

.sc2-feature-media img {
  max-width: 150px;
}

.sc2-feature-num {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--sc2-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sc2-feature-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 800;
}

.sc2-feature-card p {
  margin: 0;
  color: var(--sc2-muted);
  font-size: 16px;
  line-height: 1.85;
}

/* Detail */
.sc2-detail {
  background: #fff;
}

.sc2-detail-card {
  margin-bottom: 30px;
  padding: 38px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--sc2-border);
  box-shadow: var(--sc2-shadow);
}

.sc2-detail-card-media {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
}

.sc2-detail-image {
  text-align: center;
}

.sc2-detail-image img {
  max-width: 220px;
}

.sc2-function-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 24px;
  margin-top: 30px;
}

.sc2-function-group {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--sc2-border);
  overflow: hidden;
}

.sc2-function-group h3 {
  margin: 0;
  padding: 14px 18px;
  background: var(--sc2-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.sc2-function-core h3 {
  background: #334155;
}

.sc2-function-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 14px;
}

.sc2-function-core .sc2-function-icons {
  grid-template-columns: repeat(3, 1fr);
}

.sc2-function-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 104px;
  padding: 14px 8px;
  color: var(--sc2-text);
  text-align: center;
  text-decoration: none;
  border-radius: 14px;
}

.sc2-function-icons a:hover {
  background: var(--sc2-bg-blue);
}

.sc2-function-icons img {
  height: 38px;
  margin-bottom: 8px;
}

.sc2-function-icons span {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

/* Buttons */
.sc2-button-outline,
.sc2-button-main,
.sc2-button-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.sc2-button-outline {
  border: 1px solid var(--sc2-primary);
  color: var(--sc2-primary);
  background: #fff;
}

.sc2-button-outline:hover {
  color: #fff;
  background: var(--sc2-primary);
}

.sc2-button-main {
  color: #fff;
  background: var(--sc2-primary);
}

.sc2-button-sub {
  color: var(--sc2-primary);
  background: #fff;
  border: 1px solid var(--sc2-primary);
}

.sc2-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
}

/* Price */
.sc2-price {
  background: var(--sc2-bg);
}

.sc2-price-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 46px 36px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--sc2-border);
  box-shadow: var(--sc2-shadow);
  text-align: center;
}

.sc2-price-text {
  color: var(--sc2-primary);
  font-size: 34px;
  font-weight: 900;
}

.sc2-note {
  margin-top: 20px;
  color: var(--sc2-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Support */
.sc2-support {
  background: linear-gradient(135deg, #f4f8ff, #fff);
}

.sc2-support-image {
  max-width: 680px;
  margin: 0 auto 28px;
  padding: 18px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--sc2-shadow);
}

.sc2-center {
  text-align: center;
}

/* Flow / Contact */
.sc2-contact {
  background: #fff;
}

.sc2-flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.sc2-flow-card {
  padding: 24px 16px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--sc2-border);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.sc2-flow-card.is-active {
  background: linear-gradient(180deg, #fff, #f2f7ff);
  border-color: rgba(22, 119, 255, 0.3);
}

.sc2-flow-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--sc2-primary);
  font-size: 12px;
  font-weight: 900;
}

.sc2-flow-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 800;
}

.sc2-flow-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.sc2-cta {
  margin-top: 42px;
  padding: 34px;
  border-radius: 28px;
  background: var(--sc2-bg);
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {

  .sc2-hero-grid,
  .sc2-detail-card-media,
  .sc2-function-panel {
    grid-template-columns: 1fr;
  }

  .sc2-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .sc2-function-core .sc2-function-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .sc2-section,
  .sc2-hero {
    padding: 56px 0;
  }

  .sc2-hero-grid {
    text-align: center;
  }

  .sc2-composition {
    flex-direction: column;
    align-items: center;
  }

  .sc2-plus {
    transform: rotate(90deg);
  }

  .sc2-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sc2-flow {
    grid-template-columns: 1fr;
  }

  .sc2-detail-card,
  .sc2-price-card,
  .sc2-cta {
    padding: 28px 22px;
  }

  .sc2-price-text {
    font-size: 28px;
  }
}

/* =========================================================
   Features / LP Pages - Feature Index
========================================================= */
/* ==============================
1.features
============================== */
#feature-index .sampleimage {
  margin-top: 4rem;
  text-align: center;
}

#feature-index h2 {
  margin: 3rem 0 1rem 0;
  padding: 1rem 0;
  border-bottom: 1px solid #dadada;
  color: #1888b9;
  text-align: left;
}

#feature-index h2 img {
  height: 3.3rem;
  float: left;
  position: relative;
  top: -5px;
  left: -10px;
}

#feature-index .btn-default {
  margin: 1.5rem 0 1rem 0;
}

#feature-index .title-desc {
  padding: 1rem 0;
  font-size: 1rem;
}

#feature-index .title-desc ul {
  padding: 1rem 1.5rem;
  font-weight: bold;
  line-height: 2.5rem;
  border: 1px solid #d7d7d7;
  border-radius: 6px;
  margin: 2rem 1rem;
}

#feature-index .title-desc ul li {
  list-style: none;
}

#feature-index .title-desc ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #1888b9;
  border-radius: 50%;
  position: relative;
  top: -1px;
  margin-right: 10px;
}

#features .price-model-icons img {
  width: 32px;
  margin: 5px;
}

.modelcase-core img,
.modelcase-option img {
  width: 80px;
  margin: 10px;
}

.modelcase-core h5 {
  padding: 1.5rem 0 0.25rem 1rem;
}

.gakkai-img-mark .pmark {
  margin-right: 1rem;
}

.estimate-bloc {
  background: #f5f5f5;
  padding: 40px;
  font-size: 14px;
  line-height: 1.5rem;
}

@media screen and (max-width: 680px) {
  .estimate-bloc {
    padding: 10px;
  }
}

.estimate-bloc .title {
  font-size: 20px;
  margin-bottom: 10px;
}

.estimate-bloc .card .row .row .col-6>div {
  background: #f5f5f5;
  font-size: 13px;
  height: 100%;
  line-height: 1rem;
  padding: 2px;
}

.estimate-bloc .card strong {
  font-size: 17px;
}

.estimate-bloc .border-top {
  border-top: 4px double #dee2e6 !important;
}

.estimate-bloc .price {
  color: #336bce;
  font-size: 30px;
  font-weight: bold;
  margin-left: 1.8rem;
}

.estimate-bloc>.row>div[class*="col-"]:last-of-type {
  font-size: 18px;
}

.obj-af-worries .card {
  background: #f5f5f5;
  border: none;
  overflow: hidden;
  border-radius: 20px;
}

.obj-af-worries .card-text {
  padding: 30px 20px;
}

@media screen and (min-width: 680px) {
  .obj-af-worries .card-text {
    margin: 20px 10px 70px 10px;
  }

  .obj-af-worries .card-text strong {
    font-size: 21px;
  }

  .obj-af-worries .card .row>div[class*="col"]:last-of-type {
    background-repeat: no-repeat;
    background-position: bottom 10px right;
    background-size: 100px;
  }
}

.obj-af-worries .card .row.no-gutters>div[class*="col"]:first-of-type {
  background: #a1b8cf;
}

@media screen and (min-width: 680px) {
  .obj-af-worries .type1 .card .row>div[class*="col"]:last-of-type {
    background-image: url(../homepage/1.features/_images/w-type-icon1.png);
  }

  .obj-af-worries .type2 .card .row>div[class*="col"]:last-of-type {
    background-image: url(../homepage/1.features/_images/w-type-icon2.png);
  }

  .obj-af-worries .type3 .card .row>div[class*="col"]:last-of-type {
    background-image: url(../homepage/1.features/_images/w-type-icon3.png);
  }

  .obj-af-worries .type4 .card .row>div[class*="col"]:last-of-type {
    background-image: url(../homepage/1.features/_images/w-type-icon4.png);
  }
}

@media (max-width: 480px) {
  #feature-index .container {
    padding: 0 .5rem;
  }

  .i-f-baloon img {
    height: 3rem;
    position: relative;
  }

  .i-f-title a {
    font-size: 1.3rem;
  }

  #feature-index h2 img {
    display: none;
  }

  .gakkai-img-mark {
    text-align: center;
  }

  .flex-container {
    display: flex;
    flex-direction: column-reverse;
  }
}


/* =========================================================
   Features / LP Pages - Shared Security Icons & Features Dekirukoto
========================================================= */
/* =========================
   セキュリティアイコン一覧
========================= */

.obj_wrap_block {
  margin: 40px 0;
  padding: 30px 20px;
  background: #f7f9fb;
  border-radius: 6px;
}

.obj_wrap_block h3 {
  text-align: center;
  margin-bottom: 25px;
}

/* グリッド化 */
.feature_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

/* カード化 */
.feature_wrap figure {
  margin: 0;
  padding: 18px 10px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* アイコン */
.feature_wrap figure img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* テキスト */
.feature_wrap figure figcaption {
  font-size: 13px;
  color: #333;
}

/* ホバー効果（控えめ） */
.feature_wrap figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  border-color: #d0d7de;
}

/*-------features-dekirukoto-------*/
.features-dekirukoto {
  padding: 50px 0 60px 0;
}

.features-dekirukoto .feature_functions_core {
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, .125);
}

.no-bg {
  background: none;
}

.text-highlight {
  color: #009698 !important;
}

.features-dekirukoto h1 {
  border: none;
}

.features-dekirukoto h2 {
  color: #333;
  padding: 25px 0 10px 0;
  text-align: left;
}

.features-dekirukoto h3 {
  font-size: 20px;
  border: none;
  margin-top: 1rem;
  padding: 0px 5px 5px 20px;
}

.features-dekirukoto h3:before {
  content: "";
  display: block;
  background-image: url(../_images/function-icon1.png);
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  position: relative;
  top: 30px;
  left: -40px;
  background-size: cover;
  line-height: unset;
}

.features-dekirukoto p {
  padding: 0 0 0 20px;
}

.features-dekirukoto .enlarge {
  font-size: 77px;
  color: #009698;
  font-weight: bold;
  position: relative;
  top: -15px;
}

.features-dekirukoto .inquiry-area {
  text-align: center;
  padding: 0 0 40px 0;
}

.features-dekirukoto-boxes {
  max-width: 700px;
  min-height: 300px;
  background: #FFFFFF;
  border: 1px solid #f4f4f4;
  margin: 100px 0 50px 0;
  padding: 10px 35px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgb(0 0 0 / 12%);
}

.features-dekirukoto-boxes p {
  padding: 0 0 15px 0;
}

.features-dekirukoto-boxes p a {
  color: inherit;
  text-decoration: none;
}

.features-dekirukoto-boxes-1 {
  background-image: url(../homepage/1.features/_images/features-dekirukoto_box1.png);
  background-repeat: no-repeat;
  background-position-x: 250px;
  margin: 30px 0;
}

.features-dekirukoto-boxes-2 {
  background-image: url(../homepage/1.features/_images/features-dekirukoto_box2.png);
  background-repeat: no-repeat;
  background-position-x: 250px;
  margin: 70px 0;
}

.features-dekirukoto-boxes-3 {
  background-image: url(../homepage/1.features/_images/features-dekirukoto_box3.png);
  background-repeat: no-repeat;
  background-position-x: 250px;
  margin: 70px 0;
}

.features-dekirukoto-boxes-4 {
  background-image: url(../homepage/1.features/_images/features-dekirukoto_box4.png);
  background-repeat: no-repeat;
  background-position-x: 250px;
  margin: 70px 0;
}

.features-dekirukoto-boxes-4 .row {
  margin: 5px;
}

.features-dekirukoto-boxes-4 .row>div {
  background-color: #FFF;
  border: 1px solid #e9ecef;
}

.features-dekirukoto-boxes-4 h5 {
  font-size: 18px;
}

.features-dekirukoto-boxes-4 p {
  padding: 0;
}

.features-dekirukoto-boxes-5 {
  background-image: url(../homepage/1.features/_images/features-dekirukoto_box5.png);
  background-repeat: no-repeat;
  background-position-x: 250px;
  margin: 70px 0;
}

.features-dekirukoto-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  font-size: 26px;
  line-height: 1.5;
}

.features-dekirukoto-function-icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0 20px;
  padding: 0 0 50px 0;
  flex-wrap: wrap;
}

.features-dekirukoto-item {
  list-style: none;
  width: 250px;
  margin: 0;
  padding: 0;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .1)
}

.features-dekirukoto-item h3 {
  color: #333;
  position: relative;
  margin: 0px;
}

.features-dekirukoto-item h3:before {
  content: none;
}

.features-dekirukoto-item p {
  padding: 15px;
  position: relative;
  line-height: 1.5em;
  font-size: .9rem;
}

@media (max-width:960px) {

  /*	.features-dekirukoto-contents {
		display: block;
	}*/
  .features-dekirukoto-item {
    width: 100%;
  }
}


/* =========================================================
   Features / LP Pages - Kyoukai
========================================================= */
/* ==============================
1.features kyoukai
============================== */
#kyoukai .card-title {
  font-weight: bold;
}

/*
#kyoukai .modelcases-deck .card-img-bottom {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f5f5f5;
}
*/
#kyoukai .feature_functions_core {
  background-color: #f5f5f5;
  padding: 10px;
}

#kyoukai .feature_functions_option {
  background-color: #f5f5f5;
  padding: 10px;
}

#kyoukai .feature_functions_core_wrap {
  grid-template-columns: repeat(8, 1fr);
}

#kyoukai .feature_functions_option_wrap {
  grid-template-columns: repeat(6, 1fr);
}

#kyoukai .feature_functions_core img {
  max-height: 35px;
  max-width: 35px;
  margin-top: 20px;
  margin-bottom: 15px;
}

#kyoukai .feature_functions_option img {
  max-height: 53px;
  max-width: 50px;
  margin-top: 20px;
  margin-bottom: 15px;
}

/* ----core-function card--- */


/* =========================================================
   Features / LP Pages - Model Page Titles
========================================================= */
/* ==============================
1.features models
============================== */
.pagetitle_model-labor-union {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-labor-union.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-fanclub {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-fanclub.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-user-kai {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-user-kai.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-ishikai {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-ishikai.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-alumnet {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-alumnet.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-syayu-ob-taisyokusya {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-syayu-ob-taisyokusya.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-gyoukai {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-gyoukai.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-gakkai {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-gakkai.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-kyoukai {
  background-image: url(../homepage/1.features/modelcases/_images/pagetitle_model-kyoukai.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_model-labor-union img,
.pagetitle_model-fanclub img,
.pagetitle_model-user-kai img,
.pagetitle_model-ishikai img,
.pagetitle_model-alumnet img,
.pagetitle_model-syayu-ob-taisyokusya img,
.pagetitle_model-gyoukai img,
.pagetitle_model-gakkai img,
.pagetitle_model-kyoukai img {
  padding: 2rem 0 0 0;
  max-width: 480px;
}

.pagetitle_model-labor-union h1,
.pagetitle_model-fanclub h1,
.pagetitle_model-user-kai h1,
.pagetitle_model-ishikai h1,
.pagetitle_model-alumnet h1,
.pagetitle_model-syayu-ob-taisyokusya h1,
.pagetitle_model-gyoukai h1,
.pagetitle_model-gakkai h1,
.pagetitle_model-kyoukai h1 {
  font-size: 35px;
  line-height: 3.5rem;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem 0;
}

@media (max-width: 1180px) {

  .pagetitle_model-labor-union h1,
  .pagetitle_model-fanclub h1,
  .pagetitle_model-user-kai h1,
  .pagetitle_model-ishikai h1,
  .pagetitle_model-alumnet h1,
  .pagetitle_model-syayu-ob-taisyokusya h1,
  .pagetitle_model-gyoukai h1,
  .pagetitle_model-gakkai h1,
  .pagetitle_model-kyoukai h1 {
    font-size: 30px;
  }
}

@media (max-width: 460px) {

  .pagetitle_model-labor-union,
  .pagetitle_model-fanclub,
  .pagetitle_model-user-kai,
  .pagetitle_model-ishikai,
  .pagetitle_model-alumnet,
  .pagetitle_model-syayu-ob-taisyokusya,
  .pagetitle_model-gyoukai,
  .pagetitle_model-gakkai,
  .pagetitle_model-kyoukai {
    height: auto;
  }

  .pagetitle_model-labor-union h1,
  .pagetitle_model-fanclub h1,
  .pagetitle_model-user-kai h1,
  .pagetitle_model-ishikai h1,
  .pagetitle_model-alumnet h1,
  .pagetitle_model-syayu-ob-taisyokusya h1,
  .pagetitle_model-gyoukai h1,
  .pagetitle_model-gakkai h1,
  .pagetitle_model-kyoukai h1 {
    font-size: 1.8rem;
    padding: 2rem 0 .5rem 0;
  }

  .pagetitle_model-fanclub img,
  .pagetitle_model-user-kai img,
  .pagetitle_model-ishikai img,
  .pagetitle_model-alumnet img,
  .pagetitle_model-syayu-ob-taisyokusya img,
  .pagetitle_model-gyoukai img,
  .pagetitle_model-gakkai img,
  .pagetitle_model-kyoukai img {
    padding: 0;
    max-width: 300px;
  }
}


/* =========================================================
   Features / LP Pages - Obj Page Titles
========================================================= */
/* ==============================
1.features obj-license.html
============================== */
.pagetitle_obj {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid #e2e2e2;
}

.pagetitle_obj .btn-wide-wrap {
  margin: 100px 0 0 0;
}

.pagetitle_obj h1 {
  color: #FFF;
  font-size: 2.8rem;
  display: flex;
  align-items: center;
}

.pagetitle_obj .sub-title {
  color: #ffffff7d;
  font-size: 1.4rem;
}

.pagetitle_obj .center-box {
  display: flex;
  flex-direction: column;
  /* 縦並び */
  justify-content: center;
  /* 上下中央 */
}

.pagetitle_obj-mypage {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-mypage.png);
}

.pagetitle_obj-sns {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-sns.png);
}

.pagetitle_obj-academicforum {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-academicforum.png);
}

.pagetitle_obj-databasemgt {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-databasemgt.png);
}

.pagetitle_obj-payment {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-payment.png);
}

.pagetitle_obj-license {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-license.png);
}

.pagetitle_obj-membersonly {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-membersonly.png);
}

.pagetitle_obj-event {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-event.png);
}

.pagetitle_obj-election {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-election.png);
}

.pagetitle_obj-elearning {
  background-image: url(../homepage/1.features/_images/pagetitle_obj-elearning.png);
}


/* =========================================================
   Features / LP Pages - Forum Event helpers
========================================================= */
/* ==============================
 Forum Event
============================== */
.forum-feature-item+.forum-feature-item {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.forum-feature-list h5 {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}

.forum-feature-list p {
  margin-bottom: .5rem;
  padding-left: 1.75rem;
  line-height: 1.8;
}

.forum-feature-list .btn {
  margin-left: 1.75rem;
  margin-top: .25rem;
}


/* =========================================================
   Features / LP Pages - #obj_topic
========================================================= */
/*--- #obj_topic--- */
#obj_topic {
  padding: 4rem 0 1rem 0;
  border-bottom: 1px solid #cbcbcb;
}

#obj_topic img {
  max-height: 250px;
}

#obj_topic h2 {
  position: relative;
  padding: 1.3rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  border: 3px solid #d8e9dc;
  background: #f1f7f2;
  font-weight: 100;
  font-size: 1.5rem;
}

#obj_topic h2:before,
#obj_topic h2:after {
  position: absolute;
  border-radius: 50%;
  border: 3px solid #d8e9dc;
  background: #f1f7f2;
  content: "";
}

#obj_topic h2:before {
  top: 95%;
  right: 27px;
  height: 31px;
  width: 31px;
}

#obj_topic h2:after {
  top: 108%;
  right: 0px;
  height: 20px;
  width: 20px;
}


/* =========================================================
   Features / LP Pages - #obj_intro (Previous version)
========================================================= */
/*--- #obj_intro Previous version--- */
#obj_intro {
  padding: 0 0 3rem 0;
  border-bottom: 1px solid #dadada;
}

#obj_intro .function-list {
  max-width: 1111px;
  margin-right: auto;
  margin-left: auto;
}

#obj_intro .function-list img {
  max-width: 100px;
}

#obj_intro .function-list h4 {
  font-size: 1.2rem;
}




/* =========================================================
   Features / LP Pages - #obj_feature
========================================================= */
/*--- #obj_feature--- */
#obj_feature {
  background-image: url(../_images/index-feature-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 2rem 0 2rem 0;
  border-bottom: 1px solid #dadada;
}

#obj_feature h2 {
  text-align: center;
  padding: 3rem 0 4rem 0;
}

#obj_feature .number {
  font-size: 4.5rem;
  color: #32b16c;
  font-weight: bold;
  position: relative;
  top: -25px;
  left: 5px;
}

#obj_feature .feature-list_wrap {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-radius: 1rem;
}

#obj_feature .feature-list_wrap figure {
  background-color: #fff;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, .1);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

#obj_feature .feature-list_wrap figcaption {
  font-size: 1.5rem;
  font-weight: bold;
  padding: .5rem 0 1rem 0;
  text-align: center;
  letter-spacing: .1rem;
}

#obj_feature .feature-list_wrap p {
  padding: 1rem;
  font-size: .95rem;
}

#obj_feature .feature-list_wrap a {
  color: #298b56;
}

#obj_feature .gakkai {
  grid-template-columns: repeat(4, 1fr) !important;
}

#obj_feature .gakkai figcaption {}

#obj_feature .gakkai figcaption a {
  color: #027d7f;
}

#obj_feature .gakkai .number {
  color: #009698;
}


/* =========================================================
   Features / LP Pages - #obj_main
========================================================= */
/*--- #obj_main--- */
#obj_main {}

#obj_main .number {
  font-size: 4rem;
  color: #32b16c;
  font-weight: bold;
  padding: 0 2rem 0 0;
}

#obj_main .sub {
  max-width: 1150px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem;
}

#obj_main .sub h3 {
  margin: 2rem 0 2rem 0;
  color: #1890c9;
}

#obj_main .sub h4 {
  font-weight: 600
}

#obj_main .sub p {}

#obj_main .feature_functions_core,
#obj_main .feature_functions_option {
  padding: 20px;
}

#obj_main .feature_functions_core_wrap {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 5px;
}

#obj_main .feature_functions_core figure {
  height: 108px;
  border-radius: 1rem;
}

#obj_main .feature_functions_core img {
  max-height: 37px;
  max-width: 38px;
  margin-top: 20px;
  margin-bottom: 15px;
}

#obj_main .feature_functions_option_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
}

#obj_main .feature_functions_option_wrap img {
  max-height: 60px;
  max-width: 60px;
}

#obj_main .feature_functions_option_wrap figcaption {
  font-size: 1rem;
}

#obj_main .fr2 {
  grid-template-columns: repeat(2, 1fr);
}

#obj_main .fr4 {
  grid-template-columns: repeat(4, 1fr);
}

#obj_main .fr5 {
  grid-template-columns: repeat(5, 1fr);
}

#obj_main .fr8 {
  grid-template-columns: repeat(8, 1fr);
}

#obj_main .feature_functions_core figcaption {
  font-size: 13px;
}

#obj_main .table {
  padding: 10px;
}

#obj_main .table img {
  width: 30px;
}

#obj_main .model_option {
  background-color: #f5f5f5;
  padding: 40px;
}

#obj_main .model_option_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

#obj_main .model_option_wrap figure {
  display: flex;
}

#obj_main .model_option_wrap .panel {
  background-color: #fff;
  margin: 0.25rem;
  border-radius: 1rem;
  display: flex;
}

#obj_main .model_option_wrap .panel h3 {
  padding: 0;
  font-size: 1.3rem;
  text-align: left;
  line-height: .5rem;
  border: none;
}

#obj_main .model_option_wrap .panel p {
  text-align: left;
  margin-right: 1rem;
}

#obj_main .model_option_wrap .panel img {
  width: 100%;
  padding: 2rem 1rem;
}

/* =========================
   obj_main（ID）内だけに適用
========================= */

#obj_main .sc-problem {
  margin: 60px auto;
  padding: 0 20px;
}

#obj_main .sc-problem-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

#obj_main .sc-problem-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

#obj_main .sc-problem-item {
  position: relative;
  padding: 18px 18px 18px 44px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  font-size: 18px;
  line-height: 1.6;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

#obj_main .sc-problem-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

#obj_main .sc-problem-item::before {
  content: "✔";
  position: absolute;
  left: 16px;
  top: 18px;

  font-size: 14px;
  color: #1677ff;
  font-weight: bold;
}

@media (max-width: 768px) {
  #obj_main .sc-problem-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Features / LP Pages - #institute-type2
========================================================= */
/* =========================================
   institute-type2
========================================= */
#institute-type2 {
  padding: 72px 0 96px;
  background: #ffffff;
  color: #1f2b3d;
}

#institute-type2 * {
  box-sizing: border-box;
}

#institute-type2 img {
  display: block;
  max-width: 100%;
  height: auto;
}

#institute-type2 a {
  color: inherit;
  text-decoration: none;
}

#institute-type2 a:hover {
  color: inherit;
  text-decoration: none;
}

/* ブロック間余白 */
#institute-type2>.container>div+div {
  margin-top: 72px;
}

#institute-type2 .section-title {}

#institute-type2 .sub-title {
  margin: 0 0 14px;
}

#institute-type2 .lead,
#institute-type2 .block-lead,
#institute-type2 .effect-summary,
#institute-type2 .note,
#institute-type2 p {
  line-height: 1.95;
}

/* =========================================
   intro
========================================= */
#institute-type2 .intro-layout {
  align-items: center;
}

#institute-type2 .info-box {
  margin-top: 34px;
  padding: 30px 32px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f8fd 100%);
  border: 1px solid #dbe7f3;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(20, 45, 90, 0.06);
}

#institute-type2 .info-box-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

#institute-type2 .info-image {
  width: 250px;
  flex-shrink: 0;
}

#institute-type2 .info-image img {
  width: 100%;
  border-radius: 12px;
}

#institute-type2 .check-list {
  flex: 1;
  margin: 0;
}

@media (max-width: 768px) {
  .info-box-content {
    flex-direction: column;
  }

  .info-image {
    width: 100%;
  }
}

/* =========================================
   list
========================================= */
#institute-type2 .check-list,
#institute-type2 .point-list,
#institute-type2 .flow-list {
  margin: 0;
  padding: 0;
}

#institute-type2 .check-list,
#institute-type2 .point-list {
  list-style: none;
}

#institute-type2 .check-list li {
  position: relative;
  margin-left: 29px;
  padding-left: 30px;
  font-size: 20px;
  line-height: 1.85;
  margin-bottom: 10px;
}

#institute-type2 .check-list li:first-child {
  margin-top: 0;
}

#institute-type2 .check-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3f7fca;
  transform: translateY(-50%);
}

#institute-type2 .point-list {
  margin-top: 18px;
}

#institute-type2 .point-list li {
  position: relative;
  margin-top: 10px;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.85;
}

#institute-type2 .point-list li:first-child {
  margin-top: 0;
}

#institute-type2 .point-list li::before {
  content: "–";
  position: absolute;
  top: 0;
  left: 0;
  color: #3f7fca;
  font-weight: 700;
}

/* =========================================
   feature
========================================= */
#institute-type2 .card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

#institute-type2 .card {
  position: relative;
  margin: 0;
  padding: 22px 22px 24px;
  background: #ffffff;
  border: 1px solid #e3ebf4;
  border-radius: 24px;
  box-shadow: 0 14px 36px rgba(20, 45, 90, 0.08);
  overflow: hidden;
}

#institute-type2 .card-image {
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #f3f7fb;
  border: 1px solid #e6edf5;
}

#institute-type2 .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#institute-type2 .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin: 0 1rem .5rem 0;
  border-radius: 999px;
  background: #eaf3ff;
  color: #2b5f9e;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
}

#institute-type2 .card-title {
  padding: 1rem 0 0 0;
  margin: 0px 0 5px;
  font-size: 27px;
  line-height: 1.5;
  font-weight: 500;
}


#institute-type2 .card-title a {
  color: inherit;
}

#institute-type2 .card p {
  margin: 0;
}

/* =========================================
   detail
========================================= */
#institute-type2 .detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

#institute-type2 .detail-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  align-items: center;
  padding: 30px 32px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(20, 45, 90, 0.07);
}

#institute-type2 .detail-title {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 500;
}

#institute-type2 .image-box {
  margin: 0;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  background: #f4f7fb;
  border: 1px solid #e2eaf3;
}

#institute-type2 .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#institute-type2 .note {
  margin-top: 16px;
}

/* =========================================
   effect
========================================= */
#institute-type2 .effect-layout {
  align-items: center;
  margin-top: 24px;
}

#institute-type2 .flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow-number;
}

#institute-type2 .flow-item {
  counter-increment: flow-number;
  margin-bottom: 16px;
}

#institute-type2 .flow-item:last-child {
  margin-bottom: 0;
}

#institute-type2 .flow-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  position: relative;
  padding-left: 52px;
}

#institute-type2 .flow-content::before {
  content: counter(flow-number, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background: #b6d162;
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
}

#institute-type2 .flow-action,
#institute-type2 .flow-result {
  padding: 14px 16px;
  border-radius: 12px;
  line-height: 1.7;
}

#institute-type2 .flow-action {
  background: #ffffff;
  border: 1px solid #dbe4f0;
  font-weight: 500;
}

#institute-type2 .flow-result {
  background: #ffffff;
  border: 1px solid #6aabf9;
  font-weight: 500;
}

#institute-type2 .flow-arrow {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #7d93b2;
}

#institute-type2 .image-box {
  text-align: center;
}

#institute-type2 .image-box img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 991px) {
  #institute-type2 .effect-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  #institute-type2 .image-box {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  #institute-type2 .flow-content {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 44px;
  }

  #institute-type2 .flow-arrow {
    transform: rotate(90deg);
    line-height: 1;
  }

  #institute-type2 .flow-content::before {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
}


#institute-type2 .flow-list {
  list-style: none;
  counter-reset: flow;
}

#institute-type2 .flow-list li {
  position: relative;
  margin-top: 14px;
  padding: 1rem;
  background: #f8fbff;
  border: 1px solid #dce7f3;
  border-radius: 18px;
  font-size: 20px;
  line-height: 1.85;
}

#institute-type2 .flow-list li:first-child {
  margin-top: 0;
}

#institute-type2 .effect-summary {
  margin-top: 20px;
}

/* =========================================
   reason
========================================= */
#institute-type2 .reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

#institute-type2 .reason-card {
  padding: 24px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  border: 1px solid #e3ebf4;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(20, 45, 90, 0.06);
  text-align: center;
}

#institute-type2 .reason-card img {
  margin: 0 auto 18px;
  object-fit: contain;
}

#institute-type2 .reason-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 700;
  color: #1f3f69;
}

#institute-type2 .reason-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================
   responsive
========================================= */
@media (max-width: 991.98px) {
  #institute-type2 {
    padding: 56px 0 76px;
  }

  #institute-type2>.container>div+div {
    margin-top: 56px;
  }

  #institute-type2 .section-title {
    font-size: 29px;
  }

  #institute-type2 .sub-title {
    font-size: 20px;
  }

  #institute-type2 .intro-layout,
  #institute-type2 .detail-item,
  #institute-type2 .effect-layout,
  #institute-type2 .reason-grid {
    grid-template-columns: 1fr;
  }

  #institute-type2 .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  #institute-type2 {
    padding: 44px 0 60px;
  }

  #institute-type2>.container>div+div {
    margin-top: 44px;
  }

  #institute-type2 .section-title {
    font-size: 25px;
  }

  #institute-type2 .sub-title {
    font-size: 19px;
  }

  #institute-type2 .info-box,
  #institute-type2 .detail-item,
  #institute-type2 .reason-card,
  #institute-type2 .card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  #institute-type2 .card-grid,
  #institute-type2 .reason-grid {
    grid-template-columns: 1fr;
  }

  #institute-type2 .detail-title {
    font-size: 22px;
  }

  #institute-type2 .image-box {
    min-height: 180px;
  }

  #institute-type2 .lead,
  #institute-type2 .block-lead,
  #institute-type2 .effect-summary,
  #institute-type2 .note,
  #institute-type2 p,
  #institute-type2 .check-list li,
  #institute-type2 .point-list li {
    font-size: 15px;
  }
}

/* =========================================================
   Features / LP Pages - Shared Security Feature Cards
========================================================= */
/* =========================
   Security Feature Cards
========================= */

/* 全体グリッド */
#obj_main .feature_wrap,
#obj_security .feature_wrap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

/* カード */
#obj_main .feature_wrap figure,
#obj_security .feature_wrap figure {
  margin: 0;
  padding: 18px 14px 16px;
  background: #ffffff;
  border: 1px solid #e2edf5;
  border-radius: 14px;
  text-align: center;

  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* ホバー */
#obj_main .feature_wrap figure:hover,
#obj_security .feature_wrap figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #c7deee;
}

/* アイコン */
#obj_main .feature_wrap img,
#obj_security .feature_wrap img {
  display: block;
  height: 68px;
  margin: 0 auto 12px;
  object-fit: contain;
}

/* テキスト */
#obj_main .feature_wrap figcaption,
#obj_security .feature_wrap figcaption {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #243b53;
  font-weight: 600;
}

/* =========================
   Tablet
========================= */
@media screen and (max-width: 991px) {

  #obj_main .feature_wrap,
  #obj_security .feature_wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}

/* =========================
   Mobile
========================= */
@media screen and (max-width: 767px) {

  #obj_main .feature_wrap,
  #obj_security .feature_wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
  }

  #obj_main .feature_wrap figure,
  #obj_security .feature_wrap figure {
    padding: 14px 10px 12px;
    border-radius: 12px;
  }

  #obj_main .feature_wrap img,
  #obj_security .feature_wrap img {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
  }

  #obj_main .feature_wrap figcaption,
  #obj_security .feature_wrap figcaption {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}



/* =========================================================
   Features / LP Pages - #obj_cost
========================================================= */
/*--- #obj_cost--- */
#obj_cost {
  padding: 0 0 6rem 0;
  border-bottom: 1px solid #dadada;
}

#obj_cost .table-bordered {
  background-color: #FFF;
}

#obj_cost .price {
  color: #336bce;
  font-size: 30px;
  font-weight: bold;
  margin: 0 .5rem 0 .8rem;
}

#obj_cost .badge {
  padding: .3em .4em;
  margin: 0 .1em;
  font-size: 1.2em;
}


/* =========================================================
   Features / LP Pages - #obj_security
========================================================= */
/*--- #obj_security--- */
#obj_security {
  padding: 0 0 5rem 0;
  border-bottom: 1px solid #dadada;
}

#obj_security .feature_wrap {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 5px;
}

#obj_security .feature_wrap figure {
  font-size: 1rem;
  padding: 0;
}

#obj_security .feature_wrap figure a {
  padding: 0.5rem 1rem;
}

#obj_security .feature_wrap figure p {
  padding: 0.5rem 1rem;
}

#obj_security .feature_wrap figcaption {
  font-size: .9rem;
  height: 2.7rem;
  padding: 0.5rem 1rem;
  text-align: center;
}

#obj_security .feature_wrap figcaption {
  font-size: .9rem;
  height: 2.7rem;
  padding: 0.5rem 1rem;
  line-height: 1.2rem;
  text-align: center;
}

#obj_security .logos {
  width: 100%;
  text-align: center;
}

#obj_security .logos img {
  padding: 1rem;
}


/* =========================================================
   Features / LP Pages - #obj_support
========================================================= */
/*--- #obj_support--- */
#obj_support {
  padding: 0 0 5rem 0;
  border-bottom: 1px solid #dadadae0;
}

#obj_support .table {
  padding: 1rem;
}

#obj_support .table h4 {
  padding: 0;
}


/* =========================================================
   Features / LP Pages - #obj_contact (base)
========================================================= */
/*--- #obj_contact--- */
#obj_contact {
  padding: 0 0 5rem 0;
  border-bottom: 1px solid #dadada;
}

/*--- #obj_contact- added flow -- */


/* =========================================================
   Features / LP Pages - #obj_contact flow / inquiry flow
========================================================= */
/* =========================
   導入フロー（#obj_contact 内）
   SP：縦並び / PC：横並び
   ========================= */
#obj_contact .flow {
  margin: 0 auto;
  padding: 0 16px 50px 0;
}

#obj_contact .flow h2,
#obj_contact .flow .lead {
  text-align: center;
}

#obj_contact .flow h3 {
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0;
  line-height: 1.6rem;
  height: 3rem;
  text-align: center;
}

#obj_contact .flow .lead {
  margin-bottom: 40px;
}

#obj_contact .steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#obj_contact .step {
  background: #EAF4FB;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

#obj_contact .step.highlight {
  background: #DFF5EB;
  border: 2px solid #2DBE93;
}

#obj_contact .num {
  font-weight: bold;
  color: var(--main-color_sky1);
  display: inline-block;
  margin-bottom: 10px;
}

#obj_contact .sub {
  font-weight: bold;
  margin-bottom: 8px;
  height: 3rem;
}

#obj_contact .btn {
  display: block;
  margin: auto auto 0;
  padding: 10px 10px;
  background: #0078D4;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

#obj_contact .btn.secondary {
  background: #2DBE93;
}

@media (max-width: 460px) {
  #obj_contact .flow h3 {
    font-size: 1.2rem;
    padding: 0;
    height: 3rem;
    margin: 1rem 0;
  }

  #obj_contact .num {
    margin-bottom: 0px;
  }

  #obj_contact .step p {
    margin-bottom: 0rem;
  }

  *,
}

/* ===== PC：横並び ===== */
@media screen and (min-width: 1024px) {
  #obj_contact .steps {
    flex-direction: row;
    /* PC：横並び */
    align-items: stretch;
  }

  #obj_contact .step {
    flex: 1;
  }
}

#obj_contact .flow-list {
  width: 100%;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 15px 0;
}

#obj_contact .flow-list figure {
  height: 270px;
  border-left: 7px solid #dadadae0;
  margin: 0;
}

#obj_contact .flow-list figcaption {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem .5rem;
}

#obj_contact .flow-list figure p {
  font-size: 0.9rem;
  padding: 0 1rem 0 .5rem;
}



/* =========================================================
   Features / LP Pages - #obj_faq
========================================================= */
/*--- #obj_contact--- */
#obj_faq {
  padding: 0 0 5rem 0;
}

/*--- #obj_faq--- */
#obj_faq .card-header {
  padding: 0.75rem;
  background-color: white;
}

#obj_faq .card {
  border: none;
}

#obj_faq .card h5 {
  font-size: 1rem;
}

#obj_faq .card .card-body {
  font-size: 1rem;
}


/* =========================================================
   Features / LP Pages - #obj_case
========================================================= */
/*--- #obj_case--- */
#obj_case {
  padding: 0 0 5rem 0;
}


/* =========================================================
   Features / LP Pages - Shared obj common
========================================================= */
/*--- #obj common--- */
#obj_main .number,
#obj_cost .number,
#obj_security .number,
#obj_support .number {
  font-size: 5rem;
  color: #32b16c;
  font-weight: bold;
  padding: 0 2rem 0 0;
  position: relative;
  top: 4px;
}


/* =========================================================
   Features / LP Pages - Shared obj responsive
========================================================= */
/*--- #obj responsive--- */
@media (max-width: 460px) {

  #obj_main .number,
  #obj_cost .number,
  #obj_security .number,
  #obj_support .number {
    font-size: 2rem;
    color: #32b16c;
    font-weight: bold;
    padding: 1rem 1rem 0 0;
  }

  #obj_main .feature_functions_core_wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  .pagetitle_obj-mypage h1,
  .pagetitle_obj-sns h1,
  .pagetitle_obj-academicforum h1,
  .pagetitle_obj-databasemgt h1,
  .pagetitle_obj-payment h1,
  .pagetitle_obj-membersonly h1,
  .pagetitle_obj-event h1,
  .pagetitle_obj-license h1 {
    color: #FFF;
    font-size: 25px;
    line-height: 2.3rem;
    display: flex;
    align-items: center;
    padding: 20px 0 0 0 !important;
  }

  .pagetitle_obj-mypage .btn-wide-wrap,
  .pagetitle_obj-sns .btn-wide-wrap,
  .pagetitle_obj-academicforum .btn-wide-wrap,
  .pagetitle_obj-databasemgt .btn-wide-wrap,
  .pagetitle_obj-payment .btn-wide-wrap,
  .pagetitle_obj-membersonly .btn-wide-wrap,
  .pagetitle_obj-event .btn-wide-wrap,
  .pagetitle_obj-license .btn-wide-wrap {
    margin: 0 0 0 0;
  }

  #obj_main .table td,
  .table th {
    display: block;
  }

  #obj_main .model_option {
    padding: 10px;
  }

  #obj_main .feature_functions_core {
    padding: 10px;
  }

  #obj_main .model_option_wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  #obj_main .model_option_wrap .panel {
    display: block;
  }

  #obj_main .model_option_wrap .panel img {
    width: 80px;
  }

  #obj_feature .feature-list_wrap {
    grid-template-columns: repeat(1, 1fr);
  }

  #obj_feature .gakkai {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  #obj_main .fr4 {
    grid-template-columns: repeat(2, 1fr);
  }

  #obj_security .feature_wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  #obj_support .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  #obj_cost .btn {
    position: relative;
    top: 0;
    right: 0;
  }

  #obj_contact .flow-list {
    grid-template-columns: repeat(3, 1fr);
  }

  #obj_contact .flow-list figcaption {
    font-size: 1rem;
  }

  #obj_contact .flow-list2 figcaption {
    position: static;
  }

  #obj_contact .flow-list2 figure {
    height: 240px;
  }

  #obj_contact .flow-list2 figure p {
    position: static;
  }
}

/* =========================
   Model Case Index
========================= */

.modelcase-index {
  padding: 8px 0 0;
  text-align: center;
}

.modelcase-index h3 {
  border: none;
}

.modelcase-index .modelcase-index_wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* -------------------------
   Card
------------------------- */
.modelcase-index .modelcase-index_wrap figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.08),
    0 2px 8px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* 画像リンク */
.modelcase-index .modelcase-index_wrap figure>a:last-of-type {
  display: block;
  position: relative;
  overflow: hidden;
}

/* 画像 */
.modelcase-index .modelcase-index_wrap figure img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.35s ease;
}

/* 画像上のグラデーション */
.modelcase-index .modelcase-index_wrap figure>a:last-of-type::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.55) 0%,
      rgba(15, 23, 42, 0.18) 42%,
      rgba(15, 23, 42, 0.02) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

/* タイトルリンクをカード全体に重ねる */
.modelcase-index .modelcase-index_wrap figure>a:first-of-type {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  text-decoration: none;
}

/* タイトルラベル */
.modelcase-index .modelcase-index_wrap figure>a:first-of-type span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 8px);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.12);
  margin: 0;
  text-align: left;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 矢印 */
.modelcase-index .modelcase-index_wrap figure>a:first-of-type span::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  color: #1b76d1;
  flex-shrink: 0;
}

/* Hover */
.modelcase-index .modelcase-index_wrap figure:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.12),
    0 6px 16px rgba(15, 23, 42, 0.08);
}

.modelcase-index .modelcase-index_wrap figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.modelcase-index .modelcase-index_wrap figure:hover>a:last-of-type::after {
  opacity: 0.85;
}

.modelcase-index .modelcase-index_wrap figure:hover>a:first-of-type span {
  background: #fff;
}

/* Focus */
.modelcase-index .modelcase-index_wrap figure>a:focus-visible {
  outline: none;
}

.modelcase-index .modelcase-index_wrap figure:has(a:focus-visible) {
  box-shadow:
    0 0 0 4px rgba(27, 118, 209, 0.18),
    0 18px 40px rgba(15, 23, 42, 0.12);
}

/* -------------------------
   Responsive
------------------------- */
@media screen and (max-width: 991px) {
  .modelcase-index .modelcase-index_wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .modelcase-index .modelcase-index_wrap figure img {
    height: 220px;
  }
}

@media screen and (max-width: 600px) {
  .modelcase-index .modelcase-index_wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .modelcase-index .modelcase-index_wrap figure {
    border-radius: 18px;
  }

  .modelcase-index .modelcase-index_wrap figure img {
    height: 210px;
  }

  .modelcase-index .modelcase-index_wrap figure>a:first-of-type {
    padding: 18px;
  }

  .modelcase-index .modelcase-index_wrap figure>a:first-of-type span {
    font-size: 14px;
    padding: 9px 14px;
  }
}

/*
.modelcases-deck .card-img-bottom {
  padding: .8rem 0;
}

.modelcases-deck .card-body {
  padding-bottom: 0;
}

.modelcases-deck .card-img-bottom img {
  width: 30px;
  margin: 10px 1rem 10px 0;
}
*/
.feat-gyokai-card>div {
  margin-bottom: 20px;
}

.feat-gyokai-card>div a {
  border: 1px solid #336bce;
  padding: 14px 20px 25px 16px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(125, 125, 125, 0.2);
  width: 100%;
  height: 100%;
  display: block;
  line-height: 1.5rem;
  font-size: 17px;
  font-weight: bold;
  border-radius: 4px;
  position: relative;
}

.feat-gyokai-card>div a:after {
  content: "▼";
  display: block;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  right: 0;
  left: 0;
  color: #7eadff;
}

.feat-gyokai-card>div a:hover {
  background: #336bce;
}

.feat-gyokai-card>div a:hover,
.feat-gyokai-card>div a:hover:after {
  color: #fff;
  transition: .2s;
}