@charset "utf-8";

/* ==========================================================================
   store-dx
   ========================================================================== */
   .sub-main-visual {
    position: relative;
    width: 100%;
    min-height: 460px;
    padding: 135px 0 65px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(to left, #00D93E 0%, #0BFF64 33%, #3FFBD6 100%);
  }
  
  .sub-mv-visual {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: calc(50% + 165px); 
    z-index: 1;
    pointer-events: none;
  }
  
  .sub-mv-visual img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center center;
  }
  
  .sub-mv-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
  }
  
  .sub-mv-white-card {
    background-color: #ffffff;
    border-radius: 40px; 
    padding: 80px;
    width: 100%;
    max-width: 870px; 
    text-align: left;
  }
  
  .sub-mv-title {
    margin-bottom: 50px;
  }
  
  .sub-mv-lead {
    color: #646464;
  }
.sub-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 5;
  }
  
  .business-inner-section {
    width: 100%;
    padding: 100px 0 0;
    position: relative;
  }
  
  .business-catch-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
  }
  
  .business-catch-left {
    flex: 1;
  }
  
  .business-catch-phrase {
    color: #009944;
    margin: 0;
  }
  
  .business-catch-right {
    flex: 1.2;
  }
  
  .business-catch-desc {
    margin: 0;
  }
  
  .dx-service-header {
    text-align: center;
  background-color: #f5f5f5; 
  border-radius: 40px 40px 0 0; 
  padding: 40px 0 0; 
  margin-bottom: 0; 
  position: relative;
  }
  .partner-section .dx-service-header {
  background-color: #F0FFFC; 
  }
  
  .dx-service-main-title {
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
  }
  .dx-service-sub-title {
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1;
  }  
  .dx-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
    background-image: url("/asset/img/common/list_bg.webp");
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: center top;
    padding: 60px 0 120px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
  .partner-section .dx-service-grid {
    background-image: url("/asset/img/common/list_bg_p.webp");
  }

  .service-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
  }

  .js-link-card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .js-link-card:hover {
    transform: translateY(-5px);
  }
  .js-link-card .btn-card-detail::before,
  .js-link-card .btn-other-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }

  .card-inner {
    padding: 50px 40px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-card:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, #0BFF64 0%, #07993C 100%);
  }
  .partner-section .service-card:nth-child(odd)::before {
    background: linear-gradient(90deg, #49BBF4 0%, #8BE8FF 100%);
  }
  .service-card:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, #3FFBD6 0%, #0BFF64 100%);
  }
  .partner-section .service-card:nth-child(even)::before {
    background: linear-gradient(90deg, #3FFBD6 0%, #8BE8FF 100%);
  }
  
  .card-title {
    margin: 0 0 30px;
    width: 100%;
    text-align: center;
  }
  
  .card-img-box {
    width: 100%;
    aspect-ratio: 2 / 1;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .card-lead {
    color: #009944;
    margin: 0 0 15px 0;
    line-height: 1.7;
  }

  .card-text {
    margin: 0 0 30px 0;
    text-align: justify;
    line-height: 1.6;
  }
  
  .card-link-area {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  
  .btn-card-detail {
    color: #009944;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.2s ease;
    line-height: 1.3;
  }

  .btn-card-detail::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-left: 10px;
    background-image: url("/asset/img/common/arrow_g2.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

.dx-support-section {
  width: 100%;
  padding: 0 0 140px;
  position: relative;
  background-color: #f5f5f5;
}
.dx-support-section.pa-support-section {
  background-color: #F0FFFC;
}

.support-bg-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(50% + 600px);
  height: 770px;
  background: linear-gradient(to left, #00D93E 0%, #0BFF64 43%, #3FFBD6 100%);
  border-radius: 0 0 0 35px;
  z-index: 1;
  pointer-events: none;
  margin: 0 0 80px;
}

.sub-support-container {
  width: calc(50% + 600px);
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 5;
  border-radius: 0 35px 35px 0;
  background-color: #ffffff;
  background-image: url("/asset/img/store-dx/support_bg.webp");
  background-position: right bottom;
  background-size: 1465px auto;
  background-repeat: no-repeat;
}

.support-white-card {
  padding: 70px 50px;
  max-width: 1200px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

.support-main-title {
  margin: 0 0 50px;
}

.support-service-tags-block {
  text-align: left;
  margin: 0 0 60px;
}

.support-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0 0 15px 0;
  padding: 0;
  list-style: none;
  font-size: 24px;
  line-height: 1;
}

.support-tag-list li {
  background: linear-gradient(to left, 
    rgba(0, 217, 62, 0.1) 0%, 
    rgba(11, 255, 100, 0.1) 43%, 
    rgba(63, 251, 214, 0.1) 100%
  );
  line-height: 2;
  padding: 0 30px;
  white-space: nowrap;
}

.support-tag-note {
  margin: 0;
  line-height: 1.3;
}

.support-info-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  width: 100%;
}

.support-info-left {
  flex: 1.2;
  display: flex;
  justify-content: flex-start;
  position: relative;
  background-image: url("/asset/img/store-dx/store-dx-map.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 615px auto;
  padding: 0 100px 250px 0;
}

.support-kyoten-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

.kyoten-tag {
  display: inline-block;
  background-color: #009944;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  border-radius: 10px;
  margin: 0 0 10px 50px;
  width: 180px;
  text-align: center;
}

.kyoten-number-wrap {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  color: #009944;
}

.kyoten-lbl-prefix {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0 8px 13px 0;
}

.kyoten-count {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 110px;
  font-weight: 600;
  line-height: 1;
}

.kyoten-lbl-suffix {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "Outfit", Arial, sans-serif;
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 13px 8px;
  display: inline-block;
}

.support-info-right {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
}

.support-graphic-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 370px;
  object-fit: contain;
}

.support-footer-lead {
  margin: 0;
  text-align: left;
}

.other-business-section {
  width: 100%;
  padding: 100px 0 160px;
  background-color: #ffffff;
  position: relative;
  background-image: url("/asset/img/common/other-business-bg.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto 650px;
}

.other-business-header {
  text-align: left;
  margin-bottom: 60px;
}

.other-business-main-title {
  margin-bottom: 10px;
}

.other-business-sub-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.other-business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  width: 100%;
}

.other-business-card {
  background: linear-gradient(to right, #3FFBD6 0%, #0BFF64 67%, #00D93E 100%);
  border-radius: 12px;
  padding: 0; 
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.other-card-inner {
  width: 100%;
  padding: 15px 15px 0 15px; 
  box-sizing: border-box;
}

.other-white-box {
  background-color:#fff;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  padding: 70px 30px 40px;
  min-height: 285px;
  max-height: 285px;
  margin-bottom: -60px;
}
.cx-card .other-white-box {padding: 50px 30px 40px;}

.other-card-title {
  display: flex;
  align-items: flex-start;
  margin: 0 0 50px 0;
  width: 100%;
  font-size: 24px;
  line-height: 1.3;
}
.cx-card .other-card-title {margin: 0 0 40px;}

.other-deco-dot {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url("/asset/img/common/dot_icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 5px 10px 0 0;
  flex-shrink: 0;
}

.other-card-text {
  margin: 0;
  text-align: justify;
  line-height: 1.5;
}

.other-card-visual {
  width: 100%;
  aspect-ratio: 2 / 1;
  margin: 0; 
  border-radius: 0; 
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.other-card-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2; 
  pointer-events: none;
}

.other-card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.other-card-link-area {
  position: relative;
  z-index: 3; 
  width: auto;
  display: flex;
  justify-content: center;
  padding: 50px 0 0;
}

.btn-other-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #009944;
  background-color: #ffffff;
  color: #009944;
  padding: 9px 45px; 
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* ボタン自体の視認性を上げるシャドウ */
  transition: background-color 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-other-detail::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  margin-left: 12px;
  background-image: url("/asset/img/common/arrow_g.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s;
}

.other-business-card.js-link-card:hover .btn-other-detail {
  background-color: #009944;
  color: #ffffff;
  transform: translateY(-5px);
}

.other-business-card.js-link-card:hover .btn-other-detail::after {
  background-image: url("/asset/img/common/arrow.svg");
}

.dx-other .dx-card,
.partner-other .partner-card,
.bpo-other .bpo-card,
.cx-other .cx-card {
  display: none;
}


@media (max-width: 767px) {
  
  .sub-main-visual {
    min-height: auto;
    padding: 70px 0; 
    position: relative;
    display: block;
    background: transparent;
  }

  .sub-main-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to left, #00D93E 0%, #0BFF64 33%, #3FFBD6 100%);
    z-index: 2; 
    pointer-events: none;
  }

  .sub-mv-container {
    width: 100%;
    padding: 30px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
  }

  .sub-mv-white-card {
    border-radius: 10px;
    padding: 45px 30px;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    margin-top: 0; 
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }

  .sub-mv-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.3;
  }

  .sub-mv-lead {
    font-size: 15px;
    line-height: 1.4;
    color: #646464;
  }

  .sub-mv-visual {
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
    z-index: 1; 
    margin: 0;
    padding: 0;
  }

  .sub-mv-visual img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  .business-inner-section {
    padding: 50px 0 0;
  }

  .sub-container {
    padding: 0;
  }

  .business-catch-block {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    padding: 0 30px;
  }

  .business-catch-left,
  .business-catch-right {
    flex: none;
    width: 100%;
  }

  .business-catch-phrase {
    color: #009944;
  }

  .business-catch-desc {
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
  }

  .dx-service-header {
    border-radius: 20px 20px 0 0;
    padding: 30px 0 20px;
    margin: 0 30px;
  }
  
  .dx-service-main-title {
    margin: 0 0 10px;
  }

  .dx-service-sub-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .dx-service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 30px 270px;
    background-image: url("/asset/img/common/list_bg_sp.webp");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  .partner-section .dx-service-grid {
    background-image: url("/asset/img/common/list_bg_p_sp.webp");
  }

  .service-card {
    border-radius: 20px;
    box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.1);
  }

  .js-link-card:hover {
    transform: none;
  }

  .card-inner {
    padding: 50px 30px 30px;
  }
  
  .service-card:nth-child(odd)::before,
  .service-card:nth-child(even)::before {
    height: 15px;
  }
  
  .card-title {
    font-size: 24px;
    line-height: 1;
    margin: 0 0 20px;
  }

  .card-img-box {
    margin-bottom: 25px;
    height: auto;
  }

  .card-lead {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.7;
  }

  .card-text {
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.6;
  }

  .btn-card-detail {
    font-size: 16px;
    line-height: 1.3;
  }
  
  .card-link-area {
    margin-top: auto;
    justify-content: flex-end;
  }
  
  .btn-card-detail::after {
    width: 25px;
    height: 25px;
    margin-left: 7px;
  }

  .dx-support-section.pa-support-section,
  .dx-support-section {
    padding: 0 0 30px;
    background-color: #ffffff;
  }

  .support-bg-deco {
    display: none;
  }

  .sub-support-container {
    width: 100%;
    margin: 0;
    padding: 0 30px;
    border-radius: 0;
    background-image: url(/asset/img/store-dx/support_bg_sp.webp);
    background-position: right bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    box-sizing: border-box;
  }

  .support-white-card {
    padding: 50px 0 90px;
    max-width: 100%;
  }

  .support-main-title {
    margin: 0 0 30px;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
  }

  .support-service-tags-block {
    margin: 0 0 50px;
  }

  .support-tag-list {
    gap: 15px;
    font-size: 14px;
    line-height: 1;
  }

  .support-tag-list li {
    background: linear-gradient(to left, rgba(0, 217, 62, 0.15) 0%, rgba(11, 255, 100, 0.15) 43%, rgba(63, 251, 214, 0.15) 100%);
    padding: 0 20px;
  }

  .support-info-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin-bottom: 45px;
  }

  .support-info-left {
    flex: none;
    width: 100%;
    background-position: center bottom;
    background-size: 100% auto;
    padding: 0 0 140px 0;
    display: flex;
    justify-content: center;
  }

  .support-kyoten-box {
    align-items: flex-start;
    margin-left: -50%;
  }

  .kyoten-tag {
    padding: 0;
    margin: 0 0 10px 0;
    width: 140px;
    font-size: 16px;
  }

  .kyoten-lbl-prefix {
    margin: 0 5px 10px 0;
    font-size: 16px;
  }
  .kyoten-count {
    font-size: 60px;
  }

  .kyoten-lbl-suffix {
    margin: 0 0 10px 5px;
    font-size: 16px;
  }

  .support-info-right {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .support-tag-note {
    font-size: 14px;
    line-height: 1.3;
  }

  .support-footer-lead {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
  }

  .dx-other-business-section {
    padding: 30px 0;
    background:none;
  }

  .other-business-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .other-business-section {
    background: none;
    padding: 30px 0 80px;
  }

  .other-business-main-title {
    margin: 0 0 10px;
  }

  .other-business-sub-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .other-business-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 30px;
    box-sizing: border-box;
  }

  .other-business-card {
    border-radius: 20px;
  }

  .other-white-box {
    padding: 40px 15px;
    min-height: auto;
    max-height: none;
    margin-bottom: -80px; 
  }

  .other-card-title {
    font-size: 20px;
    line-height: 1.5;
    margin: 0 0 30px;
    justify-content: center;
  }

  .other-card-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .other-card-visual {
    aspect-ratio: 2 / 1;
  }

  .other-card-link-area {
    width: calc(100% - 30px);
    padding: 80px 0 0;
  }

  .btn-other-detail {
    padding: 13px 0;
    border: 2px solid #009944;
    width: 100%;
    font-size: 16px;
  }
}



/* ==========================================================================
   Delivery Design Center セクションスタイル（PC版）
   ========================================================================== */

   .cs-ddc-section {
    width: 100%;
    margin: 150px 0 0;
    padding: 0 0 30px;
    background-color: #F5F5F5;
  }
  
  .ddc-section-header {
    display: flex;
    justify-content:flex-start;
    align-items: flex-end;
    padding-bottom: 90px;
  }
  
  .ddc-main-title {
    margin: -50px 80px 0 0;
    background: linear-gradient(to left, #009944 0%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding: 0 0 10px;
  }
  
  .ddc-sub-lead {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
  }
  
  .ddc-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 35px;
  }
  
  .ddc-side-cards {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  .ddc-user-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
  
  .user-card-title {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
    color: #009944;
  }
    
  .user-icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-right: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .icon-agent { background-image: url("/asset/img/callcenter/icon_agent.svg"); }
  .icon-store { background-image: url("/asset/img/callcenter/icon_store.svg"); }
  
  .user-card-text {
    color: #646464;
    margin: 0;
    line-height: 1.8;
  }
  
  .ddc-main-board {
    flex: 2;
    background-color: #EAF5F0;
    border-radius: 20px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.1);
  }
  
  .ddc-main-board::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(90deg, #000000 0%, #009944 100%);
  }
  
  .board-bg-text {
    position: absolute;
    bottom: -30px;
    right: 0;
    font-size: 200px;
    font-weight: 700;
    font-family: "Outfit", Arial, sans-serif;
    color: #DEEDE3;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
  }
  
  .board-top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 55px;
    position: relative;
    z-index: 2;
  }
  
  .board-headline-box {
    flex: 1.7;
  }
  
  .board-large-logo {
    display: block;
    background: linear-gradient(to left, #009944 0%, #000000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: 0.1em;
  }

  .board-sub-logo {
    margin: 5px 0 0;
    font-size: 32px;
    line-height: 1.5;
  }

  .board-desc {
    flex: 1.6;
    margin: 0;
    text-align: justify;
    line-height: 1.6;
  }
  
  .ddc-flow-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
    width: 100%;
  }
  
  .flow-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  .flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 47px;
    right: -20px;
    width: 33px;
    height: 6px;
    background-color: #BBF2CD;
  }
  
  .flow-icon-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 15px;
  }
  
  .flow-icon-wrap img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(-2px 2px 2px rgba(0, 0, 0, 0.1));
  }
  
  .flow-label {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
  }
  .v-shape-arrow-bg {
    width: 100%;
    height: 220px;
    background-color: #f5f5f5;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 0;
    padding: 0;
  }

  .bpo-solution-section,
  .cs-solution-section {
    width: 100%;
    padding: 50px 0 20px;
    background-image: url("/asset/img/callcenter/cs-solution_bg.webp");
    background-position: center bottom;
    background-repeat: none;
    background-size: cover; 
    position: relative;
    overflow: hidden;
  }

  .solution-main-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin: 0 auto 70px;
    position: relative;
    display: table;
    letter-spacing: 0.1em;
  }
  .solution-main-title::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: linear-gradient(to left, #00D93E80 0%, #0BFF6480 33%, #3FFBD680 100%);
    z-index: -1;
  }
  
  .bpo-problem-area,
  .solution-problem-box {
    background: linear-gradient(
    to right, 
    #EDFDF2 0%, 
    #EDFDF2 calc(50% + 285px), 
    transparent calc(50% + 285px), 
    transparent 100%
  );
    border-radius: 0 12px 0 0;
    padding: 40px 0 180px;
    margin: 0;
    position: relative;
    z-index: 5;
    width: 100%;
  }
  .bpo-problem-area {
    padding: 40px 0 110px;
  }
  .bpo-problem-box,
   .solution-problem-container {
    width: calc(50% + 285px);
    margin: 0;
    padding: 0 150px 0 0;
    position: relative;
    z-index: 5;
   }
  .problem-box-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #009944;
    margin: 0 0 40px 0;
  }

  .problem-box-sub {
    margin: 0 0 15px 0;
    line-height: 1.3;
  }
  
  .problem-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .p-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5px 5px;
  }
  
  .p-card-icon {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  .p-card:first-child .p-card-icon img,
  .a-card:first-child .p-card-icon img {
    width: auto;
    height: 90px;
    object-fit: contain;
  }
  .p-card:nth-child(2) .p-card-icon img,
  .a-card:nth-child(2) .p-card-icon img {
    width: auto;
    height: 85px;
    object-fit: contain;
  }
  .p-card:nth-child(3) .p-card-icon img,
  .a-card:nth-child(3) .p-card-icon img {
    width: auto;
    height: 75px;
    object-fit: contain;
  }
  
  .p-card-label {
    width: 100%;
    background-color: #E4F5EB;
    color: #656565;
    text-align: center;
    padding: 5px 0;
    box-sizing: border-box;
    margin-top: auto;
    margin: 15px 0 0;
    line-height: 1.3;
  }
  
  .problem-summary-bar {
    width: 100%;
    background-color: #646464;
    color: #ffffff;
    text-align: center;
    padding: 5px 0;
    border-radius: 10px;
    box-sizing: border-box;
    line-height: 1.3;
  }
  
  .problem-down-arrow {
    position: absolute;
    bottom: -64px;
    left: 37%;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 32px solid #1DFE8B;
    z-index: 10;
  }  

.solution-answer {
  width: 100%;
  height: 570px;
  position: relative;
}
.bpo-answer-area {
  width: 100%;
  height: 530px;
  position: relative;
}
.bpo-answer-area::before,
.solution-answer::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 0; 
  left: calc(50% - 285px);
  height: 100%;
  z-index: 5;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(to right, #3FFBD6 0%, #0BFF64 67%, #00D93E 100%);
}

.solution-answer-inner {
  width: 100%;
  height: 530px;
  position: relative;
}
.bpo-answer-area .solution-answer-inner {
  height: 490px;
}
.solution-answer-inner::before {
  content: "";
  position: absolute;
  top: -70px;
  right: 0; 
  left: calc(50% - 265px);
  height: 100%;
  z-index: 5;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(to right, #FFF 0%, #FFF 100%);
}
.solution-answer-container {
  margin: 0;
  padding: 0 0 0 390px;
  z-index: 5;
}    
  .answer-box-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    color: #009944;
    margin: 0 0 40px;
    position: absolute;
    top:-30px;
  }
  
  .answer-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
    padding: 50px 0 0;
  }

  .bpo-answer-area .answer-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 50px 0 0;
  }
  
  
  .a-card {
    background: #009944;
    border-radius: 10px;
    padding: 15px 5px 5px;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.15);
  }
  
  .a-card-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  
  .a-card-icon {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .a-card-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #009944;
    text-align: center;
    padding: 5px 0;
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    margin: 15px 0 0;
    border-radius: 0 0 5px 5px;
  }

  .answer-commit-bar {
    width: 100%;
    background: #C4FCD7;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    padding: 5px 0;
    border-radius: 10px;
    box-sizing: border-box;
    margin-bottom: 40px;
  }

  .answer-footer-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
    text-align: left;
  }

@media (max-width: 767px) {

  .cs-ddc-section {
    margin: 100px 0 0;
    padding: 0 0 30px;
  }

  .ddc-section-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 35px;
    padding: 0 30px;
  }
  .ddc-head-left,
  .ddc-head-right {
    width: 100%;
  }

  .ddc-main-title {
    font-size: 50px;
    line-height: 1.1;
    text-align: left;
    margin: -35px 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ddc-sub-lead {
    text-align: left;
    font-size: 18px;
    line-height: 1.3;
  }

  .ddc-content-flex {
    flex-direction: column;
    gap: 35px;
    padding: 0 30px;
  }

  .ddc-side-cards {
    width: 100%;
    gap: 15px;
  }

  .ddc-user-card {
    padding: 20px 25px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.1);
  }
  .user-icon {
    width: 30px;
    height: 30px;
  }

  .user-card-title {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .user-card-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .ddc-main-board {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
    border-radius: 20px;
  }

  .board-bg-text {
    font-size: 100px;
    font-weight: 700;
    bottom: -15px;
    right: 5px;
  }

  .board-top-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
  }

  .board-large-logo {
    font-size: 55px;
  }

  .board-sub-logo {
    font-size: 24px;
    line-height: 1.5;
  }

  .board-desc {
    font-size: 16px;
    line-height: 1.7;
  }

  .ddc-flow-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 0;
    position: relative;
    width: 100%;
  }

  .ddc-flow-list::before {
    content: "";
    position: absolute;
    top: 43px;
    left: 20px;
    width: 6px;
    height: calc(100% - 56px);
    background-color: #C6F3E8;
    z-index: 1;
  }

  .flow-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
  }
  
  .flow-item:last-child {
    margin-bottom: 0;
  }

  .flow-icon-wrap {
    width: 45px;
    height: 45px;
    margin-bottom: 0; 
    margin-right: 15px;
    flex-shrink: 0; 
  }

  .flow-icon-wrap img {
    width: 45px;
    height: 45px;
  }

  .flow-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
  }
  
  .flow-label br {
    display: none;
  }
  .flow-item:not(:last-child)::after {
    display: none;
  }
  .v-shape-arrow-bg {
    height: 45px;
}
.cs-solution-section {
  width: 100%;
  padding: 45px 0 130px;
  background-image: url("/asset/img/callcenter/cs-solution_bg_sp.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto; 
  position: relative;
  overflow: hidden;
}

.solution-main-title {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 auto 50px;
}
.solution-main-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
}

.bpo-problem-area,
.solution-problem-box {
  background: #EDFDF2;
  border-radius: 0;
  padding: 30px 30px 85px;
}
.bpo-problem-area {
  padding: 30px;
}
.bpo-problem-box,
 .solution-problem-container {
  width: 100%;
  margin: 0;
  padding: 0;
 }
.bpo-problem-list {
  gap: 15px;
}
.problem-box-title {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 35px 0;
  text-align: center;
}

.problem-box-sub {
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  margin-bottom:0;
}

.p-card {
  display: flex;
  flex-direction: inherit;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.p-card-icon {
  width: 70px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
.p-card:first-child .p-card-icon img,
.a-card:first-child .p-card-icon img {
  width: auto;
  height: 50px;
  object-fit: contain;
}
.p-card:nth-child(2) .p-card-icon img,
.a-card:nth-child(2) .p-card-icon img {
  width: auto;
  height: 54px;
  object-fit: contain;
}
.p-card:nth-child(3) .p-card-icon img,
.a-card:nth-child(3) .p-card-icon img {
  width: auto;
  height: 43px;
  object-fit: contain;
}

.p-card-label {
  width: calc(100% - 85px);
  text-align: center;
  padding: 5px 0;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  margin-top: auto;
  margin: 0;
  border-radius: 5px;
}

.problem-summary-bar {
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  padding: 5px 0;
  margin: 20px 0 0;
}

.problem-down-arrow {
  position: absolute;
  bottom: -60px;
  left: calc(50% - 17px);
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 26px solid #1DFE8B;
  z-index: 10;
}  
.bpo-answer-area,
.solution-answer {
height: auto;
position: relative;
padding: 0 0 20px;
}
.bpo-answer-area::before,
.solution-answer::before {
content: "";
position: absolute;
top: 0;
right: 0; 
left: 0;
height: 100%;
z-index: 5;
border-radius: 20px;
background: linear-gradient(to right, #3FFBD6 0%, #0BFF64 67%, #00D93E 100%);
}

.bpo-answer-area .solution-answer-inner,
.solution-answer-inner {
width: 100%;
height: auto;
position: relative;
}
.solution-answer-inner::before {
content: "";
position: absolute;
top: 10px;
right: 10px; 
left: 10px;
height: 100%;
z-index: 5;
border-radius: 20px;
background: linear-gradient(to right, #FFF 0%, #FFF 100%);
}
.solution-answer-container {
margin: 0;
padding: 0 30px;
z-index: 5;
}    
.answer-box-title {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 40px;
  position: relative;
  top:40px;
  text-align: center;
}

.bpo-answer-area .answer-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom:0;
  padding: 30px 0 30px;
}
.answer-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
  margin-bottom:0;
}

.a-card {
  padding: 20px;
}
.bpo-answer-area .a-card {
  padding: 10px;
}

.a-card-inner {
  display: flex;
  flex-direction: inherit;
  align-items: center;
  justify-content: space-between;
}
.bpo-answer-area .a-card-inner {
  flex-wrap: wrap;
}
.a-card-icon {
  width: 70px;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
.a-card-icon img {
  max-height: 55px;
}
.bpo-answer-area .a-card-icon {
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}
.bpo-answer-area .a-card-icon img {
  width: 55%;
  max-height: 74px;
}
.a-card-label {
  width: calc(100% - 85px);
  text-align: center;
  padding: 5px 0;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  margin-top: auto;
  margin: 0;
  border-radius: 5px;
}
.bpo-answer-area .a-card-label {
  margin: 10px 0 0;
  width: 100%;
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 0 0 5px 5px;
}

.answer-commit-bar {
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  padding: 5px 0;
  margin: 20px 0 40px;
}

.answer-footer-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  padding: 0 0 30px;
}
}

/* ==========================================================================
   会社概要（Company）PC版スタイル
   ========================================================================== */

.company-all {
  background-color: #F9F9F9;
} 
.company-outer-bg {
  width: 100%;
  background-image: url("/asset/img/company/company_bg.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto; 
  padding: 65px 0 140px;
  box-sizing: border-box;
}

.company-white-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.company-tab-menu {
  display: flex;
  width: 100%;
  height: 90px;
  background-color: #f5f5f5;
}
.company-tab-menu .tab-btn:first-child {
  margin-right:7px;
}
.company-tab-menu .tab-btn:nth-child(2) {
  margin-left:7px;
}

.tab-btn {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background-color 0.3s, color 0.3s;
  font-family: inherit;
  border-radius: 20px 20px 0 0;
}

.tab-btn {
  background-color: #009944;
  color: #ffffff;
}

.tab-btn.is-active {
  background-color: #ffffff;
  color: #009944;
  cursor: default;
}

.tab-dot {
  display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(/asset/img/common/dot_icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 0;
    flex-shrink: 0;
}

.tab-panel {
  display: none;
  padding: 70px 90px 100px;
  box-sizing: border-box;
}

.tab-panel.is-show {
  display: block;
  animation: tabFadeIn 0.5s ease forwards;
}

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

.company-section-header {
  margin-bottom: 70px;
  text-align: left;
}

.company-main-title {
  font-size: 90px;
  font-weight: 600;
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: 0.03em;
  color: #009944;
  line-height: 1;
  margin: 0 0 10px 0;
}

.company-sub-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #009944;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 200px;
}

.company-table tr {
  border-bottom: 1px solid #BFBFBF;
}

.company-table th {
  width: 40%;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 400;
  color: #646464;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.company-table td {
  width: 60%;
  padding: 30px 0;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.yakuin-row {
  display: flex;
}
.yakuin-row:last-child { margin-bottom: 0; }
.yakuin-lbl {
  display: inline-block;
  width: 105px;
}

.company-map-section {
  width: 100%;
  margin: 0 0 100px;
}

.map-graphic-wrap {
  width: 100%;
  position: relative;
}

.map-iframe-box {
  width: 100%;
  max-width: 900px;
  height: 530px;
  margin: 0;
  overflow: hidden;
}

.map-iframe-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-info-card {
  position: absolute;
  bottom: -100px;
  right: 50px;
  background: linear-gradient(to right, #3FFBD6 0%, #0BFF64 67%, #00D93E 100%);
  border-radius: 20px;
  padding: 15px;
  box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
}
.map-info-card-inner {
  background-color: #fff;
  padding: 35px;
  border-radius: 20px;
}

.map-card-name {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.map-card-address {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   会社概要（Company）SP版スタイル
   ========================================================================== */

@media screen and (max-width: 767px) {
  .company-outer-bg {
    padding: 40px 0 140px;
    background-image: url(/asset/img/company/company_bg_sp.webp);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .company-tab-menu {
    flex-direction: column;
    height: auto;
    background-color: #f5f5f5;
    gap: 20px;
    padding-bottom: 30px;
  }

  .company-tab-menu .tab-btn:first-child,
  .company-tab-menu .tab-btn:nth-child(2) {
    margin: 0 auto;
    border-radius: 60px;
  }

  .tab-btn {
    font-size: 16px;
    line-height: 1.3;
    width: calc(100% - 60px);
    height: 60px;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.15);
    justify-content: center;
    padding: 17px 0;
    background-color: #ffffff;
    color: #009944;
  }

  .tab-btn.is-active {
    background-color: #009944;
    color: #ffffff;
  }
  .company-tab-content-wrap {
    background-color: #f5f5f5;
  }
  .tab-panel {
    padding: 40px 30px 50px;
  }

  .tab-panel.is-show {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.15);
  }

  .company-section-header {
    margin-bottom: 30px;
  }

  .company-main-title {
    font-size: 55px;
    line-height: 1;
  }

  .company-sub-title {
    font-size: 18px;
    line-height: 1.3;
  }
  .company-table {
    margin-bottom: 100px;
  }

  .company-table tr {
    display: flex;
    flex-direction: column;
    border-bottom: none;
    padding: 12px 0 0;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 0;
    line-height: 1.8;
  }

  .company-table th {
    border-bottom: none;
  }

  .company-table td {
    padding: 0 0 12px;
    border-bottom: 1px solid #BFBFBF;
  }

  .company-map-section {
    margin: 0;
  }

  .map-iframe-box {
    max-width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .map-info-card {
    position: relative;
    bottom: 0;
    right: auto;
    margin-top: 20px;
    text-align: center;
  }

  .map-card-name {
    font-size: 16px;
    line-height: 1.5;
  }

  .map-card-address {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ==========================================================================
   企業理念・社長メッセージ（Philosophy Tab）PC版スタイル
   ========================================================================== */

#tab-philosophy {
  position: relative;
  overflow: hidden;
}

.philos-philosophy-section {
  margin-bottom: 250px;
}

.philos-message-section {
  position: relative;
}

.mvv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mvv-card {
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
  gap: 160px;
  box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.15);
}

.mvv-mission {
  background: linear-gradient(to left, rgba(0, 217, 62, 0.15) 0%, rgba(11, 255, 100, 0.15) 33%, rgba(63, 251, 214, 0.15) 100%);
}

.mvv-vision {
  background: rgba(12, 214, 204, 0.1);
}

.mvv-value {
  background: linear-gradient(to left, rgba(0, 217, 62, 0.05) 0%, rgba(11, 255, 100, 0.05) 33%, rgba(63, 251, 214, 0.05) 100%);
}

.mvv-bg-label {
  position: absolute;
  right: 30px;
  top: 75%;
  transform: translateY(-50%);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(0, 153, 68, 0.05);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.mvv-keyword {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  flex-shrink: 0;
  width: 130px;
  margin: 0;
}

.mvv-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.president-catchphrase {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 15px;
}

.president-block {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
}

.president-photo {
  display: block;
  height: 535px;
  width: auto;
  object-fit: cover;
  object-position: center top;
  margin: 0 -90px 0 0;
}

.president-namecard {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 513px;
  height: 513px;
  background: linear-gradient(135deg, #E5FFFA 0%, #BCFFCF 100%);
  clip-path: polygon(0 0, 100% 0, 71.34% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 100px 40px 50px;
  box-sizing: border-box;
  border-radius: 20px 0 0 20px;
}

.president-role {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 15px;
}

.president-name {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.president-message-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  width: 715px;
}

.tab-philos-triangle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 340px;
  height: 1100px;
  background: linear-gradient(to left, #00D93E 0%, #0BFF64 33%, #3FFBD6 100%);
  clip-path: polygon(100% 0, 100% 100%, 0% 100%);
  z-index: 10;
  pointer-events: none;
}

/* ==========================================================================
   企業理念・社長メッセージ（Philosophy Tab）SP版スタイル
   ========================================================================== */

@media screen and (max-width: 767px) {
  #tab-philosophy .company-section-header {
    margin-bottom: 40px;
  }

  .philos-philosophy-section {
    margin-bottom: 70px;
  }

  .mvv-card {
    gap: 5px;
    padding: 15px 30px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .mvv-bg-label {
    font-size: 50px;
    right: 0;
    top: auto;
    line-height: 1;
    bottom: -30px;
  }

  .mvv-keyword {
    font-size: 26px;
    line-height: 1.7;
    width: auto;
  }

  .mvv-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .president-catchphrase {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .president-block {
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 40px;
  }

  .president-photo {
    width: 100%;
    height: auto;
    margin: 0;
    display: block;
    position: relative;
    z-index: 0;
  }

  .president-namecard {
    order: -1;
    position: relative;
    width: 100%;
    height: auto;
    clip-path: none;
    border-radius: 0;
    padding: 10px 30px 20px;
    box-sizing: border-box;
    justify-content: flex-start;
    z-index: 2;
    background: #fff;
  }

  /* ネームカードのグラデーション三角形（写真前面・上23vw→下0） */
  .president-namecard::after {
    content: "";
    position: absolute;
    top: 29vw;
    left: 0;
    width: 23vw;
    height: 60vw;
    background: linear-gradient(135deg, #E5FFFA 0%, #BCFFCF 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 3;
    pointer-events: none;
  }

  /* 写真右下の三角装飾（下24vw→上0） */
  .president-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24vw;
    height: 95vw;
    background: linear-gradient(to left, #00D93E 0%, #0BFF64 33%, #3FFBD6 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
    pointer-events: none;
  }

  .president-role {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .president-name {
    font-size: 18px;
    line-height: 1.3;
  }

  .president-message-body {
    line-height: 1.8;
    width: 100%;
  }

  .tab-philos-triangle {
    display: none;
  }
}

/* ==========================================================================
   ニュース一覧ページ（newsrelease）
   ========================================================================== */

/* ニュースセクション全体 */
.news2-section {
  width: 100%;
  padding: 0;
  position: relative;
  margin: 0;
}

.news2-section::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 680px;
  height: 270px;
  background-image: url("/asset/img/newsrelease/news-top-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  transform: scaleX(-1);
  z-index: 0;
  pointer-events: none;
}

.news2-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px 0;
  position: relative;
  z-index: 2;
}

/* ヘッダー */
.news2-header {
  margin-bottom: 60px;
}

.news2-main-title {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #009944;
  margin: 0 0 10px;
}

.news2-sub-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #009944;
  margin: 0;
}

/* ニュースリスト */
.news-list-container {
  width: 100%;
  border-top: 1px solid #BFBFBF;
}

.news-item {
  border-bottom: 1px solid #BFBFBF;
}

.news-link {
  display: flex;
  align-items: center;
  padding: 24px 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}

.news-link:hover .news-text-title {
  color: #009944;
}

.news-date {
  font-size: 16px;
  color: #989898;
  font-weight: 600;
  width: 150px;
  flex-shrink: 0;
}

.news-category {
  display: inline-block;
  background-color: #CCF7D8;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  padding: 3px 30px 4px;
  border-radius: 12px;
  text-align: center;
  margin-right: 40px;
  flex-shrink: 0;
}

.news-text-title {
  flex: 1;
  transition: color 0.3s ease;
}

/* 下部グラデーション背景（台形） */
.news2-bottom-bg {
  width: 100%;
  height: 420px;
  background: linear-gradient(to left, rgba(0, 217, 62, 0.05) 0%, rgba(11, 255, 100, 0.05) 33%, rgba(63, 251, 214, 0.05) 100%);
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0 100%);
  margin-top: -70px;
}

/* ==========================================================================
   ニュースリリース詳細ページ（newsrelease detail）
   ========================================================================== */

.nr-detail-section {
  width: 100%;
  position: relative;
}
.nr-detail-section::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 680px;
  height: 270px;
  background-image: url("/asset/img/newsrelease/news-top-bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  transform: scaleX(-1);
  z-index: 0;
  pointer-events: none;
}

.nr-detail-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px 50px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.nr-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.nr-detail-date {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  color: #989898;
}

.nr-detail-category {
  display: inline-block;
  background-color: rgba(0, 217, 62, 0.2);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  padding: 4px 20px;
  border-radius: 12px;
}

.nr-detail-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 10px;
}
.catch_ttl {
  font-size: 18px;
  color:#989898;
}

.nr-detail-img-box {
  width: 800px;
  max-width: 800px;
  overflow: hidden;
  margin: 50px auto;
}

.nr-detail-img-box img {
  width: 100%;
  height: 100%;
  display: block;
}

.nr-detail-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 70px;
}

.nr-detail-body p {
  margin: 0;
  line-height: 2;
}
.nr-detail-body h3 {
  margin: 50px 0 15px;
}
.nr-detail-body a {
  color:#009944 ;
  text-decoration: underline;
}


.nr-detail-btn-wrap {
  display: flex;
  justify-content: center;
}

.btn-nr-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  height: 100px;
  border: 2px solid #009944;
  border-radius: 50px;
  color: #009944;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  gap: 15px;
}

.btn-nr-back::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 16px;
  background-image: url("/asset/img/common/arrow_g.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-nr-back:hover {
  background-color: #009944;
  color: #ffffff;
}

.btn-nr-back:hover::after {
  background-image: url("/asset/img/common/arrow.svg");
}

@media screen and (max-width: 768px) {
  .nr-detail-section::before {
    width: 68vw;
    height: 27vw;
  }
  
  .nr-detail-container {
    padding: 40px 30px 60px;
  }

  .nr-detail-date {
    font-size: 14px;
  }

  .nr-detail-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .catch_ttl {
    font-size: 15px;
  }

  .nr-detail-img-box {
    width: 100%;
    margin: 40px 0;
  }

  .nr-detail-body {
    margin-bottom: 50px;
  }

  .btn-nr-back {
    width: 100%;
    max-width: 340px;
    height: 70px;
    font-size: 16px;
    border-radius: 35px;
  }
  .nr-detail-body h3 {
    font-size: 17px;
    margin: 30px 0 15px;
  }
}

/* ニュースページ SP */
@media screen and (max-width: 768px) {
  .news2-section {
    padding: 30px 0 0;
    background-size: 170px auto;
    background-position: right top;
    margin: 0;
  }
  .news2-section::before {
    width: 68vw;
    height: 27vw;
  }

  .news2-container {
    padding: 0 30px;
  }

  .news2-header {
    margin-bottom: 40px;
  }

  .news2-main-title {
    font-size: 55px;
  }

  .news2-sub-title {
    font-size: 18px;
  }

  .news-link {
    flex-wrap: wrap;
    padding: 20px 0;
  }

  .news-date {
    font-size: 14px;
    width: auto;
    margin-right: 20px;
    margin-bottom: 10px;
  }

  .news-category {
    font-size: 13px;
    padding: 3px 18px 4px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .news-text-title {
    flex: none;
    width: 100%;
  }

  .news2-bottom-bg {
    height: 160px;
    margin-top: -30px;
    clip-path: polygon(0 60%, 100% 0%, 100% 100%, 0 100%);
  }
}


/* ============================================
   Privacy Policy
   ============================================ */

.privacy-content {
  width: 100%;
  padding-bottom: 80px;
}

.privacy-heading {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 60px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #009944;
}

.privacy-heading:first-child {
  margin-top: 0;
}

.privacy-sub-heading {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.7;
  margin-top: 40px;
  margin-bottom: 16px;
}

.privacy-bold-sub {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 28px;
  margin-bottom: 10px;
}

.privacy-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.privacy-footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid #ccc;
  text-align: right;
}

.privacy-footer .privacy-body {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .privacy-page {
    padding: 30px 0 0;
  }
  .privacy-content {
    padding-bottom: 50px;
  }

  .privacy-heading {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 16px;
  }

  .privacy-sub-heading {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .privacy-bold-sub {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .privacy-body {
    font-size: 16px;
  }

  .privacy-footer {
    margin-top: 40px;
    text-align: left;
  }
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.privacy-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  margin-bottom: 6px;
}

.privacy-list.mt {
  margin-top: 20px;
}

.privacy-list a {
  color: #009944;
  text-decoration: underline;
  word-break: break-all;
  overflow-wrap: break-word;
}

.privacy-contact {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .privacy-list li {
    font-size: 15px;
  }
}




/* ============================================
   BPO ご提案の流れ
   ============================================ */
.sub-mv-visual2 {
  margin: 0 0 100px;
}
.bpo-flow-section {
  width: 100%;
  padding: 80px 0 30px;
  background-color: #F5F5F5;
  position: relative;
}

.bpo-flow-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  color: #009944;
  text-align: center;
  margin: 0 0 50px;
}

.bpo-flow-list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* 横繋ぎ線 */
.bpo-flow-list::before {
  content: "";
  position: absolute;
  top: 75px;
  left: 12.5%;
  width: 75%;
  height: 10px;
  background: linear-gradient(to right, #0BFF6499 0%, #3FFBD699 100%);
  z-index: 0;
}

.bpo-flow-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.bpo-flow-icon-wrap {
  width: 160px;
  height: 160px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin: 0 0 40px;
}

.bpo-flow-icon-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bpo-flow-icon-inner img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.bpo-flow-item-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
}

.bpo-flow-item-desc {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #646464;
  margin: 0;
  text-align: left;
}

/* ============================================
   BPO こんなお悩みを解決します
   ============================================ */

/* ---- お悩みエリア ---- */

.bpo-problem-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  color: #009944;
  margin: 0 0 25px;
}

.bpo-problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bpo-problem-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.1);
}

.bpo-problem-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.bpo-problem-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.bpo-problem-text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

/* ---- 矢印 ---- */

.bpo-arrow-down {
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 32px solid #1DFE8B;
  margin: 30px auto 20px;
  position: relative;
  z-index: 2;
}

/* ---- 解決エリア ---- */

.bpo-answer-box {
  border: 2px solid #009944;
  border-radius: 20px;
  padding: 40px 50px;
  margin-left: 200px;
  background-color: #ffffff;
}

.bpo-answer-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: #009944;
  margin: 0 0 25px;
}

.bpo-answer-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.bpo-a-card {
  background-color: #009944;
  border-radius: 10px;
  padding: 20px 12px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bpo-a-card-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 12px;
}

.bpo-a-card-icon img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.bpo-a-card-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}

.bpo-answer-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
}

/* ---- SP ---- */

@media screen and (max-width: 768px) {
  .sub-mv-visual2 {
    margin: 0 0 60px;
  }

  .bpo-flow-section {
    padding: 50px 0 40px;
  }

  .bpo-flow-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .bpo-flow-list {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 0 30px;
  }

  .bpo-flow-list::before {
    top: 65px;
    left: 60px;
    width: 10px;
    height: calc(100% - 100px);
    background: linear-gradient(to bottom, #0BFF644D, #3FFBD64D);
  }

  .bpo-flow-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0;
    width: 100%;
  }

  .bpo-flow-icon-wrap {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .bpo-flow-icon-inner img {
    width: 70px;
    height: 70px;
  }

  .bpo-flow-item-title {
    font-size: 16px;
    line-height: 1.5;
    margin: 3px 0 10px;
  }

  .bpo-solution-section {
    padding: 50px 0 80px;
    background-image: url(/asset/img/callcenter/cs-solution_bg_sp.webp);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
  }

  .bpo-problem-title {
    font-size: 18px;
    text-align: center;
  }

  .bpo-problem-item {
    gap: 15px;
    padding: 12px 16px;
  }

  .bpo-problem-icon {
    width: 45px;
    height: 45px;
  }

  .bpo-problem-icon img {
    width: 45px;
    height: 45px;
  }

  .bpo-problem-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .bpo-deco-circle {
    display: none;
  }

  .bpo-arrow-down {
    width: 0;
    height: 0;
    border-left: 17px solid transparent;
        border-right: 17px solid transparent;
        border-top: 26px solid #1DFE8B;
    margin: 30px auto 0;
    position: relative;
    z-index: 2;
  }

  .bpo-answer-box {
    margin-left: 0;
    padding: 30px 25px;
  }

  .bpo-answer-title {
    font-size: 18px;
  }

  .bpo-answer-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .bpo-a-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
  }

  .bpo-a-card-icon img {
    width: 50px;
    height: 50px;
  }

  .bpo-a-card-label {
    font-size: 13px;
  }

  .bpo-answer-desc {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 0 30px;
  }
}


/* ==========================================================================
   お問い合わせページ
   ========================================================================== */

.contact-page-section {
  width: 100%;
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}

.contact-page-bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 340px;
  pointer-events: none;
  z-index: 0;
}

.contact-page-bg1 img {
  width: 100%;
  height: auto;
}

.contact-page-bg2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 420px;
  pointer-events: none;
  z-index: 0;
}

.contact-page-bg2 img {
  width: 100%;
  height: auto;
}

.contact-page-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}

.contact-page-header {
  margin-bottom: 60px;
}

.contact-page-title {
  color: #009944;
  margin-bottom: 10px;
}

.contact-page-subtitle {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
  margin-bottom: 12px;
}

.contact-page-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

.contact-mail-box {
  background-color: #F5FFFC;
  border-radius: 20px;
  padding: 50px 60px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.1);
}

.contact-mail-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin-bottom: 10px;
}

.contact-mail-address {
  font-family: "Outfit", Arial, sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #009944;
  margin-bottom: 35px;
}

.contact-btn-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-color: #009944;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  padding: 18px 50px;
  border-radius: 50px;
  margin-bottom: 30px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-btn-mail:hover {
  background-color: #008039;
  opacity: 1;
  transform: translateY(-3px);
}

.contact-btn-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.contact-btn-arrow {
  width: 16px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.contact-mail-note {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.contact-btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #ffffff;
  color: #009944;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  padding: 16px 50px;
  border-radius: 50px;
  border: 2px solid #009944;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-btn-copy:hover {
  background-color: #009944;
  color: #ffffff;
  transform: translateY(-3px);
}

.contact-btn-copy:hover .contact-btn-icon {
  filter: brightness(0) invert(1);
}

.contact-attention {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-attention-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-attention-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

@media screen and (max-width: 768px) {

  .contact-page-section {
    padding: 50px 0 80px;
  }

  .contact-page-bg1 {
    width: 200px;
  }

  .contact-page-bg2 {
    width: 250px;
  }

  .contact-page-container {
    padding: 0 30px;
  }

  .contact-page-header {
    margin-bottom: 40px;
  }

  .contact-page-subtitle {
    font-size: 20px;
  }

  .contact-mail-box {
    padding: 35px 25px;
    margin-bottom: 35px;
  }

  .contact-mail-address {
    font-size: 32px;
    word-break: break-all;
    margin-bottom: 25px;
  }

  .contact-btn-mail {
    width: 100%;
    font-size: 18px;
    padding: 16px 20px;
    gap: 10px;
  }

  .contact-btn-copy {
    width: 100%;
    font-size: 18px;
    padding: 14px 20px;
    gap: 10px;
  }

  .contact-btn-arrow {
    width: 10px;
    height: 13px;
  }

  .contact-mail-note {
    font-size: 15px;
    text-align: left;
  }

  .contact-attention-icon {
    width: 32px;
    height: 32px;
  }

  .contact-attention-text {
    font-size: 15px;
  }
}
