@charset "UTF-8";
/* PC */
body {
  background-color: #eee3e4;
  margin: 0;
  padding: 0;
}
.contact-section {
  position: relative;
  height: 50vh;
  background-color: #eee3e4;
  display: flex;
  align-items: flex-start;
  padding: 0;
  margin: 10% 0;
  background-image: linear-gradient(to right, #eee3e4 30%, transparent 30%), url("../img/contact/contact1.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
/* テキストブロック */
.contact-text {
  z-index: 2;
  padding-top: 5vh;
  padding-left: 5%;
  padding-right: 5%;
  width: 70%;
}
/* 小見出し */
.contact-sub {
  font-size: 2rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
}
/* 大見出し */
.h1-contact {
  font-size: 7rem;
  color: #fff;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  margin: 0;
  line-height: 1.1;
}
.contact-form-section {
  width: 70%;
  margin: 5% auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}
.contact-form-section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.contact-form-section p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}
.contact_table {
  width: 100%;
  border-collapse: collapse;
  font-weight: 500;
}
.contact_table th, .contact_table td {
  padding: 12px;
  vertical-align: middle;
}
.contact_table th {
  width: 25%;
  background-color: #dadbdd; /* 画像に近いグレー */
  color: #333;
  text-align: left;
  border: 1px solid #999;
}
.contact_table td {
  width: 75%;
  background: none;
  border: 1px solid #999;
}
.contact_table input[type="text"], .contact_table input[type="email"], .contact_table textarea {
  border: 1px solid #999;
  padding: 8px;
  font-size: 1rem;
  box-sizing: border-box;
  background-color: unset;
}
.contact_table textarea {
  resize: vertical;
}
.form-note {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 40px;
  text-align: left;
  color: #333;
  font-weight: 500;
}
.form-buttons {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 30px;
}
.form-btn {
  width: 200px;
  background-color: transparent;
  border: 2px solid #333;
  padding: 12px 0;
  font-size: 1rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.form-btn:hover {
  background-color: #333;
  color: #fff;
}
.privacy-policy-section {
  width: 70%;
  margin: 5% auto;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f3ebeb; /* 画像から抽出した背景色 */
  padding: 50px 30px;
  box-sizing: border-box;
  color: #333;
}
.privacy-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.privacy-block {
  margin-bottom: 40px;
}
.privacy-block h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.privacy-block p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}
.privacy-block ul {
  margin-top: 10px;
  padding-left: 1em;
}
.privacy-block ul li {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}
/* タブレット対応（画面幅768px以下） */
@media screen and (max-width: 768px) {}
/* スマホ対応（画面幅480px以下） */
@media screen and (max-width: 480px) {
  .contact-section {
    position: relative;
    height: 23vh;
    background-color: #eee3e4;
    display: flex;
    align-items: flex-start;
    padding: 0;
    margin: 10% 0;
    background-image: linear-gradient(to right, transparent 30%, transparent 30%), url("../img/contact/contact1.png");
    background-size: 270px;
    background-position: right;
    background-repeat: no-repeat;
  }
  /* テキストブロック */
  .contact-text {
    z-index: 2;
    padding-top: 2%;
    text-align: left;
    padding-left: 3%;
    font-weight: 500;
  }
  /* 小見出し */
  .contact-sub {
    font-size: 1rem;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 10px;
    font-weight: 500;
  }
  /* 大見出し */
  .h1-contact {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    margin: 0;
    line-height: 1.1;
  }
  .contact-form-section {
    width: 94%;
    margin: 5% auto;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
  }
  .form-buttons {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 30px;
  }
  .privacy-policy-section {
    width: 94%;
    margin: 5% auto;
    font-family: "Noto Sans JP", sans-serif;
    background-color: #f3ebeb;
    padding: 50px 30px;
    box-sizing: border-box;
    color: #333;
  }
}