html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #313131;
}

#index section .inner {
  /* z-index: 100; */
  /* position: relative; */
}

section.content-section {
  padding: 100px 0;
}

.section-ttl {
  font-weight: 400;
  font-size: 21px;
  line-height: 100%;
  color: #f96625;
  margin-bottom: 60px;
}

.section-ttl::before {
  content: none;
}

.section-intro {
  font-weight: 500;
  font-size: 2.4rem;
}

#feature .section-intro {
  text-shadow: 0 0 30px #f96625;
}

.section-deteil {
  line-height: 150%;
}

.orange {
  color: #f96625;
}

@media screen and (max-width: 1024px) {
  section.content-section {
    padding: 50px 0;
  }

  .section-ttl {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .section-ttl::before {
    content: none;
  }

  .section-intro {
    font-weight: 700;
    font-size: 1.8rem;
  }
}


@media screen and (max-width: 599px) {
  section {
    padding: 40px 0;
  }

  .section-ttl {
    margin-bottom: 20px;
  }
}

/* KV */
#kv {
  position: relative;
  width: 100vw;
  height: calc(100vh - 118px);
  min-height: 800px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFEADD 100%);
}

.kv-img_wrapper {
  position: absolute;
  right: 5vw;
  top: 0;
}

.kv-img_inner {
  position: relative;
  width: 82.125vh;
  height: 80.375vh;
  min-height: 643px;
  min-width: 657px;
  overflow: visible;
}

.kv-img_inner img {
  object-fit: contain;
  display: block;
  height: 100%;
}

.kv_app {
  position: absolute;
  bottom: 0px;
  right: 5vw;
  width: 20vw;
  top: 50vh;
  object-fit: contain;
}

.kv_app__mock {
  position: absolute;
  display: block;
  width: 40px;
  object-fit: contain;
  right: -10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .4);
}

.kv_app__inner {
  position: relative;
}

.kv_app__inner:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid white;
  z-index: 501;
}

.kv_app__baloon {
  background: white;
  width: 280px;
  height: 80px;
  border-radius: 100vh;
  position: absolute;
  display: flex;
  align-items: center;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .3);
  z-index: 500;
}


.kv_app__plus {
  width: 36px;
  margin-right: 15px;
}

.kv_app__baloon__text {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
}

.kv_app__baloon__text span {
  display: block;
  font-size: 1.6rem;

}


.kv-img img {
  display: block;
  width: 100%;
  object-fit: contain;
  height: auto;
}

.kv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: kvCrossFade 12s infinite;
}

/* 4秒ずつずらす */
.img1 {
  animation-delay: 0s;
}

.img2 {
  animation-delay: 4s;
}

.img3 {
  animation-delay: 8s;
}

@keyframes kvCrossFade {

  /* フェードイン */
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  /* 表示キープ */
  10% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  /* フェードアウト */
  50% {
    opacity: 0;
  }

  /* 次に備えて完全透明 */
  100% {
    opacity: 0;
  }
}

.kv-desc_wrapper {
  position: relative;
  top: 10%;
}

p.kv-ttl-sub {
  display: inline-block;
  background: #ff5f1d;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 7px;
  margin-bottom: 3.75vh;
}

.kv-ttl-main {
  font-size: 3.8vw;
  font-weight: 800;
  margin-bottom: 3.75vh;
  color: #000000;
  text-shadow: 0 0 15px rgba(255, 255, 255, 1);
}

p.kv-text {
  font-size: 1.40625vw;
  display: inline-block;
  color: #333;
  margin-bottom: 3.75vh;
  line-height: 1.8;
}

.kv-btn-list {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.kv-btn a {
  text-decoration: none;
  font-weight: bold;
}

.kv-btn {
  transition: ease all .3s;
}

.kv-btn:hover {
  filter: saturate(1.5);
}

.kv-btn:hover .kv-btn-text-sub {
  transform: translateY(-3px);
}

.btn-dl .kv-btn-text {
  background: linear-gradient(90deg, #ff844a 0%, #f93025 100%);
  padding: 25px 30px;
  border-radius: 100vh;
  color: #fff !important;
  text-decoration: none;
  border: none;
  width: 320px;
  max-width: 100%;
  text-align: center;
  margin-bottom: 0;

  font-size: 1.8rem;
}

.btn-contact .kv-btn-text {
  background: linear-gradient(90deg, #00d1ca 0%, #00908c 100%);
  padding: 25px 60px;
  border-radius: 40px;
  color: #fff !important;
  text-decoration: none;
  border: none;
  width: 320px;
  max-width: 100%;
  text-align: center;
  margin-bottom: 0;
  font-size: 1.8rem;
}


.kv-btn-text-sub {
  background-color: #fff;
  width: fit-content;
  padding: 6px 20px;
  margin: auto;
  border-radius: 40px;
  z-index: 20;
  position: relative;
  margin-top: -5px;
  box-shadow: 0px 4px 20px rgba(49, 44, 39, 0.2);
  transition: ease all .3s;
}

.kv-btn-text-sub::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  right: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  transform: rotate(180deg);
}

.btn-dl .kv-btn-text-sub {
  color: #f96625;
}

.btn-contact .kv-btn-text-sub {
  color: #00b6b0;
}

@media screen and (max-width: 1024px) {
  #kv {
    width: 100vw;
    height: 500px;
    padding-bottom: 0;
    min-height: unset;
    display: block;
    padding-top: 0;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
  }

  .kv-img_wrapper {
    position: absolute;
    right: 20px;
    left: unset;
    top: -30px;
    width: auto;
    z-index: 400;
  }

  .kv-img_inner {
    width: 500px;
    height: 500px;
    min-width: unset;
    max-width: unset;
    min-height: unset
  }

  .kv-img_inner img {
    display: block;
    object-fit: contain;
    width: 100%;
  }

  .kv_app {
    display: block;
    background: none;
    border-radius: 10px;
    position: absolute;
    bottom: 255px;
    left: 250px;
    width: 150px;
    top: unset;
    object-fit: contain;
    box-shadow: 0px 4px 40px rgba(49, 44, 39, .2);
    z-index: 500;
  }

  .kv_app__tablet {
    display: block;
    background: none;
    border-radius: 5px;
    box-shadow: 0px 4px 40px rgba(49, 44, 39, .2);
  }

  .kv_app__mock {
    position: absolute;
    display: block;
    width: 20px;
    object-fit: contain;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    display: none;
  }

  .kv_app__baloon {
    background: white;
    width: 160px;
    height: 50px;
    border-radius: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
  }

  .kv_app__plus {
    width: 20px;
    margin-right: 10px;
  }

  .kv_app__baloon__text {
    font-size: 14px;
    line-height: 1.3;
  }

  .kv_app__baloon__text span {
    display: block;
    font-size: 12px;
  }

  .kv-img img {
    display: block;
    width: 100%;
    object-fit: contain;
    height: auto;
  }

  .kv-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
  }

  .inner.kv-desc_wrapper {
    position: absolute;
    text-align: left;
    z-index: 450 !important;
    top: unset;
    bottom: 0;
    left: -40px;
    background: rgba(255, 234, 221, .8);
    border-radius: 0 15px 0 0;
    padding: 40px;
    /* outline: 3px solid blue; */
    min-width: 50%;
  }

  p.kv-ttl-sub {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 15px;
  }

  .kv-ttl-main {
    font-size: 32px;
    margin-bottom: 10px;
  }

  p.kv-text {
    font-size: 14px;
    margin-bottom: 10px;
  }

  #kv .kv-btn-list {
    display: none;
  }

}


@media screen and (max-width: 599px) {

  #kv {
    width: 100vw;
    height: 600px;
    padding-bottom: 0;
    min-height: unset;
    display: block;
    padding-top: 0;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
  }

  .kv-img_wrapper {
    position: absolute;
    right: 35px;
    top: -65px;
    width: 100vw;
    z-index: 400;
  }

  .kv-img_inner {
    width: 550px;
    height: 550px;
    min-width: unset;
    max-width: unset;
    min-height: unset
  }

  .kv-img_inner img {
    display: block;
    object-fit: contain;
    width: 100%;
  }

  .kv_app {
    display: block;
    background: none;
    border-radius: 10px;
    position: absolute;
    bottom: 240px;
    left: 210px;
    width: 90px;
    top: unset;
    object-fit: contain;
    box-shadow: 0px 4px 40px rgba(49, 44, 39, .2);
    z-index: 500;
  }

  .kv_app__tablet {
    display: block;
    background: none;
    border-radius: 5px;
    box-shadow: 0px 4px 40px rgba(49, 44, 39, .2);
  }

  .kv_app__mock {
    position: absolute;
    display: block;
    width: 20px;
    object-fit: contain;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, .4);
    display: none;
  }

  .kv_app__baloon {
    background: white;
    width: 160px;
    height: 50px;
    border-radius: 100vh;
    position: absolute;
    display: flex;
    align-items: center;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);

  }


  .kv_app__plus {
    width: 20px;
    margin-right: 10px;
  }

  .kv_app__baloon__text {
    font-size: 14px;
    line-height: 1.3;
  }

  .kv_app__baloon__text span {
    display: block;
    font-size: 12px;
  }

  .kv-img img {
    display: block;
    width: 100%;
    object-fit: contain;
    height: auto;
  }

  .kv-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
  }


  .inner.kv-desc_wrapper {
    position: absolute;
    text-align: left;
    z-index: 450 !important;
    top: unset;
    /* bottom: 20px; */
    bottom: 30px;
    left: -20px;
    background: rgba(255, 234, 221, .8);
    border-radius: 0 15px 15px 0;
    padding: 20px;
    /* outline: 3px solid blue; */
  }

  p.kv-ttl-sub {
    font-size: 12px;
    padding: 5px 10px;
    margin-bottom: 15px;
  }

  .kv-ttl-main {
    font-size: 24px;
    margin-bottom: 10px;
  }

  p.kv-text {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .kv-btn-list {
    display: none;
  }


}



/* ステップ */
#step {
  background: #FFEADD;
}

h2.step-ttl {
  text-align: center;
  font-weight: bold;
  color: #f96625;
  line-height: 1;
  margin-bottom: 50px;
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
}

/* .step-ttl::before {
  width: 100%;
  border-top: 2px dotted #F98124;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
} */

.step-list {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  padding-bottom: 130px;
}

.step-box {
  width: 32%;
  max-width: 380px;
  aspect-ratio: 1/1;
  text-align: center;
  background-color: #fff;
  border-radius: 100%;
  position: relative;
  margin: 0 15px;
  container-type: inline-size;
}

.step-box>div {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.step01::after {
  content: '';
  background: url(/images/cdp/step_01.png) no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
}

.step02::after {
  content: '';
  background: url(/images/cdp/step_02.png) no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}

.step03::after {
  content: '';
  background: url(/images/cdp/step_03.png) no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
}

.step-phase {
  margin-bottom: 15px;
  display: inline-block;
  background: #f96625;
  padding: 5px 15px;
  font-weight: 500;
  color: #fff;
  border-radius: 18px;
}

.step-name {
  font-size: clamp(18px, 7.3cqw, 24px);
  margin-bottom: 10px;
}

.step-detail {
  display: block;
  padding: 0 30px;
  text-align: center;
  font-size: clamp(14px, 4.8cqw, 16px);
}

@media screen and (max-width: 1024px) {
  .step-phase {
    margin-bottom: 10px;
    font-size: clamp(14px, 4.8cqw, 16px);
    padding: 2px 15px;
    font-weight: 500;
    color: #fff;
    border-radius: 18px;
  }

  .step-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 130px;
  }

  .step-box {
    width: 32%;
    max-width: 380px;
    aspect-ratio: 1/1;
    text-align: center;
    background-color: #fff;
    border-radius: 100%;
    position: relative;
    margin: 0;
    container-type: inline-size;
  }

  .step01::after {
    width: 80px;
    height: 80px;
    bottom: -50px;
  }

  .step02::after {
    width: 80px;
    height: 80px;
    bottom: -35px;
  }

  .step03::after {
    width: 80px;
    height: 80px;
    bottom: -40px;
  }

}

@media screen and (max-width: 767px) {
  .step-list {
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .step-box {
    width: 100%;
    margin-bottom: 100px;
  }
}

/* 特徴 */

#feature {
  background: linear-gradient(21.83deg, #F98124 40.99%, #F7A84B 83.19%);
  background-size: cover;
  overflow: hidden;
}

#feature .section-ttl {
  color: #fff;
  margin-bottom: 50px;
}

#feature .section-intro {
  color: #fff;
  margin-bottom: 50px;
  position: relative;
}

#feature .section-intro::after {
  width: 100%;
  height: auto;
  content: url(/images/cdp/about01.png);
  position: absolute;
  transform: scale(0.5);
  top: -260%;
  right: -55%;
}

.feature-list {
  display: flex;
  justify-content: space-between;
}

.feature-box {
  background-color: #fff;
  width: 32%;
  border-radius: 15px;
  text-align: center;
  padding: 20px 25px;
}

.feature-box-ttl {
  font-size: 1.8rem;
  color: #f96625;
  margin-bottom: 5px;
}

.feature-intro {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.feature-img {
  width: 60%;
  margin: auto;
}

.feature-img img {
  border-radius: 10px;
}

.feature-img.photo {
  width: 100%;
  margin: 0 0 15px 0;
}

.feature-detail {
  margin-bottom: 0;
  text-align: left;
}

.arr-box {
  text-align: center;
  padding: 30px 0 20px;
}

.feature-text {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 50px;
  text-shadow: 0 0 20px #f96625;
}



.contact-box {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.contact-box>img {
  display: block;
  width: 80px;
  object-fit: contain;

}

.contact-btn {
  background: linear-gradient(45deg, #ff580b 0%, #f93025 100%);
  padding: 25px 0;
  display: block;
  width: 30vw;
  max-width: 400px;
  border-radius: 40px;
  color: #fff !important;
  text-decoration: none;
  border: none;
  text-align: center;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
}

#feature .contact-box {
  position: relative;
}

#feature .contact-btn {
  position: relative;
}


@media (max-width: 1024px) {
  #feature .section-intro {
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    font-size: 1.8rem;
  }

  /* #feature .section-intro br {
  display: none;
} */

  #feature .section-ttl {
    color: #fff;
    margin-bottom: 30px;
  }

  #feature .section-intro::after {
    display: none;
  }

  .feature-list {
    display: flex;
    justify-content: space-between;
  }

  .feature-box {
    background-color: #fff;
    width: 32%;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
  }

  .feature-box-ttl {
    font-size: 1.8rem;
    color: #f96625;
    margin-bottom: 10px;
  }

  .feature-intro {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0px;
  }


  .feature-img {
    width: 60%;
    margin: auto;
  }

  .feature-detail {
    margin-bottom: 0;
  }

  .arr-box {
    text-align: center;
    padding: 15px 0;
  }

  .feature-text {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
  }

  .yellow {
    color: #ffee00;
  }

  .contact-box {
    text-align: center;
  }



  #feature .contact-box {
    position: relative;
  }

  #feature .contact-btn {
    position: relative;
  }

}

@media screen and (max-width: 599px) {
  #feature .section-intro {
    font-size: 18px;
  }

  .feature-list {
    flex-wrap: wrap;
  }

  .feature-box {
    width: 100%;
    margin-bottom: 20px;
    padding: 28px 10px;
  }

  .feature-intro {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .feature-text {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-shadow: unset;
    text-align: left;
  }

  #feature .section-intro::after {
    content: none;
  }

  #feature .contact-box::before {
    content: none;
  }

  #feature .contact-box::after {
    content: none;
  }

  #feature .contact-btn::before {
    content: none;
  }

  #feature .contact-btn::after {
    content: none;
  }

  .contact-box {
    display: block;
  }

  .contact-box>img {
    display: none;
  }

  .contact-btn {
    width: 100%;
  }



}

/* 機能紹介 */

#function {
  background-color: #fff;
}

.fc-box {
  display: flex;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 60px;
}

.fc-img {
  width: 48%;
  max-height: 400px;
  background: #f966251a;
  border-radius: 5px;
}

.fc-img img {
  display: block;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.fc-text-area {
  width: 48%;
}

.fc-ttl {
  display: inline-block;
  background: #f96625;
  color: #fff;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: normal;
  border-radius: 3px;
  margin-bottom: 15px;
}

.fc-intro {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}

.fc-detail {}

@media screen and (max-width: 767px) {
  .fc-box {
    flex-wrap: wrap;
  }

  .fc-img {
    width: 100%;
    margin-bottom: 16px;
  }

  .fc-text-area {
    width: 100%;
  }

  .fc-intro {
    font-size: 18px;
  }
}

/* オムニチャネル */
#omni {
  background: #fafafa;
}

.case-box {
  background: #fff;
  padding: 60px;
  position: relative;
  margin-bottom: 60px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, .1);

}

.case-ttl {
  font-weight: bold;
  font-size: 28px;
  line-height: 140%;
  /* padding-left: 80px; */
  margin-bottom: 42px;
  display: flex;
  align-items: center;
}

.case-ttl__num {
  color: #FF9214;
  font-size: 48px;
  text-align: center;
  margin-right: 15px;
  transform: translateY(-2px);
}

.case-ttl__num span {
  color: #F96625;
  font-size: 16px;
  display: block;
  line-height: 1;
  padding-bottom: 7px;
}

.value-ttl {
  font-size: 20px;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.value-ttl::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 146px;
  height: 2px;
  background-color: #ff6600;
}

.value-list {
  display: flex;
  justify-content: space-between;
}

.value-box {
  width: 48%;
  background-color: #fff;
  padding: 15px 55px;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, .1);
  margin-bottom: 15px;
}

.value-ttl-sub {
  text-align: center;
  font-size: 20px;
  position: relative;
  padding-bottom: 5px;
}

.value-ttl-sub::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #ff6600;
}

.value-text-sub {
  color: #616161;
  font-size: 12px;
  text-align: center;
}

.value-text {
  line-height: 150%;
  margin-top: 40px;
}

.value-img {
  width: 80%;
  max-width: 360px;
  margin: 0 auto;
}


@media screen and (max-width: 1024px) {
  .case-box {
    padding: 30px;
  }

  .case-ttl {
    font-weight: bold;
    font-size: 22px;
    line-height: 140%;
    /* padding-left: 80px; */
    margin-bottom: 30px;
    display: flex;
    align-items: center;
  }

  .case-ttl__num {
    color: #FF9214;
    font-size: 40px;
    text-align: center;
    margin-right: 15px;
    transform: translateY(-2px);
  }

  .case-ttl__num span {
    color: #F96625;
    font-size: 16px;
    display: block;
    line-height: 1;
    padding-bottom: 7px;
  }


  .value-ttl {
    font-size: 18px;
    padding-bottom: 10px;
  }

  .value-ttl-sub {
    font-size: 18px;
  }

  .value-list {
    /* flex-wrap: wrap; */
  }

  .value-box {
    width: 48%;
    padding: 15px 20px;
  }
}

@media screen and (max-width: 599px) {
  .case-ttl {
    font-size: 18px;
    margin-bottom: 20px;
    display: block;
  }

  .case-ttl__num {
    font-size: 16px;
    text-align: left;
    margin-right: 0;
    transform: translateY(0);
  }

  .case-ttl__num span {
    color: #F96625;
    font-size: 16px;
    display: inline;
    line-height: 1;
    padding-bottom: 7px;
  }

  .value-list {
    flex-direction: column;
  }

  .value-box {
    width: 100%;
    padding: 15px;
  }
}


/* 問い合わせ */
#contact {
  background-image: url(/images/cdp/bg_function.png);
  background-size: cover;
}

.contact-info-box {
  width: 100%;
  background: white;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  max-width: 1024px;
  margin: 0 auto;
}

.contact-info-box .kv-btn-list {
  margin-bottom: 30px;
}


.contact-tel {
  text-align: center;
}

.contact-text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: white;
}

.phone-number {
  margin-bottom: 5px;
  font-size: 3rem;
  font-weight: bold;
}

.phone-time {
  font-weight: bold;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .phone-number {
    margin-bottom: 5px;
    font-size: 2rem;
    font-weight: bold;
  }

  .contact-info-box .kv-btn-list {
    margin-bottom: 30px;
    display: block;
    width: 100%;
  }

  .contact-info-box .kv-btn-list .kv-btn {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
}


/* ----------------------------------------
 スマホ用フロートCVボタン
------------------------------------------*/
.sp_floting-nav {
  display: none;
}

@media screen and (max-width: 599px) {
  .sp_floting-nav {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100vw;
    z-index: 700;
    text-align: center;
  }

  .sp_floting-nav .kv-btn {
    /* flex-grow: 1; */
    padding: 0;
    width: 45.5vw;
  }

  .sp_floting-nav .kv-btn-text {
    padding: 10px;
    width: 45.5vw;

  }

  .sp_floting-nav .kv-btn-text-sub {
    font-size: 1.2rem;
    padding: 5px 0 0 0;
    background: none;
    box-shadow: none;
  }

  .sp_floting-nav .kv-btn-text-sub::before {
    display: none;
  }

  .sp_floting-nav .bg {
    background: white;
  }

  .sp_floting-nav_inner {
    display: flex;
    width: 94vw;
    padding: 10px 0 5px;
    margin: 0 auto;
    justify-content: space-between;
    gap: 10px;
  }

  .sp_floting-nav_inner .btn {
    width: 45.5vw;
    border-radius: 5px;
  }
}

.f_bn_wrapper {
  display: none;
}

#top .f_bn_wrapper {
  display: block;
}



.f_bn_sp {
  display: block;
  position: relative;
}

.f_bn_sp.is-hidden,
.f_close.is-hidden {
  display: none;
}



.design01 {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  position: relative;
  margin-top: 50px;
}

.design01 th {
  padding: 10px;
  background: #e9faf9;
  border: solid 1px #778ca3;
}

.design01 td {
  padding: 10px;
  border: solid 1px #778ca3;
}

.design01::before {
  content: '横にスクロールできます \f060 \f0a6 \f061';
  font-family: Line Awesome Free;
  font-weight: 900;
  position: absolute;
  top: -50px;
  right: 0;
  background: #000000;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
}



.c-lnContent {
  width: 100%;
  display: grid;
  grid-template-columns: 260px 1fr;
  /* 左ナビ幅 / 右コンテンツ */
  gap: 40px;
  align-items: start;
  /* stickyが効きやすい */
  overflow: visible;
}

.c-lnContent__nav {
  position: sticky;
  top: 15vh;
  height: fit-content;
  /* navの高さを内容に合わせる */
}


.c-lnContent__content {
  min-width: 0;
  /* 長い要素があるときのはみ出し防止 */
}

.c-lnContent__nav a span {
  font-size: 1.2rem;
  color: #747474;
  background: #f5f5f5;
  padding: 5px 10px;

}

.c-lnContent__nav a {
  display: block;
  padding: 8px 0;
  color: #989393;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.c-lnContent__nav a::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-color: white;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
}

.c-lnContent__nav a.is-active {
  color: #000000;
}

.c-lnContent__nav a.is-active::before {
  background-color: #F96625;
}

@media (max-width: 1024px) {
  .c-lnContent__nav {
    display: none;
  }

  .c-lnContent {
    width: 100%;
    display: block;
  }
}



.f_item {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.f_item__img {
  width: 22.6vw;
  flex: 0 0 22.6vw;
}

.f_item__content {
  width: 35.1vw;
  flex: 0 0 35.1vw;
  padding-right: 40px;
}

.f_item__name {
  font-size: 1.8rem;
  color: #F96625;
  margin-bottom: 15px;
}

.f_item__copy {
  font-size: 2rem;
  color: #000000;
}


@media (max-width: 1024px) {
  .f_item {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    justify-content: space-between;
  }

  .f_item__img {
    width: 35%;
    flex: 0 0 35%;
  }

  .f_item__content {
    width: 48.5%;
    flex: 1 0 48.5%;
    padding-right: 20px;
  }

  .f_item__name {
    font-size: 1.8rem;
    color: #F96625;
    margin-bottom: 15px;
  }

  .f_item__copy {
    font-size: 2rem;
    color: #000000;
  }
}

@media (max-width: 599px) {
  .f_item {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    justify-content: space-between;
    flex-direction: column;
  }

  .f_item__img {
    width: 100%;
    flex: 0 0 100%;
  }

  .f_item__content {
    width: 100%;
    flex: 1 0 100%;
    padding-right: 0;
  }

  .f_item__name {
    font-size: 1.8rem;
    color: #F96625;
    margin-bottom: 15px;
  }

  .f_item__copy {
    font-size: 2rem;
    color: #000000;
  }
}


/**========================================================================
 * *                                INFO
 *   導入事例
 *   
 *========================================================================**/

.content-section#client {
  background: #F98124;
  background-image: url('/images/cdp/bg-poly.svg');
  background-repeat: no-repeat;
  background-position: 60px 40px;
}

.content-section#client .section-ttl {
  color: white;
}

.client_item {
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  background: #fff;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.client_item__content {
  flex: 0 0 60%;
  padding: 40px;
  font-weight: 500;
}

.client_item__img {
  flex: 0 0 40%;
  display: flex;
  min-height: 0;
  /* ←重要：中身優先を解除 */
  overflow: hidden;
  /* ←重要：トリミング */
  background: url('/images/cdp/client_img01.png') no-repeat center;
  background-size: cover;
}

.client_item__img img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-width: unset;
  min-height: 0;
  /* 念のため（環境によって効く） */
}

.client_item__meta {
  border-top: 1px solid #ccc;
  font-size: 14px;
  color: #212121;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.client_item__meta p {
  margin: 0;
}

.client_item__meta img {
  display: block;
  width: 160px;
  height: auto;
}


@media (max-width: 599px) {

  .client_item {
    overflow: hidden;
    border-radius: 15px;
    flex-direction: column;
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
  }

  .client_item__content {
    flex: 0 0 auto;
    width: 100%;
    padding: 40px;
    font-weight: 500;
  }

  .client_item__img {
    flex: 0 0 auto;
    display: flex;
    width: 100%;
    height: 200px;
    min-height: 0;
    /* ←重要：中身優先を解除 */
    overflow: hidden;
    /* ←重要：トリミング */
    background: url('/images/cdp/client_img01.png') no-repeat right;
    background-size: cover;
  }

  .client_item__img img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-width: unset;
    min-height: 0;
  }

  .client_item__meta {
    border-top: 1px solid #ccc;
    font-size: 14px;
    color: #212121;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
  }

  .client_item__meta p {
    margin: 0;
    font-size: 12px;
    text-align: center;
  }

  .client_item__meta img {
    display: block;
    width: 160px;
    height: auto;
  }
}


.content-section#orange-case {
  border-top: 2px #F9AB25 solid;
}

.case-orange {
  padding: 40px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  border-radius: 15px;
}

.case-orange__heading {
  border-left: #F96625 5px solid;
  padding-left: 30px;
  margin-bottom: 20px;
}

.case-orange__heading span {
  font-size: 12px;
  color: #F96625;
  font-weight: 600;
}

.case-orange__heading h3 {
  font-size: 24px;
  margin-bottom: 15px !important;
}

.case-orange__heading>div {
  display: flex;
  color: #F96625;
  font-size: 12px;
  font-weight: 600;

}

.case-orange__ft {
  display: inline-flex;
  align-items: center;
  background: #f7f7f7;
  padding: 5px 10px;
  border-radius: 3px;
  margin-right: 10px;
}

.case-orange__ft img {
  display: block;
  margin-right: 5px;
  object-fit: contain;

}


.case-orange__content {
  display: flex;
  gap: 30px;
}

.case-orange__content img {
  width: 300px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .case-orange__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}


@media (max-width: 599px) {
  .case-orange {
    padding: 0;
    box-shadow: none;
  }

  .case-orange__heading {
    border-left: #F96625 5px solid;
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .case-orange__heading span {
    font-size: 12px;
    color: #F96625;
    font-weight: 600;
  }

  .case-orange__heading h3 {
    font-size: 20px;
    margin-bottom: 15px !important;
  }

  .case-orange__heading>div {
    flex-direction: column;
    gap: 5px;
  }

  .case-orange__ft {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
  }

  .case-orange__ft img {
    display: block;
    margin-right: 5px;
    object-fit: contain;

  }

  .case-orange__content img {
    width: 100%;
  }
}