@charset "UTF-8";

/* =====================================================
   RESET & BASE STYLES
===================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    background-color: #FFFDF7;
    /* 全体の背景を少し濃くしてセクションを目立たせる */
    color: #5D4037;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

p {
    font-size: 19px;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =====================================================
   LAYOUT CONTAINER (700px Fixed)
===================================================== */
.content-wrapper {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    /* ベースは白 */
    position: relative;
    overflow: hidden;

    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    /* 影をつけて立体感を出す */
}

/* =====================================================
   HERO SECTION
   Background: Light Blue
   Shape: Rounded Bottom
===================================================== */
/* Hero Section */
.hero-section {
    position: relative;
    background: repeating-linear-gradient(120deg, #FFF8E1, #FFF8E1 15px, #fff 15px, #fff 30px);
    overflow: hidden;
    padding: 60px 40px 100px;
    /* 下部パディングを増やしてカーブエリア確保 */
    text-align: center;
    border-radius: 0;
    z-index: 1;
}

/* Sky Animation Elements */
.sky-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: none;
    /* Hide Sky for now as per "summer" feedback */
}

/* Content needs to be above sky */
.hero-section>*:not(.sky-container) {
    position: relative;
    z-index: 1;
}

/* Sun */
.svg-sun {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    animation: sunRotate 60s linear infinite;
    opacity: 0.8;
}

@keyframes sunRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Clouds */
.svg-cloud {
    position: absolute;
    fill: #fff;
    opacity: 0.9;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
}

.cloud-1 {
    top: 40px;
    width: 100px;
    animation: moveCloud 40s linear infinite;
}

.cloud-2 {
    top: 120px;
    width: 160px;
    animation: moveCloud 55s linear infinite;
    animation-delay: -20s;
}

.cloud-3 {
    top: 80px;
    width: 80px;
    animation: moveCloud 35s linear infinite;
    animation-delay: -10s;
}

@keyframes moveCloud {
    from {
        left: 100%;
        transform: translateX(0);
    }

    to {
        left: 0%;
        transform: translateX(-150%);
    }

    /* Move fully out of view */
}

/* Hero Garlands */
.hero-garland {
    position: absolute;
    top: 0;
    width: 220px;
    height: auto;
    z-index: 5;
    pointer-events: none;
}

.hero-garland.left {
    left: -60px;
    transform: rotate(-30deg);
}

.hero-garland.right {
    right: -60px;
    transform: scaleX(-1) rotate(-30deg);
}

/* Images Area */
.hero-images-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-image-placeholder {
    width: 280px;
    height: 190px;
    background-color: #ddd;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-image-placeholder::after {
    content: "Image";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-weight: bold;
}

/* Icons */
.hero-icons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.circle-icon {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px solid #fff;
    /* Border will be colored by specific classes or removed if using full gradient/shadow */
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    color: #5D4037;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 -4px 4px rgba(0, 0, 0, 0.05);
}

.circle-icon.blue {
    border: 3px solid #A5D6A7;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.circle-icon.pink {
    border: 3px solid #FFAB91;
    background: linear-gradient(135deg, #FBE9E7 0%, #FFCCBC 100%);
}

.circle-icon.yellow {
    border: 3px solid #FDD780;
    background: linear-gradient(135deg, #FEF0C8 0%, #FFE082 100%);
}

/* Cityscape */
.cityscape-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

.cityscape-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    object-position: bottom;
}

/* Walking Students Removed */
/* .students-container, .walking-student, .student-1, .student-2, @keyframes walkAcross, @keyframes bounce code removed */

/* Titles */
.main-title {
    margin-bottom: 20px;
    margin-top: -50px;
}

.main-logo {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: inline-block;
}

.sub-title {
    font-size: 19px;
    color: #5D4037;
    margin-bottom: 24px;
}

.event-date {
    font-size: 24px;
    font-weight: 700;
    background-color: transparent;
    display: inline-block;
    padding: 5px 20px;
    margin-bottom: 35px;
    color: #E65100;
    line-height: 1.2;
}

.date-text {
    font-size: 42px;
}

.time-text {
    font-size: 42px;
}

.day-text {
    font-size: 24px;
    margin-right: 12px;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
    padding: 20px 0;
    background: linear-gradient(180deg, #FDE68A 0%, #FCCA46 100%);
    border-radius: 50px;
    color: #7A5C00;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(252, 202, 70, 0.4);
    letter-spacing: 0.1em;
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* =====================================================
   MESSAGE SECTION
   Background: White
===================================================== */
.message-section {
    padding: 40px 40px 80px;
    text-align: center;
    background-color: #fff;
}

.message-title {
    font-size: 24px;
    color: #E65100;
    margin-bottom: 30px;
    font-weight: 700;
}

.message-body {
    font-size: 17px;
    line-height: 2;
    color: #444;
}

/* =====================================================
   WORKSHOP SECTION
   Background: Cream Yellow
   Shape: Rounded Top
===================================================== */
.workshop-section {
    background-color: #FFF3E0;
    /* クリーム色 */
    padding: 80px 40px 60px;
    text-align: center;
    border-radius: 60px 60px 0 0;
    /* 上部を丸く */
    margin-top: -40px;
    /* Messageセクションに食い込ませる */
    position: relative;
    z-index: 2;
}

.section-heading {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
    /* 全体を大きく 英語の高さに合わせる */
    overflow: hidden;
    margin-bottom: 60px;
}

.section-heading .en-title {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 8vw;
    font-weight: 900;
    color: #E0E0E0;
    text-transform: uppercase;
    position: absolute;
    bottom: 50%;
    transform: translateY(calc(50% - 30px));
    /* 下端調整: フォントの余白分少し下げる */
    left: 0;
    margin-left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    letter-spacing: 0.05em;
    white-space: nowrap;
    line-height: 1;
}

.section-heading .jp-title {
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 72px;
    color: #E65100;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    /* 下端に合わせる */
    line-height: 1;
}

.heading-deco {
    position: absolute;
    width: 80px;
    height: auto;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.heading-deco.aroma {
    top: -30px;
    left: 50%;
    margin-left: -270px;
    transform: rotate(-15deg);
}

.heading-deco.leather {
    bottom: 5px;
    left: 50%;
    margin-left: 210px;
    transform: rotate(15deg);
}

.workshop-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.workshop-card {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 15px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.card-content h3 {
    font-size: 18px;
    color: #E65100;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.workshop-note {
    font-size: 19px;
    color: #E65100;
    margin-top: 15px;
}

/* =====================================================
   SWEETS SECTION
   Background: Pale Pink
   Shape: Wave Top (via border-radius)
===================================================== */
.sweets-section {
    background: radial-gradient(#FFF 20%, #FFF5F7 20%) 0 0 / 20px 20px;
    /* 薄いピンクの水玉 */
    padding: 80px 40px 60px;
    text-align: center;
    border-radius: 0 0 60px 60px;
    /* 下部を丸く */
}

.section-sub-heading {
    font-size: 16px;
    color: #FF8A65;
    /* ピンクに合わせた文字色 */
    margin-top: -30px;
    margin-bottom: 40px;
}

.sweets-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: transparent;
    padding: 20px;
}

.sweets-text {
    flex: 1;
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
}

.sweets-text p {
    white-space: nowrap;
}

.sweets-small-note {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.sweets-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

/* =====================================================
   SCHEDULE SECTION
   Background: White
===================================================== */
.schedule-section {
    padding: 60px 40px;
    text-align: center;
    background-color: #fff;
    margin-top: 20px;
    /* 少し隙間を空ける */
}

.timeline-container {
    max-width: 500px;
    margin: 0 auto 40px;
}

.timeline-item {
    display: flex;
    align-items: center;
    background: #F9FCFF;
    /* カード背景を少し変える */
    padding: 15px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #FFE0B2;
}

.time-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FCE69B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #7A5C00;
    margin-right: 20px;
    flex-shrink: 0;
}

.event-name {
    font-size: 16px;
    font-weight: 700;
    color: #5D4037;
}

.event-name .small {
    font-size: 13px;
    font-weight: 400;
}

.confirmation-note {
    font-size: 13px;
    color: #E65100;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.pink-button {
    background-color: #F8B3C3;
    border: none;
    color: #fff;
    padding: 12px 50px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 0 #E598AB;
    transition: transform 0.1s;
}

.pink-button:active {
    transform: translateY(2px);
    box-shadow: none;
}

/* =====================================================
   ENTRY SECTION
   Background: Light Blue (Card style)
===================================================== */
.entry-section {
    padding: 60px 40px;
    text-align: center;
    background-color: #FFF8E1;
    border-radius: 60px 60px 0 0;
    /* 上部丸く */
    margin-top: 0;
}

.privacy-accordion {
    max-width: 600px;
    margin: 20px auto 40px;
    text-align: left;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.privacy-accordion summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    background-color: #f9f9f9;
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-accordion summary::-webkit-details-marker {
    display: none;
}

.privacy-accordion summary::after {
    content: '+';
    font-size: 18px;
    font-weight: bold;
}

.privacy-accordion[open] summary::after {
    content: '-';
}

.privacy-content {
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #eee;
}


.entry-note {
    font-size: 19px;
    margin-bottom: 30px;
}

.entry-form-wrapper {
    background-color: #fff;
    /* フォーム背景白 */
    padding: 40px;
    border-radius: 20px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.custom-form {
    text-align: left;
}

.form-item {
    margin-bottom: 20px;
}

.form-item label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #5D4037;
}

.required {
    color: #E57373;
    margin-left: 5px;
}

.form-item input,
.form-item select,
.form-item textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #F0F0F0;
    /* ボーダーを少し太く */
    border-radius: 12px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 16px;
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
    border-color: #FCE69B;
    background: #fff;
    outline: none;
}

.form-helper {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.submit-button-container {
    text-align: center;
    margin-top: 40px;
}

.submit-button {
    background: linear-gradient(180deg, #FDE68A 0%, #FCCA46 100%);
    border: none;
    padding: 18px 90px;
    border-radius: 50px;
    color: #7A5C00;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 0 #E0B050;
    transition: transform 0.1s;
}

.submit-button:active {
    transform: translateY(2px);
    box-shadow: none;
}

.privacy-note {
    margin-top: 40px;
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 1.6;
}

/* =====================================================
   FOOTER
===================================================== */
.footer-section {
    background-color: #5D4037;
    color: #fff;
    padding: 60px 40px;
    text-align: center;
}

.footer-heading {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-grid {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: left;
    font-size: 14px;
}

.info-row {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    width: 100px;
    font-weight: 700;
    flex-shrink: 0;
}

.info-value {
    flex: 1;
}

.access-heading {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Google Map Iframe Style */
iframe.map-placeholder {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 15px;
    background-color: #eee;
    margin-bottom: 40px;
}

.copyright {
    font-size: 12px;
    opacity: 0.8;
}

.copy-text {
    margin-top: 10px;
    font-size: 10px;
}

/* =====================================================
   VALIDATION & RADIO STYLES
===================================================== */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    /* 左寄せ */
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
    padding: 10px 20px;
    border: 2px solid #FFE0B2;
    border-radius: 30px;
    transition: all 0.2s;
}

.radio-label:hover {
    border-color: #FCE69B;
}

/* Hide default radio */
.radio-label input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    outline: none;
}

.radio-label input[type="radio"]:checked {
    border-color: #FCCA46;
    background-color: #fff;
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #FCCA46;
    border-radius: 50%;
}

.radio-text {
    font-size: 14px;
    font-weight: 700;
    color: #5D4037;
}

.error-text {
    color: #E57373;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 700;
    min-height: 18px;
    /* レイアウト崩れ防止 */
}

.error-input {
    border-color: #E57373 !important;
    background-color: #FFF5F5 !important;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.success-message h3 {
    color: #E65100;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.success-message p {
    color: #555;
    line-height: 1.6;
}

/* =====================================================
   MOBILE OPTIMIZATION
===================================================== */
@media (max-width: 500px) {
    .hero-garland {
        width: 140px !important;
        top: -60px !important;
    }

    .hero-garland.left {
        left: -50px !important;
        transform: rotate(-30deg);
    }

    .hero-garland.right {
        right: -50px !important;
        transform: scaleX(-1) rotate(-30deg);
    }

    .content-wrapper {
        box-shadow: none;
        /* スマホではシャドウ不要かも */
    }

    .hero-section {
        padding: 40px 20px 100px;
    }

    .message-section,
    .workshop-section,
    .sweets-section,
    .entry-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-icons-container {
        gap: 8px;
    }

    .circle-icon {
        width: 100px;
        height: 100px;
        font-size: 18px;
    }

    .main-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .date-text,
    .time-text {
        font-size: 32px;
    }

    /* Mobile Heading Fix */
    .section-heading {
        height: 100px;
        margin-bottom: 40px;
    }

    .section-heading .en-title {
        font-size: 14vw;
        bottom: 50%;
        transform: translateY(50%);
    }

    .section-heading .jp-title {
        font-size: 36px;
        white-space: nowrap;
        flex-shrink: 0;
        /* 防止策 */
        width: auto;
    }

    .heading-deco {
        width: 50px !important;
    }

    .heading-deco.aroma {
        margin-left: -140px;
        top: -40px;
    }

    .heading-deco.leather {
        margin-left: 120px;
        bottom: -30px;
    }

    /* Ensure no overflow */
    .cta-button {
        width: 100%;
    }

    .sweets-content {
        flex-direction: column;
    }

    .sweets-text {
        font-size: 15px;
    }
}

/* Micro copy */
.micro-copy {
    font-size: 14px;
    font-weight: 700;
    color: #E57373;
    display: inline-block;
    margin-bottom: 10px;
    animation: bounce-gentle 2s infinite;
}

@keyframes bounce-gentle {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}