/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    /* medium */
}

body {
    color: #2E2E2E;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Notice banner styles */
.notice-banner {
    background-color: #dc3545;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}

.notice-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.notice-content p {
    margin: 0;
    font-weight: 500;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: #FFFFFF;
    width: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

header>div {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

header h1 {
    margin: 0;
    z-index: 1002;
    position: relative;
}

header img.logo {
    height: 30px;
}

/* Global Navigation */
.global-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #2E2E2E;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #FFFFFF;
    background-color: #2E2E2E;
}

.nav-link.active {
    color: #2E2E2E;
    background-color: #F7F7F7;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #2E2E2E;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .app-store img,
.header-actions .google-play img {
    height: 44px;
    display: inline-block;
}

/* Flyer Download */
.flyer-download {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.flyer-download:hover {
    background-color: #e9ecef;
}

.flyer-download img {
    width: 20px;
    height: 20px;
}

.flyer-download div {
    display: flex;
    flex-direction: column;
}

.flyer-lead {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.flyer-text {
    font-size: 14px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 1px;
}

.flyer-detail {
    font-size: 10px;
    color: #999;
}

@media (max-width: 768px) {
    .notice-banner {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .notice-content {
        padding: 0 24px;
    }
    
    header {
        padding: 12px 24px;
    }

    header>div {
        gap: 15px;
        justify-content: space-between;
    }

    header img.logo {
        height: 24px;
    }

    .global-nav {
        justify-content: flex-end;
        flex: none;
    }

    .global-nav .nav-list {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #FFFFFF;
        flex-direction: column;
        gap: 0;
        padding: 48px 0 0 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .global-nav .nav-list.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 12px 24px;
        width: 100%;
        border-radius: 0;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .header-actions {
        display: none;
    }

    .header-actions.mobile-visible {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        gap: 8px;
        z-index: 1000;
    }

    .header-actions.mobile-visible .app-store img,
    .header-actions.mobile-visible .google-play img {
        height: 36px;
    }
}

/* Main section */
.main {
    padding: 80px 80px 80px 80px;
    position: relative;
    width: 100%;
    background-size: cover;
    background-image: url(asset/main-bg.png);
    background-position: center;
}

@media (max-width: 768px) {
    .main {
        padding: 40px 24px 40px 24px;
        position: relative;
        width: 100%;
    }

    .main-sp {
        width: 100%;
        padding: 40px 20px;
    }

    .main-sp-image {
        width: 100%;
        height: auto;
        display: block;
    }
}

.main-content {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .main-content {
        display: block;
        margin: 0 auto;
        width: 100%;
        position: relative;
    }
}

.main .left {
    flex: 1;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .main .left {
        flex: 1;
        padding-right: 0px;
        display: block;
        text-align: center;
    }
}

.main .left img.coupply-lead {
    max-width: 403px;
    width: 100%;
}

.right {
    position: relative;
    flex: 1;
}

.main h2 {
    color: #FFFFFF;
    font-size: 68px;
    line-height: 1.3;
    margin: 20px 0;
    font-weight: 900;
    /* Black */
    position: relative;
    z-index: 4;
    text-shadow: 0px 0px 15px rgba(50, 20, 50, 0.4);
}

@media (max-width: 768px) {
    .main .left img.coupply-lead {
        max-width: 290px;
        width: 80%;
        display: inline;
    }

    .main h2 {
        font-size: 10vw;
        line-height: 1.2;
        margin: 0;
        font-weight: 900;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
        text-align: center;
        /* Black */
    }
}

.download-link {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
}

.download-link div.store-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.download-link div.penly-flex {
    display: none;
}

@media (max-width: 768px) {
    .store-box {
        padding: 20px;
        background-color: #fff;
        border-radius: 15px;
    }

    .download-link {
        background-color: transparent;
        margin-top: 0;
        position: relative;
        padding: 0;
        z-index: 3;
    }

    .download-link div.store-flex {
        display: flex;
        align-items: center;
        margin-top: 0px;
        gap: 15px;
        margin-bottom: 10px;
    }

    .download-link div.penly-flex {
        display: flex;
        align-items: center;
        margin-top: 0px;
        gap: 15px;
        margin-bottom: 0px;
    }
}

.download-link .app-store,
.download-link .google-play {
    display: inline-block;
}

.download-link .app-store img,
.download-link .google-play img {
    width: 100%;
}

.download-link .annotation {
    font-size: 0.6rem;
    color: #888;
    margin-top: 5px;
    line-height: 1.4;
}

.download-link>img {
    width: 100px;
    margin-left: 30px;
}

@media (max-width: 768px) {
    .download-link>img {
        display: none;
    }
}

.right img {
    width: 100%;
}

.right>div {
    position: relative;
    display: block;
    text-align: right;
}

.right>div>div {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
}

.pc-only {
    display: block !important;
}

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

@media (max-width: 768px) {
    .right>div>div {
        display: none;
    }

    .right {
        position: static;
        top: auto;
        right: auto;
        z-index: auto;
    }

    .right img {
        width: 100%;
        display: inline-block;
    }

    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }

}

.penly-pink,
.penly-blue {
    position: relative;
    max-width: 290px;
    width: 100%;
    bottom: -120px;
}

@media (max-width: 768px) {

    .penly-pink,
    .penly-blue {
        position: relative;
        max-width: 290px;
        width: 100%;
        bottom: 0px;
    }
}

/* Videos section */
.videos {
    padding: 80px 50px;
    background-color: #2E2E2E;
    margin: 0 auto;
    width: 100%;
}

.videos>div {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.videos .lead {
    color: #F7F7F7;
    font-size: 24px;
    text-align: center;
}

.videos h3 {
    color: #FFFFFF;
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 50px;
    font-weight: 900;
    /* Black */
    text-align: center;
}

.videos h3 span {
    background: linear-gradient(to bottom right, #83D8F2, #FF9292);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    /* Black */
}

@media (max-width: 768px) {
    .videos {
        padding: 40px 20px;
        background-color: #2E2E2E;
        color: white;
        text-align: center;
        width: 100%;
    }

    .videos .lead {
        color: #CACACA;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .videos h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
        font-weight: 900;
    }
}

.videos-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.video-item {
    flex: 1;
}

.video-item h4 {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .videos {
        padding: 40px 20px;
    }

    .videos-container {
        flex-direction: column;
        gap: 30px;
    }

    .video-item h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

/* About section */
.about {
    padding: 80px 50px;
    background-color: #F7F7F7;
    text-align: center;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .about {
        padding: 40px 20px;
        background-color: #F7F7F7;
        text-align: center;
        position: relative;
        width: 100%;
    }
}

.about>div {
    margin: 0 auto;
    width: 100%;
}

.lead {
    color: #7C7C7C;
    font-size: 24px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .lead {
        color: #7C7C7C;
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.about h3 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 50px;
    font-weight: 900;
    /* Black */
}

.about h3 span {
    background: linear-gradient(to bottom right, #83D8F2, #FF9292);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    /* Black */
}

@media (max-width: 768px) {
    .about h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
        font-weight: 900;
        /* Black */
    }
}

/* Features Grid Styles */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 25px 20px;
    border-radius: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #F0F0F0;
    width: calc(20% - 16px);
    min-height: 140px;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #E0E0E0;
}

.feature-icon {
    width: 88px;
    height: 88px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #2E2E2E;
    line-height: 1.3;
    position: relative;
    word-break: auto-phrase;
}

.dev-badge {
    margin-top: 4px;
    display: block;
    background: #2E2E2E;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .features-grid {
        gap: 10px;
        padding: 0 0 20px 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .feature-item {
        width: calc(33.333% - 8px);
        padding: 10px 10px;
        min-height: 110px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    
    .feature-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }
    
    .dev-badge {
        font-size: 9px;
        padding: 2px 4px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }
    
    .feature-title {
        font-size: 11px;
        line-height: 1.2;
        word-break: auto-phrase;
        overflow-wrap: anywhere;
    }
}

/* COUPPLY Demo Section */
.coupply-demo {
    margin-top: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.demo-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #E04343, #D63031);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 67, 67, 0.3);
}

.demo-video-btn:hover {
    background: linear-gradient(135deg, #D63031, #C7202A);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 67, 67, 0.4);
}

.demo-video-btn .play-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.sp-only {
    display: none;
}

/* デモ動画モーダル */
#demo-video-modal .modal-content {
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    padding: 0;
    height: auto;
}

#demo-video-modal .modal-body {
    padding: 0;
}

.demo-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    min-height: 600px;
}

.demo-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .coupply-demo {
        margin-top: 40px;
        padding: 0 15px;
    }
    
    .demo-video-btn {
        font-size: 16px;
        padding: 14px 28px;
        gap: 10px;
        font-weight: bold;
    }
    
    .demo-video-btn .play-icon {
        width: 20px;
        height: 20px;
    }
    
    .sp-only {
        display: inline;
    }
    
    #demo-video-modal .modal-content {
        max-width: 300px;
    }
    
    .demo-video-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .demo-video-btn {
        font-size: 14px;
        padding: 12px 24px;
        font-weight: 700;
    }
    
    #demo-video-modal .modal-content {
        max-width: 280px;
    }
    
    .demo-video-wrapper {
        min-height: 450px;
    }
}

/* Effects Section */
.effects {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
    width: 100%;
}

.effects > * {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.effects h2 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 60px;
    font-weight: 900;
    color: #333;
}

.coupply-gradient {
    background: linear-gradient(to bottom right, #83D8F2, #FF9292);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.effects-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.effect-item {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.effect-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.effect-image img {
    width: 100%;
    height: auto;
    display: block;
}

.effect-title {
    font-size: 20px;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: 99px;
    border: 2px solid #2E2E2E;
    display: block;
    margin-bottom: 20px;
    color: #2E2E2E;
    text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
}

.effect-title-1 {
    background: #64C8E6;
    box-shadow: 3px 3px 0 #64C8E6;
}

.effect-title-2 {
    background: #FAD7B4;
    box-shadow: 3px 3px 0 #FAD7B4;
}

.effect-title-3 {
    background: #FAB4B4;
    box-shadow: 3px 3px 0 #FAB4B4;
}

.effect-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

.effect-text em {
    color: #E04343;
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 768px) {
    .effects {
        padding: 60px 0;
    }
    
    .effects > * {
        padding: 0 20px;
    }
    
    .effects h2 {
        font-size: 24px;
        margin-bottom: 40px;
    }
    
    .effects-container {
        gap: 30px;
    }
    
    .effect-item {
        min-width: 280px;
    }
    
    .effect-title {
        font-size: 16px;
        padding: 6px 16px;
    }
    
    .effect-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .effects {
        padding: 40px 0;
    }
    
    .effects > * {
        padding: 0 15px;
    }
    
    .effects h2 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .effects-container {
        gap: 25px;
    }
    
    .effect-item {
        min-width: 260px;
    }
    
    .effect-title {
        font-size: 14px;
        padding: 6px 14px;
    }
    
    .effect-text {
        font-size: 13px;
    }
}

/* デモ動画モーダル */
#demo-video-modal .modal-content {
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    padding: 0;
    height: auto;
}

#demo-video-modal .modal-body {
    padding: 0;
}

.demo-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    min-height: 600px;
}

.demo-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFFFFF;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

.modal-header {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
    border-bottom: 1px solid #E0E0E0;
}

.close-btn, .back-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.close-btn:hover, .back-btn:hover {
    background-color: #F0F0F0;
}

.modal-body {
    padding: 30px;
    max-height: calc(80vh - 50px);
    overflow-y: auto;
}

.feature-detail {
    text-align: center;
}

.feature-detail .feature-video {
    width: 400px;
    max-width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-detail .feature-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.feature-detail .feature-video img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-detail .feature-image {
    width: 400px;
    max-width: 100%;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
}

.feature-detail .feature-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-detail .sub-title {
    color: #7C7C7C;
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
}

.feature-detail .title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #2E2E2E;
}

.feature-detail .description {
    font-size: 16px;
    line-height: 1.8;
    color: #2E2E2E;
    margin-bottom: 10px;
    text-align: left;
    white-space: pre-line;
}

.feature-detail .description strong {
    font-weight: 700;
    color: #1a1a1a;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translate(-50%, -50%) translateY(-20px); opacity: 0; }
    to { transform: translate(-50%, -50%) translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .feature-detail .feature-video {
        width: 300px;
        max-width: 100%;
    }
    
    .feature-detail .feature-image {
        width: 300px;
        max-width: 100%;
    }
    
    .feature-detail .title {
        font-size: 24px;
    }
    
    .feature-detail .description {
        font-size: 14px;
    }
}

.content-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
}

@media (max-width: 1180px) {
    .content-list {
        display: block;
        margin: 0 auto;
        padding: 20px 0px;
        position: relative;
        background: #FFFFFF;
        border-radius: 20px;
    }
}

.content-link {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 300px;
}


@media (max-width: 1180px) {
    .content-link {
        display: block;
        width: 100%;
        flex: 1;
        text-align: left;
        position: relative;
        max-width: inherit;
    }

    .content-link>div {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 8px;
        padding: 8px 20px 0px 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .content-link>div::-webkit-scrollbar {
        display: none;
    }
}

.content-link .content {
    transition: all 0.3s ease;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Active menu item style */
.content-link .content.active {
    background-color: #2E2E2E;
    border: solid 2px #2E2E2E;
}

.content-link .content.active p {
    color: white;
}

/* Hide all capture images and content details initially */
.content-list>img {
    display: none;
}

.content-list>img:first-of-type {
    display: block;
}

.content-detail {
    display: none;
}

.content-detail:first-of-type {
    display: block;
}

.content-link>img {
    width: 300px;
    margin-bottom: 10px;
}

.content-link div.content {
    background-color: white;
    border-radius: 8px;
    /* 角丸を8pxに変更 */
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    width: 300px;
    border: solid 2px #CACACA;
}

.content-link div img {
    width: 20px;
    margin-right: 10px;
}

.content-link div p {
    color: #2E2E2E;
    font-weight: bold;
}

@media (max-width: 1180px) {
    .content-link>img {
        margin: 0 20px;
        display: block;
        width: calc(100% - 40px);
        max-height: 60px;
    }

    .content-link div.content {
        background-color: white;
        border-radius: 8px;
        flex: 0 0 auto;
        /* 幅を固定して縮まない */
        padding: 8px 12px;
        display: flex;
        align-items: center;
        cursor: pointer;
        width: auto;
        border: solid 2px #CACACA;
    }

    .content-link div img {
        width: 16px;
        margin-right: 10px;
    }

    .content-link div p {
        color: #2E2E2E;
        font-weight: bold;
        font-size: 13px;
    }
}

/* YouTube コンテナのスタイル修正 */
.youtube-container {
    flex: 1;
    max-width: 298px;
    margin: 0 30px;
    display: none;
    /* 初期状態では全てのビデオを非表示 */
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    /* アスペクト比を保持するための設定 */
    aspect-ratio: 298 / 610;
    /* 幅:高さの比率を設定 */
}

/* 最初のビデオを表示 */
.youtube-container:first-of-type {
    display: block;
}

.youtube-container iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* タブレットサイズでのレイアウト (1180px〜768px) */
@media (max-width: 1180px) and (min-width: 769px) {
    .content-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
    }

    .content-link {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .content-link>div {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 8px;
        padding: 8px 20px 0px 20px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .content-link>div::-webkit-scrollbar {
        display: none;
    }

    /* youtube-container と content-detail を横並びに */
    .youtube-container-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        width: 100%;
        margin-top: 20px;
    }

    .youtube-container {
        flex: 0 0 298px;
        /* 幅を固定 */
        margin: 0 15px 0 0;
        aspect-ratio: 300 / 610;
    }

    .content-detail {
        flex: 0 0 298px;
        /* 幅を固定 */
        margin: 0 0 0 15px;
    }
}

@media (max-width: 768px) {
    .content-link>div {
        display: flex;
        flex-wrap: wrap;
        overflow-x: visible;
        white-space: normal;
        gap: 4px;
        padding: 4px 20px 0px 20px;
    }

    .content-link div.content {
        width: calc(50% - 4px);
        box-sizing: border-box;
        flex: 0 0 calc(50% - 4px);
        margin-bottom: 0px;
        padding: 5px 10px;
    }

    .content-link div img {
        margin-right: 6px;
    }

    .youtube-container {
        margin: 20px;
        max-width: none;
        aspect-ratio: 16 / 9;
    }
}

.content-detail {
    flex: 1;
    text-align: left;
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.content-detail>img {
    height: 64px;
    margin-bottom: 10px;
}

.sub-title {
    color: #7C7C7C;
    font-size: 16px;
    line-height: 1;
}

.content-detail h4.title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 900;
}

.content-description {
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .content-detail {
        flex: 1;
        text-align: left;
        background-color: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: none;
        max-width: none;
        position: relative;
    }

    .content-detail>img {
        position: absolute;
        top: 18px;
        left: 20px;
        height: 44px;
        margin-bottom: 10px;
    }

    .sub-title {
        color: #7C7C7C;
        font-size: 14px;
        line-height: 1;
    }

    .content-detail h4.title {
        margin-left: 52px;
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 900;
    }

    .content-description {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Security section */
.security {
    padding: 80px 50px;
    background-color: #2E2E2E;
    color: white;
    text-align: center;
    width: 100%;
}

.security>div {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.security .lead {
    color: #F7F7F7;
    font-size: 24px;
}

.security h3 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 50px;
    font-weight: 900;
    /* Black */
}

.security h3 span {
    background: linear-gradient(to bottom right, #83D8F2, #FF9292);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    /* Black */
}

@media (max-width: 768px) {
    .security {
        padding: 40px 20px;
        background-color: #2E2E2E;
        color: white;
        text-align: center;
        width: 100%;
    }

    .security .lead {
        color: #CACACA;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .security h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
        font-weight: 900;
    }
}

.point {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

.point-detail {
    flex: 1;
    text-align: center;
    background-color: #444;
    border-radius: 15px;
    padding: 30px 20px;
}

.point-detail img {
    margin: 0 auto 15px;
    height: 120px;
}

.point-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.point-detail p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 768px) {
    .point {
        display: block;
        justify-content: space-between;
        max-width: 1000px;
        margin: 0 auto;
    }

    .point-detail {
        flex: 1;
        text-align: center;
        background-color: #444;
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 10px;
    }

    .point-detail img {
        margin: 0 auto 10px;
        height: 64px;
    }

    .point-detail h4 {
        font-size: 16px;
        margin-bottom: 5px;
        font-weight: 900;
    }

    .point-detail p {
        font-size: 14px;
        color: #fff;
        text-align: left;
    }
}

/* Compare section */
.compare {
    padding: 80px 50px;
    background-color: #F7F7F7;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .compare {
        padding: 40px 0px;
        background-color: #F7F7F7;
        text-align: center;
        width: 100%;
    }
}

.compare>div {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.compare .lead {
    font-size: 24px;
    color: #7C7C7C;
}

.compare h3 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 50px;
    font-weight: 900;
    /* Black */
}

.compare h3 span {
    background: linear-gradient(to bottom right, #83D8F2, #FF9292);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    /* Black */
}

@media (max-width: 768px) {
    .compare .lead {
        color: #7C7C7C;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .compare h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
        font-weight: 900;
    }
}

.compare div.img-container img {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    border: 2px solid #CACACA;
}

.compare div.penly-comment {
    display: flex;
    align-items: center;
    width: fit-content;
}

.compare div.comment-box {
    position: relative;
    display: block;
    width: fit-content;
    align-items: center;
    max-width: 1180px;
    margin: 40px auto;
    background-color: #2E2E2E;
    border-radius: 15px;
    padding: 10px;
    font-family: 'M PLUS 1', sans-serif;
}

.compare div.penly-comment img {
    width: 100px;
    height: 100px;
}

.compare>div.penly-comment p {
    font-size: 18px;
    text-align: center;
    color: #FFFFFF;
    font-family: 'M PLUS 1', sans-serif;
}

.compare .img-container {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .compare div.comment-box {
        width: calc(100% - 40px);
        align-items: center;
        background-color: #2E2E2E;
        border-radius: 20px;
        margin: 20px 20px 20px 0px;
        padding: 20px;
        font-family: 'M PLUS 1', sans-serif;
    }

    .compare div.img-container img {
        width: 768px;
        max-width: none;
        margin: 0px 20px 20px 20px;
    }

    .compare div.penly-comment img {
        width: 80px;
        height: 80px;
        margin-right: 0px;
        flex-shrink: 0
    }

    .compare div.penly-comment p {
        font-size: 14px;
        text-align: left;
        color: #FFFFFF;
        font-family: 'M PLUS 1', sans-serif;
    }
}

/* QAセクションのスタイル */
.qa {
    padding: 0px 0px 60px;
    background-color: #FFFFFF;
    text-align: center;
    width: 100%;
}

.qa h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 900;
    /* Black */
}

.qa-container {
    max-width: 1000px;
    margin: 0 auto 20px;
    border-radius: 15px;
    overflow: hidden;
    border: #CACACA 1px solid;
}

.q-box {
    background-color: #F7F7F7;
    padding: 20px 30px;
    text-align: left;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.q-box:hover {
    background-color: #EAEAEA;
}

.q-box p {
    font-size: 18px;
    font-weight: bold;
    padding-right: 30px;
    /* 矢印アイコン用のスペース */
}

/* 矢印アイコン */
.q-box::after {
    content: '';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #2E2E2E;
    border-bottom: 2px solid #2E2E2E;
    transition: transform 0.3s ease;
}

.q-box.active::after {
    transform: translateY(-50%) rotate(-135deg);
}

.a-box {
    background-color: #FFFFFF;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    text-align: left;
}

.a-box.active {
    padding: 20px 30px;
    max-height: 1000px;
    /* 十分な高さを確保 */
}

.a-box p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.a-box h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 5px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .qa {
        padding: 40px 20px;
    }

    .qa h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .q-box {
        padding: 15px 20px;
    }

    .q-box p {
        font-size: 16px;
    }

    .q-box::after {
        right: 20px;
    }

    .a-box.active {
        padding: 15px 20px;
    }

    .a-box p {
        font-size: 14px;
    }

    .a-box h4 {
        font-size: 16px;
    }
}

/* Footer */
footer {
    padding: 40px 50px;
    background-color: #FFFFFF;
    text-align: center;
    width: 100%;
}

footer>div {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

footer img {
    height: 25px;
    margin-right: 30px;
}

footer a {
    margin: 0 15px;
    color: #666;
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
}

.copyright {
    font-size: 14px;
    color: #7C7C7C;
}

@media (max-width: 768px) {
    footer {
        padding: 10px 0px;
        background-color: #FFFFFF;
        text-align: center;
        width: 100%;
    }

    footer>div {
        max-width: 1440px;
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    footer img {
        display: inline;
        margin: 0 auto;
        height: 25px;
        margin-right: 0px;
    }

    footer a {
        display: block;
        margin: 15px 15px;
        color: #7C7C7C;
        font-size: 14px;
    }

    .footer-link {
        display: block;
        margin: 0;
        overflow: hidden;
    }
    
    .footer-link a {
        display: block;
        width: 100%;
        font-size: 14px;
        color: #7C7C7C;
        padding: 12px 16px;
        background-color: #FFFFFF;
        transition: all 0.3s ease;
        text-align: center;
        margin: 0;
        box-sizing: border-box;
        text-decoration: none;
    }
    
    .footer-link a:last-child {
        border-bottom: none;
    }
    
    .footer-link a:hover {
        background-color: #F7F7F7;
        color: #2E2E2E;
    }

    .copyright {
        font-size: 13px;
        color: #7C7C7C;
    }
}

/* News section */
.news {
    padding: 60px 50px;
    background-color: #FFFFFF;
    text-align: center;
    width: 100%;
}

.news h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 900;
}

.news>div {
    margin: 0 auto;
    width: 100%;
}

.news .lead {
    color: #7C7C7C;
    font-size: 24px;
    margin-bottom: 30px;
}

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

.news-item {
    display: flex;
    align-items: center;
    background-color: #F7F7F7;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.news-item::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #666;
    border-top: 2px solid #666;
    flex-shrink: 0;
}

.news-item:hover {
    background-color: #EAEAEA;
    color: inherit;
}

.news-item:hover::after {
    border-right-color: #333;
    border-top-color: #333;
}

.news-info {
    display: flex;
    align-items: center;
    width: auto;
}

.news-date {
    font-size: 14px;
    color: #666;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    width: 110px;
}

.news-label {
    background: linear-gradient(to bottom right, #83D8F2, #FF9292);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 15px;
    flex-shrink: 0;
    width: 110px;
    text-align: center;
}

.news-title {
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    line-height: 1.5;
    padding-right: 50px;
    text-decoration: underline;
}

.news-more {
    text-align: center;
    margin-top: 30px;
}

.news-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.3);
    text-decoration: none;
}

.news-more-btn:hover {
    background: #222;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
    color: white;
    text-decoration: none;
}

.news-new {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #FF4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 1;
}

@media (max-width: 768px) {
    .news {
        padding: 40px 20px;
    }

    .news h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
        font-weight: 900;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        padding-right: 40px;
        position: relative;
    }

    .news-item::after {
        right: 15px;
        width: 6px;
        height: 6px;
        border-right: 1.5px solid #666;
        border-top: 1.5px solid #666;
    }

    .news-info {
        margin-bottom: 8px;
    }

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

    .news-label {
        font-size: 11px;
        padding: 3px 10px;
        margin-right: 0;
        margin-bottom: 0;
    }

    .news-title {
        font-size: 14px;
        margin: 0;
        padding-right: 30px;
    }

    .news-more {
        margin-top: 20px;
    }

    .news-more-btn {
        font-size: 14px;
        padding: 14px 28px;
    }

    .news-new {
        top: 0px;
        right: 0px;
        font-size: 9px;
        padding: 2px 5px;
    }
}

/* SNSセクション */
.sns-section {
    padding: 60px 50px;
    background-color: #F7F7F7;
    text-align: center;
    width: 100%;
}

.sns-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.sns-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sns-link:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.sns-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .sns-section {
        padding: 40px 20px;
    }

    .sns-container {
        gap: 20px;
    }

    .sns-logo {
        width: 24px;
        height: 24px;
    }
}

/* 紹介メディアセクション */
.media {
    padding: 0px 0px 60px;
    background-color: #FFFFFF;
    text-align: center;
    width: 100%;
}

.media h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 900;
}

.media-section {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

.media-scroll {
    width: 100%;
    overflow: hidden;
}

.media-track {
    display: flex;
    align-items: center;
    gap: 30px;
    will-change: transform;
    animation: mediaScroll 30s linear infinite;
}

.media-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-item img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    border: 1px solid #CACACA;
}

/* 無限スクロールのアニメーション */
@keyframes mediaScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--scroll-distance));
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .media {
        padding: 0px 0px 40px;
    }

    .media h3 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 24px;
        font-weight: 900;
    }

    .media-track {
        gap: 15px;
        animation: mediaScroll 20s linear infinite;
    }

    .media-item img {
        width: 150px;
        height: 75px;
    }
}

/* タブレット対応 */
@media (max-width: 1024px) and (min-width: 769px) {
    .media-item img {
        width: 150px;
        height: 75px;
    }

    .media-track {
        gap: 20px;
        animation: mediaScroll 25s linear infinite;
    }
}

.ambassador {
    padding: 80px 50px;
    background-color: #F7F7F7;
    text-align: center;
    width: 100%;
    background-size: cover;
    background-image: url(asset/ambassador.jpg);
    background-position: center;
}

.ambassador h3 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: rgba(0, 0, 0, 0.4) 0px 0px 10px;
}

.ambassador-status {
    font-size: 24px;
    color: #CACACA;
    font-weight: 500;
    padding: 20px 40px;
    background-color: #FFFFFF;
    border-radius: 15px;
    display: inline-block;
}

@media (max-width: 768px) {
    .ambassador {
        padding: 40px 20px;
    }

    .ambassador h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .ambassador-status {
        font-size: 16px;
        padding: 15px 30px;
        border-radius: 10px;
    }
}

.achievements {
    display: flex;
    justify-content: start;
    align-items: flex-end;
    margin-bottom: 20px;
}

.achievements img {
    width: 150px;
}

.achievements p {
    color: #735708;
    font-size: 14px;
}

@media (max-width: 768px) {
    .achievements {
        display: none;
    }
}

/* フライヤーダウンロードボタン */
.flyer-download {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    float: none !important;
    position: static !important;
    background-color: #F7F7F7;
    border: 2px solid #CACACA;
    border-radius: 15px;
    padding: 2px 16px 2px 8px;
    /* paddingを少し小さく */
    text-decoration: none;
    color: #2E2E2E;
    transition: all 0.3s ease;
    margin-left: 15px;
    height: 64px;
    /* 44pxから40pxに変更 */
    box-sizing: border-box;
    vertical-align: middle;
}

.flyer-download:hover {
    background-color: #EAEAEA;
    border-color: #999;
}

.flyer-download img {
    width: 24px !important;
    /* 少し小さく */
    height: 24px !important;
    margin: 0 6px 0 0 !important;
    /* marginも調整 */
    float: none !important;
    position: static !important;
    display: block !important;
    flex-shrink: 0;
}

.flyer-download .flyer-content {
    display: block !important;
    float: none !important;
    position: static !important;
    line-height: 1.1;
    /* line-heightを詰める */
}

.flyer-text {
    font-size: 14px;
    /* 少し小さく */
    font-weight: bold;
    color: #2E2E2E;
    margin: 0;
    display: block;
    line-height: 1.5;
}

.flyer-lead {
    font-size: 11px;
    font-weight: bold;
    color: #2E2E2E;
    margin: 0;
    display: block;
    line-height: 1.1;
}

.flyer-detail {
    font-size: 11px;
    /* 少し小さく */
    color: #7C7C7C;
    margin: 0;
    display: block;
    line-height: 1.2;
}

/* PC表示時のみ表示 */
.flyer-download.pc-only {
    display: inline-flex !important;
}

.flyer-download.sp-only {
    display: none!important;
}

/* スマホ版では非表示 */
@media (max-width: 768px) {
    .flyer-download.pc-only {
        display: none !important;
    }

    .flyer-download.sp-only {
        display: flex !important;
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        height: auto;
        padding: 8px 8px 6px;
        border-radius: 10px;
    }

    .flyer-download.sp-only img {
        width: 28px !important;
        height: 28px !important;
        margin: 0 8px 0 0 !important;
    }

    .flyer-download.sp-only .flyer-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .flyer-download.sp-only .flyer-lead {
        font-size: 11px;
        color: #2E2E2E;
        font-weight: bold;
        margin: 0;
        display: block;
        line-height: 1.1;
    }

    .flyer-download.sp-only .flyer-detail {
        font-size: 11px;
        line-height: 1.1;
    }

    .flyer-download.sp-only .flyer-content {
        line-height: 1.2;
    }
}