body {
  font-family: "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background-color: #fffcf9;
  color: #333;
}
.heading {
  font-family: 'Times New Roman', Times, serif;
  padding: 60px;
  margin: 0px auto;
  text-align: center;
  color: #5C4A3F;
}
.heading h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 15px;
  
}
.heading span {
  font-size: 16px;
}
/* ==============================================================
  HERO SECTION - Responsive (768px)
============================================================== */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .heading h2 {
    font-size: 32px;
  }
}
/*------------- responsive 393px -----------*/
@media screen and (max-width: 393px) {
  body {
    overflow-x: hidden;
  }
  .heading {
    margin: 25px auto;
  }
  .heading h2 {
    font-size: 24px;
    margin-bottom: 5px;
  }
  .heading span {
    font-size: 12px;
  }
}
/* ヘッダー */
/* ==============================================================
  HEADER SECTION - Base Style
============================================================== */
#masthead {
  background-color: #FFF;
}
.header-container {
  display: flex;
  height: 72px;
  align-items: center;
  padding: 0 50px;
  border-bottom: 1px solid rgb(204, 204, 204);
}
.area_logo_header a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 40px;
  vertical-align: bottom;
  margin-right: 10px;
}
.logo h2 {
  font-size: 24px;
  color: #5C4A3F;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* ------------ Navigation ------------ */
.area_nav_header {
  margin-left: auto;
}
.list_nav_header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
.list_nav_header a {
  text-decoration: none;
  display: flex; /* ← 追加 */
  align-items: center;
}
.list_nav_header .nav_menu {
  color: #5C4A3F;
  margin-right: 24px;
}
.list_nav_header li .nav_menu:hover {
  color: #DF982A;
}
.list_nav_header img {
  display: none;
  margin-right: 8px;
  vertical-align: middle;
}

.header_btn {
  padding: 12px 20px;
  transition: background-color 0.3s, color 0.3s;
  min-width: 106px;
  height: 48px;
  line-height: 24px;
  /* 中央に寄せる */
  text-align: center;
  border-radius: 50px;
  /* ボタンっぽく */
  background-color: #5C4A3F;
  color: #FFF;
}
.burger {
  display: none;
  cursor: pointer;
}
.burger div {
  width: 25px;
  height: 3px;
  background-color: #5c4a3f;
  margin: 5px;
  transition: all 0.5s ease-in-out;
}
.nav-active {
  transform: translateX(0%) !important;
}
/* レスポンシブデザイン - Header */
/* ==============================================================
  RESPONSIVE DESIGN - Base Style
============================================================== */
@media screen and (max-width: 1024px) {
  .area_nav_header {
    position: fixed;
    top: 72px;
    right: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: #FFFCF9;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1000;
  }
  .area_nav_header.nav-active {
    transform: translateX(0%);
  }
  .list_nav_header {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    margin-left: 0px;
    font-size: 32px;/* メニューの文字サイズ */
  }
  .list_nav_header a {
    justify-content: flex-start;/* アイコンとテキストを左寄せ */
  }
  .list_nav_header .nav_menu img {
    display: inline-block;/* 表示する */
    width: auto;
    height: 42px;
    margin-right: 16px;
    vertical-align: middle;
  }
  .list_nav_header .drink-icon {
    padding-left: 10px;
  }
  .list_nav_header .drink-icon li {
    padding-left: 10px;
  }
  
  .burger {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1100;
  }
  .burger div {
    width: 25px;
    height: 3px;
    background-color: #5c4a3f;
    margin: 5px;
    transition: all 0.5s ease-in-out;
  }
  .area_nav_header li {
    opacity: 0;
  }
  .area_nav_header.nav-active li {
    opacity: 1;
    animation: navLinksFade 0.5s ease forwards;
  }
}
@media screen and (max-width: 393px) {
  .area_logo_header h2 {
    font-size: 16px;
  }
  .list_nav_header {
    font-size: 14px;
  }
  .list_nav_header img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
}
/* ヒーロ */
/* ==============================================================
  HERO SECTION - Base Style
============================================================== */
.hero {
  background: url(../images/FV_backgroundimg.png) rgba(255, 255, 255, 0);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% 76%;
  object-fit: cover;
  background-blend-mode: normal;
  background-attachment: scroll;
  background-color: #FFFCF9;
  padding: 80px 1%;
  position: relative;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-upper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-text {
  flex: 1 1 50%;
  margin-right: 10px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #5C4A3F;
  margin-bottom: 85px;
  line-height: 1.4;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-wrap: nowrap;
}
.hero h1 .highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero h1 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: 0.5em;
  background-color: #F5B5B5;
  z-index: -1;
  border-radius: 2px;
}
.hero p {
  font-size: 36px;
  color: #5C4A3F;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.button-wrapper {
  padding-left: 36px;
}
.cta-button {
  display: inline-block;
  width: 34%;
  height: 24px;
  padding: 16px 32px;
  background-color: #5C4A3F;
  color: #fff;
  border-radius: 32px;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}
.hero-image {
  text-align: center;
  position: relative;
  z-index: 0;
  max-width: 100%;
  border-radius: 63px;
  overflow: hidden; /* 子の画像が角からはみ出ないようにする */
}
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 63px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to right, rgba(255,255,255,0.6), rgba(255, 255, 255, 0));
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* 親が丸めているのでここは0 */
}
/* レスポンシブデザイン - Hero */
/* ==============================================================
  RESPONSIVE DESIGN - Hero
============================================================== */
/*------------- responsive 1024px -----------*/
@media screen and (max-width: 1024px) {
  .hero {
    background-size: 100% 65%;
  }
  .hero-text {
    margin-left: 32px;
  }
  .hero h1 {
    font-size: 32px;
    margin-bottom: 90px;
    white-space: nowrap;
  }
  .hero p {
    font-size: 24px;
  }
  .button-wrapper {
    width: 100%;
  }
  .hero-image img {
    width: 100%;
    max-width: 480px;
  }
}
/*------------- responsive 768px -----------*/
@media screen and (max-width: 768px) {
  .hero {
    padding: 40px 1%;
  }
  .heading span {
    font-size: 16px;
  }
  .hero-text {
    margin-left: 20px;
  }
  .hero {
    background-size: 100% 300px;
  }
  .hero-upper {
    justify-content: flex-start;
  }
  .hero-text,
  .hero-image {
    flex: 1 1 100%;
  }
  .hero-text {
    margin-right: 5px;
  }
  .hero h1 {
    font-size: 28px;
    margin-bottom: 60px;
    white-space: nowrap;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .button-wrapper {
    margin-top: 0px;
    padding: 0 0 0 16px;
  }
  .cta-button {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    width: 40%;
  }
  .hero-image img {
    margin-top: 0px;
    width: 100%;
    max-width: 360px;
    border-radius: 63px;
  }
}

/*------------- responsive 393px -----------*/
@media (max-width: 393px) {
  /*hero*/
  .hero {
    background-size: 100% 149px;
  }
  .hero h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero-upper {
    flex-direction: column;
    text-align: center;
  }
  .hero-image::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  }
  .button-wrapper {
    width: 90%;
    margin: 24px auto 0 auto;
    padding: 0;
  }
  .cta-button {
    font-size: 1rem;
    width: 85%;
  }
}
/* menu */
/* ==============================================================
  menu SECTION - Base Style
============================================================== */
.menu {
  background-color: #FFFCF9;
	padding-top: 105px;
}

.menu-inner {
  background-image: url(/images/menu_backcolor.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  
  padding-bottom: 88px;
}

.menu-wrapper {
  font-size: 32px;
  font-weight: semibold;
  line-height: 1.0;
}

.menu-content h3 {
  margin-bottom: 32px;
  font-weight: bold;
}

.menu-content span {
  font-size: 14px;
  letter-spacing: -2%;
  opacity: 0.8;
}

.menu-heading {
  padding: 95px 0 40px 0;
}

.menu-content {
  text-align: center;
}

.menu-img-link {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-img a {
  background-color: #FFFCF9;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  /* 横中央 */
  align-items: center;
  /* 縦中央 */
  border-radius: 30px;
}

.menu-hotdog {
  width: 80%;
  height: auto;
}

.menu-sandwich {
  width: 80%;
  height: auto;
}

.menu-drink {
  width: 70%;
  height: auto;
}

.menu-sweets {
  width: 80%;
  height: auto;
}
/* レスポンシブデザイン - MENU */
/* ==============================================================
  RESPONSIVE DESIGN - MENU
============================================================== */
/*------------- responsive 1024px -----------*/
@media screen and (max-width: 1024px) {
  .menu-content {
    display: flex;
    flex-direction: row;/* 横並び */
    align-items: center;/* 縦方向中央寄せ */
    justify-content: center; /* 横方向中央寄せ */
    gap: 32px;/* h3と画像の間隔 */
    flex-wrap: wrap;/* 折り返し対応 */
    text-align: center;
  }

  .menu-content h3 {
    margin: 0;
    font-size: 24px;
  }

  .menu-img-link {
    max-width: 853px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .menu-img a {
    width: 150px;
    height: 150px;
  }

  .menu-content span {
    font-size: 12px;
  }
}

/*------------- responsive 768px -----------*/
@media screen and (max-width: 768px) {
  	.menu {
		padding-top: 50px;
	}
  .menu-content {
    gap: 15px;/* h3と画像の間隔 */
    margin-bottom: 40px;
  }
  .menu-inner {
    background-image: url(../images/menu_movile_backcolor.png);
    margin-top: 25px;
    padding-bottom: 0px;
  }
  .menu-img-link {
    flex-direction: column;
  }

  .menu-content {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .menu-img a {
    margin: 0 auto;
    width: 300px;
    height: 300px;
  }

  .menu-heading {
    padding: 50px 0 25px 0;
  }

  .menu-content h3 {
    margin-bottom: 0px;
  }
}

/*------------- responsive 393px -----------*/
@media (max-width: 393px) {
  .menu-img a {
    width: 200px;
    height: 200px;
  }
}

/* middle-cta */
/* ==============================================================
  middle-cta SECTION - Base Style
============================================================== */
.middle-cta {
  background-color: #fff;
  padding: 87px 0;
  text-align: center;
}

.cta-button2 {
  display: inline-block;
  width: 339px;
  height: 24px;
  padding: 16px 32px;
  background-color: #5C4A3F;
  color: #fff;
  border-radius: 32px;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 393px) {
  .middle-cta {
    padding: 25px 0;
  }
  .cta-button2 {
    width: 65%;
    }
}

/* アクセスセクション */
/* ==============================================================
  access SECTION - Base Style
============================================================== */ 
.access {
  display: flex;
  justify-content: center; /* ✅ 中央寄せ */
  background-image: url(../images/access_backcolor.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.access-wrapper {
  max-width: 1200px;
  width: 75%;
  margin-bottom: 100px;
}

.access p {
  font-size: 28px;
  color: #5C4A3F;
  text-align: left;
  line-height: 1.8;
}
.access-info {
  text-align: center;
}

.map-container {
  margin-top: 1rem;
}
.map-container {
  overflow: hidden;
  border-radius: 30px;
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 30px;
  overflow: hidden;
}

.instagram img {
  margin: 64px 0 24px 0;
  width: 66px;
  height: 66px;
}
/* レスポンシブデザイン - access */
/* ==============================================================
  RESPONSIVE DESIGN - access
============================================================== */
@media screen and (max-width: 768px) {
  .map-container, .instagram ,.access-info{
    width: 85%;
    margin: 0 auto;
  }
  .access-wrapper {
    margin-bottom: 15px;
    padding: 0 16px;
    width: 100%;
  }
  .access {
    margin: 0 auto;
    background-size: cover;
  }
  .access-info {
    text-align: center;
    margin-bottom: 24px;
  }
  .access-info p {
    font-size: 16px;
    text-align: left;
    line-height: 1.8;
  }
  .instagram img {
    margin: 15px 0;
    width:32px;
    height: 32px;
  }
}
/*------------- responsive 393px -----------*/
@media screen and (max-width: 393px) {
  .map-container, .instagram ,.access-info{
    width: 94%;
  }
  .access p {
    font-size: 14px;
  }
}
/* お問い合わせフォーム */
/* ==============================================================
  contact-form SECTION - Base Style
============================================================== */
.contact-form {
  padding: 2rem 1rem;
  background-color: #FFFCF9;
}
.contact-wrapper {
  width: 47%;
  margin: 0 auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #D8F2E0;
  border-radius: 5px;
}
::placeholder {
  color: #bbb; /* または rgba(0, 0, 0, 0.4) など */
  font-size: 0.95rem;
}

.contact-form-button {
  margin: 56px 0 32px 0;
  padding: 0.75rem;
  text-align: center;
  background-color: #5C4A3F;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
}
/* レスポンシブデザイン - contact-form */
/* ==============================================================
  RESPONSIVE DESIGN - contact-form
============================================================== */
@media screen and (max-width: 768px) {
  .contact-wrapper {
    width: 80%;
    margin: 0 auto;
  }
  .contact-form button {
    margin: 56px 0 0 0;
  }
}
@media screen and (max-width: 393px) {
  
}
/* フッター */
/* ==============================================================
  footer SECTION - Base Style
============================================================== */
.site-footer {
  text-align: center;
  padding: 1rem;
  background-color: #FAFAFA;
  color: #000000;
  
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-instagram-icon {
  width: 42px;
  height: 42px;
  padding-left: 20px;
}
.footer-line {
  height: 0.5px;
  background-color: rgba(0, 0, 0, 0.1);
  margin: 25px auto 16px auto;
  width: 98%;
}
/* レスポンシブデザイン - Footer */
/* ==============================================================
  RESPONSIVE DESIGN - Footer
============================================================== */
@media screen and (max-width: 768px) {
  .footer-line {
    height: 0.5px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 8px auto 16px auto;
    width: 90%;
  }
  .footer-content p {
    font-size: 12px;
  }
  .footer-instagram-icon {
    width: 32px;
    height: 32px;
  }
}
/* アニメーション */
/* ==============================================================
  ANIMATION - Base Style
============================================================== */
@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(405deg) translate(-5px, -6px);
}