
/* 共通開始 */


/* Google Fonts: Noto Sans JP (太めでモダンなゴシック) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Meiryo', sans-serif;
  background-image: url(image/background.jpg);
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.header {
  background-image: url(image/background.jpg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@font-face {
  font-family: '玉ねぎ楷書激無料版v7改';
  src: url('https://webtscreate1.sakura.ne.jp/akae.sogyo/tamanegi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.logo {
  color: #000000;
  font-family: '玉ねぎ楷書激無料版v7改', serif;
  font-weight: normal;
  margin: 0;           /* 余白をすべてゼロに */
  padding-left: 0;     /* 念のためパディングもゼロ */
  position: relative;
  left: -200px;         /* .containerのpadding分をマイナスで打ち消す */
}
.logo a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 70px;
  position: relative;
  display: inline-block;
  padding: 0 10px; /* 背景画像をテキストに合わせて見やすく */
  z-index: 1;
}

.logo a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 親要素いっぱいに広げる */
  height: 100%;
  background-image: url('image/logo-background.png');
  background-size: 60%; /* 画像本来の50%サイズで表示 */
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

img {
  mix-blend-mode: multiply;
}

.logo a:visited {
  color: #000000;         /* 訪問済みも白 */
}




.nav {
  display: flex;
  align-items: center;
  gap: 20px; /* ナビゲーションとアイコンの間隔 */
}




.nav-list {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center; /* アイコンと縦位置を揃える */
  list-style: none;
}

.nav-list li a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}


.nav-list li a:hover,
.nav-list li a:focus {
  color: #1e90ff;
  border-bottom: 2px solid #1e90ff;
  outline: none;
}


.social-icons {
  display: flex;
  gap: 1px; /* アイコン同士の間隔。お好みで調整 */
  align-items: center; /* 縦位置を揃える場合 */
}
.social-icons a img {
  width: 28px;   /* アイコンサイズはお好みで */
  height: 28px;
  display: block;
}

a, img {
  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  text-decoration: none;
}

.section {
  margin-bottom: 60px;
}

.section-title {
  display: inline-block;         /* 追加：下線の長さをテキストに合わせる */
  font-size: 1.8rem;
  font-weight: 700;
  color: #daa520;
  border-bottom: 4px solid #daa520; /* 下線に変更 */
  padding-left: 0;               /* 左パディング不要なら0に */
  border-left: none;             /* 左線を消す */
  margin-bottom: 24px;
}


.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-text h2 {
  font-size: 4.0rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-visual,
.about-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ここを調整！ */
  object-position: center 60%;  /* ← 50%より大きくすると下側が多く映る */
  filter: brightness(0.6);
  display: block;
}


.view-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ここを調整！ */
  object-position: center 40%;  /* ← 50%より大きくすると下側が多く映る */
  filter: brightness(0.6);
  display: block;

}

/* hero-textを画像の上に重ねる */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

#recruit-hero .hero-text h2,
#contact-hero .hero-text h2,
#about-hero   .hero-text h2,
#work-hero    .hero-text h2,
#view-hero    .hero-text h2 {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  margin: 0;
  padding: 0.2em 0.8em;
  background: rgba(0,0,0,0.35);
  border-radius: 8px;
  display: inline-block;
}



.recruit-hero,
.contact-hero,
.about-hero,
.work-hero,
.view-hero {
  min-height: 220px;
  max-height: 320px;
  height: 28vw; /* 必要に応じて調整 */
  overflow: hidden;
}

.hero-container {
  position: relative;
  width: 100%;
  height:100%;
}

.recruit-visual,
.work-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 画像の上側を多めに表示 */
  filter: brightness(0.6);
}






.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}


.footer {
  background-color: #111;
  color: #888;
  text-align: center;
  padding: 24px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  user-select: none;
}



/* タブレット（768px～959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .header {
    padding: 0;
  }
  .h
  .header-inner {
    flex-direction: column;
    padding: 6px 12px;
  }
  .logo {
    margin-bottom: 12px;
    left: 0;
  }
  .logo a {
    font-size: 65px;
  }
  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }
  .nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 240px; /* 2列分の幅 */
    margin: 0;
    padding: 0;
  }
  .nav-list li {
    width: calc(50% - 6px);
    text-align: center;
  }
  .social-icons {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 0;
  }
  .nav-inner {
    display: flex;
    align-items: flex-start; /* 上揃え */
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px; /* nav-listとsocial-iconsの間隔 */
    width: 100%;
    max-width: 440px; /* 必要に応じて調整 */
    margin: 0 auto;
  }
  /* セクションタイトル */
  .section-title {
    font-size: 1.6rem;
  }

  /* ヒーロー */
  .hero-text h2 {
    font-size: 13rem;
  }
  .recruit-hero, .contact-hero, .about-hero, .work-hero, .view-hero {
    height: 32vw;
  }
  #recruit-hero .hero-text h2,
  #contact-hero .hero-text h2,
  #about-hero .hero-text h2,
  #work-hero .hero-text h2,
  #view-hero .hero-text h2 {
    font-size: 1.8rem;
    padding: 0.2em 0.6em;
  }

  /* コンテナ */
  .container {
    padding: 0 16px;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  .header-inner {
    flex-direction: column;
    padding: 0;
  }
  .logo {
    margin-bottom: 4px;
    left: 0;
    text-align: center;
    width: 100%;
    padding: 0;
  }
  .logo a {
    font-size: 70px; /* 必要に応じて小さく調整可 */
  }
  .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* ←折り返さない */
    justify-content: flex-start;
    align-items: center; /* アイコンとナビを縦中央に */
    gap: 8px;
    width: 100%;
    padding: 0 2px;
    overflow-x: auto; /* 横スクロール可能に（必要なら） */
    -webkit-overflow-scrolling: touch;
  }
  .nav-list {
    display: flex;
    flex-wrap: nowrap; /* ←折り返さない */
    gap: 8px; /* ナビ項目間の間隔 */
    margin: 0;
    padding: 0;
    width: auto;
    max-width: none;
    justify-content: flex-start;
  }
  .nav-list li {
    width: auto; /* ←幅を自動に戻す */
    flex-shrink: 0; /* 縮小しない */
    text-align: left;
    padding: 0;
  }
  .nav-list li a {
    font-size: 0.9rem;
    padding: 6px 0;
    white-space: nowrap; /* テキスト折り返し防止 */
  }
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 0; /* アイコン間の隙間をゼロに */
  margin: 0;
  padding: 0;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  left: -45px; /* 左に寄せたい分だけ調整 */
}

  .social-icons a img {
    width: 20px;
    height: 20px;
  }
  /* セクションタイトル */
  .section-title {
    font-size: 1.4rem;
    border-bottom-width: 3px;
    margin-bottom: 18px;
  }

  /* ヒーロー */
  .hero {
    height: 60vh;
  }

.hero-text {
  position: absolute;
  top: 40%; /* 例：デフォルト50%から上に移動したい場合 */
  left: 50%;
  transform: translate(-50%, -50%); /* このままでもOK */
}


  .hero-text h2 {
    font-size: 1.5rem;
  }
  .recruit-hero, .contact-hero, .about-hero, .work-hero, .view-hero {
    min-height: 180px;
    max-height: 240px;
    height: 40vw;
  }
  #recruit-hero .hero-text h2,
  #contact-hero .hero-text h2,
  #about-hero .hero-text h2,
  #work-hero .hero-text h2,
  #view-hero .hero-text h2 {
    font-size: 1.5rem;
    padding: 0.2em 0.4em;
    width: 90%;
    box-sizing: border-box;
    word-break: keep-all;
  }

  /* コンテナ */
  .container {
    padding: 0 12px;
  }

  /* フッター */
  .footer {
    padding: 16px 12px;
    font-size: 0.8rem;
  }
}


/* 共通終了 */

/* index開始 */

.mainvisual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}






.hero-text p {
  font-size: 2.5rem;
}



.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list li {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(199,161,106,0.25);
  font-size: 1.08rem;
  transition: background 0.2s;
}

.news-list li:last-child {
  border-bottom: none;
}

.news-date {
  color: #c7a16a;
  font-weight: bold;
  font-size: 1.02rem;
  min-width: 110px;
  letter-spacing: 0.04em;
}

.news-title {
  color: #e6e0d6;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.news-list li:hover {
  background: rgba(60, 45, 30, 0.18);
}








@media (min-width: 768px) and (max-width: 959px) {
  /* ヒーロー画像・テキスト */
  .mainvisual {
    height: 80vh;
  }
  .hero-text p {
    font-size: 1.1rem;
  }

  /* ニュース一覧 */
  .news-list li {
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }
  .news-date {
    min-width: 100%;
    text-align: left;
  }
  .news-title {
    width: 100%;
  }
}


@media (max-width: 767px) {
  .mainvisual {
    position: static; /* またはrelative */
    height: auto;
    max-height: 60vh; /* 必要に応じて調整 */
    object-fit: contain;
    display: block;
    width: 100%;
  }
  .hero-text p {
    font-size: 1.2rem;
  }
}

/* index終了 */

/* about開始 */


.about-container {
  max-width: 900px;
  margin: 48px auto 40px auto;
  padding: 32px 18px 40px 18px;
  background-color: #c0c0c0;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(20,15,10,0.20);
}

.section-title {
  color: #c7a16a; /* ゴールド寄りのブラウン */
  border-bottom: 3px solid #6e4e2e;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  display: inline-block;
  background: none;
  padding: 0 0 6px 0;
  border-radius: 0;
}

.greeting-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.greeting-section > div {
  flex: 1;
}

.president-photo {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
  border: 5px solid #6e4e2e;
  box-shadow: 0 4px 24px rgba(139,92,42,0.22);
  background: #29231c;
  flex-shrink: 0;
  /* 追加：スマホ時中央寄せ */
  display: block;
}


.greeting-message {
  flex: 1;
  color: #e6e0d6;
  font-size: 1.15rem;
  line-height: 1.9;
  background: rgba(60, 45, 30, 0.35);
  border-radius: 10px;
  padding: 26px 28px;
  box-shadow: 0 2px 12px rgba(139,92,42,0.10);
}

.president-name {
  margin-top: 18px;
  font-weight: bold;
  font-size: 1.08rem;
  color: #c7a16a;
  letter-spacing: 0.08em;
  text-align: right;
}

.company-table-section {
  margin-top: 24px;
}

.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: none;
}

.company-table th, .company-table td {
  text-align: left;
  padding: 10px 12px;
  font-size: 1.08rem;
}

.company-table th {
  color: #c7a16a;
  font-weight: 700;
  width: 160px;
  letter-spacing: 0.04em;
  background: rgba(60, 45, 30, 0.45);
  border-radius: 8px 0 0 8px;
  border-right: 2px solid #6e4e2e;
}

.company-table td {
  color: #e6e0d6;
  background: rgba(34, 28, 23, 0.85);
  border-radius: 0 8px 8px 0;
}

.map-section {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(139,92,42,0.10);
}




/* タブレット（768px～959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .about-container {
    max-width: 90%;
    margin: 24px auto 32px auto;
    padding: 24px 16px 32px 16px;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .greeting-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .greeting-message {
    width: 100%;
    padding: 16px 20px;
    font-size: 1.05rem;
  }
  .president-photo {
    width: 80%;
    max-width: 280px;
    margin-left: auto;
    margin-right: 0;
    display: block;
  }
  .president-name {
    align-self: flex-end;
    margin-right: 0;
    margin-top: 8px;
  }
  .company-table {
    width: 100%;
  }
  .company-table th, .company-table td {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
  .company-table th {
    width: 140px;
  }
  .map-section {
    margin-top: 24px;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  .about-container {
    max-width: 95%;
    margin: 20px auto 28px auto;
    padding: 20px 14px 28px 14px;
  }
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .greeting-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .greeting-message {
    width: 100%;
    text-align: left;
    padding: 14px 18px;
    font-size: 1rem;
  }
  .president-photo {
    width: 90%;
    max-width: 320px;
    margin-left: auto;
    margin-right: 0;
    display: block;
  }
  .president-name {
    width: auto;
    text-align: right;
    align-self: flex-end;
    margin-right: 0;
    margin-top: 8px;
  }
  .company-table th, .company-table td {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
  .company-table th {
    width: 130px;
  }
  .map-section {
    margin-top: 20px;
  }
}

/* about終了 */





/* work開始 */

.works-section {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.work-block {
  display: flex;
  align-items: flex-start;
  background: rgba(60, 45, 30, 0.35);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(139,92,42,0.10);
  padding: 24px 18px;
  gap: 28px;
}

.work-image {
  flex-shrink: 0;
  width: 300px;
  height: 230px;
  border-radius: 10px;
  overflow: hidden;
  background: #29231c;
  box-shadow: 0 2px 8px rgba(139,92,42,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-title {
  color: #c7a16a;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  letter-spacing: 0.04em;
}

.work-desc {
  color: #e6e0d6;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.7;
}
/* タブレット（768px～959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .works-section {
    gap: 24px;
  }
  .work-block {
    flex-direction: column;
    padding: 18px 16px;
    gap: 18px;
  }
  .work-image {
    order: 3; /* 画像を一番下に */
    width: 100%;
    max-width: 360px;
    height: 360px;
    margin: 0 auto;
  }
  .work-content {
    order: 1; /* 見出し＋説明を一番上に */
    width: 100%;
  }
  .work-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .work-desc {
    font-size: 0.98rem;
  }
}

/* スマホ（767px以下） */
@media (max-width: 767px) {
  .works-section {
    gap: 20px;
  }
  .work-block {
    flex-direction: column;
    padding: 16px 14px;
    gap: 16px;
  }
  .work-image {
    order: 3;
    width: 100%;
    max-width: 320px;
    height: 320px;
    margin: 0 auto;
  }
  .work-content {
    order: 1;
    width: 100%;
  }
  .work-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }
  .work-desc {
    font-size: 0.95rem;
  }
}


/* work終了 */


/* recruit開始 */

.recruit-message-section {
  margin-bottom: 36px;
}

.recruit-message {
  background: rgba(60, 45, 30, 0.25);
  color: #e6e0d6;
  border-radius: 10px;
  padding: 22px 28px;
  font-size: 1.12rem;
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(139,92,42,0.08);
}

.company-table-section {
  margin-top: 24px;
}

.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: none;
}

.company-table th, .company-table td {
  text-align: left;
  padding: 10px 12px;
  font-size: 1.08rem;
}

.company-table th {
  color: #c7a16a;
  font-weight: 700;
  width: 160px;
  letter-spacing: 0.04em;
  background: rgba(60, 45, 30, 0.45);
  border-radius: 8px 0 0 8px;
  border-right: 2px solid #6e4e2e;
}

.company-table td {
  color: #e6e0d6;
  background: rgba(34, 28, 23, 0.85);
  border-radius: 0 8px 8px 0;
}

.recruit-contact {
  margin-top: 36px;
  text-align: center;
  font-size: 1.08rem;
}

.recruit-contact a {
  color: #c7a16a;
  text-decoration: underline;
  transition: color 0.2s;
}

.recruit-contact a:hover {
  color: #fff3b0;
}












.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: none;
}

.company-table th,
.company-table td {
  text-align: left;
  padding: 10px 12px;
  font-size: 1.08rem;
  vertical-align: top;
}

.company-table th {
  color: #c7a16a;
  font-weight: 700;
  width: 160px;
  letter-spacing: 0.04em;
  background: rgba(60, 45, 30, 0.45);
  border-radius: 8px 0 0 8px;
  border-right: 2px solid #6e4e2e;
}

.company-table td {
  color: #e6e0d6;
  background: rgba(34, 28, 23, 0.85);
  border-radius: 0 8px 8px 0;
}





.company-table th label {
  display: inline-block;   /* または block */
  width: 150px;            /* お好みの幅に調整してください */
  white-space: nowrap;     /* ラベル内の改行を防止 */
  text-align: left;        /* ラベルのテキスト揃え */
  padding-right: 12px;     /* ラベルと入力欄の間隔 */
  vertical-align: middle;
  text-align: center;
}  



/* タブレット（768px～959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .recruit-message-section {
    margin-bottom: 28px;
  }
  .recruit-message {
    font-size: 1.05rem;
    padding: 18px 22px;
  }
  .company-table-section {
    margin-top: 18px;
  }
  .company-table {
    width: 100%;
    border-spacing: 0 8px;
  }
  .company-table th,
  .company-table td {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
  .company-table th {
    width: 140px;
  }
  .recruit-contact {
    margin-top: 28px;
    font-size: 1rem;
  }
}
/* タブレット（768px～959px） */
@media (min-width: 768px) and (max-width: 959px) {
  .recruit-message-section {
    margin-bottom: 28px;
  }
  .recruit-message {
    font-size: 1.05rem;
    padding: 18px 22px;
  }
  .company-table-section {
    margin-top: 18px;
  }
  .company-table {
    width: 100%;
    border-spacing: 0 8px;
  }
  .company-table th,
  .company-table td {
    font-size: 0.98rem;
    padding: 8px 10px;
  }
  .company-table th {
    width: 140px;
  }
  .recruit-contact {
    margin-top: 28px;
    font-size: 1rem;
  }
}

/* スマホ（600px以下） */
@media (max-width: 767px) {
  .recruit-message-section {
    margin-bottom: 24px;
  }
  .recruit-message {
    font-size: 1rem;
    padding: 16px 18px;
  }
  .company-table-section {
    margin-top: 16px;
  }
  .company-table {
    width: 100%;
    table-layout: fixed;
    border-spacing: 0 6px;
  }
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 6px 4px 12px 4px;
    font-size: 0.95rem;
  }
  .company-table th {
    width: auto;
    text-align: left;
    background: rgba(60, 45, 30, 0.45);
    border-right: 2px solid #6e4e2e;
    border-radius: 8px 0 0 8px;
    margin-bottom: 0;
  }
  .company-table td {
    background: rgba(34, 28, 23, 0.85);
    border-radius: 0 8px 8px 0;
    margin-top: 0;
  }
  .company-table label {
    display: block;
    width: 100%;
    white-space: normal;
    text-align: left;
    padding-right: 0;
    font-size: 0.9rem;
  }
  .recruit-contact {
    margin-top: 24px;
    font-size: 0.98rem;
  }
}


/* recruit終了 */






/* contact開始 */

.contact-message {
  background: rgba(60, 45, 30, 0.25);
  color: #e6e0d6;
  border-radius: 10px;
  padding: 18px 24px;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(139,92,42,0.08);
}


input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #6e4e2e;
  border-radius: 6px;
  background: #29231c;
  color: #e6e0d6;
  font-size: 1.05rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #c7a16a;
  outline: none;
  background: #221c17;
}

textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.contact-submit {
  text-align: center;
  margin-top: 28px;
}

button[type="submit"] {
  background: linear-gradient(90deg, #a07c4f 60%, #c7a16a 100%);
  color: #222;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 12px 50px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(139,92,42,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

button[type="submit"]:hover {
  background: linear-gradient(90deg, #c7a16a 60%, #a07c4f 100%);
  color: #181512;
}
@media (min-width: 768px) and (max-width: 959px) {
  .contact-message {
    font-size: 1rem;
    padding: 16px 20px;
    margin-bottom: 24px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    padding: 10px 12px;
    font-size: 1rem;
  }
  .contact-submit {
    margin-top: 24px;
  }
  button[type="submit"] {
    padding: 12px 40px;
    font-size: 1rem;
  }
}


@media (max-width: 767px) {
  .contact-message {
    font-size: 0.95rem;
    padding: 14px 18px;
    margin-bottom: 20px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    padding: 8px 10px;
    font-size: 0.95rem;
  }
  .contact-submit {
    margin-top: 20px;
  }
  button[type="submit"] {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 1rem;
    display: block;
    margin: 0 auto;
  }
}


/* contact終了 */

















