/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Hiragino Mincho ProN", "Yu Mincho", "Times New Roman", serif;
  }
  
  /* Body */
  body {
    background-color: #111;
    color: #fff;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(90deg, #111, #222);
    border-bottom: 2px solid #daa520;
  }
  
  .logo {
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .maintop {
    width: 100%;
    height: 100%;
  }
  
  .nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
  }
  
  .nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
  .nav a:hover::after,
  .nav a.active::after {
    width: 100%;
  }
  
  .yoko {
    display: flex;
  }
  
  /* ナビゲーション */
  .navbar {
    position: absolute;
    top: 20px;
    left: 30px;
  }
  
  .navbar ul {
    list-style: none;
    margin-left: 150px;
    display: flex;
    gap: 50px;
  }

  .navbar li {
    font-size: 25px;
  }

  .navbar a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #f0c040;
  }

  .nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .nav-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #d4af37;
  }
  
  /* concept */
  .concept {
    position: relative;
    background-color: #111;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
  }

.btn {
  display: inline-flex;       /* テキストとアイコンを横並び */
  align-items: center;        /* 縦位置を中央に */
  gap: 16px;                   /* テキストと矢印の間隔 */
  text-decoration: none;      /* 下線を消す */
  font-size: 1.6rem;          /* 文字サイズ */
  font-weight: 700;
  color: #fff;                /* 文字を白に */
  background: #333;        /* 背景色（深いグリーン系） */
  padding: 14px 120px;         /* ちょうどいい余白 */
  margin-top: 50px;
  border-radius: 6px;         /* 角丸 */
  transition: background 0.3s;
  flex-wrap: nowrap;      /* 改行を禁止 */
}

.btn:hover {
  background: #555;        /* ホバー時に少し濃く */
}

.btn.text {
    text-align: center;
}
  
  .wingleft,
  .wingright {
    position: absolute;
    top: 50%;
    width: 400px;
    opacity: 0.25;
    transform: translateY(-50%);
    z-index: 1;
    height: auto;
  }
  
  .wingleft {
    left: 0;
  }
  
  .wingright {
    right: 0;
  }
  
  .concept-inner {
    position: relative;
    z-index: 2;
  }
  
  /* lineup */
  .lineup {
    padding-top: 80px;
    text-align: center;
  }
  
  .lineup h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-family: "Yu Mincho", serif;
    color: #d4af37;
  }
  
  .menu-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .yoko {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  
  .menu {
    padding: 80px 20px;
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
    font-family: "Yu Mincho", serif;
  }
  
  .menu h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-family: "Yu Mincho", serif;
    color: #d4af37;
  }
  
  
  .menu-card {
    width: 300px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s;
  }
  
  .menu-card:hover {
    transform: translateY(-5px);
  }
  
  .menu-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .menu-info {
    padding: 18px;
    background-color: #333;
  }
  
  .menu-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .catchcopy1 {
    font-size: 16px;
    color: greenyellow;
    margin-bottom: 12px;
    font-weight: bold;
  }
  
  .catchcopy2 {
    font-size: 16px;
    color: red;
    margin-bottom: 12px;
    font-weight: bold;
  }
  
  .catchcopy3 {
    font-size: 16px;
    color: orange;
    margin-bottom: 12px;
    font-weight: bold;
  }
  
  .description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .price {
    font-size: 18px;
    font-weight: bold;
    text-align: right;
  }
  
  .menu-wrapper {
    padding: 60px 20px;
  }
  
  .logo .kanji {
    font-size: 64px;
    font-weight: bold;
    color: white;
  }
  
  .logo .cafe-name {
    font-size: 32px;
    font-weight: bold;
    color: #d4af37;
  }
  
  .menu-columns {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
  }
  
  .menu-block {
    text-align: left;
    min-width: 180px;
  }
  
  .menu-block h2 {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #f0f0f0;
  }
  
  .menu-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .menu-block li {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .menu-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #111;
    color: #fff;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  }
  
  .menu-title {
    font-size: 48px;
    margin-bottom: 50px;
    color: #f0c040;
  }
  
  .menu-category1,
  .menu-category2,
  .menu-category3 {
    display: block;
    margin-bottom: 60px;
  }
  
  .category-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 22px;
    margin: 15px 0;
  }
  
  .menu-item .item-name {
    margin: 0;
    font-weight: bold;
  }
  
  .price {
    font-size: 20px;
    color: #ddd;
  }
  
  /* access */
  .access {
    padding: 80px 20px;
    background-color: #111;
    color: #fff;
    text-align: center;
  }
  
  .access h2 {
    font-size: 40px;
    margin-bottom: 50px;
    color: #d4af37;
    font-family: "Yu Mincho", serif;
  }
  
  .access-container {
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    display: flex;
  }
  
  .access-map img {
    width: 600px;
    max-width: 100%;
    transition: transform 0.3s;
    margin-bottom: 20px;
  }
  
  .access-map img:hover {
    transform: translateY(-5px);
  }
  
  .access-info,
  .tennai {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  
  .tennai {
    margin-bottom: 40px;
  }
  
  .access-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #d4af37;
  }
  
  .tel,
  .time,
  .day {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #ddd;
    font-weight: bold;
  }
  
  .day {
    margin-bottom: 50px;
  }
  
  /* news */
  .news {
    padding: 80px 20px;
    background-color: #000;
    color: #fff;
    text-align: left;
    border-bottom: 2px solid #daa520;
  }
  
  .news h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
    color: #d4af37;
    font-family: "Yu Mincho", serif;
  }
  
  .news ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 800px;
  }
  
  .news li {
    border-left: 3px solid #d4af37;
    padding: 15px 20px;
    margin-bottom: 25px;
    background: #222;
    border-radius: 8px;
    transition: transform 0.3s;
  }
  
  .news li:hover {
    transform: translateX(5px);
  }
  
  .news .date {
    font-size: 14px;
    color: #aaa;
    margin-right: 10px;
  }
  
  .news .new {
    font-size: 12px;
    color: #fff;
    background: #e74c3c;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 8px;
    font-weight: bold;
  }
  
  /* footer */
  .footer {
    background-color: #111;
    color: #ddd;
    padding: 40px 20px;
    text-align: center;
    font-family: "Yu Mincho", serif;
  }
  
  .footer-container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #d4af37;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #d4af37;
  }
  
  .footer-copy {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
  }
  
  .highlight {
    color: #fff;
  }

  .nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
  }
  
  .nav a:hover {
    color: #d4a373;
  }
  
  .nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav-links {
        display: flex;
        gap: 20px;
      }

/* ハンバーガー3本線 */
.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    display: none; /* デフォルトはPCでは非表示 */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    display: block;
    height: 4px;
    background-color: #fff; /* 線の色 */
    border-radius: 2px;
    transition: 0.3s;
  }
  
  /* ハンバーガークリック時のアニメーション */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* モバイルメニュー */
  .mobile-nav {
    display: none; /* デフォルト非表示 */
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    padding-top: 60px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    transition: transform 0.3s ease;
    transform: translateX(100%);
  }
  
  .mobile-nav.open {
    display: block;
    transform: translateX(0);
  }
  
  .mobile-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .mobile-nav li {
    margin: 20px 0;
    text-align: center;
  }
  
  .mobile-nav a {
    text-decoration: none;
    font-size: 18px;
    color: #fff;
  }
  
  /* =========================
   （800px）
   ========================= */
   @media (max-width: 800px) {
    .wingleft,
    .wingright {
      display: none;
    }
  
    .yoko {
      display: block;
    }
  
    .btn {
      flex-wrap: nowrap;
      white-space: nowrap;
    }
  
    .access-container {
      flex-direction: column;
      align-items: center;
    }
  
    .access-info {
      text-align: center;
    }
  
    .mobile-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 20px;
        transition: right 0.3s ease;
        z-index: 9999;   /* かなり前面に */
      }
      
      .mobile-nav.open {
        right: 0;
      }
      
      .mobile-nav li {
        margin-bottom: 30px;
      }
      
      .mobile-nav a {
        font-size: 24px;
        color: #fff;      /* 白文字 */
        text-decoration: none;
        display: block;
        margin: 20px 0;
      }
  
    nav ul li:hover {
      color: #d4af37;
    }
  
    .nav {
      display: none;
    }
  
    .mobile-nav {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background: rgba(0,0,0,0.9);
      justify-content: flex-start;
      align-items: flex-start;
      padding: 100px 20px;
      transition: right 0.3s ease;
      z-index: 1000;
    }
  
    .mobile-nav.open {
      right: 0;
    }
  
    .mobile-nav ul {
      margin: 0;
      padding: 0;
      list-style: none;
      width: 100%;
    }
  
    .mobile-nav li {
      margin-bottom: 30px;
      text-align: center;
    }
  
    .mobile-nav a {
      font-size: 24px;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      display: block;
      margin: 20px;
    }
  
    .mobile-nav a:hover {
      color: #d4af37;
    }
  
    /* ハンバーガーアイコン */
    .hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 20px;
      cursor: pointer;
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1002;
    }
  }  
  
  /* PC用 */
  @media (min-width: 801px) {
    .mobile-nav,
    .hamburger {
      display: none !important;
    }
  
    .nav {
      display: flex !important;
    }
  }
  
  /* =========================
     超小型：432px以下
     ========================= */
  @media (max-width: 432px) {
    .logo .cafe-name {
      font-size: 16px;
    }
  
    .btn {
      font-size: 16px;
      padding: 14px 100px;
    }
  
    .footer-links {
      font-size: 12px;
      list-style: none;
      padding: 0;
      margin: 0 0 20px;
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: nowrap;
      white-space: nowrap;
    }
  }

  .concept-hero img {
    width: 600px;
    max-width: 100%;
    transition: transform 0.3s;
    margin-bottom: 20px;
  }
  
  .concept-hero img:hover {
    transform: translateY(-5px);
  }

  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(90deg, #111, #222);
    border-bottom: 2px solid #daa520;
  }
  
  .logo {
    font-size: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  
  .nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
  }
  
  .nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
  }
  
  .nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
  }
  
  .nav a:hover::after,
  .nav a.active::after {
    width: 100%;
  }
  
  .yoko {
    display: flex;
  }
  
  /* ナビゲーション */
  .navbar {
    position: absolute;
    top: 20px;
    left: 30px;
  }
  
  .navbar ul {
    list-style: none;
    margin-left: 150px;
    display: flex;
    gap: 50px;
  }

  .navbar li {
    font-size: 25px;
  }

  .navbar a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .navbar a:hover {
    color: #f0c040;
  }

  .nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #d4af37;
  }
  
  /* ヒーローセクション */
  
  .concept-hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #111 0%, #222 100%);
  }

  .concept-hero h1 {
    font-size: 40px;
    margin-bottom: 40px;
    font-family: "Yu Mincho", serif;
    color: #d4af37;
    animation: slideIn 1s ease-out forwards;
    transform: translateX(-50px);
    opacity: 0;
  }
  
  .concept-hero h2 {
    font-size: 40px;
    font-weight: 900;
    color: #daa520;
    letter-spacing: 5px;
    margin: 20px 0;
    animation: slideIn 1s ease-out forwards;
    transform: translateX(-50px);
    opacity: 0;
  }

  .hero text {
    font-weight: 900;
  }
  
  .concept-hero p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 2s 0.5s forwards;
  }
  
  /* 背景・理念 */
  .concept-origin,
  .concept-target {
    padding: 80px 20px;
    text-align: center;
  }
  
  .concept-origin h3,
  .concept-target h3 {
    font-size: 40px;
    font-weight: 900;
    color: #daa520;
    margin: 20px 0;
    animation: slideIn 1s ease-out forwards;
    transform: translateX(-50px);
    opacity: 0;
  }
  
  .concept-origin p,
  .concept-target ul,
  .concept-target p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 2s 0.5s forwards;
  }
  
  .concept-target ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
  }

  .concept-target img,
  .concept-origin img {
    width: 600px;
    max-width: 100%;
    transition: transform 0.3s;
    margin-bottom: 20px;
  }
  
  .concept-target img:hover,
  .concept-origin img:hover {
    transform: translateY(-5px);
  }

  .highlight {
    color: white;
  }

    .logo .kanji {
    font-size: 64px;
    font-weight: bold;
    color: white;
  }
  
  .logo .cafe-name {
    font-size: 32px;
    font-weight: bold;
    color: #d4af37;
  }
  
  /* 詳細コンセプト */
  .concept-details {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 80px 20px;
    gap: 30px;
    border-bottom: 2px solid #daa520;
  }
  
  .detail {
    background: #1a1a1a;
    border-left: 5px solid #daa520;
    padding: 30px;
    flex: 1 1 300px;
    transition: transform 0.3s;
  }
  
  .detail:hover {
    transform: translateY(-10px);
  }
  
  .detail h3 {
    color: #daa520;
    margin-bottom: 15px;
    font-size: 1.5rem;
    animation: slideIn 1s ease-out forwards;
    transform: translateX(-50px);
    opacity: 0;
  }
  
  .detail p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 2s 0.5s forwards;
  }
  
  /* Footer */
  .footer {
    color: #ddd;
    padding: 40px 20px;
    text-align: center;
    font-family: "Yu Mincho", serif;
  }
  
  /* アニメーション */
  @keyframes slideIn {
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }

  /* 共通のスタイルは前回のCSSを使用 */

/* スマホ用レスポンシブ */
@media screen and (max-width: 375px) {
  .header {
    flex-direction: column;
    padding: 15px 20px;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .concept-hero {
    padding: 80px 15px;
  }

  .concept-hero h2 {
    font-size: 2rem;
    letter-spacing: 3px;
  }

  .concept-hero p {
    font-size: 1rem;
    max-width: 90%;
  }

  .concept-origin, .concept-target {
    padding: 50px 15px;
  }

  .concept-origin h3,
  .concept-target h3 {
    font-size: 1.5rem;
  }

  .concept-origin p,
  .concept-target ul {
    font-size: 0.95rem;
    max-width: 100%;
    padding-left: 10px;
  }

  .concept-details {
    flex-direction: column;
    padding: 50px 15px;
  }

  .detail {
    width: 100%;
    padding: 20px;
  }

  .detail-img {
    height: auto;
  }

  .footer {
    font-size: 0.85rem;
    padding: 15px;
  }
}

 /* =========================
     超小型：432px以下
     ========================= */
     @media (max-width: 432px) {
        .logo .cafe-name {
          font-size: 16px;
        }
      
        .btn {
          font-size: 16px;
          padding: 14px 100px;
        }
      
        .footer-links {
          font-size: 12px;
          list-style: none;
          padding: 0;
          margin: 0 0 20px;
          display: flex;
          justify-content: center;
          gap: 30px;
          flex-wrap: nowrap;
          white-space: nowrap;
        }
      }