﻿@charset "UTF-8";

:root {
  --color-main: #4A3728;
  /* 遊び心のあるブラウン */
  --color-gold: #DFB550;
  /* 柔らかなベージュホワイト */
  --color-gold-light: #F7EBCF;
  /* 薄いゴールドクリーム */
  --color-bg: #FDFCF9;
  /* 穏やかなオフホワイト */
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-accent: #D36C47;
  /* ブラウンアクセントカラー */
  --color-blue-light: #BEEBF1;
  /* 水色アクセントカラー */

  --color-step-pink: #ff6b9e;
  /* ステップ利用時のピンク */
  --color-step-border: #ffb6c1;

  /* Fonts - 読みやすい標準設定 */
  --font-base: 'Zen Maru Gothic', sans-serif;
  --font-title: 'Shippori Mincho', serif;
  --font-hand: 'Zen Kurenaido', 'Yomogi', cursive;
  /* 筆記体風の英語フォント */
  --font-en: 'Caveat', cursive;
}

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;700;800&family=Zen+Maru+Gothic:wght@400;500;700;900&family=Yomogi&family=Zen+Kurenaido&family=Caveat:wght@700&display=swap');

/* =======================================================
   BASE
======================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: url('../images/common/bg-pattern.jpg');
  background-repeat: repeat;
  background-size: 300px auto;
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
.handwriting {
  margin: 0;
}

.handwriting {
  font-family: var(--font-hand);
}

.caveat {
  font-family: var(--font-en);
}

.mincho {
  font-family: var(--font-title);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 25px;
}

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

.bold {
  font-weight: 700;
}

.color-gold {
  color: var(--color-gold);
}

/* Global Typography Details */
h2 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--color-main);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 0.15em;
  position: relative;
}

h2 span.side-lines {
  font-weight: 100;
  color: #ddd;
  margin: 0 20px;
  font-size: 1.8rem;
}

/* Buttons */
.btn--gold {
  display: inline-block;
  background: linear-gradient(135deg, #DFB550 0%, #CFA04D 100%);
  color: #fff !important;
  padding: 20px 50px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 8px 20px rgba(223, 181, 80, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  letter-spacing: 0.05em;
}

.btn--gold:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 30px rgba(223, 181, 80, 0.6);
}

/* =======================================================
   HEADER
======================================================= */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 100;
}

.logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pc-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.pc-nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 20px;
}

.pc-nav-list li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.pc-nav-list li a:hover {
  opacity: 1;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.pc-contact-button a {
  background: var(--color-gold);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.sp-hum {
  display: none;
  cursor: pointer;
}

/* =======================================================
   FV (Hero)
======================================================= */
#fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  background-image: url('../images/common/fv_new4.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-main);
}

#fv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.fv-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  width: 100%;
  max-width: 1000px;
  padding-top: 50px;
}

.top-bubble {
  display: inline-block;
  background: var(--color-gold);
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fv-main-text {
  font-family: var(--font-title);
  font-size: 6rem;
  line-height: 1.1;
  margin-bottom: 45px;
  text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.15em;
  font-weight: 900;
}

.circle-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.circle-badge {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
  padding: 10px;
  line-height: 1.3;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.circle-badge span:first-child {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.circle-badge span:last-child {
  font-size: 1.6rem;
  color: var(--color-gold);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.circle-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.fv-bottom-text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-family: var(--font-title);
}

.fv-bottom-text span {
  color: var(--color-gold);
  margin: 0 15px;
  font-weight: 100;
  opacity: 0.8;
}

/* Achievement Banner */
.banner-achievement {
  background: #FFD43B;
  padding: 30px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 30;
  border-top: none;
  border-bottom: none;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.banner-achievement .badgetext {
  font-size: 1.5rem;
  font-weight: 900;
  color: #333;
  font-family: var(--font-hand);
  letter-spacing: 0.1em;
}

.banner-achievement .pilltext {
  border: 3px solid #333;
  color: #333;
  border-radius: 50px;
  padding: 5px 25px;
  font-weight: 900;
  background: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.banner-achievement .maintext {
  font-size: 2.2rem;
  font-weight: 900;
  color: #333;
  font-family: var(--font-title);
}

.banner-achievement .maintext .num {
  font-size: 4rem;
  font-family: 'Arial Black', sans-serif;
  margin-right: 5px;
  color: #D32F2F;
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8);
}

/* =======================================================
   REFINED IRODORI SECTIONS
======================================================= */
section {
  padding: 100px 0;
}

.go_group {
  display: flex;
  align-items: center;
  gap: 50px;
  background: var(--color-white);
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.go_box {
  flex: 1.2;
}

.go_img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.go_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Recommend Section (Blob & Overlay) */
.recommend-irodori-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  /* Text Left, Image Right */
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px;
  gap: 40px;
}

.rec-bg-blob {
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  width: 60%;
  background-color: var(--color-blue-light);
  border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  opacity: 0.6;
}

.rec-images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 45%;
}

.rec-img-circle {
  border-radius: 50%;
  border: 6px solid var(--color-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.5s;
}

.rec-img-1 {
  width: 400px;
  height: 400px;
  position: relative;
  z-index: 2;
}

.rec-img-2 {
  width: 250px;
  height: 250px;
  position: absolute;
  bottom: -40px;
  left: -40px;
  /* Overlap nicely on bottom left */
  z-index: 3;
}

.rec-img-circle:hover {
  transform: scale(1.05) rotate(2deg);
}

.rec-content {
  position: relative;
  z-index: 3;
  width: 55%;
}

.rec-title {
  font-size: 2.2rem;
  color: var(--color-main);
  margin-bottom: 15px;
  white-space: nowrap;
}

.rec-subtitle {
  font-size: 1.4rem;
  color: #555;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

.coffee-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coffee-list li {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-main);
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.coffee-list li::before {
  content: '☕';
  margin-right: 15px;
  font-size: 1.3rem;
  transform: rotate(-15deg);
  display: inline-block;
  filter: hue-rotate(30deg) saturate(0.8);
}

/* Feature Slider */
.feature-bg {
  background-color: transparent;
  position: relative;
}

.bg-feature-text {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 13rem;
  color: var(--color-blue-light);
  opacity: 0.25;
  z-index: 0;
  letter-spacing: 0.05em;
}

.feature-slider {
  margin: 0 -15px;
  margin-top: 40px;
}

.feature-item-wrap {
  padding: 0 15px;
  outline: none;
}

.feature-col {
  text-align: center;
}

.feature-line {
  width: 100%;
  border-bottom: 2px dotted #ccc;
  position: relative;
  margin-bottom: 30px;
}

.feature-circle-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  transition: all 0.3s;
  object-fit: cover;
}

.feature-col:hover .feature-circle-img {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.feature-col-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

/* =======================================================
   JOB TAGS (Frosted Glass Style - CUTE & PREMIUM)
======================================================= */
.job-tags-elegant {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.job-tag-elegant {
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 25px;
  border-radius: 100px;
  font-size: 1.05rem;
  color: var(--color-main);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: default;
  font-family: var(--font-base);
  font-weight: 700;
}

.job-tag-elegant:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(211, 108, 71, 0.2);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* =======================================================
   PRICE SECTION
======================================================= */
.price-card-wrapper {
  background: #FFF;
  padding: 60px 40px;
  border-radius: 30px;
  border: 3px solid var(--color-gold);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(223, 181, 80, 0.15);
  position: relative;
}

.price-card-wrapper::before {
  content: '☕';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 2.5rem;
  transform: rotate(-15deg);
}

.price-catch {
  font-size: 1.6rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.price-main-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.price-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-main);
  opacity: 0.8;
}

.price-big-num {
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--color-main);
  font-family: 'Arial Black', sans-serif;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-yen {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-main);
}

.price-note {
  color: #888;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* =======================================================
   VARIATIONS SLIDER & GENERAL SLICK SETTINGS
======================================================= */
.variation-slider,
.feature-slider,
.voice-slider {
  margin: 0 -15px;
}

.variation-item-wrap,
.feature-item-wrap,
.voice-item-wrap {
  padding: 0 15px;
  outline: none;
}

.variation-item {
  text-align: center;
  transition: opacity 0.3s;
}

.variation-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 4px solid #fff;
}

.variation-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.variation-item:hover .variation-img img {
  transform: scale(1.1);
}

.variation-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Slick Styles (Shared) */
.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 15px;
  color: var(--color-gold);
  opacity: 0.3;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--color-accent);
}

.slick-prev:before,
.slick-next:before {
  color: var(--color-gold) !important;
  font-size: 35px;
  transition: color 0.3s;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: var(--color-accent) !important;
}

/* Override arrows for #feature slider if needed */
.slick-prev {
  left: -45px;
  z-index: 10;
}

.slick-next {
  right: -45px;
  z-index: 10;
}

/* =======================================================
   STEP FLOW (Horizontal Grid)
   ======================================================= */
.step-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}



.step-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 2px solid #fff;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-badge {
  display: inline-block;
  background: #C19A6B;
  color: var(--color-white);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 800;
  font-family: var(--font-title);
  font-size: 1.6rem;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(193, 154, 107, 0.4);
}

.step-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #444;
  line-height: 1.8;
}

.step-img-holder {
  width: 100%;
  max-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: auto;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-img-holder img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
}

/* =======================================================
   TIMELINE
======================================================= */
.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 50px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 100%;
  border-left: 2px dashed var(--color-gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-num {
  position: absolute;
  left: -60px;
  top: 0;
  width: 45px;
  height: 45px;
  background: var(--color-bg);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-main);
  z-index: 2;
  font-size: 1.5rem;
}

.timeline-content {
  background: var(--color-white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.tl-text {
  flex: 1;
}

.tl-text h3 {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.tl-text p {
  margin: 0;
  color: #555;
}

.tl-img {
  width: 140px;
  height: 140px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #f9f9f9;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =======================================================
   VOICES SLIDER
======================================================= */
.voice-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  border-top: 5px solid var(--color-gold-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.voice-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #eee;
}

.voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice-star {
  color: var(--color-gold);
  margin-top: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.qa {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 30px 40px;
}

.q_group,
.a_group {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.q_group {
  margin-bottom: 15px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.1rem;
}

.a_group {
  color: #555;
  font-size: 1.05rem;
}

.q,
.a {
  font-family: var(--font-en);
  font-size: 2.2rem;
  line-height: 1;
  min-width: 30px;
}

.q {
  color: var(--color-gold);
}

.photo-grid-wrapper {
  padding: 40px 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s;
}

.photo-grid img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* =======================================================
   FOOTER
======================================================= */
.footer-irodori {
  background-color: var(--color-main);
  color: #fff;
  padding: 80px 25px 40px;
  text-align: center;
  position: relative;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo i {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.footer-logo span {
  font-size: 2rem;
  display: block;
  letter-spacing: 0.1em;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.sns-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.sns-btn:hover {
  transform: translateY(-5px);
}

.sns-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sns-btn.mail {
  background: #333;
}

.sns-btn.line {
  background: #06C755;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links li a {
  color: #eee;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links li a:hover {
  opacity: 1;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.4;
  margin-top: 50px;
}

/* =======================================================
   RESPONSIVE
======================================================= */
@media screen and (max-width: 1000px) {
  .rec-img-1 {
    width: 350px;
    height: 350px;
  }

  .rec-img-2 {
    width: 220px;
    height: 220px;
    right: -30px;
  }

  .rec-content {
    padding-left: 40px;
  }

  .variation-slider,
  .feature-slider,
  .voice-slider {
    padding: 0 40px;
  }
}


@media screen and (max-width: 768px) {

  /* Global Densification */
  body {
    line-height: 1.6 !important;
  }

  section {
    padding: 40px 0 !important;
  }

  h2 {
    font-size: 1.5rem !important;
    margin-bottom: 22px !important;
  }

  h2 span.side-lines {
    font-size: 1.1rem !important;
    margin: 0 8px !important;
  }

  .fv-main-text {
    font-size: 2.8rem !important;
  }

  .top-bubble {
    font-size: 1.05rem !important;
    padding: 8px 20px !important;
    margin-bottom: 15px !important;
    white-space: nowrap !important;
  }

  /* go_group: 複数行にならないように調整 */
  .go_group {
    flex-direction: column;
    padding: 25px 15px !important;
  }

  .go_img {
    display: none;
  }

  .go_img_sp {
    display: block !important;
  }

  .go_group h2 {
    font-size: 1.3rem !important;
    line-height: 1.5 !important;
  }

  /* ボタン全体: スマホでは小さめに1行に収める */
  .btn--gold {
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    white-space: nowrap !important;
  }

  /* こんな方にオススメ: スマホでも横並び（画像とテキスト） */
  .recommend-irodori-wrapper {
    flex-direction: row !important;
    padding: 30px 15px !important;
    gap: 15px !important;
    align-items: flex-start !important;
  }

  .rec-bg-blob {
    display: none !important;
  }

  .rec-images {
    position: relative !important;
    width: 120px !important;
    min-width: 120px !important;
    height: 130px !important;
    display: block !important;
    flex-shrink: 0 !important;
    left: auto !important;
  }

  .rec-img-1 {
    width: 100px !important;
    height: 100px !important;
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    margin: 0 !important;
  }

  .rec-img-2 {
    width: 65px !important;
    height: 65px !important;
    position: absolute !important;
    bottom: 0 !important;
    right: -5px !important;
    z-index: 3 !important;
  }

  .rec-content {
    width: auto !important;
    flex: 1 !important;
    padding-left: 0 !important;
    text-align: left !important;
  }

  .rec-title {
    font-size: 1.3rem !important;
    white-space: normal !important;
    margin-bottom: 8px !important;
  }

  .rec-subtitle {
    font-size: 1rem !important;
    margin-bottom: 12px !important;
  }

  .coffee-list-rec li {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
    margin-bottom: 6px !important;
  }

  .coffee-list li::before {
    font-size: 0.9rem !important;
    margin-right: 6px !important;
  }

  /* OneCafeとは: スライダーとロゴを横並びに（画像は消さない） */
  .what-desc {
    font-size: 1.0rem !important;
    text-align: left !important;
    flex: 1 !important;
  }

  .feature-col {
    width: 100%;
    margin-bottom: 20px !important;
  }

  .feature-col-desc {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .feature-circle-img {
    width: 110px !important;
    height: 110px !important;
    margin-bottom: 10px !important;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px !important;
  }

  .photo-grid img {
    height: 130px !important;
  }

  .price-card-wrapper {
    padding: 30px 20px !important;
  }

  .price-big-num {
    font-size: 3.5rem !important;
  }

  .timeline-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px !important;
    padding: 20px 15px !important;
  }

  .tl-img {
    width: 100%;
    height: 160px !important;
  }

  .slick-prev {
    left: 5px;
    z-index: 100;
  }

  .slick-next {
    right: 5px;
    z-index: 100;
  }

  .voice-card {
    padding: 25px 18px !important;
  }

  .voice-img {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 12px !important;
  }

  .job-tag-elegant {
    font-size: 0.92rem !important;
    padding: 7px 16px !important;
  }

  /* Circles in FV */
  .circle-badge {
    width: 110px !important;
    height: 110px !important;
    padding: 10px !important;
  }

  .circle-badge span:first-child {
    font-size: 0.85rem !important;
  }

  .circle-badge span:last-child {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.3rem !important;
    margin-bottom: 18px !important;
    letter-spacing: 0.02em !important;
  }

  h2 span.side-lines {
    font-size: 0.9rem !important;
    margin: 0 5px !important;
  }

  section {
    padding: 30px 0 !important;
  }

  .fv-main-text {
    font-size: 2.2rem !important;
  }

  .fv-bottom-text {
    font-size: 0.9rem !important;
  }

  /* チョコのアクセント */
  .circle-badges {
    gap: 8px !important;
  }

  .circle-badge {
    width: 100px !important;
    height: 100px !important;
    padding: 6px !important;
  }

  .circle-badge span:first-child {
    font-size: 0.7rem !important;
    margin-bottom: 2px !important;
  }

  .circle-badge span:last-child {
    font-size: 1.05rem !important;
  }

  .badge-annual span:last-child {
    font-size: 0.85rem !important;
    letter-spacing: -0.05em;
  }

  .badge-ranking span:first-child {
    font-size: 0.68rem !important;
    line-height: 1;
  }

  /* 上品なゴールドクリーム */
  .banner-achievement {
    padding: 18px 0 !important;
  }

  .banner-achievement .maintext {
    font-size: 1.3rem !important;
  }

  .banner-achievement .maintext .num {
    font-size: 2.4rem !important;
  }

  .banner-achievement .badgetext {
    font-size: 1rem !important;
  }

  .banner-achievement .pilltext {
    font-size: 0.85rem !important;
    padding: 4px 12px !important;
  }

  /* ボタン: 幅いっぱい・1行のコンパクト */
  .btn--gold {
    display: block !important;
    padding: 12px 15px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* go_group: 見出し縮小 */
  .go_group h2 {
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
  }

  /* リスト */
  .coffee-list li {
    font-size: 0.85rem !important;
    margin-bottom: 8px !important;
  }

  .coffee-list-rec li {
    font-size: 0.8rem !important;
    line-height: 1.55 !important;
    margin-bottom: 5px !important;
  }

  .what-list li,
  .future-list li {
    font-size: 0.85rem !important;
    line-height: 1.7 !important;
    white-space: nowrap;
  }

  /* テキストパーツ */
  .what-note {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-top: 30px !important;
  }

  .jobs-subtitle {
    font-size: 0.82rem !important;
    line-height: 1.7 !important;
  }

  .qa {
    padding: 18px 12px !important;
    font-size: 0.85rem !important;
  }

  .q_group,
  .a_group {
    gap: 8px !important;
  }

  .q,
  .a {
    font-size: 1.5rem !important;
  }

  .what-desc {
    font-size: 0.92rem !important;
  }

  /* タイムライン */
  .timeline-container {
    padding-left: 20px !important;
  }

  .timeline-num {
    left: -25px !important;
    width: 30px !important;
    height: 30px !important;
    font-size: 1rem !important;
  }

  /* FV最小高さ */
  #fv {
    min-height: auto !important;
    padding: 25px 15px 40px !important;
  }

  /* ✨ご参加の流れ✨: 2列グリッド・コンパクト */
  .step-grid {
    gap: 10px !important;
  }

  .step-card {
    padding: 14px 8px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }

  .step-badge {
    font-size: 1.05rem !important;
    padding: 4px 12px !important;
    margin-bottom: 10px !important;
  }

  .step-text {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
  }

  .step-text-sm {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.02em !important;
  }

  .step-img-holder {
    max-height: 85px !important;
    border-radius: 5px !important;
  }

  .step-img-holder img {
    max-height: 85px !important;
  }
}

/* =======================================================
   FAQ / Q&A
======================================================= */
.faq-container {
  margin-top: 40px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid rgba(193, 154, 107, 0.2);
}

.faq-q {
  padding: 25px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-q:hover {
  background: #fdfaf6;
}

.faq-icon-q {
  color: var(--color-accent);
  font-family: 'Arial Black', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  margin-right: 15px;
}

.faq-question {
  flex: 1;
  font-weight: 700;
  font-size: 1.25rem;
  color: #444;
}

.faq-toggle {
  color: var(--color-gold);
  transition: transform 0.3s;
  font-size: 1.2rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-a {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fdfcf9;
}

.faq-item.active .faq-a {
  padding: 0 30px 25px 30px;
  max-height: 500px;
  border-top: 1px dashed rgba(193, 154, 107, 0.3);
  margin-top: 5px;
  padding-top: 25px;
}

.faq-a p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
}

@media screen and (max-width: 650px) {
  .faq-q {
    padding: 20px;
  }

  .faq-item.active .faq-a {
    padding: 0 20px 20px 20px;
  }

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-icon-q {
    font-size: 1.4rem;
    margin-right: 10px;
  }
}

/* =======================================================
   Floating CTA
======================================================= */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.floating-cta.show {
  opacity: 1;
  visibility: visible;
}

.cta-aoi-img {
  position: absolute;
  bottom: 100%;
  right: 50%;
  transform: translateX(50%);
  width: 160px;
  margin-bottom: -20px;
  z-index: -1;
  pointer-events: none;
  filter: drop-shadow(0 -4px 6px rgba(0, 0, 0, 0.15));
}

@media screen and (max-width: 768px) {
  .cta-aoi-img {
    width: 120px;
    margin-bottom: -15px;
  }
}

.cta-balloon {
  background: var(--color-white);
  color: var(--color-accent);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: center;
  animation: bounceCta 2s infinite;
  border: 2px solid var(--color-accent);
}

.cta-balloon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 35px;
  border-width: 10px 8px 0;
  border-style: solid;
  border-color: var(--color-accent) transparent transparent transparent;
}

.cta-balloon::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 36px;
  border-width: 9px 7px 0;
  border-style: solid;
  border-color: var(--color-white) transparent transparent transparent;
  z-index: 1;
}

.cta-btn-line {
  background: #06C755;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.3rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
  transition: transform 0.3s;
}

.cta-btn-line:hover {
  transform: scale(1.05);
  color: #fff;
}

@keyframes bounceCta {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* 最小化ボタン */
.cta-minimize-btn {
  position: absolute;
  top: -15px;
  right: -5px;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
  padding: 0;
  line-height: 1;
}

.cta-minimize-btn:hover {
  transform: scale(1.1);
  background: var(--color-accent);
  color: #fff;
}

/* 復元ボタン（最小化時に表示） */
.cta-restore-btn {
  display: none;
  background: #06C755;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s;
}

.cta-restore-btn i {
  font-size: 1.2rem;
}

.cta-restore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.5);
}

/* 最小化状態のスタイル */
.floating-cta.minimized {
  bottom: 20px;
  right: 20px;
}

.floating-cta.minimized .cta-inner,
.floating-cta.minimized .cta-minimize-btn {
  display: none;
}

.floating-cta.minimized .cta-restore-btn {
  display: flex;
}

@media screen and (max-width: 768px) {
  .floating-cta {
    bottom: 0;
    right: 0;
    width: 100%;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 10px;
    border-top: 1px solid #ebebeb;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
  }

  .cta-balloon {
    margin-bottom: 8px;
    font-size: 0.95rem;
    padding: 8px 15px;
  }

  .cta-btn-line {
    width: 95%;
    max-width: 400px;
    padding: 15px;
    font-size: 1.2rem;
  }

  .cta-balloon::after,
  .cta-balloon::before {
    right: 50%;
    transform: translateX(50%);
  }

  .floating-cta.minimized {
    bottom: 0 !important;
    right: 0 !important;
  }

  .floating-cta.minimized .cta-restore-btn {
    width: 100vw;
    border-radius: 0;
    justify-content: center;
    padding: 15px;
  }

  .cta-minimize-btn {
    top: 5px;
    right: 5px;
  }

  /* =======================================================
   EVENT CARD (Schedule Page)
   ======================================================= */
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

@media screen and (min-width: 1024px) {
  .event-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 55, 40, 0.05);
  border: 1px solid rgba(193, 154, 107, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 55, 40, 0.1);
}

.btn--pink {
  display: inline-block;
  background: linear-gradient(135deg, #FFB6C1 0%, #FFC0CB 100%);
  color: #704241;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(255, 182, 193, 0.3);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.btn--pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 182, 193, 0.4);
  opacity: 0.9;
}

.event-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 2px solid var(--color-gold-light);
}

.event-card-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.6;
  margin-top: 12px;
  border-top: 1px dotted rgba(193, 154, 107, 0.2);
  padding-top: 10px;
}

.event-card-content {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-card-tag {
  display: inline-block;
  background: var(--color-gold-light);
  color: var(--color-main);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.event-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--color-main);
  margin-bottom: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.event-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
  font-size: 0.88rem;
  color: #555;
}

.event-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.event-info-list li i {
  color: var(--color-gold);
  width: 16px;
  text-align: center;
  margin-top: 4px;
}

.event-card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  padding-top: 12px;
}

.btn--orange {
  display: inline-block;
  background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
  transition: all 0.3s;
  margin-top: 15px;
  border: none;
  cursor: pointer;
}

.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
  color: #fff;
  opacity: 0.9;
}


.event-cta-wrap {
  text-align: center;
  margin-top: 60px;
}







/* =======================================================
   MOBILE SPECIFIC FIXES (スマホ専用追加修正)
======================================================= */

/* ボタンをさらに小型化（スマホ専用） */
@media screen and (max-width: 768px) {

  /* ボタン全体: スマホでは小さめに1行に収める */
  .btn--gold {
    display: inline-block !important;
    padding: 8px 15px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    letter-spacing: 0 !important;
    border-radius: 50px !important;
    width: auto !important;
  }

  /* go_group ボタン（カフェ会に参加はコチラから）：幅いっぱいにならない */
  .go_box .btn--gold {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 11px 16px !important;
    font-size: 0.88rem !important;
  }

  /* jobs-footer-text: 1行に */
  .jobs-footer-text {
    white-space: nowrap !important;
    font-size: 1.1rem !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    letter-spacing: 0.02em !important;
  }

  /* price-catch: 1行に */
  .price-catch {
    white-space: nowrap !important;
    font-size: 1.1rem !important;
    overflow: hidden !important;
    letter-spacing: 0 !important;
  }

  /* OneCafeとは: スライダーとロゴを横並びに（画像は消さない） */
  .what-desc {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  /* タイムライン（カフェ会を始めたきっかけ）：横並び維持 */
  .timeline-content {
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 15px 12px !important;
  }

  .tl-img {
    width: 90px !important;
    height: 90px !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
  }

  .tl-text h3 {
    font-size: 1rem !important;
    margin-bottom: 5px !important;
  }

  .tl-text p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  /* こんな方におすすめ: overflow hidden 解除、画像崩れ防止 */
  #recommend {
    overflow: visible !important;
  }

  .recommend-irodori-wrapper {
    overflow: visible !important;
    align-items: flex-start !important;
  }
}

/* 480px: 交流会カードを2列に */
@media screen and (max-width: 480px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 20px !important;
  }

  .event-card-img {
    height: 90px !important;
  }

  .event-card-content {
    padding: 10px 8px !important;
  }

  .event-card-title {
    font-size: 0.82rem !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }

  .event-card-tag {
    font-size: 0.65rem !important;
    padding: 2px 6px !important;
    margin-bottom: 4px !important;
  }

  .event-info-list li {
    font-size: 0.72rem !important;
    line-height: 1.5 !important;
  }

  .event-card-desc {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    padding-top: 6px !important;
    margin-top: 6px !important;
  }

  .event-info-list {
    gap: 2px !important;
  }

  .event-kokuchi-btn {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
  }

  /* jobs-footer-text スマホ最適化 */
  .jobs-footer-text {
    font-size: 0.98rem !important;
  }

  .price-catch {
    font-size: 0.98rem !important;
  }
}

/* スマホで what-desc 複数行（改行をキープ）、ロゴとの横並び維持 */
@media screen and (max-width: 768px) {
  .sp-two-lines {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    text-align: left !important;
    flex: 1 !important;
    white-space: normal !important;
  }

  /* 「大阪・梅田を中心に年間1000名以上が集まる」<br>
  で2行になるようにする */
  .sp-two-lines br {
    display: block !important;
  }
}

/* recommend: スマホでの画像見切れを防止 */
@media screen and (max-width: 768px) {

  #recommend section,
  .recommend-irodori-wrapper {
    overflow: visible !important;
    contain: none !important;
  }

  section#recommend {
    overflow: visible !important;
    padding-bottom: 20px !important;
  }
}

/* =======================================================
  /* MORE MOBILE FIXES (追加のスマホ用修正) */
=======================================================*/ @media screen and (max-width: 768px) {

  /* 4つの強み: 2x2グリッドで敷き詰める */
  .feature-grid-irodori {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }

  .feature-col {
    margin-bottom: 0 !important;
  }

  .feature-col-title {
    font-size: 1.1rem !important;
  }

  .feature-circle-img {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 8px !important;
  }

  .feature-col-desc {
    font-size: 0.8rem !important;
    line-height: 1.4 !important;
  }

  /* 参加者の仕事タグ: さらに小さく敷き詰める */
  .job-tags-elegant {
    gap: 4px !important;
  }

  .job-tag-elegant {
    font-size: 0.72rem !important;
    padding: 3px 8px !important;
    margin: 0 !important;
  }

  /* 主催者情報（host.html）を確実に左テキスト・右画像にする */
  .story-flex {
    flex-direction: row-reverse !important;
    /* スマホで写真を右に */
    align-items: flex-start !important;
    text-align: left !important;
    gap: 15px !important;
  }

  .story-side-img {
    width: 90px !important;
    height: 90px !important;
    margin: 0 !important;
  }

  /* 大阪交流会ブログ: カードを2列にする */
  .blog-card-wrap {
    width: 48% !important;
    /* 2カラムにする */
    margin-bottom: 15px !important;
  }

  /* indexのブログリストも2列に */
  .blog-list,
  .blog-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: space-between !important;
  }

  .blog-card {
    width: 100% !important;
  }

  .blog-card img {
    height: 100px !important;
  }

  .blog-title {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
  }

  .blog-date {
    font-size: 0.75rem !important;
  }
}


/* =======================================================
  /* EVEN MORE MOBILE FIXES (第3弾のスマホ追加修正) */
=======================================================*/ @media screen and (max-width: 768px) {

  /* 4つの強みの画像を円から「角丸四角形（Square）」に変更し大きく見せる */
  .feature-circle-img {
    border-radius: 12px !important;
    width: 100% !important;
    /* グリッド内いっぱいを埋める */
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    max-width: 130px !important;
    /* 広がりすぎ防止 */
  }

  /* こんな方にオススメ: スマホでも横並び（画像とテキスト） */
  /* HTMLを変更せず、CSSだけでタイトルと画像を上に並べる */
  .recommend-irodori-wrapper {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "title images"
      "subtitle images"
      "list list" !important;
    gap: 0 15px !important;
    /* 横方向のみ15pxの隙間 */
    padding: 30px 15px !important;
    align-items: center !important;
  }

  .rec-content {
    display: contents !important;
    /* 要素の枠を消して中身をGrid直下として扱う */
  }

  .rec-title {
    grid-area: title;
    align-self: end;
    margin-bottom: 5px !important;
  }

  .rec-subtitle {
    grid-area: subtitle;
    align-self: start;
    margin-bottom: 15px !important;
  }

  .rec-images {
    grid-area: images;
    align-self: flex-start;
    width: 110px !important;
    /* ケーキが見切れないように少し縮め固定 */
    min-width: 110px !important;
    height: 120px !important;
    margin: 0 !important;
  }

  .rec-img-1 {
    width: 90px !important;
    height: 90px !important;
  }

  .rec-img-2 {
    width: 60px !important;
    height: 60px !important;
    right: 0 !important;
  }

  /* リスト箇条書きは画像の下に1列（全幅）で表示 */
  .coffee-list-rec {
    grid-area: list;
    margin-top: 5px !important;
  }
}