/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* ===================================
   スマホ表示時の改行
=================================== */

.br-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline;
  }
}

/* ===================================
   Contact Form
=================================== */
label, legend {
    color: #ddd;
}
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  color: #ddd;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(180, 150, 90, 0.25);
}

.contact-form .form-label {
  font-size: 14px;
  line-height: 1.8;
  color: #ddd;
}

.contact-form .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid #9b7b43;
  color: #b99a60;
  font-size: 10px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(185, 154, 96, 0.45);

  color: #fff;
  font-size: 14px;

  outline: none;
  transition: 0.3s;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b99a60;
  background: rgba(255,255,255,0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form .wpcf7-list-item {
  margin: 0 20px 8px 0;
}

.contact-form .form-acceptance {
  margin-top: 30px;
  text-align: center;
}

.contact-form .form-submit {
  margin-top: 30px;
  text-align: center;
}

.contact-form input[type="submit"] {
  min-width: 260px;
  padding: 16px 40px;

  background: transparent;
  border: 1px solid #9b7b43;

  color: #ddd;
  font-size: 14px;
  letter-spacing: 0.15em;

  cursor: pointer;
  transition: 0.3s;
}

.contact-form input[type="submit"]:hover {
  background: #9b7b43;
  color: #fff;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #c98a8a;
  font-size: 12px;
}

.contact-form .wpcf7-response-output {
  margin: 30px 0 0 !important;
  padding: 15px !important;
  border-color: #9b7b43 !important;
  color: #ddd;
}

@media screen and (max-width: 767px) {

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }

  .contact-form input[type="submit"] {
    width: 100%;
  }
}