/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700&family=Allura:wght@400&display=swap');

/* Bootstrap Icons Import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

/* CSS Variables */
:root {
    --brand-color: #1E348A;
    --body-text: #000000;
    --white: #ffffff;
    --font-zen-maru: 'Zen Maru Gothic', sans-serif;
    --font-allura: 'Allura', cursive;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: var(--font-zen-maru);
    font-weight: 500;
    color: var(--body-text);
    line-height: 1.6;
	background-color: var(--brand-color);
}

/* WordPress Admin Bar Adjustment */
body.admin-bar .hero-section {
    height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
    body.admin-bar .hero-section {
        height: calc(100vh - 46px);
    }
}

/* ===== News Section ===== */
.news-section {
    background-color: var(--brand-color);
    padding: 50px 0 0;
}

.news-container {
    padding: 0;
    margin: 0 auto;
    width: 900px;
    max-width: 900px;
}

.news-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
	margin-top: 0;
    margin-bottom: 50px;
    color: white;
    font-family: 'Allura', cursive;
}

.news-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #fefce8;
    padding: 30px;
    border-radius: 12px;
}

.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 15px;
}

.news-content p {
    margin: 0 0 15px 0;
}

.news-content p:last-child {
    margin-bottom: 0;
}

.news-card-link {
    display: flex;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-card-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.news-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-no-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.news-card-content {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
	justify-content: end;
    gap: 15px;
	margin-top: 15px;
    margin-bottom: 15px;
}

.news-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}



.news-title-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.no-news {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    padding: 40px 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 20px;
    }
    
    .news-container {
        padding: 0;
        margin: 40px 20px;
        width: auto;
        max-width: none;
    }
    
    .news-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .news-cards {
        gap: 20px;
    }
    
    .news-card-link {
        flex-direction: column;
    }
    
    .news-card-image {
        width: 100%;
        height: 200px;
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .news-meta {
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .news-title-text {
        font-size: 1rem;
        line-height: 1.4;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-zen-maru);
    font-weight: 700;
}

.accent-font {
    font-family: var(--font-allura);
	font-weight: 400;
}

/* Header Styles */
.header-container {
    position: relative;
    background: var(--brand-color);
    padding: 10px 0 20px;
    z-index: 1000;
}

/* Custom Shape Divider */
.bg-header-shape {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.bg-header-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 35px;
}

.bg-header-shape .shape-fill {
    fill: #1E348A;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .bg-header-shape svg {
        width: calc(100% + 1.3px);
        height: 49px;
    }
}

.header-logo {
    display: block;
    margin: 0 auto;
    max-width: 300px;
    height: auto;
}

.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 10px 20px;
}

.header-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(-20px);
}

.header-icon:hover {
    transform: scale(1.1);
}

.header-icon.show {
    opacity: 1;
    transform: translateY(0);
}

.header-actions.show {
    opacity: 1;
    transform: translateY(0);
}

.header-icon img {
    width: 80px;
}

.header-actions {
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 1001;
    display: flex;
    gap: 15px;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0;
    transform: translateY(-20px);
}

/* Desktop表示（769px以上）では最初から表示 */
@media (min-width: 769px) {
    .header-icon,
    .header-actions {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-icon, .menu-icon {
    width: 85px;
    height: 85px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shop-icon {
    background-image: url('/images/yuru-circle1.svg');
    text-decoration: none;
}

.menu-icon {
    background-image: url('/images/yuru-circle2.svg');
}

.shop-icon:hover, .menu-icon:hover {
    transform: scale(1.1);
}

.shop-icon i, .menu-icon i {
    font-size: 34px;
    color: var(--brand-color);
    line-height: 1;
}

.shop-icon .label, .menu-icon .label {
    font-size: 12px;
    color: var(--brand-color);
    font-weight: 700;
}

/* Hamburger Menu Styles */
.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
	margin-bottom: 6px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--brand-color);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    clip-path: circle(0% at top right);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at top right);
}

.menu-nav {
    text-align: center;
}

.menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-nav li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.menu-overlay.active .menu-nav li {
    opacity: 1;
    transform: translateY(0);
}

.menu-nav a {
    color: var(--brand-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.menu-nav a:hover {
    color: #0f1a4a;
}

.menu-nav .instagram-icon {
    font-size: 30px;
    color: var(--brand-color);
    margin-top: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.menu-nav .instagram-icon:hover {
    transform: scale(1.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    background-image: url('/images/hero-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Page Hero Section */
.page-hero-section {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(10px);
    z-index: 0;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.page-title {
    font-family: var(--font-allura);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 0;
	line-height: 1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 18px;
    margin: 0;
    color: var(--white);
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-line {
    display: inline-block;
    background: var(--white);
    color: var(--brand-color);
    font-family: var(--font-zen-maru);
    font-weight: 700;
    font-size: 34px;
    padding: 5px 10px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* 1行目: 短いテキスト用 */
.hero-line-1 {
    width: fit-content;
    max-width: 420px;
}

/* 2行目: 長いテキスト用 */
.hero-line-2 {
    width: fit-content;
    max-width: 580px;
}

.hero-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-color);
    transform: translateX(-100%);
    transition: transform 0.8s ease-in-out;
    z-index: 1;
}

.hero-line .text-content {
    position: relative;
    z-index: 2;
}

.hero-line.animate {
    opacity: 1;
    transform: translateX(0);
}

.hero-line.animate::before {
    transform: translateX(100%);
}

/* Hero Overlay Bottom - Custom Shape Divider */
.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-overlay-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 53px;
    transform: rotateY(180deg);
}

.hero-overlay-bottom .shape-fill {
    fill: #1E348A;
}

/** For mobile devices **/
@media (max-width: 767px) {
    .hero-overlay-bottom svg {
        width: calc(100% + 1.3px);
        height: 49px;
    }
}

/* Section Placeholders */

.product-section {
    background-color: #fefce8;
    min-height: 100vh;
    position: relative;
    padding-top: 112px;
    padding-bottom: 60px;
    z-index: 2;
}

/* Product Section Wave */
.product-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.product-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 112px;
}

.product-top .shape-fill {
    fill: var(--brand-color);
}

/* Product Section Bottom Wave */
.product-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.product-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 118px;
    transform: rotateY(180deg);
}

.product-bottom .shape-fill {
    fill: #1E348A;
}

/* Product Main Layout */
.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 40vh;
    align-items: center;
}

.product-left {
    position: relative;
    overflow: visible;
    z-index: 3;
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    min-height: 70vh;
    position: relative;
    z-index: 3;
    margin-top: -300px;
    transform: translateX(-100px);
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.product-main-image.animate-in {
    transform: translateX(0);
    opacity: 1;
}

.product-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-content {
    text-align: center;
    max-width: 400px;
}

.product-content h2 {
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 0;
	line-height: 1;
}

.product-subtitle {
    width: 211px;
    height: 25px;
    margin: 20px auto;
    display: block;
}

.product-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-top: 30px;
}

/* Product Gallery */
.product-gallery {
    padding: 40px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    animation: slideLeft 45s linear infinite;
    flex-shrink: 0;
	padding-right: 20px;
}

.gallery-image {
    flex-shrink: 0;
    width: 255px;
    height: 238px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image:nth-child(odd) {
    animation: floatUp 4s ease-in-out infinite;
}

.gallery-image:nth-child(even) {
    animation: floatDown 4s ease-in-out infinite 2s;
}

.gallery-image:hover {
    transform: scale(1.05);
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Product Section Mobile */
@media (max-width: 768px) {
    .product-section {
        padding-top: 80px;
        min-height: auto;
    }
    
    .product-top svg {
        height: 80px;
    }
    
    .product-main {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .product-main-image {
        min-height: 50vh;
        margin-top: -100px;
    }
    
    .product-right {
        padding: 30px 20px;
    }
    
    .product-content h2 {
        font-size: 2rem;
    }
    
    .product-gallery {
        padding: 30px 0;
    }
    
    .gallery-image {
        width: 180px;
        height: 165px;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }
    
    .product-top svg {
        height: 60px;
    }
    
    .product-main-image {
        min-height: 40vh;
        margin-top: -80px;
    }
    
    .product-right {
        padding: 20px 15px;
    }
    
    .product-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .product-subtitle {
        width: 180px;
        height: 21px;
        margin: 15px auto;
    }
    
    .product-content p {
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .product-gallery {
        padding: 20px 0;
    }
    
    .gallery-slider {
        gap: 15px;
    }
    
    .gallery-image {
        width: 140px;
        height: 128px;
    }
}

/* Shop Section */
.shop-section {
    background-color: var(--brand-color);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.shop-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-subtitle {
    width: 164px;
    height: 20px;
    margin: 10px auto;
    display: block;
}

.shop-description {
    font-size: 18px;
    margin: 30px 0 60px;
    color: white;
}

/* 商品カードエリア */
.shop-products {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    max-width: 900px;
    padding: 0 20px;
}

.item-card {
    display: flex;
    gap: 30px;
    align-items: center;
    text-align: left;
}

.item-image {
    flex-shrink: 0;
    width: 300px;
}

.item-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.item-image-link {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.item-image-link:hover {
    transform: translateY(-5px);
}

.item-content {
    flex: 1;
    color: white;
}

.item-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px;
    color: white;
}

.item-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px;
    color: white;
}

.item-price {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 25px;
    color: white;
}

.item-button {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.item-button:hover {
    background-color: white;
    color: var(--brand-color);
    text-decoration: none;
}

/* 汎用的なボタンスタイル */
.shop-all-button {
    margin: 60px 0;
}

.floating-button {
    background-color: white;
    border: 1px solid #ffffff;
    color: var(--brand-color);
    padding: 15px 30px;
    border-radius: 28px 22px 26px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.floating-button:hover {
    transform: perspective(1000px) rotateX(-2deg) rotateY(1deg) translateY(-8px);
    box-shadow: 0 12px 25px rgba(30, 52, 138, 0.3);
    border-radius: 18px 32px 20px 38px;
    text-decoration: none;
}

/* ご注文についてエリア */
.order-info {
    margin: 80px auto 0;
    max-width: 900px;
    padding: 0 20px;
}

.order-content {
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    color: var(--brand-color);
}

.order-left {
    flex: 1;
}

.order-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 30px;
    color: var(--brand-color);
}

.order-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-list li {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 15px;
    color: var(--brand-color);
}

.order-right {
    flex-shrink: 0;
    text-align: center;
}

.shop-banner {
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shop-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.shop-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-caption {
    font-size: 14px;
    color: var(--brand-color);
    margin: 0;
    opacity: 0.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .item-card {
        flex-direction: column;
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid white;
    }
    
    .item-image {
        width: 100%;
        max-width: 300px;
    }
    
    .order-content {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    
    .shop-products {
        padding: 0 10px;
    }
}

/* Travel Section */
.travel-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.travel-content {
    width: 100%;
    height: 100%;
    background-image: url('/images/travel-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* パララックス効果 */
}

.travel-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.travel-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 35px;
    transform: rotateY(180deg);
}

.travel-top .shape-fill {
    fill: #1E348A;
}

.travel-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.travel-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
    transform: rotateY(180deg);
}

.travel-bottom .shape-fill {
    fill: #0D2ED6;
}

.instagram-section {
    background: linear-gradient(to bottom, #0D2ED6, #78ACEA);
    padding: 80px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.instagram-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* 入道雲イラスト */
.instagram-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cloud-left,
.cloud-right {
    position: absolute;
    width: 40%;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cloud-left {
    left: 0;
    bottom: 0;
}

.cloud-right {
    right: 0;
    bottom: 0;
}

.cloud-left img,
.cloud-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* スクロールアニメーション */
.cloud-left.animate {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.cloud-right.animate {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.instagram-title {
    margin-bottom: 40px;
}

.instagram-title img {
    max-width: 100%;
    height: auto;
}

.instagram-description {
    margin-bottom: 60px;
    position: relative;
}

.instagram-description p {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

/* 太陽画像アニメーション */
.sun-animation {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 84px;
    height: 96px;
    z-index: 3;
    transform-origin: center;
}

.instagram-feed {
    margin-bottom: 60px;
}

.instagram-feed img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.instagram-follow {
    margin-bottom: 0;
}

/* Instagram波アニメーション */
.waves-animation {
    position: relative;
    width: 100%;
    height: 10vh;
	margin-top: 10rem;
    margin-bottom: -7px; /* Safari gap fix */
    min-height: 80px;
    max-height: 120px;
}

.hero-bottom.waves-animation {
    position: absolute;
	bottom: 0;
	left: 0;
}

.waves-animation .waves {
    position: relative;
    width: 100%;
    height: 100%;
}

/* アニメーション */
.waves-animation .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.waves-animation .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.waves-animation .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.waves-animation .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.waves-animation .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .waves-animation {
        height: 40px;
        min-height: 40px;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--brand-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    background-color: var(--brand-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;

	img{
		max-width: 200px;
	}
}

.footer-icons {
    margin: 20px 0;
}

.footer-icon {
    display: inline-block;
    margin: 0 15px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.footer-icon:hover {
    transform: translateY(-5px);
}

.footer-icons i {
    font-size: 30px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.footer-icons i:hover {
    transform: scale(1.2);
}

.footer-copyright {
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.8;
}

.footer-copyright p {
    color: white;
    margin: 0;
}

/* Footer Privacy Policy Link */
.footer-privacy {
    margin-bottom: 10px;
}

.privacy-link {
    font-size: 0.8em;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #f0f0f0;
    text-decoration: none;
}

/* Page Content Width Settings */
.page-content-section .page-content {
    width: 800px;
    margin: 0 auto;
}

/* Mobile responsiveness for privacy policy link */
@media (max-width: 768px) {
    .privacy-link {
        font-size: 0.75em;
    }
    
    .page-content-section .page-content {
        width: auto;
    }
}

/* Page Top Button */
.page-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 1;
}

.page-top-btn:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.page-top-btn img {
    width: 60px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 10px 20px;
    }
    
    .header-logo {
        max-width: 240px;
    }
    
    .shop-icon, .menu-icon {
        width: 60px;
        height: 60px;
    }
    
    .hamburger {
        width: 20px;
        height: 16px;
        margin-bottom: 3px;
    }
    
    .hamburger span {
        height: 2px;
        margin: 4px 0;
    }
    
    .bg-header-shape {
        top: 73px;
    }
    
    .hero-section {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-text {
        gap: 0px;
    }
    
    .hero-line {
        font-size: 20px;
        padding: 8px 15px;
        margin: 8px 0;
    }
    
    .hero-line-1 {
        max-width: 280px;
    }
    
    .hero-line-2 {
        max-width: 380px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .shop-icon i, .menu-icon i {
        font-size: 20px;
    }
    
    .shop-icon .label, .menu-icon .label {
        font-size: 10px;
    }
    
    .concept-hukidashi {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-line {
        font-size: 18px;
        padding: 6px 12px;
        margin: 6px 0;
    }
    
    .hero-line-1 {
        max-width: 240px;
    }
    
    .hero-line-2 {
        max-width: 320px;
    }
    
    .menu-nav a {
        font-size: 20px;
    }
    
    .instagram-title img {
        max-width: 75%;
    }
    
    .sun-animation {
        bottom: -85px;
        left: -35px;
    }
}

/* ===== CONCEPT SECTION ===== */
.concept-section {
    background-color: var(--brand-color);
    color: var(--white);
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.concept-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

/* 左カラム */
.concept-left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.concept-title {
    text-align: center;
}

.concept-heading {
	margin-top: 0;
	margin-bottom: 10px;
    font-size: 60px;
    font-weight: 400;
    color: var(--white);
	line-height: 1;
}

.concept-subtitle {
    width: 97px;
    height: 20px;
    display: block;
    margin: 0 auto;
}

/* 中央カラム */
.concept-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.concept-text {
    text-align: center;
    line-height: 2.2;
}

.concept-text p {
    margin: 0 0 30px 0;
    font-size: 16px;
    font-family: var(--font-zen-maru);
}

.concept-text p:last-child {
    margin-bottom: 0;
}

.concept-text span {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.concept-text span.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.concept-text span.concept-break {
    margin-top: 20px;
}

/* 右カラム */
.concept-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.concept-image-container {
    position: relative;
    width: 100%;
    max-width: 250px;
}

.concept-illust {
    width: 100%;
    height: auto;
    display: block;
}

.concept-hukidashi {
    position: absolute;
    top: -10px;
    left: -20px;
    width: 120px;
    height: auto;
    z-index: 2;
    opacity: 0;
    transform: scale(0) translateY(-20px);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .concept-section {
        padding: 60px 0;
        min-height: auto;
        height: auto;
        align-items: flex-start;
    }
    
    .concept-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        height: auto;
    }
    
    .concept-heading {
        font-size: 48px;
    }
    
    .concept-text p {
        font-size: 15px;
    }
    
    .concept-image-container {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .concept-hukidashi {
        width: 100px;
        top: -8px;
        left: -15px;
    }
}

@media (max-width: 480px) {
    .concept-section {
        padding: 40px 0;
        height: auto;
        align-items: flex-start;
    }
    
    .concept-container {
        padding: 0 15px;
        gap: 30px;
        height: auto;
    }
    
    .concept-heading {
        font-size: 40px;
    }
    
    .concept-text p {
        font-size: 14px;
    }
    
    .concept-image-container {
        max-width: 200px;
    }
    
    .concept-hukidashi {
        width: 80px;
        top: -6px;
        left: -12px;
    }
}

/* Page Content Section */
.page-content-section {
    background-color: var(--brand-color);
    padding: 80px 20px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-content-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-content-section .page-content {
    background-color: #fefce8;
    color: #000000;
    padding: 40px;
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-content-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.page-content-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000000;
}

/* Privacy Policy Specific Styles */
.page-content-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--brand-color);
    border-bottom: 2px solid var(--brand-color);
    padding-bottom: 8px;
}

.page-content-section ul {
    margin: 15px 0 25px 0;
    padding-left: 0;
    list-style: none;
}

.page-content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.page-content-section ul li::before {
    content: "•";
    color: var(--brand-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-content-section .contact-info {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid var(--brand-color);
}

.page-content-section .contact-info p {
    margin-bottom: 0;
    line-height: 1.8;
}

.page-content-section .policy-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #666;
    text-align: right;
    font-style: italic;
}

/* Page Content Section Mobile */
@media (max-width: 768px) {
    .page-content-section {
        padding: 60px 15px;
        min-height: 40vh;
    }
    
    .page-content-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .page-content-section h3 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .page-content-section p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .page-content-section .contact-info {
        padding: 15px;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .page-content-section {
        padding: 40px 15px;
        min-height: 35vh;
    }
    
    .page-content-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .page-content-section p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

/* ===== CONTACT FORM 7 STYLES ===== */
.wpcf7 {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 52, 138, 0.1);
}

.wpcf7 > div {
    margin-bottom: 25px;
}

.wpcf7 label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-color);
    margin-bottom: 0;
	line-height: 1;
    font-family: var(--font-zen-maru);
}

.wpcf7 label span {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

/* Required and Optional Labels - using attribute selectors for better compatibility */
.wpcf7 label span {
    background-color: #a4b0be;
    color: white;
}

/* Override for required fields - you can add custom classes in CF7 form */
.wpcf7 .required-label,
.wpcf7 label span[data-required="true"] {
    background-color: #ff4757;
    color: white;
}

/* Form Controls */
.wpcf7 .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-zen-maru);
    color: var(--body-text);
    background-color: #fafbfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.wpcf7 .form-control:focus {
    outline: none;
    border-color: var(--brand-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(30, 52, 138, 0.1);
    transform: translateY(-2px);
}

.wpcf7 .form-control:hover {
    border-color: #c7d2fe;
    background-color: white;
}

/* Textarea specific styles */
.wpcf7 textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Privacy Policy Section */
.wpcf7 h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 15px;
    margin-top: 30px;
    font-family: var(--font-zen-maru);
}

.wpcf7 p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

/* Checkbox Styles */
.wpcf7 .form-check-input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: var(--brand-color);
    cursor: pointer;
}

.wpcf7 .form-check-input + label {
    display: inline;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

/* Submit Button */
.wpcf7 .btn-custom {
    background: linear-gradient(135deg, var(--brand-color) 0%, #2d4bc7 100%);
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-zen-maru);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(30, 52, 138, 0.3);
    text-transform: none;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    display: block;
}

.wpcf7 .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 52, 138, 0.4);
    background: linear-gradient(135deg, #2d4bc7 0%, var(--brand-color) 100%);
}

.wpcf7 .btn-custom:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 52, 138, 0.3);
}

/* Error and Success Messages */
.wpcf7-not-valid-tip {
    color: #ff4757;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.wpcf7-validation-errors {
    background-color: #ffe6e6;
    border: 1px solid #ff4757;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #d63031;
    font-size: 14px;
}

.wpcf7-mail-sent-ok {
    background-color: #e6f7e6;
    border: 1px solid #00b894;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    color: #00b894;
    font-size: 14px;
    font-weight: 600;
}

/* Loading State */
.wpcf7 form.submitting .btn-custom {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.wpcf7 form.submitting .btn-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Container Responsive */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 30px 20px;
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .wpcf7 .form-control {
        padding: 12px 16px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .wpcf7 .btn-custom {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        max-width: none;
    }
    
    .wpcf7 label {
        font-size: 15px;
    }
    
    .wpcf7 h5 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .wpcf7 {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .wpcf7 .form-control {
        padding: 10px 14px;
    }
    
    .wpcf7 .btn-custom {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Scroll Down Arrow Button */
.scroll-down-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.arrow-btn {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: floatUpDown 2s ease-in-out infinite;
    position: absolute;
	bottom: 20px;
    margin: 0 auto;
}

.arrow-btn:hover {
    background: var(--brand-color);
    transform: scale(1.1);
}

.arrow-btn:hover i {
    color: white;
}

.arrow-btn i {
    font-size: 24px;
    color: var(--brand-color);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

/* Float Up Down Animation */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Hero Vertical Text Styles */
.hero-vertical-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.vertical-content {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 24px;
    line-height: 1.8;
    color: white;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        1px 1px 3px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.vertical-content span {
    display: block;
    opacity: 0;
    animation: fadeInSequence 2.5s ease-in-out forwards;
}

.vertical-content span:nth-child(1) { animation-delay: 0.8s; }
.vertical-content span:nth-child(2) { animation-delay: 1.6s; }
.vertical-content span:nth-child(3) { animation-delay: 2.4s; }
.vertical-content span:nth-child(4) { animation-delay: 3.2s; }
.vertical-content span:nth-child(5) { animation-delay: 4.0s; }
.vertical-content span:nth-child(6) { animation-delay: 4.8s; }
.vertical-content span:nth-child(7) { animation-delay: 5.6s; }
.vertical-content span:nth-child(8) { animation-delay: 6.4s; }

@keyframes fadeInSequence {
    0% {
        opacity: 0;
        transform: translateY(var(--fade-distance, 20px));
        filter: blur(8px);
    }
    50% {
        opacity: 0.7;
        filter: blur(4px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

/* Mobile Responsive for Arrow Button */
@media (max-width: 768px) {
    .scroll-down-arrow {
        bottom: 30px;
    }
    
    .arrow-btn {
        width: 50px;
        height: 50px;
    }
    
    .arrow-btn i {
        font-size: 20px;
    }
    
    .order-list li {
        font-size: 14px;
    }
    
    .travel-content {
        background-image: url('/images/travel-image_sp.webp') !important;
    }
    
    /* Hero Vertical Text Mobile Styles */
    .hero-vertical-text {
        left: 70%;
        top: 45%;
        transform: translate(-30%, -45%);
        max-width: 85vw;
        max-height: 80vh;
        right: 5vw;
    }
    
    .vertical-content {
        font-size: 16px;
        line-height: 1.3;
        letter-spacing: 0.03em;
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.9),
            1px 1px 2px rgba(0, 0, 0, 0.8),
            0 0 8px rgba(0, 0, 0, 0.5);
        font-weight: 600;
        --fade-distance: 15px;
        max-width: 100%;
        height: auto;
        overflow: visible;
    }
    
    .vertical-content span {
        animation-duration: 1.8s;
    }
}

/* ===== 新しいConcept Section ===== */
.concept-new-container {
    background: white;
    background-image: url('/images/concept-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px 40px;
    margin: 80px auto;
    max-width: 900px;
    display: flex;
    align-items: flex-end;
    gap: 60px;
    position: relative;
}

.concept-new-left {
    flex: 0.6;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.concept-new-image {
    width: 100%;
    max-width: 350px;
}

.concept-new-illust {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.concept-new-right {
    flex: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 530px;
}

.concept-new-text {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.concept-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: var(--brand-color);
    font-weight: 500;
    margin: 0;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concept-vertical-text span {
    display: block;
    margin-bottom: 0.5em;
}

.concept-paragraph-break {
    display: block;
    height: 1.5em;
    width: .5em;
    margin-bottom: 1em !important;
    margin-right: 1em !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .concept-new-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 40px 10px;
        margin: 40px 20px;
        border-radius: 15px;
    }
    
    .concept-new-right {
        order: -1; /* テキストを上に */
        min-height: auto;
        width: 100%;
    }
    
    .concept-new-left {
        order: 1; /* 画像を下に */
        width: 100%;
    }
    
    .concept-new-image {
        max-width: 300px;
    }
    
    .concept-vertical-text {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.08em;
        padding: 15px;
        height: 420px;
    }
    
    .concept-vertical-text span {
        margin-bottom: 0.4em;
    }
    
    .concept-paragraph-break {
        display: block;
        height: 1.2em;
        width: .4em;
        margin-bottom: 0.8em !important;
        margin-right: 0.8em !important;
    }
}