@charset "utf-8";
/* ========================
  agreement
======================== */

#contentWrap {
  /* margin: 80px 0 0; */
  margin: 0 0 0;
}

.ftr_Tel {
  display: none;
}

/* common
--------------- */
.main {
  padding:0 0 100px;
}
.title_Box {
  /* background: rgb(55, 167, 202);
  background: linear-gradient(90deg, rgba(55, 167, 202, 1) 0%, rgba(52, 165, 201, 1) 8%, rgba(0, 92, 162, 1) 100%); */
  background: #004136;
  padding: 70px 0;
  text-align: center;
}
.title_Box h2 {
  /* color:#FFF;
  font-size: 26px;
  letter-spacing: 0.2em; */
  max-width: 240px;
  width:94%;
  margin: 0 auto;
}




/* contents
--------------- */
.agreement_Wrap {
  max-width: 1000px;
  width:94%;
  margin: 0 auto;
}
.agreement_Wrap h3.sttl {
  text-align: center;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.13em;
  padding: 0 0 30px;
}



.txt_Area {
  padding: 0 0 0;
  text-align: center;
}

.txt_Area p.date {
  padding: 0 0 30px;
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}




.agreement_block {
    border:1px solid #EFEFEF;
    padding: 50px 50px;
    line-height: 1.8;
    color: #333;
    font-size: 15px; /* 基本フォントサイズ */
}


/* メインの定義リスト（全条文） */
.agreement_block dl {
    margin-top: 0;
}

/* 条文タイトル (dt) */
.agreement_block dt {
    font-size: 14px;
    font-weight: bold;
    padding: 4px 0;
    /* border-bottom: 1px solid #f0f0f0; */
    margin-top: 20px; /* 前の条文との区切り */
}

/* 条文内容 (dd) */
.agreement_block dd {
    margin-left: 0;
    /* padding-top: 15px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #f0f0f0; */
    padding-top: 5px;
    padding-bottom: 10px;
}

/* dd直下の段落 */
.agreement_block dd > p {
    margin: 0 0 10px 0;
    font-size: 13px;
}



/* 項目のリスト (dd直下の ul) */
.agreement_block dd > ul {
    list-style: none;
    /* padding-left: 10px; 全体を少しインデント */
    margin-top: 10px;
    margin-bottom: 10px;
}

.agreement_block dd > ul > li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 10px;
    /* 1. 2. のためのぶら下げインデント */
    text-indent: -1em;
    font-size: 13px;
}


/* 号のリスト (innerUl クラスを持つ ul) */
.agreement_block .innerUl {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.agreement_block .innerUl li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 5px;
    /* (1), (2) のためのぶら下げインデント */
    text-indent: -1.5em;
    font-size: 13px;
}



/* 事務局情報 */
.agreement_block .office-info {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #f9f9f9;
    margin-top: 15px;
    line-height: 1.6;
    font-size: 14px;
}

/* 備考/注記 */
.agreement_block .note {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
    padding: 10px;
}

/* 最終行 */
.agreement_block .end-note {
    text-align: right;
    margin-top: 40px;
}



/*=====================================
  同意エリアのスタイル
=======================================*/
.consent-area {
    text-align: center;
    padding: 30px;
    margin-top: 30px;
}

.consent-area label {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.consent-area input[type="checkbox"] {
    transform: scale(1.5);
    margin-right: 10px;
    vertical-align: middle;
}

/* 登録ボタン */
#registerButton {
    padding: 20px 80px;
    font-size: 16px;
    /* font-weight: bold; */
    letter-spacing: 0.06em;
    color: #fff;
    /*background-color: #666;*/
    background-color: #004136;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
}

/* 無効時のボタン（初期状態） */
#registerButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* ホバー時のスタイル */
#registerButton:not(:disabled):hover {
    /*background-color: #004136;*/
    background-color: #666;
}

/* エラーメッセージ */
.error-message {
    color: #d9534f; /* 赤色 */
    font-size: 14px;
    margin-top: 15px;
    height: 18px; /* レイアウト崩れ防止のために高さを確保 */
}






.notes.no_att {
  margin: 60px auto 60px;
}



/*--------------------------------------------------------
  tab/sp
--------------------------------------------------------*/
@media only screen and (max-width: 1024px) {



}

/*--------------------------------------------------------
  sp
--------------------------------------------------------*/
@media only screen and (max-width: 767px) {

  #contentWrap {
    margin: 0 0 0;
  }


  /* common
  --------------- */
  .main {
    padding:0 0 50px;
  }
  .title_Box {
    padding: 30px 0;
    width:100%;
    margin: 0 auto;
  }
  .title_Box h2 {
    font-size: 20px;
  }

  .inner .title_Box {
    width:100%;
  }



  /* contents
  --------------- */
  .txt_Area p {
    text-align: left;
  }


  .agreement_block {
      padding: 20px 20px;
  }

  /* 条文タイトル (dt) */
  .agreement_block dt {
      font-size: 14px;
      font-weight: bold;
      padding: 0 0;
      /* border-bottom: 1px solid #f0f0f0; */
      margin-top: 10px; /* 前の条文との区切り */
  }


  /* 号のリスト (innerUl クラスを持つ ul) */
  .agreement_block .innerUl {
      padding-left: 10px;
  }

  #registerButton {
      padding: 20px;
      width: 100%;
  }

  .notes.no_att {
    margin: 30px auto 30px;
  }


}
