/* ================================
   ◆ ヒーローセクション（テキストのみ）
================================ */
.hero-section {
  background-color: #f7f5f2; /* 明るく柔らかいベージュ系 */
  padding: 60px 20px;
  text-align: center;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

.hero-text h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text .en-title {
  font-size: 18px;
  color: #999;
  margin-bottom: 20px;
}

.hero-line {
  width: 60px;
  height: 2px;
  background-color: #333;
  margin: 0 auto 20px auto;
}

.hero-sub {
  font-size: 16px;
  color: #555;
}

/* ===================================
   ◆ お問い合わせセクショ
=================================== */
body {
  background-color: #f7f5f2; /* サイト全体の背景色 */
}

.contact-section {
padding: 60px 20px;
color: #060606; /* テキストは白で見やすく */
}

.contact-inner {
max-width: 700px;
margin: 0 auto;
}

.section-title {
font-size: 32px;
margin-bottom: 20px;
text-align: center;
border-bottom: 2px solid #ffffff;
padding-bottom: 10px;
}

.contact-message {
text-align: center;
margin-bottom: 40px;
font-size: 16px;
line-height: 1.6;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 20px;
}

.form-group {
display: flex;
flex-direction: column;
}

.form-group label {
font-weight: bold;
margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
padding: 10px;
border: 1px solid #cccccc;
border-radius: 5px;
font-size: 16px;
background-color: #ffffff;
color: #000000;
}

.form-submit {
text-align: center;
margin-top: 20px;
}

.form-submit button {
background-color: #ffffff;
color: #000000;
border: none;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.form-submit button:hover {
background-color: #dddddd;
}

.form-button {
display: inline-block;
padding: 15px 30px;
background-color: #000000;
color: #fff;
text-decoration: none;
font-size: 16px;
border-radius: 8px;
transition: background-color 0.3s ease;
}
.form-button:hover {
background-color: #333333;
}

/* フォーム */
.contact {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact h2 {
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.contact p {
  text-align: center;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.required {
  color: white;
  background-color: red;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
}

.name-fields input,
.tel-fields input {
  width: calc(50% - 10px);
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.tel-fields input {
  width: 60px;
  text-align: center;
}

.tel-fields span {
  margin: 0 5px;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  display: block;
  margin: 30px auto 0;
  padding: 12px 30px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form button {
    width: 100%;
  }
    .card img {
  width: 100%;
  height: 200px; /* 統一したい高さ */
  object-fit: cover; /* 切り抜いて自然に見せる */
  border-radius: 8px;
}
.card p {
  word-break: keep-all;   /* 単語の途中で改行しない */
  line-break: strict;     /* 日本語でも自然に改行するように */
}
.card-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

}