@charset "UTF-8";
/* ========================================================
   STAMPIA - LINEスタンプ作成代行サイト
   モバイルファースト / BEM設計

   このファイルはmain.css（テーマ本体のスタイルシート）の
   ビルドエントリーポイントです。直接編集せず、SCSS側を編集して
   `npm run build:css` を実行してください（style.cssはWPテーマ
   ヘッダー専用の静的ファイルで、ここには含みません）。
   ======================================================== */
:root {
  --color_primary: #4C9F4F;
  --color_primary_dark: #3D8340;
  --color_pink: #EC5C82;
  --color_pink_dark: #D43E68;
  --color_blue: #4A90D2;
  --color_orange: #F0A23C;
  --color_line: #06C755;
  --color_bg: #FFFBF5;
  --color_bg_soft: #FDF3E7;
  --color_text: #4A3B33;
  --color_text_light: #8A7A70;
  --color_white: #FFFFFF;
  --font_heading: "Zen Maru Gothic", sans-serif;
  --font_body: "M PLUS Rounded 1c", sans-serif;
  --radius_lg: 28px;
  --radius_md: 20px;
  --radius_sm: 12px;
  --shadow_soft: 0 8px 24px rgba(76, 159, 79, 0.18);
  --shadow_card: 0 6px 16px rgba(74, 59, 51, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font_body);
  color: var(--color_text);
  background: var(--color_bg);
  line-height: 1.8;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

h1,
h2,
h3 {
  font-family: var(--font_heading);
}

.main {
  overflow-x: hidden;
}

body.menu_open {
  overflow: hidden;
}

.visually_hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section_label {
  display: block;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color_primary);
  margin-bottom: 8px;
}
.section_label--blue {
  color: var(--color_blue);
}
.section_label--light {
  color: rgba(255, 255, 255, 0.65);
}

.section_title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color_text);
}
.section_title--light {
  color: var(--color_white);
}
@media (min-width: 768px) {
  .section_title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  .service,
  .pricing,
  .options,
  .steps,
  .achievements,
  .partners,
  .contact,
  .blog_archive {
    padding: 88px 32px;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--color_bg_soft);
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 14px 32px;
  }
}
.header__logo_img {
  height: 34px;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo_img {
    height: 40px;
  }
}
.header__menu_toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: transparent;
  border-radius: 8px;
}
.header__menu_toggle.is_active .header__menu_bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__menu_toggle.is_active .header__menu_bar:nth-child(2) {
  opacity: 0;
}
.header__menu_toggle.is_active .header__menu_bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 768px) {
  .header__menu_toggle {
    display: none;
  }
}
.header__menu_bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--color_text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  background: var(--color_white);
  border-bottom: 2px solid var(--color_bg_soft);
  box-shadow: var(--shadow_card);
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}
.header__nav.is_open {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
  padding: 8px 20px 16px;
}
@media (min-width: 768px) {
  .header__nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    max-height: none;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
  }
}
.header__nav_link {
  padding: 12px 0;
  border-bottom: 1px solid var(--color_bg_soft);
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color_text);
}
.header__nav_link:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .header__nav_link {
    padding: 0;
    border-bottom: none;
    font-size: 13px;
  }
  .header__nav_link:hover {
    color: var(--color_primary);
  }
}
.header__cta {
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--color_white);
  background: var(--color_primary);
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow_soft);
  white-space: nowrap;
}

.footer {
  padding: 32px 16px;
  text-align: center;
  background: #2E2620;
  color: #B8ACA3;
}
.footer__logo_img {
  height: 48px;
  width: auto;
  margin: 0 auto 16px;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 16px;
  font-size: 12px;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer__sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--color_white);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.footer__sns_link:hover {
  background: #E3D2B4;
  border-color: #E3D2B4;
  color: #2E2620;
  transform: translateY(-2px);
}
.footer__sns_icon {
  width: 15px;
  height: 15px;
}
.footer__copy {
  font-size: 11px;
}

.hero {
  position: relative;
  text-align: center;
  background: var(--color_bg);
}
.hero__picture, .hero__image {
  width: 100%;
  display: block;
}
.hero__cta_wrap {
  padding: 24px 16px 40px;
  background: var(--color_bg);
}
@media (min-width: 768px) {
  .hero__cta_wrap {
    padding: 32px 16px 56px;
  }
}
.hero__button {
  display: inline-block;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color_white);
  background: var(--color_pink);
  padding: 16px 36px;
  border-radius: var(--radius_md);
  box-shadow: 0 8px 24px rgba(236, 92, 130, 0.3);
}
@media (min-width: 768px) {
  .hero__button {
    font-size: 18px;
    padding: 18px 44px;
  }
}

.service {
  padding: 56px 16px;
  text-align: center;
}
.service__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.service__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto 36px;
}
@media (min-width: 768px) {
  .service__intro {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}
.service__intro_image {
  width: 140px;
  border-radius: var(--radius_md);
  box-shadow: var(--shadow_card);
}
@media (min-width: 768px) {
  .service__intro_image {
    width: 180px;
    flex-shrink: 0;
  }
}
.service__lead {
  font-size: 14px;
  color: var(--color_text_light);
  text-align: left;
}
.service__lead strong {
  color: var(--color_primary_dark);
}
.service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .service__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .service__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.service__item {
  background: var(--color_white);
  border-radius: var(--radius_md);
  padding: 28px 20px;
  box-shadow: var(--shadow_card);
  text-align: center;
}
.service__icon {
  font-size: 34px;
  width: 64px;
  height: 64px;
  line-height: 64px;
  margin: 0 auto 16px;
  background: var(--color_bg_soft);
  border-radius: 50%;
}
.service__item_title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.service__item_text {
  font-size: 13px;
  color: var(--color_text_light);
  text-align: left;
}
@media (min-width: 1024px) {
  .service__item_text {
    text-align: center;
  }
}

.pricing {
  padding: 56px 16px;
  text-align: center;
  background: var(--color_bg_soft);
}
.pricing__inner {
  max-width: 640px;
  margin: 0 auto;
}
.pricing__note {
  font-size: 12px;
  color: var(--color_text_light);
  margin-bottom: 28px;
}
.pricing__table {
  background: var(--color_white);
  border-radius: var(--radius_lg);
  overflow: hidden;
  box-shadow: var(--shadow_card);
  margin-bottom: 28px;
}
.pricing__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.pricing__row:not(:last-child) {
  border-bottom: 1px dashed var(--color_bg_soft);
}
.pricing__row--head {
  background: var(--color_pink);
}
.pricing__cell {
  padding: 16px 12px;
  font-weight: 700;
}
.pricing__cell--head {
  color: var(--color_white);
  font-family: var(--font_heading);
  font-size: 14px;
}
.pricing__cell--price {
  color: var(--color_pink_dark);
  font-family: var(--font_heading);
  font-size: 18px;
}
.pricing__button {
  display: inline-block;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color_white);
  background: var(--color_primary);
  padding: 15px 32px;
  border-radius: var(--radius_sm);
  box-shadow: var(--shadow_soft);
}

.options {
  padding: 56px 16px;
  text-align: center;
}
.options__inner {
  max-width: 640px;
  margin: 0 auto;
}
.options__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .options__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.options__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color_white);
  border: 2px solid #E3EEF9;
  border-radius: var(--radius_sm);
  padding: 16px 20px;
  box-shadow: var(--shadow_card);
}
@media (min-width: 768px) {
  .options__item {
    flex-direction: column;
    text-align: center;
    padding: 24px 16px;
  }
}
.options__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  background: var(--color_blue);
  color: var(--color_white);
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 13px;
}
.options__name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}
.options__price {
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color_blue);
  white-space: nowrap;
}
.options__price_unit {
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 11px;
}

.steps {
  padding: 56px 16px;
  text-align: center;
  background: var(--color_bg_soft);
}
.steps__inner {
  max-width: 720px;
  margin: 0 auto;
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin-top: 24px;
}
.steps__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color_white);
  border-radius: var(--radius_md);
  padding: 18px 20px;
  box-shadow: var(--shadow_card);
}
.steps__item--2 .steps__number {
  color: var(--color_orange);
}
.steps__item--2 .steps__badge {
  background: var(--color_orange);
}
.steps__item--3 .steps__number {
  color: var(--color_blue);
}
.steps__item--3 .steps__badge {
  background: var(--color_blue);
}
.steps__item--4 .steps__number {
  color: var(--color_pink);
}
.steps__item--4 .steps__badge {
  background: var(--color_pink);
}
.steps__number {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 44px;
  font-family: var(--font_heading);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--color_primary);
}
.steps__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color_primary);
  color: var(--color_white);
  font-size: 16px;
  font-weight: 900;
}
.steps__text {
  font-size: 13px;
  color: var(--color_text);
}

.notice {
  margin-top: 32px;
  text-align: left;
  background: var(--color_white);
  border: 2px dashed #E3D6C6;
  border-radius: var(--radius_md);
  padding: 20px;
}
.notice__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color_text);
  margin-bottom: 12px;
}
.notice__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notice__item {
  font-size: 11px;
  line-height: 1.9;
  color: var(--color_text_light);
  padding-left: 14px;
  position: relative;
}
.notice__item::before {
  content: "※";
  position: absolute;
  left: 0;
}

.achievements {
  padding: 56px 16px;
  text-align: center;
}
.achievements__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.achievements__lead {
  font-size: 13px;
  color: var(--color_text_light);
  margin-bottom: 28px;
}
.achievements__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .achievements__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.achievements__link {
  display: block;
  background: var(--color_white);
  border-radius: var(--radius_md);
  overflow: hidden;
  box-shadow: var(--shadow_card);
  text-align: left;
}
.achievements__thumb {
  aspect-ratio: 1/1;
  background: var(--color_bg_soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.achievements__thumb_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.achievements__thumb_img--fallback {
  width: 64px;
  height: auto;
  object-fit: contain;
}
.achievements__date {
  font-size: 11px;
  color: var(--color_text_light);
  padding: 14px 16px 0;
}
.achievements__title {
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px 16px;
}
.achievements__empty {
  font-size: 13px;
  color: var(--color_text_light);
  margin-bottom: 24px;
}
.achievements__more {
  display: inline-block;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color_primary);
  border: 2px solid var(--color_primary);
  padding: 12px 28px;
  border-radius: 999px;
}

.blog_archive {
  padding: 56px 16px 72px;
  text-align: center;
}
.blog_archive__inner {
  max-width: 900px;
  margin: 0 auto;
}
.blog_archive__lead {
  font-size: 13px;
  color: var(--color_text_light);
  margin-bottom: 32px;
}
.blog_archive__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}
@media (min-width: 768px) {
  .blog_archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog_archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.blog_archive__link {
  display: flex;
  flex-direction: column;
  background: var(--color_white);
  border-radius: var(--radius_md);
  overflow: hidden;
  box-shadow: var(--shadow_card);
}
.blog_archive__thumb {
  aspect-ratio: 16/10;
  background: var(--color_bg_soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog_archive__thumb_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_archive__thumb_img--fallback {
  width: 64px;
  height: auto;
  object-fit: contain;
}
.blog_archive__body {
  padding: 18px 20px 22px;
}
.blog_archive__date {
  font-size: 11px;
  color: var(--color_text_light);
  margin-bottom: 6px;
}
.blog_archive__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog_archive__excerpt {
  font-size: 13px;
  color: var(--color_text_light);
}
.blog_archive__empty {
  font-size: 13px;
  color: var(--color_text_light);
}
.blog_archive__pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.blog_archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--color_white);
  color: var(--color_text);
  font-size: 13px;
  box-shadow: var(--shadow_card);
}
.blog_archive__pagination .page-numbers.current {
  background: var(--color_primary);
  color: var(--color_white);
}

.single_post {
  padding: 48px 16px 72px;
}
.single_post__inner {
  max-width: 720px;
  margin: 0 auto;
}
.single_post__date {
  font-size: 12px;
  color: var(--color_text_light);
  margin-bottom: 8px;
}
.single_post__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single_post__title {
    font-size: 32px;
  }
}
.single_post__thumb {
  border-radius: var(--radius_md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow_card);
}
.single_post__content {
  font-size: 15px;
  line-height: 2;
}
.single_post__content p {
  margin-bottom: 1.4em;
}
.single_post__content img {
  border-radius: var(--radius_sm);
  margin: 1.4em 0;
}
.single_post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.single_post__tag {
  font-size: 12px;
  color: var(--color_primary_dark);
  background: var(--color_bg_soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.single_post__back {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color_primary);
}

.partners {
  padding: 56px 16px;
  text-align: center;
  background: var(--color_bg_soft);
}
.partners__inner {
  max-width: 900px;
  margin: 0 auto;
}
.partners__lead {
  font-size: 13px;
  color: var(--color_text_light);
  margin-bottom: 28px;
}
.partners__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.partners__item {
  background: var(--color_white);
  border-radius: var(--radius_md);
  padding: 20px 12px;
  box-shadow: var(--shadow_card);
}
.partners__logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--color_bg_soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.partners__logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.partners__name {
  font-size: 11px;
  color: var(--color_text_light);
}

.contact {
  padding: 56px 16px 64px;
  text-align: center;
  background: linear-gradient(180deg, #3D8340 0%, #2E6531 100%);
  color: var(--color_white);
}
.contact__inner {
  max-width: 560px;
  margin: 0 auto;
}
.contact__lead {
  font-size: 13px;
  color: #DCEFDC;
  margin-bottom: 28px;
}
.contact__line {
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius_md);
  padding: 22px 18px;
  margin-bottom: 24px;
}
.contact__line_text {
  font-size: 13px;
  margin-bottom: 14px;
}
.contact__line_button {
  display: inline-block;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color_white);
  background: var(--color_line);
  padding: 14px 28px;
  border-radius: var(--radius_sm);
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.35);
}
.contact__or {
  font-size: 12px;
  color: #DCEFDC;
  margin-bottom: 20px;
}
.contact__form {
  text-align: left;
  background: var(--color_white);
  border-radius: var(--radius_lg);
  padding: 28px 20px;
  box-shadow: var(--shadow_soft);
}
.contact__field {
  margin-bottom: 18px;
}
.contact__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color_text);
  margin-bottom: 8px;
}
.contact__required {
  font-size: 10px;
  font-weight: 700;
  color: var(--color_white);
  background: var(--color_pink);
  border-radius: 4px;
  padding: 2px 6px;
}
.contact__input {
  width: 100%;
  font-family: var(--font_body);
  font-size: 14px;
  color: var(--color_text);
  background: var(--color_bg);
  border: 2px solid var(--color_bg_soft);
  border-radius: var(--radius_sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
.contact__input:focus {
  outline: none;
  border-color: var(--color_primary);
}
.contact__input--textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__input--select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color_text_light) 50%), linear-gradient(135deg, var(--color_text_light) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.contact__submit {
  width: 100%;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color_white);
  background: var(--color_primary);
  padding: 16px;
  border-radius: var(--radius_sm);
  box-shadow: var(--shadow_soft);
  margin-top: 8px;
}
.contact__form--cf7 {
  background: var(--color_white);
  border-radius: var(--radius_lg);
  padding: 28px 20px;
  box-shadow: var(--shadow_soft);
  text-align: left;
}
.contact__form--cf7 .wpcf7-form p {
  margin-bottom: 18px;
}
.contact__form--cf7 label {
  display: block;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--color_text);
  margin-bottom: 8px;
}
.contact__form--cf7 input[type=text],
.contact__form--cf7 input[type=email],
.contact__form--cf7 input[type=tel],
.contact__form--cf7 select,
.contact__form--cf7 textarea {
  width: 100%;
  font-family: var(--font_body);
  font-size: 14px;
  color: var(--color_text);
  background: var(--color_bg);
  border: 2px solid var(--color_bg_soft);
  border-radius: var(--radius_sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}
.contact__form--cf7 input:focus,
.contact__form--cf7 select:focus,
.contact__form--cf7 textarea:focus {
  outline: none;
  border-color: var(--color_primary);
}
.contact__form--cf7 textarea {
  resize: vertical;
  min-height: 120px;
}
.contact__form--cf7 .wpcf7-submit {
  width: 100%;
  font-family: var(--font_heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color_white);
  background: var(--color_primary);
  padding: 16px;
  border: none;
  border-radius: var(--radius_sm);
  box-shadow: var(--shadow_soft);
  margin-top: 8px;
  cursor: pointer;
}
.contact__form--cf7 .wpcf7-not-valid-tip {
  color: var(--color_pink_dark);
  font-size: 12px;
  margin-top: 4px;
}
.contact__form--cf7 .wpcf7-response-output {
  border-radius: var(--radius_sm) !important;
  font-size: 13px;
  margin-top: 16px !important;
  padding: 12px 14px;
  color: var(--color_text);
  background: var(--color_bg);
  border: 2px solid var(--color_bg_soft) !important;
}
.contact__form--cf7 .wpcf7-form.sent .wpcf7-response-output {
  color: var(--color_primary_dark);
  background: #EAF6EA;
  border-color: var(--color_primary) !important;
}
.contact__form--cf7 .wpcf7-form.failed .wpcf7-response-output,
.contact__form--cf7 .wpcf7-form.aborted .wpcf7-response-output,
.contact__form--cf7 .wpcf7-form.spam .wpcf7-response-output {
  color: var(--color_pink_dark);
  background: #FCEAEF;
  border-color: var(--color_pink) !important;
}
