/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    margin-top: 0 !important;
}

.sp{
    display: none;
}

body {
    font-family: HelveticaNeueeTextPro-Roman, TazuganeGothicStdN-Book, sans-serif;
    color: #424242;
    line-height: 1.8;
    background-color: #ffffff;
}

.bold {
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
  }

.container {
    max-width: 1064px;
    margin: 0 auto;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 15px;
    animation: floatIn 1s ease-out;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo .sapix-logo {
    height: 22px;
    width: auto;
}

.header-logo .logo-separator {
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1;
}

.header-logo .monoxer-logo {
    height: 18px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav .btn {
    padding: 12px 30px 12px 40px;
    font-size: 18px;
    gap: 20px;
    min-width: 200px;
}

.header-nav .btn img {
    width: 14px;
    height: 14px;
    margin-left: 10px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 1000px;
    overflow: hidden;
}



.hero-background {
    position: absolute;
    top: -24px;
    left: -74px;
    width: auto;
    height: 100%;
    z-index: 0;
}

@media (min-width: 1500px) {
    .hero-background {
        height: auto;
    }
}



.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    max-height: 200px;
}

.hero-wave img {
    width: 100%;
    height: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30%;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    width: 121px;
    height: auto;
}

.hero-badge {
    font-family: HelveticaNeueeTextPro-Roman, TazuganeGothicStdN-Book, sans-serif;
    display: inline-block;
    background-color: #ffffff;
    padding: 3px 22px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.hero-badge span {
    font-size: 26px;
    font-weight: 500;
    color: #004098;
    line-height: 1.75;
}

.hero-text h1 {
    margin-bottom: 60px;
}

.hero-subtitle {
    display: block;
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-shadow: 0px 0px 53px rgba(0, 0, 0, 0.6), 4px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 84px rgba(0, 0, 0, 0.65);
}

.hero-title {
    display: block;
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-shadow: 0px 0px 53px rgba(0, 0, 0, 0.6), 4px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 84px rgba(0, 0, 0, 0.65);
}

.hero-materials {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.06em;
    line-height: 1.2;
    margin: 0 10px;
    text-shadow: 0px 0px 53px rgba(0, 0, 0, 1), 4px 4px 4px rgba(0, 0, 0, 0.25), 0px 0px 84px rgba(0, 0, 0, 0.65);
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    color: #ffffff;
    padding: 20px 50px 20px 80px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.5;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 400px;
    
}

.btn-primary {
    background-color: #D63938;
    box-shadow: 0 4px 12px rgba(214, 57, 56, 0.3);
    justify-content: center;
}

.btn-primary:hover {
    background-color: #b42d2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(214, 57, 56, 0.4);
}



.btn img {
    width: 20px;
    height: 20px;
    margin-left: 20px;
}

.header-nav .btn-help {
    background-color: #004099;
    box-shadow: 0 4px 12px rgba(26, 18, 93, 0.3);
    justify-content: center;
    margin-right: 14px;
    padding: 12px 30px 12px 30px;
}

.btn-help:hover {
    background-color: #004099;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 18, 93, 0.3);
}

.header-nav .btn-help img {
    width: 20px;
    height: 20px;
    margin-right: 0px;
    margin-left: 0;
    gap: 0;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #004099;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: #424242;
    text-align: center;
    letter-spacing: 0.15em;
    line-height: 2;
    margin-bottom: 60px;
}

/* What's Monoxer Section */
.section-whats {
    background-color: #ffffff;
    padding: 100px 0;
}

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

.whats-inner .section-title {
    margin-bottom: 60px;
}

.whats-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.whats-image {
    position: relative;
    width: 50%;
    display: flex;
    align-items: center;
}

.image-bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 610px;
    height: 610px;
    background: linear-gradient(135deg, #4BA3E3 0%, #29AAFF 100%);
    border-radius: 0 10px 10px 0;
    z-index: 0;
}

.whats-image img {
    position: relative;
    width: 550px;
    height: auto;
    z-index: 1;
    margin-left: -50px;
}

.whats-text {
    flex: 1;
    padding: 0 100px 0 80px;
    font-family: HelveticaNeueeTextPro-Roman, TazuganeGothicStdN-Book, sans-serif;
}

.whats-text p {
    font-size: 18px;
    font-weight: 400;
    color: #424242;
    letter-spacing: 0.03em;
    line-height: 1.9;
    margin-bottom: 30px;
}

.whats-text p strong {
    font-weight: 700;
}

.whats-text p:last-child {
    margin-bottom: 0;
}

/* Voice Section */
.section-voice {
    background-color: #ffffff;
    padding: 100px 0;
}

.voice-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.voice-content.reverse {
    flex-direction: row-reverse;
}

/* Voice Left (SAPIX) */
.voice-left {
    flex: 1;
    background-color: #E8ECF0;
    border-radius: 10px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Voice Right (SAPIX) */
.voice-right {
    flex-shrink: 0;
    width: 370px;
    height: 460px;
    position: relative;
    margin-top: -50px;
}

.voice-right .voice-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #F5F5F5;
}

.voice-right .voice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-voice-sapix .voice-right {
    margin-left: -20px;
    z-index: 2;
}

.section-voice-sapix .voice-content {
    padding-left: 40px;
}

/* Voice Box (Monoxer CEO) - Legacy support */
.voice-box {
    flex: 1;
    background-color: #E8ECF0;
    border-radius: 10px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Voice Left Monoxer (Image on left) */
.voice-left-monoxer {
    flex-shrink: 0;
    width: 370px;
    height: 460px;
    position: relative;
    margin-top: -50px;
}

.voice-left-monoxer .voice-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #F5F5F5;
}

.voice-left-monoxer .voice-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

/* Voice Right Monoxer (Content on right) */
.voice-right-monoxer {
    flex: 1;
    background-color: #E8ECF0;
    border-radius: 10px;
    padding: 60px 50px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voice-right-monoxer .voice-header {
    margin-bottom: 15px;
}


.voice-right-monoxer .voice-person {
    margin-bottom: 25px;
}

.voice-right-monoxer .voice-person .person-title {
    width: 200px;
}


.section-voice-monoxer .voice-left-monoxer {
    margin-right: -20px;
    z-index: 2;
}

.section-voice-monoxer .voice-content {
    padding-right: 40px;
}

.voice-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.voice-left .voice-header {
    margin-bottom: 15px;
}

.voice-logo {
    height: 24px;
    width: auto;
}

.voice-person {
    margin-bottom: 25px;
}

.voice-person .person-title {
    font-size: 12px;
    font-weight: 400;
    width: 160px;
    color: #004099;
    line-height: 1.5;
    letter-spacing: 0.03em;
    display: inline-block;
    vertical-align: middle;
}

.voice-person .person-name {
    font-size: 20px;
    font-weight: 500;
    color: #004099;
    line-height: 1.5;
    display: inline;
}

.voice-text {
    font-size: 16px;
    font-weight: 400;
    color: #424242;
    line-height: 1.9;
}

.voice-text p {
    margin-bottom: 18px;
}

.voice-text p:last-child {
    margin-bottom: 0;
}

.voice-image {
    flex-shrink: 0;
    width: 460px;
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #F5F5F5;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-voice-monoxer .voice-image {
    margin-right: -20px;
    z-index: 2;
}

.voice-toggle-btn {
    display: none;
}

/* Media & Awards Section */
.section-media {
    background-color: #ffffff;
}

.media-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
    margin-top: 100px;
}

.media-card {
    width: 412px;
    background-color: #FFF;
    border: 3px solid #004099;
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #004099;
    color: #ffffff;
    padding: 8px 30px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.media-card:nth-child(2) .card-badge{
    padding: 8px 20px;
    min-width: 250px;
}

.media-card:nth-child(2) .card-content{
    margin-top: 70px;
}


.card-content {
    margin-top: 20px;
    text-align: center;
}

.card-content img {
    width: 230px;
    height: auto;
    margin-bottom: 30px;
}

.card-content p {
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.media-list {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #211715;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-align: left;
}

/* CTA Section */
.section-cta {
    background-color: #004099;
    padding: 69px 0;
}

.section-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-heading {
    font-size: 30px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    color: #ffffff;
    letter-spacing: -0.011em;
    line-height: 1.5;
    text-align: center;
}

/* Why Monoxer Section */
.section-why {
    background-color: #C8E8FF;
    background-image: url("../sapix/hero-wave.svg");
    padding: 74px 120px 100px;
}

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

.reason-grid {
    display: flex;
    gap: 37px;
    margin-bottom: 60px;
}

.reason-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 75px 30px 35px;
    position: relative;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.reason-card img{
    width: 100px;
}

.reason-card:nth-child(3) img{
    width: 160px;
}

.reason-card-yellow {
    background-color: #FFFCE6;
}

.card-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: #004099;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 64, 153, 0.3);
}

.card-number span {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    color: #004099;
    letter-spacing: 0.15em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    color: #212121;
    letter-spacing: 0.03em;
    line-height: 1.8;
    margin-bottom: 10px;
}

.target{
    background: #FBE22D;
    color: #212121;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    width: fit-content;
    margin: 0 auto;
    padding: 5px 10px;
}

.materials-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 20px 0 20px;
}

.material-item {
    display: flex;
    border: 1px solid #212121;
    border-bottom: none;
    height: 40px;
}



.material-item:last-child {
    border-bottom: 1px solid #212121;
}

.material-subject {
    width: 110px;
    background-color: #C8E8FF;
    border-right: 1px solid #212121;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #212121;
    letter-spacing: 0.03em;
    line-height: 1.8;
}

.material-name {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 400;
    color: #212121;
    letter-spacing: 0.03em;
    line-height: 1.8;
}

.card-note {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-top: 10px;
    text-align: center;
    position: absolute;
    bottom: -35px;
    left: 0;
    display: block;
    width: 100%;
}

.section-note {
    font-size: 16px;
    font-weight: 400;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    color: #212121;
    letter-spacing: 0.03em;
    line-height: 1.8;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Price Section */
.section-price {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-price .container {
    max-width: 820px;
}

.section-price .section-title {
    margin-bottom: 80px;
}

.price-box {
    background-color: #E8ECF0;
    border: 6px solid #004099;
    border-radius: 8px;
    padding: 80px 100px;
    text-align: center;
}

.price-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 28px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    color: #004099;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

.price-divider {
    width: 400px;
    height: 5px;
    background-color: #004099;
    border-radius: 2px;
    margin-bottom: 70px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    color: #004099;
    letter-spacing: 0.05em;
    line-height: 1;
}

.price-amount strong{
    font-size: 80px;
}

.price-amount span{
    font-size: 28px;
}


.price-note {
    font-size: 20px;
    font-weight: 500;
    color: #004099;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

.price-note::before {
    content: "※ ";
}

/* FAQ Section */
.faq-section {
    background-color: #E8ECF0;
    padding: 100px 120px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid #E0E0E0;
    padding-bottom: 20px;
}

.faq-question {
    display: flex;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question span {
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    letter-spacing: -0.011em;
    line-height: 1.5;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    margin-top: 20px;
    padding-left: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-size: 18px;
    font-weight: 500;
    color: #424242;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.faq-answer a{
    color: #009EFF;
}

.faq-answer a:hover{
    text-decoration: none;
}

/* Footer */
.site-footer {
    background-color: #29AAFF;
    padding: 50px 120px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 14px;
}

.footer-nav a {
    font-size: 18px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    color: #ffffff;
    letter-spacing: 0.15em;
    line-height: 2;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.15em;
    line-height: 2;
    text-align: center;
}

/* Modal */
/* モーダルCSS */
.modalArea {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.85);
    cursor: pointer;
}

.modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    padding: 50px 60px 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.closeModal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.closeModal:hover {
    color: #004099;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    color: #004099;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.modal-content {
    margin-bottom: 35px;
}

.modal-content p {
    font-size: 16px;
    font-weight: 400;
    color: #424242;
    letter-spacing: 0.02em;
    line-height: 1.9;
    margin-bottom: 20px;
}

.modal-content p:last-child {
    margin-bottom: 0;
}

.modal-content a {
    color: #009EFF;
    text-decoration: underline;
    word-break: break-all;
}

.modal-content a:hover {
    text-decoration: none;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.modal-register-btn {
    display: block;
    width: 200px;
    padding: 12px 30px;
    background-color: #D63938;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-register-btn:hover {
    background-color: #b42d2c;
    transform: translateY(-2px);
}

.modal-close-btn {
    display: block;
    width: 200px;
    padding: 12px 30px;
    background-color: #9E9E9E;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
    background-color: #757575;
    transform: translateY(-2px);
}

/* Responsive Design */

@media (max-width: 1200px) {
    .hero-content {
        padding-top: 45%;
    }

    .section-why {
        background-color: #C8E8FF;
        background-image: url(../sapix/hero-wave.svg);
        padding: 74px 40px 100px;
    }

    
    .reason-grid {
        flex-direction: column;
    }

    .reason-card {
        max-width: 420px;
        min-width: 330px;
        margin: 0 auto;
    }


    .reason-card:nth-child(2) {
        margin-top: 55px;
    }

    .reason-card:nth-child(3) {
        margin-top: 45px;
    }
    
    
    .image-bg {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #4BA3E3 0%, #29AAFF 100%);
        border-radius: 0 10px 10px 0;
        z-index: 0;
    }

    .whats-image img {
        position: relative;
        width: 100%;
        height: auto;
        z-index: 1;
        margin-left: -50px;
    }

    .whats-text {
        flex: 1;
        padding: 0 40px 0 40px;
        font-family: HelveticaNeueeTextPro-Roman, TazuganeGothicStdN-Book, sans-serif;
    }

    .section-content {
        flex-direction: column;
    }
    
    .section-voice {
        background-color: #ffffff;
        padding: 100px 40px;
    }

    .section-voice-sapix .voice-content {
        padding-left: 0px;
    }
    
    .media-grid {
        flex-direction: column;
        align-items: center;
    }

    .section-price .container {
        max-width: 600px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
    }


}



@media (max-width: 768px) {


    .sp{
        display: block;
    }

    .pc{display: none;}

    .container {
        padding: 0px;
    }
    
    /* Header */
    .site-header {
        padding: 10px 20px;
    }
    
    .header-inner {
        height: 60px;
        border-radius: 4px;
        padding: 0 10px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .header-logo {
        gap: 10px;
        width: 50px;
    }
    
    .header-logo .sapix-logo {
        height: 12px;
    }
    
    .header-logo .logo-separator {
        font-size: 12px;
    }
    
    .header-logo .monoxer-logo {
        height: 12px;
    }
    
    .header-nav {
        padding-left: 130px;
    }
    

    .header-nav .btn {
        padding: 10px;
        font-size: 12px;
        gap: 0;
        min-width: 0;
        width: 130px;
        box-shadow: none;
    }

    .header-nav .btn img {
        width: 10px;
        height: 10px;
        margin-left: 10px;
    }

    .header-nav .btn-help {
        width: 30px;
        margin-right: 10px;
        background: none;
    }

    .header-nav .btn-help img{
        margin-left: 0px;
        width: 20px;
        height: 20px;
    }
    
    /* Hero Section */
    .hero-section {
        height: 800px;
        background: url("../img/sapix/sapix_mv_sp.png") no-repeat center top;
        background-size: cover;
    }
    
    .hero-background {
        top: 0;
        left: 0;
        width: 100%;
        height: 600px;
        display: none;
    }
    
    .hero-background img {
        object-position: center top;
    }
    
    .hero-wave {
        bottom: 0;
        display: none;
    }
    
    .hero-wave img {
        height: auto;
        width: 100%;
    }
    
    .hero-content {
        padding-top: 400px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-logo {
        display: none;
    }
    
    .hero-badge {
        padding: 6px 20px;
        margin-bottom: 30px;
        border-radius: 4px;
    }
    
    .hero-badge span {
        font-size: 18px;
        font-weight: 500;
    }
    
    .hero-subtitle {
        font-size: 22px;
        font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
        line-height: 1.6;
        letter-spacing: 0.02em;
    }
    
    .hero-title {
        font-size: 22px;
        font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
        line-height: 1.5;
        letter-spacing: 0.02em;
    }
    
    .hero-materials {
        font-size: 10px;
        line-height: 1.4;
        display: inline-block;
        margin: 5px;
        letter-spacing: 0.02em;
    }
    
    .hero-text h1 {
        margin-bottom: 40px;
    }
    
    /* Button */
    .btn {
        padding: 12px 30px 12px 40px;
        font-size: 16px;
        gap: 30px;
        min-width: 280px;
        justify-content: center;
    }
    
    .btn img {
        width: 12px;
        height: 12px;
        margin-left: 10px;
    }


    
    /* Section */
    .section {
        padding: 90px 0;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 18px;
        line-height: 2;
        margin-bottom: 60px;
        font-family: HelveticaNeueeTextPro-Bold, TazuganeGothicStdN-Bold, sans-serif;
    }
    
    /* What's Monoxer */
    .section-whats {
        padding: 90px 0;
    }
    
    .whats-inner {
        padding: 0 0px;
    }
    
    .whats-inner .section-title {
        margin-bottom: 40px;
    }
    
    .whats-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .whats-image {
        width: 100%;
    }
    
    .image-bg {
        width: 100%;
        max-width: 350px;
        height: 350px;
        border-radius: 0 5px 5px 0;
    }
    
    .whats-image img {
        width: 100%;
        max-width: 300px;
        margin-left: 0;
        margin-top: 50px;
    }
    
    .whats-text {
        padding: 0 25px;
    }
    
    .whats-text p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }
    
    /* Voice */
    .section-voice {
        padding: 50px 25px;
    }
    
    .voice-content {
        flex-direction: column;
        gap: 0;
        padding-left: 0;
    }

    .voice-content .sp{
        margin-bottom: 20px;
    }

    .section-voice-sapix .voice-content {
        padding-left: 0px;
    }

    .section-voice-monoxer .voice-content {
        padding-right: 0;
    }
    
    .voice-content.reverse {
        flex-direction: column;
    }
    
    .voice-image {
        width: 100%;
        margin-bottom: 15px;
        display: none;
    }

    /*sapix*/
    .voice-right{
        width: 100%;    
    }

    .voice-left {
        padding: 50px 30px 0px;

    }

    .section-voice-sapix .voice-right {
        margin-left: -20px;
        z-index: 2;
        display: none;
    }

    .voice-left-monoxer {
        flex-shrink: 0;
        width: 100%;
        position: relative;
    }

    .voice-right-monoxer {
        padding: 50px 30px;
    }

    .section-voice-monoxer .voice-left-monoxer {
        margin-right: -20px;
        z-index: 2;
        display: none;
    }



    .voice-left-monoxer .voice-image img {
        width: 100%;
        height: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .voice-right .voice-image img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }
    
    .image-wrapper {
        width: 100%;
        height: 180px;
    }
    
    .voice-box {
        padding: 50px 30px 20px;
        margin-top: 0;
        border-radius: 5px;
    }
    
    .voice-header {
        gap: 4px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .voice-logo {
        height: 19.56px;
    }
    
    .section-voice-monoxer .voice-logo {
        height: 19.56px;
    }
    
    .voice-person .person-title {
        font-size: 10px;
    }
    
    .voice-person .person-name {
        font-size: 16px;
        display: block;
    }
    
    .voice-text {
        font-size: 14px;
        line-height: 1.8;
        max-height: 75px;
        overflow: hidden;
        position: relative;
    }
    
    .voice-text.expanded {
        max-height: none;
    }
    
    .voice-text p {
        margin-bottom: 10px;
    }
    
    .voice-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: none;
        border: none;
        color: #004099;
        font-size: 16px;
        font-weight: 700;
        padding: 20px 0;
        cursor: pointer;
        margin-top: 15px;
    }
    
    .toggle-icon {
        width: 16px;
        height: 8px;
        transition: transform 0.3s ease;
    }
    
    .voice-box.expanded .toggle-icon {
        transform: rotate(180deg);
    }
    
    /* Media & Awards */
    .section-media {
        padding: 50px 25px;
    }
    
    .media-grid {
        flex-direction: column;
        gap: 40px;
        margin-top: 50px;
    }
    
    .media-card {
        width: 100%;
        max-width: 325px;
        padding: 58px 31px 31px;
    }

    .media-card:nth-child(2) .card-content {
        margin-top: 0px;
    }
    
    
    .card-badge {
        padding: 8px 40px;
        width: auto;
    }
    
    .card-content img {
        width: 183.8px;
        margin-bottom: 30px;
    }
    
    /* CTA Section */
    .section-cta {
        padding: 34.5px 0;
    }

    .section-cta .container {
        gap: 20px;
    }
    
    .cta-heading {
        font-size: 14px;
    }
    
    /* Why Monoxer */
    .section-why {
        padding: 66px 25px 100px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .reason-grid {
        flex-direction: column;
        gap: 60px;
    }
    
    .reason-card {
        padding: 75px 30px 40px;
    }

    

    .reason-card:nth-child(2) {
        margin-top: 55px;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 1.8;
    }
    
    .card-description {
        font-size: 16px;
        line-height: 1.8;
    }
    
    .section-note {
        font-size: 16px;
        padding: 0 25px;
    }
    
    /* Price Section */
    .section-price {
        padding: 90px 25px;
    }
    
    .section-price .container {
        max-width: 100%;
        padding: 0;
    }
    
    .price-box {
        padding: 60px 40px;
        border-radius: 8px;
        border: 3px solid #004099;
        min-height: 300px;
    }

    .price-label {
        font-size: 18px;
    }
    
    .price-divider {
        width: 244px;
        margin-bottom: 40px;
        height: 3px;
    }
    
    .price-amount {
        font-size: 36.19px;
    }
    
    .price-note {
        font-size: 16px;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 90px 25px;
    }
    
    .faq-list {
        max-width: 100%;
    }
    
    .faq-item {
        padding-bottom: 25px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    /* Footer */
    .site-footer {
        padding: 60px 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .footer-nav a {
        font-size: 18px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }

    /* Modal Mobile Styles */
    .modalWrapper {
        width: 95%;
        padding: 40px 25px 30px;
    }

    .closeModal {
        top: 10px;
        right: 15px;
        font-size: 32px;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal-content {
        margin-bottom: 25px;
    }

    .modal-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .modal-buttons {
        gap: 12px;
    }

    .modal-register-btn {
        width: 160px;
        padding: 10px 20px;
        font-size: 16px;
    }

    .modal-close-btn {
        width: 160px;
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .header-logo {
        gap: 5px;
        width: 50px;
    }

    .header-nav {
        padding-left: 110px;
    }

    .header-nav .btn {
        padding: 8px;
        font-size: 11px;
        gap: 0;
        min-width: 0;
        width: 110px;
        box-shadow: none;
    }

    .header-nav .btn-help {
        width: 30px;
        margin-right: 10px;
        background: none;
    }

    .content-image img {
        width: 100%;
        max-width: 291px;
    }
    
    .price-box {
        padding: 40px 40px;
    }
}
