@charset "utf-8";

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

html{
  height: 100%;
  font-size: 62.5%;
}

body {
/*  min-width: 1040px;*/
  background: #ffffff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, sans-serif;
  font-size: 1.6rem;
  color: #333;
  letter-spacing: 0.08em;
  line-height: 1.8;
  letter-spacing: .08em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ヘッダー
--------------------------------------------------*/
.header_block{
  margin: 32px 100px;
}
.header_block_txt{
  margin-top: 32px;
  text-align: center;
}

/* フッター
--------------------------------------------------*/
.footer_block{
  margin: 32px 40px;
}
.footer_block_txt{
  margin-top: 32px;
  text-align: center;
}


/* トップタイトル
------------------------------------------------*/
.toptitle {
  color: #0066FF;
  padding: 0.5em 0;
  border-top: solid 3px #0066FF;
  border-bottom: solid 3px #0066FF;
}
.toptitle:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ad";
  color: #0066FF;
  position: relative;
  margin-right : 0.5em;
}



/* フォーム
------------------------------------------------*/
/* テキストボックス */
.input_text{
  width: 100%;
  min-height: 40px;
  margin: 9px 0;
  padding: 0 18px;
  border: 1px solid #0066FF;
  border-radius: 4px;
}
.text_ss{
  width: 80px;
}
.text_s{
  width: 126px;
}
.text_m{
  width: 200px;
}
.text_l{
  width: 400px;
}

/* 同意事項 */
.agree-text {
  font-size: 1.3rem;
  text-align: left;
  color: #0B0C66;
}

/* 注意事項 */
.caution-text {
  font-size: 1.5rem;
  font-weight:  bold;
  text-align: left;
  color: #be1309;
}

/* エラーメッセージ */
.error-text {
  font-size: 1.5rem;
  font-weight:  bold;
  text-align: center;
  color: #be1309;
}


/* 入力チェック
--------------------------------------------------*/
.error { color:#d9534f; white-space:nowrap; display:inline; }



/* 配置
--------------------------------------------------*/
.align_l {
	text-align: left;
}
.align_c {
	text-align: center;
}
.align_r {
	text-align: right;
}



/* ボタン
------------------------------------------------*/
/* ログインボタン */
.submit_btn {
  display: inline-block;
  padding: 0.8em 3em;
  background-color: #0066FF; /* 背景色 */
  box-shadow: 0 2px 0 #002E4C; /* 影の太さ・色 */
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  text-decoration: none; /* 文字の下線を消す */
  font-size: 1.8rem;
  font-weight: bold;
}

/* ログインボタン ホバー時 */
.submit_btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}

/* ボタンエリア */
.submit-flame{
  position: relative;
  margin: 60px 0 50px;
/**  margin: 104px 0 66px;**/
  text-align: center;
}


/* メニューボタン */
.menulist {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  margin: 0 auto;
  padding: 10px 20px 10px 20px;
  border: none;
  border-radius: 10px;
  background: #0066FF;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
}

.menulist a {
  text-decoration: none;
}

/*
.menulist a:visited {
  color: #fff;
}
*/

.menulist a:link, a:visited, a:hover, a:active, a:focus {
  color: #fff;
}



.mail_btn::after {
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  margin-left: 8px;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
}


.menulist:hover {
  opacity: 0.4;
}


/* -- responsive ------------------------------------------- */

@media screen and (max-width: 600px) {

  .container  {
    width: 98%;
    margin: 0 auto;
  }

  h2 {
    font-size: 1.6rem;
  }


}

