@charset "UTF-8";
/**
 * FilePath: assets/scss/style.scss
 * Purpose: サイト全体のメインスタイル定義（エントリーポイント）。
 * Function: 分割された各Sassファイルを読み込み、最終的に1つのCSSファイルとして出力します。
 */
/**
 * FilePath: assets/scss/_base.scss
 * Purpose: サイト全体の基本スタイルおよび共通要素（本文装飾など）の定義。
 */
/**
 * FilePath: assets/scss/base/_entry-content.scss
 * Purpose: 記事本文（.entry-content）およびエディター内の標準HTML要素（H2/H3/リストなど）の装飾。
 */
.c-postContent h2,
.p-page-content h2,
.editor-styles-wrapper h2 {
  font-size: 1.6rem !important;
  font-weight: bold !important;
  color: #2d8c3c !important;
  padding: 0.8em 1em !important;
  background: #f4f7f4 !important;
  border-left: 6px solid #2d8c3c !important;
  margin: 2.5rem 0 1.5rem !important;
  line-height: 1.4 !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.c-postContent h3,
.p-page-content h3,
.editor-styles-wrapper h3 {
  font-size: 1.35rem !important;
  font-weight: bold !important;
  color: #333333 !important;
  padding-bottom: 10px !important;
  border-bottom: 2px solid #2d8c3c !important;
  margin: 2rem 0 1.2rem !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  background: transparent !important;
  border-left: none !important;
}
.c-postContent h3::before,
.p-page-content h3::before,
.editor-styles-wrapper h3::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #2d8c3c;
  margin-right: 12px;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-postContent h4,
.p-page-content h4,
.editor-styles-wrapper h4 {
  font-size: 1.15rem !important;
  font-weight: bold !important;
  margin: 1.5rem 0 1rem !important;
  padding-left: 12px !important;
  border-left: 4px solid #dddddd !important;
  color: #333333 !important;
}
.c-postContent p,
.p-page-content p,
.editor-styles-wrapper p {
  margin-bottom: 1.5rem !important;
  line-height: 1.8 !important;
}
.c-postContent ul,
.p-page-content ul,
.editor-styles-wrapper ul {
  margin-bottom: 1.5rem !important;
  padding-left: 1.5em !important;
  list-style: none !important;
}
.c-postContent ul li,
.p-page-content ul li,
.editor-styles-wrapper ul li {
  position: relative !important;
  margin-bottom: 0.6em !important;
  padding-left: 0 !important;
}
.c-postContent ul li::before,
.p-page-content ul li::before,
.editor-styles-wrapper ul li::before {
  content: "" !important;
  position: absolute !important;
  left: -1.2em !important;
  top: 0.75em !important;
  width: 7px !important;
  height: 7px !important;
  background: #2d8c3c !important;
  border-radius: 50% !important;
}
.c-postContent ol,
.p-page-content ol,
.editor-styles-wrapper ol {
  margin-bottom: 1.5rem !important;
  padding-left: 1.5em !important;
  counter-reset: fujiki-counter;
}
.c-postContent ol li,
.p-page-content ol li,
.editor-styles-wrapper ol li {
  list-style: none !important;
  position: relative !important;
  margin-bottom: 0.6em !important;
  counter-increment: fujiki-counter;
}
.c-postContent ol li::before,
.p-page-content ol li::before,
.editor-styles-wrapper ol li::before {
  content: counter(fujiki-counter) !important;
  position: absolute !important;
  left: -1.6em !important;
  color: #2d8c3c !important;
  font-weight: bold !important;
}
.c-postContent .wp-block-table,
.p-page-content .wp-block-table,
.editor-styles-wrapper .wp-block-table {
  margin-bottom: 2rem;
}
.c-postContent .wp-block-table table,
.p-page-content .wp-block-table table,
.editor-styles-wrapper .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}
.c-postContent .wp-block-table table th, .c-postContent .wp-block-table table td,
.p-page-content .wp-block-table table th,
.p-page-content .wp-block-table table td,
.editor-styles-wrapper .wp-block-table table th,
.editor-styles-wrapper .wp-block-table table td {
  padding: 15px;
  border: 1px solid #dddddd;
  font-size: 0.95rem;
}
.c-postContent .wp-block-table table td:first-child,
.p-page-content .wp-block-table table td:first-child,
.editor-styles-wrapper .wp-block-table table td:first-child {
  background: #f4f7f4;
  font-weight: bold;
  width: 25%;
}
.c-postContent strong, .c-postContent b,
.p-page-content strong,
.p-page-content b,
.editor-styles-wrapper strong,
.editor-styles-wrapper b {
  font-weight: bold !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(45, 140, 60, 0.1)));
  background: linear-gradient(transparent 70%, rgba(45, 140, 60, 0.1) 70%);
}

body {
  color: #333333;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #2d8c3c;
  text-decoration: none;
  -webkit-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
a:hover {
  opacity: 0.8;
}

/**
 * FilePath: assets/scss/_layout.scss
 * Purpose: ヘッダーやサイドバー制御など、大枠のレイアウト定義。
 * Function:
 * - グローバルナビゲーションおよびお問い合わせボタンの装飾。
 * - 店舗・採用・通常投稿（一覧・詳細）のサイドバー除去、1カラム化。
 * - 採用・店舗一覧ページのヘッダー背景画像設定。
 * - 通常投稿詳細ページの不要セクション（この記事を書いた人）の非表示。
 */
.l-header {
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
}
.l-header .c-gnav__item > a {
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.l-header .c-gnav__item > a:hover {
  color: #2d8c3c;
}
.l-header .current-menu-item > a {
  color: #ffffff;
  position: relative;
}
.l-header .current-menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}
.l-header .c-gnav .c-btn--primary {
  background: transparent;
  padding: 0;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header .c-gnav .c-btn--primary > a {
  background: #2d8c3c;
  color: #ffffff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  height: auto;
  margin: auto 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: 1px solid #ffffff;
}
.l-header .c-gnav .c-btn--primary > a:hover {
  opacity: 0.8;
}
.l-header .c-gnav .c-btn--primary > a::after {
  display: none !important;
}

.post-type-archive-recruit > .p-breadcrumb,
.single-recruit > .p-breadcrumb,
.post-type-archive-shop > .p-breadcrumb,
.single-shop > .p-breadcrumb,
.single-post > .p-breadcrumb {
  display: none !important;
}
.post-type-archive-recruit[data-sidebar=on] .l-main,
.post-type-archive-recruit .l-main,
.single-recruit[data-sidebar=on] .l-main,
.single-recruit .l-main,
.post-type-archive-shop[data-sidebar=on] .l-main,
.post-type-archive-shop .l-main,
.single-shop[data-sidebar=on] .l-main,
.single-shop .l-main,
.single-post[data-sidebar=on] .l-main,
.single-post .l-main {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.post-type-archive-recruit .l-content,
.single-recruit .l-content,
.post-type-archive-shop .l-content,
.single-shop .l-content,
.single-post .l-content {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.post-type-archive-recruit .l-sidebar,
.single-recruit .l-sidebar,
.post-type-archive-shop .l-sidebar,
.single-shop .l-sidebar,
.single-post .l-sidebar {
  display: none !important;
}
.post-type-archive-recruit .l-content__body,
.single-recruit .l-content__body,
.post-type-archive-shop .l-content__body,
.single-shop .l-content__body,
.single-post .l-content__body {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0;
  padding-right: 0;
}

.single-shop .l-container,
.single-recruit .l-container,
.post-type-archive-shop .l-container,
.post-type-archive-recruit .l-container {
  padding-left: 1em;
  padding-right: 1em;
}

.single-post .p-authorBox,
.single-post .p-entryFooter__author,
.single-post .p-entryFooter,
.single-post .p-entry__foot {
  display: none !important;
}
.single-post .l-content__body {
  padding-left: 1em;
  padding-right: 1em;
}

.archive .l-content__body.l-container {
  margin-top: 0;
}

.post-type-archive-shop .l-content .l-content__top.p-topArea {
  background-image: url("./scss/images/top02.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.post-type-archive-recruit .l-content .l-content__top.p-topArea {
  background-image: url("./scss/images/top03.png");
  background-repeat: no-repeat;
  background-size: cover;
}

/* 一般的なテーマ向けの記述例 */
.author-box, .author-profile, .vcard {
  display: none !important;
}

/**
 * FilePath: assets/scss/components/_headers.scss
 * Purpose: サブページ共通ヘッダー（パンくず含む）の定義。
 */
.l-header {
  background-color: #2d6b8c;
  color: #ffffff;
}

.c-gnav__a {
  color: #ffffff;
}

.c-headLogo__img {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 3px;
}

.c-page-header {
  background-color: #3e4d41;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("./scss/images/top02.png");
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("./scss/images/top02.png");
  background-size: cover;
  background-position: center;
  padding: 1em;
  text-align: center;
  color: #ffffff;
}
.c-page-header__title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  color: #fff;
}
.c-page-header__breadcrumb {
  margin-bottom: 30px;
}
.c-page-header__breadcrumb .p-breadcrumb {
  background: transparent !important;
  padding: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
  margin: 0 !important;
}
.c-page-header__breadcrumb .p-breadcrumb__list {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  max-width: none !important;
  width: auto !important;
  background: transparent !important;
}
.c-page-header__breadcrumb .p-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem;
}
.c-page-header__breadcrumb .p-breadcrumb__item::after {
  content: ">";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.75rem;
}
.c-page-header__breadcrumb .p-breadcrumb__item:last-child::after {
  display: none;
}
.c-page-header__breadcrumb .p-breadcrumb__text, .c-page-header__breadcrumb .p-breadcrumb span {
  color: inherit !important;
}
.c-page-header__breadcrumb .p-breadcrumb a.p-breadcrumb__text {
  color: inherit !important;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-page-header__breadcrumb .p-breadcrumb a.p-breadcrumb__text:hover {
  color: #fff !important;
  text-decoration: underline;
}
.c-page-header__breadcrumb .p-breadcrumb svg {
  fill: currentColor !important;
  margin-right: 6px;
  vertical-align: -0.15em;
  width: 1.1em;
  height: 1.1em;
}
.c-page-header__lead {
  font-size: 1.15rem;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #fff;
  text-align: center;
}

/**
 * FilePath: assets/scss/components/_footer.scss
 * Purpose: フッターの定義
 */
.l-footer {
  background-color: #2d6b8c;
  color: #ffffff;
}

/**
 * FilePath: assets/scss/components/_buttons.scss
 */
.c-btn {
  display: inline-block;
  padding: 6px 12px;
  background: #2d8c3c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}
.c-btn:hover {
  opacity: 0.8;
  color: #ffffff;
}
.c-btn--line {
  background: #06c755;
}
.c-btn--sub {
  background: #666;
}
.c-btn--primary {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.c-btn--small {
  padding: 6px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
}

/**
 * FilePath: assets/scss/components/_pagination.scss
 */
.navigation.pagination {
  margin: 3rem 0;
}
.navigation.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.navigation.pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333333;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.navigation.pagination .page-numbers:hover:not(.current) {
  border-color: #2d8c3c;
  background-color: rgba(45, 140, 60, 0.05);
  color: #2d8c3c;
}
.navigation.pagination .page-numbers.current {
  background: #2d8c3c;
  border-color: #2d8c3c;
  color: #fff;
}
.navigation.pagination .page-numbers.dots {
  border: none;
  background: transparent;
}

/**
 * FilePath: assets/scss/components/_cards.scss
 */
.c-service-card {
  background: #ffffff;
  border-radius: 12px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  background-size: cover;
  position: relative;
}
.c-service-card__icon {
  font-size: 3rem;
  padding: 60px;
  display: block;
}
.c-service-card__title {
  font-size: 1.25rem;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-weight: bold;
}
.c-service-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
}
.c-service-card__inner {
  background-color: rgba(255, 255, 255, 0.5);
  background-size: cover;
  padding: 15px 30px;
}
.c-service-card__01 {
  background-image: url("./scss/images/service01.jpg");
}
.c-service-card__02 {
  background-image: url("./scss/images/service02.jpg");
}
.c-service-card__03 {
  background-image: url("./scss/images/service03.jpg");
}
.c-service-card__04 {
  background-image: url("./scss/images/service04.jpg");
}

.c-shop-card {
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 0;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.c-shop-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.c-shop-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f4f7f4;
  overflow: hidden;
}
.c-shop-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@supports not (aspect-ratio: 16/9) {
  .c-shop-card__img {
    height: 200px;
  }
}
.c-shop-card__body {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-shop-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
  min-height: 20px;
}
.c-shop-card__type {
  font-size: 0.75rem;
  background: #666;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
}
.c-shop-card__badge {
  font-size: 0.75rem;
  color: #2d8c3c;
  font-weight: bold;
  border: 1px solid #2d8c3c;
  padding: 1px 6px;
  border-radius: 3px;
}
.c-shop-card__name {
  font-size: 1.2rem;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
}
.c-shop-card__info {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #444;
}
.c-shop-card__info p {
  margin-bottom: 4px;
  position: relative;
  padding-left: 0;
}
.c-shop-card__status {
  margin-bottom: 15px;
}
.c-shop-card__status .is-open {
  font-size: 0.8rem;
  color: #2d8c3c;
  font-weight: bold;
}
.c-shop-card__status .is-open::before {
  content: "●";
  margin-right: 4px;
}
.c-shop-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  border-top: 1px solid #f4f7f4;
  padding-top: 15px;
}
.c-shop-card__footer .c-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 6px 4px;
}

.c-recruit-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-recruit-card:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.c-recruit-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #eee;
}
.c-recruit-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-recruit-card__body {
  padding: 30px 25px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-recruit-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.c-recruit-card__title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
.c-recruit-card__badge {
  font-size: 0.75rem;
  background: #eef7f0;
  color: #2d8c3c;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  white-space: nowrap;
}
.c-recruit-card__content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 25px;
}
.c-recruit-card__label {
  font-size: 0.9rem;
  color: #2d8c3c;
  font-weight: bold;
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-recruit-card__label::before {
  content: "💼";
  font-size: 1.1rem;
}
.c-recruit-card__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-recruit-card__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-recruit-card__text li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 5px;
}
.c-recruit-card__text li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.c-recruit-card__footer {
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
}

.c-news-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 10px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 600px) {
  .c-news-item__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-news-item__link:hover {
  background: rgba(45, 140, 60, 0.05);
}
.c-news-item__link:hover .c-news-item__title {
  color: #2d8c3c;
}
.c-news-item__date {
  font-size: 0.9rem;
  color: #888;
  min-width: 140px;
  margin-bottom: 5px;
}
@media screen and (min-width: 600px) {
  .c-news-item__date {
    margin-bottom: 0;
  }
}
.c-news-item__title {
  font-size: 1rem;
  color: #333333;
  font-weight: bold;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

/**
 * FilePath: assets/scss/components/_line-flow.scss
 */
.c-line-flow {
  padding: 80px 0;
  margin: 40px 0;
}
.c-line-flow__title {
  color: #ffffff;
  background-color: #06c755;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding: 0.3em;
}
.c-line-flow__lead {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.c-line-flow__steps {
  display: grid;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .c-line-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.c-line-flow__step {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .c-line-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #06c755;
    border-right: 3px solid #06c755;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    z-index: 2;
  }
}
.c-line-flow__num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background: #06c755;
  color: #ffffff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
          box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
  line-height: 1.2;
  padding-top: 2px;
}
.c-line-flow__step-title {
  font-size: 1.15rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #2d8c3c;
}
.c-line-flow__step-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  text-align: left;
  width: 100%;
}
.c-line-flow__benefit-wrap {
  margin-top: 60px;
  padding: 0 20px;
}
.c-line-flow__benefit-title {
  text-align: center;
  font-size: 1.5rem;
  color: #2d8c3c;
  margin-bottom: 35px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-line-flow__benefit-title::before, .c-line-flow__benefit-title::after {
  content: "";
  height: 2px;
  background: #06c755;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 60px;
  margin: 0 15px;
}
.c-line-flow__benefits {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-line-flow__benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-line-flow__benefit-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #06c755;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.c-line-flow__benefit-item dt {
  font-weight: bold;
  color: #06c755;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-line-flow__benefit-item dt::before {
  content: "✔";
  margin-right: 8px;
  font-size: 1.3rem;
}
.c-line-flow__benefit-item dd {
  margin: 0;
  font-size: 0.95rem;
  color: #333333;
  font-weight: bold;
  line-height: 1.6;
}
.c-line-flow__notes {
  margin: 60px auto 0;
  max-width: 850px;
  padding: 35px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  text-align: left;
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}
.c-line-flow__notes h3 {
  font-size: 1.15rem;
  font-weight: bold;
  color: #e54d42;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-line-flow__notes h3::before {
  content: "⚠️";
  margin-right: 12px;
}
.c-line-flow__notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-line-flow__notes ul li {
  font-size: 0.95rem;
  color: #555;
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: 12px;
  line-height: 1.7;
}
.c-line-flow__notes ul li::before {
  content: "•";
  color: #ccc;
  margin-right: 0.8em;
  font-weight: bold;
}
.c-line-flow__notes ul li:last-child {
  margin-bottom: 0;
}

/**
 * FilePath: assets/scss/projects/_home.scss
 * Purpose: トップページ固有のスタイル。
 */
.p-fv {
  position: relative;
  width: 100%;
  height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .p-fv {
    height: 450px;
  }
}
.p-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.p-fv__bg .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-animation: fv-slider 15s infinite;
          animation: fv-slider 15s infinite;
}
.p-fv__bg .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-fv__bg .slide:nth-child(1) {
  background-image: url("./scss/images/top01.png");
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.p-fv__bg .slide:nth-child(2) {
  background-image: url("./scss/images/top02.png");
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.p-fv__bg .slide:nth-child(3) {
  background-image: url("./scss/images/top03.png");
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.p-fv__bg .slide.slide01 .p-fv__copy {
  width: 100%;
}
.p-fv__bg .slide.slide02 .p-fv__copy {
  bottom: 20px;
  left: 20px;
}
.p-fv__bg .slide.slide03 .p-fv__copy {
  bottom: 20px;
  right: 20px;
}
.p-fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
}
.p-fv__copy {
  position: absolute;
  color: yellow;
  /* color: $color-white; */
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .p-fv__copy {
    font-size: 3rem;
  }
}

@-webkit-keyframes fv-slider {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
  }
}

@keyframes fv-slider {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 0;
  }
}
.p-home-services {
  padding: 20px 0;
  background-color: #fff;
}
.p-home-services__title {
  text-align: center;
  font-size: 2rem;
  color: #2d8c3c;
  margin-bottom: 15px;
  font-weight: bold;
}
.p-home-services__lead {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
}
.p-home-services__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .p-home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-home-shops {
  padding: 20px 20px;
}
.p-home-shops__title {
  font-size: 1.8rem;
  color: #fff;
  background-color: #2d6b8c;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding: 0.3em;
}
.p-home-shops__list {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .p-home-shops__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-home-shops__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-home-shops__more {
  text-align: right;
  margin-top: 50px;
}
.p-home-shops__more .c-btn {
  min-width: 240px;
}
.p-home-shops .l-content__body {
  padding: 0;
}

.p-home-visit {
  padding: 20px 0;
  background-color: #ffffff;
}
.p-home-visit__header {
  margin-bottom: 40px;
  text-align: left;
}
.p-home-visit__title {
  font-size: 1.8rem;
  color: #fff;
  background-color: #612d8c;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  padding: 0.3em;
}
.p-home-visit__title span {
  font-size: 1.1rem;
  display: block;
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .p-home-visit__title {
    font-size: 2.2rem;
  }
}
.p-home-visit__lead {
  font-size: 1rem;
  color: #333333;
  line-height: 1.7;
  text-align: left;
}
.p-home-visit__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-home-visit__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}
.p-home-visit__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-home-visit__img img {
  border-radius: 20px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-visit__features {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  gap: 20px;
}
.p-home-visit__feature-card {
  background-color: #f9fbf9;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #612d8c;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}
.p-home-visit__feature-card dt {
  font-weight: bold;
  color: #612d8c;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.p-home-visit__feature-card dd {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.p-home-visit__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.p-home-visit__usage {
  padding: 25px;
  border: 1px dashed #612d8c;
  background-color: rgba(97, 45, 140, 0.02);
  border-radius: 12px;
}
.p-home-visit__usage h3 {
  font-size: 1.1rem;
  color: #612d8c;
  margin-bottom: 12px;
  font-weight: bold;
}
.p-home-visit__usage h3::before {
  content: "ご利用について";
}
.p-home-visit__usage p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
.p-home-visit__action .c-btn {
  max-width: none;
  width: 100%;
  padding: 18px 0;
  font-size: 1.2rem;
  border-radius: 6px;
  background-color: #612d8c;
}
.p-home-visit .l-content__body {
  padding: 0;
}

.p-home-news {
  padding: 20px 0;
  background-color: #fff;
}
.p-home-news__title {
  text-align: center;
  font-size: 2rem;
  color: #2d8c3c;
  margin-bottom: 50px;
  font-weight: bold;
}
.p-home-news__list {
  margin: 0 auto;
  border-top: 1px solid #eee;
}
.p-home-news__more {
  text-align: right;
  margin-top: 50px;
}
.p-home-news__more .c-btn {
  min-width: 240px;
}
.p-home-news .l-content__body {
  padding: 0;
}

/**
 * FilePath: assets/scss/projects/_shop.scss
 * Purpose: 店舗情報詳細ページ（single-shop）および一覧（archive-shop）で使用されるテーブル、マップ、グリッドなどの専用スタイル定義。
 * Function: 
 * - 詳細ページのアイキャッチ・LINEボックス装飾。
 * - 一覧ページのカードグリッドレイアウト。
 */
.p-shop-detail__header {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f4f7f4;
}
.p-shop-detail__title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333333;
}
.p-shop-detail__img {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.p-shop-detail__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.c-shop-info {
  margin-top: 40px;
}
.c-shop-info__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2d8c3c;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 4px solid #2d8c3c;
}
.c-shop-info__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.c-shop-info__table th, .c-shop-info__table td {
  padding: 15px;
  border: 1px solid #dddddd;
}
.c-shop-info__table th {
  background: #f4f7f4;
  width: 30%;
  text-align: left;
}
.c-shop-info__map {
  margin-bottom: 40px;
}
.c-shop-info__map iframe {
  border-radius: 12px;
}

.c-shop-line-box {
  background: #f0fcf4;
  border: 2px solid #06c755;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 50px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(6, 199, 85, 0.1);
          box-shadow: 0 4px 15px rgba(6, 199, 85, 0.1);
}
.c-shop-line-box__title {
  color: #06c755;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.c-shop-line-box__title::before {
  content: "📱";
  margin-right: 8px;
}
.c-shop-line-box__lead {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}
.c-shop-line-box__qr {
  margin-bottom: 20px;
}
.c-shop-line-box__qr img {
  max-width: 150px;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 5px;
  background: #fff;
}
.c-shop-line-box__btn .c-btn {
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 30px;
  max-width: 350px;
  -webkit-box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
          box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}
.c-shop-line-box__btn .c-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
          box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
}

.p-shop-archive__list {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .p-shop-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-shop-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * FilePath: assets/scss/projects/_recruit.scss
 * Purpose: 採用情報詳細ページ（single-recruit）および一覧（archive-recruit）専用のスタイル定義。
 */
body.single-recruit .p-recruit-detail__img {
  max-width: 1000px;
  margin: 0 auto 50px;
  border-radius: 24px;
  overflow: hidden;
  -webkit-box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
          box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  background-color: #eee;
}
body.single-recruit .p-recruit-detail__img img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-recruit .p-recruit-detail__action {
  margin-top: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 60px;
  clear: both;
}
body.single-recruit .p-recruit-detail__action .c-btn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 1.4rem;
  padding: 22px 40px;
  border-radius: 60px;
  -webkit-box-shadow: 0 10px 30px rgba(45, 140, 60, 0.2);
          box-shadow: 0 10px 30px rgba(45, 140, 60, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}
body.single-recruit .p-recruit-detail__action .c-btn:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 15px 40px rgba(45, 140, 60, 0.4);
          box-shadow: 0 15px 40px rgba(45, 140, 60, 0.4);
  background-color: color-mix(in srgb, #2d8c3c, white 10%);
}
@media screen and (max-width: 600px) {
  body.single-recruit .p-recruit-detail__action .c-btn {
    font-size: 1.1rem;
    padding: 18px 25px;
    max-width: 90%;
  }
}

.c-recruit-info__title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2d8c3c;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 5px solid #2d8c3c;
}
.c-recruit-info__lead {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}
.c-recruit-info__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
  table-layout: fixed;
}
.c-recruit-info__table th, .c-recruit-info__table td {
  padding: 20px;
  border: 1px solid #dddddd;
  font-size: 1rem;
  line-height: 1.7;
  word-wrap: break-word;
}
.c-recruit-info__table th {
  background: #f0f7f3;
  width: 25%;
  text-align: left;
  font-weight: bold;
  color: #2d8c3c;
  vertical-align: middle;
}
@media screen and (max-width: 600px) {
  .c-recruit-info__table th {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 12px 20px;
  }
}
@media screen and (max-width: 600px) {
  .c-recruit-info__table td {
    display: block;
    width: 100%;
  }
}

.p-recruit-archive__list {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 600px) {
  .p-recruit-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-recruit-archive__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-recruit-archive__pagination {
  margin-top: 40px;
  text-align: center;
}

/**
 * FilePath: assets/scss/projects/_contact.scss
 * Purpose: お問い合わせページ（Contact Form 7）のレイアウト調整。
 */
.p-contact {
  padding-bottom: 60px;
}
.p-contact__inner {
  max-width: 800px;
  margin: 0 auto;
}
.p-contact__form {
  background: #fff;
  padding: 0;
}
.p-contact__form p {
  margin-bottom: 2rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}
.p-contact__form .wpcf7-form label {
  display: block;
  font-weight: bold;
  color: #333333;
  margin-bottom: 25px;
  font-size: 1rem;
}
.p-contact__form .wpcf7-form label span {
  display: block;
  margin-bottom: 8px;
}
.p-contact__form .wpcf7-form .wpcf7-text,
.p-contact__form .wpcf7-form .wpcf7-textarea,
.p-contact__form .wpcf7-form .wpcf7-select {
  width: 100%;
  background-color: #f4f7f4;
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 1rem;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
}
.p-contact__form .wpcf7-form .wpcf7-text:focus,
.p-contact__form .wpcf7-form .wpcf7-textarea:focus,
.p-contact__form .wpcf7-form .wpcf7-select:focus {
  outline: none;
  border-color: #2d8c3c;
  background-color: #fff;
}
.p-contact__form .wpcf7-form .wpcf7-textarea {
  height: 200px;
}
.p-contact__form .wpcf7-form .wpcf7-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}
.p-contact__form .wpcf7-form .wpcf7-submit {
  display: block;
  margin: 40px auto 0;
  width: 100%;
  max-width: 300px;
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 60px;
  background-color: #2d8c3c;
  color: #fff;
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.p-contact__form .wpcf7-form .wpcf7-submit:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(45, 140, 60, 0.3);
          box-shadow: 0 8px 20px rgba(45, 140, 60, 0.3);
  opacity: 0.9;
}
.p-contact__form .wpcf7-form .wpcf7-response-output {
  margin: 30px 0 0;
  padding: 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
}
.p-contact__form .wpcf7-form .wpcf7-not-valid-tip {
  color: #e54d42;
  font-size: 0.85rem;
  font-weight: normal;
  margin-top: 5px;
}