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

body {
    font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif;
    background: #f5f5f5;
}

.boxed-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 75px;
}

.container {
    width: 100%;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
    border-top: 4px solid #f5a200;
}

.header-inner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.logo-tagline {
    font-size: 14px;
    color: #000;
    line-height: 1.3;
    text-align: center;
    font-weight: normal;
}

.line-chat-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #000;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: fit-content;
    font-weight: bold;
}

.line-logo {
    display: flex;
    align-items: center;
}

.line-inscription {
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
}

.hamburgermenu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.menu-text {
    font-size: 12px;
    color: #333;
}

.header-inner-wrapper-2 {
    background: white;
    padding: 0;
    border-top: none;
    margin-top: -18px;
}

.header-inner-wrapper-2 .boxed-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc-menu-list {
    display: flex;
    list-style: none;
    gap: 0;
    justify-content: center;
    margin: 0 auto;
}

.pc-menu-list li {
    border-right: 1px solid #e0e0e0;
}

.pc-menu-list li:first-child {
    border-left: 1px solid #e0e0e0;
}

.menu-item {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 6px 25px;
    display: block;
    transition: background 0.3s;
    font-size: 16px;
}

.menu-item:hover {
    background: #f5f5f5;
}

/* Hero Section */
.section0 {
    position: relative;
    min-height: 500px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.overlay1 {
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, transparent 50%);
}

.overlay2 {
    background: linear-gradient(-45deg, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.section0-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.banner-wrapper {
    position: relative;
    width: 700px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.banner-slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    transition: opacity 0.5s ease;
}

.banner-slide:first-child {
    object-fit: cover;
    object-position: left;
}

.banner-slide.active {
    display: block;
}

.banner-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pagination-wrapper {
    display: flex;
    gap: 10px;
}

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

.pagination-dot.active {
    background: #ff9800;
    transform: scale(1.2);
}

.state-play-pause {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: background 0.3s;
}

.state-play-pause:hover {
    background: rgba(255,255,255,0.3);
}

.play {
    display: none;
}

.state-play-pause.paused .pause {
    display: none;
}

.state-play-pause.paused .play {
    display: block;
}

.hero-text {
    text-align: center;
    margin-bottom: 30px;
}

.hero-text h1 {
    font-size: 24px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px) {
    .boxed-width {
        padding: 0 15px;
    }
    
    .logo-wrapper {
        gap: 6px;
    }
    
    .site-logo img {
        width: 60px;
        height: 60px;
    }
    
    .logo-tagline {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-inner-wrapper {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 4px 0;
    }
    
    .logo-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    
    .site-logo img {
        width: 50px;
        height: 50px;
    }
    
    .logo-tagline {
        font-size: 11px;
    }
    
    .line-chat-cta {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .line-logo img {
        width: 30px;
        height: 30px;
    }
    
    .pc-menu-list {
        flex-wrap: wrap;
        gap: 0;
        justify-content: center;
    }
    
    .menu-item {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .banner-wrapper {
        width: 95%;
    }
    
    .banner-slide {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-inner-wrapper {
        padding: 6px 0;
        gap: 6px;
    }
    
    .logo-wrapper {
        gap: 3px;
    }
    
    .site-logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo-tagline {
        font-size: 10px;
    }
    
    .line-chat-cta {
        font-size: 12px;
        padding: 3px 6px;
        gap: 3px;
    }
    
    .line-logo img {
        width: 25px;
        height: 25px;
    }
    
    .pc-menu-list {
        flex-direction: column;
        width: 100%;
    }
    
    .pc-menu-list li {
        border-right: none;
        border-left: none;
        border-bottom: 1px solid #e0e0e0;
        width: 100%;
    }
    
    .pc-menu-list li:last-child {
        border-bottom: none;
    }
    
    .menu-item {
        padding: 10px;
        text-align: center;
        width: 100%;
    }
    
    .section0 {
        min-height: 300px;
        padding: 20px 0;
    }
}

/* Section 1 Styles */
.section1 {
    background: #fff8e1;
    padding: 60px 0;
}

.header-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.header-title {
    font-size: 32px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 20px;
    line-height: 1.4;
}

.header-subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
    font-weight: bold;
}

.cards-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.header-images {
    position: absolute;
    right: 130px;
    top: -80px;
}

.img1 {
    width: 160px;
    height: auto;
}

.img2 {
    width: 110px;
    height: auto;
    position: absolute;
    top: -50px;
    right: -10px;
}

.cards-inner-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1000px;
}

.cards {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    flex: 1;
    text-align: center;
    min-width: 400px;
    height: auto;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
    white-space: nowrap;
}

.card-subtitle {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
    white-space: nowrap;
    font-weight: bold;
}

.cta-wrapper {
    text-align: center;
}

.cta-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.cta-bttn {
    background: #00C851;
    color: white;
    border: none;
    padding: 12px 80px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.cta-bttn:hover {
    background: #00a844;
}

.cta-bttn a {
    color: white;
    text-decoration: none;
}

.cta-subtitle {
    font-size: 14px;
    margin-top: 0;
    display: block;
}

.cta-subtitle a {
    color: #666;
    text-decoration: underline;
    font-weight: bold;
}