
/* =========================================================
   DirectCloud Supply Chain LP
   cleaned / sectioned / responsive
   ========================================================= */

/* =========================================================
   01. Root / Reset / Base
   ========================================================= */
:root {
  --blue: #2448a8;
  --blue-dark: #1f3e97;
  --blue-mid: #4f7fe7;
  --blue-light: #dfe9ff;
  --bg-light: #f3f6fb;
  --bg-soft: #ebf2fc;
  --line: #9cb5ea;
  --text: #1f2d4d;
  --muted: #5c6b89;
  --white: #ffffff;
  --shadow: 0 3px 5px rgba(0, 0, 0, 0.11);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

html, body,
div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  font-family: 'Noto Sans JP', sans-serif;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  color: var(--text);
  font-size: 19px;
  line-height: 1.6;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

img,
video,
object {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

ul,
ol,
dl {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pc_on,
.br_pc {
  display: block;
}

.sp_on,
.br_sp {
  display: none;
}

.lp-wrap {
  overflow: hidden;
  background: linear-gradient(to bottom, #f8fbff 0%, #f8fbff 100%);
}

.container {
  width: min(calc(100% - 45px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 70px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 800;
  line-height: 1.28;
  color: var(--blue-dark);
}


.eng_box_line {
    text-align: center;
    margin: 0 auto;
}

.eng_title_maintop {
    display: inline-block;
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.45;
    background-color: #ffffff;
    color: var(--blue-dark);
    padding: 2px 25px 5px;
    border-radius: 40px;
    border: solid 1.5px var(--blue-dark);
}

/* =========================================================
   02. Header
   ========================================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 200;
  background: #ffffff;
  box-shadow: 0 3px 4px rgba(2, 2, 29, 0.35);
}

.header__container {
  width: min(calc(100% - 45px), var(--container));
  margin: 0 auto;
  height: 75px;
  margin: auto;
  display: flex;
  align-items: center;
}

.header_logo {
  width: 17%;
  min-width: 240px;
  margin-right: 24px;
}

.header__navi {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__navi--left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header__navi--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__navi--left {
  font-size: 16px;
}

.header__navi--left li {
  margin: 0 25px;
}

#lp_leftContents {
  width: 70%;
  min-width: 370px;
}

#lp_leftContents li {
  height: 50px;
  display: flex;
  align-items: center;
}

#lp_leftContents li a {
  color: #2c363c;
  font-weight: 700;
}

#lp_leftContents li a:hover {
  color: #2e6efe;
}

#lp_rightContents {
  padding: 9px 10px 5px 0;
}

li.navi_cta {
  width: 48.5%;
  min-width: 160px;
  height: 40px;
  position: relative;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  border: 1.5px solid #2e6efec9;
  background-color: #fff;
}

li.navi_cta:hover {
  border: 1px solid #fff;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

li.navi_cta a {
  position: absolute;
  inset: 0;
  display: block;
  padding-top: 5px;
  color: #2e6efe;
}

.cta_orange {
  margin-left: 10px;
  background-color: #ff114a !important;
  border: 1px solid #ff114a !important;
}

.cta_orange a {
  color: #fff !important;
}

.sp_toggle_menu {
  position: fixed;
  top: 65px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 64px) !important;
  margin-top: -100vh;
  overflow-y: scroll;
  font-size: 17px;
  background-color: #fff;
  transition: margin 0.3s ease !important;
}

.sp_toggle_menu.active {
  margin-top: 0;
  border-top: 1px solid #d8d8d8;
}

.sp_toggle_contents {
  padding: 25px;
}

.sp_toggle_title {
  position: relative;
  margin-bottom: 25px;
  font-weight: 600;
}

.sp_toggle_title a {
  color: inherit;
}

.sp_toggle_cta_area {
  border-top: 1px solid #d8d8d8;
}

/* =========================================================
   03. Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 0;
  background: var(--bg-soft);
}

.hero-top {
  position: relative;
  overflow: hidden;
  padding: 7.1em 0 10.9em;
  background-color: var(--blue-dark);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.hero-top::before,
.hero-top::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-top::after {
  background-image: url(/images/lp/dc_supplychain/bg_main.svg);
  background-repeat: no-repeat;
  background-position: right 0 top 24px;
  background-size: 27% auto;
  opacity: 0.4;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 5vw, 79px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--white);
  text-shadow: 0 2px 2px #081b51d9;
  letter-spacing: -0.45px;
}

.hero-card-float {
  margin-top: -195px;
  padding-bottom: 30px;
}

.hero-card-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.hero-mini-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px 22px 18px;
  text-align: center;
  border: 2px solid rgba(36, 72, 168, 0.22);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-mini-card__icon {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-mini-card__title {
  margin: 0;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.7;
  color: var(--blue-dark);
  letter-spacing: -0.3pt;
}

.hero-mini-card__text {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.5;
    color: #7a8190;
    letter-spacing: -0.3pt;
}

.hero-bottom {
  position: relative;
  z-index: 3;
  padding: 10px 0 55px;
  background: var(--bg-soft);
}

.hero-main-box {
  padding: 20px 30px 30px;
  border: 2px solid var(--blue-dark);
  border-radius: 26px;
  background: #f9fbff;
  box-shadow: var(--shadow);
}

.hero-main-box__title {
  margin: 0 0 8px;
  text-align: center;
  font-size: clamp(24px, 3vw, 55px);
  font-weight: 900;
  color: var(--blue-dark);
}

.hero-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.hero-level-card {
  min-height: 240px;
  padding: 34px 26px 28px;
  border-radius: 18px;
}

.hero-level-card--light {
  color: #25438c;
  background: #c9dafb;
}

.hero-level-card--dark {
  color: #fff;
  background: var(--blue-dark);
}

.hero-level-card__label {
  width: 71%;
  margin: 0 auto 10px;
  padding: 0px 0px 2px;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  opacity: 1;
  background-color: #e5eeffeb;
  border-radius: 40px;
  color: #3f5eb8f0;
}

.hero-level-card__label_r {
  width: 77%;
  margin: 0 auto 10px;
  padding: 0px 0px 2px;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  opacity: 1;
  background-color: #112d7b;
  border-radius: 40px;
  color: #fafbff;
}

.hero-level-card__headline {
  width: 95%;
  margin: 0 auto 18px;
  padding-bottom: 14px;
  text-align: center;
  font-size: clamp(24px, 2.4vw, 42px);
  font-weight: 900;
  line-height: 1.45;
  border-bottom: 1.5px solid rgb(255 255 255 / 27%);
}

.hero-level-card ul {
  margin: 0;
  padding-left: 3.2em;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.7;
}


.hero_ul_li_note {
    font-weight: 100;
    font-size: 22px;
}



.hero-level-card__note {
  margin-top: 6px;
  padding-left: 5px;
  font-size: 17px;
  font-weight: 300;
  color: #64779d;
}

.hero-arrow {
	width: 0;
	height: 0;
	margin: 0 auto;
	border-left: 65px solid transparent;
	border-right: 65px solid transparent;
	border-top: 55px solid #ebf2fc;
	position: absolute;
	left: 47.7%;
	bottom: -50px;
}

/* =========================================================
   04. Brand / Plan
   ========================================================= */




.brand-block {
  position: relative;
  overflow: hidden;
	padding: 85px 0 70px;
}

.brand-block::before,
.brand-block::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 100%;
  height: 48%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}

.brand-block::before {
  left: 0;
  background-image: url('/images/lp/dc_supplychain/bg_brand_left.svg');
  background-position: left center;
}

.brand-block::after {
  right: 0;
  background-image: url('/images/lp/dc_supplychain/bg_brand_right.svg');
  background-position: right center;
}

.brand-logo {
  width: 50%;
  max-width: 100%;
  margin: 0 auto 16px;
}

.brand-copy {
  margin: 0;
  text-align: center;
  font-size: clamp(26px, 3vw, 47px);
  font-weight: 900;
  line-height: 1.5;
  color: #142e76;
}

.brand-feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 16px;
  align-items: start;
  border: 1.5px solid #d2dcf4ab;
  background-color: #e4ecffcc;
  padding: 15px 0px;
  border-radius: 10px;
}

.brand-feature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--blue-dark);
}

.brand-feature__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
}

.plan-area {
  margin: 0 auto;
}

.plan-group {
  position: relative;
  margin-top: 80px;
}

.plan-group__label,
.plan-subbox__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  min-width: 320px;
  padding: 14px 65px;
  border-radius: 999px;
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.plan-group__label {
  background: #2d57c8;
}

.plan-box {
  padding: 65px 28px 32px;
  border: 3px solid #2d57c8;
  border-radius: 18px;
  background: #f7f9ff;
}

.plan-subbox {
  position: relative;
  margin: 92px auto 0;
  padding: 72px 26px 26px;
  border: 2px solid var(--blue-dark);
  border-radius: 14px;
  background: #dbe7ff;
}

.plan-subbox__label {
  min-width: 310px;
  background: var(--blue-dark);
}

.plan-grid {
  display: grid;
  gap: 24px;
}

.plan-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.plan-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.card-plan1 {
  border: 2px solid #b8d0ff;
}

.card-plan2 {
  border: 2px solid #2d57c8;
}

.card-plan3 {
  border: 2px solid var(--blue-dark);
}

.plan-card__head {
  padding: 14px 12px;
  text-align: center;
  color: #fff;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
}

.plan-card__head--light {
  color: #1c3f96;
  background: #b8d0ff;
}

.plan-card__head--mid {
  background: #2652bf;
}

.plan-card__head--dark {
  background: var(--blue-dark);
}

.plan-card__body {
  padding: 18px 14px 16px;
  text-align: center;
  background: #fff;
}

.plan-card__price {
  padding: 12px 0;
  font-size: 39px;
  font-weight: 800;
  line-height: 1.1;
  color: #283142;
}

.plan-card__price span {
  margin-left: 4px;
  font-size: 0.72em;
  font-weight: 600;
}

.plan-card__name {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid #d9deea;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.35;
  color: #55627c;
}

.plan-card__desc {
  margin: 4px 0 8px;
  font-size: 18px;
  line-height: 1.45;
  color: #7b8494;
}


span.price_n_span {
    font-size: 36px;
    vertical-align: -2px;
}



/* =========================================================
   05. Feature
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.feature-card {
  min-height: 170px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 35px;
  align-items: center;
  padding: 24px 40px;
  border:2px solid #9da6c4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 3px #7f828642;
}

.feature-card__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__sub {
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 700;
  color: #587bd0;
  background-color: #f1f7ff;
  width: 39%;
  padding: 2px 10px;
  border-radius: 50px;
  text-align: center;
  letter-spacing: -0.3pt;
}

.feature-card__title {
  margin-bottom: 0;
  font-size: clamp(26px, 2vw, 40px);
  font-weight: 900;
  line-height: 1;
  color: var(--blue-dark);
}

.feature-card__note {
  margin-top: 2px;
  margin-left: -12px;
  font-size: 21px;
  color: #777f99;
}

.feature-caption {
  margin-top: 12px;
  font-size: 18px;
  color: #7c8698;
}

.feature-title-note {
  font-size: 32px;
  /* font-weight: 300; */
}

/* =========================================================
   06. Schedule
   ========================================================= */
.schedule-section {
  padding: 70px 0 165px;
}

.schedule-title {
  margin: 0;
  text-align: center;
  font-size: 60px;
  font-weight: 900;
  line-height: 1.18;
  color: var(--blue-dark);
}

.schedule-timeline {
  position: relative;
  margin-top: 40px;
}

.schedule-line {
  position: absolute;
  top: 38px;
  height: 5px;
  z-index: 0;
}

.schedule-line-blue {
  left: 0;
  width: 75%;
  background: #1e3a8a;
}

.schedule-line-gray {
  right: 0;
  width: 25%;
  background: #d7dde8;
}

.schedule-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 28px;
}

.schedule-item {
  position: relative;
}

.schedule-head {
  position: relative;
  height: 60px;
  margin-bottom: 18px;
}

.schedule-badge {
  position: absolute;
  top: 7px;
  left: 45%;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transform: translateX(-45%);
}

.schedule-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 2;
}

.schedule-badge.is-blue1 .schedule-icon {
  border: 3px solid #3156c1;
}

.schedule-badge.is-blue2 .schedule-icon {
  border: 3px solid #294aac;
}

.schedule-badge.is-blue3 .schedule-icon {
  border: 3px solid #1e3a8a;
}

.schedule-badge.is-red .schedule-icon {
  border: 3px solid #df4e3d;
}

.schedule-date {
  height: 51px;
  margin-left: -36px;
  padding: 0 34px 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.schedule-badge.is-blue1 .schedule-date {
  background: #3156c1;
}

.schedule-badge.is-blue2 .schedule-date {
  background: #294aac;
}

.schedule-badge.is-blue3 .schedule-date {
  background: #1e3a8a;
}

.schedule-badge.is-red .schedule-date {
  background: #df4e3d;
}

.schedule-item::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 58px;
  background: #1e3a8a;
  z-index: 1;
}

.schedule-item::after {
  content: "";
  position: absolute;
  top: 111px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e3a8a;
  z-index: 2;
}

.schedule-item-04::before,
.schedule-item-04::after {
  background: #df4e3d;
}

.schedule-card {
  min-height: 230px;
  margin-top: 55px;
  padding: 22px 20px 18px;
  border: 1.5px solid #d8e0ef;
  border-top: 4px solid transparent;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(40, 56, 94, 0.06);
}

.schedule-card-1 {
  min-height: 230px;
  margin-top: 55px;
  padding: 22px 20px 18px;
  border: 2px solid #1f3e97;;
  border-top: 4px solid transparent;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgb(23 28 41 / 19%);
}

.schedule-card.is-blue {
  border-top-color: var(--blue-dark);
}

.schedule-card.is-skyblue {
  border-top-color: #8a9ccf;
}

.schedule-card.is-red {
  border-top-color: #df4e3d;
}

.schedule-card.is-light {
  background: #f2f7fe;
}

.schedule-card-1.is-blue3 {
  border-top-color: #1f3e97;
}

.schedule-card-1.is-skyblue {
  border-top-color: #8a9ccf;
}

.schedule-card-1.is-red {
  border-top-color: #df4e3d;
}

.schedule-card-1.is-light {
  background: #ffffff;
}

.schedule-card-title {
  margin: 0 0 24px;
  min-height: 2.7em;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--blue-dark);
  letter-spacing: -0.3pt;
}

.schedule-card-title_s{
  font-size: 20px;
}

.schedule-card.is-red .schedule-card-title {
  color: #df4e3d;
}

.schedule-card-sub {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  color: #68738b;
}

.schedule-card-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #696c72;
}

.schedule_exp_area {
  position: absolute;
  left: 63%;
  transform: translateX(-50%);
  margin-top: 28px;
  width: max-content;
  text-align: center;
}

.schedule-exp-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.schedule-exp-line {
  position: relative;
  width: 150px;
  border-top: 4px dotted #858995;
}

.schedule-exp-line::before,
.schedule-exp-line::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 10px;
  height: 10px;
  background: #858995;
  border-radius: 50%;
}

.schedule-exp-line.left::before {
  left: -5px;
}

.schedule-exp-line.left::after {
  right: -5px;
}

.schedule-exp-line.right::before {
  left: -5px;
}

.schedule-exp-line.right::after {
  right: -5px;
}

.schedule-exp-badge {
  background: #626773;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 999px;
  white-space: nowrap;
}

.schedule-exp-text {
  margin: 14px 0 0;
  text-align: center;
  font-size: 20px;
  line-height: 1.6;
  color: #5a6172;
}

.img-schedule-icon-01,
.img-schedule-icon-02,
.img-schedule-icon-03,
.img-schedule-icon-04 {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* =========================================================
   07. Security Measures / Steps
   ========================================================= */
.security-measures {
  background-color: #ebf2fc;
}

.steps-box {
  overflow: hidden;
  border: 2px solid var(--blue-dark);
  border-radius: 18px;
  background: #fafcff;
}

.steps-box__head {
  padding: 15px 18px;
  text-align: center;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
  background: var(--blue-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  padding: 35px 30px;
  align-items: center;
  overflow: visible;
}

.step-card {
  position: relative;
  overflow: visible;
  min-height: 250px;
  padding: 45px 16px 40px;
  text-align: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(40, 56, 94, 0.06);
  z-index: 1;
  border: 1.5px solid #d8e0ef;
}

.steps-grid .step-card:nth-child(1) {
  z-index: 4;
}

.steps-grid .step-card:nth-child(2) {
  z-index: 3;
}

.steps-grid .step-card:nth-child(3) {
  z-index: 1;
}

.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: var(--blue-dark);
}

.step-icon {
  width: 100%;
  height: 130px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  margin: 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
  color: #1f3e97;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -116px;
  width: 145px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
  pointer-events: none;
}

.step-arrow img,
.img-step-arrow {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================================
   08. CTA
   ========================================================= */
.index_cta {
  position: relative;
  padding: 35px 0 60px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: var(--blue-dark);
}

.index_cta::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: transparent url(/images/lp/dc_supplychain/sup_cta_bg.png) 0 0 / cover no-repeat;
}

.cta_wrap {
  position: relative;
  z-index: 2;
  max-width: 1390px;
  width: 100%;
  margin: 0 auto;
}

.cta_contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cta_text {
  width: 100%;
  padding: 0.75em 0 2em;
}

.cta_subtxt {
  margin: 2px 0 5px;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
}

.cta_maintxt {
  margin: 0 0 3px;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.8pt;
  color: #fff;
}

.cta_btn_area_cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 25px;
  margin-top: 5px;
}

.main_btn_contents_area {
  width: 86%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
}

.main_btn_boxtd_contents {
  width: 45%;
  max-width: 44%;
  flex: 1 1;
  position: relative;
  height: 65px;
  margin-top: 7px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.8;
  border-radius: 50px;
}

.appbt-mv-button-text,
.appbt-mv-button-text1 {
  margin-bottom: 7px;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
}

.appbt-mv-button-text {
  color: #96aade;
}

.appbt-mv-button-text1 {
  color: #96aade;
}

.appbt-mv-button-text::before,
.appbt-mv-button-text::after,
.appbt-mv-button-text1::before,
.appbt-mv-button-text1::after {
  content: "";
  position: absolute;
  top: 18px;
  display: inline-block;
  height: 1px;
}

.appbt-mv-button-text::before,
.appbt-mv-button-text::after {
  width: 5.3%;
  background: #96aade;
}

.appbt-mv-button-text1::before,
.appbt-mv-button-text1::after {
  width: 5%;
  background: #96aade;
}

.appbt-mv-button-text::before {
  left: 18.2%;
  transform: rotate(53deg);
}

.appbt-mv-button-text::after {
  transform: rotate(-53deg);
}

.appbt-mv-button-text1::before {
  left: 15.8%;
  transform: rotate(53deg);
}

.appbt-mv-button-text1::after {
  transform: rotate(-53deg);
}

.app-btn1 {
  display: inline-block;
  min-width: auto;
  padding: 17px 32px 18px;
  border: 0;
  border-radius: 62px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  transition: .2s;
}

.app-btn-primary {
  color: #fff !important;
  background: #ff114a;
}

.app-btn-tertiary {
  background: #fff;
}

.app-btn-contents1 {
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 0 40px 2px 50px;
  display: flex;
  align-items: center;
  gap: 0 16px;
  font-size: 18px;
}

.app-btn-contents-image-wb {
  width: 54px;
  padding-top: 3px;
}

.app-btn-contents-image-b {
  width: 67px;
}

.app-btn-contents-text1,
.app-btn-contents-text1-w {
  flex: 1 1;
  padding-left: 5px;
  text-align: left;
  font-size: 29px;
}

.app-btn-contents-text1 {
  color: #1f3e97;
}

.app-btn-contents-text1-w {
  color: #fff;
}

.app-btn-contents-arr1 {
  width: 24px;
  height: 24px;
  margin-left: auto;
  pointer-events: none;
}

/* =========================================================
   09. Footer
   ========================================================= */
.footer {
  width: 100%;
  text-align: center;
}

.footer .wrap {
  padding: 30px 0;
  font-size: 18px;
  font-weight: 300;
  color: #6b7175;
}

#page_top {
  position: fixed;
  right: 1.5%;
  bottom: 1.5%;
  z-index: 100;
  opacity: 1;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
}

/* =========================================================
   10. Helpers
   ========================================================= */
.img-fit-contain {
  object-fit: contain;
}

.img-fit-cover {
  object-fit: cover;
}

.img-w-full {
  width: 100%;
  height: auto;
}

.img-h-full {
  width: auto;
  height: 100%;
}

.img-hero-card-01, .img-hero-card-02, .img-hero-card-03,
.img-brand-logo,
.img-brand-feature-01, .img-brand-feature-02, .img-brand-feature-03,
.img-feature-01, .img-feature-02, .img-feature-03,
.img-feature-04, .img-feature-05, .img-feature-06,
.img-step-01, .img-step-02, .img-step-03 {
  max-width: 100%;
  max-height: 100%;
}

/* =========================================================
   11. Tablet
   ========================================================= */
@media (max-width: 1200px) {
  .schedule-title {
    font-size: 52px;
  }

  .schedule-grid {
    column-gap: 20px;
  }

  .schedule-date {
    padding: 0 18px 0 26px;
    font-size: 15px;
  }

  .schedule-card-title {
    font-size: 19px;
  }
}

@media (max-width: 1024px) {
  .hero-card-row,
  .plan-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-main-grid,
  .plan-grid--three,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .brand-feature-row {
    grid-template-columns: 1fr;
  }

  .brand-block::before,
  .brand-block::after {
    width: 140px;
    height: 140px;
    opacity: 0.35;
		display: none;
  }

  .step-arrow {
    display: none;
  }

  .plan-group__label {
    min-width: auto;
    font-size: 21px;
    display: inline-block;
    padding: 10px 30px;
  }

  .plan-subbox__label {
    min-width: auto;
    font-size: 21px;
    display: inline-block;
    padding: 10px 30px;
  }
}

@media (max-width: 900px) {
  .schedule-title {
    font-size: 42px;
  }

  .schedule-line {
    display: none;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .schedule-item::before {
    height: 41px;
  }

  .schedule_exp_area {
    margin-top: 26px;
  }

  .schedule-badge {
    left: 50%;
    transform: translateX(-50%);
  }
}





/* =========================================================
   12. Mobile (single breakpoint)
   ========================================================= */
@media (max-width: 767px) {

  /* ---------- common ---------- */
  .section {
    padding: 52px 0;
  }


  .eng_title_maintop {
      padding: 3px 18px 5px;
      margin-bottom: 7px;
      font-size: 17px;
      line-height: 1.4;
  }


  /* ---------- hero ---------- */
  .hero-top {
    padding: 115px 0 170px;
    background-position: center center;
    background-size: cover;
  }



	.hero-top::after {
	    background-position: right 0 top 55px;
	    background-size: 88% auto;
	    opacity: 0.35;
	}


  .hero-title {
    font-size: 38px;
    line-height: 1.25;
		text-align: left;
  }

  .hero-card-float {
    margin-top: -145px;
  }

  .hero-card-row {
    grid-template-columns: 1fr;
		margin-top:0;
		gap: 25px;
  }

  .hero-mini-card {
    min-height: auto;
    padding: 48px 18px 28px;
  }

  .hero-mini-card__title {
    font-size: 23px;
  }

  .hero-mini-card__text {
    font-size: 20px;
		margin-top: 4px;
  }

  .hero-main-grid {
    grid-template-columns: 1fr;
  }

.hero-mini-card__icon{
	height: 100px;
	margin-bottom: 35px;
}


.hero-main-box{
	  padding: 20px 20px 22px;
}


.hero-main-box__title{
	font-size: 30px;
	line-height: 1.35;
	margin: 0 0 10px;
	letter-spacing: -1px;
}


.hero-level-card{
	  padding: 20px 20px 22px;
}


.hero-level-card__label,
.hero-level-card__label_r{
    font-size: 16px;
    width: 88%;
    line-height: 20px;
    padding: 4px;
}



.hero-level-card__headline{
	width: 100%;
	font-size: 25px;
	margin: 0px auto 13px;
	padding-bottom: 12px;
}


.hero-level-card ul{
	    padding-left:20px;
			font-size: 20px;
			text-indent: -22px;
}



.hero-level-card__note{
	font-size: 15px;
	text-indent: -16px;
}


.hero_ul_li_note {
    font-weight: 100;
    font-size: 16px;
}


.hero-bottom{
	   padding: 0px 0 35px;
}


.hero-arrow {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 34px solid #ebf2fc;
  left: 38.7%;
  bottom: -30px;
}




  /* ---------- brand ---------- */



	.section.brand-block {

	}



  .brand-logo {
    width: 85%;
  }

  .brand-copy {
    font-size: 24px;
  }

  .brand-feature-row {
    grid-template-columns: 1fr;
		justify-items: center;
		gap: 22px;
  }

  .brand-feature {
    justify-content: flex-start;
    text-align: left;
    font-size: 20px;
  }

  /* ---------- plan ---------- */
  .plan-grid--four,
  .plan-grid--three {
    grid-template-columns: 1fr;
  }

	  .plan-grid--three{
			margin-top:16px;
		}

  .plan-box {
    padding: 42px 16px 16px;
  }

  .plan-subbox {
    padding: 44px 14px 14px;
    margin: 80px auto 0;
  }

  .plan-card__price {
    font-size: 28px;
  }

  span.price_n_span {
      font-size: 21px;
      vertical-align: -1px;
  }


  /* ---------- feature ---------- */



.section-title{
        font-size: 30px;
}



  .feature-grid {
    grid-template-columns: 1fr;
		margin-top:20px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 18px;
    text-align: center;
  }


.feature-card__icon{

	width:110px;
	height:110px;
	margin-top:15px;
}




.feature-card__sub{
	font-size: 18px;
  width: 81%;
  margin: 0 auto 10px;
}

.feature-card__title {
	font-size: 26px;
line-height: 1.2;
}

.feature-card__note{
	font-size: 18px;
}


.feature-title-note {
    font-size: 24px;
    font-weight: 300;
}


.feature-caption {
    font-size: 15px;
    text-indent: -18px;
    padding-left: 24px;
    line-height: 20px;
}



  /* ---------- schedule ---------- */
  .schedule-timeline {
    margin-top: 8px;
}

	.schedule-section {
	    padding: 52px 0;
	  }

	  .schedule-title {
	    font-size: 38px;
	    line-height: 1.45;
	  }

	  .schedule-grid {
	    grid-template-columns: 1fr;
	    row-gap: 25px;
	  }

	  /* ---------- schedule badge / line / card ---------- */
	  .schedule-badge {
	    left: 43%;
	    transform: translateX(-46%);
	  }

	  .schedule-date {
	    font-size: 20px;
	    padding: 0 25px 0 40px;
	  }

	  .schedule-icon {
	    left: 22px;
	  }

	  .schedule-item::after {
	    top: 92px;
	  }

	  .schedule-card {
	    margin-top: 36px;
	    min-height: auto;
	    padding: 22px 20px 27px;
	  }

	  .schedule-card-title {
	    margin: 0 0 20px;
	    font-size: 22px;
	    min-height: 100%;
	  }

	  /* ---------- schedule experiment area ---------- */
	  .schedule_exp_area {
	    position: static;
	    width: 100%;
	    margin-top: 26px;
	    text-align: center;
			transform: none;
	  }

	  .schedule-exp-wrap {
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    gap: 8px;
	  }

	  .schedule-exp-line {
	    display: block;
	    width: 50px;
	    border-top: 3px dotted #626773;
	  }

	  .schedule-exp-line::before,
	  .schedule-exp-line::after {
	    width: 7px;
	    height: 7px;
	    top: -5px;
	  }

	  .schedule-exp-line.left::before,
	  .schedule-exp-line.right::before {
	    left: -4px;
	  }

	  .schedule-exp-line.left::after,
	  .schedule-exp-line.right::after {
	    right: -4px;
	  }

	  .schedule-exp-badge {
	    font-size: 14px;
	    padding: 10px 14px;
	    white-space: nowrap;
	  }


.schedule-badge{
	left: 45%;
	transform: translateX(-46%);
}


		.schedule-date{
			font-size: 18px;
			padding: 0px 30px 0 45px;
		}



.schedule-icon{
	left: 0;
}




.schedule-item::after{
top: 92px;
}

.schedule-card-title {
		font-size: 22px;
		min-height: 100%;
		margin: 0 0 20px;
}



  /* ---------- steps ---------- */
  .steps-grid {
    grid-template-columns: 1fr;
		padding: 24px;
		gap: 36px;
  }


  .step-card {
    min-height: auto;
		padding: 38px 16px 30px;
  }

.step-icon{
	width: 100%;
	margin: 0 auto 20px;
	height: 100px;
}


.step-title{
	font-size: 22px;
  margin-top: 20px;
  line-height: 1.45;
}



.step-arrow {
	display: flex;
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: -46px;
  transform: translateX(-50%) rotate(90deg);
  width: 105px;
  height: 66px;
  z-index: 10;
  pointer-events: none;
}

.step-arrow img,
.img-step-arrow {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}




.step-number{
	width: 30px;
    height: 30px;
		font-size: 17px;
}



.schedule-exp-text{
	font-size:17px;
}



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

	.index_cta {
    padding: 35px 0;
  }

  .index_cta:after {
    width: 100%;
  }

  .cta_wrap {
    width: 90%;
    margin: 0 auto;
  }

  .cta_contents {
    flex-direction: column;
  }

  .cta_text {
    width: 100%;
    padding: 0;
  }

  h5.cta_subtxt {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 2px;
  }

  h4.cta_maintxt {
    font-size: 35px;
    line-height: 1.25;
    width: 98%;
    margin: 0 auto 0;
  }

  .main_btn_contents_area {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .main_btn_boxtd_contents {
    max-width: 100%;
    width: 100%;
    margin-top: 5px;
  }

  .appbt-mv-button-text {
    width: 100%;
    font-size: 16px;
    margin-bottom: 2px;
  }

  .app-btn-contents1 {
    padding: 0 20px 0;
    position: relative;
    height: 60px;
  }

  .app-btn-contents-image-wb {
    width: 35px;
    position: absolute;
    left: 55px;
    top: 10px;
  }

  .app-btn-contents-text1 {
    font-size: 20px;
    text-align: center;
    padding-left: 65px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .app-btn-contents-arr1 {
    width: 20px;
    height: 20px;
  }

  .app-btn-contents-text1-w {
    font-size: 20px;
    height: 60px;
    text-align: center;
    padding-left: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-btn-contents-image-b {
    width: 41px;
    position: absolute;
    left: 50px;
  }

  .appbt-mv-button-text1 {
    font-size: 15px;
    margin-bottom: 2px;
  }

  .appbt-mv-button-text:before {
    left: 9%;
    top: 14px;
  }

  .appbt-mv-button-text:after {
    right: 9%;
    top: 14px;
  }

  .appbt-mv-button-text1:before {
    transform: rotate(53deg);
    left: 9%;
  }

  .appbt-mv-button-text1:before,
  .appbt-mv-button-text1:after {
    top: 14px;
    right: 30px;
  }


  /* ---------- header ---------- */
  .header__navi {
    display: none;
  }

  .header__container {
    height: 65px;
  }

  .br_pc,
  .pc_on {
    display: none !important;
  }

  .br_sp,
  .sp_on {
    display: block !important;
  }
}









/* =========================================================
   Mobile Header / Hamburger restore
   ========================================================= */

/* 기본은 숨김 */
.sp_hamburger_Btn,
.spMenu {
  display: none;
}

/* 모바일에서만 표시 */
@media screen and (max-width: 767px) {
  .header {
    z-index: 999;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  }

  .header_logo {
    min-width: 210px;
    margin-right: 0;
    padding-top: 4px;
  }

  .header__container {
    width: 100%;
    height: 65px;
    padding: 0 20px;
    justify-content: space-between;
    position: relative;
    z-index: 999;
    background: #fff;
  }

  .header__navi {
    display: none;
  }

  .sp_hamburger_Btn,
  .spMenu {
    display: block;
  }

  .sp_hamburger_Btn {
    position: relative;
    width: 27px;
    height: 22px;
    cursor: pointer;
    flex: 0 0 27px;
  }

  .hamburger_Btn_line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 4px;
    background-color: #2e6efe;
    transform-origin: right;
    transition: background-color .3s ease, transform .3s ease, opacity .3s ease;
  }

  .hamburger_Btn_line:nth-child(1) {
    top: 0;
  }

  .hamburger_Btn_line:nth-child(2) {
    top: 10px;
  }

  .hamburger_Btn_line:nth-child(3) {
    top: 20px;
  }

  .sp_hamburger_Btn.active .hamburger_Btn_line:nth-child(1) {
    transform: rotate(-45deg);
    top: 0;
  }

  .sp_hamburger_Btn.active .hamburger_Btn_line:nth-child(2) {
    opacity: 0;
  }

  .sp_hamburger_Btn.active .hamburger_Btn_line:nth-child(3) {
    transform: rotate(45deg);
    top: 20px;
  }

  .sp_toggle_menu {
    position: fixed;
    top: 65px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px) !important;
    margin-top: -100vh;
    overflow-y: auto;
    background-color: #fff;
    transition: margin 0.3s ease !important;
    z-index: 998;
  }

  .sp_toggle_menu.active {
    margin-top: 0;
    border-top: 1px solid #d8d8d8;
  }


.sp_toggle_title a{
  color: #666666;
}


.sp_toggle_cta_area {
    border-top: 1px solid #d8d8d8;
}


#lp_rightContents {
    padding: 25px;
    flex-direction: column;
}

li.navi_cta {
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
    margin-left: 0;
}


li.navi_cta a {
    top: 4px;
    font-size: 19px;
}





  .br_pc,
  .pc_on {
    display: none !important;
  }

  .br_sp,
  .sp_on {
    display: block !important;
  }
}
