@charset "UTF-8";
/* =============================
   通販事業部ページ ヒーロー背景グリッドアニメーション
   背景グリッドアニメーション（横幅・斜め・背景配置に対応）
   ============================= */
.mail-order-hero {
  --color-blue: #5ac1d8;
  --color-green: #578a61;
  --color-purple: #745da3;
  --color-orange: #e36c1c;
  --color-pink: #e2a39a;
  --color-yellow: #f3c443;
}
.mail-order-hero #hero-background-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 125%;
  display: grid;
  gap: clamp(2px, 0.6vw, 8px);
  z-index: 1;
  transform: translate(-50%, -50%) rotate(-2.5deg);
  transform-origin: center center;
  pointer-events: none;
  grid-template-columns: repeat(auto-fill, minmax(10vw, 1fr));
  grid-auto-rows: minmax(10vw, 1fr);
}
.mail-order-hero .hero-bg-item {
  font-size: 3.5vw;
  color: #262946;
  width: 12vw;
  height: 12vw;
  max-width: 200px;
  max-height: 200px;
  box-shadow: 0 6px 4px rgba(0, 0, 0, 0.3), inset 0px 2px 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-radius 250ms ease-in-out;
  background: transparent;
  perspective: 800px;
}
.mail-order-hero .hero-bg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: rotateY(0deg);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mail-order-hero .hero-bg-item.flip-out img {
  transform: rotateY(90deg);
  opacity: 0.2;
}
.mail-order-hero .hero-bg-item.flip-in img {
  transform: rotateY(0deg);
  opacity: 1;
}
.mail-order-hero .hero-bg-item span {
  font-size: 1.5rem;
  font-weight: 600;
}
.mail-order-hero .hero-color-yellow {
  color: var(--color-yellow);
}
.mail-order-hero .hero-bgcolor-blue {
  background-color: var(--color-blue);
}
.mail-order-hero .hero-bgcolor-green {
  background-color: var(--color-green);
}
.mail-order-hero .hero-bgcolor-purple {
  background-color: var(--color-purple);
}
.mail-order-hero .hero-bgcolor-orange {
  background-color: var(--color-orange);
}
.mail-order-hero .hero-bgcolor-pink {
  background-color: var(--color-pink);
}
.mail-order-hero .hero-bgcolor-yellow {
  background-color: var(--color-yellow);
}
.mail-order-hero .hero-rotate360 {
  animation: heroRotate360 4s infinite linear;
}
.mail-order-hero .hero-heathbeath {
  animation: heroBeat 1s infinite ease-in-out;
  animation-direction: alternate;
}
@keyframes heroRotate360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes heroBeat {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 1200px) {
  .mail-order-hero .hero-bg-item {
    width: 15vw;
    height: 15vw;
  }
  .mail-order-hero .hero-bg-item span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .mail-order-hero .hero-bg-item {
    width: 20vw;
    height: 20vw;
  }
  .mail-order-hero .hero-bg-item span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .mail-order-hero .hero-bg-item {
    width: 25vw;
    height: 25vw;
    max-width: 120px;
    max-height: 120px;
  }
  .mail-order-hero .hero-bg-item span {
    font-size: 0.875rem;
  }
}
.mail-order-hero .hero-bg-item {
  overflow: hidden;
  transition: border-radius 250ms ease-in-out;
}
.mail-order-hero .oneside-0 {
  border-top-left-radius: 50%;
}
.mail-order-hero .oneside-1 {
  border-top-right-radius: 50%;
}
.mail-order-hero .oneside-2 {
  border-bottom-right-radius: 50%;
}
.mail-order-hero .oneside-3 {
  border-bottom-left-radius: 50%;
}

/* =============================
   通販事業部ページ固有スタイル
   ============================= */
/* コンテナ幅（既存ページと統一） */
.container {
  max-width: min(1500px, 100vw - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* セクション共通スタイル */
.section {
  padding: clamp(100px, 12vw, 150px) 0;
}
@media (max-width: 480px) {
  .section {
    padding: clamp(60px, 15vw, 100px) 0;
  }
}

/* =============================
   ヒーローセクション
   ============================= */
.mail-order-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  color: #262946;
  padding: clamp(100px, 12vw, 150px) 0;
  overflow: hidden;
}
.mail-order-hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 62px;
  background: #1e3a8a;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.mail-order-hero .hero-container {
  width: 100%;
  max-width: min(1500px, 100vw - 2rem);
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 3;
}
.mail-order-hero .hero-content {
  text-align: center;
  color: #262946;
  position: relative;
  z-index: 3;
  transform: rotate(-2.5deg);
  pointer-events: none;
}
.mail-order-hero .hero-section-title {
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #262946;
  position: relative;
  z-index: 4;
  text-shadow: 2px 2px 0 rgb(255, 255, 255);
  display: inline-block;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .mail-order-hero .hero-section-title {
    font-size: clamp(32px, 5.5vw, 56px);
    margin-bottom: 0.875rem;
  }
}
@media (max-width: 480px) {
  .mail-order-hero .hero-section-title {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 0.75rem;
  }
}
.mail-order-hero .hero-subtitle {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #262946;
  position: relative;
  z-index: 4;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: none !important;
  text-shadow: 2px 2px 0 rgb(255, 255, 255);
  display: inline-block;
  max-width: 90%;
}
.mail-order-hero .hero-subtitle.animate {
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 480px) {
  .mail-order-hero .hero-subtitle {
    font-size: clamp(16px, 3.5vw, 20px);
    margin-bottom: 1.5rem;
    max-width: 95%;
  }
}

/* =============================
   コアバリューセクション
   ============================= */
.core-value {
  position: relative;
  background: #1e3a8a;
  color: #fff;
  padding: clamp(100px, 12vw, 150px) 0;
  overflow: hidden;
}
.core-value::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 62px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
  border: none;
  outline: none;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.core-value .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.core-value .section-title {
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}
@media (max-width: 480px) {
  .core-value .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}
.core-value .container {
  position: relative;
  z-index: 2;
}
.core-value .strengths-grid {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: 3rem;
}
.core-value .strength-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 280px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.core-value .strength-item .strength-icon-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  .core-value .strength-item .strength-icon-circle {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 768px) {
  .core-value .strength-item .strength-icon-circle {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .core-value .strength-item .strength-icon-circle {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
  }
}
@media (hover: hover) {
  .core-value .strength-item .strength-icon-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
}
.core-value .strength-item .strength-icon-circle .strength-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .core-value .strength-item .strength-icon-circle .strength-icon {
    width: 175px;
    height: 175px;
  }
}
@media (max-width: 768px) {
  .core-value .strength-item .strength-icon-circle .strength-icon {
    width: 145px;
    height: 145px;
  }
}
@media (max-width: 480px) {
  .core-value .strength-item .strength-icon-circle .strength-icon {
    width: 115px;
    height: 115px;
  }
}
.core-value .strength-item .strength-title {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}
.core-value .strength-item p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 18px);
}

/* =============================
   購入ガイドラインセクション
   ============================= */
.purchase-guide {
  background: #ffffff;
  color: #262946;
  padding: clamp(100px, 12vw, 150px) 0;
}
.purchase-guide .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.purchase-guide .section-title {
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: #262946;
}
@media (max-width: 480px) {
  .purchase-guide .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}
.purchase-guide .steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding: 2rem 200px;
  overflow: visible;
  margin: 0 auto 2rem;
  max-width: 100%;
  width: 100%;
  left: calc(50% + 82px);
  transform: translateX(-50%);
}
.purchase-guide .step-card {
  position: relative;
  width: 300px;
  min-width: 200px;
  height: 450px;
  padding: 2rem;
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  margin-left: -80px;
}
.purchase-guide .step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 0;
  z-index: 0;
  pointer-events: none;
}
.purchase-guide .step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  bottom: 0;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.04) 60%, rgba(0, 0, 0, 0.06) 80%, rgba(0, 0, 0, 0.08) 100%);
  z-index: -1;
  pointer-events: none;
}
.purchase-guide .step-card .step-number {
  position: absolute;
  left: -136px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-size: 360px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  white-space: nowrap;
}
.purchase-guide .step-card .step-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}
.purchase-guide .step-card .step-icon-circle {
  position: relative;
  width: 120px;
  height: 120px;
  min-width: 120px;
  min-height: 120px;
  border-radius: 50%;
  border: 3px solid;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  flex-shrink: 0;
}
.purchase-guide .step-card .step-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.purchase-guide .step-card .step-title {
  position: relative;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #262946;
}
.purchase-guide .step-card p {
  position: relative;
  line-height: 1.8;
  color: #262946;
  font-size: clamp(16px, 2vw, 18px);
}
.purchase-guide .step-card.step-01 {
  z-index: 1;
  left: -330px;
  margin-left: 0;
}
.purchase-guide .step-card.step-01 .step-number {
  color: #34B9CC;
}
.purchase-guide .step-card.step-01 .step-icon-circle {
  border-color: #34B9CC;
}
.purchase-guide .step-card.step-01 .step-title {
  color: #34B9CC;
}
.purchase-guide .step-card.step-02 {
  z-index: 2;
  left: -110px;
  margin-left: -80px;
}
.purchase-guide .step-card.step-02 .step-number {
  color: #1498D6;
}
.purchase-guide .step-card.step-02 .step-icon-circle {
  border-color: #1498D6;
}
.purchase-guide .step-card.step-02 .step-title {
  color: #1498D6;
}
.purchase-guide .step-card.step-03 {
  z-index: 3;
  left: 110px;
  margin-left: -80px;
}
.purchase-guide .step-card.step-03 .step-number {
  color: #037DD3;
}
.purchase-guide .step-card.step-03 .step-icon-circle {
  border-color: #037DD3;
}
.purchase-guide .step-card.step-03 .step-title {
  color: #037DD3;
}
.purchase-guide .step-card.step-04 {
  z-index: 4;
  left: 330px;
  margin-left: -80px;
}
.purchase-guide .step-card.step-04 .step-number {
  color: #6A48B6;
}
.purchase-guide .step-card.step-04 .step-icon-circle {
  border-color: #6A48B6;
}
.purchase-guide .step-card.step-04 .step-title {
  color: #6A48B6;
}
@media (max-width: 1024px) {
  .purchase-guide .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
    left: 0;
    transform: none;
  }
  .purchase-guide .step-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 200px;
    margin-left: 0;
    left: 0 !important;
    padding: 0;
    gap: 1rem;
    position: relative;
  }
  .purchase-guide .step-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 100px);
    height: 100%;
    background: #ffffff;
    z-index: 0;
    pointer-events: none;
  }
  .purchase-guide .step-card::after {
    display: none;
  }
  .purchase-guide .step-card .step-number {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    font-size: clamp(48px, 12vw, 72px);
    width: 80px;
    flex-shrink: 0;
    text-align: center;
    z-index: 1;
  }
  .purchase-guide .step-card .step-content {
    flex: 1;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .purchase-guide .step-card .step-icon-circle {
    margin: 0 auto 1rem;
    width: clamp(80px, 20vw, 120px);
    height: clamp(80px, 20vw, 120px);
    min-width: clamp(80px, 20vw, 120px);
    min-height: clamp(80px, 20vw, 120px);
  }
  .purchase-guide .step-card .step-icon {
    width: clamp(40px, 10vw, 60px);
    height: clamp(40px, 10vw, 60px);
  }
  .purchase-guide .step-card .step-title {
    font-size: clamp(18px, 4vw, 22px);
    margin-bottom: 0.75rem;
  }
  .purchase-guide .step-card p {
    font-size: clamp(14px, 3vw, 16px);
  }
  .purchase-guide .step-card.step-01, .purchase-guide .step-card.step-02, .purchase-guide .step-card.step-03, .purchase-guide .step-card.step-04 {
    left: 0 !important;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .purchase-guide .purchase-guide {
    padding: clamp(60px, 15vw, 100px) 0;
  }
  .purchase-guide .steps-container {
    padding: 1.5rem 0.75rem;
    gap: 1.5rem;
  }
  .purchase-guide .step-card {
    max-width: 100%;
  }
  .purchase-guide .step-card::before {
    width: calc(100% - 80px);
  }
  .purchase-guide .step-card .step-number {
    width: 60px;
    font-size: clamp(40px, 10vw, 56px);
  }
  .purchase-guide .step-card .step-content {
    padding: 1.25rem 1rem;
  }
  .purchase-guide .step-card .step-icon-circle {
    width: clamp(70px, 18vw, 100px);
    height: clamp(70px, 18vw, 100px);
    min-width: clamp(70px, 18vw, 100px);
    min-height: clamp(70px, 18vw, 100px);
    margin-bottom: 0.75rem;
    border-width: 2px;
  }
  .purchase-guide .step-card .step-icon {
    width: clamp(35px, 9vw, 50px);
    height: clamp(35px, 9vw, 50px);
  }
  .purchase-guide .step-card .step-title {
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 0.5rem;
  }
  .purchase-guide .step-card p {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.6;
  }
  .purchase-guide .guide-notes {
    margin-top: 1.5rem;
  }
  .purchase-guide .guide-notes p {
    font-size: clamp(13px, 3vw, 15px);
  }
}
.purchase-guide .guide-notes {
  text-align: center;
  margin-top: 2rem;
}
.purchase-guide .guide-notes p {
  margin: 0.5rem 0;
  color: #262946;
  font-size: clamp(14px, 1.8vw, 16px);
}

/* =============================
   セレクションセクション
   ============================= */
.selection {
  position: relative;
  background: #e0f2fe;
  color: #262946;
  padding: clamp(100px, 12vw, 150px) 0;
}
.selection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1;
}
.selection::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}
.selection .container {
  position: relative;
  z-index: 2;
}
.selection .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.selection .section-title {
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: #262946;
}
.selection .selection-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .selection .selection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .selection .selection-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.selection .category-block {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media (max-width: 480px) {
  .selection .category-block {
    padding: 20px 0 30px;
    margin-bottom: 20px;
  }
}
.selection .category-block .category-picture {
  display: inline-block;
  height: 130px;
  width: 130px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}
@media (max-width: 480px) {
  .selection .category-block .category-picture {
    height: 100px;
    width: 100px;
    margin-bottom: 15px;
  }
}
.selection .category-block .category-picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: #037DD3;
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}
.selection .category-block .category-picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #037DD3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s ease 0s;
}
.selection .category-block .category-picture .category-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transform: scale(1);
  transition: all 0.5s ease 0s;
  position: relative;
  z-index: 1;
}
.selection .category-block:hover .category-picture::before {
  height: 100%;
}
.selection .category-block:hover .category-picture::after {
  transform: scale(0);
  opacity: 0;
}
.selection .category-block:hover .category-picture .category-image {
  transform: scale(1.2);
}
.selection .category-block .category-content {
  padding: 0 1.5rem;
  margin-bottom: 0;
  transition: transform 0.5s ease 0s;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .selection .category-block .category-content {
    padding: 0 1rem;
  }
}
.selection .category-block:hover .category-content {
  transform: translateY(-10px);
}
.selection .category-block .category-name {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  color: #262946;
  margin: 0;
  display: block;
  position: relative;
  z-index: 2;
}
.selection .category-block .category-links {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #037DD3;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1;
}
.selection .category-block:hover .category-links {
  bottom: 0;
}
.selection .category-block .category-link {
  display: block;
  padding: 10px;
  font-size: clamp(14px, 1.8vw, 17px);
  color: white;
  text-decoration: none;
  text-align: center;
}
.selection .selection-note {
  text-align: center;
  margin-top: 2rem;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #6b7280;
}

/* =============================
   CTAセクション
   ============================= */
.cta-section {
  background: #ffffff;
  color: #262946;
  padding: clamp(100px, 12vw, 150px) 0;
}
.cta-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.cta-section .section-title {
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  line-height: 1.3;
  color: #262946;
  text-align: center;
}
@media (max-width: 480px) {
  .cta-section .section-title {
    font-size: clamp(24px, 6vw, 32px);
  }
}
.cta-section .cta-button-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}
.cta-section .cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #009946;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
@media (max-width: 480px) {
  .cta-section .cta-button {
    padding: 0.875rem 2rem;
    font-size: clamp(16px, 2.2vw, 20px);
  }
}
@media (hover: hover) {
  .cta-section .cta-button:hover {
    background: rgb(0, 102, 46.6666666667);
    transform: translateY(-2px);
  }
}
.cta-section .cta-note {
  text-align: center;
  font-size: clamp(14px, 1.8vw, 16px);
  color: #6b7280;
}

/* =============================
   お問い合わせセクション
   ============================= */
.contact {
  min-height: 200px;
}

/*# sourceMappingURL=mail_order_div.css.map */
