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

html{
    scroll-behavior:smooth;
}

body{
    font-family: "Noto Sans JP", sans-serif;
    color:#333;
    background:#fff;
    line-height:1.7;
}

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

a{
    color:inherit;
}

ul{
    list-style:none;
}

/* ===================================
    Common
=================================== */
.container{
    width:min(1200px,90%);
    margin:0 auto;
}

.section-label{
    color:#e88fb0;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:.15em;
    text-transform:uppercase;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
}

.center{
    text-align:center;
}

/* ===================================
    Header
=================================== */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 15px rgba(0,0,0,.06);
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

/* ==========================
    Logo
========================== */
.logo{
    display:flex;
    align-items:center;
    position:relative;
    z-index:1003;
}

.logo img{
    height:50px;
    width:auto;
}

/* ==========================
    Navigation (PC用の横並び設定)
========================== */
.header-nav{
    display:flex;
    align-items:center;
}

.nav-list{
    display:flex;
    gap:40px;
    margin:0;
    padding:0;
}

.nav-list li{
    list-style:none;
}

.nav-list a{
    position:relative;
    text-decoration:none;
    color:#333;
    font-size:15px;
    font-weight:600;
    letter-spacing:.08em;
    transition:.3s;
}

.nav-list a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#e88fb0;
    transition:.3s;
}

.nav-list a:hover{
    color:#e88fb0;
}

.nav-list a:hover::after{
    width:100%;
}

/* ==========================
    Hamburger
========================== */
.hamburger{
    display:none;
    width:44px;
    height:44px;
    padding:0;
    border:none;
    background:none;
    cursor:pointer;
    position:relative;
    z-index:1003;
}

.hamburger span{
    display:block;
    width:28px;
    height:2px;
    margin:6px auto;
    background:#333;
    border-radius:10px;
    transition:.35s;
}

/* ==========================
    Overlay
========================== */
.nav-overlay{
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.35);
    backdrop-filter:blur(8px);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:997;
}

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

/* ===================================
    Hero
=================================== */
.hero {
    padding: 80px 0;
    background: #fffafc;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-subtitle {
    color: #e88fb0;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #333;
    margin-bottom: 24px;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #666;
    margin-bottom: 40px;
}

.hero-button {
    display: inline-block;
    padding: 16px 36px;
    background: #e88fb0;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.hero-button:hover {
    background: #d8749d;
}

.hero-image {
    flex: 1.25;
}

.hero-image img {
    width: 100%;
    display: block;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse 68% 55% at center, #000 45%, transparent 100%);
    mask-image: radial-gradient(ellipse 68% 55% at center, #000 45%, transparent 100%);
}

/* ===================================
    Liver Management (PC版)
=================================== */
.liver-banner {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 50px 0;
    margin-bottom: 32px;
    background: linear-gradient(90deg, #fff7fa 0%, #fdeef4 100%);
    border-radius: 24px;
    transition: .3s;
}

.liver-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 143, 176, .15);
}

.liver-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.liver-icon {
    flex: 0 0 140px;
    text-align: center;
}

/* PC版：他と馴染む100pxの正方形 */
.liver-icon img {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.liver-content {
    flex: 1;
}

.liver-content .section-label {
    color: #e88fb0;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .2em;
    margin-bottom: 12px;
}

.liver-content .section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.liver-copy {
    color: #e88fb0;
    font-size: 1.3rem;
    font-weight: 700;
}

.liver-message {
    color: #555;
    font-size: 1rem;
    white-space: nowrap;
}

.liver-message p {
    margin: 0;
}

.liver-link {
    display: inline-block;
    margin-top: 10px;
    color: #e88fb0;
    font-weight: 700;
}

/* ===================================
    Service
=================================== */
.service {
    padding: 100px 0;
    background: #fffafc;
}

.section-description {
    max-width: 680px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 2;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto 30px;
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: .95rem;
}

/* ===================================
    About
=================================== */
.about{
    padding:100px 0;
    background:#fff7fa;
}

.about-container{
    display:flex;
    align-items:center;
    gap:80px;
}

.about-image{
    flex: 0.75;
}

.about-image img{
    width:100%;
    display:block;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse 66% 50% at center, #000 45%, transparent 100%);
    mask-image: radial-gradient(ellipse 66% 50% at center, #000 45%, transparent 100%);
}

.about-content{
    flex: 1.25;
}

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

.about-text{
    margin-bottom:20px;
    line-height:2;
    color:#555;
}

/* ===================================
    Contact
=================================== */
.contact{
    padding:80px 0;
    background:#fff7fa;
}

.contact-container{
    text-align:center;
}

.contact-text{
    max-width:700px;
    margin:0 auto 40px;
    line-height:2;
    color:#666;
}

.contact-button{
    display:inline-block;
    padding:16px 42px;
    background:#e88fb0;
    color:#fff;
    text-decoration:none;
    border-radius:999px;
    font-weight:700;
    transition:.3s;
}

.contact-button:hover{
    background:#d8749d;
}

/* ===================================
    Footer
=================================== */
.footer {
    padding: 70px 0 30px;
    background: #333;
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.footer-logo-text h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.footer-logo-text p {
    margin-top: 4px;
    font-size: .95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-nav {
    padding-top: 10px;
}

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

.footer-nav li {
    margin-bottom: 16px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .05em;
    transition: .3s;
}

.footer-nav a:hover {
    color: #e88fb0;
}

.copyright {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.15);
    text-align: center;
}

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

/* ===================================
    Responsive (スマホ用の設定)
=================================== */
@media screen and (max-width: 768px) {

    .header .container {
        height: 70px;
        padding: 0 20px;
    }

    .logo img {
        height: 42px;
    }

    .hamburger {
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(18px);
        transform: translateX(100%); 
        transition: transform .35s ease; 
        z-index: 998;
    }

    .header-nav.active {
        transform: translateX(0); 
    }

    .nav-list {
        flex-direction: column;
        gap: 34px;
        text-align: center;
    }

    .nav-list a {
        font-size: 22px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-container {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-content {
        width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 32px;
    }

    .hero-button {
        padding: 14px 32px;
    }

    .hero-image {
        width: 100%;
        max-width: 500px;
    }

    .service {
        padding: 70px 0;
    }

    .section-description {
        margin: 0 auto 40px;
        padding: 0 10px;
    }

    /* スマホ版マイク：全体の余白バランス調整 */
    .liver-banner {
        padding: 35px 20px;
    }

    .liver-container {
        flex-direction: column;
        text-align: center;
        gap: 0px; /* すき間を完全にリセット */
    }

    /* スマホ版マイク：80pxの綺麗な正方形に固定 */
    .liver-icon img {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    /* スマホ版マイク：間伸びしたすき間をキュッと吸い寄せる設定 */
    .liver-icon {
        flex: 0 0 auto;
        margin-bottom: -15px; /* 下の文字を引き上げる魔法 */
    }

    .liver-content .section-title {
        font-size: 1.6rem;
    }

    .liver-copy {
        font-size: 1.1rem;
    }

    .liver-message {
        white-space: normal;
        font-size: .95rem;
        text-align: center;
    }

    .liver-link {
        margin-top: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-card img {
        width: 80px;
        margin-bottom: 24px;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .about {
        padding: 70px 0;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .about-content {
        width: 100%;
        text-align: center;
    }

    .about-text {
        font-size: .95rem;
        line-height: 1.9;
        margin-bottom: 16px;
    }

    .contact {
        padding: 70px 0;
    }

    .contact-text {
        font-size: .95rem;
        line-height: 1.9;
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .contact-button {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-logo {
        flex-direction: column;
        gap: 16px;
    }

    .footer-logo img {
        width: 60px;
    }

    .footer-logo-text h2 {
        font-size: 1.6rem;
    }

    .footer-nav li {
        margin-bottom: 12px;
    }

    .copyright {
        margin-top: 40px;
    }

} /* スマホ用スタイル終了 */

/* ===================================
    JavaScript 連動スタイル（共通）
=================================== */
body.menu-open {
    overflow: hidden;
}

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

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

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


/* ===================================
    Contact Form Page（お問い合わせ専用設定）
=================================== */
.contact-form-section {
    padding: 120px 0 100px;
    background: #fffafc;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

/* 必須・任意バッジ */
.required {
    background: #e88fb0;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

.optional {
    background: #999;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
}

/* 入力項目共通 */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: .3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #e88fb0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 143, 176, 0.1);
}

/* セレクトボックス（お問い合わせ種別） */
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    transition: .3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
}

.form-group select:invalid {
    color: #999;
}

/* プライバシーポリシー同意チェックエリア */
.form-privacy {
    text-align: center;
    margin: 32px 0 24px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e88fb0;
    cursor: pointer;
}

.policy-link {
    color: #e88fb0;
    text-decoration: underline;
    font-weight: 700;
}

.policy-link:hover {
    color: #d8749d;
}

/* 送信ボタン周辺 */
.form-center {
    text-align: center;
    margin-top: 32px;
}

.submit-button {
    display: inline-block;
    width: 100%;
    max-width: 240px;
    padding: 16px 32px;
    background: #e88fb0;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.submit-button:hover {
    background: #d8749d;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .contact-form {
        padding: 24px 20px;
    }
}
/* ===================================================
   スマホの時：サイト全体の「切ない改行」をすべて美しく直す設定（完全版）
=================================================== */
@media screen and (max-width: 768px) {
    /* ① 最初のメイン文章（ヒーローエリア） */
    .hero-text {
        font-size: 1rem;
        display: inline-block;
        word-break: keep-all;
        overflow-wrap: anywhere;
        text-align: center;
        width: 100%;
    }

    /* ② 今回見つかった「事業内容」の紹介文（追加！） */
    .section-description {
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    /* ③ 3つのカード（チケット、グッズ、通販）の文章 */
    .service-card p {
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    /* ④ ABOUT（私たちについて）の文章（丸。の調整入り） */
    .about-text {
        word-break: keep-all;
        overflow-wrap: anywhere;
        padding: 0 12px;
    }
}
/* ===================================================
    スマホの時：ABOUTの余白を完全攻略 ＋ 背景を優しい薄ピンクに
=================================================== */
@media screen and (max-width: 768px) {
    /* ① 上のサービスエリアの下側の広すぎる余白を縮める */
    .service {
        padding-bottom: 20px !important;
    }

    /* ② ABOUTエリア全体の余白を詰め、背景をヒーローと同じ優しい薄ピンクにする */
    .about {
        padding-top: 10px !important;
        padding-bottom: 30px !important;
        background: #fff7fa !important; /* ←【これで真っ白から優しいピンクに変わります！】 */
    }

    /* ③ 画像と下の文字（ABOUT）との間のすき間を密着 */
    .about-container {
        gap: 10px !important;
    }

    /* ④ 画像自体のサイズをコンパクトに */
    .about-image {
        margin-top: 0 !important;
        max-width: 280px !important;
    }
}