@charset "UTF-8";
/* Colors & Variables */
/* Mixins */
/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-color: #ffffff;
  color: #bc700c;
  line-height: 2em;
  font-weight: 400;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #feffe1;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.loaded {
  opacity: 0;
  visibility: hidden;
}
.loading-screen .loading-content {
  text-align: center;
}
.loading-screen .loading-text {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #bc700c;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Components */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.6rem;
  color: #bc700c;
  font-weight: 700;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  box-shadow: 2px 2px;
}
.btn-primary {
  background-color: #f9b443;
  color: #ffffff;
  box-shadow: 2px 2px #d79323;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid #bc700c;
  color: #bc700c;
}
.btn-large {
  padding: 15px 50px;
  font-size: 1.2rem;
}
.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* SP Fixed Nav */
.sp-fixed-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  padding: 10px 15px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
  gap: 10px;
}
@media (min-width: 768px) {
  .sp-fixed-nav {
    display: none;
  }
}
.sp-fixed-nav .sp-btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.sp-fixed-nav .sp-btn.btn-secondary {
  background: #feffe1;
  border: none;
  color: #bc700c;
}
.sp-fixed-nav .sp-btn.btn-primary {
  background: #f9b443;
  color: #ffffff;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(254, 255, 225, 0.95);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 900;
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.header-inner {
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .header .logo {
    font-size: 1.2rem;
  }
}
.header .pc-nav {
  display: none;
}
@media (min-width: 768px) {
  .header .pc-nav {
    display: block;
  }
}
.header .pc-nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header .pc-nav .btn-reserve {
  background-color: #f9b443;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
}

.fv {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  background-color: #feffe1;
}
@media (min-width: 768px) {
  .fv {
    display: flex;
    flex-direction: column;
    height: auto;
    padding-top: 0;
  }
}
.fv-image-container {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
  /* 背景画像としてメインビジュアルを設定 */
  background-image: url("../images/fv01.png");
  background-size: cover;
  background-position: center;
  /* ロゴを中央配置するためのFlexbox */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 50% 50%/0 0 15% 15%;
  /* --- ここから追加：オーバーレイ（黒い幕） --- */
  /* --- ここまで --- */
}
@media (min-width: 768px) {
  .fv-image-container {
    width: 100%;
    height: 90vh;
    position: relative;
    top: 0;
    right: auto;
  }
}
.fv-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(96, 68, 41, 0.5);
  z-index: 1;
}
.fv-image-container .fv-logo {
  position: relative;
  z-index: 2;
  width: 200px;
  max-width: 80%;
  /* 既にdrop-shadowがありますが、幕があることでより鮮明になります */
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}
@media (min-width: 768px) {
  .fv-image-container .fv-logo {
    width: 30%;
  }
}
.fv-content {
  padding: 40px 20px;
  text-align: center;
  background-color: #feffe1;
  width: 100%;
  z-index: 10;
  /* Condition: class="fv-content"は画面中央配置 */
}
@media (min-width: 768px) {
  .fv-content {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 140px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.fv-sub {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .fv-sub {
    font-size: 2.5rem;
  }
}
.fv .badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.fv .badges .badge {
  font-size: 0.8rem;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 4px;
  color: #bc700c;
  border: 1px solid #ffe473;
}
.fv .pc-only {
  display: none;
}
@media (min-width: 768px) {
  .fv .pc-only {
    display: flex;
    gap: 15px;
  }
}

/* Concept */
.concept {
  text-align: center;
  background-color: #ffffff;
  /* FVのデザイン変更に伴い、重なりを調整 */
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .concept {
    margin-top: 0;
    border-radius: 0;
  }
}
.concept-lead {
  margin-bottom: 2rem;
  font-size: 1rem;
}
.concept .promise-list {
  display: inline-block;
  text-align: left;
}
.concept .promise-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.5em;
}
.concept .promise-list li::before {
  content: "●";
  color: #ffe473;
  position: absolute;
  left: 0;
}

/* Menu */
.menu {
  background-color: #ffffff;
}
.menu .section-desc {
  text-align: center;
  margin-bottom: 2rem;
}
.menu-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.menu-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.menu-card:hover {
  transform: translateY(-5px);
}
.menu-card .menu-img {
  height: 300px;
  background-color: #eee;
}
.menu-card .menu-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-card .menu-info {
  padding: 20px;
  background-color: #feffe1;
}
.menu-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 8px;
  background: #bc700c;
  color: #ffffff;
  border-radius: 4px;
  margin-bottom: 8px;
}
.menu-card .tag.seasonal {
  background: #f9b443;
}
.menu-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.menu-card .menu-detail {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}
.menu-card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #bc700c;
  text-align: right;
}
.menu .btn-container {
  text-align: center;
}

/* Guilt Free - 修正 */
.guilt-free {
  background-color: #feffe1;
  /* Condition: class="feature-item"はそれぞれ円形にしbackground-color: #feffe1; */
}
.guilt-free p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #f9b443;
  display: flex;
  justify-content: center;
}
.guilt-free .features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .guilt-free .features {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}
.guilt-free .feature-item {
  background-color: #ffffff;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  /* 中身を上下左右中央にする */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.guilt-free .feature-item h3 {
  color: #f9b443;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.guilt-free .feature-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #bc700c;
}

/* Space & Drink - 修正 */
.space-drink {
  background-color: #ffffff;
}
.space-drink .sd-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  align-items: center;
  /* Condition: min-width: 768px以上の時、class="sd-grid"は中央に配置 */
  /* 注：flexのalign-items: centerで既に中央配置効果あり */
}
@media (min-width: 768px) {
  .space-drink .sd-grid {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.space-drink .sd-text {
  flex: 1;
  max-width: 500px;
}
.space-drink .sd-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #bc700c;
}
.space-drink .sd-text .facility-list {
  margin-top: 20px;
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
}
.space-drink .sd-text .facility-list li {
  border-bottom: 1px dashed #ffe473;
  padding: 10px 0;
}
.space-drink .sd-text .facility-list li:last-child {
  border-bottom: none;
}
.space-drink .sd-image {
  flex: 1;
  width: 100%;
  max-width: 500px;
}
.space-drink .sd-image img {
  border-radius: 20px;
}

/* Reserve */
.reserve {
  background-color: #ffe473;
  color: #bc700c;
  text-align: center;
  border-radius: 30px;
  margin: 0 5%;
}
.reserve-lead {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.reserve .reserve-box {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px;
  border-radius: 20px;
}
.reserve .reserve-box p {
  margin-bottom: 20px;
}

/* Shop & Allergy */
.shop .shop-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .shop .shop-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
.shop .shop-info {
  flex: 1;
}
.shop .shop-info dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
  margin-top: 20px;
}
.shop .shop-info dl dt {
  font-weight: 700;
  color: #f9b443;
}
.shop .allergy-info {
  flex: 1;
  background: #feffe1;
  padding: 20px;
  border-radius: 40px;
  text-align: center;
  border: 3px solid #f9b443;
}
.shop .allergy-info h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.shop .allergy-info .btn {
  margin: 10px 0;
  background-color: #ffffff;
  box-shadow: 2px 2px;
}
.shop .allergy-info .note {
  font-size: 0.8rem;
  color: #999;
}

/* Footer */
.footer {
  background-color: #bc700c;
  color: #feffe1;
  padding: 40px 0 100px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.footer .footer-nav a {
  font-weight: 700;
}
.footer .instagram-link {
  margin-bottom: 20px;
}
.footer .instagram-link a {
  display: inline-block;
  border-bottom: 1px solid #feffe1;
}
.footer .copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */