@import url('https://fonts.googleapis.com/css2?family=Omnes:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-visual-img {
  width: 100%;
  min-width: 400px;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

/* レスポンシブ対応 */
@media (width <= 400px) {
  .main-visual-img {
    min-width: unset;
    width: 100%;
  }
}


.container-365 {
  max-width: 56rem;
  margin: 0 auto;
}


.header {
  text-align: center;
  margin-bottom: 2rem;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #8b5cf6;
}

.date-picker-wrapper {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.date-label {
  display: block;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.month-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}


.date-picker-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.date-picker-button {
  background: #fff;
  border: 2px solid #e95406;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
  font-weight: 600;
  color: #e95406;
  min-width: 300px;
  justify-content: center;
  margin-bottom: 2rem;
}

.date-picker-button:hover {
  border-color: #ea580c; 
  transform: translateY(-1px);
}

.date-picker-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.2);
}

.date-picker-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #e95406;
  letter-spacing: 1.4px;
}

.calendar-icon {
  width: 20px;
  height: 20px;
  color: #f97316;
}

/* ドロップダウンメニュー */
.date-picker-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 300px;
}

.date-picker-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 10px;
}

.month-day-selector {
  display: flex;
  height: 400px;
}

.month-selector-section,
.day-selector-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section-header {
  background: #f3f4f6;
  padding: 0.75rem 1rem;
  font-weight: 700;
  color: #374151;
  font-size: 1.3rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}

.month-list,
.day-list {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.month-item,
.day-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
}

.month-item:hover,
.day-item:hover {
  background: #f9fafb;
  color: #f97316;
}

.month-item.has-recipes,
.day-item.has-recipe {
  background: #e7daff;
  color: #1e40af;
  font-weight: 700;
}

.month-item.has-recipes:hover,
.day-item.has-recipe:hover {
  background: #bfdbfe;
  color: #1e40af;
}

.month-item.selected,
.day-item.selected {
  background: #f97316;
  color: #fff;
  font-weight: 700;
}

.month-item.selected:hover,
.day-item.selected:hover {
  background: #ea580c;
  color: #fff;
}


.month-selector-section {
  border-right: 1px solid #e5e7eb;
}



.initial-message,
.no-days-message {
  padding: 2rem 1rem;
  text-align: center;
  color: #6b7280;
  font-style: italic;
  background: #f9fafb;
  border-radius: 0.5rem;
  margin: 1rem;
}


.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.weekday {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #6b7280;
  font-size: 0.875rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.day-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  color: #374151;
  transition: all 0.2s ease;
  position: relative;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.day-cell:hover {
  background: #f3f4f6;
  transform: scale(1.1);
}

.day-cell.has-recipe {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 700;
}

.day-cell.has-recipe:hover {
  background: #bfdbfe;
}

.day-cell.selected {
  background: #3b82f6;
  color: #fff;
  transform: scale(1.1);
}

.day-cell.selected:hover {
  background: #2563eb;
}

.day-cell.empty {
  cursor: default;
  pointer-events: none;
  background: transparent;
  border: none;
}

.day-cell.empty:hover {
  background: transparent;
  transform: none;
}


.card {
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: 4px solid #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content {
  padding: 0;
}

.default-content {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
}

.emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.message-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.5rem;
}

.message-text {
  color: #6b7280;
  font-size: 1rem;
}


.loading-content {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
}

.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
}


.no-recipe-content {
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}


.recipe-layout {
  position: relative;
  padding: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-section {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
}

.dole-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #dc2626;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.recipe-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  overflow: hidden;
}

.top-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 100%;
  overflow: hidden;
}

.left-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 300px;
  width: 100%;
  min-width: 0;
}


.title-section {
  text-align: center;
  margin-bottom: 0;
}


.title-image {
  max-width: 150px;
  height: auto;
  max-height: 100px;
  width: auto;
}

.title-logo {
  max-width: 50px;
  height: auto;
  max-height: 100px;
  margin: 0 auto;
  display: flex;
  margin-bottom: 1rem;
}

.main-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.main-title .smoothie {
  color: #8b5cf6;
}

.main-title .bowl {
  color: #fbbf24;
}

.subtitle {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 700;
  color: #541075;
}

.date-section {
  text-align: left;
  margin-bottom: 0;
}

.date-text {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.special-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin: 0.5rem 0 0 0;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}


.base-section {
  flex-shrink: 0;
  margin-bottom: 0;
}

.base-card {
  background: #fff;
  border-radius: 15px 15px;
  padding: 0;
  box-shadow: none;
  max-width: 130px;
  width: 100%;
  min-width: 0;
}

.base-header {
  background: #bee650;
  color: #fff;
  padding: 0.75rem;
  border-radius: 10px 10px 0 0;
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
  margin: 0;
  letter-spacing: 0.1em;
  display: flex;
  justify-content:center;
  font-family: 'Nunito', sans-serif;
}


.base-content {
  text-align: center;
  padding: 1rem;
  background: #fff;
}

.base-ingredient-en {
  font-size: 2.4rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.05em;
  font-family: 'Nunito', sans-serif;
}

.base-ingredient-jp {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.bowl-image {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  margin-top: 0.25rem;
}


.divider {
  text-align: center;
  margin: 1rem 0;
}

.divider-x {
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
}


.topping-section {
  display: flex;
  justify-content: center;
}

.topping-card {
  max-width: 400px;
  width: 100%;
  min-width: 0;
}

.topping-header {
  background: #f59e0b;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 900;
  font-size: 2rem;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.topping-content {
  text-align: center;
}

.topping-ingredient {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}


.date-display {
  text-align: center;
  padding: 1.5rem 1rem;
}

.display-date-text {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  font-family: 'Nunito', sans-serif;
}

.special-bowl-text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}


.base-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.dole-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.base-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px 10px;
}

.bowl-image {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.base-text {
  flex: 1;
}

.text-a {
  font-size: 1.875rem;
  font-weight: 700;
  color: #8b5cf6;
  margin-bottom: 0.5rem;
}

.text-b {
  font-size: 1.125rem;
  color: #374151;
  font-weight: 500;
}

.divider {
  display: flex;
  justify-content: center;
  margin:0 0 1rem;
}

.topping-header {
  border-radius: 10px 10px 0 0;
  padding: 1rem;
}

.topping1-header {
  background: #fbbf24;
}

.topping2-header {
  background: #f97316;
}

.topping-title {
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}

.topping-content {
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1rem;
}

.topping-text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b5cf6;
}

/* Footer */
.footer {
  text-align: center;
  margin-top: 2rem;
  color: #374151;
}

.footer-text {
  font-size: 0.875rem;
}

.hidden {
  display: none;
}


/* スムージーボウル特設ページボタンセクション */
.smoothie-special-section {

  margin: 3rem 0;
  padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.smoothie-special-btn {
  display: inline-block;
  background: #01bbdc;
  color: #fff;
  padding: 1rem 4rem;
  border-radius: 50px!important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  word-break: keep-all;
  box-shadow:
    inset 0 -5px 5px rgba(1, 140, 165, 0.8); 
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 300px;
  width: 100% ;
}

a.smoothie-special-btn {
  display: flex;
  justify-content: center;
}

.smoothie-special-btn:hover {
  background: #01bbdc;
  transform: translateY(-2px);
}

.hashtag-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hashtag-label {
  color: #1f2937;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  font-style: italic;
}

.hashtag-text {
  color: #01bbdc;
  font-size: 2.6rem;
  font-weight: 500;
  margin: 0;
}

.hashtag-sub {
  color: #1f2937;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
}

/* SNS Share Section */
.sns-share-section {
  margin-top: 2rem;
  text-align: center;
}

.sns-share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.sns-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
  min-width: 120px;
  justify-content: center;
}

.sns-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.twitter-btn {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
}

.twitter-btn:hover {
  transform: translateY(-2px);
}

p.sns-btn-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}


.nav-section::before {
  top: -295px!important;
}

.section.nav-section {
  padding-bottom: 126px;
  background: #fff;
  position: relative;
  margin-top: -10px;
  top: -85px;
}


.container {
background: #fff!important;
}
/* 小さいスマホ */
@media (width <= 376px) {
  .section.nav-section{
    padding: 2.5rem 0.625rem 6.25rem!important;
  }
  
  .recipe-layout {
    padding: 2rem 1rem;
  }
}

@media (width <= 319px) {
  .top-content {
    flex-direction: column;
}
.base-card {
  max-width: 100%;
}
.base-section {
  width: 100%;
}
}

