/*
Theme Name: Minano
Description: MINANOのケータリング公式テーマ
Version: 1.0
Author: minano
Text Domain: minano
*/

/* Base Styles */
:root {
    --accent-color: #9E2227;
    --text-color: #4E2F04;
    --background-color: #FAFAFA;
    --beige-bg: #F4F2EF;
    --max-width: 1000px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 16px;
}

a {
    text-decoration: none;
}

/* 電話番号リンクのスタイル変更 */
a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}

p {
    text-align: justify;
    letter-spacing: 0.05em;
}

.mincho {
    font-family: 'fot-tsukuardgothic-std', sans-serif;
}

.optima {
    font-family: 'circe-rounded', sans-serif;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}

/* 画像の最適化 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ヒーロー画像の最適化 */
.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

/* プラン画像の最適化 */
.plan-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* スタッフ写真の最適化 */
.staff-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* 信頼ポイント画像の最適化 */
.trust-point-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

/* フードアイテム画像の最適化 */
.food-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

/* 画像の遅延読み込み時のプレースホルダー */
img[loading="lazy"] {
    background-color: #f5f5f5;
    transition: opacity 0.3s ease-in-out;
}

/* 画像の読み込みエラー時のフォールバック */
img[src$=".jpg"] {
    background-color: #f5f5f5;
}

/* 画像のアスペクト比を維持 */
.aspect-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3のアスペクト比 */
}

.aspect-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 画像のシャドウ効果 */
.image-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.image-shadow:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 画像のホバーエフェクト */
.image-hover {
    transition: transform 0.3s ease-in-out;
}

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

/* 画像の読み込みアニメーション */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
}

.section-title::before {
    content: "";
    display: block;
    width: 1.2px;
    height: 120px;
    background-color: var(--accent-color);
    margin-right: 20px;
}

.section-title .title-container {
    display: flex;
    flex-direction: column;
}

.section-title h2 {
    font-size: 68px;
    font-weight: normal;
    color: var(--accent-color);
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.section-title .subtitle {
    font-size: 16px;
    color: #4E2F04;
    margin-top: 5px;
    display: block;
}

/* Contact section has white text */
.contact-section .section-title::before {
    background-color: white;
}

.contact-section .section-title h2 {
    color: white;
}

.contact-section .section-title .subtitle {
    color: white;
}

/* Menu section with specific left margin */
@media (min-width: 1240px) {
    #plan .section-title {
        margin-left: calc((100vw - 1000px) / 2);
    }
}

@media (max-width: 1240px) {
    #plan .section-title {
        max-width: var(--max-width);
        margin-inline: 20px;
    }
}

/* Header */
.header-wrapper {
    display: flex;
    width: 100%;
}

.header-left {
    width: 50%;
    background-color: #FFF;
    height: 540px;
    z-index: 99;
}

.header-right {
    width: 50%;
    background-color: var(--accent-color);
    padding: 170px 30px 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 10;
    height: 950px;
    background-image: url('img/top/fv_nav_back.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.header-logo {
    color: var(--accent-color);
    font-size: 1.5rem;
    text-decoration: none;
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.header-logo img {
    background: transparent;
    mix-blend-mode: normal;
}

.header-content {
    color: var(--accent-color);
    margin-top: 120px;
    margin-left: calc((100vw - 1000px) / 2);
}

.header-content h1 p {
    margin-bottom: 20px;
    font-weight: normal;
}

.header-content h1 p span.catch {
    line-height: 1.3;
    font-size: 40px;
    display: inline-block;
    font-weight: bold;
}

.header-content h1 p span.catch .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    font-size: 47px;
    letter-spacing: -0.25em;
    margin-top: -10px;
}

.header-content h1 p span.catch .char:nth-child(1) { animation-delay: 0.1s; }
.header-content h1 p span.catch .char:nth-child(2) { animation-delay: 0.2s; }
.header-content h1 p span.catch .char:nth-child(3) { animation-delay: 0.3s; }
.header-content h1 p span.catch .char:nth-child(4) { animation-delay: 0.4s; }
.header-content h1 p span.catch .char:nth-child(5) { animation-delay: 0.5s; }
.header-content h1 p span.catch .char:nth-child(7) { animation-delay: 0.6s; }
.header-content h1 p span.catch .char:nth-child(8) { animation-delay: 0.7s; }
.header-content h1 p span.catch .char:nth-child(9) { animation-delay: 0.8s; }
.header-content h1 p span.catch .char:nth-child(10) { animation-delay: 0.9s; }
.header-content h1 p span.catch .char:nth-child(11) { animation-delay: 1.0s; }
.header-content h1 p span.catch .char:nth-child(12) { animation-delay: 1.1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content h1 p span:not(.catch) {
    line-height: 1.7;
    font-size: 20px;
    display: inline-block;
}

.header-content p {
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ハンバーガーメニューボタンのスタイル */
.menu-button {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 11px;
    font-weight: normal;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    margin-bottom: 5px;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* ハンバーガーメニューがアクティブな時のスタイル */
.menu-button.active .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

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

.nav-menu {
    list-style: none;
    color: white;
    position: relative;
    z-index: 20;
}

.nav-menu li {
    margin-bottom: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-menu a::before {
    content: "—";
    margin-right: 20px;
}

/* Hero Section */
.hero-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 50;
    margin-top: -470px;
    max-width: 1100px;
    height: 540px;
}

.hero-swiper {
    width: 100%;
    height: 540px;
}

.hero-swiper .swiper-pagination {
    display: none;
}

.swiper-slide {
    width: 100%;
    height: auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-img {
    display: none;
}

@media (max-width: 576px) {
    .pc-img {
        display: none;
    }
    .sp-img {
        display: block;
    }
}

.swiper-fade .swiper-slide {
    transition-property: opacity;
}

.swiper-fade .swiper-slide:not(.swiper-slide-active) {
    opacity: 0;
}

/* Menu Section */
.menu-section {
    padding: 50px 0 120px 0;
    background-color: var(--beige-bg);
    overflow: hidden;
    margin-top: -70px;
    background-image: url('img/top/img_menu-section-back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.menu-section .container,
.menu-section .section-title,
.menu-section .menu-slider,
.menu-section .disclaimer {
    position: relative;
    z-index: 2;
}

.menu-section .section-title {
    margin-top: 100px;
}

.menu-section::after {
    content: "";
    display: block;
    width: 100vw;
    min-width: 1300px;
    aspect-ratio: 15 / 3.6;
    margin-left: calc(50% - 50vw);
    background-image: url('img/top/img_menu-section-back-text.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 100px;
}

/* Menu Slider */
.menu-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.menu-swiper {
    width: 100%;
    overflow: hidden;
}

.menu-swiper .swiper-wrapper {
    display: flex;
}

.menu-plan {
    background-color: white;
    padding: 80px 80px 50px 80px;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 5px;
    height: 100%;
    display: flex;
    gap: 60px;
}

.plan-header {
    width: 100%;
    margin-bottom: 30px;
    margin-top: -60px;
}

.plan-info {
    display: flex;
    width: calc(100% - 570px - 60px);
    flex-direction: column;
}

.price-info {
    width: 100%;
}

.plan-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.plan-images {
    width: 570px;
    height: auto;
}

.plan-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.plan-letter {
    font-size: 46px;
    color: var(--accent-color);
    line-height: 1;
    font-weight: bold;
    margin-top: 30px;
    letter-spacing: 0em;
}

.plan-letter span {
    font-size: 12px;
    letter-spacing: 0.2em;
    display: block;
    padding: 10px 0 0 5px
}

.per-person {
    margin-bottom: -10px;
}

.per-person-price {
    font-size: 49px;
    margin-left: 5px;
}

.per-person-price-unit {
    font-size: 30px;
    font-weight: bold;
}

.drink-options {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 6px 0 6px 0;
    border-top: 1px solid var(--text-color);
    border-bottom: 1px solid var(--text-color);
    line-height: 1.2;
}

.drink-option {
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.menu-items {
    margin-bottom: 20px;
    line-height: 1.2;
}

.menu-item {
    margin-bottom: 5px;
    padding: 5px 0;
}

.menu-item:last-child {
    margin-top: 20px;
}

.menu-note {
    clear: both;
    text-align: center;
    border: 1px solid var(--accent-color);
    padding: 10px;
    margin-top: 30px;
    color: var(--accent-color);
}

/* Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.swiper-button-prev {
    margin-left: 10px;
}

.swiper-button-next {
    margin-left: 10px;
}

@media (min-width: 1700px) {
    .swiper-button-prev {
        margin-left: 15.5vw;
    }
    .swiper-button-next {
        margin-right: 15.5vw;
    }
}

@media (max-width: 1700px) and (min-width: 1400px) {
    .swiper-button-prev {
        margin-left: 7.4vw;
    }
    .swiper-button-next {
        margin-right: 7.4vw;
    }
}

@media (max-width: 1400px) and (min-width: 1300px) {
    .swiper-button-prev {
        margin-left: 5vw;
    }
    .swiper-button-next {
        margin-right: 5vw;
    }
}

@media (max-width: 1300px) and (min-width: 1200px) {
    .swiper-button-prev {
        margin-left: 3.5vw;
    }
    .swiper-button-next {
        margin-right: 3.5vw;
    }
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    color: white;
}

.disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #777;
    margin-top: 20px;
}

.menu-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--accent-color);
    color: white;
    position: relative;
    background-image: url('img/top/img_philosophy-back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.philosophy-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(149, 0, 0, 0.45);
    z-index: 1;
}

.philosophy-section .container,
.philosophy-content,
.philosophy-text,
.staff-photos {
    position: relative;
    z-index: 2;
    font-weight: bold;
}

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

.philosophy-text {
    width: 60%;
    padding-right: 50px;
}

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

.philosophy-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 18px;
}

.staff-photos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 50;
}

.staff-photo {
    width: 250px;
    height: 340px;
    overflow: hidden;
}

.staff-photo:first-child {
    margin-top: -50px;
}

.staff-photo:last-child {
    margin: -120px 0 -50px -170px;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Section */
.about-section {
    padding: 100px 0 60px;
    position: relative;
}

.about-text {
    margin-bottom: 30px;
    font-weight: bold;
}

.about-text p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 2;
}

.about-text .trust-statement {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.minano-trust {
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    display: inline-block;
    margin-bottom: 10px;
}

/* Trust Points Swiper Styles */
.trust-swiper-container {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.trust-swiper {
    width: 100%;
    overflow: visible;
    margin: 0 auto;
}

.trust-point-slide {
    padding: 0;
    display: flex;
    justify-content: center;
    margin-right: 30px;
}

.trust-point {
    width: 100%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-color: white;
    padding: 10px;
}

.trust-point .number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.2rem;
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.trust-point-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.trust-point-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-point-content {
    padding: 30px 15px;
}

.trust-point-title {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: bold;
}

.trust-point-desc {
    font-size: 18px;
    color: var(--text-color);
}

/* Promise Section */
.promise-section {
    overflow: hidden;
}

.promise-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

.promise-left {
    width: 100%;
}

.promise-right {
    flex: 0 0 45%;
    padding-left: 10px;
}

@media (min-width: 1000px) {
    .promise-left {
        margin-left: calc(-1 * (100vw - 1000px)/2);
    }
}

@media (max-width: 1040px) {
    .promise-section .container,
    .menu-section .container {
        padding: 0;
    }
}

.food-display {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.food-item {
    width: 100%;
    height: 100%;
    padding: 0;
}

.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promise-heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--accent-color);
}

.promise-points {
    margin-top: 30px;
    background-color: #fafafa;
    margin-left: -140px;
    padding: 40px 0 60px 60px;
}

.promise-point {
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 0;
}

.promise-point-title {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-weight: normal;
}

.promise-point-title i {
    color: var(--accent-color);
    margin-right: 10px;
    display: none;
}

.promise-point-title::before {
    content: "";
    display: inline-block;
    width: 27px;
    height: 21px;
    background-image: url('img/top/icon_check.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: middle;
}

.promise-point-title h4 {
    font-size: 22px;
    color: var(--accent-color);
    font-weight: bold;
}

.minano-promise {
    margin-top: -20px;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    display: inline-block;
}

/* Flow Section */
.flow-section {
    padding: 80px 0;
    background-color: var(--beige-bg);
    overflow: hidden;
}

.flow-steps {
    margin: 30px 0 0 180px;
}

.flow-step {
    display: flex;
    border-bottom: 1px solid var(--accent-color);
    padding: 30px 0;
    align-items: center;
}

.step-number {
    width: 40px;
    color: var(--accent-color);
    font-weight: normal;
    font-size: 14px;
}

.step-title {
    width: 220px;
    font-weight: bold;
    font-size: 24px;
    color: var(--accent-color);
}

.step-desc {
    flex: 1;
    font-size: 16px;
}

.cancel-policy {
    text-align: left;
    margin: 12px 0 0 0;
}

.cancel-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
}

/* FAQ Section */
.faq-section {
    padding: 70px 0;
}

.faq-item {
    border: none;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 25px 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.question-text {
    display: flex;
    align-items: center;
    font-weight: normal;
    font-size: 18px;
}

.question-text .q-mark {
    margin-right: 15px;
    font-size: 41px;
    color: var(--accent-color);
    vertical-align: middle;
}

.expand-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
    display: inline-block;
}

.expand-icon.fa-plus {
    transform: rotate(0deg);
}

.expand-icon.fa-minus {
    transform: rotate(135deg);
}

.faq-answer {
    padding: 0 25px 0 50px;
    background-color: var(--beige-bg);
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer.active {
    padding: 40px 25px 40px 50px;
    max-height: 1000px;
}

.faq-answer-content {
    display: flex;
    align-items: center;
}

.a-mark {
    font-size: 41px;
    color: #AC964D;
    margin: 0 26px 0 5px;
}

.answer-text {
    flex: 1;
    font-size: 16px;
    line-height: 2;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 100px;
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    position: relative;
    background-image: url('img/top/img_contact_back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(149, 0, 0, 0.5);
    z-index: 1;
}

.contact-title-container,
.contact-methods,
.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-title-container {
    position: relative;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title-container h2 {
    font-size: 69px;
    font-weight: normal;
    color: white;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

.contact-section .section-title h2 {
    color: white;
}

.contact-section .section-title .subtitle {
    color: white;
}

.contact-section .section-title h2::after {
    background-color: rgba(255, 255, 255, 0.3);
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.contact-phone {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    text-align: center;
}

.phone-number {
    font-size: 55px;
    font-weight: normal;
    line-height: 0.8;
    display: flex;
    align-items: center;
}

.phone-number::before {
    content: '';
    display: inline-block;
    width: 48px;
    height: 48px;
    background-image: url('img/top/icon_tel.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.business-hours {
    font-size: 0.8rem;
    margin-top: 5px;
}

.contact-email-btn {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 30px 30px;
    text-decoration: none;
    display: inline-block;
    width: 48%;
    font-size: 18px;
    font-weight: bold;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: left;
}

.footer-logo {
    display: inline-block;
    margin-top: 40px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 200px; /* ロゴの希望サイズに応じて調整してください */
    height: auto;
    display: block;
    background: transparent;
    mix-blend-mode: normal;
}

.company-info {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer .container {
    text-align: left;
    align-items: flex-start;
}

.company-name {
    margin-bottom: 5px;
}

.company-address,
.company-contact {
    margin-bottom: 5px;
}

.copyright {
    font-size: 0.8rem;
    color: #999;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* モーダルのスタイル */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
}

.close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: var(--accent-color);
}

.close-button:hover {
    opacity: 0.7;
}

/* スクロール禁止時のスタイル */
.no-scroll {
    overflow: hidden;
}

/* モーダルを表示するときのクラス */
.show {
    display: block;
}

/* テーブルのスタイル */
.cancel-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.cancel-policy-table td {
    padding: 8px 10px;
    border: 1px solid #ddd;
}

.cancel-policy-table tr td:last-child {
    text-align: right;
    width: 30%;
    font-weight: bold;
}

/* メニュートグルのスタイル */
.menu-toggle {
    display: none;
    width: 100%;
    padding: 10px;
    background-color: #f5f5f5;
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    color: var(--text-color);
}

.menu-toggle::after {
    content: "▼";
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.menu-toggle.active::after {
    transform: rotate(180deg);
}

/* スライドインメニューのスタイル */
.slide-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--accent-color);
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 100px 40px 40px;
    overflow-y: auto;
}

.slide-menu.active {
    right: 0;
}

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

.slide-menu li {
    margin-bottom: 30px;
}

.slide-menu a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.slide-menu a::before {
    content: "—";
    margin-right: 20px;
}

/* メニューオーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
        opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    }

.menu-overlay.active {
        opacity: 1;
    visibility: visible;
}

.drink-title {
    display: inline-block;
    width: 126px;
    height: 25px;
    background-color: #AD974E;
    color: white;
    text-align: center;
    line-height: 25px;
}

.drink-option p span {
    font-size: 24px;
    margin-left: 10px;
}

.contact-title-container p.subtitle {
    font-size: 26px;
    text-align: center;
    font-weight: bold;
}

.br-sp {
    display: none;
}

.flow-section .section-title::after {
    content: "";
    position: absolute;
    width: 234px;
    height: 184px;
    background-image: url('img/top/img_flow-cut.png');
    background-size: contain;
    background-repeat: no-repeat;
    top: 200px;
    left: -130px;
}

.faq-section .section-title::after {
    content: "";
    position: absolute;
    width: 326px;
    height: 220px;
    background-image: url('img/top/img_faq-cut.png');
    background-size: contain;
    background-repeat: no-repeat;
    top: -100px;
    right: 0;
}

.kumamoto-icon {
    display: inline-block;
    padding-inline: 0 20px;
    border-top: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    margin-top: 18px;
    position: relative;
}

.kumamoto-icon::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 88px;
    height: 88px;
    background-image: url('img/top/img_fv_kumamoto-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.kumamoto-icon p {
    margin: 0;
    font-size: 16px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.kumamoto-icon p span {
    font-size: 32px;
    margin-left: 6px;
} 

/* Responsive Styles */
@media (max-width: 1400px) and (min-width: 992px) {
    .menu-plan {
        gap: 30px;
    }
    .plan-info {
        flex-grow: 1;
    }
    .plan-images {
        width: 55%;
    }
}

@media (max-width: 1200px) {
    .header-content {
        margin-left: 10%;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 20px;
    }

    .menu-plan {
        flex-direction: column;
        gap: 0;
        padding-inline: 20px;
    }

    .plan-header {
        margin-bottom: 5px;
    }

    .plan-info {
        width: 100%;
    }

    .menu-items, .plan-images {
        float: none;
        width: 100%;
        padding-left: 0;
    }

    .menu-section {
        padding-bottom: 50px;
    }
    
    .plan-images {
        margin-top: 16px;
    }

    .plan-letter {
        font-size: 30px;
        margin-block: 10px;
    }
    
    .plan-letter span {
        font-size: 10px;
    }
    
    .philosophy-content {
        flex-direction: column;
    }

    .philosophy-text {
        width: 100%;
        padding-right: 0;
    }

    .staff-photos {
        width: 100%;
        margin-top: -150px;
    }

    .staff-photo:first-child {
        margin-top: 30px;
        margin-inline: auto 0;
    }

    .staff-photo:last-child {
        margin-inline: auto 200px;
    }
    
    .promise-content {
        flex-direction: column;
    }
    
    .promise-right {
        padding-inline: 20px;
    }
    
    .promise-left {
        width: 100%;
        margin-right: 0;
    }

    .promise-points {
        padding: 20px 0;
        margin-inline: 0;
    }

    .promise-point {
        padding-inline: 0;
    }

    .about-section {
        padding-bottom: 20px;
    }

    .flow-steps {
        margin: 0px;
    }

    .flow-step {
        padding-inline: 20px;
    }

    .faq-question,
    .faq-answer,
    .faq-answer.active {
        padding-inline: 20px;
    }
    
    .phone-number {
        font-size: 42px;
    }

    .menu-toggle {
        display: block;
        font-size: 14px;
    }
    
    .menu-items {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        padding: 0;
    }
    
    .menu-items.active {
        max-height: none;
        padding: 10px 0;
    }

    .flow-section .section-title::after {
        width: 250px;
        height: 157px;
    top: 0;
        left: auto;
        right: -100px;
    }

    .swiper-button-next {
        top: 60px;
    }

    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
    }
    
    .header-left, .header-right {
    width: 100%;
    padding-top: 50px;
    }

    .nav-menu li {
        margin-bottom: 10px;
    }

    .header-content {
        padding-top: 0;
        padding-bottom: 30px;
        margin-top: 0;
    }

    .header-content h1 p {
        margin-block: 10px;
    }

    .header-content h1 p span.catch {
        font-size: 30px;
    }

    .header-content h1 p span:not(.catch) {
        font-size: 16px;
    }

    .header-left {
    height: 100%;
    }

    .header-logo {
        margin-bottom: 0;
        top: 0;
        left: 0;
        transform: scale(0.7);
    }

    .header-right {
        padding-inline: 10px;
        padding-top: 10px;
        padding-bottom: 15px;
        height: 100%;
    }
    
    .hero-section {
        margin-top: 0;
        height: 40%;
        width: 100%;
    }

    .hero-swiper {
        height: auto;
    }

    .hero-image {
        height: auto;
    }

    .section-title h2 {
        font-size: 56px;
    }

    .section-title::before {
        height: 100px;
    }

    .section-title .subtitle {
        margin-top: -8px;
    }

    .staff-photos {
        margin-top: 0;
    }
    
    .promise-right .promise-image {
        width: 100%;
    }
    
    .plan-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-step {
        flex-direction: column;
        align-items: flex-start;
        padding-inline: 0;
        padding-block: 16px;
    }
    
    .flow-step .step-number,
    .flow-step .step-title {
        width: auto;
        text-align: left;
        display: inline-block;
        margin-right: 10px;
    }
    
    .flow-step .step-desc {
        width: 100%;
        text-align: left;
        margin-top: 5px;
    }
    
    .faq-question {
        padding: 10px 20px;
    }

    .faq-item {
        margin-bottom: 10px;
    }

    .faq-answer.active {
        padding: 20px 20px;
    }

    .contact-phone {
        width: 100%;
    }
    
    .phone-number {
        justify-content: center;
        margin: 0 auto;
        font-size: 42px;
    }
    
    .phone-number::before {
        width: 38px;
        height: 38px;
    }

    .business-hours {
        text-align: center;
    }

    .contact-section {
        padding-block: 30px 40px;
    }

    .contact-email-btn {
        width: 100%;
    }

    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }

    .br-sp {
        display: inline;
    }
    
    .faq-section .section-title::after {
        width: 250px;
        height: 169px;
        top: -80px;
        right: -30px;
    }

    .flow-section, .faq-section {
        padding-block: 40px;
    }
    
    .flow-section .section-title::after {
        width: 200px;
        height: 157px;
        top: -40px;
        left: auto;
        right: -50px;
    }
}

@media (max-width: 576px) {
    .header-content h1 p span.catch .char {
        font-size: 30px;
    }

    .menu-section::after {
        min-width: 1000px;
        top: 100px;
    }

    .menu-section .section-title {
        margin-top: 60px;
    }

    .menu-items {
        margin-bottom: 0;
    }

    .menu-item {
        margin-bottom: 0;
    }

    .plan-images {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        flex-direction: column;
    }
    
    .step-title {
        margin: 5px 0;
    }

    .question-text {
        font-size: 16px;
    }

    .menu-note {
        text-align: left;
        margin-top: 10px;
    }

    .header-right {
        height: 100%;
    }

    .plan-letter {
        margin-bottom: 0;
    }

    .plan-letter span {
        font-size: 10px;
    }

    .menu-plan {
        padding-bottom: 40px;
    }

    .disclaimer {
        text-align: left;
        padding-inline: 20px;
    }

    .promise-points {
        margin-top: 0;
    }

    .promise-point {
        margin-bottom: 0;
    }

    .flow-section .section-title::after {
        width: 180px;
        height: 141px;
        top: -50px;
        left: auto;
        right: -50px;
    }

    .cancel-button {
        font-size: 18px;
    }
    
    .faq-section .section-title::after {
        width: 200px;
        height: 135px;
        top: -60px;
        right: -20px;
    }

    .contact-title-container p.subtitle {
        font-size: 18px;
    }
}

/* サイドバーを非表示 */
.widget-area,
#sidebar {
    display: none !important;
}

/* Contact Page Form Custom Styles */
.page-contact {
    max-width: 1100px;
    margin: 60px auto 80px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 48px 32px 40px 32px;
    font-family: 'fot-tsukuardgothic-std', 'circe-rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.page-contact h1 {
    text-align: center;
    font-size: 68px;
    letter-spacing: 0;
    font-family: 'circe-rounded', sans-serif;
    color: var(--accent-color);
    margin-bottom: 18px;
    font-weight: normal;
    line-height: 1.2;
}

.contact-description {
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Contact Form 7 specific styles */
.wpcf7-form {
    margin-top: 32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* テーブルのスタイル */
.table-res-form {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: separate;
}

.table-res-form tr {
    background: #fff;
}

.table-res-form th {
    width: 20%;
    text-align: left;
    font-size: 15px;
    color: var(--text-color);
    font-family: 'fot-tsukuardgothic-std', sans-serif;
    font-weight: bold;
    letter-spacing: 0.08em;
    vertical-align: middle;
}

.table-res-form td {
    width: 70%;
    padding: 8px 10px;
}

/* 入力フィールドの共通スタイル */
.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
    width: 100%;
    background: #f4f9f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 16px;
    font-size: 16px;
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

/* テキストエリアの高さ */
.wpcf7-textarea {
    min-height: 160px;
}

/* チェックボックスのラベルスタイル */
.wpcf7-list-item-label {
    margin-left: 8px;
    font-size: 15px;
    font-weight: normal;
}

/* 送信ボタンを含む段落のスタイル */
.wpcf7-form p:last-of-type {
    text-align: right;
}

/* チェックボックスを含む段落のスタイル */
.wpcf7-form p:has(.wpcf7-acceptance) {
    text-align: center;
    margin-bottom: 6px;
}

/* 送信ボタンのスタイル */
.wpcf7-submit {
    width: 100%;
    max-width: 400px;
    margin: 40px auto;
    display: block;
    background: var(--accent-color);
    color: #fff;
    font-size: 18px;
    font-family: 'fot-tsukuardgothic-std', sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    padding: 20px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: background 0.3s ease;
}
.wpcf7-spinner {
    display: none;
}

/* エラーメッセージのスタイル */
.wpcf7-not-valid-tip {
    display: block;
    color: #dc3232;
    font-size: 12px;
    margin-bottom: -16px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 32px 0 0;
    padding: 16px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .wpcf7-form p:last-of-type {
        text-align: left;
    }
    .table-res-form {
        border-spacing: 0;
    }

    .table-res-form th, 
    .table-res-form td {
        width: 100%;
        display: block;
    }

    .table-res-form th {
        padding: 10px 0 0;
        background: none;
    }

    .table-res-form td {
        padding: 5px 0;
    }

    .wpcf7-not-valid-tip {
        text-align: right;
    }
}

/* Privacy Policy Page Styles */
.page-privacy-policy {
    max-width: 1100px;
    margin: 60px auto 80px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 48px 32px 40px 32px;
    font-family: 'fot-tsukuardgothic-std', 'circe-rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.page-privacy-policy h1 {
    text-align: center;
    font-size: 68px;
    letter-spacing: 0;
    font-family: 'circe-rounded', sans-serif;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-weight: normal;
    line-height: 1.2;
}

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

.privacy-intro {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-color);
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 16px;
    font-weight: bold;
}

.privacy-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 1em;
}

.privacy-section li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

.privacy-section li::before {
    content: "・";
    position: absolute;
    left: -1em;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .page-privacy-policy {
        margin: 40px 20px;
        padding: 32px 24px;
    }

    .page-privacy-policy h1 {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .privacy-section {
        margin-bottom: 32px;
    }

    .privacy-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

/* プライバシーポリシー同意リンクのスタイル */
.wpcf7-list-item-label a[href*="privacy-policy"] {
    color: var(--text-color);
    text-decoration: underline;
    font-weight: normal;
    transition: color 0.2s;
}

.wpcf7-list-item-label a[href*="privacy-policy"]:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Privacy Policy Close Button */
.privacy-close-btn-wrap {
    text-align: center;
    margin-top: 40px;
}
.privacy-close-btn {
    background: #ccc;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    font-family: 'fot-tsukuardgothic-std', 'circe-rounded', sans-serif;
    border: none;
    border-radius: 4px;
    padding: 16px 48px;
    cursor: pointer;
    letter-spacing: 0.1em;
    transition: background 0.3s;
}
.privacy-close-btn:hover {
    background: #555;
}

.footer .hacobiyori-bnr {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    margin: 20px auto 0 auto;
}

.header-right nav {
    display: none;
}

.header-right img {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.header-right .banner-link {
    display: block;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.header-right .banner-link:hover {
    opacity: 0.8;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
}

