@charset "UTF-8";
/*----------------------------------------
	Web Fonts
----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  word-break: break-word;
  height: 100%;
  background-color: #fff;
  overflow-x: hidden;
}

/* ===== Header Styles ===== */
.header {
    background-color: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0 13px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

/* ===== Logo Styles ===== */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 32px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* ===== Contact Button Styles ===== */
.contact-button {
    background-color: #ff8c42;
    color: white;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 3px 1px 1px #e67326;
}

.contact-button:hover {
    background-color: #ff7a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 1px 1px #e67326;
}

/* ===== Main Content ===== */
.main-content {
    min-height: calc(100vh - 80px);
}

/* ===== Hero Section ===== */
.hero-section {
    height: 880px;
    background-image: url('../images/hero-bg-pc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    padding: 110px 0 80px;
}

/*.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}*/

.hero-container {
	width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
    width: 100%;
}

.hero-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px 0;
	width: 60%;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 35px;
    text-align: center;
}

/* ===== Hero Text Styles ===== */
.hero-subtitle {
    font-size: min(2.41666666666vw, 29px);
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
	line-height: 1;
}
.hero-subtitle span.bg {
    background:linear-gradient(transparent 70%, #ff6 70%);
}

.hero-subtitle span.bg .zero-large {
    font-size: min(4vw, 48px);
    font-weight: 600;
}

.hero-title {
    font-size: min(4.3333333334vw, 52px);
    font-weight: 900;
    font-style: italic;
    color: #115edc;
    line-height: 1.05;
	margin-bottom: 8px;
}
.hero-title span {
    font-size: min(5.33333334vw, 64px);
}

.zoom-phone-image {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.hero-service {
    font-size: 40px;
    color: #333;
    font-weight: 700;
}

/* ===== Hero Features ===== */
.hero-features {
    display: flex;
    justify-content: center;
    gap: min(2.3vw, 35px);
	width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    padding: 0 0px;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: linear-gradient(90deg, #3f6cdf 0%, #00adc2 100%);
    color: white;
    border-radius: 50%;
    padding: 40px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
    height: 220px;
    justify-content: center;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.feature-icon {
    font-size: min(2.3333333vw, 28px);
    margin-bottom: min(1.25vw, 15px);
}

.feature-text {
    font-size: min(2.166666666vw, 26px);
    line-height: 1.2;
	font-weight: 800;
	color: #fff;
}
.feature-text span {
    font-size: min(2.583333333vw, 31px);
}


/* ===== Hero CTA ===== */
.hero-cta-container {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-cta {
    background-color: #ff8c42;
    color: white;
    text-decoration: none;
    padding: 15px 50px 14px;
    border-radius: 50px;
    font-size: 32px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 1px 1px #e67326;
}

.hero-cta:hover {
    background-color: #ff7a2b;
    transform: translateY(-1px);
    box-shadow: 0 5px 1px 1px #e67326;
}

/* ===== Mobile CTA Section ===== */
.mobile-cta-section {
    background-color: white;
    padding: 40px 0;
    text-align: center;
    display: none;
}

.mobile-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Section 01: Challenges Section ===== */
.challenges-section {
    background-color: #eef6fb;
    padding: 80px 0;
}

.challenges-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.challenges-subtitle {
    color: #2c5aa0;
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.challenges-title {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

.challenges-main {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.challenges-content {
    flex: 1;
}

/* ===== Challenges Grid ===== */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 20px;
    justify-content: center;
	width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.challenge-card-01,
.challenge-card-02,
.challenge-card-03,
.challenge-card-04,
.challenge-card-05,
.challenge-card-06 {
    background: white;
    border-radius: 12px;
    padding: 16px 20px 20px;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.challenge-card-card-01::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('../images/challenge-bg-icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
}
.challenge-card-card-02::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('../images/challenge-bg-icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
}
.challenge-card-card-03::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('../images/challenge-bg-icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
}
.challenge-card-card-04::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('../images/challenge-bg-icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
}
.challenge-card-card-05::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('../images/challenge-bg-icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
}
.challenge-card-card-06::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: url('../images/challenge-bg-icon.svg') no-repeat center;
    background-size: contain;
    opacity: 0.06;
    z-index: 1;
}

.challenge-icon {
    position: absolute;
    top: 15px;
    left: 12px;
    z-index: 2;
}

.warning-icon {
    width: 50px;
    height: 35px;
}

.challenge-title {
    color: #2c5aa0;
    font-size: min(1.833333333vw, 22px);
    font-weight: 700;
    margin: 0 0 10px 0;
    padding-top: 40px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.challenge-description {
    color: #333;
    font-size: min(1.333333333vw, 15px);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ===== Challenges Illustration ===== */
.challenges-illustration {
    flex: 0 0 370px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.illustration-image {
    width: 100%;
    height: auto;
    max-width: 480px;
    object-fit: contain;
}

/* ===== Case Studies Section ===== */
.case-studies-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

/* ===== Case Studies Header ===== */
.case-studies-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-studies-subtitle {
    color: #0068b7;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
}

.case-studies-title {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

/* ===== Case Studies Grid ===== */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Case Study Card ===== */
.case-study-card {
    background: white;
    border: 7px solid #e3e3e3;
    overflow: hidden;
}



/* ===== Case Image ===== */
.case-image {
    height: 160px;
    overflow: hidden;
    position: relative;
    margin: 8px 8px 0 8px;
}

.case-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Case Content ===== */
.case-content {
    padding: 0 10px 10px 10px;
}

.case-industry {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 5px 0 10px;
	line-height: 1.2;
}

/* ===== Problem Section ===== */
.case-problem {
    margin-bottom: 16px;
}

.case-problem-title {
    background: none;
    color: #E74C3C;
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 2px 0;
    display: block;
	line-height: 1.2;
}

.case-problem-text {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* ===== Solution Section ===== */
.case-solution {
    margin-bottom: 16px;
}

.case-solution-title {
    background: none;
    color: #2D8CFF;
    font-size: 18px;
    font-weight: 600 ;
    padding: 0;
    margin: 0 0 2px 0;
    display: block;
}

.case-solution-text {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* ===== Results Section ===== */
.case-results {
    margin-bottom: 0 !important;
    background: linear-gradient(90deg, #3f6cdf 0%, #00adc2 100%) !important;
    padding: 12px !important;
    margin-top: 16px !important;
    text-align: left !important;
}

.case-results-title {
    background: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    margin: 0 0 8px 0;
    display: block ;
}

.results-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    text-align: left !important;
}

.case-results .results-list li {
    font-size: 16px;
    color: white ;
    line-height: 1.2;
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
    display: block;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
	font-weight: 700;
}

.case-results .results-list li:before {
    content: '•' !important;
    color: white !important;
    font-weight: bold !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    text-align: left !important;
}

.results-list li:last-child {
    margin-bottom: 0;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background-color: #e8f4fd;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FAQ Header ===== */
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    color: #2D8CFF;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.faq-title {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

/* ===== FAQ Grid ===== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== FAQ Item ===== */
.faq-item {
    background-color: white;
    padding: 20px;
    box-shadow: 0 3px 0 0 rgba(210, 210, 210, 0.4);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 10px;
}

/* ===== FAQ Icon ===== */
.faq-icon {
    background: linear-gradient(90deg, #3f6cdf 0%, #00adc2 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
	padding-bottom: 4px;
    font-weight: bold;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

/* ===== Question Text ===== */
.question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ===== FAQ Answer ===== */


.faq-answer p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* ===== Footer Section ===== */
.footer {
    background-color: #ffffff;
}

/* ===== Footer Main ===== */
.footer-main {
    padding: 60px 0;
    background-color: #ffffff;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* ===== Contact Section ===== */
.footer-contact {
    margin-bottom: 40px;
}

.contact-form-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ff8c42;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 1px 1px #e67326;
    gap: 4px;
}

.contact-form-button:hover {
    background-color: #ff7a2b;
    transform: translateY(-1px);
    box-shadow: 0 6px 2px 1px #e67326;
}

.contact-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.contact-main-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.contact-main-text i {
    font-size: 24px;
}

/* ===== Company Info ===== */
.footer-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.company-logo {
    display: flex;
    justify-content: center;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.corporate-link {
    color: #2D8CFF;
    text-decoration: underline;
    font-size: 14px;
    font-family: 'Noto Sans JP', sans-serif;
    transition: color 0.3s ease;
}

.corporate-link:hover {
    color: #1a6dd9;
    text-decoration: underline;
}

/* ===== Copyright Bar ===== */
.footer-copyright {
    background-color: #1e5f99;
    padding: 16px 0;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.copyright-text {
    color: white;
    font-size: 14px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* ===== Section 05: Pricing Plans ===== */
.main_sec { 
    background-color: #ffffff;
    padding: 80px 0;
}

.pricing-container {
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto;
}

/* ===== Pricing Header ===== */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-subtitle {
    color: #0068b7;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
}

.pricing-title {
    color: #333;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}

/*----------- 料金表 -----------*/
.osusume_ttl {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    white-space: nowrap;
    margin: 0;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
}

.osusume_ttl span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    background-color: transparent;
}

.osusume_ttl span:before,
.osusume_ttl span:after {
    content: "";
    display: block;
}

.osusume_ttl span:before {
    width: 16px;
    height: 1px;
    transform: rotate(60deg);
    box-sizing: border-box;
    background-color: #333333;
	margin-top: 3px;
}

.osusume_ttl span:after {
    content: "";
    width: 16px;
    height: 1px;
    transform: rotate(-60deg);
    box-sizing: border-box;
    background-color: #333333;
	margin-top: 3px;
}

.price_table {
    width: 1035px;
    margin: 0 auto;
    display: flex;
    white-space: nowrap;
    gap: 5px;
}

.price_table .item_name {
    width: 210px;
    flex-shrink: 0;
}

.price_table .plan_col {
    width: 270px;
    flex-shrink: 0;
}

.price_table .plan_col {
    width: 270px;
}

.price_table .plan_col .ttl {
    font-size: 24px;
    text-align: center;
    border-radius: 15px 15px 0 0;
    font-weight: bold;
    padding-top: 10px;
    margin-bottom: 0;
}

.price_table .plan_col .ttl.p_02 {
    color: #fff;
    background: #3F6CDF;
    background: linear-gradient(90deg,rgba(63, 108, 223, 1) 0%, rgba(0, 173, 194, 1) 100%);
}

.price_table .plan_col .ttl.p_03 { 
    background: #4598F0; 
    color: #fff;
}

.price_table .item_name {
    width: 210px;
}

.price_table .item_name p {
    background: #E9E9E9;
    text-align: center;
    font-weight: 700;
    font-size: 17px;
    height: 56px;
    line-height: 56px;
    margin-bottom: 5px;
}

.price_table .item_name p.none_col { 
    background-color: transparent;
}

.price_table .plan_col p {
    height: 56px;
    margin-bottom: 5px;
    background: #ECF2F9;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    padding-top: 10px;
}

.price_table .plan_col .p_text01 {
    background: #D0E6FF;
    font-size: 18px;
    font-weight: 500;
	padding-top: 13px;

}

.price_table .plan_col .p_text02 {
    background: #56B4F7;
    font-size: 18px;
    color: #fff;
	padding-top: 13px;
}

.price_table .plan_col .p_text03 {
    background: #358BE8;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
	padding-top: 13px;
}

.price_table .plan_col .p_price {
    font-size: 24px;
    line-height: 0.6;
}

.price_table .plan_col .p_price span { 
    font-size: 45px;
}

.price_table .plan_col .p_price02 {
    font-size: 22px;
    line-height: 1;
}

.price_table .plan_col .p_price02 span { 
    font-size: 34px;
}

.price_table .plan_col .option {
    font-size: 16px;
    line-height: 1.4;
    padding-top: 5px;
}

.price_table .plan_col .option02 {
    font-size: 17px;
    line-height: 1.3;
    padding-top: 5px;
}

.price_table .item_name p:first-child,
.price_table .plan_col p:first-child { 
    margin-bottom: 0;
}

.price_table .plan_col.recommend {
    position: relative;
}

.price_table .plan_col.recommend:before {
    content: "";
    display: block;
    width: 270px;
    height: calc(100% - 6px);
    border: 6px solid #FFE87C;
    position: absolute;
    top: -6px;
    left: -6px;
    border-radius: 18px;
}

.scroll {
    overflow-x: auto;
    padding-top: 50px;
    margin-top: -50px;
}

.scroll::-webkit-scrollbar {
    height: 5px;
}

.scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
}

.scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
}

/* Desktop: Hide scrollbar when screen is wide enough */
@media (min-width: 1100px) {
    .scroll {
        overflow-x: visible;
        padding-top: 50px;
        margin-top: -50px;
    }
}

/* ===== Responsive Design ===== */

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
	.feature-item {
    padding: 30px 5px;
    text-align: center;
    width: 190px;
    height: 190px;
    justify-content: center;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}
	
    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .challenge-card::after {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }
    
    /* Case Studies Tablet */
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .case-studies-title {
        font-size: 36px;
    }
    
    /* FAQ Tablet */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    /* Pricing Table Tablet */
    .main_sec {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .osusume_ttl {
        top: -40px;
        font-size: 12px;
    }
    
    /* Footer Tablet */
    .footer-main {
        padding: 50px 0;
    }
    
    .contact-form-button {
        padding: 16px 36px;
    }
    
    .contact-main-text {
        font-size: 24px;
    }
    
    .contact-main-text i {
        font-size: 20px;
    }
    
    .footer-logo-image {
        height: 36px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 6px 0 10px;
    }
    
    .header-container {
        padding: 0 10px;
        gap: 16px;
    }
    
    .logo-image {
        height: 28px;
        max-width: 180px;
    }
    
    .contact-button {
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 25px;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        background-image: none;
        padding: 0px;
		height: auto;
    }
	.hero-section .sp_box img {
		width: 100%;
		height: auto;
		overflow: hidden;
	}
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-content {
        margin: 0 auto 30px auto;
        padding: 35px 30px;
        max-width: 90%;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .zero-large {
        font-size: 32px;
    }
    
    .hero-title {
        font-size: 38px;
        margin-bottom: 15px;
    }
    
    .zoom-phone-image {
        height: 42px;
        max-width: 280px;
    }
    
    .hero-service {
        font-size: 30px;
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        padding: 0 16px;
        max-width: 500px;
    }
    
    .feature-item {
        padding: 18px 12px;
        width: 180px;
        height: 180px;
        justify-self: center;
    }
    
    .feature-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .feature-text {
        font-size: 20px;
    }
    
    .hero-cta {
        padding: 15px 35px;
        font-size: 24px;
    }
    
    /* Mobile CTA Display Control */
    .hero-cta-desktop {
        display: none;
    }
    
    .mobile-cta-section {
        display: block;
    }
	
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }
	  .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        /*max-width: 350px;*/
        margin: 0 auto;
        justify-items: center;
    }
	 .challenges-illustration {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
    }
    
    .logo-image {
        height: 24px;
        max-width: 160px;
    }
    
    .contact-button {
        padding: 5px 16px 6px;
        font-size: 13px;
		box-shadow: 0 2px 1px 1px #e67326;
    }
    
    /* Hero Section Small Mobile */
    .hero-container {
        padding: 0 12px;
    }
    
    .hero-content {
        padding: 30px 25px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .zero-large {
        font-size: 26px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .zoom-phone-image {
        height: 36px;
        max-width: 240px;
    }
    
    .hero-service {
        font-size: 24px;
    }
    
    .hero-features {
        gap: 15px;
        margin-bottom: 25px;
        padding: 0 12px;
        max-width: 400px;
    }
    
    .feature-item {
        padding: 15px 10px;
        width: 150px;
        height: 150px;
    }
    
    .feature-icon {
        font-size: 22px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .hero-cta {
        padding: 12px 28px;
        font-size: 20px;
    }
    
    /* Keep mobile CTA section visible */
    .hero-cta-desktop {
        display: none;
    }
    
    .mobile-cta-section {
        display: block;
        padding: 18px 0 23px;
    }
    
    /* Case Studies Mobile */
    .case-studies-section {
        padding: 60px 0;
    }
    
    .case-studies-container {
        padding: 0 16px;
    }
    
    .case-studies-header {
        margin-bottom: 40px;
    }
    
    .case-studies-title {
        font-size: 32px;
    }
   
    
    .case-content {
        padding: 0 8px 8px 8px;
    }
    
    .case-industry {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 16px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
        border-radius: 5px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .faq-answer {
        margin-left: 40px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    /* Footer Mobile */
    .footer-main {
        padding: 40px 0;
    }
    
    .footer-container {
        padding: 0 16px;
        max-width: 100%;
    }
    
    .footer-contact {
        margin-bottom: 32px;
    }
    
    .contact-form-button {
        padding: 14px 30px;
        gap: 2px;
    }
    
    .contact-subtitle {
        font-size: 12px;
    }
    
    .contact-main-text {
        font-size: 20px;
        gap: 6px;
    }
    
    .contact-main-text i {
        font-size: 18px;
    }
    
    .footer-company {
        gap: 12px;
    }
    
    .footer-logo-image {
        height: 32px;
    }
    
    .corporate-link {
        font-size: 13px;
    }
    
    .footer-copyright {
        padding: 12px 0;
    }
    
    .copyright-text {
        font-size: 12px;
    }
    
    /* Pricing Table Mobile */
    .main_sec {
        padding: 40px 0;
    }
    
    .pricing-container {
        width: 95%;
    }
    
    .pricing-header {
        margin-bottom: 40px;
    }
    
    .pricing-title {
        font-size: 32px;
    }
    
    .osusume_ttl {
        top: -35px;
        font-size: 11px;
    }
    
    .scroll {
        padding-top: 40px;
        margin-top: -40px;
    }
    
    .price_table {
        width: 100%;
        min-width: 815px;
        gap: 5px;
    }
    

    
    .price_table .item_name {
        width: 180px;
    }
    
    .price_table .plan_col {
        width: 200px;
    }
    
    .price_table .plan_col.recommend:before {
        width: 200px;
    }
    
    .price_table .item_name p {
        font-size: 14px;
        height: 50px;
        line-height: 50px;
    }
    
    .price_table .plan_col p {
        height: 50px;
        font-size: 16px;
        padding-top: 8px;
    }
    
    .price_table .plan_col .ttl {
        font-size: 18px;
    }
    
    .price_table .plan_col .p_text01,
    .price_table .plan_col .p_text02,
    .price_table .plan_col .p_text03 {
        font-size: 14px;
    }
    
    .price_table .plan_col .p_price {
        font-size: 18px;
    }
    
    .price_table .plan_col .p_price span {
        font-size: 32px;
    }
    
    .price_table .plan_col .p_price02 {
        font-size: 16px;
    }
    
    .price_table .plan_col .p_price02 span {
        font-size: 24px;
    }
    
    .price_table .plan_col .option {
        font-size: 12px;
        padding-top: 3px;
    }
    
    .price_table .plan_col .option02 {
        font-size: 13px;
        padding-top: 3px;
    }
    
    /* Challenges Section Small Mobile */
    .challenges-container {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        /*max-width: 350px;*/
        margin: 0 auto;
        justify-items: center;
    }
    
    .challenge-card {
        padding: 20px 15px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .challenge-card::after {
        width: 60px;
        height: 60px;
        bottom: -10px;
        right: -10px;
    }
    
    .challenge-icon {
        left: 15px;
    }
    
    .challenge-title {
        font-size: 15px;
    }
    
    .challenge-description {
        font-size: 12px;
    }
    
    /* Challenges Section Mobile */
    .challenges-section {
        padding: 50px 0;
    }
    
    .challenges-container {
        padding: 0 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .challenges-main {
        flex-direction: column;
        gap: 40px;
    }
    
    .challenges-header {
        margin-bottom: 40px;
    }
    
    .challenges-subtitle {
        font-size: 14px;
    }
    
    .challenges-title {
        font-size: 26px;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
		width: 96%;
        margin: 0 auto;
        justify-items: center;
    }
    
    .challenge-card {
        padding: 25px 20px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .challenge-title {
        font-size: 18px;
    }
    
    .challenge-description {
        font-size: 14px;
    }
    
    .challenges-illustration {
        display: none;
    }
    
    /* Case Studies Small Mobile */
    .case-studies-section {
        padding: 50px 0;
    }
    
    .case-studies-container {
        padding: 0 12px;
    }
    
    .case-studies-title {
        font-size: 28px;
    }
    
    .case-studies-grid {
        gap: 16px;
        /*max-width: 350px;*/
    }
    
    .case-content {
        padding: 0 8px 8px 8px;
    }
    
    .case-industry {
        font-size: 20px;
        margin-bottom: 16px;
    }
    

    

    /* FAQ Small Mobile */
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-container {
        padding: 0 12px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-grid {
        gap: 12px;
    }
    
    .faq-item {
        padding: 16px;
    }
    
    .faq-question {
        gap: 6px;
        margin-bottom: 10px;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .question-text {
        font-size: 17px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Footer Small Mobile */
    .footer-main {
        padding: 32px 0;
    }
    
    .footer-container {
        padding: 0 12px;
    }
    
    .footer-contact {
        margin-bottom: 24px;
    }
    
    .contact-form-button {
        padding: 12px 24px;
        gap: 2px;
    }
    
    .contact-subtitle {
        font-size: 11px;
    }
    
    .contact-main-text {
        font-size: 18px;
        gap: 4px;
    }
    
    .contact-main-text i {
        font-size: 16px;
    }
    
    .footer-logo-image {
        height: 28px;
    }
    
    .corporate-link {
        font-size: 12px;
    }
    
    .footer-copyright {
        padding: 10px 0;
    }
    
    .copyright-text {
        font-size: 11px;
    }
    
    /* Pricing Table Small Mobile */
    .main_sec {
        padding: 32px 0;
    }
    
    .pricing-container {
        width: 96%;
		margin-left: 4%
    }
    
    .pricing-header {
        margin-bottom: 30px;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .osusume_ttl {
        top: -30px;
        font-size: 10px;
    }
    
    .scroll {
        padding-top: 60px;
        margin-top: -35px;
		padding-bottom: 30px;
		padding-right: 30px;
    }
    
    .price_table {
        min-width: 765px;
        gap: 5px;
    }
    
    .price_table .item_name {
        width: 160px;
    }
    
    .price_table .plan_col {
        width: 200px;
    }
    
    .price_table .plan_col.recommend:before {
        width: 200px;
    }
    
    .price_table .item_name p {
        font-size: 13px;
        height: 45px;
        line-height: 45px;
    }
    
    .price_table .plan_col p {
        height: 45px;
        font-size: 14px;
        padding-top: 6px;
    }
    
    .price_table .plan_col .ttl {
        font-size: 16px;
    }
    
    .price_table .plan_col .p_price span {
        font-size: 28px;
    }
    
    .price_table .plan_col .p_price02 span {
        font-size: 20px;
    }
}

/* ===== Section 02: Solution Section Styles ===== */
.solution-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.solution-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Solution Header ===== */
.solution-header {
    margin-bottom: 60px;
}

/* PC Layout: Left-Right */
.solution-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.solution-device-image {
    flex: 0 0 auto;
    width: 450px;
}

.device-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.solution-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.solution-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solution-header-content .zoom-phone-logo {
    height: 74px;
    width: auto;
    object-fit: contain;
}

.solution-header-content .solution-subtitle {
    color: #333;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 45px;
	vertical-align:top;
}

.solution-header-content .solution-main-title {
    font-size: 46px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.0;
}

.solution-price-badge {
    background: linear-gradient(90deg, #3f6cdf 0%, #00adc2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
}

/* デスクトップ版（1000px以上）: 1列表示 */
.price-text-desktop {
    display: block;
    font-size: 21px;
    font-weight: 700;
}

.price-text-mobile {
    display: none;
}

.price-line1 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.price-line2 {
    font-size: 18px;
    font-weight: 600;
}

/* ===== Problems vs Solutions Comparison ===== */
.comparison-section {
    padding: 0;
    margin-bottom: 60px;
    background: transparent;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.problems-solutions-container {
    display: flex;
    gap: 3px;
    align-items: stretch;
}

.problems-column {
    flex: 1;
    background-color: #ffeaea;
    padding: 28px 30px; 
    margin: 15px 0;
}

.solutions-column {
    flex: 1;
    background-color: #e3f2fd;
    padding: 5px 30px; /* 青背景: そのまま */
    border: 4px solid #ffd700;
}

.arrow-column {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.solution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* PC版: 右向き矢印を表示 */
.arrow-right {
    display: block;
}

.arrow-down {
    display: none;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px;
    padding-bottom: 16px;
}
.solutions-column .column-header {
    padding-bottom: 0px;
}

.problems-header h4 {
    color: #c33c49;
    font-size: 27px;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
}

.solutions-header h4 {
    color: #2D8CFF;
    font-size: 28px;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0; /* 文字の上下余白15px */
}

.zoom-phone-logo-small {
    height: 54px;
    width: auto;
    object-fit: contain;
	vertical-align: top;
}

.problem-icon-img {
    width: 30px;
    height: 40px;
    object-fit: contain;
	margin-top: 3px;
}

.solution-icon-img {
    width: 36px;
    height: 40px;
    object-fit: contain;
	margin-top: 6px;
}

.problems-list,
.solutions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    margin-bottom: 8px; /* liのボトムマージン15px */
}
.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 0;
    margin-bottom: 4px; /* liのボトムマージン15px */
}

.problem-item:last-child,
.solution-item:last-child {
    margin-bottom: 0; /* 最後の要素はマージンなし */
}

.problem-x-img {
    width: 22px;
    height: 22px;
    margin-top: 5px;
    flex-shrink: 0;
    object-fit: contain;
}

.solution-check-img {
    width: 22px;
    height: 22px;
    margin-top: 10px;
    flex-shrink: 0;
    object-fit: contain;
}

.problem-item span,
.solution-item span {
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.solution-item span h5 {
    font-size: 24px;
	display: inline-block;
}

/* ===== Results Section ===== */
.results-section {
    text-align: left;
}

.results-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: left;
}

.results-list {
    text-align: center; /* リスト項目は中央揃えを維持 */
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.result-item {
    text-align: center;
}

.result-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 6px;
}

.result-title {
    font-size: 25px;
    font-weight: 800;
    color: #2D8CFF;
    margin-bottom: 5px;
    font-family: 'Noto Sans JP', sans-serif;
}
.result-title span {
    font-size: 30px;
}

.result-subtitle {
    font-size: 18px;
    color: #333;
    line-height: 1.2;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
}

/* ===== Section 02 Responsive Styles ===== */

/* 1000px未満: 価格バッジテキスト2列表示 */
@media (max-width: 999px) {
    .price-text-desktop {
        display: none;
    }
    
    .price-text-mobile {
        display: block;
    }
}

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .solution-header-content {
        gap: 40px;
    }
    
    .solution-device-image {
        width: 380px;
    }
    
    .solution-title {
        font-size: 36px;
    }
    
    .solution-subtitle {
        font-size: 36px;
    }
    
    .solution-main-title {
        font-size: 32px;
    }
    
    .zoom-phone-logo {
        height: 40px;
    }
    
    .problems-solutions-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .problems-column {
        order: 1;
        padding: 5px 25px; /* 赤背景: 上下を小さく (25px → 5px) */
        margin: 20px 0; /* 上下マージン20px追加 */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .arrow-column {
        order: 2;
        padding: 20px 0;
    }
    
    /* タブレット版: 下向き矢印に切り替え */
    .arrow-right {
        display: none;
    }
    
    .arrow-down {
        display: block;
    }
    
    .solutions-column {
        order: 3;
        padding: 45px 25px; /* 青背景: 上下20px追加で大きく (25px + 20px = 45px) */
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        border: 3px solid #ffd700;
    }
    
    .results-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile Design - スマホ版: 縦並びレイアウト */
@media (max-width: 768px) {
    .solution-section {
        padding: 60px 0;
    }
    
    .solution-container {
        padding: 0 016px;
    }
    
    .solution-header {
        margin-bottom: 40px;
    }
    
    /* スマホ版: 縦並び（上から順に配置） */
    .solution-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    /* スマホ版: テキストを最初に配置 */
    .solution-text-content {
        align-items: center;
        text-align: center;
        order: 1;
    }
    
    /* スマホ版: デバイス画像を下に配置 */
    .solution-header-content .solution-device-image {
        order: 2;
        width: 320px;
    }
    
    .solution-header-content .solution-title {
        font-size: 28px;
        justify-content: center;
    }
    
    .solution-header-content .solution-subtitle {
        font-size: 28px;
    }
    
    .solution-header-content .solution-main-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
		margin-top: -5px;
    }
    
    .solution-header-content .solution-price-badge {
        font-size: 16px;
        padding: 12px 10px;
        text-align: center;
        margin-bottom: 0;
        background: linear-gradient(90deg, #3f6cdf 0%, #00adc2 100%);
		line-height: 1.1;
    }
    
    .price-line1,
    .price-line2 {
        font-size: 16px;
    }
	.solutions-column .column-header {
    padding-bottom: 10px;
}
    
    .solution-header-content .zoom-phone-logo {
        height: 45px;
    }
	
	.comparison-container {
		width: 100%;
		padding: 0 !important;
}
	.problem-x-img {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex-shrink: 0;
    object-fit: contain;
}

.solution-check-img {
    width: 18px;
    height: 18px;
    margin-top: 7px;
    flex-shrink: 0;
    object-fit: contain;
}
	.problem-icon-img {
    width: 25px;
    height: 30px;
    object-fit: contain;
	margin-top: 8px;
}

.solution-icon-img {
    width: 29px;
    height: 30px;
    object-fit: contain;
	margin-top: 6px;
}
	.zoom-phone-logo-small {
    height: 35px;
    width: auto;
    object-fit: contain;
	vertical-align: top;
}
    
    .comparison-section {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .problems-solutions-container {
        flex-direction: column;
        gap: 0px;
    }
    
    .problems-column {
        order: 1;
        padding: 20px 20px; /* 赤背景: 上下を小さく (25px → 5px) */
        margin: 0; /* 上下マージン20px追加 */
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .arrow-column {
        order: 2;
        padding: 0;
    }
    
    /* スマホ版: 下向き矢印に切り替え */
    .arrow-right {
        display: none;
    }
    
    .arrow-down {
        display: block;
    }
    
    .solutions-column {
        order: 3;
        padding: 20px 20px; /* 青背景: 上下20px追加で大きく (25px + 20px = 45px) */
        width: 96%;
        margin-left: auto;
        margin-right: auto;
        border: 3px solid #ffd700;
    }
    
    .column-header h4 {
        font-size: 20px;
    }
	.solutions-column .column-header h4 {
        padding: 0;
    }
    
    .problem-item span,
    .solution-item span {
        font-size: 16px;
    }
	.solution-item span h5 {
    font-size: 18px;
}
	 .comparison-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .results-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .results-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .result-image {
        height: 120px;
        margin-bottom: 0px;
    }
    
    .result-title {
        font-size: 18px;
    }
    .result-title span {
        font-size: 22px;
    }
    
    .result-subtitle {
        font-size: 13px;
    }
}

/* ===== Section 03: Features Section Styles ===== */
.features-section {
    background-color: #ECF5F8;
    padding: 80px 0;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* ===== Features Header ===== */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-subtitle {
    color: #0068b7;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
}

.features-title {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.4;
}

/* ===== Features Content ===== */
.features-content {
    display: flex;
    gap: 60px;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
}

.basic-features {
    flex: 1;
    max-width: 1200px;
}
.basic-features-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.basic-features-title02 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
	text-align: center;
}
.basic-features-title02 span {
    background:linear-gradient(transparent 70%, #ff6 70%);
}
.results-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
	margin-left: 30px;
}

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

.basic-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 7px;
    align-items: flex-start;
    background-color: white;
    padding: 15px;
    border-radius: 0;
    box-shadow: 0 3px 0 0 rgba(210, 210, 210, 0.4);
}



.feature-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basic-feature-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 19px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.2;
}

.feature-description {
    font-size: 15px;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.2;
	font-weight: 400;
}

/* ===== Features Devices ===== */
.features-devices {
    flex: 0 0 auto;
    width: calc(50vw - 10px);
    min-width: 400px;
    background-color: white;
    border-radius: 30px 0 0 30px;
    padding: 40px 40px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: calc(-50vw + 50%);
}

.features-device-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== Section 03 Responsive Styles ===== */

/* Tablet Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-title {
        font-size: 32px;
    }
    
    .features-content {
        gap: 40px;
    }
    
    .features-devices {
        width: 350px;
        padding: 30px 15px;
        border-radius: 25px 0 0 25px;
    }
    
    .basic-features-title {
        font-size: 22px;
    }
    
    .feature-title {
        font-size: 17px;
    }
}

/* Mobile Design */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-container {
        padding: 0 10px;
    }
    
    .features-header {
        margin-bottom: 40px;
    }
    
    .features-header .features-subtitle {
        font-size: 14px;
    }
    
    .features-header .features-title {
        font-size: 26px;
    }
    
    .features-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    
    .features-devices {
        width: calc(100vw - 16px);
        min-width: auto;
        text-align: center;
        margin-left: 16px;
        margin-right: calc(-50vw + 50%);
        border-radius: 20px 0 0 20px;
        padding: 10px 40px 10px 30px;
        order: -1;
    }
    
    .basic-features {
        max-width: 100%;
        margin-left: 0;
        padding: 0 4px;
    }
    
    .features-container .basic-features-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .results-section-title {
    	font-size: 24px;
        margin-bottom: 10px;
		margin-left: 0;
}
    .features-container .basic-feature-item {
        margin-bottom: 7px;
        padding: 10px;
		gap:8px;
    }
    
    .feature-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .basic-feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .features-container .feature-title {
        font-size: 17px;
    }
    
    .features-content .feature-description {
        font-size: 14px;
    }
}

/* ===== アイコンサイズの変更（基本機能・おすすめ機能共通） ===== */
.feature-icon-wrapper {
    width: 50px;
    height: 50px;
}

.basic-feature-icon {
    width: 40px;
    height: 40px;
}

/* ===== Recommended Features Styles ===== */
.recommended-features {
    margin-top: 60px;
    max-width: 1200px;
}

/* おすすめ機能のレイアウト（PC: 2列） */
.recommended-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}

/* 青いボーダーを左端に追加 */
.recommended-item {
    border-left: 5px solid #2D8CFF;
    padding-left: 16px;
	margin-bottom: 15px;
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .recommended-list {
        gap: 0 20px;
    }
}

/* レスポンシブ対応（モバイル: 1列） */
@media (max-width: 768px) {
    .recommended-features {
        margin-top: 40px;
    }
    
    .recommended-list {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .recommended-item {
        border-left-width: 3px;
        padding-left: 10px;
    }
    
    .feature-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .basic-feature-icon {
        width: 35px;
        height: 35px;
    }
}

/* ===== Additional Sections Styles ===== */
.additional-sections {
    margin-top: 60px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.additional-section {
    background-color: #ffffff;
    border-radius: 0;
    box-shadow: 0 3px 0 0 rgba(210, 210, 210, 0.4);
}

/* その他機能セクション */
.additional-section:first-child {
	width: 100%;
    max-width: 530px;
	padding: 20px;
}

/* カスタマイズ開発対応・継続サポートセクション */
.additional-section:nth-child(2),
.additional-section:nth-child(3) {
    width: 325px;
}

.additional-section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    padding: 15px 16px;
    text-align: left;
}

.other-features-title {
    background-color: #ffffff;
    color: #333;
	font-size: 28px;
	font-weight: 800;
}

.customize-title {
    background: linear-gradient(135deg, #3f6cdf 0%, #00adc2 100%);
}

.support-title {
    background: linear-gradient(135deg, #3f6cdf 0%, #00adc2 100%);
}

/* カスタマイズ・サポートセクション全体の調整 */
.additional-section:nth-child(2),
.additional-section:nth-child(3) {
    padding: 20px 16px;
    background-color: #ffffff;
}

/* カスタマイズ・サポートのタイトル部分の調整 */
.additional-section:nth-child(2) .additional-section-title,
.additional-section:nth-child(3) .additional-section-title {
    padding: 4px 15px 5px;
    margin: 0 0 10px 0;
}

/* カスタマイズ・サポートのコンテンツ部分の調整 */
.additional-section:nth-child(2) .additional-section-content,
.additional-section:nth-child(3) .additional-section-content {
    padding: 0;
    background-color: transparent;
}

.additional-section-content {
    padding: 25px 16px;
    background-color: #ffffff;
}

/* その他機能セクションのパディング調整 */
.additional-section:first-child .additional-section-content {
    padding: 10px 0px;
}

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

/* その他機能は2列レイアウト */
.additional-section:first-child .additional-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 15px;
}

/* カスタマイズ・サポートは1列 */
.additional-section:nth-child(2) .additional-features-list,
.additional-section:nth-child(3) .additional-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.additional-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}

.feature-check-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    margin-top: 6px;
    background-image: url("../images/check-icon02.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* タブレット対応 */
@media (max-width: 1024px) {
    .additional-sections {
        margin-top: 60px;
        gap: 25px;
    }
    
    .additional-section-title {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .additional-section-content {
        padding: 20px 15px;
    }
    
    .additional-feature-item {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* モバイル対応 */
@media (max-width: 768px) {
    .additional-sections {
        flex-direction: column;
        gap: 20px;
        margin-top: 50px;
    }
    
    /* モバイル時は全セクション同じ幅 */
    .additional-section:first-child,
    .additional-section:nth-child(2),
    .additional-section:nth-child(3) {
        width: 100%;
    }
    
    /* その他機能のモバイル時は1列レイアウト */
    .additional-section:first-child .additional-features-list {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    /* モバイル時のセクション調整 */
    .additional-section:nth-child(2),
    .additional-section:nth-child(3) {
        padding: 20px 16px;
    }
    
    .additional-section-title {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    /* カスタマイズ・サポートのタイトル調整 */
    .additional-section:nth-child(2) .additional-section-title,
    .additional-section:nth-child(3) .additional-section-title {
        padding: 12px 16px;
        margin: 0 0 15px 0;
    }
    
    .additional-section-content {
        padding: 0;
    }
    
    .additional-feature-item {
        font-size: 16px;
        gap: 4px;
		margin-bottom: 5px;
    }
    
    .feature-check-icon {
        width: 14px;
        height: 14px;
    }
	.additional-section:nth-child(2),
.additional-section:nth-child(3) {
    width: 100%;
}
}

/* ===== Section 05: Introduction Flow Styles ===== */
.introduction-flow-section {
    background-image: url("../images/flow-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    position: relative;
}

.introduction-flow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.introduction-flow-header {
    text-align: center;
    margin-bottom: 40px;
}

.introduction-flow-subtitle {
    color: #0068b7;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    font-family: 'Montserrat', sans-serif;
}

.introduction-flow-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-family: 'Noto Sans JP', sans-serif;
}

.introduction-flow-description {
    font-size: 20px;
    font-weight: 600;
    color: #2D8CFF;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Steps Flow Styles */
.steps-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Step Card Styles */
.step-card {
    background-color: #ffffff;
    position: relative;
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Arrow shape using CSS */
.step-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    transform: translateY(-50%);
}

/* Hide arrow on last card only */
.step-card:nth-child(7)::after {
    display: none;
}

.step-label {
    background: linear-gradient(to right, #3f6cdf 0%, #00adc2 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 0;
    margin-bottom: 10px;
    display: inline-block;
	line-height: 1.2;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
	line-height: 1.2;
}

.step-description {
    font-size: 15px;
    color: #333;
    line-height: 1.3;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Support Features Styles */
.support-features {
    background-color: #ffffff;
    border: 4px solid #249AE4;
    border-radius: 0;
    padding:50px 0 40px;
    position: relative;
    margin-top: 80px;
    text-align: center;
}

.support-features-title {
    background: linear-gradient(to right, #3f6cdf 0%, #00adc2 100%);
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: -25px auto 40px auto;
    padding: 13px 60px;
    border-radius: 40px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-block;
    width: auto;
}

.support-features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.support-feature-item {
    text-align: center;
}

.support-feature-icon {
    font-size: 48px;
    color: #2D8CFF;
}

.support-feature-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.support-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Noto Sans JP', sans-serif;
}

.support-feature-description {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .introduction-flow-section {
        padding: 50px 0;
    }
    
    .introduction-flow-header {
        margin-bottom: 30px;
    }
    
    .steps-flow {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .step-card {
        padding: 18px 12px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .support-features {
        padding: 30px;
    }
    
    .support-features-title {
        margin: -42px auto 30px auto;
        font-size: 18px;
        padding: 12px 25px;
    }
    
    .support-features-list {
        gap: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .introduction-flow-section {
        background-image: url("../images/sp-sec05-bg.jpg");
        padding: 40px 0;
    }
    
    .introduction-flow-container {
        padding: 0 10px;
    }
    
    .introduction-flow-header {
        margin-bottom: 25px;
    }
    
    .introduction-flow-title {
        font-size: 28px;
    }
    
    .introduction-flow-description {
        font-size: 18px;
    }
    
    .steps-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .step-card::after {
        display: none;
    }
    
    .step-card {
        padding: 12px 8px;
    }
	.step-label {
    font-size: 16px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 0;
    margin-bottom: 8px;
    display: inline-block;
	line-height: 1.2;
}

.step-title {
    font-size: 16px;
}

.step-description {
    font-size: 14px;
    color: #333;
    line-height: 1.3;
	letter-spacing: -0.5px;
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}
    
    .support-features {
        padding: 40px 14px 35px;
		margin-top: 50px;
    }
    
    .support-features-title {
        margin: -15px auto 25px auto;
        font-size: 18px;
        padding: 12px 40px;
		width: 60%;
    }
    
    .support-features-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .support-feature-icon {
        font-size: 30px;
    }
    
    .support-feature-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .support-feature-description {
        font-size: 14px;
    }
	.pricing-subtitle,
	.introduction-flow-subtitle {
		font-size: 14px;
	}
}

.pc_box { display:block !important; }
.sp_box { display:none !important; }

@media screen and (max-width: 768px) {
.pc_box { display:none !important; }
.sp_box { display:block !important; }
}