@charset "UTF-8";

/* ==========================================================================
   1. Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

/* ==========================================================================
   2. Variables (:root)
   ========================================================================== */
:root {
    --primary-color: #e95686;
    --accent-color: #8bc34a;
    --text-color: #333333;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --font-base: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ==========================================================================
   3. Utility Classes (汎用クラス)
   ========================================================================== */
.green {
    color: #8bc34a !important;
}

.bold {
    font-weight: 700;
}

/* Margins & Paddings */
.mt50 {
    margin-top: 50px;
}

.mt70 {
    margin-top: 70px !important;
}

.mg20 {
    margin: 20px;
}

.mtb50 {
    margin: 50px 0;
}

.pt150 {
    padding-top: 150px !important;
}

.map-padding {
    padding-top: 150px !important;
}

/* Widths */
.mw100 {
    max-width: 100px !important;
}

.mw500 {
    max-width: 500px !important;
}

.mw600 {
    max-width: 600px !important;
}

/* SP/PC Display Control */
.pc-only-item {
    display: block;
}

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

@media (max-width: 768px) {
    .map-padding {
        padding-top: 100px;
    }

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

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

    .sp-br {
        display: inline !important;
    }
}

/* ==========================================================================
   4. Layout & Grids
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

section[id] {
    scroll-margin-top: 50px;
}

/* --- 汎用画像グリッド --- */
[class^="img-grid-"] {
    display: grid;
    width: 100%;
    gap: 20px;
    margin-bottom: 40px;
}

.img-grid-1 {
    grid-template-columns: 1fr;
}

.img-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.img-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.img-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.img-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .img-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    .section {
        padding: 80px 0;
    }

    .img-grid-2, .img-grid-3 {
        grid-template-columns: 1fr;
    }

    .img-grid-4, .img-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .img-grid-4, .img-grid-5 {
        grid-template-columns: 1fr;
    }

    [class^="img-grid-"] {
        gap: 10px;
    }

    .mb0 {
        margin-bottom: 0 !important;
    }

    .pd40 {
        padding: 40px 0 !important;
    }
}

/* ==========================================================================
   5. Buttons & Arrows
   ========================================================================== */
/* ボタン共通スタイル */
.btn, .btn-g, .btn-b, .btn-o, .btn-bl, .btn-w {
    display: inline-block;
    padding: 20px 70px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.btn:hover, .btn-g:hover, .btn-b:hover, .btn-o:hover, .btn-bl:hover, .btn-w:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* 各ボタンのカラー設定 */
.btn {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(233, 86, 134, 0.3);
}

.btn:hover {
    box-shadow: 0 6px 15px rgba(233, 86, 134, 0.4);
}

.btn-g {
    background-color: #1DB49D;
    box-shadow: 0 4px 10px rgba(29, 180, 157, 0.3);
}

.btn-g:hover {
    box-shadow: 0 6px 15px rgba(29, 180, 157, 0.4);
}

.btn-b {
    background-color: #00B2E5;
    box-shadow: 0 4px 10px rgba(0, 178, 229, 0.3);
}

.btn-b:hover {
    box-shadow: 0 6px 15px rgba(0, 178, 229, 0.4);
}

.btn-o {
    background-color: #EE781F;
    box-shadow: 0 4px 10px rgba(238, 120, 31, 0.3);
}

.btn-o:hover {
    box-shadow: 0 6px 15px rgba(238, 120, 31, 0.4);
}

.btn-bl {
    background-color: #494949;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.btn-bl:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.btn-w {
    background-color: #fff;
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-w:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ボタンラッパー */
.btn-wrap {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .btn-wrap {
        font-size: 0.7rem;
    }
}

/* 矢印アイコン共通 */
.arrow-icon, .arrow-icon2 {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.arrow-icon::after, .arrow-icon2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
}

.arrow-icon::after {
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}

.arrow-icon2::after {
    border-top: 4px solid #333;
    border-right: 4px solid #333;
}

/* ボタンホバーで矢印スライド */
[class^="btn"]:hover .arrow-icon, [class^="btn"]:hover .arrow-icon2 {
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .arrow-icon::after, .arrow-icon2::after {
        top: 2px;
        width: 8px;
        height: 8px;
    }

    .arrow-icon::after {
        border-width: 3px;
        border-color: #fff;
    }

    .arrow-icon2::after {
        border-width: 3px;
        border-color: #333;
    }
}

/* ==========================================================================
   6. Typography & Titles
   ========================================================================== */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.section-title span {
    display: block;
    font-size: 1rem;
    color: #888;
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.section-title-img {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 10px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title-img img {
    display: inline-block;
    max-width: 700px;
    width: auto;
    height: auto;
}

.section-title-bg {
    background-color: var(--primary-color);
    color: #fff;
    width: fit-content;
    margin: 0 auto 50px;
    padding: 15px 60px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(233, 86, 134, 0.4);
    text-align: center;
    line-height: 1.3;
}

.section-title-bg span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
}

.section-title-bg.green {
    background-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
}

.other-title {
    text-align: center;
    background: #494949;
    color: #fff;
    max-width: 300px;
    margin: 0 auto;
    padding: 5px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .section-title-img {
        margin-bottom: 30px;
    }

    .section-title-img img {
        width: 90%;
        max-width: 400px;
    }

    .section-title-bg {
        padding: 12px 30px;
        font-size: 1.4rem;
        width: 90%;
        box-sizing: border-box;
    }

    .other-title {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   7. Header & Navigation
   ========================================================================== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.logo-img {
    height: 44px;
    width: auto;
}

.pc-nav {
    display: flex;
    align-items: center;
}

.pc-nav a {
    font-size: 0.8rem;
    padding: 8px 15px;
    font-weight: bold;
}

.hamburger {
    display: none;
}

@media (max-width: 890px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

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

    .pc-nav a {
        font-size: 1.2rem;
        padding: 15px;
        text-align: center;
        width: 100%;
    }

    .pc-nav.is-open {
        right: 0;
    }

    .hamburger.is-active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

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

    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}

/* ==========================================================================
   8. Hero Section & Backgrounds
   ========================================================================== */
.hero {
    position: relative;
    background-color: #ffeef4;
    text-align: center;
    margin-top: 74px;
}

.main_v {
    /* フォールバック：古いブラウザ用 */
    height: calc(100vh - 74px);

    /* iPhoneのUIバーを考慮した新しい単位（おすすめは svh または dvh） */
    height: calc(100svh - 74px);

    display: block;
    width: 100%;
}

.main_v img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 各セクション背景（水玉模様） */
.contents1-bg {
    background-color: #FCE5ED;
    background-image: radial-gradient(#fff 15%, transparent 15%);
    background-size: 15px 15px;
    background-repeat: repeat;
}

.contents2-bg {
    background-color: #CFE4E0;
    background-image: radial-gradient(#fff 15%, transparent 15%);
    background-size: 15px 15px;
    background-repeat: repeat;
}

.contents3-bg {
    background-color: #D9F3FB;
    background-image: radial-gradient(#fff 15%, transparent 15%);
    background-size: 15px 15px;
    background-repeat: repeat;
}

.contents4-bg {
    background-color: #F7E6D9;
    background-image: radial-gradient(#fff 15%, transparent 15%);
    background-size: 15px 15px;
    background-repeat: repeat;
}

.others-bg {
    background-image: url('../images/contents5/bg_others.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        /*background-image: url('../images/hero-bg_sp.webp') !important;
        min-height: calc(100lvh - 70px);*/
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .others-bg {
        background-image: url('../images/contents5/bg_others_sp.webp');
        aspect-ratio: 1400 / 1213;
        padding-top: 30px;
    }
}

/* ==========================================================================
   9. Components (Cards, Reviews, Sliders)
   ========================================================================== */
/* Flower & Event Grids */
.flower-grid, .event-grid, .three-col-grid {
    display: grid;
    gap: 30px;
}

.flower-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.event-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.three-col-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.flower-card, .event-card, .item-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.flower-card:hover, .event-card:hover {
    transform: translateY(-5px);
}

.event-card {
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.item-card {
    padding: 20px;
    text-align: center;
}

.flower-img, .event-img, .item-img {
    width: 100%;
    background-position: center;
    background-size: cover;
}

.flower-img {
    height: 220px;
    background-color: #e0e0e0;
}

.event-img {
    height: 180px;
    background-color: #ffeef4;
    position: relative;
}

.item-img {
    height: 180px;
    background-color: #f0f0f0;
    margin-bottom: 15px;
    border-radius: 8px;
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
}

.flower-text, .event-content {
    padding: 20px;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Reviews */
.review-grid {
    display: grid;
    gap: 30px;
    margin-top: 100px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-box, .review-box2 {
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.review-box {
    background: #90D9CE;
}

.review-box2 {
    background: #C7ECE6;
}

.review-box p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.kutikomi-text {
    text-align: center;
    margin-top: 10px;
}

@media (min-width: 500px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Swiper Slider */
.container-slider {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.relative-container {
    position: relative;
}

.swiper {
    margin: 0 40px;
    padding-top: 15px;
    padding-bottom: 25px;
}

.slide-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.slide-text {
    padding: 15px;
    text-align: center;
    font-weight: bold;
    margin: 0;
    font-size: 0.95rem;
}

.custom-nav-btn {
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--primary-color) !important;
    top: 50%;
}

.custom-nav-btn::after {
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    font-family: var(--font-base) !important;
}

.swiper-button-prev.custom-nav-btn {
    left: 0;
}

.swiper-button-prev.custom-nav-btn::after {
    content: '＜';
    margin-right: 2px;
}

.swiper-button-next.custom-nav-btn {
    right: 0;
}

.swiper-button-next.custom-nav-btn::after {
    content: '＞';
    margin-left: 2px;
}

@media (max-width: 768px) {
    .flower-grid, .event-grid, .three-col-grid {
        gap: 20px;
    }

    .review-grid {
        margin-top: 50px;
    }

    .kutikomi-text {
        font-size: 0.9rem;
    }

    .review-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }

    .review-box p {
        font-size: 0.8rem;
        line-height: 1.6;
        text-align: justify;
        margin-top: 1rem;
    }

    .swiper {
        margin: 0 30px;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .custom-nav-btn {
        width: 40px;
        height: 40px;
    }

    .custom-nav-btn::after {
        font-size: 1rem !important;
    }
}

/* ==========================================================================
   10. Maps & Access
   ========================================================================== */
.map-bg {
    background-image: url('../images/map/map-bg.webp');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    width: 100%;
    aspect-ratio: 3000 / 1406;
    padding-top: 50px;
}

.map-container {
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-text {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.access-wrap {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 70%;
    margin: 0 auto;
}

.map-logo-align {
    margin: 0 auto;
}

.g-map-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    margin-bottom: 40px;
}

.g-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.support-align {
    align-items: center;
    gap: 50px;
}

.support-align-img {
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .map-bg {
        background-image: url('../images/map/map-bg_sp.webp');
        aspect-ratio: 1500 / 2284;
        padding-top: 30px;
    }

    .access-wrap {
        max-width: 100%;
    }

    .map-logo-align {
        max-width: 60%;
    }

    .support-align-img {
        width: 50% !important;
    }
}

/* ==========================================================================
   11. Animations & Floating Elements
   ========================================================================== */
@keyframes yura-yura {
    0% {
        transform: translateY(-50%) rotate(-5deg);
    }

    100% {
        transform: translateY(-65%) rotate(5deg);
    }
}

/* タイトル横のゆらゆらアイコン */
.title-icon, .title-icon2 {
    position: absolute;
    top: -10px;
    height: auto;
    pointer-events: none;
    animation: yura-yura 3s ease-in-out infinite alternate;
}

.title-icon {
    width: 200px !important;
}

.title-icon2 {
    width: 250px !important;
}

.icon-l {
    left: -50px;
    transform: translateY(-50%);
}

.icon-l2 {
    left: -50px;
    transform: translateY(-50%);
}

.icon-r {
    right: -20px;
    transform: translateY(-50%);
    animation-delay: -1.5s;
}

/* 追従するチケットボタン */
.overlap-btn-wrapper {
    position: fixed;
    bottom: 80px;
    right: 5%;
    z-index: 9999;
}

.ticket-img {
    width: 250px;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.ticket-img:hover {
    transform: scale(1.05) translateY(-5px);
}

.logo-fixed-icon {
    position: absolute;
    right: 20px;
    top: -80px;
    width: 200px !important;
    height: auto;
    animation: yura-yura 3s ease-in-out infinite alternate;
    z-index: 999
}

@media (max-width: 1024px) {
    .title-icon {
        width: 100px !important;
        top: 10%;
        right: 10%;
    }

    .icon-r {
        right: -50px;
        width: 150px !important;
        transform: translateY(-50%);
        animation-delay: -1.5s;
    }

    .title-icon2 {
        width: 120px !important;
        top: 0;
    }

    .overlap-btn-wrapper {
        bottom: 20px;
        right: 15px;
    }

    .ticket-img {
        width: 140px;
    }

    .logo-fixed-icon {
        width: 150px !important;
        top: 50px;
        right: 20px;
    }
}



@media (max-width: 768px) {
    .title-icon {
        width: 100px !important;
        top: -20%;
        right: 1%;
    }

    .icon-l {
        left: 1%;
    }

    .title-icon2 {
        width: 120px !important;
        top: 10%;
        left: 80%;
    }

    .icon-l2 {
        left: 1%;
    }

    .overlap-btn-wrapper {
        bottom: 20px;
        right: 15px;
    }

    .ticket-img {
        width: 140px;
    }

    .logo-fixed-icon {
        width: 100px !important;
        top: -30%;
        right: -100px;
    }
}

@media (max-width: 500px) {
    .title-icon {
        width: 80px !important;
        top: -20px !important;
        right: -10px;
    }

    .icon-l {
        left: -10px;
    }

    .title-icon2 {
        width: 120px !important;
        top: -40px !important;
        left: 70%;
    }

    .icon-l2 {
        left: -10px;
    }

    .chara-r {
        top: -80px !important;    
    }

    .overlap-btn-wrapper {
        bottom: 20px;
        right: 15px;
    }

    .ticket-img {
        width: 140px;
    }

    .logo-fixed-icon {
        width: 80px !important;
        top: -80px;
        right: 0;
    }
}

.logo-container {
     position: relative;
     display: inline-block;
     margin-bottom: 20px; }









/* ==========================================================================
   12. Footer
   ========================================================================== */
footer {
    background-color: #333;
    color: #ccc;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.access-info h4, .links h4 {
    color: #fff;
    border-bottom: 1px solid #555;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.links ul li {
    margin-bottom: 10px;
}

.links a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ==========================================================================
   口コミのアコーディオン設定
   ========================================================================== */
.review-accordion {
    display: contents;
}

@media (min-width: 501px) {
    #js-review-btn {
        display: none !important;
    }
}

#js-review-btn {
    cursor: pointer;
    border: none;
    appearance: none;
    font-family: inherit;
    font-size: 1rem;
}

@media (max-width: 500px) {
    #js-review-btn {
        font-size: 0.8rem;
    }

    .review-accordion {
        display: flex;
        flex-direction: column;
        gap: 20px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        margin-top: -20px;
        transition: max-height 0.6s ease, opacity 0.6s ease, margin-top 0.4s ease;
    }

    .review-accordion.is-open {
        max-height: 2000px;
        opacity: 1;
        margin-top: 0;
    }
}