:root {
  --blue: #226db5;
  --blue-dark: #174f90;
  --blue-light:#E8F0F7;
  --accent: #fc6e31;
  --black: #000000;
  --gray: #ebebeb;
  --gray-dark: #d9d9d9;
  --gray-dark2: #545454;
  --text: #000000;
  --line: #cfd8e4;
  --bg: #eceff3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.wrapper {
  overflow: hidden;
}

.anchor {
  position: relative;
  top: -90px;
  height: 0;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1.2px solid #fff;
}

.header > a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header .systena-logo {
  width: clamp(100px, 10vw, 120px);
  height: auto;
  flex-shrink: 0;
}

.menunav {
  display: none;
}

.globalnav-pc {
  display: block;
  margin-left: auto;
}

.globalnav-mobile {
  display: none;
}

.globalnav {
  position: sticky;
  top: 62px;
  z-index: 90;
  background: #fff;
}

.header .globalnav {
  position: static;
  top: auto;
  z-index: auto;
  background: transparent;
}

.header .globalnav-pc ul {
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  overflow: visible;
}

.globalnav ul {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px 12px;
  display: flex;
  gap: 18px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}

.globalnav a {
  font-size: 16px;
  color: var(--blue);
  font-weight: 700;
  white-space: nowrap;
}

.globalnav a:hover {
  font-size: 16px;
  color: var(--gray-dark);
  font-weight: 700;
  white-space: nowrap;
}

.globalnav .contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 20px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.globalnav .copyright {
  display: none;
}



.main {
  padding-bottom: 50px;
}

/* ============================ */
/*ファーストビュー*/
.visual {
  position: relative;
  margin-top: 0px;
  min-height: 750px;
  flex-direction: column;
  justify-content: center;
  padding: 120px 20px 50px;
  background: #fff url("../img/main.svg") right top / auto 100% no-repeat;
}

.visual .title,
.visual .copy,
.visual .cta {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 30px;
  box-sizing: border-box;
}

.visual .title {
  max-width: 1120px;
}

.visual .title p {
  margin: 0;
  font-size: 0;
}

.visual h2 {
  width: min(750px, 100%);
  margin: 0;
  padding: 40px 50px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.6;
  color: var(--blue);
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 0 0 100px 0;
  font-weight: 500;
}

.visual .copy p {
  width: min(500px, 100%);
  margin: 30px 0;
  color: var(--blue);
  font-weight: 500;
  font-size: clamp(14px, 2.2vw, 18px);
  line-height: 2.0;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 8px;
  box-sizing: border-box;
}

.visual .cta {
  margin: 0 auto;
  text-align: left;
  padding: 0 50px;
}

.visual .cta .btn-visual-cta {
  position: relative;
  min-height: 50px;
  padding: 0 56px 0 20px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  font-size: clamp(12px, 2.2vw, 16px);
  font-weight: 500;
  line-height: 1;
  background: #fff;
  color: var(--blue);
}

.visual .cta .btn-visual-cta::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -3px;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.visual .cta .btn-visual-cta:hover {
  background: var(--blue);
  color: #fff;
}

.visual .cta .btn-visual-cta:hover::after {
  background: #fff;
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1.8px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--blue);
  color: #fff;
}

.globalnav .contact-link:hover {
  background: var(--blue);
  color: #fff;
}

/* ============================ */
/*背景課題*/
.section {
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 0 20px;
}

.about-points-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 260px solid transparent;
  border-right: 260px solid transparent;
  border-top: 60px solid var(--white);
}

.section h3 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
}


.section .contents {
  margin-top: 20px;
}

/* ============================ */
/*背景課題*/
.issues {
  position: relative;
  margin-top: 0px;
  max-width: none;
  padding: 0;
}

.issues-bg {
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: var(--blue);
  justify-items: center;
  align-items: center;
}

.issues .issues-context,
.issues-shape {
  display: grid;
  max-width: 100%;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
  background: var(--blue);
  color: #fff;
  border-radius: 0 0 0 120px;
  padding: 80px min(4vw, 56px) 80px;
  justify-items: center;
  align-items: center;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.3);

}

.issues .issues-context .lead-copy,
.issues-text-lead {
  margin: 0 0 0 100px;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 700;
  line-height: 2.0;
  margin-right: 40px;
}

.issues .issues-context .desc-copy,
.issues-text-desc {
  margin: 0 100px 0 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  font-weight: 500;
}

/* ============================ */
/* とはいえ… */
.section .issues-problems {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
}

.section .issues-problems h3 {
  margin: 20px;
  text-align: center;
  font-size: clamp(24px, 3.4vw, 32px);
  font-weight: 500;
  color: var(--blue);
}

.issues .issues-problems h3::after {
  content: none;
}


.issues-problems .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.issues-problems .checklist li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.issues-problems .checklist .person {
  width: 80px; 
  height: 80px;
  margin-right: 0;
  flex-shrink: 0;
}

.speech-bubble {
  position: relative; 
  background-color: var(--gray);
  padding: 15px 20px;
  border-radius: 20px; 
  color:var(--black);
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.issues-problems ul.checklist li .speech-bubble {
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.speech-bubble::before {
  content: "";
  position: absolute;
  top: 50%; 
  left: -12px;
  transform: translateY(-50%); 
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 12px solid var(--gray);
}


.checklist li:nth-child(even) {
  flex-direction: row-reverse;
}

.checklist li:nth-child(even) .speech-bubble::before {
  left: auto;
  right: -12px;
  border-right: 0;
  border-left: 12px solid var(--gray);
}

/* ============================ */
/*そこで！Patch Manager Plusとは？*/
.about {
  position: relative;
  margin-top: 20px;
  padding-top: 18px;
}

.about-bg {
  margin-top: 10px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 10px 0;
  background: var(--blue-light);
  position: relative;
  padding-top: 0;
}

.about-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}

.about .title-set h3 {
  margin: 0 50px;
  text-align: center;
  font-size: clamp(32px, 3.8vw, 36px); 
  font-weight: 700; 
  color: var(--blue);
  line-height: 2.5;
  letter-spacing: 1.8px;
  position: relative;
  z-index: 2;
}

.about .title-set h4 {
  margin: 50px;
  text-align: center;
  font-size: clamp(18px, 2.8vw, 22px); 
  font-weight: 400; 
  color: var(--black);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.about .title-set h4 span {
  display: inline-block;
  color: #fff; 
  -webkit-text-stroke: 2px var(--blue);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-size: 1.8em;
  margin: 0 50px;
  position: relative;
  z-index: 2;
}


.about-section {
  width: 100%;
  background: var(--blue-light);
  padding: 10px 0;
}


.about-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.about .contents {
  background: #fff;
  border-radius: 40px;
  padding: 30px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.about .about-lead {
  background: var(--blue-light);
  border-radius: 40px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about .about-lead h5 {
  margin: 20px auto 30px;
  text-align: center;
  font-size: clamp(18px, 2.8vw, 22px);
  font-weight: 500;
}

.about .about-lead h5 span {
  color: var(--blue);
  font-weight: 500;
  font-size: 1.5em;
  margin: 0 20px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.about .about-lead p {
  margin: 0 0 20px;
  margin-top: 16px;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

.about .about-lead p span {
  color: var(--blue);
  font-weight: 700;
  margin: 10px;
}

.about .about-diagram {
  margin: 26px 0 0;
  text-align: center;
}

.about .about-diagram img {
  width: min(980px, 100%);
  height: auto;
  margin: 30px auto;
}

.feature-tags {
  margin: 20px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-tags li {
  position: relative;
  background: var(--blue-light);
  border-radius: 0;
  padding: 20px;
  min-height: 180px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-tags .point-label {
  position: absolute;
  top: -35px;
  left: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background:var(--blue);
  color: #fff;
  text-align: center;
  line-height: 0.6;
  font-size: 14px;
  font-weight: 700;
}

.feature-tags .point-label .point-word {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.feature-tags .point-main {
  margin: 10px 0;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--black);
}

.feature-tags .point-main span {
  color: var(--blue);
}

.feature-tags .point-sub {
  margin: 8px 0 0;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.5;
  font-weight: 600;
}

.feature-tags .point-em {
  margin: 10px 0 0;
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--blue);
}

.feature-tags .point-em span {
  font-size: 0.65em;
}

.about .about-cta {
  margin: 18px 0 0;
  text-align: center;
}

.about .about-cta .btn {
  min-height: 48px;
  padding: 0 34px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  background: #fff;
}

.about .about-cta .btn:hover {
  background: var(--blue);
  color: #fff;
}

/*===========================*/
/*ゾーホージャパン株式会社*/
.zoho-overview {
  margin-top: 40px;
}

.zoho-overview .zoho-overview-bg {
  margin: 10px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 10px 0 25px;
  background: #fff;
}

.zoho-overview .contents {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 18px;
  padding: 30px;
}

.zoho-overview .zoho-overview-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

.zoho-overview h3 {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2.8vw, 22px);
  color: var(--black);
}

.zoho-overview h3::after {
  content: none;
}

.zoho-overview .zoho-logo {
  width: clamp(120px, 14vw, 170px);
  height: auto;
  flex-shrink: 0;
}

.zoho-overview p {
  margin: 10px 0;
  font-size: clamp(16px, 2.8vw, 20px);
  line-height: 1.85;
  text-align: center;
}


/*===========================*/
/*5つの特長*/
.points {
  margin-top: 0;
}

.points .points-bg {
  margin: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 20px;
  background: var(--blue-light);
}

.points .contents {
  background: #fff;
  border-radius: 40px;
  padding: 10px 34px;
  max-width: 1120px;
  margin: 0 auto;
}

.points .title-set h3 {
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 500;
}

.points .title-set h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 20px auto 50px;
  background:var(--black);
}

.points .title-set h3 span {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 500;
  color: var(--blue);
  margin: 0 10px;
}

.point-list {
  margin: 10px;
  padding: 0;
  list-style: none;
}

.point-item {
  padding: 10px 0;
}

.point-head {
  display: flex;
  align-items: flex-start;
  gap: 34px;
}

.point-no {
  margin: auto 10px;
  min-width: 18px;
  padding-bottom: 3px;
  border-bottom: 3px solid currentColor;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.8;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}



.point-item:nth-child(1) .point-no { color: #099949; }
.point-item:nth-child(2) .point-no { color: #f9b31d; }
.point-item:nth-child(3) .point-no { color: #e52527; }
.point-item:nth-child(4) .point-no { color: var(--blue); }
.point-item:nth-child(5) .point-no { color: var(--accent); }

.point-copy h4 {
  margin: 0;
  font-size: clamp(22px, 2.7vw, 26px);
  line-height: 1.5;
  font-weight: 500;
}

.point-copy p {
  margin: 6px 0 0;
  font-size: clamp(16px, 1.9vw, 20px);
  line-height: 1.5;
  font-weight: 400;
}

.sp-br {
  display: none;
}

.point-figure {
  height: auto;
  margin: 20px 0 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.point-figure img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.point-figure.point-figure-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.point-figure.point-figure-split img {
  width: calc(50% - 7px);
  min-width: 320px;
}

.point-figure.point-figure-compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 24px auto;
  max-width: 900px;
  width: 100%;
  overflow: visible
}

.point-panel-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  margin: 0;
}

.point-figure-compare .point-panel {
  padding: 5px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-figure-compare .point-panel img {
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  padding: 14px 0 0 0;
}

.point-figure-compare .point-panel-before {
  background-color: var(--gray);
  clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
  padding-right: 5%;
  z-index: 2;
  border-radius: 50px 0 0 0;
}

.point-figure-compare .point-panel-after {
  background-color: #fff;
  margin-left: -5%;
  padding-left: 8%;
  border-radius: 0 0 50px 0;
  z-index: 1;
  box-shadow: 0 -4px 10px -5px rgba(0,0,0,0.2), /* 上側の影 */
              4px 0 10px -5px rgba(0,0,0,0.2),  /* 右側の影 */
              0 4px 10px -5px rgba(0,0,0,0.2);  /* 下側の影 */
}

.point-panel-wrapper .point-panel-label-before {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark2);
  position: absolute;
  top: 12px;
  left: 34px;
  margin: 0;
  transform: none;
}

.point-panel-wrapper .point-panel-label-after {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark2);
  position: absolute;
  top: 12px;
  left: 30px;
  margin: 0;
  transform: none;
}

.point-figure.point-figure-single {
  margin: 24px auto;
  max-width: 900px;
  width: 100%;
  overflow: visible
}

.point-figure-single .point-panel-single {
  width: 100%;
  min-width: 560px;
  background-color: #fff;
  border-radius: 4px;
  border-radius: 50px 0 50px 0;
  box-shadow: 0 -4px 10px -5px rgba(0,0,0,0.2), /* 上側の影 */
              4px 0 10px -5px rgba(0,0,0,0.2),  /* 右側の影 */
              0 4px 10px -5px rgba(0,0,0,0.2);  /* 下側の影 */
}

.point-figure-single .point-panel-single img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.points .points-cta {
  margin: 0 0 5px;
  text-align: center;
}

.points .points-cta .btn {
  min-height: 40px;
  padding: 0 34px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  background: #fff;
}

.points .points-cta .btn:hover {
  background: var(--blue);
  color: #fff;
}

/*===========================*/
/*導入ステップ*/
.flow {
  margin-top: 60px;
}

.flow .title-set h3 {
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 500;
}

.flow .title-set h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 20px auto 50px;
  background:var(--black);
}


.flow .flow-bg {
  margin-top: 10px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 10px 0 20px;
  background: var(--blue-light);
}

.flow .contents {
  max-width: 1120px;
  margin: 10px auto 0;
  background: transparent;
  border-radius: 0;
  padding: 0 14px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.step-item {
  position: relative;
  text-align: center;
  color: var(--black);
  padding: 0 6px;
}

.step-item::after {
  content: "→";
  position: absolute;
  right: -9px;
  top: 58px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--blue);
}

.step-item:last-child::after {
  content: none;
}

.step-no {
  margin: 0 0 -5px; 
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 20px;
  line-height: 1;
  color: var(--blue);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.step-icon {
  margin: 0 auto 10px;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step-icon img {
  width: 100px;
  height: auto;
}

.step-title {
  margin: 24px 0 14px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 800;
  color: var(--blue);
}

.step-desc {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
}

/*===========================*/
/*他製品紹介*/
.products {
  margin-top: 60px;
}

.products .title-set h3 {
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 500;
}

.products .title-set h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin: 20px auto 50px;
  background:var(--black);
}

.products .contents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 950px;
  margin: 0 auto;
  gap: 12px;
}

.product-card {
  border: 2px solid var(--blue);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}

.product-card.is-clickable-card {
  cursor: pointer;
}

.product-card h4 {
  margin: 0;
  padding: 20px 0 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
}

.product-card-body {
  position: relative;
  padding: 50px 20px 20px;
  text-align: center;
  background: #fff;
}

.product-card-body p {
  font-size: 16px!important;
  line-height: 1.6;
  font-weight: 500;
  color: var(--black);
  position: relative;
  z-index: 10;
}

.product-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  margin: 20px 0 10px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.product-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.product-card p {
  margin: 0;
  padding: 8px 10px 0;
  text-align: center;
  font-size: 22px;
  line-height: 1.55;
}

.product-card-cta {
  margin-top: 14px !important;
}

.product-card-cta .btn {
  min-height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

.products .products-cta {
  margin: 10px 0 0;
  text-align: center;
}

.products .products-cta .btn {
  min-height: 40px;
  padding: 0 34px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  background: #fff;
}

.products .products-cta .btn:hover {
  background: var(--blue);
  color: #fff;
}


/*会社概要*/
.footer {
  margin-top: 20px;
  color: var(--black);
}

.footer-bg {
  width: 100%;
  background: linear-gradient(45deg, var(--gray) 60%, var(--gray-dark) 40%);
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}

.footer-company {
  max-width: 1120px;
  margin: 10px auto;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.footer-company .summary {
  text-align: center;
}

.footer-company .summary h3 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 600;
}

  .footer-company .summary p {
    margin: 10px;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.6;
  }

  .footer-company .summary span {
    font-size: clamp(24px, 2.8vw, 32px);
    line-height: 2.0;
    color: var(--accent);
    font-weight: 700;
  }

.footer-company .links {
  display: grid;
  gap: 10px;
}

.footer-company .link-card {
  background: var(--gray);
  border-radius: 2px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.footer-company .link-card .name {
  margin: 0;
  font-size: clamp(12px, 1.7vw, 18px);
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}

.footer-company .link-card img {
  width: 30%;
  height: auto;
  display: block;
  object-fit: contain;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 130px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 4px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border: 1.5px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mini-btn.-blue {
  background: var(--blue);
  border-color: var(--blue);
}

.mini-btn.-orange {
  background: var(--accent);
  border-color: var(--accent);
}

.mini-btn.-blue:hover {
  background: #fff;
  color: var(--blue);
}

.mini-btn.-orange:hover {
  background: #fff;
  color: var(--accent);
}

.footer .copyright {
  margin: 0;
  padding: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--text);
  background: #fff;
}



/* ============================ */
/* レスポンシブ: 縦並び共通 */
/* ============================ */
@media (max-width: 1024px) {
  .main {
    padding-bottom: 40px !important;
  }

  .footer-company .link-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
  }

  .issues .issues-context .lead-copy,
  .issues-text-lead {
    text-align: center;
    white-space: nowrap;
  }

  .issues .issues-context .lead-copy br:first-of-type,
  .issues-text-lead br:first-of-type {
    display: none;
  }

  .issues .issues-context .desc-copy,
  .issues-text-desc {
    text-align: center;
  }

  .globalnav-pc {
    display: none !important;
  }
  
  .menunav {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 1000 !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--blue);
    border-radius: 4px !important;
    cursor: pointer;
    padding: 0 !important;
    color: var(--blue) !important; 
    font-size: 24px !important;
  }
  
  .menunav::before {
    content: "\2630" !important; /* 三本線 */
    display: block !important;
    color: var(--blue) !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-family: sans-serif !important;
    text-align: center;
    width: 100%;
  }
  .menunav.is-open {
    background-color: var(--blue) !important;
  }
  
  .menunav.is-open::before {
    content: "\00d7" !important; /* ×*/
    color: #fff !important;
    font-size: 30px !important;
  }

  .globalnav-mobile {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    z-index: 999 !important; 
    padding-top: 80px !important;
    box-sizing: border-box;
  }
  
  .globalnav-mobile.is-open {
    display: block !important;
  }
    
  .globalnav-mobile ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  .globalnav-mobile li {
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid var(--gray-dark);
  }
  
  .globalnav-mobile a {
    display: block !important;
    padding: 10px !important; 
    font-size: 16px !important;
    color: var(--blue) !important;
    text-decoration: none !important;
  }
  
  .globalnav-mobile .contact-link {
    display: flex !important; 
    align-items: center;
    justify-content: center;
    width: 250px !important;
    height: 44px !important;
    margin: 10px auto !important;
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 50px !important;
    border: none !important;
  }
}

/* ============================ */
/* レスポンシブ: 小型PC */
/* ============================ */
@media (max-width: 1200px) and (min-width: 1025px) {
  
  .globalnav-pc {
    display: none !important;
  }

  .menunav {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    z-index: 1000 !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
    border:1px solid var(--blue);
    border-radius: 4px !important;
    background: #fff;
    cursor: pointer;
    padding: 0 !important;
  }

  .menunav::before {
    content: "\2630" !important;
    color: var(--blue) !important;
    display: block !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-family: sans-serif !important;
    text-align: center;
    width: 100%;
  }

  .menunav.is-open {
    background-color: var(--blue) !important;
  }
  .menunav.is-open::before {
    content: "\00d7" !important;
    color: #fff !important;
    font-size: 28px !important;
  }

  .globalnav-mobile {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    z-index: 999 !important;
    padding-top: 80px !important;
    box-sizing: border-box;
  }

  .globalnav-mobile.is-open {
    display: block !important;
  }

  .globalnav-mobile ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .globalnav-mobile li {
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid var(--gray-dark);
  }

  .globalnav-mobile a {
    display: block !important;
    padding: 18px 0 !important;
    font-size: 16px !important;
    color: var(--blue) !important;
    text-decoration: none !important;
  }

  .globalnav-mobile .contact-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 250px !important;
    height: 44px !important;
    margin: 20px auto !important;
    background: var(--blue) !important;
    color: #fff !important;
    border-radius: 50px !important;
    border: none !important;
  }

  .visual h2 {
    font-size: clamp(30px, 4.3vw, 50px);
  }

  .visual .copy p {
    font-size: clamp(18px, 2vw, 28px);
  }

  .checklist li {
    font-size: 22px;
  }

  .speech-bubble {
    font-size: clamp(16px, 2vw, 24px);
  }

  .point-copy h4 {
    font-size: clamp(24px, 2.4vw, 32px);
  }

  .point-copy p {
    font-size: clamp(18px, 1.7vw, 24px);
  }

  .feature-tags .point-label {
    font-size: 20px;
  }
}


/* ============================ */
/* レスポンシブ: タブレット */
/* ============================ */
@media (max-width: 1024px) and (min-width: 768px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }

  
  .section {
    padding: 0 16px;
  }

  .visual {
    min-height: 640px;
    padding-top: 96px;
    background-size: auto 90%;
  }

  .issues .issues-context,
  .issues-shape {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 20px 64px;
  }

  .issues .issues-context .lead-copy,
  .issues-text-lead {
    margin-left: 0;
    text-align: center;
    line-height: 1.6;
  }

  .issues .issues-problems {
    padding: 56px 20px 64px;
  }

  .feature-tags {
    margin: 24px 0 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 40px 4px 8px;
  }

  .feature-tags li {
    flex: 0 0 280px;
    min-width: 280px;
  }

  .point-head {
    gap: 20px;
  }

  .point-no {
    margin: 0;
  }

  .flow .contents {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 8px;
  }

  .steps {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    gap: 12px;
    padding: 0 2px;
  }

  .step-item {
    min-width: 168px;
    padding: 0 6px;
  }

  .step-item::after {
    right: -8px;
    top: 58px;
    font-size: 18px;
  }

  .step-item:last-child::after {
    content: none;
  }

  .step-desc {
    font-size: 12px;
  }

  .products .contents {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-company {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /*会社概要*/
  .footer-company {
    border-radius: 24px 24px 0 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 10px;
  }


  .footer-company .summary p {
    font-size: 24px;
    font-weight: 600;
    margin: 20px;
  }

  .footer-company .summary h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
  }

  .footer-company .summary p {
    font-size: 16px;
    line-height: 1.65;
  }

  .footer-company .summary span {
    font-size: 32px;
    line-height: 1.65;
    font-weight: 700;
  }

  .footer-company .links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-company .link-card {
    max-width: none;
  }

  .footer-company .link-card .name {
    font-size: 20px;
    font-weight: 700;
  }

  .footer-company .link-card .name img {
    width: 30px;
    height: auto;
  }

  .mini-btn {
    min-width: 120px;
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* ============================ */
/* レスポンシブ: スマートフォン */
/* ============================ */
@media (max-width: 768px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }


  .header {
    height: 56px;
    padding: 0 14px;
  }

  .header .systena-logo {
    width: 80px;
  }


  .main {
    padding-bottom: 140px;
  }


  /*===========================*/
  /*ファーストビュー*/
  .visual {
    min-height: 400px; 
    background-position: right bottom;
    background-size: auto 40%;
    background-repeat: no-repeat;
  }

  .visual h2 {
    padding: 18px 16px 16px;
    border-radius: 0 0 42px 0;
    font-size: 22px;
    font-weight: 600;
    width: min(300px, 100%);
  }

  .visual .copy p {
    margin: 20px 6px 0px 6px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    width: min(360px, 100%);
  }

  .visual .cta {
    margin: 0px;
  }

  .visual .cta .btn {
    min-height: 30px;
    padding: 0 20px;
    font-size: 10px ;
  }

  .visual .cta .btn-visual-cta {
    position: relative;
    min-height: 30px;
    padding: 0 40px 0 10px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    background: #fff;
    color: var(--blue);
  }

  .visual .cta .btn-visual-cta::after {
    width: 34px;
    height: 34px;
    right: -2px;
    font-size: 16px;
    font-weight: 600;
  }


  /*===========================*/
  /*背景課題*/
  .section {
    margin-top: 0;
    padding: 0;
  }

  .issues {
    margin-top: 14px;
    width: 100%;
  }

  .issues .issues-bg {
    margin: 0;
    justify-items: center;
    align-items: center;
  }

  .issues .issues-context,
  .issues-shape {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 30px 20px;
    border-radius: 0 0 0 36px;
    box-shadow: -10px 15px 30px 2px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
  }

  .issues .issues-context .lead-copy,
  .issues .issues-context .desc-copy,
  .issues-text-lead,
  .issues-text-desc {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    display: block;
  }

  .issues .issues-context .lead-copy,
  .issues-text-lead {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .issues .issues-context .desc-copy,
  .issues-text-desc {
    font-size: 13px;
    line-height: 1.75;
  }

  .about-points-area {
    padding: 38px 0 18px;
  }

  .about-points-area::before {
    border-left-width: 110px;
    border-right-width: 110px;
    border-top-width: 22px;
  }


  /*とはいえ…*/
  .issues .issues-problems {
    padding: 10px;
  }

  .section .issues-problems h3 {
    margin: 30px;
    font-size: 18px;
    font-weight: 600;
  }

  .checklist li {
    gap: 6px;
    margin: 10px;
  }

  .section .issues-problems .checklist .person {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .section .issues-problems .checklist .speech-bubble {
    padding: 5px 10px;
    font-size: 12px!important;;
    border-radius: 10px;
    line-height: 1.45;
  }

  .checklist .speech-bubble::before {
    left: -7px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-right-width: 7px;
  }

  .checklist li:nth-child(even) .speech-bubble::before {
    left: auto;
    right: -7px;
    border-right-width: 0;
    border-left-width: 7px;
  }

  /* ============================ */
  /*そこで！*/
  .about::before {
    font-size: 24px;
    margin: 10px 0 20px;
  }

  .about .title-set h3 {
    font-size: 24px;
    margin: 0 22px;
  }

  .about .title-set h4 {
    font-size: 14px;
    line-height: 1.8;
    margin: 10px;
    font-weight: 400;
  }

  .about .title-set h4 span {
    display: inline-block;
    white-space: nowrap;
    color: #fff;
    -webkit-text-stroke: 1.2px var(--blue);
    font-weight: 700;
    font-size: 2.0em;
    margin: 0 30px;
    position: relative;
    z-index: 2;
    text-shadow: none !important;
  }

  .about .contents {
    border-radius: 24px;
    padding: 14px;
  }

  .about .about-triangle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 1;
  }

  .about .about-lead {
    border-radius: 20px;
    padding: 16px;
  }

  .about .about-lead h5 {
    font-size: 16px;
    font-weight: 600;
  }

  .about .about-lead h5 span {
    display: block;
    margin: 0;
  }

  .about .about-lead p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.75;
  }

  .about .about-diagram {
    margin-top: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .about .about-diagram img {
    width: auto;
    max-width: 500px;
  }

  .feature-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
    padding: 16px 20px 6px 40px; /* ★左側に青い丸がはみ出すための余白(40px)を確保 */
  
    /* --- 中央寄せの設定 --- */
    max-width: 600px;  /* ★カードの横幅をお好みで指定（例: 600px） */
    margin-left: auto;  /* ★左右をautoにすることで中央に寄ります */
    margin-right: auto;
  }
  
  .feature-tags li {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;      /* 上下中央揃え */
    justify-content: flex-start; /* 左から順に並べる */
    background: #eef5fb;
    border-radius: 20px;
    padding: 12px 20px !important; /* 高さを抑えるため上下を少し詰めました */
    height: auto !important;
    min-height: 0 !important;
    box-sizing: border-box;
    list-style: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  
  /* 左側のアイコン */
  .feature-tags .point-label {
    position: static !important;
    transform: none !important;
    flex-shrink: 0;             /* 丸が潰れないように死守 */
    margin-right: 20px !important; /* 右側のテキストとの距離 */
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
  }
  
  /* 右側のテキスト3つ共通：強制的に縦に並べる設定 */
  .feature-tags .point-main,
  .feature-tags .point-sub,
  .feature-tags .point-em {
    display: block !important; /* インライン要素だった場合に備えてブロック化 */
    width: 100%;               /* 幅いっぱいに広がることで次の要素を下に押し出す */
    text-align: left;
    margin: 4px 0 !important;      /* 余計な余白を完全にリセット */
    line-height: 1.3 !important; /* 高さを抑えるために少し詰めました */
  }
  
  .feature-tags .point-main {
    font-size: 16px;
    font-weight: bold;
  }
  
  .feature-tags .point-sub {
    font-size: 12px; /* 少し小さくしてメリハリをつけました */
    color: var(--black);     /* 少し色を落とすと読みやすいです */
  }
  
  .feature-tags .point-em {
    font-size: 20px; /* 高さを抑えるために少しだけサイズ調整 */
    font-weight: bold;
    color: var(--blue);
  }

  .about .about-cta {
    margin-top: 14px;
  }

  .about .about-cta .btn {
    min-height: 30px;
    padding: 0 20px;
    font-size: 10px;
    font-weight: 700;
  }


  /*ゾーホージャパン株式会社*/

  .section .zoho-overview {
    margin: 10px;
  }

  .zoho-overview .contents {
    border-radius: 12px;
    padding: 20px;
  }

  .zoho-overview .zoho-overview-bg {
    margin: 6px;
    padding: 8px 0 8px;
  }

  .zoho-overview .zoho-overview-head {
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1.2px solid var(--blue); 
  }

  .zoho-overview h3 {
    font-size: 16px;
    margin: 0 5px;
  }

  .zoho-overview .zoho-logo {
    width: clamp(80px, 28vw, 100px);
  }

  .zoho-overview p {
    font-size: 12px;
    line-height: 1.65;
    margin: 5px 0;
  }


  /*5つの特長*/
  .points .title-set {
    display: block;
    margin: 0 10px;
  }

  .points .title-set h3 {
    display: block;
    visibility: visible;
    opacity: 1;
    font-size: 22px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    text-align: center;
    margin: 10px 0 14px;
  }

  .points .title-set h3::after {
    content: none;
  }

  .points .title-set h3 span {
    display: inline-block;
    font-size: 1.5em;
    color: var(--blue);
    margin: 0 4px;
    font-weight: 600;
  }

  .points .contents {
    border-radius: 10px;
    padding: 16px 14px 8px;
    margin: 10px;
  }

  .point-item {
    padding: 10px 0 10px;
  }

  .point-head {
    gap: 16px;
  }

  .point-no {
    min-width: 32px;
    padding-bottom: 5px;
    border-bottom-width: 2px;
    font-size: 24px;
  }

  .point-copy h4 {
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 600;
  }

  .point-copy p {
    margin-top: 4px;
    font-size: clamp(10px, 2.2vw, 18px);
    line-height: 1.45;
    font-weight: 400;
  }


  .point-figure.point-figure-compare {
    display: flex;
    flex-direction: column;
    width: 72%;
    max-width: 72%;
    margin: 10px auto 0;
  }

  .point-figure-compare .point-panel-wrapper {
    width: 100%;
    flex: none;
    position: relative;
    padding: 0;
  }

  .point-figure-compare .point-panel {
    width: 100%;
    min-width: 0;
  }

  .point-figure.point-figure-single .point-panel-single {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    padding: 8px;
    box-sizing: border-box;
    margin-top: 10px;
  }

  .point-figure.point-figure-single {
    margin: 10px auto 0;
    width: 72%;
    max-width: 72%;
    overflow-x: visible;
  }


  .point-figure-single .point-panel-single img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .point-figure-compare .point-panel-label-before {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
  }

  .point-figure-compare .point-panel-label-after {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 10;
    font-size: 14px;
    font-weight: 600;
  }

  .point-figure-compare .point-panel-before {
    background-color: var(--gray);
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), 50% 100%, 0% calc(100% - 20px));
    padding: 5px 5px 10px 5px; 
    z-index: 2;
    position: relative;
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-direction: column;
  }

  .point-figure-compare .point-panel-after {
    background-color: #fff;
    padding: 5px !important;
    margin-left: 0 !important; 
    margin-top: -20px !important;
    border-radius: 0 0 12px 12px;
    z-index: 1 !important;
    position: relative;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(4px 0 4px rgba(0,0,0,0.1))   /* 右側の影 */
            drop-shadow(0 4px 4px rgba(0,0,0,0.1))  /* 下側の影 */      
  }


  .points .points-cta {
    margin-top: 14px;
  }

  .points .points-cta .btn {
    min-height: 30px;
    padding: 0 20px;
    font-size: 10px;
    font-weight: 700;
  }


  /*導入ステップ*/
  .flow .contents {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px 2px;
  }

  .flow .flow-bg {
    margin-top: 5px;
    padding: 10px 0 20px;
  }
  

  .flow .title-set h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px;
  }

  .steps {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    gap: 10px;
    padding: 0 2px;
  }

  .step-item {
    flex: 0 0 auto;
    min-width: 148px;
    padding: 0 4px;
  }

  .step-item::after {
    right: -7px;
    top: 46px;
    font-size: 16px;
  }

  .step-no {
    font-size: 18px;
  }

  .flow .step-icon {
    width: 86px;
    height: 86px;
    margin: 4px auto 8px;
  }

  .step-icon img {
    width: 100px !important;
    height: auto;
  }

  .step-title {
    font-size: 16px;
  }

  .step-desc {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.45;
  }


  /*他製品紹介*/
  .products .contents {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 0 10px;
  }


  .products .title-set h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 20px;
  }

  .product-card h4 {
    font-size: clamp(12px, 3.5vw, 14px);
    padding: 8px 4px 20px;
  }

  .product-card-body {
    padding: 24px 8px 10px;
  }

  .product-icon {
    width: 72px;
    height: 72px;
    padding: 4px;
  }

  .products .product-icon img {
    width: 100px !important;
    height: auto;
  }

  .product-card p {
    font-size: 10px !important;
    line-height: 1.45;
    padding: 10px 2px 0;
  }

  .product-card-cta .btn {
    min-height: 30px;
    padding: 0 20px;
    font-size: 10px;
  }

  .products .products-cta .btn {
    min-height: 30px;
    padding: 0 20px;
    font-size: 12px;
  }



  /*会社概要*/
  .footer-company {
    border-radius: 24px 24px 0 0;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 10px;
  }


  .footer-company .summary p {
    font-size: 24px;
    font-weight: 600;
    margin: 10px;
  }


  .footer-company .summary p {
    font-size: 12px;
    line-height: 1.65;
  }

  .footer-company .summary span {
    font-size: 24px;
    line-height: 1.65;
    font-weight: 700;
  }

  .footer-company .links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .footer-company .link-card {
    max-width: none;
  }

  .footer-company .link-card .name {
    font-size: 10px;
    font-weight: 700;
  }

  .footer-company .link-card .name img {
    width: 30px;
    height: auto;
  }

  .mini-btn {
    min-width: 100px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .footer .copyright {
    font-size: 6px;
  }
}