/*
Theme Name: yasuragilp
Theme URI: https://example.com/
Author: あなたの名前
Author URI: https://example.com/
Description: 多言語LP用オリジナルテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yasuragilp
*/
/* ========================================
   全体共通スタイル
======================================== */
body {
  color: #333;
  font-size: 16px;
  background: #fff;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
/* -------------------------
   ヘッダー共通
------------------------- */
.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo img {
  height: 50px;
}
/* ナビ */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.lang-switch {
  position: relative;
}
.lang-btn {
  background: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 15px;
  cursor: pointer;
}
.lang-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 10px 0;
  margin: 0;
}
.lang-list li {
  padding: 10px 20px;
}
.lang-list li a {
  color: #000;
  text-decoration: none;
}
.lang-switch:hover .lang-list {
  display: block;
}
@media (max-width: 768px) {
  .logo img {
    height: auto;
    width: 60%;
  }
  .nav-wrapper {
    display: none;
    flex-direction: column;
    gap: 20px;
  }
  .header-inner {
    padding: 15px 10px;
  }
}
/*----------------------
ハンバーガー
----------------------*/
.hamburger-menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  display: none; /* デフォルトで非表示 */
}
/* メニューボタン */
.menu-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.menu-icon {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #FFE;
  position: relative;
}
.menu-icon::before, .menu-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #FFE;
  left: 0;
  transition: transform 0.3s ease;
}
.menu-icon::before {
  top: -8px;
}
.menu-icon::after {
  top: 8px;
}
/* メニューのオーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態で画面外に配置 */
  width: 300px;
  height: 100%;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  background-color: rgb(14 103 65 / 90%);
  transition: right 0.3s ease;
  z-index: 1050;
}
/* メニューの内容 */
.menu-content {
  padding: 90px 20px 50px 20px;
}
.menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-content ul li {
  margin-bottom: 20px;
}
.menu-content ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}
/* メニューが表示されたときの状態 */
.menu-overlay.active {
  right: 0;
}
/* ハンバーガーアイコンのアニメーション */
.menu-button.active .menu-icon {
  background-color: transparent;
}
.menu-button.active .menu-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: #fff;
}
.menu-button.active .menu-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
  background-color: #fff;
}
.menu-content ul li a {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #fff;
  font-size: 15px;
}
/* 現在ページにだけ白い下線を表示 */
.menu-content ul li.current-menu-item a::after, .menu-content ul li.current_page_item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
/* 現在ページおよびその子孫カテゴリ・投稿に下線を表示 */
.menu-content ul li.current-menu-item a::after, .menu-content ul li.current_page_item a::after, .menu-content ul li.current-menu-ancestor a::after, .menu-content ul li.current_page_ancestor a::after, .menu-content ul li.current-post-ancestor a::after, .menu-content ul li.current-category-ancestor a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
/* 言語切替アコーディオン */
.lang-toggle {
  margin-top: 30px;
}
/* Language ▼ボタンを白い四角で囲む */
.lang-btn-toggle {
  width: 100%;
  background: #fff;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  border: none;
  text-align: center;
  cursor: pointer;
  padding: 12px;
  /* border-radius: 6px; */
  transition: background 0.3s ease, color 0.3s ease;
}
/* ホバー時 */
.lang-btn-toggle:hover {
  background: #f2f2f2;
}
/* 言語リスト */
.lang-list-mobile {
  display: none;
  list-style: none;
  padding: 5px 10px !important;
  background: #ffffff;
}
.lang-list-mobile li {
  margin-bottom: 15px !important;
  margin-top: 15px !important;
}
.lang-list-mobile li a {
  color: #333 !important;
  text-decoration: none;
  font-size: 14px;
  display: block;
  padding: 5px 10px;
  transition: background 0.2s ease;
}
.lang-list-mobile li a:hover {
  background: #ddd;
}
/* アコーディオン開いた状態 */
.lang-toggle.open .lang-list-mobile {
  display: block;
}
/* スマホ用表示 */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block; /* スマホでは表示 */
  }
}
/* パソコン用非表示 (念のため明示的に指定) */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }
}
/* ========================================
   ヒーローセクション
======================================== */
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-text {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 5px;
}
.hero-text h1 {
  font-size: 60px;
  margin-bottom: 25px;
}
.hero-text p {
  font-size: 30px;
}
@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
  }
  .hero-text {
    padding: 0 10px;
    box-sizing: border-box;
  }
  .hero-text h1 {
    font-size: 35px;
    margin-bottom: 25px;
  }
  .hero-text h1 .sp-block {
    display: block; /* スマホで改行 */
    margin-top: 5px;
  }
  .hero-text p {
    font-size: 17px;
  }
}
/* ========================================
   フッター
======================================== */
.site-footer {
  text-align: center;
  position: relative;
}
.footer-top {
  background: #f2f2f2;
  padding: 30px 20px;
}
.footer-logo img {
  max-width: 300px;
  margin-bottom: 10px;
}
.footer-address {
  font-size: 14px;
  color: #333;
}
.footer-bottom {
  background: #34a02c;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}
/* TOPに戻るボタン */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #666;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  z-index: 10;
}
@media (max-width: 768px) {
  .footer-logo img {
    max-width: 200px;
  }
}
/* ========================================
  メインコンテンツ
======================================== */
.page-top {
  margin-top: 100px;
}
#service {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .page-top {
    margin-top: 60px;
  }
  #service {
    margin-bottom: 80px;
  }
}
/* ========================================
  サービス紹介
======================================== */
.content-block {
  width: 100%;
  background: #fff;
}
.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 40px;
}
.content-text {
  flex: 1;
}
.content-text h2 {
  font-size: 55px;
  line-height: 1.3;
  margin-bottom: 40px;
}
.content-text h3 {
  font-size: 35px;
  margin-bottom: 5px;
}
.content-text .subtitle {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 22px;
  border-bottom: 3px solid #1B9F4E;
}
.content-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}
/* 右側の背景画像 */
.content-image {
  flex: 1;
  background-image: url("img/top001.jpg");
  background-size: cover;
  background-position: 30% 0;
  background-repeat: no-repeat;
  min-height: 600px; /* PC時の高さ */
  border-radius: 30px 0 0 30px;
}
@media (max-width: 768px) {
  .content-inner {
    flex-direction: column; /* 横並び → 縦並び */
    padding: 0 10px;
    box-sizing: border-box;
    gap: 20px;
  }
  .content-text h2 {
    font-size: 35px; /* 見出し縮小 */
    margin-bottom: 20px;
  }
  .content-text h3 {
    font-size: 28px; /* サブ見出し縮小 */
    margin-bottom: 10px;
  }
  .content-text .subtitle {
    font-size: 18px; /* サブタイトル縮小 */
    padding-bottom: 10px;
  }
  .content-text p {
    font-size: 16px; /* 本文縮小 */
    line-height: 1.6;
  }
  .content-image {
    min-height: 250px; /* 高さ調整 */
    border-radius: 15px; /* 角丸縮小 */
  }
}
/* ============================
   選ばれる理由
============================ */
.reason-section {
  background: #fff;
  margin-bottom: 100px;
}
.reason-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 100px;
}
.reason-image {
  flex: 0.8;
}
.reason-image h2 {
  font-size: 55px;
  color: #399F1B;
  margin-bottom: 15px;
}
.reason-image .subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}
.reason-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.reason-text {
  flex: 1.2;
  position: relative;
}
.reason-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.reason-list li {
  position: relative;
  padding: 25px 20px; /* 番号分の余白 */
  text-align: center;
  margin-top: 50px;
  background: #FAF8F4;
  border-radius: 8px;
  font-size: 23px;
  color: #676767;
  font-weight: bold;
}
.reason-number {
  position: absolute;
  left: 0;
  top: 5px;
  transform: translateY(-50%);
  font-size: 35px;
  font-weight: normal;
  color: #34a02c;
}
@media (max-width: 768px) {
  .reason-section {
    margin-bottom: 80px;
  }
  .reason-inner {
    display: block; /* フレックス解除 */
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 80px;
  }
  .reason-image h2 {
    font-size: 35px;
    margin-bottom: 20px;
    text-align: center;
  }
  .reason-image .subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  .reason-image img {
    display: none;
  }
  .reason-text {
    width: 100%; /* 強制的に全幅 */
  }
  .reason-list li {
    width: 100%; /* 横幅いっぱい */
    box-sizing: border-box;
    padding: 20px;
    font-size: 16px;
    margin-top: 30px;
  }
  .reason-number {
    font-size: 24px;
    top: 0px;
  }
}
/* ============================
   こんな方におすすめ！
============================ */
.recommend-box {
  background: #faf8f4;
  border-radius: 12px;
  padding: 30px 20px;
  margin-top: 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.recommend-box h3 {
  display: inline-block;
  background: #34a02c;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 12px 15px;
  border-radius: 60px;
  margin-bottom: 40px;
  width: 45%;
}
.recommend-box ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
  text-align: left;
}
.recommend-box ul li {
  background: url("img/icon001.png") no-repeat;
  background-size: 23px;
  padding-left: 30px;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 30px;
}
.recommend-box ul li:last-child {
  margin-bottom: 0;
}
/* モバイル対応 */
@media (max-width: 768px) {
  .recommend-box h3 {
    font-size: 22px;
    padding: 10px 15px;
    width: 80%;
    margin-bottom: 30px;
  }
  .recommend-box ul li {
    font-size: 18px;
    padding-left: 24px;
    background-size: 20px;
    line-height: 1.3;
    background-position: 0px 1px;
  }
}
/* ============================
   散骨の流れ
============================ */
.flow-section {
  background: #f8f8f6;
  padding: 100px 0;
  margin-bottom: 100px;
}
.flow-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow-list li {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
  box-sizing: border-box;
}
.flow-list li h3 {
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px solid #399F1B;
}
.flow-list li p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}
.btn-form, .btn-line {
  display: block; /* 縦並びに */
  width: 220px; /* 任意で統一幅（例：220px） */
  max-width: 100%; /* スマホ対応 */
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 10px;
}
/* 各ボタン色 */
.btn-form {
  background: #ff8c42;
}
.btn-form:hover {
  opacity: 0.8;
}
.btn-line {
  background: #00c300; /* LINEカラー */
  margin-top: 20px;
}
.btn-line:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .flow-section {
    padding: 50px 0; /* 全体余白縮小 */
    margin-bottom: 60px;
  }
  .flow-inner {
    padding: 0 10px; /* 左右に余白 */
    box-sizing: border-box;
  }
  .flow-list li {
    padding: 15px; /* PCより少し狭く */
    margin-bottom: 20px;
  }
  .flow-list li h3 {
    font-size: 18px; /* 見出し縮小 */
    margin-bottom: 8px;
  }
  .flow-list li p {
    font-size: 14px; /* 本文縮小 */
    line-height: 1.6;
  }
  .btn-form, .btn-line {
    font-size: 16px;
    padding: 13px 15px;
    width: 200px; /* スマホでは横幅いっぱいに */
  }
}
/* ============================
   ギャラリー
============================ */
.gallery-section {
  max-width: 1000px;
  margin: 0 auto 100px;
  position: relative;
  overflow: hidden;
}
.slide-items {
  width: 90%;
  height: 90%;
  margin: auto;
}
.slide-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-prev:before, .slick-next:before {
  color: black;
}
.slick-dots li button:before {
  font-size: 18px;
  top: 6px;
}
.slick-prev:before, .slick-next:before {
  color: black !important;
}
@media (max-width: 768px) {
  .gallery-section {
    margin: 0 auto 60px;
  }
  .slide-items {
    width: 85%;
    height: 90%;
    margin: auto;
  }
}
/* ============================
   FAQセクション
============================ */
.faq-section {
  background: #f8f8f6;
  padding: 100px 0;
  margin-bottom: 100px;
}
.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 55px;
  color: #399F1B;
  margin-bottom: 40px;
}
/* モバイル対応 */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
    margin-bottom: 60px;
  }
  .faq-inner {
    padding: 0 10px;
  }
  .section-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .section-title span {
    display: block;
  }
  .faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 18px;
  }
  .faq-answer p {
    font-size: 16px;
  }
}
/* ============================
   FAQアイテム
============================ */
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 30px;
}
.faq-item:last-child {
  margin-bottom: 0;
}
/* ============================
   質問部分
============================ */
.faq-question {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  padding-left: 40px;
  border-bottom: 2px dotted #707070;
  background: url(img/icon_question.png) no-repeat;
  background-size: 25px;
  background-position: 0 0;
}
/* ============================
   回答部分
============================ */
.faq-answer {
  padding-left: 40px;
  background: url(img/icon_answer.png) no-repeat;
  background-size: 25px;
  background-position: 0 0;
}
.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
/* ============================
   レスポンシブ対応
============================ */
@media (max-width: 768px) {
  .faq-question {
    font-size: 18px;
  }
  .faq-answer p {
    font-size: 16px;
  }
}
/* ============================
   アクセスマップ
============================ */
.access-section {
  margin-bottom: 100px;
}
.access-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap; /* スマホ時に縦並び */
}
.access-box {
  background: #f4f4f4;
  flex: 1 1 calc(50% - 30px);
  display: flex;
  flex-direction: column;
}
.access-title {
  background: #4a4a4a;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
}
.map-area iframe {
  width: 100%;
  height: 300px;
  display: block;
}
.address {
  padding: 10px;
  font-size: 18px;
  color: #333;
  line-height: 1.5;
}
/* レスポンシブ */
@media (max-width: 768px) {
  .access-section {
    margin-bottom: 60px;
  }
  .access-inner {
    flex-direction: column;
    padding: 0 10px;
  }
  .access-box {
    width: 100%;
  }
  .address {
    font-size: 16px;
  }
}
/* ============================
   プランと料金
============================ */
.price-section {
  background: #fff;
  margin-bottom: 100px;
}
.price-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.price-table th, .price-table td {
  border: 1px solid #ccc;
  padding: 15px;
  vertical-align: top;
}
.price-table thead th {
  background: #34a02c;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
}
.price-table .plan-name {
  font-weight: bold;
  width: 20%;
}
.price-table td {
  background: #f9f9f9;
}
.price-table .price {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .price-section {
    margin-bottom: 60px;
  }
  .price-inner {
    padding: 0 10px;
    overflow-x: auto; /* 横スクロール許可 */
    -webkit-overflow-scrolling: touch; /* iOSスムーズスクロール */
  }
  .price-table {
    min-width: 700px; /* 必要に応じて固定幅（列が収まる幅） */
  }
  .price-table thead th, .price-table .price {
    font-size: 14px;
  }
  .price-table th, .price-table td {
    padding: 8px;
    font-size: 14px;
  }
}
/* ============================
   お問い合わせセクション
============================ */
.contact-section {
  background: #fff;
  margin-bottom: 100px;
}
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-description {
  font-size: 18px;
  margin: 20px 0 10px;
}
.btn-line02 {
  display: block;
  width: 35%;
  max-width: 100%;
  text-align: center;
  background: #00c300;
  color: #fff;
  padding: 25px 20px;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  margin: 60px auto 0 auto;
}
.btn-line02:hover {
  opacity: 0.8;
}
.contact-form-area {}
@media (max-width: 768px) {
  .contact-section {
    margin-bottom: 60px;
  }
  .contact-inner {
    padding: 0 10px;
  }
  .contact-description {
    font-size: 16px;
  }
  .btn-line02 {
    width: 80%;
    margin: 30px auto 0 auto;
  }
}
/*----------------------
 お問い合わせフォーム
----------------------*/
input, textarea {
  box-sizing: border-box;
}
input[type="text"], input[type="password"], input[type="datetime"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
  display: block;
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: none;
  color: #5c6b80;
  font-size: 1em;
  vertical-align: middle;
  line-height: 45px;
  transition: background-color 0.24s ease-in-out;
}
input::placeholder, textarea::placeholder {
  font-weight: normal;
  opacity: 0.5;
  font-size: 14px;
  color: #B1B1B1;
}
textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  padding: 0.5em;
  overflow: auto;
}
.wpcf7-form-control.wpcf7-radio {
  padding-bottom: 10px;
  display: inline-block;
}
.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}
.wpcf7-list-item-label, .wpcf7-list-item-label-comment {
  font-size: 15px;
}
.wpcf7-list-item-label-comment {
  display: block;
  margin-left: 17px;
}
@media (max-width: 768px) {
  .inquiry td, .inquiry th {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }
  .inquiry tr:first-child th {
    border-top: 1px solid #d7d7d7 !important;
  }
  .inquiry .any, .inquiry .haveto {
    font-size: 10px;
  }
}
.inquiry {
  width: 100%;
  margin-bottom: 10px;
}
.inquiry th {
  text-align: left;
  font-size: 14px;
  font-weight: normal;
  color: #444;
  padding-right: 5px;
  width: 30%;
  background: #F7F7F7;
  border: solid 1px #d7d7d7;
  text-transform: uppercase;
  padding: 13px;
}
.inquiry td {
  font-size: 14px;
  border: solid 1px #d7d7d7;
  background: #F7F7F7;
  border-top: 1px solid #ededed;
  padding: 12px;
}
.entry-content .inquiry tr, .entry-content table {
  border: solid 1px #d7d7d7;
}
.haveto {
  font-size: 7px;
  padding: 5px;
  background: #bb272d;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
.any {
  font-size: 7px;
  padding: 5px;
  background: #163846;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
.verticallist .wpcf7-list-item {
  display: block;
}
#formbtn {
  -webkit-appearance: none;
  width: 80%;
  font-size: 20px;
  font-weight: bold;
  background: #e78200;
  background-repeat: no-repeat;
  background-position: 10% 45%;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  padding: 14px 0;
  border: none;
  margin: 30px auto 0 auto;
  display: block;
  border-radius: 30px;
}
input, select, textarea {
  border: 1px solid #dfdfdf;
  letter-spacing: 1px;
  margin: 0;
  max-width: 100%;
  resize: none;
}
@media (max-width: 768px) {
  #formbtn {
    -webkit-appearance: none;
    width: 85%;
    font-size: 15px;
    padding: 10px 0;
  }
  .wpcf7 p {
    /* display: inline; */
  }
  .grecaptcha-badge {
    visibility: hidden;
  }
}
.grecaptcha-badge {
  visibility: hidden;
}