/* リセット軽め */
body {
  margin: 0;
  font-family: sans-serif;
}

.header-inner1 {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 15px 15px;
}

/* ロゴ */
.header-logo {
  margin-right: auto;
}

/* メニュー */
.header-menu1 {
  display: flex;
  gap: 20px;
  list-style: none;
  padding-left: 40px;
  padding-right: 40px;
}

/* 中身 */
.header-menu1 li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.header-menu1 li img {
  width: auto;
  height: 32px;
  object-fit: contain;
  display: block;
}

.header-menu1 li a {
  color: #333;
  transition: 0.2s;
  font-family: "ab-yurumin", sans-serif;
  font-size: 20px;
}

.header-menu1 li a:hover {
  color: #ff7a00;
}


/* ヒーロー画像 */
.hero_header {
  height: 400px;
  background-image: url("img/hero-con.jpg"); /* お好きな画像 */
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
}
.hero_header_news {
  height: 400px;
  background-image: url("img/hero-news.jpg"); /* お好きな画像 */
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text {
  color: white;
  font-size: 2rem;
}


.privacy {
  max-width: 900px;
  width: 100%;
  margin: 120px auto;
  padding: 0 20px;
  box-sizing: border-box;
}


.privacy-title {
  margin-top: 40px;
  margin-bottom: 10px;
}

.privacy-title2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  margin-bottom: 30px;
}

.info-table th,
.info-table td {
  border: 1px solid #ccc;
  padding: 20px;
  vertical-align: top;
}

/* ヘッダー */
.info-table th {
  background-color: #eee;
  text-align: center;
  font-weight: bold;
  border-bottom: 3px solid #000;
}

/* 左カラム */
.info-table td:first-child {
  width: 40%;
  background-color: #f9f9f9;
}

/* 右カラム */
.info-table td:last-child {
  width: 60%;
  background-color: #f9f9f9;
}

















.contact {
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
}

.contact h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* フォーム全体 */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 入力欄 */
.contact input,
.contact textarea {
  width: 100%;
  padding: 14px 16px;

  border: 1px solid #ddd;
  border-radius: 10px;

  font-size: 14px;
  outline: none;

  transition: 0.2s;
}

/* フォーカス時（今っぽさの肝） */
.contact input:focus,
.contact textarea:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

/* テキストエリア */
.contact textarea {
  min-height: 160px;
  resize: vertical;
}

/* 送信ボタン */
.contact button {
  padding: 14px;
  border: none;
  border-radius: 10px;

  background: #ff7a00;
  color: white;

  font-size: 15px;
  cursor: pointer;

  transition: 0.2s;
}

.contact button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}



@media (max-width: 1024px) {
  .header-menu1 {
    display: none;
  }
    .hero_header {
    height: 30vh;
  }
    .hero_header_news {
    height: 30vh;
  }
}

@media (max-width: 1024px) {
  .privacy {
    padding: 20px 30px;
  }
}

@media (max-width: 768px) {
  .privacy {
    padding: 20px 20px;
  }
}
.privacy {
  word-break: break-all;
  overflow-wrap: break-word;
}
