body {

    background: #F4F3E5;
    font-family: 'Noto Sans JP', sans-serif;
    color: #3F3632;

}



#fixedMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px; /* お好みの高さに調整してください */
    background: #F4F3E5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; /* お好みのパディングに調整してください */
    z-index: 1000; /* 他の要素の上に表示されるように高いz-indexを指定 */
}
/* リンクのずれを直す */

:target {
    padding-top: 200px;  /* ヘッダーの高さと同じ値に設定 */
  margin-top: -200px;
}


  
/* ロゴ画像のスタイル */
#fixedMenu img {
    height: 35px; /* お好みの高さに調整してください */
    width: auto;
    padding-left: 3rex;
}

/* テキストのスタイル */
#fixedMenu p {
    color: #3F3632; /* お好みの文字色に変更してください */
    margin: 0;
    padding-right: 3rex;
    font-size:80%;
}

.main_support {
    font-family: 'Noto Sans JP', sans-serif;
    margin-top: 100px; /* #fixedMenuの高さと同じ値に設定 */
    /* ... その他のスタイル ... */
}

a.custom-underline {
    text-decoration: none; /* 既存のアンダーラインを削除 */
    position: relative;
    display: inline-block; /* インライン要素をブロック要素のように扱う */
}

a.custom-underline::after {
    content: ''; /* 空の内容 */
    position: absolute;
    left: 0;
    bottom: -2px; /* この値を調整してアンダーラインの位置を変更 */
    height: 1px; /* アンダーラインの太さ */
    width: 100%; /* アンダーラインの幅をリンクテキストの幅に合わせる */
    background-color: currentColor; /* リンクテキストの色と同じ色にする */
}

h2.h2nomals {
    font-size: 1.6rem;
    padding: .5em 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; 
    letter-spacing: 0.1em;
    border-radius: 0px 50px/50px 20px;
    border: none;
    border-bottom: solid 2px #333;
    position: relative;  /* 追加 */
}

h2.h2nomals::after {
    content: '';
    position: absolute;
    bottom: 0;  /* 線の位置に合わせる */
    right: 0;  /* 右端に配置 */
    width: 25px;  /* 画像の幅に合わせて調整 */
    height: 25px;  /* 画像の高さに合わせて調整 */
    background: url('images/nodo_bird.png') no-repeat;  /* 画像のパスを指定 */
    background-size: contain;

}

@media screen and (max-width: 750px){
    h2.h2nomals  {
margin-top: 100px;

    }
    .main_top {
        height: 100px; 
    
    }
    
}  



.suport_rt {

    display: block;
    padding-top: 8px;
    padding-bottom: 1px;
    text-align: center;

}

@media screen and (max-width: 750px){
    .suport_rt {
        font-size: 80%;
        padding-bottom: 1px;
}  

}
.menu-font_s_title {

    margin: 0;
    color: #3F3632;
    font-size: 2rem;

    font-weight: 500; 
    letter-spacing: 0.1em;  /* 文字間隔を広げる */
}

.support_title{
    padding-top: 50px;
    text-align: center;
    font-family: 'Montserrat', sans-serif; /* フォントファミリーとして 'Montserrat' を指定 */
}

.tag{
padding-top: 10px ;
margin-left: 30px;
margin-bottom: 30px;
}

.tag2{
    padding: 15px auto;
    font-size: 1.1rem;
    }


 /* フォーム */
  /* ーーーーーーーー*/

  /* CSS Document */
  /* ------------------------------------------------------------------------ */
  
  /*  Reset
  
  /* ------------------------------------------------------------------------ */
  
  #contentsBlock section{
      margin-bottom: 100px;
  }
  
  
  /*-------------------------------------------
  MV
  -------------------------------------------*/
  
  #mv {
      width: 100%;
      height: 350px;
  }
  
  
  
  section .inner .contact_title{
      margin: 0 auto 90px;
      text-align: center;
      display: block;
  }
  section .inner .contact_title p{
      text-align: left;
      display: inline-block;
  }
  
  section .inner figure{
      text-align: center;
      max-width: 400px;
      width: 100%;
      margin: 50px auto 0;
  }
  section .inner figure a{
      padding: 45px;
      border: 1px solid #e1e1e1;
      display: flex;
      justify-content: center;
      align-items: center;
  }
  
  @media screen and (max-width: 480px){
      #contact #mainVisual > .inner > .right_area {
          background-position: top right 20%;
      }
  }
  #contact {
    margin-top: 10px;  /* 以前に設定した :target の margin-top と同じ値 */
}   

@media screen and (max-width: 750px){
    #contact {
    margin-top: 10px;  /* 以前に設定した :target の margin-top と同じ値 */
    }
}   


.required-label {
    color: red;       /* 赤文字 */
    border: 1px solid red; /* 赤枠 */
    font-size: 70%;   /* 文字サイズを80%に設定 */
    padding: 14px;     /* テキストと枠の間に余白を設定 */
    margin: 4px;      /* 要素の外側の余白 */
    display: inline-block; /* インラインブロック要素として表示 */
}

 #form_submit {
    text-align: center; /* ボタンを中央に配置 */
    margin: 20px 40px; /* 上下にマージンを設定 */
}

#form_submit_button {
    background-color: green !important; /* ボタンの背景色を緑に設定 */
    color: white !important; /* テキストの色を白に設定 */
    border: none !important; /* ボーダーを削除 */
    padding: 15px 30px !important; /* 内側の余白を大きく設定 */
    font-size: 16px !important; /* フォントサイズを設定 */
    border-radius: 5px !important; /* 角を丸くする */
    cursor: pointer !important; /* カーソルをポインターに設定 */
    transition: background-color 0.3s !important; /* 背景色の変化にアニメーションを設定 */
}

#form_submit_button:hover {
    background-color: #005f00; /* ホバー時の背景色を濃い緑に設定 */
}

