/*
Theme Name: 美松寿園
Theme URI: https://example.com/bisyoujuen-theme/
Author: Your Name
Author URI: https://example.com/
Description: 美松寿園の公式WordPressテーマ。伝統と革新が調和する庭づくりを提案します。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bisyoujuen
Tags: garden, landscaping, responsive
*/

/* ベース設定 */
:root {
  --primary: #1a1a1a;
  --primary-light: #333333;
  --secondary: #f9fafb;
  --accent: #06c755;
  --accent-hover: #05b54c;
  --text: #1a1a1a;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 0.5rem;
  --radius-full: 9999px;
  --container-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: #ffffff;
}

.rounded-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

.icon-arrow {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
}

.title-line {
  width: 5rem;
  height: 0.25rem;
  background-color: var(--primary);
  margin: 1rem auto;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

/* ヘッダー */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.logo-link {
  display: block;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  height: auto;
  max-height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-left: 0.25rem;
}

.contact-button {
  display: flex;
  align-items: center;
  background-color: var(--primary);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.contact-button:hover {
  background-color: #000000;
}

.contact-button .icon {
  margin-right: 0.25rem;
}

/* ヒーローセクション */
.hero-section {
  position: relative;
  height: 100vh;
}

.hero-image-container {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.1) 50%, rgba(26, 26, 26, 0.7));
}

.hero-catchcopy {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 5rem;
  margin-left: 1rem;
  max-width: 20rem;
}

.catchcopy-box {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.catchcopy-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.catchcopy-highlight {
  color: var(--primary);
  font-weight: 700;
}

.catchcopy-text {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.hero-benefits {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.benefits-container {
  max-width: 48rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-left: 0;
}

.benefits-content {
  display: flex;
  flex-direction: column;
}

.limited-tag {
  background-color: #16a34a;
  color: white;
  text-align: center;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-block;
  box-shadow: var(--shadow-md);
  width: max-content;
}

.benefits-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}

.benefits-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-number {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  box-shadow: var(--shadow-md);
}

.benefit-number span {
  font-weight: 700;
}

.benefit-item-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}

.benefit-item-desc {
  font-size: 0.875rem;
  color: white;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}

.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
  font-size: 1rem;
  font-weight: 500;
}

.line-button:hover {
  background-color: var(--accent-hover);
}

.line-button .icon {
  margin-right: 0.5rem;
}

.line-button .icon-arrow {
  margin-left: 0.5rem;
}

.line-button-hero {
  box-shadow: var(--shadow-lg);
  max-width: 24rem;
  width: 100%;
}

/* ライフステージセクション */
.lifestage-section {
  padding: 4rem 0;
  background-color: #f9fafb;
}

/* 悩みセクション */
.concerns-box {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.concerns-grid {
  display: grid;
  gap: 2rem;
}

.concerns-quotes {
  margin-bottom: 1rem;
}

.quote-list {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-item {
  display: flex;
  align-items: flex-start;
}

.quote-mark {
  color: var(--text-light);
  margin-right: 0.5rem;
}

.quote-text {
  font-style: italic;
  color: #4b5563;
}

.concerns-conclusion {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  margin-top: 1.5rem;
}

.concerns-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 問題の原因 */
.problems-section {
  margin-bottom: 4rem;
}

.problems-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

.problems-intro {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.problems-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.failure-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.failure-item {
  display: flex;
  align-items: flex-start;
}

.failure-mark {
  color: #ef4444;
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.problems-image {
  display: flex;
  justify-content: center;
}

.problems-conclusion {
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.problems-conclusion p {
  font-size: 1.125rem;
}

/* 解決策 */
.solution-section {
  margin-bottom: 4rem;
}

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

.solution-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.solution-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.solution-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.solution-text {
  margin-bottom: 1.5rem;
}

.solution-text-bold {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.examples-box {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
}

.examples-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-align: center;
}

.examples-grid {
  display: grid;
  gap: 1.5rem;
}

.example-card {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.example-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.example-number span {
  font-weight: 700;
}

.example-stage {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-align: center;
}

.example-desc {
  font-size: 0.875rem;
}

/* なぜ今行動すべきか */
.action-section {
  margin-bottom: 4rem;
}

.action-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.action-intro {
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-size: 1.125rem;
}

.action-text {
  margin-bottom: 1.5rem;
}

.action-image {
  display: flex;
  justify-content: center;
}

/* 施工事例セクション */
.projects-section {
  margin-bottom: 4rem;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.project-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.project-header {
  margin-bottom: 1rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.project-category {
  font-size: 0.875rem;
  color: var(--text-light);
}

.project-images {
  display: grid;
  gap: 1rem;
}

.project-image-container {
  display: flex;
  flex-direction: column;
}

.image-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.project-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
}

/* 後藤造園についてセクション */
.about-section {
  margin-bottom: 4rem;
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.about-philosophy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-item {
  margin-bottom: 2rem;
}

.philosophy-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.philosophy-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.philosophy-header .icon {
  margin-right: 0.75rem;
  color: var(--primary);
}

.philosophy-text {
  color: #4b5563;
  line-height: 1.6;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.services-section {
  margin-bottom: 2rem;
}

.services-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.services-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.services-header .icon {
  margin-right: 0.75rem;
  color: var(--primary);
}

.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #4b5563;
}

.service-item {
  display: flex;
  align-items: center;
}

.service-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  margin-right: 0.75rem;
}

.certifications-section {
  margin-top: 2rem;
}

.certifications-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.certifications-title {
  font-size: 1.25rem;
  font-weight: 500;
}

.certifications-header .icon {
  margin-right: 0.75rem;
  color: var(--primary);
}

.certifications-grid {
  display: grid;
  gap: 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
}

.certification-item {
  display: flex;
  align-items: flex-start;
}

.certification-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  margin-right: 0.75rem;
  margin-top: 0.375rem;
}

/* CTA セクション */
.cta-section {
  margin-bottom: 4rem;
}

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

.cta-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.plan-carousel-section {
  margin-bottom: 2.5rem;
}

.carousel-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.carousel-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.carousel-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.image-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  height: 100%;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image-wrapper {
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  position: relative;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: var(--radius-full);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  transition: background-color 0.3s;
}

.carousel-button:hover {
  background-color: white;
}

.prev-button {
  left: 0.5rem;
}

.next-button {
  right: 0.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--radius-full);
  background-color: #d1d5db;
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background-color: var(--primary);
}

@media (max-width: 768px) {
  .carousel-image-wrapper {
    padding-top: 75%; /* モバイルでは4:3のアスペクト比 */
  }
}

.benefits-section {
  margin-bottom: 3rem;
  text-align: center;
}

.benefits-container-cta {
  max-width: 36rem;
  margin: 0 auto;
}

.benefits-title-cta {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.benefits-list-cta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.benefit-item-cta {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.benefit-number-cta {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefit-number-cta span {
  font-weight: 700;
}

.benefit-title-cta {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.benefit-desc-cta {
  color: #4b5563;
}

.limited-notice {
  font-size: 0.875rem;
  color: #ef4444;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.line-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
  font-size: 1.125rem;
  font-weight: 500;
  width: 100%;
  max-width: 24rem;
}

.line-button-large:hover {
  background-color: var(--accent-hover);
}

.line-button-large .icon {
  margin-right: 0.5rem;
}

.line-button-large .icon-arrow {
  margin-left: 0.5rem;
}

.phone-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #d1d5db;
  color: black;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
  font-size: 1.125rem;
  font-weight: 500;
  width: 100%;
  max-width: 24rem;
}

.phone-button-large:hover {
  background-color: #f9fafb;
}

.phone-button-large .icon {
  margin-right: 0.5rem;
}

.phone-button-large .icon-arrow {
  margin-left: 0.5rem;
}

/* トップに戻るボタン */
.scroll-top-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
}

#scrollTopBtn {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-full);
  padding: 0.75rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: box-shadow 0.3s;
}

#scrollTopBtn:hover {
  box-shadow: var(--shadow-lg);
}

/* フッター */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 3rem 1rem;
}

.footer-container {
  max-width: 64rem;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-logo-image {
  height: auto;
  max-height: 3rem;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: invert(1);
}

.footer-company-info {
  margin-bottom: 0.75rem;
}

.footer-company-name {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.footer-company-address {
  font-size: 0.875rem;
  opacity: 0.9;
}

.footer-contact {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-line-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.footer-line-button:hover {
  background-color: var(--accent-hover);
}

.footer-line-button .icon {
  margin-right: 0.5rem;
}

.footer-phone-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.3s;
}

.footer-phone-button:hover {
  background-color: #f9fafb;
}

.footer-phone-button .icon {
  margin-right: 0.5rem;
}

.footer-copyright {
  text-align: center;
  font-size: 0.75rem;
  border-top: 1px solid #374151;
  padding-top: 1.5rem;
}

/* WordPress特有のスタイル */
.wp-block-image img {
  height: auto;
  max-width: 100%;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0.5em 1em 0.5em 0;
}

.alignright {
  float: right;
  margin: 0.5em 0 0.5em 1em;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* レスポンシブデザイン */
@media (min-width: 480px) {
  .logo-text {
    font-size: 0.875rem;
    margin-left: 0.5rem;
  }
}

@media (min-width: 640px) {
  .section-title {
    font-size: 1.875rem;
  }

  .hero-catchcopy {
    margin-top: 6rem;
    margin-left: 2rem;
  }

  .catchcopy-title {
    font-size: 1.5rem;
  }

  .catchcopy-text {
    font-size: 1.125rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-catchcopy {
    max-width: 24rem;
  }

  .benefits-container {
    margin-left: 2rem;
  }

  .concerns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .examples-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-mobile-1 {
    order: 0;
  }

  .order-mobile-2 {
    order: 0;
  }

  .cta-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .catchcopy-title {
    font-size: 1.75rem;
  }

  .catchcopy-text {
    font-size: 1.25rem;
  }

  .carousel-image {
    height: 28rem;
  }
}

@media (max-width: 639px) {
  .order-mobile-1 {
    order: 1;
  }

  .order-mobile-2 {
    order: 2;
  }
}
