/* =========================
   Base & Typography
   ========================= */
.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 80px;
  line-height: 1.8;
  color: #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media (max-width: 720px) {
  .content {
    padding: 0 16px 60px;
  }
}

.muted {
  color: #666666;
  font-size: 0.9rem;
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(224, 62, 82, 0.15);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: linear-gradient(135deg, #e03e52 0%, rgb(231.0580357143, 105.9419642857, 121.3883928571) 100%);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  color: #fff;
  opacity: 0.95;
}
.btn-secondary {
  background: #fff;
  color: #e03e52;
  border: 2px solid #e03e52;
}
.btn-secondary:hover {
  background: #e03e52;
  color: #fff;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  box-shadow: none;
}
.btn-sm:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

/* =========================
   Hero Section
   ========================= */
.hero {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: #fffafa;
  border-radius: 50%;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__eyebrow {
  color: #e03e52;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  margin: 0;
}
.hero__title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  color: #2c3e50;
}
.hero__figure {
  margin: 10px 0 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}
.hero__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hero__image:hover {
  transform: scale(1.02);
}
.hero__lead {
  font-size: 1.05rem;
  color: #666666;
  margin: 0;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.hero__badges {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__badges li {
  background: #fffafa;
  color: #2c3e50;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgb(255, 224.5, 224.5);
}
@media (max-width: 720px) {
  .hero {
    padding: 24px 20px;
    border-radius: 18px;
    margin-bottom: 40px;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  .hero__cta .btn {
    width: 100%;
  }
}

/* =========================
   Feature Grid (Facilities)
   ========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-item {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(224, 62, 82, 0.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(224, 62, 82, 0.3);
}
.feature-item__icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}
.feature-item__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
}
.feature-item__desc {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================
   Media Card (Variety)
   ========================= */
.media-card {
  display: flex;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 720px) {
  .media-card {
    flex-direction: column;
  }
}
.media-card__image {
  flex: 0 0 40%;
  position: relative;
  min-height: 250px;
}
.media-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.media-card__image:hover img {
  transform: scale(1.05);
}
.media-card__content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) {
  .media-card__content {
    padding: 24px;
  }
}
.media-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e03e52;
  margin-bottom: 16px;
}
.media-card p {
  margin-bottom: 16px;
}
.media-card p:last-child {
  margin-bottom: 0;
}

/* =========================
   Map Container
   ========================= */
.map-container {
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================
   Sections
   ========================= */
.section {
  margin-bottom: 80px;
}
.section__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2c3e50;
  position: relative;
  padding-left: 20px;
}
.section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 28px;
  background: #e03e52;
  border-radius: 4px;
}
.section__figure {
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}
.section__image {
  width: 100%;
  height: auto;
  display: block;
}
.section__body p {
  margin-bottom: 1.5em;
  font-size: 1.05rem;
}
@media (max-width: 720px) {
  .section {
    margin-bottom: 40px;
  }
  .section__title {
    font-size: 1.4rem;
  }
}

/* =========================
   Note / Box
   ========================= */
.note {
  background: #fffafa;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgb(255, 224.5, 224.5);
  margin-top: 24px;
}
.note__title {
  font-weight: 700;
  color: #e03e52;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.note__title::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0eb";
  font-weight: 900;
}
.note ul {
  padding-left: 20px;
  margin: 0;
}
.note ul li {
  margin-bottom: 8px;
}
.note ul li::marker {
  color: #e03e52;
}

/* =========================
   Table
   ========================= */
.table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  background: #fff;
  margin: 30px 0;
}
@media (max-width: 720px) {
  .table-wrap {
    overflow-x: visible;
    background: transparent;
    box-shadow: none;
    margin: 20px 0;
  }
}
.table-wrap .table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
@media (max-width: 720px) {
  .table-wrap .table {
    min-width: auto;
    display: block;
  }
}
@media (max-width: 720px) {
  .table-wrap .table thead {
    display: none;
  }
}
@media (max-width: 720px) {
  .table-wrap .table tbody {
    display: block;
  }
}
@media (max-width: 720px) {
  .table-wrap .table tr {
    display: flex;
    flex-direction: column;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
}
.table-wrap .table th, .table-wrap .table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgb(236.2903225806, 240.5, 244.7096774194);
  text-align: left;
}
@media (max-width: 720px) {
  .table-wrap .table th, .table-wrap .table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 14px 20px;
  }
}
.table-wrap .table th {
  background: #fffafa;
  font-weight: 700;
  color: #2c3e50;
  width: 35%;
}
.table-wrap .table td {
  font-weight: 500;
}
@media (max-width: 720px) {
  .table-wrap .table td:first-child {
    background: #fffafa;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}
.table-wrap .table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 720px) {
  .table-wrap .table tbody tr:last-child td:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* =========================
   Cards Grid
   ========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.cards .card {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}
.cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(224, 62, 82, 0.15);
}
.cards .card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e03e52;
}
.cards .card__text {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   CTA Box
   ========================= */
.cta-box {
  background: linear-gradient(135deg, #2c3e50 0%, rgb(62.0967741935, 87.5, 112.9032258065) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.cta-box__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.cta-box .btn {
  background: #fff;
  color: #2c3e50;
  border: none;
}
.cta-box .btn:hover {
  background: #fffafa;
}
@media (max-width: 720px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}

/* =========================
   FAQ
   ========================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s;
}
.faq__item[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.faq__item[open] .faq__q::after {
  transform: rotate(180deg);
}
.faq__q {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  color: #2c3e50;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::after {
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  font-weight: 900;
  color: #e03e52;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}
.faq__a {
  padding: 0 24px 24px;
  color: #666666;
  line-height: 1.7;
  border-top: 1px solid white;
  margin-top: -1px;
  padding-top: 16px;
}
.faq__more {
  text-align: right;
  margin-top: 10px;
}
.faq__more a {
  color: #e03e52;
  font-weight: 600;
  text-decoration: none;
}
.faq__more a:hover {
  text-decoration: underline;
}

/* =========================
   Media List
   ========================= */
.media-list {
  background: #fffafa;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgb(255, 224.5, 224.5);
  margin-top: 30px;
}
.media-list__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 24px;
  text-align: center;
}
.media-list__content {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 720px) {
  .media-list__content {
    flex-direction: column;
    gap: 20px;
  }
}
.media-list__image {
  flex: 0 0 35%;
}
.media-list__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  border: 3px solid #fff;
}
@media (max-width: 720px) {
  .media-list__image {
    width: 100%;
    flex: none;
  }
}
.media-list__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.media-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.media-list__item:last-of-type {
  border-bottom: none;
}
@media (max-width: 720px) {
  .media-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.media-list .media-name {
  font-weight: 700;
  color: #333333;
}
.media-list__more {
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 720px) {
  .media-list__more {
    text-align: center;
  }
}

/* =========================
   Flow Steps
   ========================= */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 720px) {
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.flow-step {
  text-align: center;
  position: relative;
}
.flow-step__num {
  background: #e03e52;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}
.flow-step__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  border: 3px solid #fff;
}
.flow-step__title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.flow-step__text {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.5;
}
.flow-step:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 40%;
  right: -15px;
  color: rgba(0, 0, 0, 0.12);
  font-size: 1.2rem;
}
@media (max-width: 720px) {
  .flow-step:not(:last-child)::after {
    content: "\f078";
    top: auto;
    bottom: -30px;
    right: 50%;
    transform: translateX(50%);
  }
}

/* =========================
   Review Card (New)
   ========================= */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}
.review-card__stars {
  color: #f1c40f;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.review-card__text {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-card__author {
  font-size: 0.85rem;
  color: #666666;
  text-align: right;
  font-weight: 600;
}
.review-card__author::before {
  content: "- ";
}

/* =========================
   Sightseeing Card (New)
   ========================= */
.sightseeing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.sightseeing-card {
  background: #fffafa;
  padding: 24px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid rgb(255, 224.5, 224.5);
}
.sightseeing-card__icon {
  font-size: 2.5rem;
  color: #e03e52;
  margin-bottom: 16px;
  opacity: 0.8;
}
.sightseeing-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}
.sightseeing-card__desc {
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================
   Access Info (New)
   ========================= */
.access-info {
  display: flex;
  gap: 30px;
  margin-bottom: 24px;
  align-items: flex-start;
}
@media (max-width: 720px) {
  .access-info {
    flex-direction: column;
    gap: 20px;
  }
}
.access-info__address, .access-info__hours {
  flex: 1;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  border-left: 5px solid #e03e52;
}
.access-info__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #666666;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.access-info__time {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 4px;
}
.access-info__time .day {
  background: #2c3e50;
  color: #fff;
  font-size: 0.9rem;
  padding: 4px 10px;
  border-radius: 4px;
}
@media (max-width: 720px) {
  .access-info__time {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.access-info .note {
  font-size: 0.8rem;
  color: #666666;
  margin-top: 8px;
}

/*# sourceMappingURL=strawberry-picking-tokyo.css.map */
