/* リセットとベーススタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.8;
    color: #241914;
    background: linear-gradient(135deg, #e0ce92 0%, #f5f0e8 100%);
    position: relative;
}

/* 和柄背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(185, 154, 23, 0.03) 10px, rgba(185, 154, 23, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(153, 30, 35, 0.02) 10px, rgba(153, 30, 35, 0.02) 20px);
    z-index: -1;
    opacity: 0.5;
}

/* コンテナ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    background: linear-gradient(135deg, #b49a17 0%, #d4ba4a 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #991e23, #b49a17, #991e23);
}

.main-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #241914;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease-out;
}

.main-title .highlight {
    font-size: 3.8rem;
    color: #991e23;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.5);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.subtitle {
    font-size: 1.2rem;
    color: #241914;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* メインコンテンツ */
.main-content {
    background: #fff;
    margin: 40px auto;
    max-width: 1140px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.section {
    padding: 60px 0;
    position: relative;
    animation: fadeIn 0.8s ease-out;
}

.section:nth-child(even) {
    background: linear-gradient(to right, rgba(224, 206, 146, 0.05), rgba(180, 154, 23, 0.05));
}

.section-title {
    font-size: 2.2rem;
    color: #991e23;
    margin-bottom: 35px;
    padding-bottom: 15px;
    border-bottom: 3px solid #b49a17;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60%;
    height: 3px;
    background: #991e23;
    transition: width 0.3s ease;
}

.section:hover .section-title::after {
    width: 100%;
}

.sub-heading {
    font-size: 1.5rem;
    color: #b49a17;
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid #991e23;
    transition: all 0.3s ease;
}

.sub-heading:hover {
    padding-left: 25px;
    color: #991e23;
}

/* テキストスタイル */
.lead-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #241914;
}

p {
    margin-bottom: 20px;
}

/* ハイライトセクション（見どころ専用） */
.highlights {
    background: linear-gradient(135deg, #991e23 0%, #b49a17 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    animation: highlightMove 20s linear infinite;
}

.highlights .container {
    position: relative;
    z-index: 1;
}

.highlights .section-title {
    color: #fff;
    border-bottom-color: #e0ce92;
    font-size: 2.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.highlights .section-title::after {
    background: #fff;
}

.highlights .sub-heading {
    color: #e0ce92;
    border-left-color: #fff;
    font-size: 1.7rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.6s ease-out;
}

.highlights .sub-heading:hover {
    color: #fff;
}

.highlights p {
    color: #fff;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.highlights p:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* リスト */
.list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.list li {
    padding: 12px 0 12px 30px;
    position: relative;
    transition: transform 0.2s ease;
}

.list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #991e23;
    font-size: 0.8rem;
}

/* 見どころセクションのリスト専用スタイル */
.highlights .list li {
    background: rgba(255, 255, 255, 0.2);
    padding: 18px 20px 18px 50px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    border-left: 5px solid #e0ce92;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fadeInRight 0.6s ease-out backwards;
}

.highlights .list li:nth-child(1) { animation-delay: 0.1s; }
.highlights .list li:nth-child(2) { animation-delay: 0.2s; }
.highlights .list li:nth-child(3) { animation-delay: 0.3s; }
.highlights .list li:nth-child(4) { animation-delay: 0.4s; }

.highlights .list li:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(10px) scale(1.03);
    border-left-color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.highlights .list li::before {
    content: '★';
    color: #e0ce92;
    font-size: 1.3rem;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    animation: spin 3s linear infinite;
}

/* 同意リスト */
.agreement-list {
    list-style: decimal;
    padding-left: 30px;
    margin: 30px 0;
    counter-reset: item;
}

.agreement-list li {
    padding: 20px 0;
    line-height: 1.9;
    color: #241914;
    border-bottom: 1px solid #e0ce92;
}

.agreement-list li:last-child {
    border-bottom: none;
}

/* ボタンコンテナ */
.button-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.choice-button {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 18px 50px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.yes-button {
    background: linear-gradient(135deg, #991e23, #c92730);
    color: #fff;
}

.yes-button:hover {
    background: linear-gradient(135deg, #c92730, #991e23);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(153, 30, 35, 0.5);
}

.no-button {
    background: linear-gradient(135deg, #666, #888);
    color: #fff;
}

.no-button:hover {
    background: linear-gradient(135deg, #888, #666);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.choice-button:active {
    transform: translateY(-1px);
}

/* 番号付きリスト */
.schedule-list {
    list-style: none;
    counter-reset: schedule-counter;
    padding-left: 0;
}

.schedule-list li {
    counter-increment: schedule-counter;
    padding: 20px 20px 20px 60px;
    margin-bottom: 15px;
    background: linear-gradient(to right, rgba(180, 154, 23, 0.08), transparent);
    border-left: 4px solid #b49a17;
    position: relative;
    transition: all 0.3s ease;
}

.schedule-list li:hover {
    background: linear-gradient(to right, rgba(180, 154, 23, 0.15), transparent);
    border-left-color: #991e23;
    transform: translateX(5px);
}

.schedule-list li::before {
    content: counter(schedule-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #b49a17;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.schedule-list li strong {
    color: #991e23;
    font-size: 1.1rem;
}

/* テーブル */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-table th,
.info-table td {
    padding: 18px;
    border: 1px solid #e0ce92;
    transition: background 0.3s ease;
}

.info-table th {
    background: linear-gradient(135deg, #b49a17, #d4ba4a);
    color: #fff;
    font-weight: bold;
    text-align: left;
    width: 30%;
}

.info-table td {
    background: #fff;
}

.info-table tr:hover td {
    background: rgba(224, 206, 146, 0.1);
}

/* 取消料金テーブル */
.cancel-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cancel-table thead th {
    background: #991e23;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #991e23;
}

.cancel-table tbody td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

.cancel-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

.cancel-table tbody td:last-child {
    color: #991e23;
    font-weight: bold;
}

.cancel-table tbody tr {
    background: #fff;
    transition: background 0.3s ease;
}

.cancel-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.cancel-table tbody tr:hover {
    background: rgba(153, 30, 35, 0.05);
}

.cancel-table tbody tr:last-child td {
    font-weight: bold;
    background: rgba(153, 30, 35, 0.1);
}

/* コンタクトボックス */
.contact-box {
    background: linear-gradient(135deg, rgba(180, 154, 23, 0.1), rgba(224, 206, 146, 0.1));
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #b49a17;
    margin-top: 50px;
    transition: all 0.3s ease;
}

.contact-box:hover {
    border-color: #991e23;
    box-shadow: 0 4px 15px rgba(153, 30, 35, 0.2);
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box strong {
    color: #991e23;
    font-size: 1.2rem;
}

/* ステップコンテナ */
.step-container {
    margin: 40px 0;
}

.step-item {
    background: #fff;
    border: 2px solid #b49a17;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(180, 154, 23, 0.3);
    border-color: #991e23;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #b49a17, #d4ba4a);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-heading {
    font-size: 1.5rem;
    color: #991e23;
    margin-bottom: 15px;
    font-weight: bold;
}

.step-text {
    color: #241914;
    line-height: 1.8;
    margin-bottom: 0;
}

.apply-button {
    display: block;
    background: linear-gradient(135deg, #991e23, #c92730);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    margin: 20px auto 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 30, 35, 0.3);
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.apply-button:hover {
    background: linear-gradient(135deg, #c92730, #991e23);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(153, 30, 35, 0.5);
    color: #fff;
}

.apply-button:active {
    transform: translateY(-1px);
}

.apply-button:visited {
    color: #fff;
}

.step-arrow {
    text-align: center;
    font-size: 2.5rem;
    color: #b49a17;
    margin: 10px 0;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #241914, #3a2f26);
    color: #e0ce92;
    padding: 30px 0;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer p {
    margin-bottom: 8px;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer .footer-text {
    flex: 1;
    text-align: left;
}

.footer .footer-logo {
    flex-shrink: 0;
    max-width: 300px;
}

.footer .footer-logo img {
    width: 100%;
    height: auto;
}
.footer .container {
    display: block; /* ← 重要 */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-bottom {
    margin-top: 20px;
    text-align: left!important;
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes highlightMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .main-title .highlight {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .highlights {
        padding: 60px 0 !important;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .highlights .section-title {
        font-size: 2rem;
    }
    
    .sub-heading {
        font-size: 1.3rem;
    }
    
    .highlights .sub-heading {
        font-size: 1.5rem;
    }
    
    .info-table th,
    .info-table td {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .schedule-list li {
        padding-left: 50px;
    }
    
    .highlights .list li {
        padding-left: 45px;
        font-size: 1rem;
    }
    
    .button-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .choice-button {
        width: 100%;
        max-width: 300px;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer .footer-text {
        text-align: center;
    }
    
    .footer .footer-logo {
        max-width: 150px;
    }
}
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer .footer-text {
        text-align: center;
    }
    
    .footer .footer-logo {
        max-width: 150px;
    }
}