@charset "UTF-8";

/*
 style-contact
*/

/*============================================================
  contact お問い合わせ
============================================================*/

#contactWrap {
  padding: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

#contactWrap h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000;
}

#contactWrap .contact-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 連絡方法のラッパー */
.contact-options {
  display: flex;
  flex-direction: column; /* モバイル：縦並び */
  gap: 20px;
}

/* 各ボックス */
.contact-box {
  background-color: #fff6df;
  border: 1px solid #aaaaaa;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
	background: #fff;
  border-radius: 8px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}

.contact-box .material-icons {
  font-size: 48px;
  color: #bd922f;
  margin-bottom: 5px;
}

.contact-box h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #9f7213;
  text-align: center;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.contact-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #555;
}

.contact-box p.phone-number {
  font-size: 2em;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}

.sub-text {
  font-size: 14px;
  color: #000;
}

.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  background-color: #222;
  color: #fff;
  transition: background-color 0.3s ease;
  width: 100%; 
  box-sizing: border-box;
  text-align: center;
	margin-top: 10px;
}

.contact-btn:hover {
  background-color: #535353;
}

/* PC表示：横並び */
@media (min-width: 768px) {
  .contact-options {
    flex-direction: row;
    justify-content: center;
  }
  .contact-box {
    flex: 1;
    max-width: 400px;
    flex-direction: column;    /* PC時も縦並び */
    align-items: center;
    text-align: center;
  }
  .contact-box .material-icons {
  }
}
