@charset "UTF-8";
/* ===================================
基本設定
=================================== */
html {
  overflow-y: scroll;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
}

li {
  list-style: none;
}

/* ===================================
共通
=================================== */
/* フォント */
body {
  font-family: Verdana, Roboto, "Droid Sans", Meiryo, "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic ProN", sans-serif;
}

select, input, button, textarea {
  font-family: Verdana, Roboto, "Droid Sans", Meiryo, "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* ===================================
画面全体のレイアウト
=================================== */
/* 画面全体の表示設定 */
body {
  background: WhiteSmoke;
  /* 背景色 */
  text-align: center;
  /* フォームエリアを中央に表示 */
}

/* フォームエリア全体の設定 */
div.container {
  width: 100%;
  /* 画面の横幅 */
  font-size: 16px;
  /* フォントの初期サイズ */
  color: #333;
  /* フォントの初期カラー */
  margin: 0 auto;
  /* 画面の中央に表示 */
  text-align: left;
  /* 左寄せ */
}

/* ===================================
設問エリアのレイアウト
=================================== */
/* 設問エリア全体の設定 */
div.wrapper {
  width: 850px;
  /* 画面の横幅 */
  margin: 0 auto;
  /* 中央に表示 */
}

/* 設問の表 */
table.items {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-right: 1px solid #CFCFCF;
  border-top: 1px solid #CFCFCF;
  border-bottom: 1px solid #CFCFCF;
}

/* 設問の行 */
tr.item {
  clear: both;
}

/* 必要であれば行のデザインを設定することができます */
/*設問名のセルのデザイン */
td.label {
  width: 230px;
  /* 実際の設問名の文字の長さに合わせて調整してください */
  padding: 4px 0 4px 20px;
  color: #224;
  font-size: 13px;
  font-weight: bold;
  vertical-align: middle;
  /* ラベルの配置 セルの上部に表示したい場合は top */
}

/* 設問の入力セルおよび表示セルのデザイン */
td.value {
  width: 100%;
  padding: 20px 20px 10px;
  display: block;
  box-sizing: border-box;
}

/* 設問の入力例/説明セルのデザイン */
td.comment {
  font-size: 12px;
  padding: 10px;
  float: left;
  display: block;
}

/* 入力セルの「氏」「名」の文字のデザイン */
span.label_name {
  padding-right: 5px;
  font-size: 85%;
  font-weight: bold;
  float: left;
}

input[name=person_name_last],
input[name=person_name_last_kana] {
  width: 40% !important;
  float: left;
  margin-right: 10px;
}

input[name=person_name_first],
input[name=person_name_first_kana] {
  width: 40% !important;
  float: left;
  margin-right: 10px;
}

/* 入力確認画面、完了画面の入力された文字のデザイン */
p.value {
  font-size: 110%;
}

p.value::after {
  content: "";
  clear: both;
}

/* ボタンの表示エリアの設定 */
div.button_area {
  width: 850px;
  margin: 10px auto 10px auto;
  /* 中央に表示、上下に10pxの余白 */
  padding: 10px 0 10px 0;
  /* ボタンとの上下の隙間のサイズ */
  text-align: center;
  /* 中央にボタンを表示 */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 入力エラーメッセージのデザイン */
div.message {
  padding: 5px 10px 5px 10px;
  /* メッセージテキストと背景色の隙間のサイズ */
  margin: 10px 13px 10px 13px;
  /* 上 右 下 左 の隙間のサイズ */
  font-size: 14px;
  font-weight: bold;
  color: OrangeRed;
  background: LightYellow;
}

/* 公開終了メッセージのデザイン */
div.finished-message {
  padding: 5px 10px 5px 10px;
  /* メッセージテキストと背景色の隙間のサイズ */
  margin: 10px 13px 10px 13px;
  /* 上 右 下 左 の隙間のサイズ */
  font-size: 14px;
  font-weight: bold;
  color: Crimson;
  background: MistyRose;
}

/* ===================================
入力コントロールのデザイン
=================================== */
/* 確認／送信／戻る／登録ボタン */
input[type=button] {
  font-size: 18px;
  background: SteelBlue;
  /* ボタンの色 */
  padding: 5px 10px 2px 10px;
  /* ボタンの文字の 上 右 下 左 の隙間のサイズ */
  margin: 0px 10px 0px 10px;
  /* 確認画面に表示される2つのボタンの左右の余白サイズ */
  border: none;
  /* ボタンに枠線をつけたい場合は、ここを設定してください */
  color: white;
  /* 文字の色 */
  font-weight: bold;
}

input[type=button]:hover {
  cursor: pointer;
}

/* 入力中のフィールドの背景色 */
/* それぞれの入力フィールドにカーソルが移動したときに背景の色が変わります。不要な場合は削除してください。 */
input[type=text]:focus {
  background-color: LightYellow;
}

/* テキストボックス */
select:focus {
  background-color: LightYellow;
}

/* プルダウン */
textarea:focus {
  background-color: LightYellow;
}

/* テキストエリア */
/* ===================================
必須項目のマークおよびメッセージなど
=================================== */
/* 必須項目のマーク */
span.required {
  float: right;
  margin-right: 4px;
  font-size: 60%;
  font-weight: bold;
  color: OrangeRed;
}

span.required:after {
  /* ここを編集することで表示されるマークを変更できます */
  content: "※必須";
}

/* 必須項目についての説明文 */
p.required_msg {
  text-align: right;
  margin-right: 4px;
  font-size: 80%;
  font-weight: bold;
  color: OrangeRed;
}

p.required_msg:after {
  /* ここを編集することで表示されるマークを変更できます */
  content: "「※必須」となっている項目は必ず入力してください。";
}

/* メールアドレスの再入力メッセージ */
p.label_mail {
  margin: 5px 0 1px 0;
  font-size: 85%;
  font-weight: bold;
  color: DarkSlateGray;
}

p.label_mail:after {
  /* ここを編集することで表示されるメッセージを変更できます */
  content: "確認のため、もう一度メールアドレスを入力してください";
}

input[type=checkbox] {
  width: auto !important;
}

/* ===================================
スマートフォン表示用のレイアウト
=================================== */
/* スマートフォンとして認識する画面の横幅のサイズ */
@media screen and (max-width: 479px) {
  /* フォームエリア全体の設定 */
  div.container {
    width: 100%;
  }
  /* 設問エリア全体の設定 */
  div.wrapper {
    width: 100%;
  }
  /* 設問の表 */
  table.items {
    width: 100%;
    background: #fff;
    border-left: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
  }
  /*設問名のセルのデザイン */
  td.label {
    float: left;
    width: 95%;
    height: 25px;
    padding-top: 10px;
    padding: 20px;
    border-right: 2px solid #cfcfcf;
    border-bottom: 1px solid #CFCFCF;
    border-top: 1px solid #CFCFCF;
  }
  /* 必須項目のマーク */
  /* 設問の入力セルおよび表示セルのデザイン */
  /* 設問の入力例/説明セルのデザイン */
  /* 設問の入力例/テキストボックス */
  /* 設問の入力例/テキストエリア */
  /* ボタンの表示エリアの設定 */
}
@media screen and (max-width: 479px) and (max-width: 768px) {
  td.label {
    height: auto;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 479px) {
  input[type=checkbox] {
    width: auto !important;
  }
}
@media screen and (max-width: 479px) {
  span.required {
    float: initial;
  }
}
@media screen and (max-width: 479px) {
  td.value {
    float: left;
    width: 95%;
    /* 入力コントロールの幅に合わせて調整してください */
    padding-bottom: 0px;
    padding: 20px;
    border-bottom: 1px solid #CFCFCF;
  }
}
@media screen and (max-width: 479px) {
  td.comment {
    float: left;
    width: 95%;
    padding: 20px;
  }
}
@media screen and (max-width: 479px) {
  input[type=text] {
    font-size: 120%;
    width: 95% !important;
  }
}
@media screen and (max-width: 479px) {
  textarea {
    width: 95%;
    height: 100px;
  }
}
@media screen and (max-width: 479px) {
  div.button_area {
    width: 95%;
  }
}
/*追加css*/
header {
  height: 69px;
  background: rgba(255, 255, 255, 0.83);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

header .header-inner .logo {
  padding: 17px 15px;
  display: flex;
  align-items: center;
}

header .header-inner .logo span {
  font-size: 12px;
  display: block;
  padding-left: 15px;
}

@media (max-width: 400px) {
  header .header-inner .logo span {
    font-size: 3.2vw;
  }
}
header .header-inner .logo img {
  max-width: 210px;
  width: 180px;
}

@media (max-width: 768px) {
  header .header-inner .logo img {
    width: 50%;
  }
}
.mv::before {
  background: rgba(7, 41, 118, 0.1);
}

.mv .mv-inner h1 {
  color: #2B2A2A;
  font-size: 30px;
  margin-bottom: 0;
}

.contact-wrap {
  max-width: 850px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-wrap {
    padding: 15px;
  }
}
.contact-wrap table td.label, .contact-wrap table td.value {
  border-color: #CFCFCF;
}

.contact-wrap table td.label {
  border-bottom: 1px solid #CFCFCF;
}

.contact-wrap table td.value {
  border-top: 1px solid #CFCFCF;
}

@media (max-width: 768px) {
  .contact-wrap table td.value {
    border-top: none;
    border-bottom: none;
  }
  .contact-wrap table td.label {
    border-bottom: none;
  }
}
.contact-wrap table .w170 {
  width: 170px;
  border-right: 1px solid #CFCFCF;
}

@media (max-width: 768px) {
  .contact-wrap table .w170 {
    width: 15%;
  }
}
.contact-wrap table .w140 {
  width: 140px;
}

@media (max-width: 768px) {
  .contact-wrap table .w140 {
    width: 15%;
  }
}
.contact-wrap table td.label {
  position: relative;
  background: #E9EFF8;
  border-left: 1px solid #CFCFCF;
  border-right: 1px solid #CFCFCF;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .contact-wrap table td.label {
    position: relative;
    background: #E9EFF8;
    border-left: none;
    border-right: none;
    vertical-align: middle;
  }
}
.contact-wrap table .required {
  background: #DC0000;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  padding: 2px 6px;
  position: absolute;
  font-size: 12px;
  font-weight: normal;
  right: 18px;
}

.contact-wrap table tr:last-child td.label {
  border-bottom: 1px solid #CFCFCF;
}

@media (max-width: 768px) {
  .contact-wrap table tr:last-child td.value {
    border-bottom: none;
  }
}
.contact-wrap table textarea {
  height: 24px;
}

.contact-wrap table input, .contact-wrap table textarea {
  background: #FCFBFB;
  border: 1px solid #CFCFCF;
  border-radius: 2px;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-wrap table table, .contact-wrap table thead, .contact-wrap table tbody, .contact-wrap table tr, .contact-wrap table th, .contact-wrap table td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
  .contact-wrap table .spnobg {
    background: none;
    border-right: none;
    border-left: none;
    border-bottom: none;
  }
  .contact-wrap table .spnobg + td {
    border-top: none;
  }
  .contact-wrap table .bdtn {
    border-top: none;
  }
  .contact-wrap table td {
    border-right: none;
  }
}
.contact-wrap p {
  margin-bottom: 10px;
}

.contact-wrap p a {
  color: #DC0000;
  text-decoration: underline;
}

.contact-wrap button[type=submit] {
  background: #191818;
  color: #fff;
  width: 100%;
  max-width: 260px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  border: 1px solid #191818;
}

.contact-wrap button[type=submit]::after {
  content: "";
  display: block;
  background: url("http://exhibition.cemedine.co.jp/wp-content/themes/cmdn/images/seminar/detail/arrow.svg") no-repeat center;
  position: absolute;
  width: 6px;
  height: 10px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-wrap button[type=submit]:hover {
  background: #fff;
  color: #191818;
}

.contact-wrap button[type=submit]:hover::after {
  content: "";
  background: url("http://exhibition.cemedine.co.jp/wp-content/themes/cmdn/images/seminar/detail/arrow-on.svg") no-repeat center;
}

.mv {
  position: relative;
  height: 156px;
}

@media (max-width: 768px) {
  .mv {
    height: auto !important;
  }
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 41, 118, 0.1);
}

.mv::before {
  content: "";
}

.mv .mv-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

@media (min-width: 769px) {
  .mv .mv-inner {
    width: 1228px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .mv .mv-inner {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.mv .mv-inner p {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.76;
  margin-bottom: 10px;
  color: #fff;
}

@media (max-width: 768px) {
  .mv .mv-inner p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .mv .mv-inner h1 {
    font-size: 30px;
  }
}
.cont-bottom-spacer-30 {
  height: 30px;
  display: block;
}

.cont-bottom-spacer {
  height: 60px;
  display: block;
}

td.value {
  border-right: 0;
}

table.items tr:nth-child(1) td.value {
  border-top: none;
}

.contact-wrap p {
  margin-bottom: 10px;
}

.contact-wrap p a {
  color: #DC0000;
  text-decoration: underline;
}

.contact-wrap input[type=button] {
  background: #191818;
  color: #fff;
  width: 100%;
  max-width: 260px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  margin: 0 10px;
  cursor: pointer;
  border: 1px solid #191818;
}

.contact-wrap input[type=button]::after {
  content: "";
  display: block;
  background: url("http://exhibition.cemedine.co.jp/wp-content/themes/cmdn/images/seminar/detail/arrow.svg") no-repeat center;
  position: absolute;
  width: 6px;
  height: 10px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-wrap input[type=button]:hover {
  background: #fff;
  color: #191818;
}

.contact-wrap button[type=submit]:hover::after {
  content: "";
  background: url("http://exhibition.cemedine.co.jp/wp-content/themes/cmdn/images/seminar/detail/arrow-on.svg") no-repeat center;
}

footer {
  margin-top: 90px;
  background: #072976;
  padding: 0;
  padding: 0.6em 0;
}

footer p {
  color: #fff;
  font-size: 12px;
  text-align: center;
}

@media (min-width: 769px) {
  .container-fluid {
    width: 1088px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
}
