* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    color: #fff;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@keyframes shrinkFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b97dbd, #847ac6);
    z-index: 9999;
    pointer-events: none; 
    animation: fadeOutLoader 0.6s ease-in-out forwards;
    animation-delay: 0.1s; 
}
/* フェードアウトのアニメーション */
@keyframes fadeOutLoader {
    0% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* =============================================
   2. 背景画像 (PC用)
   ============================================= */
.background-overlay {
    position: fixed; /* 固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../images/bg.jpg');
    z-index: 1;
    background-size: cover;
    background-position: center;
}

/* =============================================
   3. 中央メインコンテンツ (スマホ特化レイアウト)
   ============================================= */
.main-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    min-height: 100vh; 
    overflow-y: visible; 
    height: auto;
    padding-top: 48px;
}
.main-container::-webkit-scrollbar {
    display: none;
}
.content-body {
}
.dummy-img {
    width: 100%;
    height: 400px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #444;
    font-weight: bold;
}
.item {
    margin-bottom: 60px;
    line-height: 1.8;
}

/* =============================================
   4. 左右の固定要素 (ロゴ & ナビゲーション)
   ============================================= */

.side-logo {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: calc((100% - 450px) / 2); 
    height: 100vh;
    z-index: 20;
    animation: shrinkFadeIn 1.2s ease-out forwards;
}

.side-logo .logo {
}
.side-logo .logo img{
    width: 100%;
}

.side-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b97dbd, #847ac6);
    z-index: 90;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: 0.4s ease-in-out;
    animation: shrinkFadeIn 1.2s ease-out forwards;
    visibility: hidden; 
    overflow: hidden;
}
.side-nav ul {
    list-style: none;
    text-align: center;
    margin-top: 64px;
}
.side-nav li {
    margin: 25px 0;
}
.side-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.2em;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-nav a span{
    font-size: 20px;
    margin-right: 4px;
}
.side-nav li.btn-contact{
}
.side-nav li.btn-contact a {
    background-color: #ff4b36;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    letter-spacing: normal;
    margin-top: 12px;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-nav li.btn-contact a span{
    font-size: 22px;
}

@media (min-width: 980px) {
    .side-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .side-nav {
        right: 0 !important;
        visibility: visible;
        width: calc((100% - 450px) / 2); 
        background: transparent;
        transition: none;
        align-items: center;
    }
    .side-nav ul li{
        line-height: 2.4;
    }
    .side-nav a {
        font-size: 18px;
        transition: opacity 0.3s;
    }
    .side-nav a:hover {
        opacity: 0.6;
    }
    .side-nav a span{
        font-size: 15px;
        margin-right: 4px;
    }
}

/* =============================================
   5. ハンバーガーメニュー (980px未満用)
   ============================================= */
.menu-checkbox {
    display: none;
}

.menu-button {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    z-index: 100;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button span, .menu-button span::before, .menu-button span::after {
    content: "";
    display: block;
    height: 2px;
    width: 28px;
    background: #fff;
    position: absolute;
    transition: 0.3s;
}
.menu-button span::before { top: -10px; }
.menu-button span::after { top: 10px; }

/* チェック時のアニメーション (×印) */
.menu-checkbox:checked + .menu-button span { background: transparent; }
.menu-checkbox:checked + .menu-button span::before { transform: rotate(45deg); top: 0; }
.menu-checkbox:checked + .menu-button span::after { transform: rotate(-45deg); top: 0; }

/* チェック時にメニューを表示 */
.menu-checkbox:checked ~ .side-nav {
    right: 0;
    visibility: visible;
}

@media (min-width: 980px) {
    .menu-button {
        display: none;
    }
}
@media (max-width: 768px) {
    .main-container {
        max-width: 100%;
        box-shadow: none;
    }
    body {
        overflow-y: auto;
    }
}
@media (max-width: 500px) {
    .main-container {
        padding-top: 72px;
    }
}

/* ここから */
header{
    width: 100%;
    background-color: #ffffff;
    background-image: 
    radial-gradient(at 90% 10%, rgba(255, 182, 193, 0.6) 0%, transparent 50%),
    radial-gradient(at 10% 90%, rgba(173, 216, 230, 0.6) 0%, transparent 60%),
    radial-gradient(at 50% 50%, rgba(230, 230, 250, 0.5) 0%, transparent 70%);
    background-blend-mode: normal;
    padding: 32px;
    text-align: center;
    border-radius:32px;
    .mainvisual{
        margin-top: 32px;
        img{
            width: 100%;
            height: auto;
        }
    } 
    .logo{
    }
    .logo img{
        width: 100%;
    }
    p{
        font-size: 20px;
        color: #111;
        letter-spacing: 4.0px;
        margin-top: 16px;
        line-height: 140%;
    }

}
@media (max-width: 500px) {
    header{
        padding: 24px;
        p{
            font-size: 18px;
            letter-spacing: 3.0px;
        }
        .mainvisual{
            margin-top: 16px;
        }
        .logo img{
            width: 88%;
            margin: 0px auto;
            text-align: center;
        }
    }
}

.main-item{
    border-radius: 32px 112px 32px 112px;
    box-sizing: border-box;
    padding: 32px 32px 64px 32px;
    width: 100%;
    margin-top: 32px;
}
    .main-item.karte{
        background: linear-gradient(135deg, #5186ec, #847ac6);
    }
    .main-item.reservation{
        background: linear-gradient(135deg, #bb6b7a, #847ac6);
    }
    .main-item.onlineshop{
        background: linear-gradient(135deg, #5299ab, #847ac6);
    }
    .main-item.movie{
        background: linear-gradient(135deg, #c38f6a, #847ac6);
    }
@media screen and (max-width:500px) {
    .main-item{
        padding: 32px 24px 48px 24px;
    }
}

.item-sub{
    border-radius: 32px 112px 32px 112px;
    box-sizing: border-box;
    padding: 32px 32px 64px 32px;
    width: 100%;
    margin-top: 32px;
    background-color: #FFF;
}

.main-item{
    h2{
        font-size: 38px;
        line-height: 1.4;
        filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.6));
    }
        .head-sub{
            font-size: 20px;
            margin-top: 4px;
            font-family: "stolzl", sans-serif;
            font-weight: 300;
            font-style: normal;
            color: rgba(255, 255, 255, 0.7);
        }
        p.lead{
            font-size: 18px;
            line-height: 1.4;
            margin-top: 16px;
        }
        p.lead2{
            font-size: 18px;
            line-height: 1.4;
            margin-top: 8px;
        }
    h3{
        font-size: 24px;
        margin-top: 16px;
    }
        h3 span{
            font-family: "stolzl", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 16px;
        }
        h3 span:nth-child(1){
            margin-right: 4px;
        }
        h3 span:nth-child(2){
            margin-right: 4px;
        }
        .content{
            margin-top: 32px;
            .box{
                img{
                    width: 100%;
                }
                video{
                    width: 100%;
                    border-radius: 32px;
                }
            }
            .box:nth-child(2){
                margin-top: -4px;
            }
        }
}
.main-item.movie .feature{
    font-size: 18px;
    border:1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    background-color: #ff4b36;
    border-radius: 12px;
    padding: 8px;
    margin-top: 16px;
}

.item-sub{
    .head{
        background: linear-gradient(135deg, #b97dbd, #847ac6);
        border-radius: 8px;
        box-sizing: border-box;
        padding: 12px;
        margin-top: 16px;
    }
    .head h2{
        font-size: 24px;
        line-height: 1.0;
        color: #FFF;
    }
    .head .head-sub{
        font-size: 16px;
        margin-top: 4px;
        font-family: "stolzl", sans-serif;
        font-weight: 300;
        font-style: normal;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.0;
    }
    .content img{
        width: 100%;
        margin-top: 16px;
    }
    h4{
        color: #847ac6;
        font-size: 20px;
        margin-top:24px;
        line-height: 1.4;
    }
        p.lead{
            font-size: 16px;
            line-height: 1.4;
            margin-top: 8px;
            color: #111;
        }
}

.main-item.karte{
    .content{
        .box{
            position: relative;
            }
        }
    }

footer{
    margin-top: 32px;
    padding-bottom: 120px;
    p{
        font-size: 14px;
        text-align: center;
    }
}


/* interview content */
.interview a{
    text-decoration: underline;
}
.interview img{
    width: 100%;
    height: auto;
}
.interview-fv{
    background-color: #BFB486;
    padding: 24px 32px 32px; 
    box-sizing: border-box;
    border-radius: 32px 32px 0px 0px;
}
    .interview-fv .heading{
        margin-bottom: 16px;
    }
    .interview-fv .heading h2{
        font-family: "Montserrat", sans-serif;
        font-size: 28px;
        color: #FFF;
        line-height: 100%;
        margin-bottom: 4px;
    }
    .interview-fv .heading p{
        font-size: 14px;
        color: #EEE7CB;
        line-height: 100%;
    }
    .interview-fv .introduction .image{
        width: 100%;
    }
        .interview-fv .introduction .title h3{
            font-size: 28px;
            line-height: 140%;
            margin-bottom: 16px;
        }
    .interview-fv .introduction .info {
      margin-bottom: 16px;
    }
        .interview-fv .introduction .info p.company{
        font-size: 14px;
        margin-bottom: 8px;
        }
        .interview-fv .introduction .info p.post{
            font-size: 14px;
            line-height: 100%;
            margin-bottom: 8px;
        }
        .interview-fv .introduction .info p.name{
            font-size: 24px;
            line-height: 100%;
            letter-spacing: 10px;
        }
    .interview-fv .introduction .image img{
        border-radius: 8px;
    }
  .interview .maincontent{
      width: 100%;
      margin: 0px auto 64px;
      background-color: #FFF;
      padding-top: 24px;
      padding-bottom: 24px;
      border-radius: 0px 0px 32px 32px;
  }
      .interview .maincontent .block{
          width: 88%;
          margin: 0px auto 64px;
      }
          .interview .maincontent .block h3{
              font-size: 24px;
              color: #333;
              margin-bottom: 16px;
              line-height: 140%;
          }
          .interview .maincontent .block p{
              font-size: 16px;
              line-height: 180%;
              color: #111;
          }
      .interview .maincontent .image{
          max-width: 526px;
          width: 88%;
          margin: 0px auto 64px;
      }
      .interview .maincontent .image img{
          border-radius: 8px;
      }
      .interview .maincontent .image-block{
          width: 88%;
          margin: 0px auto;
          flex-wrap: wrap;
          gap: 2%;
      }
      .interview .maincontent .image-block img{
          margin-bottom: 16px;
          border-radius: 4px;
      }
      @media (width < 768px){
        .interview .maincontent .image{
          max-width: 100%;
          width: 100%;
        }
      }