:root{
  --sky:#D2F0FF;
  --text:#4D4D4D;
  --muted:#6b7280;
  --accent:#ff8aa0;
  --divider:#838383;
  --title-small:#0C82C9;
  --bg-root:#F0F7FB;
  --btn-color: #0C82C9;
}

* {
    box-sizing:border-box;
    margin:0;
    padding:0;
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', "sans-serif" !important;
}

html {
  all: unset !important;
}

body {
  all: unset !important;
}

/* ---------------- Header Start---------------- */
@media screen and (min-width: 960px) {
  .top-bar-pc{
    display: flex !important;
  }
  
  .top-bar-sp{
    display: none !important;
  }

  .header{
    background:var(--sky);
  }
}

.header{
  margin-bottom: 5px;
}

.top-bar-pc{
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding:10px 20px 12px;
  align-items:center;
  justify-content:space-between;
  display: none;
}

.top-bar-pc .tb-logo{
  width:300px;
}

.top-bar-pc .tb-right{
  display:flex;
  flex-direction:column;
}

.top-bar-pc .tb-right .tb-content{
  display:flex;
  align-items:center;
  justify-content: end;
  gap:14px;
  margin: 20px 0 20px 0;
  color:var(--text);
}

.top-bar-pc .tb-right .tb-content .tbc-child-left{
  font-size: 18.75px; 
  letter-spacing: 2.625px; 
}

.top-bar-pc .tb-right .tb-content .tbc-information {
  font-size: 13.50px; 
  letter-spacing: 2px;
}

.top-bar-pc .h-divider{
  width:2px;
  height:50px;
  background:var(--divider);
}

.top-bar-pc .tbc-child-right{
  display:flex;
  flex-direction:column;
}

.top-bar-pc .label{
  font-size: 15.00px; 
  letter-spacing: 1px;
  color:var(--accent);
  margin-right:6px;
}

.top-bar-pc .phone-number{
  color:var(--accent);
  font-size: 30.00px; 
  letter-spacing: 6.6px;
}

.phone-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.top-bar-pc .tbc-child-right p{
  margin:0;
  font-size:11px;
  color:var(--muted);
  letter-spacing:.02em;
  white-space:nowrap;
}

.top-bar-pc .top-bar-nav .menu{
  display:flex;
  flex-wrap:nowrap;                    
  align-items:center;
  justify-content:center;
  list-style:none;
}

.top-bar-pc .top-bar-nav .menu li{
  line-height:1;
  color:#2c2c2c;
}

.top-bar-pc .top-bar-nav .menu li:not(:first-child){
  border-left:2.3px solid #161616;
  margin-left:10px;
  padding-left:10px;
}

.top-bar-pc .top-bar-nav .menu a{
  display:inline-block;
  text-decoration:none;
  color:inherit;
  margin: 0 10px 0 10px;
  padding:4px 0;
  font-size: 19.50px; 
}

.top-bar-pc .top-bar-nav .menu a:hover{
  text-decoration:underline;
  text-underline-offset:2px;
}

.top-bar-pc .header-bottom{
  position: absolute;
  top:calc(100% - 12px);
  left:0;
  width:100%;
}

.top-bar-pc .header-bottom .header-bottom-svg{
  width:100%;
  position: absolute;
  z-index: 1;
}

.hero-slider-pc-wrapper {
  display: none;
}

/* Mobile view: show top-bar-sp and hide top-bar-pc */
.top-bar-sp{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.top-bar-sp .tb-logo-sp{
  height: 50px;
}

.top-bar-sp .tb-right-menu-button-sp{
  height: 50px;
  cursor: pointer;
}

/* ---------------- Mobile Menu Start---------------- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0C82C9;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  position: relative;
  z-index: 1;
}

.mobile-menu-logo {
  height: 50px;
  width: auto;
}

.mobile-menu-close {
  background: white;
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s;
  flex-shrink: 0;
}

.mobile-menu-close:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-close svg line {
  stroke: #4D4D4D;
  stroke-width: 2.5;
}

.mobile-menu-content {
  padding: 0px 20px;
}

.mobile-menu-main-title {
  color: white;
  font-weight: 300;
  text-align: center;
  margin: 20px 0 30px;
  letter-spacing: 2px;
  font-size: 25px;
}

.mobile-menu-section {
  margin-bottom: 20px;
}

.mobile-menu-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-section-title {
  color: white;
  font-size: 20px;
  margin: 0;
}

.mobile-menu-section-en {
  color: white;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 2px;
}

.mobile-menu-list-wrapper {
  display: flex;
  gap: 20px;
  margin: 0 10px;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-menu-list-left {
  flex: 1;
}

.mobile-menu-list-right {
  flex: 1;
}

.mobile-menu-list li {
  margin-bottom: 12px;
}

.mobile-menu-list a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  display: block;
  padding: 8px 0;
  transition: opacity 0.3s;
  font-weight: 300;
  letter-spacing: 1px;
}

.mobile-menu-list a:hover {
  opacity: 0.8;
}

.mobile-menu-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}

.mobile-menu-section-news {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px 0;
  margin: 20px 0;
}

.mobile-menu-news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-section-news .mobile-menu-section-title {
  margin: 0;
  padding: 0;
  border: none;
}

.mobile-menu-news {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-news-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s;
}

.mobile-menu-news-facebook:hover {
  opacity: 0.8;
}

.mobile-menu-news-facebook svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-news-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.3);
}

.mobile-menu-news-blog {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
  letter-spacing: 2px;
  font-weight: 300;
}

.mobile-menu-news-blog-label {
  font-size: 13px;
}

.mobile-menu-news-blog:hover {
  opacity: 0.8;
}

.mobile-menu-footer {
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.mobile-menu-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  transition: all 0.3s;
  border: 1px solid white;
  color: white;
  max-width: 200px;
  width: 100%;
}

.mobile-menu-btn:hover {
  background-color: #0970a8;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hide mobile menu on desktop */
@media screen and (min-width: 960px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

/* ---------------- Mobile Menu End---------------- */
/* ---------------- Header End---------------- */

/* ---------------- Hero Slider Start---------------- */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  margin-top: 8px;
  background-color: var(--bg-root);
}

/* Mobile view: show slider SP and hide slider PC */
.hero-slider-pc {
  display: none;
}

.hero-slider-sp {
  display: block;
  position: relative;
  width: 100%;
  height: calc(66vw - 40px);  padding: 0 15px;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide-content-1 {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1%;
}

.hero-slide-content-2 {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 8% 2% 1% 2%;
}
.hero-text-overlay {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-text-overlay li {
  display: flex;
  align-items: center;
  max-width: 100%;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  padding: 0 10px 0 0 !important;
  margin: 0 10px 1vw 10px;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: fit-content;
}

.hero-slide-content-2 .hero-text-overlay li {
  display: flex;
  align-items: center;
  max-width: 100%;
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
  padding: 0 10px 0 0 !important;
  margin: 0 10px 10px 10px;
  margin-bottom: 15px;
  background-color: rgb(90 153 167 / 66%);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: fit-content;
}

.hero-text-overlay li:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-text-overlay li:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-text-overlay li:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-text-overlay li:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text-overlay li .hero-letter {
  font-size: 4vw;
  letter-spacing: normal;
  font-weight: bold;
  color: #0C82C9;
  min-width: 45px;
  text-align: center;
  flex-shrink: 0;
}

.hero-text-overlay li .hero-text {
  font-size: 2vw;
  color: #1a1a1a;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  letter-spacing: normal;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.hero-slide-content-2 .hero-text-overlay li {
  position: relative;
}

.hero-slide-content-2 .hero-text-overlay li .hero-text {
  font-size: 2vw;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  letter-spacing: normal;
  padding: 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.hero-slide-content-2 .hero-text-overlay li .hero-text .hero-text-title {
  color: rgb(179 228 247);
  text-shadow: none;
}

.hero-slide-content-2 .hero-text-overlay li .hero-text .hero-text-sm {
  font-size: 10px;
  margin: 5px 3px 0 3px;
}

.hero-slide-content-2 .hero-text-underline {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  z-index: 1;
}

.hero-slide-content-2 .hero-text-overlay li .hero-text .hero-text-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: #b5e28a;
  border-radius: 10px;
  z-index: -1;
}

/* Slider Controls */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: #0C82C9;
}

.hero-slider-btn:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.hero-slider-btn-prev {
  left: 30px;
}

.hero-slider-btn-next {
  right: 30px;
}

.hero-slider-btn svg {
  width: 24px;
  height: 24px;
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.hero-slider-dot.active {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
  transform: scale(1.3);
}

/* Hero Bottom Text */
.hero-bottom-text {
  position: relative;
  z-index: 5;
  padding: 15px;
  text-align: center;
  writing-mode: tb;
}

.hero-bottom-text p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

/* Desktop Version (PC) */
@media screen and (min-width: 960px) {
  /* Show slider PC and hide slider SP */
  .hero-slider-pc {
    display: block;
    position: relative;
    width: 100%;
    height: calc(57vw - 120px);
    min-height: 675px;
    margin-left: 40px;
  }

  .hero-slider-sp {
    display: none;
  }

  .hero-slider-pc-wrapper {
    display: flex !important;
    background-color: var(--bg-root);
  }

  /* Hero Text Overlay - Desktop */
  .hero-slider-pc .hero-text-overlay li .hero-letter {
    font-size: 3vw;
    min-width: 60px;
  }

  /* Slider Controls - Desktop */
  .hero-slider-pc .hero-slider-btn {
    width: 60px;
    height: 60px;
  }

  .hero-slider-pc .hero-slider-btn-prev {
    left: 50px;
  }

  .hero-slider-pc .hero-slider-btn-next {
    right: 50px;
  }

  /* Slider Dots - Desktop */
  .hero-slider-pc .hero-slider-dots {
    bottom: 50px;
  }

  /* Hero Bottom Text - Desktop */
  .hero-bottom-text {
    padding: 25px;
  }

  .hero-slide-content-2 .hero-text-overlay li .hero-text .hero-text-sm {
    font-size: 1.4vw;
    margin: 0.6vw 5px 0 5px;
  }

  .hero-slide-content-2 .hero-text-overlay li .hero-text .hero-text-underline::after {
    height: 10px;
    border-radius: 10px;
    bottom: 3px;
  }

  .hero-text-overlay li .hero-text {
    font-size: 1.5vw;
  }
}
/* ---------------- Hero Slider End---------------- */


/* ---------------- Vision Start---------------- */
@media screen and (min-width: 960px) {

    .vision {
        padding: 0px calc(20px + 3%) !important;
    }

    .vision-wrapper {
      background-color: var(--bg-root) !important;
    }

    .vs-header-content span {
        font-size:45px !important;
        color:var(--text);
    }

    .vs-header-content p {
        font-size:22.5px !important;
        color:var(--title-small);
        letter-spacing: 2.7px;
    }

    .vs-header .icon-cloud {
        display: block !important;
    }

    .vs-header .icon-cloud-blue {
        display: none !important;
    }

    .vision .vs-content .icon-cloud {
        display: block !important;
    }

    .vision .vs-content article {
        max-width: 60%;
    }

    .vision .vs-content article p {
        font-size: 21px !important;
        text-align: justify;
    }

    .vision .vs-btn {
        justify-content: end !important;
    }

    .vision .vs-btn .icon-cloud-blue {
        display: none !important;
    }

    .vision .vs-btn a {
        font-size: 18px !important;
        padding: 12px 30px !important;
        border: solid 5px #8ED0F7 !important;
        margin-left: 0px !important;
    }
}

.vision-wrapper {
  padding: 1px 0px !important;
}

.vision {
  max-width: 1440px;

  margin: 40px auto;
  padding: 0px calc(20px + 3%);
}

.vs-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 15px;
}

.vs-header-content p {
    font-size:12px;
    color:var(--title-small);
    letter-spacing: 1.7px;
}

.vs-header-content span {
    font-size:22px;
    color:var(--text);
}

.vs-header .icon-cloud {
    width: 220px;
    height: auto;
    margin: 0;
    padding: 0;
    display: none;
    transform: translateY(-15px);
}

.vs-header .icon-cloud-blue {
    width: 90px;
    height: auto;
    margin: 0;
    padding: 0;
    transform: translate(12px, 20px);
}

.vision .vs-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vision .vs-content .icon-cloud {
    width: 300px;
    height: auto;
    display: none;
}

.vision .vs-content article p {
    font-size: 14px;
    margin: 35px 0;
    color: var(--text);
    text-align: justify;
    font-weight: 500;
}

.vision .vs-btn {
    display: flex;
    justify-content: space-around;
}

.vision .vs-btn .icon-cloud-blue {
    width: 140px;
    height: auto;
}

.vision .vs-btn a {
    background: var(--btn-color);
    color: #fff;
    border: solid 3px #8ED0F7;
    padding: 8px 22px;
    font-size: 12.5px;
    margin-left: 20px;
    cursor: pointer;
    border-radius: 50px;
    transform: translateY(-15px);
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
}

.vision .vs-btn a:hover {
  background: #0970a8;
}
/* ---------------- Vision End---------------- */

/* ---------------- Our Values Start---------------- */

@media screen and (min-width: 960px) {
    .our-values {
        display: block !important;
    }

    .our-values-mobile {
        display: none !important;
    }

    .our-values-wrapper {
      background-color: var(--bg-root) !important;
    }
}

.our-values-wrapper {
  padding: 1px 0px;
}

.our-values {
  max-width: 1440px;
  margin: 100px auto;
  padding: 34px 74px;
  background-color: #fff;
  border-radius: 20px;
  display: none;
}

.our-values-mobile {
  max-width: 1440px;
  margin: 15px;
  padding: 30px 19px;
  background-color: #fff;
  border-radius: 20px;
}

.our-values .ov-header {
  text-align: center;
  margin-bottom: 40px;
}

.our-values-mobile .ov-header {
  text-align: center;
  margin-bottom: 25px;
}

.our-values .ov-header .ov-header-sm {
  font-size: 23.74px;
  color: var(--title-small);
  letter-spacing: 2.85px;
}

.our-values-mobile .ov-header .ov-header-sm {
  font-size: 12px;
  color: var(--title-small);
  letter-spacing: 2.85px;
}

.our-values .ov-header .ov-header-lg {
  font-size: 47.47px;
}

.our-values-mobile .ov-header .ov-header-lg {
  font-size: 22px;
}

.our-values .ov-body {
  text-align: center;
  margin-top: 20px;
}

.our-values-mobile .ov-body {
  text-align: center;
  margin-top: 20px;
}

.our-values .ov-body .ov-body-content {
  font-size: 22.15px;
}

.our-values-mobile .ov-body .ov-body-content {
  font-size: 14px;
}

.our-values .ov-tag {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 24px;
    margin: 50px auto;
}

.our-values .ov-tag .ov-tag-content {
  display: flex;
  align-items: center;
  background-color: #93C6FF;
  border-radius: 15px;
  padding: 7px 20px;
}

.our-values-mobile .ov-tag .ov-tag-content {
  display: flex;
  align-items: center;
  background-color: #93C6FF;
  border-radius: 15px;
  padding: 4px 12px;
  margin: 20px auto;
}

.our-values .ov-tag .ov-tag-content .ovt-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
}

.our-values .ov-tag .ov-tag-content .ovt-left .ovt-left-sm {
  font-size: 11.08px;
  color: #fff;
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-left .ovt-left-sm {
  font-size: 9px;
  color: #fff;
  text-align: center;
}

.our-values .ov-tag .ov-tag-content .ovt-left .ovt-left-lg {
  font-size: 58.69px;
  color: var(--text);
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-left .ovt-left-lg {
  font-size: 27.423px;
  color: var(--text);
}

.our-values .ov-tag .ov-tag-content .h-divider {
  width: 2px;
  height: 100px;
  background: var(--text);
  margin: 0 30px;
}

.our-values-mobile .ov-tag .ov-tag-content .h-divider {
  width: 3px;
  height: 40px;
  background: var(--text);
  margin: 0 12px;
}

.our-values .ov-tag .ov-tag-content .ovt-right {
  width: 100%;
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-right {
  width: 100%;
}

.our-values .ov-tag .ov-tag-content .ovt-right .ovt-right-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-right .ovt-right-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.our-values .ov-tag .ov-tag-content .ovt-right .ovt-right-header .ovt-right-header-title {
  font-size: 27.69px;
  color: var(--text);
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-right .ovt-right-header .ovt-right-header-title {
  font-size: 16px;
  color: var(--text);
}

.our-values .ov-tag .ov-tag-content .ovt-right .ovt-right-header .ovt-right-header-icon {
  width: 60px;
  height: auto;
  margin: 6px 16px 10px 8px;
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-right-header-mobile .ovt-right-header-icon {
    width: 48px;
    height: auto;
    margin: 6px 5px 6px 25px;
}

.our-values .ov-tag .ov-tag-content .ovt-right .ovt-right-body {
  font-size: 22.15px;
  color: #fff;
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-right .ovt-right-body {
  font-size: 13.5px;
  color: #fff;
}

.our-values .ov-tag .ov-tag-content .ovt-right .ovt-right-header .ovt-right-header-icon-2 {
  width: 115px;
  margin: 3px 0px 25px 0px;
  height: auto;
}

.our-values-mobile .ov-tag .ov-tag-content .ovt-right-header-mobile .ovt-right-header-icon-2 {
  width: 45px;
  margin: 0px 0px 0px 25px;
  height: auto;
}

.our-values .ov-footer {
  text-align: center;
  margin-top: 40px;
}

.our-values-mobile .ov-footer {
  text-align: center;
  margin-top: 40px;
}

.our-values .ov-footer .ov-footer-btn {
  background: var(--btn-color);
  color: #fff;
  border: solid 3px #8ED0F7;
  padding: 10px 26px;
  font-size: 19.78px;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.3s;
  display: inline-block;
  text-decoration: none;
}

.our-values-mobile .ov-footer .ov-footer-btn {
  background: var(--btn-color);
  color: #fff;
  border: solid 3px #8ED0F7;
  padding: 10px 75px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 50px;
  transition: background-color 0.3s;
  display: inline-block;
  text-decoration: none;
}

.our-values .ov-footer .ov-footer-btn:hover {
  background: #0970a8;
}

.our-values-mobile .ov-footer .ov-footer-btn:hover {
  background: #0970a8;
}
/* ---------------- Our Values End---------------- */

/* ---------------- Now Accepting Start---------------- */
.now-accepting {
  background:var(--bg-root);
}

/* Mobile Version */
.na-mobile {
  display: block;
  padding: 40px 20px;
  text-align: center;
}

.na-mobile .na-mobile-header-top {
  gap: 10px;
  margin-bottom: 15px;
}

.na-mobile .na-mobile-header-top .na-mobile-label {
  font-size: 18px;
  color: #0C82C9;
  font-weight: bold;
  margin: 0;
}

.na-mobile .na-mobile-header-top .na-mobile-cloud-icon {
  width: 325px;
  height: auto;
  margin-bottom: 40px;
}

.na-mobile .na-mobile-title {
  font-size: 24px;
  color: var(--text);
  margin: 15px 0;
  font-weight: normal;
}

.na-mobile .na-mobile-contact-info {
  font-size: 15px;
  margin: 20px 0;
  text-align: center;
}

.na-mobile .na-mobile-contact-info .na-mobile-hours h3 {
  letter-spacing: 3px;
  color: var(--text);
  margin: 5px 0;
  font-weight: normal;
}

.na-mobile .na-mobile-contact-info .na-mobile-phone {
  letter-spacing: 2.7px;
  color: #ff8aa0;
  font-weight: bold;
  margin: 20px 0;
}

.na-mobile .na-mobile-disclaimer {
  margin-top: 15px;
}

.na-mobile .na-mobile-disclaimer p {
  font-size: 14px;
  color: var(--text);
  margin: 5px 0;
}

.na-mobile .na-mobile-table-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 30px auto 0;
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  background-color: transparent;
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table caption {
  display: none;
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table thead th {
  background-color: #0C82C9;
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
  border: 2px solid #0C82C9;
  font-weight: normal;
  font-size: 17px;
  border-radius: 12px;
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table tbody th,
.na-mobile .na-mobile-table-wrapper .na-mobile-table tbody td {
  background-color: #ffffff;
  border: 2px solid #0C82C9;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table .na-mobile-service-name {
  font-weight: normal;
  font-size: 20.0px;
  color: var(--text);
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table .na-mobile-status {
  position: relative;
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table .na-mobile-status div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

.na-mobile .na-mobile-table-wrapper .na-mobile-table .na-mobile-status div svg {
  width: 100%;
  height: 100%;
  color: var(--text);
}

/* Desktop Version */
.na-desktop {
  display: none;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px;
}

.na-desktop .na-desktop-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  /* gap: 40px; */
  /* margin-bottom: 60px; */
  text-align: left;
}

.na-desktop .na-desktop-top .na-desktop-header {
  flex: 1;
}

.na-desktop .na-desktop-top .na-desktop-header .na-desktop-header-top {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.na-desktop .na-desktop-top .na-desktop-header .na-desktop-header-top .na-desktop-label {
  /* font-size: 22px; */
  color:var(--title-small);

  /* font-weight: bold; */
  /* margin: 0; */
  font-size: 22.50px; 
  letter-spacing: 2.7px;
}

.na-desktop .na-desktop-top .na-desktop-header .na-desktop-header-top .na-desktop-cloud-icon {
  width: 150px;
  height: auto;
  margin-bottom: 15px;
  margin-left: 95px;
}

.na-desktop .na-desktop-top .na-desktop-header .na-desktop-title {
  font-size: 45.00px; 
  letter-spacing: normal;
  color: var(--text);
  margin: 15px 0;
  /* font-weight: normal; */
}

.na-desktop .na-desktop-top .na-desktop-header .na-desktop-disclaimer {
  margin-top: 100px;
  margin-bottom: 100px;
  font-size: 21.00px; 
  color: var(--text);
  line-height: 40px;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper {
  flex: 1;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
  background-color: transparent;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table caption {
  display: none;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table thead th {
  background-color: #0C82C9;
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
  border: 2px solid #0C82C9;
  font-weight: normal;
  font-size: 22.5px;
  border-radius: 12px;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table tbody th,
.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table tbody td {
  background-color: #ffffff;
  border: 2px solid #0C82C9;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table .na-desktop-service-name {
  font-weight: normal;
  font-size: 30.0px;
  color: var(--text);
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table .na-desktop-status {
  position: relative;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table .na-desktop-status div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

.na-desktop .na-desktop-top .na-desktop-table-wrapper .na-desktop-table .na-desktop-status div svg {
  width: 100%;
  height: 100%;
  color: var(--text);
}

.na-desktop .na-desktop-contact-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin-top: 40px;
}

.na-desktop .na-desktop-contact-section .na-desktop-images {
  /* flex: 6; */
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}

.na-desktop .na-desktop-contact-section .na-desktop-images .na-desktop-img {
  width: auto;
  height: 250px;
  border-radius: 8px;
}

.na-desktop .na-desktop-contact-section .na-desktop-contact-info {
  flex: 1;
  text-align: center;
}

.na-desktop .na-desktop-contact-section .na-desktop-contact-info .na-desktop-hours h3 {
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--text);
  margin: 5px 0;
  font-weight: normal;
}

.na-desktop .na-desktop-contact-section .na-desktop-contact-info .na-desktop-phone {
  font-size: 46px;
  letter-spacing: 2.7px;
  color: #ff8aa0;
  font-weight: bold;
  margin: 20px 0;
}

/* Media Query - Switch between mobile and desktop */
@media screen and (min-width: 960px) {
  .na-mobile {
    display: none;
  }

  .na-desktop {
    display: block;
  }
}
/* ---------------- Now Accepting End---------------- */

/* ---------------- Service Flow Start---------------- */
.service-flow {
  background-color: var(--bg-root);
  padding: 0;
}

.service-flow .sf-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: var(--bg-root);
}

/* Header Section */
.service-flow .sf-header {
  background-color: var(--bg-root);
  padding: 20px 15px 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-flow .sf-header-content {
  height: 100%;
  text-align: center;
  order: 2;
}

.service-flow .sf-label {
  font-size: 14px;
  color: var(--title-small);
  letter-spacing: 1.5px;
  font-weight: normal;
  text-align: center;
}

.service-flow .sf-title {
  font-size: 22px;
  color: var(--text);
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}


/* Illustration and Buttons */
.service-flow .sf-illustration {
  order: 1;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  max-width: 500px;
}

.service-flow .sf-illustration-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.service-flow .sf-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 15px 20px;
  margin-top: 10px;
  align-items: center;
  order: 3;
}

.service-flow .sf-btn {
  background-color: var(--btn-color);
  border: solid 3px var(--sky);
  color: #FFFFFF;
  padding: 16px 75px;
  border-radius: 50px;
  font-size: 15px;
  letter-spacing: normal;
  cursor: pointer;
  font-weight: normal;
  transition: background-color 0.3s;
  width: 100%;
  text-align: center;
  display: inline-block;
  text-decoration: none;
}

.service-flow .sf-btn:hover {
  background-color: #0970a8;
}

/* Flow Items */
.service-flow .sf-flows {
  display: flex;
  flex-direction: column;
  padding: 0 20px 15px 30px;
}

.service-flow .sf-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}

/* Flow Number */
.service-flow .sf-flow-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: auto;
}

.service-flow .sf-flow-label {
  font-size: 14px;
  color: var(--title-small);
  font-weight: normal;
}

.service-flow .sf-flow-num {
  font-size: 40px;
  color: var(--text);
  font-weight: bold;
  display: inline-block;
  align-items: flex-start;
}

.service-flow .sf-flow-title {
  font-size: 30px;
  color: var(--text);
  line-height: 1.5;
  width: 100%;
  text-align: center;
}


/* Flow Description */
.service-flow .sf-flow-description {
  width: 100%;
  max-width: none;
  margin-top: 4px;
  text-align: center;
}

.service-flow .sf-flow-description p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.service-flow .sf-highlight {
  background-color: var(--sky);
  padding: 2px 4px;
  border-radius: 2px;
}

/* Desktop Version - PC */
@media screen and (min-width: 960px) {
  .service-flow {
    padding: 60px 0;
  }

  .service-flow .sf-wrapper {
    max-width: 1440px;
    padding: 0px 100px;
    background-color: var(--bg-root);
    border-radius: 15px;
  }

  .service-flow .sf-header {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
    position: relative;
  }

  /* Header top row: Title left, Illustration right */
  .service-flow .sf-header-content {
    margin-top: 100px;
    margin-bottom: 0;
    text-align: left;
    width: 38%;
    display: inline-block;
    vertical-align: top;
    padding-right: 40px;
  }

  .service-flow .sf-illustration {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    max-width: 550px;
    margin: 0;
    min-height: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    z-index: 0; /* Positioned below the flow items */
  }

  .service-flow .sf-illustration-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
  }

  .service-flow .sf-label {
    font-size: 22.5px;
    color: var(--title-small);
    letter-spacing: 2.7px;
    margin-bottom: 10px;
    text-align: left;
  }

  .service-flow .sf-title {
    font-size: 45px;
    margin-bottom: 0;
    text-align: left;
  }

  /* Buttons below the illustration and centered */
  .service-flow .sf-buttons {
    flex-direction: row;
    justify-content: center;
    padding: 0 10px;
    margin-bottom: 20px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    align-items: center;
    position: relative;
    clear: both;
  }

  .service-flow .sf-btn {
    padding: 16px 35px;
    font-size: 18.75px;
    letter-spacing: normal;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-block;
  }

  .service-flow .sf-flows {
    padding: 0;
    position: relative;
    gap: 20px;
    z-index: 1;
  }

  .service-flow .sf-flow-item {
    flex-direction: row;
    background-color: #fff;
    align-items: center;
    padding: 25px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
  }

  .service-flow .sf-flow-number {
    flex-direction: row;
    align-items: baseline;
    min-width: 160px;
  }

  .service-flow .sf-flow-label {
    font-size: 18px;
    color: var(--title-small);
  }

  .service-flow .sf-flow-num {
    font-size: 50px;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: normal;
  }

  .service-flow .sf-flow-title {
    font-size: 34px;
    letter-spacing: normal;
    margin: 0;
    flex: 1;
    width: auto;
    text-align: left;
  }

  .service-flow .sf-flow-description {
    flex: 1;
    max-width: 400px;
    margin-top: 0;
    padding-left: 40px;
    text-align: left;
  }

  .service-flow .sf-flow-description p {
    font-size: 21px;
  }

  .service-flow .sf-header {
    align-items: flex-start;
  }
}
/* ---------------- Service Flow End---------------- */

/* ---------------- Home Care FAQ Start---------------- */

@media screen and (min-width: 960px) {
  .home-care-faq-desktop {
    display: block !important;
  }
  .home-care-faq-mobile {
    display: none;
  }
}

.home-care-faq {
  background-color: var(--bg-root);
  padding: 50px 0;
}

/* Mobile Version */

.home-care-faq-mobile-header {
  margin: 50px auto;
}

.home-care-faq-mobile-header .home-care-faq-mobile-header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.home-care-faq-mobile-header-top .home-care-faq-mobile-cloud-icon,
.home-care-faq-mobile-header-top .home-care-faq-mobile-cloud-icon {
  width: 80px;
  height: auto;
}

.home-care-faq-mobile-header-left .home-care-faq-mobile-cloud-icon {
  width: 120px;
  height: auto;
  transform: translateY(-25px);
}

.home-care-faq-mobile-header-top .home-care-faq-mobile-header-left {
  width: 60%;
}

.home-care-faq-mobile-header-center {
  text-align: center;
}

.home-care-faq-mobile-header-center .home-care-faq-mobile-label {
  font-size: 12px;
  color: var(--title-small);
  letter-spacing: 2.85px;
}

.home-care-faq-mobile-header-center .home-care-faq-mobile-title {
  font-size: 22px;
  color: var(--text);
}

.home-care-faq-mobile-content{
  border-radius:10px;
  width: 90%;
  margin: 50px auto;
}

.faq-mobile-accordion{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0;
}

.faq-mobile-accordion-item{
  position:relative;
  background:#fff;
  border:1px solid #e7ebf0;
  border-radius:8px;
  overflow:hidden;
  transition:box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.faq-mobile-accordion-item .faq-answer a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

.faq-mobile-accordion-item:hover{
  border-color:#d7dde5;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}

.faq-mobile-accordion-item .faq-question{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;   
  font-size: 16px;
  padding: 12px 46px 12px 16px;
}

.faq-mobile-accordion-item .faq-question::after{
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text);
  pointer-events: none;
}

.faq-mobile-accordion-item.open .faq-question::after{
  content: "-";
}

.faq-mobile-accordion-item .faq-answer{
  display: none;
  padding: 16px 46px 16px 16px;
  border-top: 1px solid #eef2f6;
  color: var(--text);
  line-height: 1.9;
  font-size: 14px;
  background: #fff;
}

.faq-mobile-accordion-item.faq-mobile-accordion-item.open .faq-answer{ display:block; }

/* Desktop Version */

.home-care-faq-desktop {
  display: none;
}

.home-care-faq-desktop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
  margin: 60px 0 0 0;
}

.home-care-faq-desktop-header .home-care-faq-desktop-header-left,
.home-care-faq-desktop-header .home-care-faq-desktop-header-right {
  width: 25%;
  display: flex;
  justify-content: center;
}

.home-care-faq-desktop-header .home-care-faq-desktop-header-center {
  width: 50%;
  text-align: center;
}

.home-care-faq-desktop-header .home-care-faq-desktop-cloud-icon {
  width: 160px;
  height: auto;
}

.home-care-faq-desktop-header-left .home-care-faq-desktop-cloud-icon {
  width: 240px;
  transform: translateY(-140px);
  margin-left: 16px;
}

.home-care-faq-desktop-header-right .home-care-faq-desktop-cloud-icon {
  width: 160px;
  transform: translateY(10px);
}

.home-care-faq-desktop-header .home-care-faq-desktop-label {
  font-size: 29.01px;
  letter-spacing: 3.5px;
  color: var(--title-small);
  margin-bottom: 12px;
}

.home-care-faq-desktop-header .home-care-faq-desktop-title {
  font-size: 58px;
  color: var(--text);
  letter-spacing: normal;
}

.home-care-faq-desktop-content{
  border-radius:10px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.faq-desktop-accordion{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:0;
}

.faq-desktop-accordion-item{
  position:relative;
  background:#fff;
  border:1px solid #e7ebf0;
  border-radius:8px;
  overflow:hidden;
  transition:box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.faq-desktop-accordion-item .faq-answer a {
  text-decoration: none;
  color: var(--text);
  font-size: 22px;
}

.faq-desktop-accordion-item:hover{
  border-color:#d7dde5;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}

.faq-desktop-accordion-item .faq-question{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;   
  font-size: 24px;
  padding: 12px 46px 12px 16px;
  cursor: pointer;
}

.faq-desktop-accordion-item .faq-question::after{
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--text);
  pointer-events: none;
}

.faq-desktop-accordion-item.open .faq-question::after{
  content: "-";
}

.faq-desktop-accordion-item .faq-answer{
  display: none;
  padding: 16px 46px 16px 16px;
  border-top: 1px solid #eef2f6;
  color: var(--text);
  line-height: 1.9;
  font-size: 22px;
  background: #fff;
}

.faq-desktop-accordion-item.open .faq-answer{ display:block; }



/* ---------------- Home Care FAQ End---------------- */

/* ---------------- Message Start---------------- */

@media screen and (min-width: 960px) {
  .message-desktop {
    display: block !important;
  }
  .message-mobile {
    display: none;
  }
}

.message {
  background-color: var(--bg-root);
  padding: 1px 0;
}

/* Mobile Version */
.message-mobile {
  margin: 0 auto;
  padding: 60px 32px 100px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: url('../img/message/message-background-sp.png') no-repeat center center;
  background-size: cover;
  background-position: right 50% bottom 0
}

.message-mobile-header {
  text-align: center;
  margin-bottom: 25px;
}

.message-mobile .message-label {
  font-size: 12px;
  letter-spacing: 2.85px;
  color: var(--title-small);
  margin-bottom: 10px;
}

.message-mobile .message-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 32px;
}

.message-mobile .message-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.message-mobile .message-text p {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 24px;
}

.message-mobile .message-side p {
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.95;
  margin-bottom: 28px;
}

.message-mobile .message-sign {
  font-size: 18px;
  color: #ffffff;
  margin-top: 8px;
  text-align: left;
}

.message-mobile::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: url('../img/message/message-person.png') no-repeat bottom right;
  background-size: 200px auto;
  pointer-events: none;
}



/* Desktop Version */

.message-desktop {
  max-width: 1440px;
  margin: 0 auto;
  padding: 83px 80px 40px;
  border-radius: 22px;
  display: none;
  position: relative;
  overflow: hidden;
  background: url('../img/message/message-background.png') no-repeat center center;
  background-size: cover;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.message-desktop .message-label {
  font-size: 23px;
  letter-spacing: 2.85px;
  color: var(--title-small);
  margin-bottom: 14px;
}

.message-desktop .message-title {
  font-size: 47.47px;
  color: #ffffff;
  margin-bottom: 36px;
}

.message-desktop .message-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
}

.message-desktop .message-text {
  width: 44%;
}

.message-desktop .message-text p {
  color: rgba(255,255,255,.92);
  font-size: 22.15px;
  margin-bottom: 22px;
}

.message-desktop .message-side {
  width: 56%;
  position: relative;
  padding-top: 6px;
  padding-right: 160px;
}

.message-desktop .message-side p {
  color: rgba(255,255,255,.92);
  font-size: 22.15px;
  margin-bottom: 26px;
}

.message-desktop .message-sign {
  font-size: 22.15px;
  color: #ffffff;
  margin-top: 24px;
  margin-left: 30px;
  letter-spacing: normal;
}

.message-desktop .message-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  pointer-events: none;
}

.message-desktop .message-photo img {
  width: 100%;
  display: block;
  object-fit: contain;
}
/* ---------------- Message End---------------- */

/* ---------------- Our Services Start---------------- */

@media screen and (min-width: 960px) {
  .os-container-desktop {
    display: block !important;
  }

  .os-container-mobile {
    display: none !important;
  }
}

.our-services {
  background-color: var(--bg-root);
  padding: 1px 0px;
}

/* Mobile Version */

.os-container-mobile {
  background-color: #93C6FF;
  padding: 20px;
}

.os-header-mobile {
  text-align: center;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 3px 14px;
}

.os-header-mobile-title .os-header-mobile-title-label {
  font-size: 12px;
  letter-spacing: 2.8px;
  color: var(--title-small);
}

.os-header-mobile-title .os-header-mobile-title-title {
  font-size: 22px;
  color: var(--text);
}

.os-header-mobile-content .os-header-mobile-content-text {
  font-size: 14px;
  color: var(--text);
}

.os-body-mobile-item {
  margin: 20px 0;
  padding: 20px;
}

.os-body-mobile-item-content .os-body-mobile-item-title {
  font-size: 24px;
  color: var(--text);
}

.os-body-mobile-item-content .os-body-mobile-item-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.os-body-mobile-item {
  width: 100%;
  border-radius: 14px;
}

.os-body-mobile-item-content {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 12 / 9;
}

.os-body-mobile-item-content .os-body-mobile-item-title {
  font-size: 25px;
  color: var(--text);
  margin-bottom: 14px;
}

.os-body-mobile-item-content .os-body-mobile-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.os-body-mobile-item-content .os-body-mobile-item-icon {
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: 23%;
  height: auto;
  z-index: 1;
  display: inline-block;
}

.os-body-mobile-item-content .os-body-mobile-item-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.os-body-mobile-item .os-body-mobile-item-text {
  font-size: 14px;
  color: white;
  text-align: right;
  margin: 10px 0 0 0;
}

.os-body-mobile-item .os-body-mobile-item-text-2 {
  font-size: 14px;
  color: white;
  text-align: right;
  margin: 0;
  margin-top: 4px;
}

/* Desktop Version */

.os-container-desktop {
  max-width: 1440px;
  margin: 100px auto;
  background-color: #93C6FF;
  padding: 26px;
  border-radius: 20px;
  display: none;
}

.os-container-desktop .os-header-desktop {
  background-color: #fff;
  padding: 25px 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.os-container-desktop .os-header-desktop .os-header-left-desktop {
  margin-right: 10px;
}

.os-container-desktop .os-header-desktop .os-header-left-desktop .os-header-left-desktop-label {
  font-size: 23.740px; 
  letter-spacing: 2.85px;
  color: var(--title-small);
}

.os-container-desktop .os-header-desktop .os-header-left-desktop .os-header-left-desktop-title {
  font-size: 47.47px;
  color: var(--text);
}

.os-container-desktop .os-header-desktop .h-divider-desktop {
  width: 2px;
  height: 120px;
  background: var(--text);
  margin: 0 40px;
}

.os-container-desktop .os-header-desktop .os-header-right-desktop p {
  font-size: 21.05px;
  color: var(--text);
}

.os-container-desktop .os-header-desktop .os-header-right-desktop {
  margin-left: 30px;
}

.os-body-desktop-1 {
  display: flex;
  flex-direction: row;
  margin: 40px 0;
}

.os-body-desktop-2 {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  gap: 20px;
}

.os-body-desktop-item {
  border-radius: 10px;
}

.os-body-desktop-item-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(89, 155, 255, 0.644),
    rgba(255, 255, 255, 0)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

#os-body-desktop-item-content-down::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 90, 224, 0.644) 1%,
    rgba(255, 255, 255, 0)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

#os-body-desktop-item-content-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 90, 224, 0.644) 1%,
    rgba(255, 255, 255, 0)
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.os-body-desktop-item .os-body-desktop-item-content {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-title-vertical {
  position: absolute;
  left: 10px;
  top: 10px;
  writing-mode: vertical-rl;
  font-size: 39.56px;
  color: white;
  z-index: 1;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-title-vertical-lf {
  position: absolute;
  right: 10px;
  top: 10px;
  writing-mode: vertical-rl;
  font-size: 39.56px;
  color: white;
  z-index: 1;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-title-vertical-rb {
  position: absolute;
  right: 10px;
  text-align: end;
  bottom: 0px;
  font-size: 39.56px;
  max-width: 200px;
  line-height: 50px;
  margin: 12px;
  color: white;
  z-index: 1;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-title-horizontal {
  position: absolute;
  left: 10px;
  bottom: 0px;
  display: flex;
  font-size: 39.56px;
  color: white;
  margin: 12px;
  z-index: 1;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-icon {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 90px;
  height: auto;
  margin: 12px;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-icon-horizontal {
  position: absolute;
  right: 10px;
  bottom: 0px;
  width: 90px;
  height: auto;
  margin: 22px;
  z-index: 1;
  display: inline-block;
  text-decoration: none;
}

.os-body-desktop-item .os-body-desktop-item-content .os-body-desktop-item-content-text {
  font-size: 22.15px;
  color: var(--text);
}

.os-body-desktop-1 .os-body-block {
  width: 2px;
  height: 100%;
  margin: 0 30px;
}

/* ---------------- Our Services End---------------- */

/* Case study start */

@media screen and (min-width: 960px) {
  .cs-desktop {
    display: block !important;
  }

  .cs-mobile {
    display: none !important;
  }
}

.case-study {
  background-color: var(--bg-root);
  padding: 1px 0 40px 0;
}

/* Mobile Version */

.cs-mobile {
  position: relative;
}

.cs-mobile-bg {
  position: relative;
  z-index: 0;
}

.cs-mobile .cloud, .cs-mobile .cs-mobile-img {
  width: 100px;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.cs-mobile .cloud-top-right {
  width: 100px;
  height: auto;
  object-fit: cover;
}

.cs-mobile .cs-mobile-bg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px auto 0;
  max-width: 400px;
  padding: 0 20px;
}

.cs-mobile-bg .cs-mobile-bg-right {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top: 30px;
}

.cs-mobile-bg .cs-mobile-bg-right .cs-mobile-img {
  width: 150px;
  margin-top: 30px;
}

.cs-mobile .cs-mobile-bg-left {
  width: 50%;
}

.cs-mobile-bg .cs-mobile-header {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80px;
  width: 100%;
  text-align: center;
}

.cs-mobile-bg .cs-mobile-header .case-study-label {
  font-size: 12px;
  color: var(--title-small);
}

.cs-mobile-bg .cs-mobile-header .case-study-title {
  font-size: 22px;
  color: var(--text);
}

.case-study-mobile-item {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 20px 20px;
  background-color: #0C82C9;
  padding: 25px;
  border-radius: 10px;
}

.case-study-mobile-item .case-study-mobile-item-title {
  font-size: 16px;
  color: white;
}

.case-study-mobile-item .case-study-mobile-cloud-icon {
  width: 60px;
  height: auto;
  object-fit: cover;
  display: inline-block;
  text-decoration: none;
}

.case-study-mobile-content {
  position: relative;
  z-index: 1;
  margin-top: -46px;
}

.case-study-mobile-content .case-study-mobile-list {
  position: relative; 
  z-index: 3;
}

.cs-mobile .case-study-more {
  text-align: center;
  margin-top: 40px;
}

.cs-mobile .case-study-more .more-btn {
  background-color: #0C82C9;
  color: white;
  padding: 16px 50px;
  font-size: 15px;
  border-radius: 50px;
  transition: background-color 0.3s;
  display: inline-block;
  text-decoration: none;
}

.cs-mobile .case-study-more .more-btn:hover {
  background: #0970a8;
}

/* Desktop Version */

.cs-desktop {
  max-width: 1440px;
  margin: 100px auto;
  padding: 26px;
  display: none;
}

.cs-desktop-header {
  margin-bottom: 40px;
}

.cs-desktop-header-bg {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}

.cs-desktop-header-bg .cloud {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.cs-desktop-header-bg .cloud-top-right {
  width: 180px;
  margin-top: 30px;
}

.cs-desktop-header-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 50%;
  margin: 40px 0;
}

.cs-desktop-header-content .cloud {
  width: 300px;
  height: auto;
  object-fit: cover;
}

.cs-desktop-header-content-item .cs-desktop-header-content-item-label {
  font-size: 25px;
  color: var(--title-small);
  letter-spacing: 3px;
}

.cs-desktop-header-content-item .cs-desktop-header-content-item-title {
  font-size: 50px;
  color: var(--text);
  letter-spacing: normal;
}

.case-study-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-list .block {
  width: 2px;
  height: 100%;
  background: var(--text);
  margin: 0 30px;
}

.cs-list-left, .cs-list-right {
  width: 50%;
}

.cs-list-left .case-study-item {
  background-color: #0C82C9;
  display: flex;
  padding: 25px;
  border-radius: 10px;
  margin: 40px 0;
  justify-content: space-between;
  align-items: end;
}

.case-study-item .case-study-cloud-icon {
  width: 80px;
  height: auto; 
  object-fit: cover;
  display: inline-block;
  text-decoration: none;
}

.case-study-item .case-study-item-title {
  font-size: 33.31px;
  color: white;
  letter-spacing: normal;
}

.cs-list-left .cloud {
  width: 300px;
  height: auto;
  object-fit: cover;
  margin-left: 200px;
}

.cs-list-right .case-study-item {
  background-color: #0C82C9;
  display: flex;
  padding: 25px;
  border-radius: 10px;
  margin: 40px 0;
  justify-content: space-between;
  align-items: end;
}

.case-study-item .case-study-cloud-icon {
  width: 80px;
  height: auto; 
  object-fit: cover;
}

.case-study-item .case-study-item-title {
  font-size: 33.31px;
  color: white;
  letter-spacing: normal;
}

.cs-list-right {
  position: relative;
  z-index: 1;
}

.cs-list-right .cs-list-right-img {
  width: 400px;
  position: absolute;
  height: auto;
  top: -335px;
  object-fit: cover;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.cs-list-right .cs-list-right-content {
  position: relative;
  z-index: 1;
}

.case-study-more {
  text-align: center;
  margin-top: 40px;
}

.case-study-more .more-btn {
  background-color: #0C82C9;
  color: white;
  padding: 10px 20px;
  font-size: 20.82px;
  border-radius: 50px;
  border: solid 3px #8ED0F7;
  cursor: pointer;
  transition: background-color 0.3s;
  display: inline-block;
  text-decoration: none;
}

.case-study-more .more-btn:hover {
  background: #0970a8;
}
/* Case study end */

/* Recruit section start */

@media screen and (min-width: 960px) {
  .recruit-desktop {
    display: block !important;
  }

  .recruit-mobile {
    display: none !important;
  }
}

/* Mobile Version */
.recruit-mobile {
  background-color: var(--bg-root);
  margin: 0 auto;
}

.recruit-mobile-content {
  background: url('../img/recruit/recruit-background.png') no-repeat center center;
  border-radius: 20px;
  background-size: cover;
  padding: 26px;
}

.recruit-mobile-content-header {
  text-align: center;
}

.recruit-mobile-content-header .recruit-mobile-label {
  font-size: 12px;
  color: #fff;
  letter-spacing: 2.85px;
  margin-bottom: 8px;
}

.recruit-mobile-content-header .recruit-mobile-title {
  font-size: 22px;
  color: #fff;
}

.recruit-mobile-content-item {
  display: flex;
  align-items: end;
  justify-content: space-around;
}

.recruit-mobile-content-item-left .recruit-mobile-catch {
  font-size: 18px;
  color: #fff;
}

.recruit-mobile-content-item-left .recruit-mobile-catch-sub {
  font-size: 18px;
  color: #fff;
  margin-left: 20px;
}

.recruit-mobile-content-item .recruit-mobile-content-item-img {
  width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 200px;
}

.recruit-mobile-content-item-2 {
  display: flex;
  align-items: end;
  justify-content: space-around;
  margin: 20px 0;
}

.recruit-mobile-content-item-2 .recruit-mobile-photo-wrap-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.recruit-mobile-content-item-2 .recruit-mobile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-mobile-content-item-2 .recruit-mobile-photo-wrap-2 {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 16px;
}

.recruit-mobile-content .recruit-mobile-footer-text {
  text-align: center;
  font-size: 14px;
  color: var(--title-small);
  margin: 70px 0 0 0;
}

.recruit-mobile-content-item-2-logo {
  text-align: center;
  margin: 20px 0;
}

.recruit-mobile-content-item-2-logo .recruit-mobile-content-item-2-logo-entry {
  width: 120px;
  height: auto;
  text-align: center;
  object-fit: cover;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
}

.recruit-mobile-content-item-2-logo .recruit-mobile-content-item-2-logo-entry img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-mobile-cloud,
.recruit-desktop-cloud {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.recruit-mobile-content {
  position: relative;
}

.recruit-mobile-content .recruit-mobile-cloud-1 {
  position: absolute;
  top: 55%;
  left: 10%;
}
.recruit-mobile-cloud-1 {
  position: relative;
}

.recruit-mobile-content .recruit-mobile-cloud-text {
  font-size: 14px;
  color: var(--title-small);
  position: absolute;
  width: 125px;
  margin-top: 5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.recruit-mobile-content .recruit-mobile-cloud-2 {
  position: absolute;
  top: 28%;
  right: 4%;
}

.recruit-mobile-cloud-2 {
  position: relative;
}

.recruit-mobile-content .recruit-mobile-cloud-2 .recruit-mobile-cloud-text {
  font-size: 14px;
  color: var(--title-small);
  
}

.recruit-mobile-content .recruit-mobile-cloud-1 .recruit-mobile-cloud-icon {
  width: 170px;
}

.recruit-mobile-content .recruit-mobile-cloud-2 .recruit-mobile-cloud-icon {
  width: 140px;
}

/* Desktop Version */

.recruit-desktop {
  background-color: var(--bg-root);
  margin: 0 auto;
  padding: 26px;
  display: none;
}

.recruit-desktop-content {
  background: url('../img/recruit/recruit-background.png') no-repeat center center;
  background-size: cover;
  padding: 26px 56px;
  max-width: 1440px;
  border-radius: 20px;
  margin: 0 auto 100px auto;
}

.recruit-desktop-content .recruit-desktop-label {
  font-size: 23.74px;
  color: #fff;
  letter-spacing: 2.85px;
  margin-bottom: 14px;
}

.recruit-desktop-content .recruit-desktop-title {
  font-size: 47.47px;
  color: #fff;
}

.recruit-desktop-content-item {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.recruit-desktop-content-item .recruit-desktop-catch {
  font-size: 55.38px;
  color: #fff;
  margin: 40px 0 0 46px;
}

.recruit-desktop-content-item .recruit-desktop-catch-sub {
  font-size: 55.38px;
  color: #fff;
  margin: 0 0 0 90px;
}

.recruit-desktop-content-item .recruit-desktop-content-item-img {
  width: 26%;
  height: auto;
  object-fit: cover;
  border-radius: 200px;
}

.recruit-desktop-content-item-2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 0 50px 30px 50px;
}

.recruit-desktop-content-item-2 .recruit-photo-wrap-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.recruit-desktop-content-item-2 .recruit-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-desktop-content-item-2 .recruit-photo-wrap-2 {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 70px;
  margin-top: 50px;
}

.recruit-desktop-content-item-2 .recruit-desktop-content-item-2-logo {
  width: 30%;
  margin-bottom: 70px;
}

.recruit-desktop-content-item-2 .recruit-desktop-content-item-2-logo .recruit-desktop-content-item-2-logo-1 {
  width: 290px;
  height: auto;
  object-fit: cover;
}

.recruit-desktop-content-item-2 .recruit-desktop-content-item-2-logo .recruit-desktop-content-item-2-logo-2 {
  width: 290px;
  height: auto;
  object-fit: cover;
  display: inline-block;
  text-decoration: none;
}

.recruit-desktop-content-item-2 .recruit-desktop-content-item-2-logo .recruit-desktop-content-item-2-logo-2 img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-desktop-content .recruit-desktop-footer-text {
  text-align: center;
  font-size: 39.56px;
  color: var(--title-small);
}

.recruit-desktop-content {
  position: relative;
}

.recruit-desktop-content .recruit-desktop-cloud-1 {
  position: absolute;
  top: 52%;
  left: 10%;
}
.recruit-desktop-cloud-1 {
  position: relative;
}

.recruit-desktop-content .recruit-desktop-cloud-text {
  font-size: 26.7px;
  color: var(--title-small);
  position: absolute;
  width: 293px;
  margin-top: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.recruit-desktop-content .recruit-desktop-cloud-2 {
  position: absolute;
  top: 17%;
  right: 21%;
}

.recruit-desktop-cloud-2 {
  position: relative;
}

.recruit-desktop-content .recruit-desktop-cloud-2 .recruit-desktop-cloud-text {
  font-size: 26.7px;
  color: var(--title-small);
  
}

.recruit-desktop-content .recruit-desktop-cloud-1 .recruit-desktop-cloud-icon {
  width: 320px;
}

.recruit-desktop-content .recruit-desktop-cloud-2 .recruit-desktop-cloud-icon {
  width: 260px;
}


/* ---------------- Recruit section end---------------- */

/* ---------------- Blog Start---------------- */
@media screen and (min-width: 960px) {
  .blog-desktop {
    display: block !important;
  }

  .blog-mobile {
    display: none;
  }
}

.blog {
  background-color: var(--bg-root);
  padding: 1px 0;
}

/* Mobile Version */
.blog-mobile {
  margin: 20px auto;
  padding: 26px;
  border-radius: 20px;
}

.blog-mobile-side {
  text-align: center;
}

.blog-mobile-side .blog-mobile-label {
  font-size: 12px;
  color: var(--title-small);
  letter-spacing: 2.85px;
}

.blog-mobile-side .blog-mobile-title {
  font-size: 22px;
  color: var(--text);
  letter-spacing: normal;
}

.blog-mobile-item {
  margin: 20px 0;
  border: dashed 1px #777777;
  padding: 25px;
  border-radius: 10px;
}

.blog-mobile-item-link {
  text-decoration: none;
  color: var(--text);
  text-align: center;
}

.blog-mobile-thumb {
  margin: 0 0 20px 0;
}

.blog-mobile-thumb .blog-mobile-thumb-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  max-width: 400px;
}

.blog-mobile-meta {
  margin-bottom: 20px;
}

.blog-mobile-meta .blog-mobile-date {
  font-size: 14px;
  color: #9ea2aa;
}

.blog-mobile-meta .blog-mobile-category {
  font-size: 14px;
  color: #9ea2aa;
}

.blog-mobile-item-link .blog-mobile-item-title {
  font-size: 18px;
  color: var(--text);
  letter-spacing: normal;
}

.blog-mobile-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  text-decoration: none;
  color: inherit;
}

.blog-mobile-more .blog-mobile-more-icon {
  width: 70px;
  height: auto;
  object-fit: cover;
  margin-right: 20px;
}

.blog-mobile-more .blog-mobile-more-text {
  font-size: 17px;
  color: var(--title-small);
  letter-spacing: 2.85px;
}

/* Desktop Version */
.blog-desktop {
  display: none;
  max-width: 1440px;
  margin: 100px auto;
  padding: 26px;
  border-radius: 20px;
}

.blog-desktop-container {
  display: flex;
  justify-content: space-between;
}

.blog-desktop-side {
  display: flex;
  align-items: end;
  margin-right: 20px;
  margin-bottom: 80px;
}

.blog-desktop-side .blog-label {
  font-size: 25.23px;
  letter-spacing: 3px;
  color: var(--title-small);
}

.blog-desktop-side .blog-title {
  font-size: 50.45px;
  color: var(--text);
  letter-spacing: normal;
}

.blog-desktop-cloud-icon .blog-desktop-cloud-icon-img {
  width: 120px;
  height: auto;
  object-fit: cover;
}

.blog-desktop-more {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.blog-desktop-more .blog-desktop-more-icon {
  width: 100px;
  height: auto;
  object-fit: cover;
  margin-right: 20px;
}

.blog-desktop-more .blog-desktop-more-text {
  font-size: 25.23px;
  color: var(--title-small);
  letter-spacing: 3px;
}

.blog-desktop-item {
  border: dashed 1px #777777;
  padding: 20px;
  border-radius: 10px;
  margin: 0 20px;
}

.blog-desktop-item {
  margin: 20px 0;
}

.blog-desktop-item-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.blog-desktop-thumb {
  margin-right: 20px;
}

.blog-desktop-thumb .blog-desktop-thumb-img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.blog-desktop-meta .blog-desktop-category {
  font-size: 23.55px;
  color: #9ea2aa;
}

.blog-desktop-item-title {
  font-size: 29.43px;
  color: var(--text);
  letter-spacing: normal;
}

.blog-desktop-cloud-icon {
  margin-left: 70px;
}

/* ---------------- Blog End---------------- */

/* ---------------- Footer Start---------------- */
/* Mobile view: show footer-sp and hide footer-pc */
.footer-pc {
  display: none;
}

.footer-sp {
  display: block;
}

/* Desktop view: min-width 960px */
@media screen and (min-width: 960px) {
  .footer-pc {
    display: block !important;
  }

  .footer-sp {
    display: none !important;
  }
}

/* Footer PC Version */
.footer-pc {
  background-color: #0C82C9;
  color: #ffffff;
  padding: 40px 40px 10px;
  border-radius: 20px 20px 0 0;
}

.footer-pc .footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-pc .footer-offices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-pc .footer-office {
  flex: 1;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}

.footer-pc .footer-office-header {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 20px;
}

.footer-pc .footer-logo {
  width: 480px;
  height: auto;
  flex-shrink: 0;
}

.footer-pc .footer-office-name-wrapper {
  flex: 1;
}

.footer-pc .footer-office-name {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.footer-pc .footer-office-name strong {
  font-size: 24px;
  font-weight: bold;
}

.footer-pc .footer-office-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-pc .footer-info-item {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.footer-pc .footer-info-label {
  color: #ffffff;
  font-size: 22.5px;
  letter-spacing: normal;
}

.footer-pc .footer-info-highlight {
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  font-size: 18.75px;
  letter-spacing: normal;
}

.footer-pc .footer-phone {
  color: #ffffff;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: normal;
}

.footer-pc .footer-divider {
  width: 2px;
  background-color: #ffffff;
  align-self: stretch;
  min-height: 200px;
  margin: 0 20px;
}

.footer-pc .footer-company {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 30px;
}

.footer-pc .footer-company-name {
  color: #ffffff;
  font-size: 37.5px;
  letter-spacing: normal;
}

.footer-pc .footer-company-address {
  color: #ffffff;
  font-size: 26.25px;
  letter-spacing: normal;
}

.footer-pc .footer-buttons {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0 30px;
}

.footer-pc .footer-btn {
  background-color: #ffffff;
  color: #0C82C9;
  padding: 14px 80px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: normal;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.footer-pc .footer-btn:hover {
  background-color: #f0f0f0;
}

.footer-pc .footer-copyright {
  text-align: center;
  color: #ffffff;
  font-size: 12px;
  margin-top: 20px;
  padding-top: 20px;
}

/* Footer SP Version */
.footer-sp {
  background-color: #0C82C9;
  color: #ffffff;
  padding: 40px 40px 10px;
  border-radius: 20px 20px 0 0;
}

.footer-sp .footer-inner {
  max-width: 100%;
  margin: 0 auto;
}

.footer-sp .footer-office-section {
  margin-bottom: 30px;
}

.footer-sp .footer-office-header-sp {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-sp .footer-office-title-sp {
  flex: 1;
}

.footer-sp .footer-office-name-sp {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.footer-sp .footer-logo-sp {
  width: 300px;
  height: auto;
  flex-shrink: 0;
}

.footer-sp .footer-office-info-sp {
  margin-top: 10px;
}

.footer-sp .footer-info-item-sp {
  color: #ffffff;
  font-size: 12.5px;
  line-height: 1.8;
  margin: 6px 0;
  letter-spacing: normal;
  text-align: center;
}

.footer-sp .footer-info-label-sp {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: normal;
}

.footer-sp .footer-info-highlight {
  color: #ffffff;
  font-size: 12.5px;
  letter-spacing: normal;
}

.footer-sp .footer-phone-sp {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: normal;
  text-align: center;
}

.footer-sp .footer-company-sp {
  text-align: center;
  margin: 30px 0 30px;
}

.footer-sp .footer-company-name-sp {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: normal;
}

.footer-sp .footer-company-address-sp {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: normal;
}

.footer-sp .footer-buttons-sp {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.footer-sp .footer-btn-sp {
  background-color: #ffffff;
  color: var(--title-small);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 17.5px;
  letter-spacing: normal;
  text-align: center;
  transition: background-color 0.3s;
  width: 70%;
}

.footer-sp .footer-btn-sp:hover {
  background-color: #f0f0f0;
}

.footer-sp .footer-copyright-sp {
  text-align: center;
  margin-top: 30px;
}

.footer-sp .footer-copyright-text {
  font-size: 10px;
  margin: 3px 0;
}

.footer-sp .footer-copyright-content {
  color: #ffffff;
  font-size: 11px;
}
/* ---------------- Footer End---------------- */