/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: #ffffff;
    color: #222;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

/* 共通スタイル */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #324851;
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-button {
    background-color: #1E40AF;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
}

.cta-button:hover {
    background-color: #3B82F6;
}

/* レンタルプランセクション */
.rental-plans {
    background-color: #f5f5f5;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.price {
    background: #fff;
    text-align: center;
    padding: 60px 0 40px 0;
}

.price h2 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-family: 'Noto Sans JP', sans-serif;
}

.price-main {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e90ff;
    margin-bottom: 12px;
    font-family: 'Noto Sans JP', sans-serif;
}

.price-condition {
    font-size: 1rem;
    color: #555;
    font-family: 'Noto Sans JP', sans-serif;
}

.reserve-button {
    background-color: #1E40AF;
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
}

.reserve-button:hover {
    background-color: #3B82F6;
}

/* 特徴セクション */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    background-color: #1E40AF;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Noto Sans JP', sans-serif;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2rem;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px 0 40px;
    background: transparent;
    position: absolute;
    width: 100vw;
    z-index: 10;
    top: 0;
    padding-left: 10vw;
    padding-right: 13vw;
}

.header-left .logo-img {
    height: 100px;
}

.header-right a {
    margin-left: 32px;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
    font-family: 'Noto Sans JP', sans-serif;
}

.header-right a:hover {
    color: #129990;
}

.main-visual {
    position: relative;
    width: 100vw;
    height: 900px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
    margin-top: 50px;
}

.main-img {
    display: block;
    margin: 0 auto;
    width: 80vw;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.99);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-img.animate {
    opacity: 1;
    transform: scale(1);
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0.99);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .main-visual {
        height: auto;
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .examples-main {
        gap: 20px;
    }
    
    .examples-img {
        max-width: 500px;
    }
}

@media (max-width: 900px) {
    .main-img {
        width: 90vw;
    }

    .header {
        padding: 20px 5vw;
    }
    
    .header-left .logo-img {
        height: 80px;
    }
    
    .main-visual {
        height: auto;
        padding: 100px 0 50px 0;
    }
    
    .points-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .point-item {
        max-width: 100%;
    }
    
    .points-img-box {
        flex-direction: column;
        gap: 20px;
    }
    
    .points-img {
        max-width: 90vw;
    }
    
    .examples-icons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .example-icon {
        width: 100px;
        height: 100px;
    }
    
    .examples-main {
        flex-direction: column;
        align-items: center;
    }
    
    .examples-img {
        max-width: 90vw;
        height: 300px;
    }
    
    #example-desc {
        padding: 0 20px;
    }
    
    .facility-map-img {
        max-width: 90vw;
    }
    
    .accommodation-imgs {
        flex-direction: column;
        gap: 20px;
    }
    
    .accommodation-img {
        width: 90vw;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .header-right a {
        margin-left: 20px;
        font-size: 1rem;
    }
    
    .main-catch h1 {
        font-size: 2rem;
    }
    
    .bubble {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .price-box {
        padding: 20px;
    }
    
    .price-main {
        font-size: 2.2rem;
    }
    
    .facility-table th,
    .facility-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .accommodation-table th,
    .accommodation-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .main-img {
        width: 95vw;
        max-width: 500px;
    }

    body {
        display: flex;
        flex-direction: column;
    }

    .header {
        order: 1;
    }

    .price-section {
        order: 2;
        padding: 5px 0;
        margin-bottom: 0;
    }

    .main-visual {
        order: 3;
        margin-top: 0;
        padding-top: 2px;
    }

    .points-section {
        order: 4;
    }

    .examples {
        order: 5;
    }

    .conditions-section {
        order: 6;
    }

    .facility-section {
        order: 7;
    }

    .accommodation-section {
        order: 8;
    }

    .faq {
        order: 9;
    }

    .contact-section {
        order: 10;
    }

    .footer {
        order: 11;
    }

    h2 {
        font-size: 1.0rem;
        margin-bottom: 2rem;
    }
}

.main-catch {
    position: relative;
    left: auto;
    right: auto;
    text-align: center;
    z-index: 2;
    margin-bottom: 30px;
}

.main-catch h1 {
    font-size: 2.8rem;
    color: #129990;
    font-weight: bold;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-style: italic;
    font-family: 'Noto Sans JP', sans-serif;
}

.main-circles {
    display: none;
}

.subcatch {
    background: none;
    padding: 0;
    text-align: center;
}

.bubbles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bubble {
    background: #e6f7fa;
    border-radius: 20px;
    box-shadow: none;
    border: 1px dotted #129990;
    padding: 12px 20px;
    font-size: 1rem;
    color: #324851;
    margin-bottom: 0;
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
}

.price-section {
    background: #fff;
    text-align: center;
    padding: 48px 0 10px 0;
}

.price-box {
    display: inline-block;
    background: #e6f7fa;
    border-radius: 24px;
    padding: 32px 48px;
    box-shadow: 0 2px 8px rgba(30,144,255,0.08);
}

.price-label {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 12px;
    font-family: 'Noto Sans JP', sans-serif;
}

.price-unit {
    font-size: 1.3rem;
    color: #324851;
    margin-left: 8px;
}

.price-note {
    font-size: 1rem;
    color: #324851;
    font-family: 'Noto Sans JP', sans-serif;
}

.examples {
    background: #ffffff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.examples h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #324851;
}

.examples-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 55px;
    margin-bottom: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.example-icon {
    cursor: pointer;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: none;
    border: 2px solid transparent;
    object-fit: contain;
    background: #fff;
    padding: 6px;
}

.example-icon:hover {
    transform: scale(0.98);
}

.example-icon.active {
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
    background: #ffffff;
}

.examples-main {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin: 0 auto 32px auto;
    justify-content: flex-start;
    max-width: 1020px;
}

.examples-img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(30,144,255,0.08);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.examples-img.animate {
    opacity: 1;
    transform: translateY(0);
}

#example-desc {
    max-width: 1000px;
    text-align: left;
    transition: opacity 0.3s ease-in-out;
}

#example-desc h3 {
    font-size: 1.5rem;
    color: #324851;
    margin-bottom: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

#example-desc p {
    font-size: 1.15rem;
    color: #324851;
    margin-bottom: 1.3em;
    font-family: 'Noto Sans JP', sans-serif;
}

.examples-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 32px;
    font-family: 'Noto Sans JP', sans-serif;
}

.case-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 16px 20px;
    width: 220px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.case-num {
    font-weight: bold;
    color: #324851;
    font-size: 1.2rem;
}

.case-title {
    font-weight: bold;
    margin: 8px 0 4px 0;
}

.case-desc {
    font-size: 0.95rem;
    color: #333;
}

.voices {
    background: #ffffff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.voices h2 {
    font-size: 1.3rem;
    color: #324851;
    margin-bottom: 32px;
}

.voices-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.voice-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.08);
}

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

.voice-item img.voice-img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.voice-content {
    flex-grow: 1;
    position: relative;
    padding-left: 40px;
}

.voice-item.reverse .voice-content {
    padding-left: 0;
    padding-right: 40px;
}

.voice-content::before, .voice-content::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #129990;
}

.voice-content::before {
    left: 20px;
}

.voice-item.reverse .voice-content::before {
    left: auto;
    right: 20px;
}

.voice-content::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #129990;
    top: 50%;
    transform: translateY(-50%);
    left: 11px;
}

.voice-item.reverse .voice-content::after {
    border-left: none;
    border-right: 10px solid #129990;
    left: auto;
    right: 11px;
}

.voice-title {
    font-size: 1.1rem;
    color: #324851;
    margin-bottom: 10px;
    font-family: 'Noto Sans JP', sans-serif;
}

.voice-content p {
    font-size: 1rem;
    color: #222;
    line-height: 1.6;
    font-family: 'Noto Sans JP', sans-serif;
}

.faq {
    background: #ffffff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.faq h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #324851;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 24px;
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(30,144,255,0.06);
}

.faq-q {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: bold;
    color: #324851;
    border-bottom: 2px solid #4a6a64;
    padding: 0.5em 0 0.2em 0;
    margin-bottom: 0.5em;
    text-align: left;
    gap: 0.5em;
    font-family: 'Noto Sans JP', sans-serif;
}

.faq-q-icon {
    font-family: 'AB-hanamaki Regular', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #129990;
    margin-right: 10px;
    vertical-align: middle;
}

.faq-q-text {
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
}

.faq-toggle {
    font-size: 2.2rem;
    font-weight: bold;
    color: #129990;
    margin-left: auto;
    user-select: none;
    transition: transform 0.2s;
    line-height: 1;
}

.faq-a {
    color: #222;
    font-size: 1rem;
    margin-left: 48px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    max-height: 500px;
    opacity: 1;
    transition: max-height 1.0s ease-out, opacity 1.0s ease-out;
}

.faq-answer-hidden {
    max-height: 0;
    opacity: 0;
}

/* フッター */
.footer {
    background-color: #324851;
    color: #ffffff;
    padding: 60px 10vw 20px 10vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
}

.footer-left {
    flex: 0 0 20%;
    max-width: 250px;
    margin-right: 20px;
    padding-left: 10vw;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-center {
    flex: 0 0 45%;
    line-height: 2;
    font-size: 1.1rem;
    padding-left: 9vw;
    padding-top: 35px;
    font-family: 'Noto Sans JP', sans-serif;
}

.footer-center div {
    margin-bottom: 8px;
}

.footer-center .official-site-badge {
    background-color: #324851;
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    margin-left: 10px;
    white-space: nowrap;
}

.footer-right {
    flex: 0 0 30%;
    line-height: 2.3;
    font-size: 1.1rem;
    padding-right: 10vw;
    padding-top: 35px;
    font-family: 'Noto Sans JP', sans-serif;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Noto Sans JP', sans-serif;
}

.page-top {
    position: absolute;
    top: 100;
    left: 50%;
    transform: translate(-50%, -100%);
    background-color: #ffffff;
    color: #333;
    width: 100px;
    height: 60px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 999;
    transition: background-color 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
}

.page-top:hover {
    background-color: #ffffff;
}

.page-top a {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.page-top-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #333;
    margin-bottom: 1px;
}

@media (max-width: 900px) {
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 40px 5vw 20px 5vw;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        flex: none;
        width: 100%;
        text-align: center;
        margin: 0 0 20px 0;
        padding-left: 0;
        padding-top: 0;
        padding-right: 0;
    }

    .footer-left {
        order: 1;
    }

    .footer-center {
        order: 2;
    }

    .footer-right {
        order: 3;
    }

    .page-top {
        transform: translate(-50%, -100%);
    }
}

@media (max-width: 600px) {
    .footer-logo-img {
        height: 120px;
    }

    .footer-center,
    .footer-right {
        font-size: 1rem;
    }

    .footer-center .official-site-badge {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
}

@media (max-width: 768px) {
    .voice-item {
        flex-direction: column !important;
        text-align: center;
        gap: 20px;
    }
    .voice-item img.voice-img {
        width: 100px;
        height: 100px;
    }
    .voice-content {
        padding-left: 0;
        padding-right: 0;
    }
    .voice-content::before, .voice-content::after, .voice-item.reverse .voice-content::before, .voice-item.reverse .voice-content::after {
        display: none;
    }
    .voice-title {
        text-align: center;
    }
    .voice-content p {
        text-align: left;
    }
}

/* お得すぎる3つのポイント */
.points-section {
    background: #fff;
    padding: 60px 0;
}
.points-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}
.points-list {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.point-item {
    background: #f5f8fa;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem;
    flex: 1 1 0;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
}
.point-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1E40AF;
}
.point-item p {
    font-size: 1rem;
    color: #333;
}
@media (max-width: 900px) {
    .points-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .point-item {
        max-width: 100%;
    }
}

.points-img-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
    max-width: 1200px;
}
.points-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.points-img.animate {
    opacity: 1;
    transform: translateY(0);
}

.points-img:nth-child(1) {
    animation-delay: 0.2s;
}

.points-img:nth-child(2) {
    animation-delay: 0.6s;
}

.points-img:nth-child(3) {
    animation-delay: 1s;
}

.points-lead {
    font-size: 1rem;
    color: #324851;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
    .points-img-box {
        flex-direction: column;
        gap: 20px;
        max-width: 100vw;
    }
    .points-img {
        max-width: 90vw;
    }
}

.examples .points-lead {
    font-size: 1rem;
    color: #324851;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.conditions-section {
    background: #fff;
    padding: 0px 0 0px 0;
    text-align: center;
}
.conditions-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 2000px;
}
.conditions-img {
    width: 100%;
    max-width: 2000px;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.conditions-img.animate {
    opacity: 1;
    transform: translateY(0);
}
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.reason-section {
    background: url('images/reason_bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0 60px 0;
    text-align: center;
}
.reason-bg {
    background: rgba(34, 56, 70, 0.45);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.reason-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}
.reason-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #fff;
}
.reason-desc {
    font-size: 1.15rem;
    line-height: 2.1;
    color: #fff;
    text-align: center;
}

.facility-section {
    background: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.facility-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #324851;
}
.facility-map-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem auto;
    max-width: 1000px;
}
.facility-map-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.facility-map-img.animate {
    opacity: 1;
    transform: translateY(0);
}

.facility-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #324851;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
}

.facility-table-box {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}
.facility-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(30,144,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.facility-table th,
.facility-table td {
    text-align: justify;
    letter-spacing: 0.15em;
}
.facility-table th {
    background: #4a6a64;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding: 14px 18px;
    width: 160px;
    font-size: 1.08rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
    font-family: 'Noto Sans JP', sans-serif;
}
.facility-table td {
    background: #fff;
    color: #324851;
    padding: 14px 18px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
    font-family: 'Noto Sans JP', sans-serif;
}
.facility-table tr:last-child th,
.facility-table tr:last-child td {
    border-bottom: none;
}
.official-site-badge {
    display: inline-block;
    background: #ffffff;
    color: #129990;
    font-size: 0.7em;
    font-weight: bold;
    border-radius: 12px;
    padding: 2px 10px;
    margin-left: 8px;
    vertical-align: middle;
    border: 1px solid #b2e0e6;
}

.accommodation-section {
    background: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.accommodation-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #324851;
}
.accommodation-imgs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 2.5rem;
}
.accommodation-img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    background: #4a6a64;
    display: block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.accommodation-img.animate {
    opacity: 1;
    transform: translateY(0);
}

.accommodation-img:nth-child(1) {
    animation-delay: 0.2s;
}

.accommodation-img:nth-child(2) {
    animation-delay: 0.6s;
}

.accommodation-img:nth-child(3) {
    animation-delay: 1s;
}

.accommodation-table-box {
    max-width: 900px;
    margin: 0 auto 2rem auto;
}
.accommodation-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    font-size: 1.08rem;
    box-shadow: 0 2px 8px rgba(30,144,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.accommodation-table th,
.accommodation-table td {
    text-align: justify;
    letter-spacing: 0.15em;
}
.accommodation-table th {
    background: #4a6a64;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding: 14px 18px;
    width: 160px;
    font-size: 1.08rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}
.accommodation-table td {
    background: #fff;
    color: #324851;
    padding: 14px 18px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}
.accommodation-table tr:last-child th,
.accommodation-table tr:last-child td {
    border-bottom: none;
}

/* お問合せセクション */
.contact-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}
.contact-lead-top {
    font-size: 1.1rem;
    color: #324851;
    margin-bottom: 10px;
}
.contact-title {
    font-size: 2.0rem;
    font-weight: bold;
    color: #324851;
    margin-bottom: 20px;
}
.contact-lead-bottom {
    font-size: 1rem;
    color: #324851;
    margin-bottom: 40px;
    line-height: 1.6;
}
.contact-form {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #324851;
    margin-bottom: 8px;
    font-family: 'Noto Sans JP', sans-serif;
}
.form-group label span {
    color: #e74c3c;
    margin-right: 5px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #333;
    background: #f8f8f8;
    transition: border-color 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #129990;
    outline: none;
}
.phone-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}
.phone-inputs input {
    flex: 1;
    text-align: center;
}
.submit-button {
    background-color: #129990;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 40px auto 0 auto;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
}
.submit-button:hover {
    background-color: #0e7a70;
}

.price-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 2000px;
    margin-top: 50px;
}
.price-img {
    width: 100%;
    max-width: 1300px;
    height: auto;
    display: block;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0);
    transition: all 1.5s ease-out;
}

.price-img.animate {
    opacity: 1;
    transform: scale(1);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .main-visual {
        height: auto;
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .examples-main {
        gap: 20px;
    }
    
    .examples-img {
        max-width: 500px;
    }
}

@media (max-width: 900px) {
    .header {
        padding: 20px 5vw;
    }
    
    .header-left .logo-img {
        height: 80px;
    }
    
    .main-visual {
        height: auto;
        padding: 100px 0 50px 0;
    }
    
    .main-img {
        width: 90vw;
    }
    
    .points-list {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .point-item {
        max-width: 100%;
    }
    
    .points-img-box {
        flex-direction: column;
        gap: 20px;
    }
    
    .points-img {
        max-width: 90vw;
    }
    
    .examples-icons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .example-icon {
        width: 100px;
        height: 100px;
    }
    
    .examples-main {
        flex-direction: column;
        align-items: center;
    }
    
    .examples-img {
        max-width: 90vw;
        height: 300px;
    }
    
    #example-desc {
        padding: 0 20px;
    }
    
    .facility-map-img {
        max-width: 90vw;
    }
    
    .accommodation-imgs {
        flex-direction: column;
        gap: 20px;
    }
    
    .accommodation-img {
        width: 90vw;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    .header-right a {
        margin-left: 20px;
        font-size: 1rem;
    }
    
    .main-catch h1 {
        font-size: 2rem;
    }
    
    .bubble {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .price-box {
        padding: 20px;
    }
    
    .price-main {
        font-size: 2.2rem;
    }
    
    .facility-table th,
    .facility-table td {
        padding: 10px;
        font-size: 0.8rem;
    }
    
    .accommodation-table th,
    .accommodation-table td {
        padding: 10px;
        font-size: 0.8rem;
    }
}

.main-visual-contact-button {
    position: absolute;
    bottom: 40px;
    right: 200px;
    background-color: #2b3d44;
    color: #fff;
    padding: 20px 110px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    letter-spacing: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #fff;
    font-family: 'Noto Sans JP', sans-serif;
}

.main-visual-contact-button .page-top-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #fff;
    margin-bottom: 2px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-visual-contact-button:hover {
    background-color: #1a2a30;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
    .main-visual-contact-button {
        right: 10px;
        bottom: 40px;
        padding: 18px 70px;
        font-size: 0.8rem;
    }
    .main-visual-contact-button .page-top-arrow {
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 6px solid #fff;
    }
}

@media (max-width: 900px) {
    .main-visual-contact-button {
        right: 50px;
        bottom: 45px;
        padding: 15px 40px;
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    .main-visual-contact-button .page-top-arrow {
        border-left: 3px solid transparent;
        border-right: 3px solid transparent;
        border-bottom: 5px solid #fff;
    }
}

@media (max-width: 600px) {
    .main-visual-contact-button.fixed {
        right: 27px;
        bottom: 50px;
        padding: 20px 50px;
        font-size: 1.0rem;
        letter-spacing: 2px;
    }
    .main-visual-contact-button .page-top-arrow {
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
        border-bottom: 4px solid #fff;
    }
}

/* スクロール追従時のスタイル */
.main-visual-contact-button.fixed {
    position: fixed;
    bottom: 40px;
    right: 200px;
}

@media (max-width: 1200px) {
    .main-visual-contact-button.fixed {
        right: 100px;
        bottom: 50px;
        padding: 18px 70px;
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .main-visual-contact-button.fixed {
        right: 50px;
        bottom: 45px;
        padding: 15px 40px;
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 600px) {
    .main-visual-contact-button.fixed {
        right: 10px;
        bottom: 50px;
        padding: 20px 60px;
        font-size: 1.0rem;
        letter-spacing: 2px;
    }
}

/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #324851;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 600px) {
    .hamburger-menu {
        display: block;
    }

    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .header-right.active {
        right: 0;
    }

    .header-right a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

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

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

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

/* フェードアウト用クラス */
.fade-out {
    opacity: 0;
} 
