@charset "utf-8";

/* =================================================================
   Base Styles (Desktop First)
   ================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
a.anknone {
	text-decoration: none;
}
.sp-yrxy {
  display: inline;
}
.sp-br {
  display: none;
}

/*** ｢数字でわかるテスト他社との違い｣セクションをオフにする場合は以下を有効化 ***/
/*
#hidden {display: none;}
*/

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 100%;
  margin: 0 auto;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  height: 50px;
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.text-line1 {
  font-size: 14px;
  font-weight: bold;
}

.text-line2 {
  font-size: 12px;
  color: #666;
}

.header-right {
  display: flex;
  gap: 12px;
}

.cta-btn {
  background-color: #F47F2C;
  border: none;
  border-radius: 26px;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(244, 127, 44, 0.3);
}

.cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(244, 127, 44, 0.4);
}

.cta-btn.contact {
  background-color: white;
  border: 2px solid #F47F2C;
  box-shadow: 0 4px 12px rgba(244, 127, 44, 0.2);
}

.cta-btn.contact:hover {
  box-shadow: 0 6px 20px rgba(244, 127, 44, 0.3);
}

.cta-btn.contact .btn-text {
  color: #F47F2C;
}

.btn-text {
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.btn-icon {
  width: 16px;
  height: 16px;
  display: none;
}

main {
  margin-top: 80px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.first-view {
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.first-view::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('img/fv_bg4.webp');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  z-index: -1;
  opacity: 0.2;
}

.first-view::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('img/fv_bg3.webp');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: auto 100%;
  z-index: -2;
  opacity: 0.2;
}

.main-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 62px;
  font-weight: 700;
  color: #5B5B5B;
  margin-bottom: 24px;
  white-space: nowrap;
}

.sub-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 31px;
  font-weight: 800;
  color: #F47F2C;
  margin-bottom: 94px;
  white-space: nowrap;
}

.content-section {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.left-column {
  flex: 1;
  text-align: left;
  position: relative;
  padding-right: 10px;
}

.right-column {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-left: 10px;
  position: relative;
}

.right-column::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -100vw;
  bottom: -20px;
  left: 0px;
  background-color: #F47F2C;
  border-radius: 24px;
  z-index: -1;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  background-color: #F47F2C;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 0px 0px #F47F2C;
}

.video-container iframe {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}
.column-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 26.5px;
  font-weight: 700;
  color: #5B5B5B;
  text-align: left;
  margin-bottom: -20px;
}

.reason-content {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  margin-bottom:-30px;
}

.reason-item_1 {
  flex: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 40px 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5B5B5B;
  line-height: 1.6;
}
.reason-item_2 {
  flex: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 40px 20px;
  margin-top: -6px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5B5B5B;
  line-height: 1.6;
}
.reason-item_3 {
  flex: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 40px 20px;
  padding-top: -40px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #5B5B5B;
  line-height: 1.2;
}

.highlight1-1 {
  font-size: 0.6em;
  font-weight: 800;
  color: #5B5B5B;
}
.highlight1-2 {
  font-size: 1.7em;
  font-weight: 800;
  color: #F47F2C;
}
.highlight1-3 {
  font-size: 0.9em;
  font-weight: 800;
  color: #5B5B5B;
}

.highlight2-1 {
  font-size: 0.8em;
  font-weight: 800;
  color: #5B5B5B;
}
.highlight2-2 {
  font-size: 1.6em;
  font-weight: 800;
  color: #F47F2C;
}
.highlight2-3 {
  font-size: 0.8em;
  font-weight: 800;
  color: #5B5B5B;
}

.highlight3-1 {
  font-size: 1.5em;
  font-weight: 800;
  color: #F47F2C;
}
.highlight3-4 {
  font-size: 1.5em;
  font-weight: 800;
  color: #F47F2C;
}
.highlight3-2 {
  font-size: 0.9em;
  font-weight: 800;
  color: #5B5B5B;
}
.highlight3-3 {
  font-size: 0.9em;
  font-weight: 300;
  color: #5B5B5B;
}

.industry-experience-inline {
  margin-top: 20px;
}

.industry-card-inline {
  padding: 0;
  text-align: center;
}
.industry-title-inline {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 26.5px;
  font-weight: 600;
  color: #5B5B5B;
  text-align: left;
  margin-bottom: 14px;
}

.industry-description-inline {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  text-align: left;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 80px;
}
.cta-section1nd-button {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 20px;
}
.cta-section2nd-button {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 80px;
}

.main-cta-btn {
  background-color: #F47F2C;
  border: none;
  border-radius: 26px;
  padding: 20px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 18px;
  font-weight: bold;
  min-width: 300px;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(244, 127, 44, 0.4);
}

.main-cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(244, 127, 44, 0.5);
}

.main-cta-btn.contact {
  background-color: white;
  border: 2px solid #F47F2C;
  box-shadow: 0 8px 20px rgba(244, 127, 44, 0.3);
}

.main-cta-btn.contact:hover {
  box-shadow: 0 12px 28px rgba(244, 127, 44, 0.4);
}

.main-cta-btn.contact .main-btn-text {
  color: #F47F2C;
}
.main-cta-btn.contact .main-btn-text-body {
  color: #F47F2C;
}

.main-cta-btn-body {
  background-color: #F47F2C;
  border: none;
  border-radius: 26px;
  width: 410px;
  height: 80px;
  padding: 25px auto;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 26px;
  font-weight: bold;
  min-width: 300px;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(244, 127, 44, 0.4);
}

.main-cta-btn-body:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(244, 127, 44, 0.5);
}

.main-cta-btn-body.contact {
  background-color: white;
  border: 2px solid #F47F2C;
  box-shadow: 0 8px 24px rgba(244, 127, 44, 0.3);
}

.main-cta-btn-body.contact:hover {
  box-shadow: 0 12px 32px rgba(244, 127, 44, 0.4);
}

.main-cta-btn-body.contact .main-btn-text {
  color: #F47F2C;
}
.main-cta-btn-body.contact .main-btn-text-body {
  color: #F47F2C;
}

/* aタグをボタンスタイルにする場合の追加スタイル */
a.main-cta-btn-body {
  background-color: #F47F2C;
  border: none;
  border-radius: 26px;
  width: 410px;
  height: 80px;
  padding: 25px auto;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 26px;
  font-weight: bold;
  min-width: 300px;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(244, 127, 44, 0.4);
  text-decoration: none;
  color: inherit;
}

a.main-cta-btn-body:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(244, 127, 44, 0.5);
}

a.main-cta-btn-body.contact {
  background-color: white;
  border: 2px solid #F47F2C;
  box-shadow: 0 8px 24px rgba(244, 127, 44, 0.3);
}

a.main-cta-btn-body.contact:hover {
  box-shadow: 0 12px 32px rgba(244, 127, 44, 0.4);
}

a.main-cta-btn-body.contact .main-btn-text-body {
  color: #F47F2C;
}

a.main-cta-btn-body .main-btn-text-body {
  color: white;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
}

a.main-cta-btn-body .main-btn-icon-body {
  width: 39px;
  height: 39px;
}

.main-btn-text {
  color: white;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
}
.main-btn-text-body {
  color: white;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
}

.main-btn-icon {
  width: 24px;
  height: 24px;
}
.main-btn-icon-body {
  width: 39px;
  height: 39px;
}

.cta-description {
  margin-top: 30px;
  text-align: center;
}

.cta-description-text {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.clients-section {
  background-color: white;
  border-top: 1px solid #e0e0e0;
  padding: 70px 0 20px;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.clients-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}

.clients-scroll {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(225px * 32 + 0px * 31);
}

.client-logo {
  flex-shrink: 0;
  width: 225px;
  height: 160px;
  margin-right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0px;
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  /* transform: scale(1.05); */
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-225px * 4));
  }
}

.renewal-rate-section {
  background-color: white;
  padding: 40px 0;
  width: 100%;
  margin: 0;
}
.renewal-content {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.renewal-left {
  flex: 0 0 40%;
  position: relative;
  background-color: #F47F2C;
  z-index: 0;
}

.renewal-left::before {
  content: '';
  position: absolute;
  top: -0px;
  left: -100vw;
  bottom: -0px;
  right: -20px;
  background-color: #F47F2C;
  border-radius: 24px;
  z-index: -1;
}

.renewal-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  text-align: left;
  margin: 0;
  padding: 40px;
}

.renewal-highlight1 {
  font-size: 0.9em;
  font-weight: 900;
  color: white
}
.renewal-highlight2 {
  font-family: 'Arvo', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 2.3em;
  font-weight: 900;
  color: white;
}
.renewal-highlight3 {
  font-family: 'Arvo', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 1.0em;
  font-weight: 800;
  color: white;
}
.renewal-highlight4 {
  font-size: 0.9em;
  font-weight: 700;
  color: white;
}

.renewal-right {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.graph-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graph-image {
  width: 90%;
  height: auto;
  display: block;
  max-width: none;
}


.renewal-subtitle-container {
  max-width: 1440px;
  margin: 100px auto 20px;
  padding: auto 80px auto 0;
  text-align: center;
}

.renewal-subtitle1 {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #5B5B5B;
  margin: 0;
  line-height: 1.4;
}
.qa-solutions-title-up {
  font-size: 26px;
  font-weight: 600;
  color: #5B5B5B;
  margin: 0;
  line-height: 1.4;
  
}
.renewal-subtitle2 {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 2.9vw;
  font-weight: 600;
  color: #F47F2C;
  margin: 10px;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 18px;
  position: relative;
}

.renewal-subtitle2::after {
  content: '';
  position: absolute;
  bottom: -33px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 24px solid #F47F2C;
}

.renewal-subtitle2::before {
  content: '';
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 22px solid #fff;
  z-index: 1;
}

.case-studies-section {
  background-color: white;
  padding: 0;
  width: 100%;
  margin: 0;
}

.case-studies-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
}

.case-studies-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  justify-content: flex-start;
  align-items: stretch;
}

.case-card {
  flex: 0 0 calc(100% / 1.5 - 15px);
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(0.95);
  height: auto;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  margin: 0px;
}

.case-card.clone {
  pointer-events: none;
}

.case-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: #F47F2C;
  box-shadow: 0 8px 24px rgba(251, 133, 49, 0.2);
}

/* Remove hover effects from case cards */
.case-card:hover {
  /* No hover effects */
}

.case-header {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  text-align: left;
}

.case-main {
  display: flex;
  gap: 30px;
  margin-bottom: 0px;
  align-items: flex-start;
  z-index: 2;
}

.case-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.case-right {
  flex: 0 0 150px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.case-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #5B5B5B;
  margin-bottom: 30px;
  line-height: 1.4;
}

.case-highlight {
  font-size: 1.0em;
  color: #5B5B5B;
  font-weight: 600;
}

.case-highlight-large {
  color: #F47F2C;
  font-size: 1.4em;
  font-weight: 800;
}
.case-highlight-large_s {
  color: #F47F2C;
  font-size: 1.1em;
  font-weight: 800;
}

.case-photo-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 0px solid #f9e6d9;
}

.photo-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: 3px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.photo-placeholder::before {
  font-size: 48px;
  color: #ccc;
}

.case-details {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.case-before,
.case-after {
  flex: 1;
}

.detail-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
}

.before-label {
  background-color: #ffebee;
  color: #c62828;
}

.after-label {
  background-color: #e8f5e8;
  color: #2e7d32;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #666;
  line-height: 1.3;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.detail-list li::before {
  position: absolute;
  left: 0;
  color: #F47F2C;
  font-size: 10px;
  top: 2px;
}

.case-voice {
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
}

.voice-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F47F2C;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}


.voice-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.3;
  margin: 0;
  font-style: italic;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 80px;
}

.slider-btn {
  background-color: #F47F2C;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background-color: #e6762a;
  transform: scale(1.1);
}

.slider-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #F47F2C;
  transform: scale(1.2);
}

.dot:hover {
  background-color: #F47F2C;
}

.qa-solutions-section {
  background-color: #ffffff;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(244, 127, 44, 0.15) 2px, transparent 0);
  background-size: 25px 25px;
  padding: 70px 0 80px;
  width: 100%;
  margin: 0;
  padding-bottom: 120px;
  position: relative;
}

.qa-solutions-section::before {
  display: none;
}

.qa-solutions-section > * {
  position: relative;
  z-index: 1;
}

.qa-solutions-section .container {
  max-width: 1140px;
}

.qa-solutions-header {
  text-align: center;
  margin-bottom: 80px;
}

.qa-solutions-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #5B5B5B;
  line-height: 1.4;
  margin-bottom: 20px;
}

.qa-solutions-subtitle {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 2.9vw;
  font-weight: 600;
  color: #F47F2C;
  margin: 0;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 20px;
}

.qa-solutions-subtitle::after {
  content: '';
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 26px solid #F47F2C;
}

.qa-solutions-subtitle::before {
  content: '';
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 24px solid #fff;
  z-index: 1;
}


.solution-item {
  margin-bottom: 50px;
  background-color: white;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.solution-item:last-child {
  margin-bottom: 0;
}

.solution-heading {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  background-color: #F47F2C;
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.solution-number {
  font-family: 'Arvo', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.solution-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.solution-image {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-text {
  flex: 1;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 16px;
  font-weight: 500;
}
.solution-image-size {
  width: 100%;
}

.solution-subheading {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  color: #5B5B5B;
  margin-bottom: 24px;
  line-height: 1.5;
}

.solution-description {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.solution-note {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  margin-top: 30px;
  text-align: left;
}

.competitor-comparison-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  width: 100%;
  margin: 0;
}

.comparison-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #5B5B5B;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
}

.table-container {
  background-color: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow-x: auto;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 10px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
}

.item-header,
.item-cell {
  width: 15%;
}

.ptw-header,
.competitor-header,
.ptw-cell,
.competitor-cell {
  width: 18.75%;
}

.comparison-table th {
  font-size: 18px;
  font-weight: 700;
  background-color: #f8f9fa;
}

.item-header {
  background-color: #5B5B5B !important;
  color: white;
  border-top-left-radius: 8px;
}

.ptw-header {
  background-color: #F47F2C !important;
  color: white;
  position: relative;
  border-left: 3px solid #F47F2C;
  border-right: 3px solid #F47F2C;
  border-bottom: 3px solid #F47F2C;
}

.ptw-header::after {
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 14px;
  color: white;
}

.competitor-header {
  color: #666;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.comparison-table td {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.item-cell {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #5B5B5B;
  text-align: left;
  padding-left: 24px;
}

.ptw-cell {
  background-color: #fff8f5;
  border-left: 3px solid #F47F2C;
  border-right: 3px solid #F47F2C;
  font-weight: 800;
  color: #5B5B5B;
  position: relative;
  font-size: 28px;
}

.comparison-table tbody tr:last-child .ptw-cell {
  border-bottom: 3px solid #F47F2C;
}

.competitor-cell {
  color: #666;
  background-color: white;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.sm-tx {
	font-size: 80%;
}

.highlight-number {
  color: #F47F2C;
  font-weight: 800;
  font-size: 1.1em;
}

.comparison-table tbody tr:last-child .item-cell {
  border-bottom-left-radius: 8px;
}

.comparison-table tbody tr:last-child .competitor-cell:last-child {
  border-bottom-right-radius: 8px;
}

.qa-coverage-section {
  background-color: #ffffff;
  background-image: 
    linear-gradient(rgba(244, 127, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 127, 44, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 80px 0;
  width: 100%;
  margin: 0;
  position: relative;
}

.qa-coverage-section::before {
  display: none;
}

.qa-coverage-section > * {
  position: relative;
  z-index: 1;
}

.qa-coverage-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #5B5B5B;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.coverage-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #e9ecef;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.coverage-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #F47F2C, #ff9f5a, #F47F2C);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.coverage-item:hover {
  /* transform: translateY(-8px); */
  /* box-shadow: 0 12px 40px rgba(251, 133, 49, 0.15); */
}

.coverage-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.coverage-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-space {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.coverage-header-icon {
  width:100%;
}

.coverage-text {
  flex: 1;
}

.coverage-heading {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #5B5B5B;
  margin-bottom: 0;
  line-height: 1.3;
}

.coverage-sub {
  font-size: 20px;
  font-weight: 500;
  color: #F47F2C;
}

.coverage-description {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.coverage-note {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  text-align: center;
  margin: 0;
  margin-top: 50px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.implementation-flow-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  width: 100%;
  margin: 0;
  position: relative;
}

.implementation-flow-header {
  text-align: center;
  margin-bottom: 80px;
}

.implementation-flow-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #5B5B5B;
  line-height: 1.4;
  margin-bottom: 20px;
}

.implementation-flow-subtitle {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 1.3vw;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 1100px;
  margin: 0 auto;
}

.flow-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 25px;
  position: relative;
}

.step-item {
  flex: 1;
  max-width: 290px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-item:last-child .step-arrow {
  display: none;
}

.step-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  background-color: #F47F2C;
  padding: 6px 30px;
  border-radius: 12px;
  border: 1px solid #ddd;
  position: absolute;
  top: -10px;
  left: 10px;
  z-index: 3;
}

.step-content {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.step-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #F47F2C, #ff9f5a, #F47F2C);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.step-content:hover {
  /* transform: translateY(-8px); */
  /* box-shadow: 0 12px 40px rgba(251, 133, 49, 0.15); */
}

.step-heading {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #333;
  margin: 0;
  line-height: 1.3;
  background: linear-gradient(135deg, #F47F2C 0%, #ff9f5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(251, 133, 49, 0.1);
  position: relative;
}

.step-icon-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 0px solid #ccc;
  flex-shrink: 0;
}

.step-heading-icon {
  width: 70%;
}
.step-description {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

.step-arrow {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.arrow-shape {
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 25px solid #F8D8C1;
}

.faq-section {
  background-color: white;
  padding: 80px 0;
  width: 100%;
  margin: 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #5B5B5B;
  line-height: 1.4;
  margin: 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: white;
}

.faq-item:hover {
  /* border-color: #F47F2C; */
  /* box-shadow: 0 4px 12px rgba(251, 133, 49, 0.1); */
}

.faq-item.active {
  border-color: #F47F2C;
  box-shadow: 0 4px 12px rgba(251, 133, 49, 0.15);
}

.faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-item.active .faq-question {
  background-color: #fff8f5;
  border-bottom: 1px solid #e9ecef;
}

.question-text {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #5B5B5B;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.qa-label {
  color: #F47F2C;
  font-weight: 800;
  margin-right: 8px;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  color: #F47F2C;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fafafa;
  opacity: 0;
  will-change: height, opacity;
}

.faq-item.active .faq-answer {
  height: auto;
  opacity: 1;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease 0.1s;
}

.faq-answer-content {
  padding: 24px 30px;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}

.faq-item .faq-answer .faq-answer-content {
  padding: 24px 30px !important;
  box-sizing: border-box;
}

.faq-item .faq-answer .answer-text {
  padding: 10px 20px;
  margin: 10px;
}

.answer-text {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.7;
  margin: 0;
  will-change: auto;
  backface-visibility: hidden;
}

.cta-section2nd {
  background-color: white;
  padding: 20px 0 80px;
  width: 100%;
  margin: 0;
  position: relative;
}

.cta-section2nd::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('img/bg_cta02.webp');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  z-index: 1;
  opacity: 0.4;
}

.cta-section2nd::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: url('img/bg_cta01.webp');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: auto 100%;
  z-index: 1;
  opacity: 0.4;
}
.cta-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 5;
}
.say-left-l {
	position: absolute;
	left: -40px;
	width: 10%;
}
.say-right-l {
	position: absolute;
	right: -40px;
	width: 10%;
}
.say-left-r {
	position: absolute;
	left: -10px;
	width: 10%;
}
.say-right-r {
	position: absolute;
	right: -10px;
	width: 10%;
}

.say-left-l-final {
	position: absolute;
	left: -40px;
	width: 10%;
}
.say-right-l-final {
	position: absolute;
	right: -40px;
	width: 10%;
}
.say-left-r-final {
	position: absolute;
	left: -10px;
	width: 10%;
}
.say-right-r-final {
	position: absolute;
	right: -10px;
	width: 10%;
}

.cta-button-text {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0;
  margin-bottom: 16px;
  line-height: 1.4;
  padding: 0;
  position: relative;
}

.cta-button-text .highlight {
  color: #F47F2C;
  font-weight: 800;
  font-size: 1.1em;
}

.final-cta-section {
  background-color: white;
  padding: 80px 0 140px;
  width: 100%;
  margin: 0;
}

.final-cta-title-color {
	color: #F47F2C;
}
.final-cta-title {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  font-size: 33px;
  font-weight: 700;
  color: #5B5B5B;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.7;
}

.footer {
  background-color: #2c2c2c;
  color: #ffffff;
  padding: 40px 0 20px;
}

.footer-content {
  margin-bottom: 30px;
}

.company-info {
  text-align: left;
  margin-bottom: 20px;
}

.company-info-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 12px;
}

.info-label {
  flex: 0 0 120px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.info-content {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #e0e0e0;
  font-weight: normal;
}

.license-item {
  margin-bottom: 4px;
  font-size: 13px !important;
}

.footer-links {
  text-align: left;
  margin-bottom: 20px;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 30px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #F47F2C;
  text-decoration: underline;
}

.copyright {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid #444444;
  width: 100%;
}

.copyright p {
  font-size: 12px;
  color: #999999;
  margin: 0;
}