body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
  margin: 0;
  color: re;
  background: #fff;
    
  /*font-family: 'M PLUS Rounded 1c', sans-serif;*/

}

.container {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}

.title {
  margin: 60px 0 20px;
  font-size: 28px;
}

.form {
  margin-top: 30px;
}

.field {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.btn {
  padding: 12px 20px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
    margin-bottom:  30px;
}


.contact-page {
  padding-top: 60px;
}





/* メニューの下に本文が潜り込まないように余白 */
.content{
  padding-top: 80px; /* 70〜90で微調整OK */
}


/* ===== profile: hamburger を白背景でも見えるようにする ===== */
@media (max-width: 768px){
  .hamburger{ 
    display: block !important;
  }

  .hamburger span{
    background: #111 !important;  /* ← 白→黒に上書き */
  }

  /* さらに確実に見せたいならボタンにうっすら背景 */
  .hamburger{
    background: rgba(255,255,255,0.85);
    border-radius: 10px;
  }
}


/* ===== CONTACTだけ：ハンバーガーメニュー背景の左右余白を消す ===== */
@media (max-width: 768px){
  #menu{
    position: fixed !important;
    inset: 0 !important;         /* top/right/bottom/left:0 */
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important; /* 角丸が入ってると余白っぽく見えるので保険 */
  }

  html, body{
    margin: 0;
    padding: 0;
  }
}


/* ===== ヘッダー画像なし（profile用） ===== */
.header--simple{
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.10);
  background: #fff;
}
.header__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.site-logo{
  margin: 0;
  font-size: 18px;
  letter-spacing: .08em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.site-logo a{
  text-decoration: none;
}


/* ===== ヘッダー画像なし（profile用） ===== */
.header--simple{
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.10);
  background: #fff;
}
.header__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}
.site-logo{
  margin: 0;
  font-size: 18px;
  letter-spacing: .08em;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.site-logo a{
  text-decoration: none;
}

/* PCで2カラム化 */
@media (min-width: 900px){
  .profile-hero{
    grid-template-columns: 420px 1fr;
    gap: 30px;
  }
}

/* プロフィールページ：ヘッダーのうっすら線だけ消す */
.header--simple{
  border-bottom: none !important;
}

/* ロゴ消した後の余白を少し整える（上品バランス） */
.header__bar{
  padding-top: 20px;
  padding-bottom: 20px;
}


/* ===== profile: hamburger を白背景でも見えるようにする ===== */
@media (max-width: 768px){
  .hamburger{ 
    display: block !important;
  }

  .hamburger span{
    background: #111 !important;  /* ← 白→黒に上書き */
  }

  /* さらに確実に見せたいならボタンにうっすら背景 */
  .hamburger{
    background: rgba(255,255,255,0.85);
    border-radius: 10px;
  }
}





body{
  background:#faf9f7;
}





/* CONTACT：メニューをコンテナから切り離して全幅固定 */
#menu{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  z-index: 9999;
}



/* ===== CONTACT: メニューを画面全幅で固定 ===== */
#menu{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  z-index: 9999;
}

/* メニューの下に本文が潜り込まないように余白 */
.content{
  padding-top: 50px; /* 70〜90で微調整OK */
}


/* ===== profile: hamburger を白背景でも見えるようにする ===== */
@media (max-width: 768px){
  .hamburger{ 
    display: block !important;
  }

  .hamburger span{
    background: #111 !important;  /* ← 白→黒に上書き */
  }

  /* さらに確実に見せたいならボタンにうっすら背景 */
  .hamburger{
    background: rgba(255,255,255,0.85);
    border-radius: 10px;
  }
}


/* ===== CONTACT 強制ベージュ化 ===== */

/* 見出し */
h2{
  text-align:center;
  font-size:30px;
  letter-spacing:.15em;
  font-weight:600;
  margin-bottom:10px;
  color:#8c6f63;
}

h2::after{
  content:"";
  display:block;
  width:40px;
  height:2px;
  background:#d8c3b8;
  margin:12px auto 0;
}

/* 説明文 */
h2 + p{
  text-align:center;
  font-size:14px;
  color:#777;
  margin-bottom:40px;
}

/* ラベル */
form label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
  color:#6b5b52;
}

/* 入力欄 */
form input,
form textarea{
  width:100%;
  padding:14px;
  border:1px solid #e5d7cf;
  border-radius:10px;
  background:#fdfaf7;
  font-size:14px;
}

/* ボタン */
form button{
  background:#bfa89c;
  color:#fff;
  border:none;
  padding:14px 42px;
  border-radius:40px;
  font-size:14px;
  cursor:pointer;
}


/* ===== CONTACT 上品アップグレード ===== */

/* フォーム全体を囲う */
form{
  background: linear-gradient(180deg,#fdfaf7 0%, #f8f2ed 100%);
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.06);
  max-width: 700px;
  margin: 60px auto;
}



.contact-heading{
  text-align:center;
  font-size:14px;
  letter-spacing:.4em;
  color:#bfa89c;
  margin-bottom:15px;
}

.contact-heading span{
  display:block;
  font-size:28px;
  letter-spacing:.15em;
  color:#8c6f63;
  margin-top:10px;
}


form button{
  background: linear-gradient(135deg,#cbb2a6,#bfa89c);
  color:#fff;
  border:none;
  padding:15px 48px;
  border-radius:50px;
  font-size:14px;
  letter-spacing:.2em;
  cursor:pointer;
  transition:.3s;
  /*box-shadow:0 10px 20px rgba(191,168,156,.3);*/
}

form button:hover{
    background: linear-gradient(135deg,#cbb2a6,#bfa89c);
  transform:translateY(-2px);
  /*box-shadow:0 15px 30px rgba(191,168,156,.4);*/
}


form input:focus,
form textarea:focus{
  border-color:#bfa89c;
  box-shadow:0 0 0 4px rgba(191,168,156,.2);
}

.contact-heading{
  margin-bottom: 5px;   /* ← 下の余白を減らす */
}

.contact-heading span{
  margin-top: 4px;      /* ← 上の余白を小さくする */
}


.contact-heading{
  font-size:12px;
  letter-spacing:.35em;
  color:#c3b3aa;
}


/* ===== 送信ボタン最終確定版 ===== */
form input[type="submit"]{
  appearance: none;
  -webkit-appearance: none;

  background: linear-gradient(135deg,#cbb2a6,#bfa89c) !important;
  color:#fff !important;

  border:none !important;
  padding:15px 48px !important;
  border-radius:50px !important;

  font-size:14px;
  letter-spacing:.2em;
  cursor:pointer;
  transition:.3s;
}

form input[type="submit"]:hover{
  background: linear-gradient(135deg,#b89d91,#a88f84) !important;
  transform:translateY(-2px);
}


input[type="submit"]{
  background:#cbb2a6 !important;
}


/* ===== submit ボタン強制上書き（最終） ===== */
input[type="submit"],
button[type="submit"],
.wpcf7-submit{
  appearance:none !important;
  -webkit-appearance:none !important;

  background: linear-gradient(135deg,#cbb2a6,#bfa89c) !important;
  background-color:#cbb2a6 !important;

  color:#fff !important;

  border:0 !important;
  border-color:transparent !important;

  box-shadow: 0 10px 20px rgba(191,168,156,.30) !important;

  padding:15px 48px !important;
  border-radius:50px !important;

  font-size:14px !important;
  letter-spacing:.2em !important;

  cursor:pointer !important;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.wpcf7-submit:hover{
  background: linear-gradient(135deg,#b89d91,#a88f84) !important;
  transform: translateY(-2px) !important;
}
