body {
  background-image: url("img/bg.jpg");
  background-repeat: repeat;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
}

.hero-menu a {
  text-decoration: none;
  color: black;
}

.hero {
  width: 100%;
  height: 100vh;
  max-height: 950px;
  min-height: 900px;
  position: relative;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background: url("img/main_v2.jpg") 50% 30% / cover no-repeat;
  clip-path: ellipse(120% 80% at 50% 10%);
}

/* ▼ タブレット改行用 */
.br {
  display: inline;
}

@media (max-width: 1024px) {
  .br {
    display: block;
  }
}


.hero-menu {
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  z-index: 10;
  align-items: flex-end;
  font-family: "ab-yurumin", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
}

/* ←統一 */
.hero-menu li {
  margin: 0;
}

.hero-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  position: relative;
  min-width: 60px; /* 安定 */
}

.hero-menu span {
  text-align: center;
  line-height: 1.3;
}

.hero-icon {
  width: auto;
  height: 40px;
  margin-bottom: 10px;
}

.hero-icon2 {
  width: auto;
  height: 30px;
  margin-bottom: 10px;
}


.main_logo {
  width: 220px;
}

/* ロゴ配置 */
.hero-logo {
  position: absolute;
  top: 80px;
  right: 10%;
  width: 300px;
  animation: floatLogo 5s ease-in-out infinite;
}
@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.hero-coffe {
  position: absolute;
  top: 500px;
  left: 10%;
  width: 250px;

  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* 区切り線 */
.hero-menu li:not(:first-child) a::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 2px;
  height: 60px;
  background: #000;
}

/* ▼ タブレット微調整 */
@media (max-width: 1024px) {
  .hero-menu {
    gap: 20px;
    font-size: 18px;
  }

  .hero-menu a {
    padding: 0 10px;
  }

  .hero-menu li:not(:first-child) a::before {
    left: -10px;
    height: 40px;
  }

  .main_logo {
    width: 150px;
  }

  .hero-icon {
    height: 30px;
  }

  .hero-icon2 {
    height: 25px;
  }
}

/* ▼ スマホ */
@media (max-width: 768px) {
  .hero-logo {
    width: 230px;
    right: 5%;
    top: 40px;
  }

}

.logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 200px;
}

.hero-menu a:hover img {
  transform: scale(1.1);
}

/* =========================
   NEWS
========================= */

.news {
  width: 900px;
  margin: 100px auto 50px auto;
}

.news-card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.news-title {
  writing-mode: vertical-rl;
  background: #f28c28;
  color: #fff;
  font-size: 26px;
  font-family: "ab-yurumin", sans-serif;
  letter-spacing: 0.2em;
  padding: 40px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-list {
  list-style: none;
  padding: 20px;
  flex: 1;
}

.news-list li {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.news-list time {
  color: #888;
  width: 120px;
}

.news-list a {
  text-decoration: none;
  color: #333;
}

.news-content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  flex: 1;
}

.news-more {
  margin-top: auto;
  text-align: right;
  padding-top: 10px;
}

.news-more a {
  color: #f28c28;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.news-more a::after {
  content: " →";
}

.news-more a:hover {
  padding-right: 5px;
}


/* =========================
   みかん
========================= */
body {
  position: relative;
}
.bg-free {
  position: absolute;
  top: 1100px;   /* ←ここで“出したい位置”決める */
  left: -100px;
  width: 400px;
  opacity: 0.7;
  pointer-events: none;
  z-index: -1; /* ←背景化 */
}

/* =========================
   ABOUT
========================= */

.about {
  width: 900px;
  margin: 100px auto;
  display: flex;
  align-items: top;
  gap: 50px;
}

.about-text {
  flex: 1;
  padding-top: 20px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 24px;
  font-family: "ab-yurumin", sans-serif;
  color: #e46e00;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
}

.about {
  width: 900px;
  margin: 100px auto;
  display: flex;
  align-items: top;
  gap: 50px;
}

/* ←ここ置き換え */
.about-text {
  flex: 1;
  padding-top: 20px;

  display: flex;
  flex-direction: column;
}

/* 見出しなどはそのまま */
.about-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text h3 {
  font-size: 24px;
  font-family: "ab-yurumin", sans-serif;
  color: #e46e00;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-more {
  margin-top: auto;
  text-align: right;
}

.about-more a {
  color: #e46e00;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block; 
  padding-bottom: 50px;
}

/* ▼マーク */
.about-more a::before {
  content: "▼";
  font-size: 12px;
  margin-right: 6px;
  display: inline-block;
  transition: 0.3s;
}

/* ホバー */
.about-more a:hover {
  opacity: 0.7;
}

/* ▼がちょい動く */
.about-more a:hover::before {
  transform: translateY(2px);
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* =========================
   スライダーセクション全体
========================= */
.slider-section {
  position: relative;
  background: #fff4df;
  padding: 0 0 40px;
  overflow: hidden;
}

/* =========================
   テキスト部分
========================= */
.slider-text {
  width: 900px;
  margin: 60px auto 10px;
}

.slider-text p {
  line-height: 1.8;
  margin-bottom: 30px;
}

.slider-text h3 {
  font-size: 24px;
  font-family: "ab-yurumin", sans-serif;
  color: #e46e00;
  margin-bottom: 10px;
}

.slider-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

/* =========================
   リンク
========================= */
.slider-more {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 40px;
}

.slider-more a {
  display: inline-block;
  color: #e46e00;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
}

.slider-more a::before {
  content: "▼ ";
}

.slider-more a:hover {
  opacity: 0.7;
}

/* =========================
   スライダー
========================= */
.slider {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.slider-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slider-track img {
  width: 300px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  border-radius: 10px;
}

/* =========================
   アニメーション（途切れない右→左）
========================= */
@keyframes scroll {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0); /* 1セット分だけ左に移動 */
  }
}

/* =========================
   店長紹介
========================= */
.manager-intro {
  width: 900px;
  margin: 100px auto;
  display: flex;
  align-items: top;
  gap: 50px;
}

.manager-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* スマホでは縦並びになる */
}

.manager-info {
  flex: 1;
  min-width: 250px; /* 小さい画面でも潰れすぎないように */
}

.manager-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "ab-yurumin", sans-serif;
  color: #e46e00;
}

.manager-info h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.manager-info .comment {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
}

.label {
  font-weight: bold;
}

.manager-photo {
  width: 400px;
  height: 600px;
  border-radius: 200px 200px 0 0; /* 上だけアーチ */
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* =========================
   アクセス
========================= */
.access {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.access-title {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "ab-yurumin", sans-serif;
  color: #e46e00;
}

.access-card {
  display: flex;
  width: 1200px;
  background-color: #fff;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

.access-info {
  flex: 1;
  padding: 40px;
  text-align: left;
}

.access-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: "ab-yurumin", sans-serif;
}

.access-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.map-container {
  flex: 1;
  padding: 20px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* =========================
   フッター
========================= */
.footer {
  background-color: #e46e00;
  color: #000000;
  padding: 40px 100px;
}
.footer-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* 左グループとSNSを左右に分ける */
  align-items: flex-start;
}

/* 左グループ */
.footer-left {
  display: flex;
  gap: 40px; /* 情報とメニューの間 */
  align-items: flex-end;
}
.tel {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* メニュー */
.footer-menu {
  list-style: none;
  padding: 0px 40px;
}
.footer-menu a {
  color: #000000;
  text-decoration: none;
}
.footer-menu a:hover {
  opacity: 0.7;
}

.footer-menu li {
  margin-bottom: 5px;
}

/* SNS（右寄せ） */
.footer-sns {
  display: flex;
  flex-direction: row; /* 横並びに変更 */
  align-items: flex-end;
  margin-top: auto;
  gap: 15px;
}

.footer-sns a {
  display: inline-block;
}

.footer-sns img {
  width: 30px;
  height: 30px;
}

.footer-logo-img {
  width: 250px;
}
.copyright-section {
  background-color: #1a1a1a;
}

.copyright {
  text-align: center;
  color: #fff;
  padding: 15px 0;
  margin: 0;
  font-size: 14px;
}

/* =========================
   TOPにもどる
========================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #e46e00;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.back-to-top:hover {
  background-color: #c85f00;
  transform: translateY(-3px); 
}
html {
  scroll-behavior: smooth;
}



@media (max-width: 1024px) {

  /* =========================
     HERO
  ========================= */
  .hero {
    height: 100vh;
  }

  .hero-bg {
    clip-path: ellipse(140% 65% at 50% 0%);
  }

  .hero-logo {
    width: 220px;
    right: 5%;
    top: 90px;
  }

  .hero-coffe {
    width: 200px;
    top: 45%;
    left: 5%;
  }

  /* メニューは“まだ出す”想定 */
  .hero-menu {
    gap: 20px;
    font-size: 16px;
    margin-top: -450px; /* 少し軽く */
  }

  .hero-menu a {
    padding: 0 10px;
  }

  .hero-icon {
    height: 30px;
  }

  .hero-icon2 {
    height: 24px;
  }

  .main_logo {
    width: 140px;
  }

  /* =========================
     NEWS
  ========================= */
  .news {
    width: 90%;
  }

  .news-card {
    flex-direction: column;
  }

  .news-title {
    writing-mode: horizontal-tb;
    width: 100%;
    font-size: 20px;
    padding: 10px;
  }

  .news-list li {
    flex-direction: column;
    gap: 5px;
  }

  .news-list time {
    width: auto;
  }

  /* =========================
     ABOUT
  ========================= */
  .about {
    width: 90%;
    flex-direction: column;
  }

  .about-text {
    padding-top: 0;
  }

    .about-image {
    display: flex;
    justify-content: center;
  }

  .about-image img {
    width: 90%;
    max-width: 550px;
  }

  /* =========================
     SLIDER
  ========================= */
  .slider-text {
    width: 90%;
  }

  .slider-track img {
    width: 220px;
  }

  /* =========================
     店長
  ========================= */
  .manager-intro {
  width: 100%;
  max-width: 400px;
  margin: 50px auto;
  text-align: center;
  }

  .manager-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .manager-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.manager-info {
  text-align: center;
}

.manager-photo {
  width: 100%;
  max-width: 600px;
  margin: 20px auto 0;
  display: block;
}

  /* =========================
     ACCESS
  ========================= */
  .access-card {
    width: 90%;
    flex-direction: column;
  }

  .map-container {
    padding: 0;
  }

  /* =========================
     フッター
  ========================= */
  .footer {
    padding: 40px 30px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu {
    padding: 0;
  }

  .footer-sns {
    justify-content: center;
    margin-top: 20px;
  }

  /* =========================
     背景装飾
  ========================= */
  .bg-free {
    display: none;
  }
    .scroll-header {
    display: none;
  }
}


/* =========================
   スマホ
========================= */
@media (max-width: 768px) {

  /* ===== HERO ===== */
  .hero {
    position: relative;
    overflow: hidden;
    height: 50vh;
  }

.hero-bg {
  height: 100%;
  background: url("img/main_v_sp.jpg") center 30% / cover no-repeat;
  clip-path: ellipse(130% 60% at 50% 20%);
}

  .hero-logo {
    width: 200px;
    right: 5%;
    top: 70px;
  }

  .hero-coffe {
    width: 200px;
    top: 55%;
    left: 5%;
  }

  .hero-menu {
    display: none;
    margin-top: 0;
  }


  /* ===== レイアウト全体 ===== */
  .news,
  .about,
  .slider-text,
  .manager-intro {
    width: 90%;
    margin: 50px auto;
  }
   .access-card {
    width: 90%;
    margin: 10px auto;
  }


  /* ===== ABOUT ===== */
.about {
  flex-direction: column-reverse;
}

  /* ===== 店長 ===== */
  .manager-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .manager-photo {
  width: 80%;
  max-width: 500px;
  margin: 20px auto 0;
  display: block;
  }
  .manager-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.manager-info {
  text-align: center;
}


  /* ===== アクセス ===== */
  .access-card {
    flex-direction: column;
  }

  .map-container {
    padding: 0;
  }

  /* ===== NEWS ===== */
.news {
  width: 90%;
  margin-top: -150px;
}
  .news-card {
    flex-direction: column;
  }

  .news-title {
    writing-mode: horizontal-tb;
    width: 100%;
    padding: 10px;
    font-size: 20px;
  }

  .news-list li {
    flex-direction: column;
  }

  .news-list time {
    width: auto;
  }

/* ===== フッター ===== */
.footer {
  padding: 40px 20px;
}

.footer-inner {
  flex-direction: column;
  align-items: center; /* 全体中央揃え */
}

/* 左グループを縦並び中央揃えに */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center; 
  width: 100%;
}

/* info全体も中央揃え */
.footer-left .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; /* 文字も中央 */
  width: 100%;
  margin-bottom: 15px; /* 下に余白 */
}

/* メニューも縦並び＆中央に */
.footer-left .footer-menu {
  width: 100%;
  text-align: center;
  padding: 0;
}

.footer-left .footer-menu li {
  display: block; /* 縦並びにする */
  margin:2px 0;
}

/* SNSも中央に */
.footer-sns {
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

  /* ===== TOPボタン消す ===== */
  .back-to-top {
    display: none;
  }
  .bg-free {
    display: none;
  }
}

  /* =========================
     スクロールメニュー
  ========================= */
.scroll-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: #e46e00; /* ←オレンジ💅 */
  transition: 0.3s;
  z-index: 999;
}

.scroll-header.show {
  top: 0;
}

/* 中身 */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}

/* ロゴ */
.header-logo img {
  width: 200px;
}

/* メニュー */
.header-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.header-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: "ab-yurumin", sans-serif;
}

/* アイコン */
.header-menu img {
  width: auto;
  height: 30px;
}

/* ホバー */
.header-menu a:hover {
  opacity: 0.7;
}



.menu-text {
  width: auto;
  height: 50px;
  margin-top: 0px;
}


/* =========================
   ヘッダー
========================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: relative;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* =========================
   ナビ（PC）
========================= */
.nav ul {
  display: flex;
  list-style: none;
}

.nav li {
  margin-left: 20px;
}

.nav a {
  text-decoration: none;
  color: #333;
}

/* =========================
   ハンバーガーメニュー
========================= */
#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
}

.nav {
  display: none; 
}

/* =========================
   スマホだけ表示
========================= */
@media (max-width: 768px) {

  .menu-icon {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: #f28c28;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2000;
    cursor: pointer;
  }

  .menu-icon span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
  }

  .overlay-menu {
    display: flex; 
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;

    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
    z-index: 1500;
  }

  #menu-toggle:checked ~ .overlay-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
/* =========================
   強制リセット（PCは完全非表示）
========================= */
#menu-toggle,
.menu-icon,
.overlay-menu {
  display: none !important;
}

/* =========================
   スマホだけ表示
========================= */
@media (max-width: 768px) {

  .menu-icon {
    display: flex !important;
  }

  .overlay-menu {
    display: flex !important;
  }
}