body{
    font-size: 16px;
    color: #000;
    font-family: serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-bottom: 100px;
    background-color: #272727;
    scroll-behavior: smooth;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a{
    text-decoration: none;
    color: #fff;
}
li{
    list-style: none;
}
h2{
    font-size: 1.5rem;
}
.fadeUp{
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;
}
.fadeUp.inView{
    transform: translateY(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeLeft{
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s;
}
.fadeLeft.inView{
    transform: translateX(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeRight{
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s;
}
.fadeRight.inView{
    transform: translateX(0);
    transition-delay: 0.3s;
    opacity: 1;
}
.fadeBlur{
    opacity: 0;
    filter: blur(10px);
    transition: all 0.8s;
}
.fadeBlur.inView{
    opacity: 1;
    filter: blur(0);
    transition-delay: 0.3s;
}
/* header */
.header-fixed{
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    z-index: 300;
    transition: all 0.5s;
}
.header-flex{
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.logo{
    width: 40%;
}
.logo a{
    display: flex;  
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 30px;
    color: #fff;
}
.logo-img{
    width: 200px;
    height: 100%;
}
.logo-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ハンバーガーメニュー */
.hamb {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    position: relative;
    z-index: 300;
  }
  .black-bg ul{
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .black-bg ul li {
    text-align: center;
    padding: 20px 0;
  }
  
  .black-bg ul li a {
    color: #fff;
    font-size: 18px; 
    font-weight: bold;
    display: block;
    text-decoration: none;
}
  
  .line {
    position: absolute;
    width: 27px;
    height: 1px;
    background-color: #fff;
    z-index: 301;
    box-shadow: #272727 1px 1px 1px;
}
.line:nth-child(1){
    top: 20%;
  } 

  .line:nth-child(2)  {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .line:nth-child(3)  {
    bottom: 20%;
  }
  
  .black-bg {
    position: fixed;
    background: #272727;
    top: 0;
    right: 0;
    width: 80vw;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 200;
    transition: opacity 0.6s, visibility 0.35s ,width 0.35s;
  }
  
  .black-bg.open {
    opacity: 1;
    visibility: visible;
    height: 100%;
  }
  
  #hamb.active .line {
    background-color: #fff;
  }
  
  /*アニメーション*/
  .black-bg {
    transition: opacity 0.6s, visibility 0.35s, width 0.35s;
  }
  #hamb.active .line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  #hamb.active .line:nth-child(2) {
      opacity: 0;
  }
  #hamb.active .line:nth-child(3) {
    bottom: 45%;
    transform: rotate(45deg);
  }
  .animation {
    transition: all .9s;
  }
  
.top-img{
    width: 100%;
    height: 15vh;
    margin-top: 50px;
    background-color: #272727;
    color: #fff;
}
.top-img h3{
    width: 100%;
    line-height: 15vh;
    text-align: center;
    font-size: 40px;
}
/* reservation */
.reservation{
    width: 100%;
    height: 100%;
    background-color: #3C3C3C;
}
.reservation ul{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto;
    padding: 100px 0;
}
.reservation li{
    width: 100%;
    height: 100%;
    background-color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 30px 0;
}
.reservation li h4{
    width: 100%;
    font-size: 25px;
    padding-bottom: 20px;
}
.reservation li p{
    font-size: 16px;
    padding-bottom: 20px;
}

.change{
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}
.line-cta{
    width: 60%;
    height: 60px;
    padding: 10px;
    background-color: #06c755;
    color: #fff;
    margin: 0 auto;
    border-radius: 10px;
}
.line-cta span{
    line-height: 60px;
}
.web-cta{
    width: 60%;
    height: 60px;
    padding: 10px;
    background-color: #272727;
    color: #fff;
    margin: 0 auto;
    border-radius: 10px;
}
.web-cta span{
    line-height: 60px;
}
  /* CTAコンテナのスタイル */
.cta-container {
    width: 100%;
    display: flex;
    justify-content: space-around; /* 3つのCTAを均等に配置 */
    padding: 5px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05); /* 上部に軽い影を追加 */
    transition: background-color 0.3s ease-in-out;
}

/* CTAボタンのベーススタイル */
.cta {
    width: 49%; /* 3つのCTAボタンの幅を均等に */
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    border-radius: 10px; /* ボタンを丸く */
    text-decoration: none;
    transition: all 0.3s ease; /* 全体的なトランジション */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* ボタンに影を追加 */
    position: relative;
    overflow: hidden;
}

/* 背景アニメーション用の擬似要素 */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 70%);
    transform: translate(-50%, -50%);
    transition: transform 0.6s ease;
    opacity: 0;
}

/* ホバー時のアクション */
.cta:hover {
    transform: translateY(-5px); /* 少し上に浮かぶ効果 */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* ホバー時に影を濃く */
    letter-spacing: 1px; /* テキストの間隔を広げて視認性を高める */
}

.cta:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* 各CTAボタンのグラデーション背景を設定 */
.cta.cta-1 {
    background-color: #000; /* 青紫のグラデーション */
}

.cta.cta-1:hover {
    background: linear-gradient(135deg, #5a0eb6 0%, #1f5dbf 100%); /* ホバー時に少し濃く */
}

.cta.cta-2 {
    background-color: #000; /* 赤オレンジのグラデーション */
}

.cta.cta-2:hover {
    color: #000;
    background-color: #fff; /* ホバー時に少し濃く */
    border: 1px solid #000;
}

.cta.cta-3 {
    background-color: #3C3C3C; /* 緑のグラデーション */
}

.cta.cta-3:hover {
    color: #000;
    background-color: #fff; /* ホバー時に少し濃く */
    border: 1px solid #000;
}

/* ボタンのテキストに軽い影を追加して立体感を出す */
.cta span {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* ホバー時に文字が少し浮き上がる */
.cta:hover span {
    transform: translateY(-3px);
}

/* CTAボタンを押しやすくするアニメーション (脈打つ効果) */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* 少し大きくして注目させる */
    }
    100% {
        transform: scale(1);
    }
}

/* 初期状態でレスポンシブテキストを非表示 */
.responsive-text {
    display: none;
}

/* デスクトップサイズの時の表示 */
.desktop-text {
    display: inline;
}
footer{
    width: 100%;
    height: 100%;
    background-color: #272727;
}
footer p{
    width: 100%;
    text-align: center;
    color: #fff;
}
  /* 480px以下の画面での対応 */
  @media (max-width: 480px) {
    .black-bg {
        width: 80vw;
    }
    .logo span{
        padding-left: 0;
    }
    .logo-img{
        width: 100px;
    }
    /* header */
    .header-fixed{
        height: 35px;
    }
    .hamb{
        height: 30px;
    }
    .logo a{
        font-size: 20px;
    }
    .top-img h3{
        font-size: 25px;
    }
    .reservation ul{
        width: 100%;
    }
    .reservation li p{
        font-size: 14px;
    }
    .change{
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    .line-cta{
        font-size: 12px;
    }
    .web-cta{
        font-size: 12px;
    }
    .none{
        display: none;
    }
  }
