@charset "UTF-8";
/*
*
* Copyright (c) 2016, Codia Inc. All rights reserved.
* Data : 2016.11.11
*
*/
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans|Roboto);
/* fallback */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src: url(https://fonts.gstatic.com/s/materialicons/v27/2fcrYFNaTjcS6g4U3t-Y5ZjZjT5FdEJ140U2DJYC3mY.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.woff) format("woff"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

.material-icons.arrow_back {
  font-size: 18px;
  top: 4px;
  margin-right: 6px;
}

@media screen and (max-width: 768px) {
  .scrollbar::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .scrollbar::-webkit-scrollbar {
    overflow: hidden;
    width: 1px;
    background: #eee;
  }
  .scrollbar::-webkit-scrollbar:horizontal {
    height: 10px;
  }
  .scrollbar::-webkit-scrollbar-button {
    display: none;
  }
  .scrollbar::-webkit-scrollbar-piece {
    background: #eee;
  }
  .scrollbar::-webkit-scrollbar-piece:start {
    background: #eee;
  }
  .scrollbar::-webkit-scrollbar-thumb {
    background: #ccc;
  }
  .scrollbar::-webkit-scrollbar-corner {
    background: #ddd;
  }
}

.ripple {
  position: relative;
  overflow: hidden;
}

.ripple .rp-effect {
  /*エフェクト*/
  position: absolute;
  border-radius: 50%;
  opacity: .35;
  /*波紋の濃さ*/
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  background: #FFF;
  /*波紋色*/
  -webkit-animation: ripple 700ms;
          animation: ripple 700ms;
  pointer-events: none;
}

@-webkit-keyframes ripple {
  to {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    -webkit-transform: scale(2);
            transform: scale(2);
  }
}

.btn {
  text-align: center;
  color: #fff;
  background: #5a7992;
  display: block;
  margin: auto;
  border-radius: 5px;
  letter-spacing: .1rem;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.btn:hover {
  /* background: #e19ea8; */
  opacity: .7;
}

/* Reset
---------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button, fieldset, form, input, label,
legend, select, textarea {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: none;
  outline: none;
}

a:focus, *:focus {
  outline: none;
}

input[type="button"], input[type="submit"] {
  -webkit-appearance: none;
}

/* General
---------------------------------------------------------------------------*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
/* Common
---------------------------------------------------------------------------*/
html {
  font-size: 10px;
}

body {
  position: relative;
  z-index: 0;
  width: auto;
  height: auto;
  color: #333333;
  font-size: 1.5rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: .5px;
  color: #555;
}

.container {
  width: 980px;
  margin: 0 auto;
  position: relative;
}

a {
  text-decoration: none;
}

th.vertical_top {
  vertical-align: top;
}

textarea.b-list-submit {
  background: #F0F4F7 !important;
}

.link_text {
  color: #5a7992;
  display: block;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.link_text:hover {
  opacity: .7;
}

input.error {
  border: 1px solid #d62106 !important;
}

.error_message {
  color: #d62106;
  display: block;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
  header {
    background: #40168A;
    width: 100%;
    height: 56px;
  }
  header.fixed {
    position: fixed;
    z-index: 1;
  }
  header.dash {
    position: fixed;
    z-index: 1;
  }
  header.dash .material-icons {
    font-size: 18px;
    margin-right: 6px;
    top: 4px;
  }
  header h1 {
    padding-left: 48px;
    color: #fff;
    float: left;
    line-height: 56px;
    font-size: 1.8rem;
    font-size: 24px;
  }
  header h1 img {
    float: left;
    width: 24px;
    padding: 16px 0;
    margin-right: 16px;
  }
  header a {
    color: #fff;
    float: right;
    line-height: 56px;
    padding: 0 32px;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    font-size: 1.2rem;
    border-left: 1px solid #fff;
  }
  header a:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  header a img {
    width: 10px;
    vertical-align: sub;
    margin-right: 8px;
  }
  footer {
    clear: both;
    background: #f5f7f6;
    background: #eee;
    width: 100%;
    position: relative;
  }
  footer h3 {
    line-height: 48px;
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 32px;
    text-align: left;
    float: left;
  }
  footer h3 img {
    float: left;
    width: 32px;
    padding: 8px 0;
    margin-right: 15px;
  }
  footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
  }
  footer ul li {
    line-height: 48px;
    font-size: 1.4rem;
    color: #777;
    position: relative;
  }
  footer ul li:not(:first-of-type):before {
    content: "|";
    position: absolute;
    left: 0;
  }
  footer ul li a {
    padding: 0 20px;
    color: #777;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  footer ul li a:hover {
    opacity: .7;
  }
  .copyright {
    clear: both;
    text-align: center;
    background: #d1d1d1;
    color: #777;
    font-size: 1rem;
    padding: 8px 0;
  }
  .copyright a {
    color: #517AB7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .copyright a:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  header {
    background: #40168A;
    width: 100%;
    height: 56px;
  }
  header.fixed {
    position: fixed;
    z-index: 1;
  }
  header.dash {
    position: fixed;
    z-index: 1;
  }
  header.user h2 {
    padding-left: 24px;
  }
  header h1 {
    padding-left: 64px;
    color: #fff;
    float: left;
    line-height: 56px;
    font-size: 1.4rem;
  }
  header h1 img {
    float: left;
    width: 24px;
    padding: 16px 0;
    margin-right: 8px;
  }
  header .logout {
    display: none;
  }
  footer {
    clear: both;
    background: #f5f7f6;
    background: #eee;
    width: 100%;
    /*position: relative;*/
    position:absolute;
	bottom:0;
  }
  footer h3 {
    line-height: 48px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
  }
  footer h3 img {
    float: left;
    width: 32px;
    padding: 8px 0;
    margin-left: 16px;
    margin-right: 8px;
  }
  footer ul {
    width: 100%;
  }
  footer ul li {
    line-height: 48px;
    font-size: 1.2rem;
    color: #777;
    float: left;
    width: calc(100% / 3);
    text-align: center;
    position: relative;
  }
  footer ul li:not(:first-of-type):before {
    content: "|";
    position: absolute;
    left: 0;
  }
  footer ul li a {
    color: #777;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  footer ul li a:hover {
    opacity: .7;
  }
  .copyright {
    clear: both;
    text-align: center;
    background: #d1d1d1;
    color: #777;
    font-size: 1rem;
    padding: 8px 0;
  }
  .copyright a {
    color: #517AB7;
  }
}

body,
html {
  height: 100%;
  margin: 0;
}

.container {
  width: 100%;
  display: block;
}

main.login .login_box {
  margin: auto;
  text-align: center;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.15);
}

main.login .login_box h2 {
  font-weight: bold;
}

main.login .login_box .home_step {
  margin: auto auto 48px;
}

main.login .login_box .home_step li {
  font-weight: bold;
}

main.login .login_box .home_step .material-icons {
  color: #5a7992;
}

@media screen and (min-width: 769px) {
  main.login .login_box {
    width: 900px;
    background: #fff;
    padding: 40px;
    position: absolute;
    top: 30%;
    left: 50%;
    -webkit-transform: translate(-50%, -30%);
        -ms-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
  }
  main.login .login_box h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
  }
  main.login .login_box .home_step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 700px;
    margin: auto auto 48px;
  }
  main.login .login_box .home_step .material-icons {
    top: 0;
    margin: 0 16px;
  }
  main.login .login_box .btn {
    width: 240px;
    padding: 16px;
    margin-top: 32px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  main.login .login_box {
    width: 90%;
    background: #fff;
    padding: 24px;
    margin: 24px auto;
  }
  main.login .login_box h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
  main.login .login_box .home_step {
    margin: auto auto 32px;
  }
  main.login .login_box .home_step + p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  main.login .login_box .home_step li {
    font-size: 1.2rem;
  }
  main.login .login_box .home_step .material-icons {
    top: 0;
    margin: 8px 0;
  }
  main.login .login_box .btn {
    width: 176px;
    padding: 8px 16px;
    margin-top: 24px;
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 769px) {
  main.dash01 {
    background: #F6F6F6;
    min-height: calc(100% - 190px);
  }
  main.dash01 .content {
    padding-bottom: 64px;
  }
  main.dash01 .content > h3 {
    font-weight: bold;
    font-size: 2.8rem;
    text-align: center;
    padding: 120px 0 32px;
  }
  main.dash01 .content > h3 + p {
    text-align: center;
    font-size: 1.6rem;
    color: #666;
  }
  main.dash01 .content .reset_step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 800px;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 860px;
  }
  main.dash01 .content .reset_step li {
    text-align: center;
  }
  main.dash01 .content .reset_step li:nth-of-type(-n+3) span:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 240px;
    background: #5a7992;
    top: 4px;
  }
  main.dash01 .content .reset_step li span {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 100px;
    position: relative;
    margin-top: 15px;
  }
  main.dash01 .content .reset_step li.step_current span {
    top: -7px;
    width: 24px;
    height: 24px;
  }
  main.dash01 .content .reset_step li.step_current span:after {
    content: "";
    top: 11px;
  }
  main.dash01 .content .register_step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 800px;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main.dash01 .content .register_step li {
    text-align: center;
  }
  main.dash01 .content .register_step li:nth-of-type(-n+3) span:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 240px;
    background: #5a7992;
    top: 4px;
  }
  main.dash01 .content .register_step li span {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 100px;
    position: relative;
    margin-top: 15px;
  }
  main.dash01 .content .register_step li.step_current span {
    top: -7px;
    width: 24px;
    height: 24px;
  }
  main.dash01 .content .register_step li.step_current span:after {
    content: "";
    top: 11px;
  }
  main.dash01 .content p.attention {
    text-align: center;
    padding: 16px;
    background: #fcf8e3;
    color: #8a6d3b;
    border: 1px solid #faebcc;
    width: 50%;
    margin: auto;
    border-radius: 5px;
    margin-top: 64px;
  }
  main.dash01 .content p.attention .material-icons {
    font-size: 22px;
  }
  main.dash01 .content p.attention02 {
    text-align: left;
    padding: 16px;
    background: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    width: 50%;
    margin: auto;
    border-radius: 5px;
    margin-top: 64px;
  }
  main.dash01 .content p.attention02 .ml {
    margin-left: 26px;
  }
  main.dash01 .content p.attention02 .material-icons {
    font-size: 22px;
    margin-right: 0;
  }
  main.dash01 .content p.attention02.success {
    background: #def2e0;
    color: #42aa53;
    border: 1px solid #cfebcc;
  }
  main.dash01 .content p.info {
    text-align: center;
    padding: 64px 0 56px;
  }
  main.dash01 .content p.info span.strong {
    color: #5a7992;
    font-weight: bold;
  }
  main.dash01 .content .table_wrap {
    padding: 32px;
    background: #fff;
    width: 70%;
    margin: auto;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  main.dash01 .content table {
    width: 100%;
    margin: auto;
  }
  main.dash01 .content table tr {
    border-top: 1px solid #f0f0f0;
  }
  main.dash01 .content table tr:nth-of-type(7) input {
    width: 88px;
  }
  main.dash01 .content table tr:nth-of-type(7) input:nth-of-type(1) {
    margin-right: 8px;
  }
  main.dash01 .content table tr:nth-of-type(7) input:nth-of-type(2) {
    margin-left: 8px;
  }
  main.dash01 .content table tr:last-of-type {
    border-bottom: 1px solid #f0f0f0;
  }
  main.dash01 .content table tr th {
    width: 30%;
    text-align: left;
    padding: 24px 40px;
  }
  main.dash01 .content table tr th .reset_pass {
    color: #5a7992;
    font-size: 1.2rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  main.dash01 .content table tr th .reset_pass:hover {
    opacity: .7;
  }
  main.dash01 .content table tr td {
    padding: 24px 40px;
  }
  main.dash01 .content table tr td input,
  main.dash01 .content table tr td select{
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 40px;
    font-size: 1.4rem;
    padding-left: 16px;
    width: 80%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #d8e5ee;
  }
  main.dash01 .content table tr td input:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash01 .content table tr td input::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash01 .content table tr td input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash01 .content table tr td input:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash01 .content table tr td input:focus {
    background: #fff;
  }
  main.dash01 .content table tr td input:invalid {
    background: #F0F4F7;
  }
  main.dash01 .content .info_btn,
  main.dash01 .content button {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 280px;
    padding: 16px;
    font-size: 2rem;
    margin-top: 40px;
  }
  .info_btn2 {
    text-align: center;
    color: #fff;
    background: #40168A;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 700px;
    padding: 16px;
    font-size: 2rem;
    margin-top: 40px;
  }
  main.dash01 .content .info_btn:hover,
  main.dash01 .content button:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash01 .content .info_btn:nth-of-type(2),
  main.dash01 .content button:nth-of-type(2) {
    background: #999;
  }
  main.dash01 .content .info_btn:nth-of-type(2):hover,
  main.dash01 .content button:nth-of-type(2):hover {
    background: #777;
  }
  main.dash01 .content .link_login {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 280px;
    padding: 16px;
    font-size: 2rem;
  }
  main.dash01 .content .link_login:hover {
    /*background: #e19ea8;*/
    opacity: .7;
  }
  main.dash01 .content .link_login:nth-of-type(2) {
    background: #999;
  }
  main.dash01 .content .link_login:nth-of-type(2):hover {
    background: #777;
  }
  main.dash01 .content footer {
    background: #f5f7f6;
    background: #eee;
    width: 100%;
    height: 48px;
  }
  main.dash01 .content footer h3 {
    line-height: 48px;
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 32px;
    text-align: left;
    float: left;
  }
  main.dash01 .content footer h3 img {
    float: left;
    width: 32px;
    padding: 12px 0;
    margin-right: 15px;
  }
  main.dash01 .content footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
  }
  main.dash01 .content footer ul li {
    line-height: 48px;
    font-size: 1.4rem;
    color: #777;
  }
  main.dash01 .content footer ul li a {
    padding: 0 20px;
    color: #777;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  main.dash01 .content footer ul li a:hover {
    opacity: .7;
  }
  main.dash01 .content .copyright {
    text-align: center;
    background: #d1d1d1;
    color: #777;
    font-size: 1rem;
    padding: 8px 0;
  }
}

@media screen and (max-width: 768px) {
  main.dash01 {
    background: #F6F6F6;
  }
  main.dash01 .content {
    padding: 8px 8px 64px;
  }
  main.dash01 .content > h3 {
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    padding: 48px 0 32px;
  }
  main.dash01 .content > h3 + p {
    text-align: center;
    font-size: 1.6rem;
    color: #666;
  }
  main.dash01 .content .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main.dash01 .content .step li {
    font-size: 1.2rem;
    text-align: center;
  }
  main.dash01 .content .step li:nth-of-type(-n+3) span:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 84px;
    background: #5a7992;
    top: 4px;
  }
  main.dash01 .content .step li.step_current span {
    top: -7px;
    width: 24px;
    height: 24px;
  }
  main.dash01 .content .step li.step_current span:after {
    content: "";
    top: 11px;
  }
  main.dash01 .content .step li span {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 100px;
    position: relative;
    margin-top: 15px;
  }
  main.dash01 .content .reset_step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 350px;
  }
  main.dash01 .content .reset_step li {
    font-size: 1.2rem;
    text-align: center;
  }
  main.dash01 .content .reset_step li:nth-of-type(-n+3) span:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 84px;
    background: #5a7992;
    top: 4px;
  }
  main.dash01 .content .reset_step li.step_current span {
    top: -7px;
    width: 24px;
    height: 24px;
  }
  main.dash01 .content .reset_step li.step_current span:after {
    content: "";
    top: 11px;
  }
  main.dash01 .content .reset_step li span {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 100px;
    position: relative;
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  main.dash01 .content .reset_step {
    width: 290px;
  }
  main.dash01 .content .reset_step li {
    font-size: 1rem;
  }
  main.dash01 .content .reset_step li:nth-of-type(-n+3) span:after {
    width: 76px;
  }
}

@media screen and (max-width: 768px) {
  main.dash01 .content .register_step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main.dash01 .content .register_step li {
    font-size: 1.2rem;
    text-align: center;
  }
  main.dash01 .content .register_step li:nth-of-type(-n+3) span:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 84px;
    background: #5a7992;
    top: 4px;
  }
  main.dash01 .content .register_step li.step_current span {
    top: -7px;
    width: 24px;
    height: 24px;
  }
  main.dash01 .content .register_step li.step_current span:after {
    content: "";
    top: 11px;
  }
  main.dash01 .content .register_step li span {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 100px;
    position: relative;
    margin-top: 15px;
  }
  main.dash01 .content p.attention {
    text-align: center;
    padding: 16px;
    background: #fcf8e3;
    color: #8a6d3b;
    border: 1px solid #faebcc;
    width: 50%;
    margin: auto;
    border-radius: 5px;
    margin-top: 40px;
    width: 90%;
    font-size: 1.4rem;
  }
  main.dash01 .content p.attention .material-icons {
    font-size: 22px;
  }
  main.dash01 .content p.attention02 {
    text-align: left;
    padding: 16px;
    background: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    width: 50%;
    margin: auto;
    border-radius: 5px;
    margin-top: 64px;
    width: 90%;
  }
  main.dash01 .content p.attention02 .ml {
    margin-left: 26px;
  }
  main.dash01 .content p.attention02 .material-icons {
    font-size: 22px;
    margin-right: 0;
  }
  main.dash01 .content p.attention02.success {
    background: #def2e0;
    color: #42aa53;
    border: 1px solid #cfebcc;
  }
  main.dash01 .content p.info {
    text-align: center;
    padding: 32px 0 48px;
    width: 100%;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.8;
  }
  main.dash01 .content p.info span.strong {
    color: #5a7992;
    font-weight: bold;
  }
  main.dash01 .content .table_wrap {
    padding: 16px;
    background: #fff;
    margin: 0 16px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  }
  main.dash01 .content table {
    width: 100%;
    margin: auto;
  }
  main.dash01 .content table tr {
    border-top: 1px solid #f0f0f0;
  }
  main.dash01 .content table tr:nth-of-type(7) input {
    width: 96px;
  }
  main.dash01 .content table tr:nth-of-type(7) input:nth-of-type(1) {
    margin-right: 8px;
  }
  main.dash01 .content table tr:nth-of-type(7) input:nth-of-type(2) {
    margin-left: 8px;
  }
  main.dash01 .content table tr:last-of-type {
    border-bottom: 1px solid #f0f0f0;
  }
  main.dash01 .content table tr th {
    width: 100%;
    text-align: left;
    padding: 8px 16px;
    display: block;
  }
  main.dash01 .content table tr th .reset_pass {
    color: #5a7992;
    font-size: 1.2rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  main.dash01 .content table tr th .reset_pass:hover {
    opacity: .7;
  }
  main.dash01 .content table tr td {
    width: 100%;
    padding: 0 16px 16px;
    display: block;
  }
  main.dash01 .content table tr td input {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 40px;
    font-size: 1.4rem;
    padding: 16px;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #F0F4F7;
  }
  main.dash01 .content table tr td input:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash01 .content table tr td input::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash01 .content table tr td input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash01 .content table tr td input:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash01 .content table tr td input:focus {
    background: #fff;
  }
  main.dash01 .content .info_btn,
  main.dash01 .content button {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 240px;
    padding: 16px;
    font-size: 1.8rem;
    margin-top: 32px;
  }
  main.dash01 .content .info_btn:hover,
  main.dash01 .content button:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash01 .content .info_btn:nth-of-type(2),
  main.dash01 .content button:nth-of-type(2) {
    background: #999;
  }
  main.dash01 .content .info_btn:nth-of-type(2):hover,
  main.dash01 .content button:nth-of-type(2):hover {
    background: #777;
  }
  main.dash01 .content .link_login {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 280px;
    padding: 16px;
    font-size: 1.8rem;
  }
  main.dash01 .content .link_login:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash01 .content footer {
    background: #f5f7f6;
    background: #eee;
    width: 100%;
    height: 48px;
  }
  main.dash01 .content footer h3 {
    line-height: 48px;
    font-size: 1.4rem;
    font-weight: bold;
    padding-left: 32px;
    text-align: left;
    float: left;
  }
  main.dash01 .content footer h3 img {
    float: left;
    width: 32px;
    padding: 12px 0;
    margin-right: 15px;
  }
  main.dash01 .content footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: right;
  }
  main.dash01 .content footer ul li {
    line-height: 48px;
    font-size: 1.4rem;
    color: #777;
  }
  main.dash01 .content footer ul li a {
    padding: 0 20px;
    color: #777;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  main.dash01 .content footer ul li a:hover {
    opacity: .7;
  }
  main.dash01 .content .copyright {
    text-align: center;
    background: #d1d1d1;
    color: #777;
    font-size: 1rem;
    padding: 8px 0;
  }
}

@media screen and (min-width: 769px) {
  main.dash02 {
    height: 100%;
  }
  main.dash02 .sidebar {
    width: 200px;
    height: 100%;
    background: #343D47;
    background: rgba(30, 35, 40, 0.9);
    position: fixed;
    top: 56px;
  }
  main.dash02 .sidebar .menu li {
    border-bottom: 1px solid black;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    margin: auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.4rem;
  }
  main.dash02 .sidebar .menu li a {
    color: #fff;
    display: block;
    height: 80px;
    line-height: 80px;
    width: 100%;
  }
  main.dash02 .sidebar .menu li.current {
    border-left: 5px solid #5a7992;
    background: #202124;
    background: rgba(30, 35, 40, 0.95);
    position: relative;
  }
  main.dash02 .sidebar .menu li.current:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 8px 12px 0;
    border-color: transparent #fff transparent transparent;
    right: 0;
    top: calc(50% - 12px);
  }
  main.dash02 .sidebar .menu li:hover {
    background: #1E202C;
    background: rgba(30, 35, 40, 0.95);
  }
  main.dash02 .sidebar .menu li:first-of-type {
    border-top: 1px solid black;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  main.dash02 .sidebar .menu li img {
    margin-right: 16px;
    width: 24px;
  }
  main.dash02 .sidebar .menu li:last-of-type {
    position: fixed;
    bottom: 0;
    width: 200px;
    border-top: 1px solid black;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  }
  main.dash02 .sidebar .menu li:last-of-type:hover {
    background: rgba(30, 35, 40, 0.95);
  }
  main.dash02 .content {
    position: relative;
    top: 56px;
    background: #F6F6F6;
    margin-left: 200px;
  }
  main.dash02 .content .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 700px;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 56px;
  }
  main.dash02 .content .step li {
    text-align: center;
  }
  main.dash02 .content .step li:nth-of-type(-n+2) span:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 270px;
    background: #5a7992;
    top: 4px;
  }
  main.dash02 .content .step li span {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 100px;
    position: relative;
    margin-top: 15px;
  }
  main.dash02 .content .step li.step_current span {
    top: -7px;
    width: 24px;
    height: 24px;
  }
  main.dash02 .content .step li.step_current span:after {
    content: "";
    top: 11px;
  }
  main.dash02 .content p.attention {
    text-align: center;
    padding: 16px;
    background: #fcf8e3;
    color: #8a6d3b;
    border: 1px solid #faebcc;
    width: 50%;
    margin: auto;
    border-radius: 5px;
    margin-bottom: 32px;
  }
  main.dash02 .content p.attention .material-icons {
    font-size: 22px;
  }
  main.dash02 .content p.attention02 {
    text-align: left;
    padding: 16px;
    background: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    width: 50%;
    margin: auto;
    border-radius: 5px;
  }
  main.dash02 .content p.attention02 .ml {
    margin-left: 26px;
  }
  main.dash02 .content p.attention02 .material-icons {
    font-size: 22px;
    margin-right: 0;
  }
  main.dash02 .content p.attention02.success {
    background: #def2e0;
    color: #42aa53;
    border: 1px solid #cfebcc;
  }
  main.dash02 .content p.mail-step-info {
    text-align: center;
  }
  main.dash02 .content .title_wrap {
    background: #fff;
    margin-bottom: 56px;
    -webkit-box-shadow: 3px 0 5px rgba(0, 0, 0, 0.15);
            box-shadow: 3px 0 5px rgba(0, 0, 0, 0.15);
  }
  main.dash02 .content .title_wrap.mail-step h3 {
    padding-bottom: 32px;
  }
  main.dash02 .content .title_wrap h3 {
    padding-top: 32px;
    font-size: 2.8rem;
    padding-left: 10%;
    letter-spacing: .1rem;
  }
  main.dash02 .content .title_wrap p {
    margin-left: 10%;
    padding: 16px 0 32px;
  }
  main.dash02 .content .title_wrap p .strong {
    color: #5a7992;
    font-weight: bold;
  }
  main.dash02 .content .table_wrap {
    padding: 32px;
    background: #fff;
    width: 90%;
    max-width: 1200px;
    margin-left: 5%;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 64px;
  }
  main.dash02 .content .briefing_list_item {
    border: 1px solid #e0e0e0;
    margin-bottom: 56px;
  }
  main.dash02 .content .briefing_list_item:last-of-type {
    margin-bottom: 0;
  }
  main.dash02 .content .briefing_list_item table tr th {
    width: 20%;
  }
  main.dash02 .content .briefing_list_item table tr td {
    width: 80%;
  }
  main.dash02 .content .briefing_list_item table tr:nth-of-type(even) {
    background: #F0F4F7;
  }
  main.dash02 .content .briefing_list_item table tr:nth-of-type(odd) {
    background: #fff;
  }
  main.dash02 .content .briefing_list_item table tr:first-of-type th {
    font-size: 1.8rem;
    background: #c9d4dd;
    background: #5a7992;
    color: #fff;
    padding: 24px 40px;
  }
  main.dash02 .content .briefing_list_item table tr td,
  main.dash02 .content .briefing_list_item table tr th {
    padding: 16px 40px;
  }
  main.dash02 .content table {
    background: #fff;
    width: 100%;
    padding: 24px;
  }
  main.dash02 .content table.btn {
    width: 70%;
    margin: auto;
  }
  main.dash02 .content table.btn td {
    width: 50%;
  }
  main.dash02 .content table tr:nth-of-type(10) td .form_btn {
    margin-left: 24px;
  }
  main.dash02 .content table tr:nth-of-type(odd) {
    background: #F0F4F7;
  }
  main.dash02 .content table tr th {
    padding: 24px 40px;
    width: 30%;
    text-align: left;
    vertical-align: top;
  }
  main.dash02 .content table tr td {
    padding: 24px 40px;
    width: 70%;
  }
  main.dash02 .content table tr td input[type="text"],
  main.dash02 .content table tr td input[type="textarea"],
  main.dash02 .content table tr td input[type="password"] {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 32px;
    padding: 22px;
    width: 70%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content table tr td input[type="text"]:focus,
  main.dash02 .content table tr td input[type="textarea"]:focus,
  main.dash02 .content table tr td input[type="password"]:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content table tr td input[type="text"]::-webkit-input-placeholder,
  main.dash02 .content table tr td input[type="textarea"]::-webkit-input-placeholder,
  main.dash02 .content table tr td input[type="password"]::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td input[type="text"]::-moz-placeholder,
  main.dash02 .content table tr td input[type="textarea"]::-moz-placeholder,
  main.dash02 .content table tr td input[type="password"]::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content table tr td input[type="text"]:-ms-input-placeholder,
  main.dash02 .content table tr td input[type="textarea"]:-ms-input-placeholder,
  main.dash02 .content table tr td input[type="password"]:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td input[type="text"]:focus,
  main.dash02 .content table tr td input[type="textarea"]:focus,
  main.dash02 .content table tr td input[type="password"]:focus {
    background: #fff;
  }
  main.dash02 .content table tr td input[type="text"]:invalid,
  main.dash02 .content table tr td input[type="textarea"]:invalid,
  main.dash02 .content table tr td input[type="password"]:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content table tr td input[type="text"][type="number"],
  main.dash02 .content table tr td input[type="textarea"][type="number"],
  main.dash02 .content table tr td input[type="password"][type="number"] {
    width: 15%;
    margin-right: 8px;
  }
  main.dash02 .content table tr td input[type="text"].number,
  main.dash02 .content table tr td input[type="textarea"].number,
  main.dash02 .content table tr td input[type="password"].number {
    width: 15%;
    margin-right: 8px;
  }
  main.dash02 .content table tr td input[type="text"].hasDatepicker,
  main.dash02 .content table tr td input[type="textarea"].hasDatepicker,
  main.dash02 .content table tr td input[type="password"].hasDatepicker {
    width: 120px;
    border-radius: 5px;
  }
  main.dash02 .content table tr td input[type="text"].p-postal-code,
  main.dash02 .content table tr td input[type="textarea"].p-postal-code,
  main.dash02 .content table tr td input[type="password"].p-postal-code {
    width: 80px;
  }
  main.dash02 .content table tr td textarea {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 160px;
    padding: 16px;
    resize: vertical;
    width: 70%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content table tr td textarea:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content table tr td textarea::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td textarea::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content table tr td textarea:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td textarea:focus {
    background: #fff;
  }
  main.dash02 .content table tr td textarea:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content table tr td .form_btn {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 200px;
    font-size: 1.4rem;
    padding: 8px 16px;
    display: inline-block;
  }
  main.dash02 .content table tr td .form_btn:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content table.info_pass-mail tr {
    background: #fff;
    border-top: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_pass-mail tr:last-of-type {
    border-bottom: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_edit tr {
    border-top: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_edit tr:last-of-type {
    border-bottom: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_edit td,
  main.dash02 .content table.info_edit th {
    background: #fff;
  }
  main.dash02 .content table.table_attendee {
    border: 1px solid #e0e0e0;
  }
  main.dash02 .content table.table_attendee thead tr {
    background: #F0F4F7 !important;
  }
  main.dash02 .content table.table_attendee tr {
    border-top: 1px solid #e0e0e0;
  }
  main.dash02 .content table.table_attendee tr:nth-of-type(odd) {
    background: #fff;
  }
  main.dash02 .content table.table_attendee tr td,
  main.dash02 .content table.table_attendee tr th {
    padding: 8px;
    font-size: 1.2rem;
    width: 0;
    vertical-align: middle;
  }
  main.dash02 .content table.table_attendee tr td:last-of-type,
  main.dash02 .content table.table_attendee tr th:last-of-type {
    width: 64px;
  }
  main.dash02 .content table.table_attendee tr .table_attendee_btn {
    font-size: 1.2rem;
    padding: 4px 8px;
  }
  main.dash02 .content .table_attendee_scroll {
    width: 100%;
    white-space: nowrap;
    overflow: auto;
  }
  main.dash02 .content .attendee_btn_box {
    padding: 0 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main.dash02 .content .attendee_btn_box .attendee_btn {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 320px;
    padding: 16px;
    font-size: 1.4rem;
    margin-bottom: 64px;
  }
  main.dash02 .content .attendee_btn_box .attendee_btn:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content .list_btn {
    width: 70%;
    margin: 24px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main.dash02 .content .list_btn a {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 240px;
    padding: 12px;
    font-size: 1.8rem;
  }
  main.dash02 .content .list_btn a:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content .list_btn p.reserved {
    width: 240px;
    padding: 12px;
    font-size: 1.8rem;
    text-align: center;
    border-radius: 5px;
    background: #f0f0f0;
    color: #999;
  }
  main.dash02 .content .table_wrap02 {
    margin-left: 5%;
    width: 90%;
    background: #fff;
    margin-bottom: 64px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    padding: 40px;
    max-width: 1200px;
  }
  main.dash02 .content .table_wrap02 select {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px 16px;
    width: 72px;
    font-size: 1.4rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #F0F4F7;
  }
  main.dash02 .content .table_wrap02 select:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content .table_wrap02 select::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 select::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content .table_wrap02 select:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 select:focus {
    background: #fff;
  }
  main.dash02 .content .table_wrap02 span {
    display: block;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main.dash02 .content .table_wrap02 span:first-of-type {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 32px;
  }
  main.dash02 .content .table_wrap02 span label {
    display: block;
    width: 200px;
    padding: 0 40px;
  }
  main.dash02 .content .table_wrap02 span input {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 32px;
    padding: 22px;
    width: 70%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content .table_wrap02 span input:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content .table_wrap02 span input::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content .table_wrap02 span input:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span input:focus {
    background: #fff;
  }
  main.dash02 .content .table_wrap02 span input:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content .table_wrap02 span input[type="number"] {
    width: 15%;
    margin-right: 8px;
  }
  main.dash02 .content .table_wrap02 span input.number {
    width: 15%;
    margin-right: 8px;
  }
  main.dash02 .content .table_wrap02 span input.hasDatepicker {
    width: 120px;
    border-radius: 5px;
  }
  main.dash02 .content .table_wrap02 span input.p-postal-code {
    width: 80px;
  }
  main.dash02 .content .table_wrap02 span textarea {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 160px;
    padding: 16px;
    resize: vertical;
    width: 70%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content .table_wrap02 span textarea:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content .table_wrap02 span textarea::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span textarea::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content .table_wrap02 span textarea:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span textarea:focus {
    background: #fff;
  }
  main.dash02 .content .table_wrap02 span textarea:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content .mail-step_btn {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 280px;
    padding: 16px;
    font-size: 1.8rem;
    margin-top: 40px;
  }
  main.dash02 .content .mail-step_btn:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content .info_btn,
  main.dash02 .content button {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 280px;
    padding: 16px;
    font-size: 2rem;
    margin-bottom: 64px;
  }
  main.dash02 .content .info_btn:hover,
  main.dash02 .content button:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
}

/* オーバーレイ */
@media screen and (max-width: 768px) {
  .menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    z-index: 3;
  }
  /* ナビゲーション */
  nav.global_nav_mobile {
    overflow: auto;
    position: fixed;
    top: 0;
    left: -60%;
    width: 60%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    opacity: 0;
    z-index: 9999;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  /* ナビゲーション：アクティブ時 */
  .navOpen nav.global_nav_mobile {
    opacity: 1;
    left: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
  }
  /* ナビゲーションアイコン */
  .navBtn {
    display: block;
    width: 30px;
    position: fixed;
    top: 15px;
    left: 15px;
    cursor: pointer;
    z-index: 999;
  }
  .navBtn.right {
    right: 65%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .navBtn span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    /*border-radius     : 2px;*/
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .navBtn span:nth-of-type(2), .navBtn span:nth-of-type(3) {
    margin-top: 7px;
  }
  /* ナビゲーションアイコン：アクティブ */
  .navOpen .navBtn span:nth-of-type(1) {
    -webkit-transform: translateY(9px) translateX(0) rotate(45deg);
    -ms-transform: translateY(9px) translateX(0) rotate(45deg);
    transform: translateY(9px) translateX(0) rotate(45deg);
  }
  .navOpen .navBtn span:nth-of-type(2) {
    margin-top: 5px;
    opacity: 0;
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px);
  }
  .navOpen .navBtn span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-9px) translateX(0) rotate(-45deg);
    transform: translateY(-9px) translateX(0) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  main.dash02 {
    height: 100%;
  }
  main.dash02 .sidebar {
    width: 200px;
    height: 100%;
    background: #343D47;
    background: rgba(30, 35, 40, 0.9);
    position: fixed;
    top: 56px;
  }
  main.dash02 .sidebar .menu li {
    border-bottom: 1px solid black;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 100%;
    display: block;
    margin: auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.4rem;
  }
  main.dash02 .sidebar .menu li a {
    color: #fff;
    display: block;
    height: 64px;
    line-height: 64px;
    width: 100%;
  }
  main.dash02 .sidebar .menu li.current {
    border-left: 5px solid #00B8CE;
    background: #202124;
    background: rgba(30, 35, 40, 0.95);
    position: relative;
  }
  main.dash02 .sidebar .menu li:hover {
    background: #1E202C;
    background: rgba(30, 35, 40, 0.95);
  }
  main.dash02 .sidebar .menu li:first-of-type {
    border-top: 1px solid black;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  main.dash02 .sidebar .menu li img {
    margin-right: 16px;
    width: 20px;
  }
  main.dash02 .sidebar .menu li:last-of-type {
    position: fixed;
    bottom: 0;
    width: 200px;
    border-top: 1px solid black;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
  }
  main.dash02 .sidebar .menu li:last-of-type:hover {
    background: rgba(30, 35, 40, 0.95);
  }
  main.dash02 .content {
    position: relative;
    top: 56px;
    background: #F6F6F6;
    margin-left: 0;
    -webkit-transition: margin-left .3s ease-in-out .01s;
    -o-transition: margin-left .3s ease-in-out .01s;
    transition: margin-left .3s ease-in-out .01s;
  }
  main.dash02 .content .step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    margin: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 56px;
  }
  main.dash02 .content .step li {
    font-size: 1rem;
    text-align: center;
  }
  main.dash02 .content .step li:nth-of-type(-n+2) span:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 110px;
    background: #5a7992;
    top: 4px;
  }
  main.dash02 .content .step li:nth-of-type(3) span {
    top: -7px;
    width: 24px;
    height: 24px;
  }
  main.dash02 .content .step li:nth-of-type(3) span:after {
    content: "";
    top: 11px;
  }
  main.dash02 .content .step li span {
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 100px;
    position: relative;
    margin-top: 15px;
  }
  main.dash02 .content .title_wrap {
    background: #fff;
    margin-bottom: 32px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  main.dash02 .content .title_wrap h3 {
    padding-top: 32px;
    font-size: 2.4rem;
    padding-left: 10%;
    letter-spacing: .1rem;
  }
  main.dash02 .content .title_wrap p {
    margin-left: 10%;
    padding: 16px 10% 32px 0;
    font-size: 1.2rem;
  }
  main.dash02 .content .title_wrap p .strong {
    color: #5a7992;
    font-weight: bold;
  }
  main.dash02 .content .table_wrap {
    padding: 16px;
    background: #fff;
    margin: 0 16px 32px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  }
  main.dash02 .content .briefing_list_item {
    border: 1px solid #e0e0e0;
    margin-bottom: 56px;
  }
  main.dash02 .content .briefing_list_item:last-of-type {
    margin-bottom: 0;
  }
  main.dash02 .content .briefing_list_item table {
    border: none;
  }
  main.dash02 .content .briefing_list_item table tr th {
    padding: 16px 32px;
    width: 100%;
    text-align: left;
    display: block;
    background: #F0F4F7;
  }
  main.dash02 .content .briefing_list_item table tr td {
    padding: 16px 32px;
    width: 100%;
    display: block;
  }
  main.dash02 .content .briefing_list_item table tr:first-of-type th {
    font-size: 1.6rem;
    background: #c9d4dd;
    background: #5a7992;
    color: #fff;
    padding: 24px 32px;
  }
  main.dash02 .content .briefing_list_item table tr td,
  main.dash02 .content .briefing_list_item table tr th {
    padding: 16px 32px;
  }
  main.dash02 .content table {
    background: #fff;
    width: 100%;
    padding: 24px;
    border: 1px solid #e0e0e0;
  }
  main.dash02 .content table tr {
    font-size: 1.4rem;
  }
  main.dash02 .content table tr th {
    padding: 16px 32px;
    width: 100%;
    text-align: left;
    display: block;
    background: #F0F4F7;
  }
  main.dash02 .content table tr td {
    padding: 16px 32px;
    width: 100%;
    display: block;
  }
  main.dash02 .content table tr td .form_btn {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 184px;
    font-size: 1.2rem;
    padding: 8px;
  }
  main.dash02 .content table tr td .form_btn:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content table tr td input {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 32px;
    padding: 22px;
    width: 100%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content table tr td input:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content table tr td input::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content table tr td input:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td input:focus {
    background: #fff;
  }
  main.dash02 .content table tr td input:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content table tr td input[type="number"] {
    width: 15%;
    margin-right: 8px;
  }
  main.dash02 .content table tr td textarea {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 160px;
    padding: 16px;
    resize: vertical;
    width: 100%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content table tr td textarea:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content table tr td textarea::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td textarea::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content table tr td textarea:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content table tr td textarea:focus {
    background: #fff;
  }
  main.dash02 .content table tr td textarea:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content table.info_pass-mail {
    border: none;
  }
  main.dash02 .content table.info_pass-mail tr {
    border-top: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_pass-mail tr th {
    padding: 8px 16px;
    background: #fff;
  }
  main.dash02 .content table.info_pass-mail tr td {
    padding: 0 16px 16px;
  }
  main.dash02 .content table.info_pass-mail tr:last-of-type {
    border-bottom: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_edit {
    padding: 30px;
    border: none;
  }
  main.dash02 .content table.info_edit tr {
    border-top: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_edit tr:last-of-type {
    border-bottom: 1px solid #f0f0f0;
  }
  main.dash02 .content table.info_edit td,
  main.dash02 .content table.info_edit th {
    background: #fff;
    width: 100%;
    display: block;
  }
  main.dash02 .content table.info_edit th {
    padding: 8px 16px;
  }
  main.dash02 .content table.info_edit td {
    padding: 0 16px 16px;
  }
  main.dash02 .content table.table_attendee td,
  main.dash02 .content table.table_attendee th {
    font-size: 1rem;
    padding: 8px;
    text-align: center;
    height: 40px;
  }
  main.dash02 .content table.table_attendee thead {
    float: left;
    border-right: 1px solid #e0e0e0;
  }
  main.dash02 .content table.table_attendee thead th {
    width: 100%;
  }
  main.dash02 .content table.table_attendee tbody {
    display: block;
    width: auto;
    overflow-x: auto;
    white-space: nowrap;
    letter-spacing: -10px;
  }
  main.dash02 .content table.table_attendee tbody tr {
    display: inline-block;
    border-right: 1px solid #e0e0e0;
    letter-spacing: normal;
  }
  main.dash02 .content table.table_attendee tbody tr:last-of-type {
    border-right: 0;
  }
  main.dash02 .content table.table_attendee tbody td .table_attendee_btn {
    padding: 4px 0;
  }
  main.dash02 .content .table_attendee_scroll {
    width: 100%;
    white-space: nowrap;
    overflow: auto;
  }
  main.dash02 .content .attendee_btn_box {
    padding: 0 32px;
  }
  main.dash02 .content .attendee_btn_box .attendee_btn {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 280px;
    padding: 16px;
    font-size: 1.4rem;
    margin-bottom: 32px;
  }
  main.dash02 .content .attendee_btn_box .attendee_btn:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content .mail-step_btn {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 240px;
    padding: 16px;
    font-size: 1.4rem;
    margin: 16px auto;
  }
  main.dash02 .content .mail-step_btn:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content .list_btn {
    margin: 24px auto;
  }
  main.dash02 .content .list_btn a {
    color: #fff;
    background: #5a7992;
    width: 184px;
    padding: 8px;
    display: block;
    margin: auto;
    font-size: 1.6rem;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
  }
  main.dash02 .content .list_btn a:first-of-type {
    margin-bottom: 24px;
  }
  main.dash02 .content .list_btn a:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
  main.dash02 .content .table_wrap02 {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    padding: 16px;
    margin: 32px 16px;
  }
  main.dash02 .content .table_wrap02 select {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px 16px;
    width: 72px;
    font-size: 1.4rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: #F0F4F7;
  }
  main.dash02 .content .table_wrap02 select:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content .table_wrap02 select::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 select::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content .table_wrap02 select:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 select:focus {
    background: #fff;
  }
  main.dash02 .content .table_wrap02 span {
    display: block;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
  }
  main.dash02 .content .table_wrap02 span:first-of-type {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.dash02 .content .table_wrap02 span label {
    display: block;
    width: 104px;
    padding: 0 16px;
  }
  main.dash02 .content .table_wrap02 span input {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 32px;
    padding: 22px;
    width: 100%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content .table_wrap02 span input:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content .table_wrap02 span input::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span input::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content .table_wrap02 span input:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span input:focus {
    background: #fff;
  }
  main.dash02 .content .table_wrap02 span input:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content .table_wrap02 span input[type="number"] {
    width: 15%;
    margin-right: 8px;
  }
  main.dash02 .content .table_wrap02 span textarea {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    height: 160px;
    padding: 16px;
    resize: vertical;
    width: 100%;
    font-size: 1.4rem;
    background: #d8e5ee;
  }
  main.dash02 .content .table_wrap02 span textarea:focus {
    border: 1px solid #5a7992;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
  }
  main.dash02 .content .table_wrap02 span textarea::-webkit-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span textarea::-moz-placeholder {
    color: #ccc;
    opacity: 1;
  }
  main.dash02 .content .table_wrap02 span textarea:-ms-input-placeholder {
    color: #ccc;
  }
  main.dash02 .content .table_wrap02 span textarea:focus {
    background: #fff;
  }
  main.dash02 .content .table_wrap02 span textarea:invalid {
    background: #F0F4F7;
  }
  main.dash02 .content .info_btn,
  main.dash02 .content button {
    text-align: center;
    color: #fff;
    background: #5a7992;
    display: block;
    margin: auto;
    border-radius: 5px;
    letter-spacing: .1rem;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    width: 240px;
    padding: 16px;
    font-size: 1.8rem;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  main.dash02 .content .info_btn:hover,
  main.dash02 .content button:hover {
    /* background: #e19ea8; */
    opacity: .7;
  }
}

.ui-datepicker,
.ui-datepicker-material-header {
  font-family: 'Roboto';
}

.ui-datepicker-material-header {
  display: block;
  background-color: #284B72;
  color: white;
  text-align: center;
  width: 325px;
}

.ui-datepicker-material-header .ui-datepicker-material-day {
  background-color: #1F3A58;
  padding: 10px;
  font-size: 1rem;
}

.ui-datepicker-material-header .ui-datepicker-material-date {
  padding: 20px;
}

.ui-datepicker-material-header .ui-datepicker-material-date .ui-datepicker-material-day-num,
.ui-datepicker-material-header .ui-datepicker-material-date .ui-datepicker-material-month,
.ui-datepicker-material-header .ui-datepicker-material-date .ui-datepicker-material-year {
  padding: 5px;
}

.ui-datepicker-material-header .ui-datepicker-material-date .ui-datepicker-material-month {
  font-size: 2rem;
  text-transform: uppercase;
}

.ui-datepicker-material-header .ui-datepicker-material-date .ui-datepicker-material-day-num {
  font-size: 4.5rem;
}

.ui-datepicker-material-header .ui-datepicker-material-date .ui-datepicker-material-year {
  font-size: 1.8rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.4);
}

.ui-datepicker {
  padding: 0;
  border: none;
  -webkit-box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
          box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  width: 325px;
}

.ui-corner-all {
  border-radius: 0;
}

.ui-widget-header {
  border: 0;
}

.ui-datepicker-header {
  text-align: center;
  background: white;
  padding-bottom: 15px;
  font-weight: 300;
}

.ui-datepicker-header .ui-datepicker-next,
.ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker-header .ui-datepicker-title {
  border: none;
  outline: none;
  margin: 0;
}

.ui-datepicker-next.ui-state-hover,
.ui-datepicker-prev.ui-state-hover {
  border: none;
  outline: none;
  background: #b4cbe5;
}

.ui-datepicker-calendar .ui-state-default {
  background: none;
  border: none;
  text-align: center;
  height: 33px;
  width: 33px;
  line-height: 36px;
}

.ui-datepicker-calendar .ui-state-highlight {
  color: #284B72;
}

.ui-datepicker-calendar .ui-state-active {
  border-radius: 50%;
  background-color: #284B72;
  color: white;
}

.ui-datepicker-calendar thead th {
  color: #999999;
  font-weight: 200;
}

.ui-datepicker-buttonpane {
  border: none;
}

.ui-datepicker-buttonpane .ui-state-default {
  background: white;
  border: none;
}

.ui-datepicker-buttonpane .ui-datepicker-close,
.ui-datepicker-buttonpane .ui-datepicker-current {
  background: white;
  color: #284B72;
  text-transform: uppercase;
  border: none;
  opacity: 1;
  font-weight: 200;
  outline: none;
}

.ui-datepicker-buttonpane .ui-datepicker-close:hover,
.ui-datepicker-buttonpane .ui-datepicker-current:hover {
  background: #b4cbe5;
}

#ui-datepicker-div {
  top: 223px;
  left: 478.094px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 280px;
}

.error-message {
  background: #F2DEDE;
  color: #C66E6C;
  color: #BD5654;
  font-size: 1.3rem;
  padding: 4px 16px;
  margin-top: 8px;
  border-radius: 4px;
  display: inline-block;
}

div#flashMessage {
  margin-left: 10%;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 1.8rem;
  background: #def2e0;
  color: #42aa53;
  border: 1px solid #cfebcc;
  width: 80%;
  padding: 8px 16px;
  border-radius: 5px;
}

.success {
  margin-left: 10%;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 1.8rem;
  background: #def2e0 !important;
  color: #42aa53 !important;
  border: 1px solid #cfebcc !important;
  width: 80%;
  padding: 8px 16px !important;
  border-radius: 5px;
}

.success + p {
  padding-bottom: 32px;
}

.error {
  margin-left: 10%;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 1.8rem;
  background: #f2dede !important;
  color: #a94442 !important;
  border: 1px solid #ebccd1 !important;
  width: 80%;
  padding: 8px 16px !important;
  border-radius: 5px;
}

.error + p {
  padding-bottom: 32px;
}

#close_button,
#open_button {
  background: #5a7992;
  letter-spacing: .1rem;
  cursor: pointer;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  border: none;
  width: 100%;
}

#close_button:hover,
#open_button:hover {
  /* background: #e19ea8; */
  opacity: .7;
}

#AttendeeAddForm tr {
  background: #fff;
}

#AttendeeAddForm tr:nth-of-type(2) th {
  vertical-align: top;
}

#AttendeeAddForm #add_button {
  margin-bottom: 24px;
}

h4 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.back_btn {
  text-align: center;
  color: #fff;
  background: #5a7992;
  display: inline-block;
  border-radius: 5px;
  margin-left: 10%;
  margin-top: 3%;
  cursor: pointer;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
  /* box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); */
  text-align: center;
  padding: 8px;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: .3s;
}

.back_btn:hover {
  /* background: #e19ea8; */
  opacity: .7;
}

.back_btn .material-icons {
  font-size: 18px;
  top: 4px;
  margin-right: 2px;
}

main.dash02 .content table tr td .radio_text {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: calc(18px + 5px);
  margin-right: calc(18px + 5px);
  padding-left: calc(18px + 5px);
  line-height: calc(18px + 5px);
  margin-bottom: 16px;
}
main.dash02 .content table tr td .radio_text:after {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  left: calc(((18px/2) - (10px) / 2));
  background-color: #5a7992;
  z-index: 1;
}

main.dash02 .content table tr td .radio_text:before {
  width: 18px;
  height: 18px;
  border: 1px solid #bbb;
  left: 0;
  z-index: 3;
  border-radius: 100%;
}

main.dash02 .content table tr td .radio_text:after, main.dash02 .content table tr td .radio_text:before {
  content: '';
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

main.dash02 .content table tr td .radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  margin: 0;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  left: calc(18px * -1);
  width: 18px;
  height: 18px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 100%;
  -webkit-box-shadow: 18px 0 #FFF;
          box-shadow: 18px 0 #FFF;
}

main.dash02 .content table tr td .radio_text input[type="radio"]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}

main.dash02 .content table tr td .radio_text input[type="radio"]:focus {
  opacity: .2;
  -webkit-box-shadow: 18px 0 #FFF;
          box-shadow: 18px 0 #FFF;
}

main.dash02 .content table tr td input[type="radio"] {
  margin-right: 8px;
  margin-bottom: 16px;
}

main.dash02 .content table tr td input[type="radio"]:nth-of-type(2) {
  margin-left: 16px;
}

main.dash02 .content table tr td .wrap_checkbox {
  width: 35%;
  margin-bottom: 16px;
}

main.dash02 .content table tr td .wrap_checkbox input[type=checkbox] {
  width: 20%;
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

main.dash02 .content table tr td .wrap_checkbox input[type=checkbox] + label {
  position: relative;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  padding-left: 2em;
  vertical-align: middle;
  user-select: none;
  cursor: pointer;
}

main.dash02 .content table tr td .wrap_checkbox input[type=checkbox] + label:before {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  content: '';
  color: #8cc3cb;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -9px;
  border: 2px solid #8cc3cb;
  text-align: center;
}

main.dash02 .content table tr td .wrap_checkbox input[type=checkbox] + label:after {
  background-color: transparent;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 3px;
  margin-top: -4px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 0 0 3px 3px;
  -o-border-image: none;
     border-image: none;
  -webkit-transform: rotate(-45deg) scale(0);
      -ms-transform: rotate(-45deg) scale(0);
          transform: rotate(-45deg) scale(0);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  content: '';
  background-color: #8cc3cb;
  position: absolute;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
}

main.dash02 .content table tr td .wrap_checkbox input[type=checkbox]:checked + label:before {
  background: #8cc3cb;
}

main.dash02 .content table tr td .wrap_checkbox input[type=checkbox]:checked + label:after {
  content: '';
  -webkit-transform: rotate(-45deg) scale(1);
      -ms-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
}

main.dash02 .content table.EventAdmin_view tr {
  background: #F6F6F6;
}

main.dash02 .content table.EventAdmin_view td {
  width: 50%;
}

main.dash02 .content table.EventAdmin_view td input#delete_button {
  border: none;
  height: 100%;
  background: #bbb;
}

main.dash02 .content table.EventAdmin_view td input#delete_button:hover {
  background: #aaa;
}

@media screen and (max-width: 768px) {
  main.dash02 .content table tr td input#EventEventDate, main.dash02 .content table tr td input#EventMaxnum, main.dash02 .content table tr td input#EventMaxnumPerSchool {
    width: 50%;
  }
  main.dash02 .content table tr.EventAdmin_view td {
    width: 100%;
    padding: 0;
  }
}

#EventViewCloseDisplayFlgForm,
#EventViewOpenDisplayFlgForm {
  float: right;
  width: 50%;
  max-width: 240px;
}

#EventViewCloseDisplayFlgForm input[type="submit"],
#EventViewOpenDisplayFlgForm input[type="submit"] {
  height: 100%;
  padding: 8px;
}

@media screen and (max-width: 768px) {
  #close_button,
  #open_button {
    height: auto;
    font-size: 1rem;
  }
}

input.btn_radio {
  display: none;
}

input.btn_radio:checked + label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #5a7992;
}

input.btn_radio + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0 20px;
  border-radius: 2px;
  color: #3e4956;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  margin-left: 8px;
  margin-bottom: 12px;
}

input.btn_radio + label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10px;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #eee;
}

.absence {
  color: #e01c1c;
  margin: 0;
  display: inline !important;
}

.content.container.common {
  background: #fff;
}

.content.container.common .inner_common {
  max-width: 70%;
  margin: auto;
}

.content.container.common section {
  margin-bottom: 56px;
}

.content.container.common p {
  clear: both;
  text-align: left;
  margin-bottom: 40px;
  line-height: 1.6;
}

.content.container.common strong {
  font-weight: bold;
}

.content.container.common h3 {
  margin-bottom: 48px;
}

.content.container.common h4 {
  text-align: left;
  margin-bottom: 8px;
}

.content.container.common ul {
  margin-top: -32px;
  margin-bottom: 32px;
}

.content.container.common .terms_date {
  margin-top: 40px;
  float: right;
}

.content.container.common table tr:nth-of-type(1) th {
  font-weight: bold;
}

.content.container.common table tr th {
  line-height: 1.6;
  border-right: 1px solid #e7e7e7;
}

.content.container.common table tr th:nth-of-type(1) {
  border-left: 1px solid #e7e7e7;
}

.content.container.common table tr td {
  line-height: 1.6;
  border-right: 1px solid #e7e7e7;
}

.content.container.common table tr td:nth-of-type(1) {
  border-right: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
}

@media screen and (max-width: 768px) {
  .content.container.common {
    background: #fff;
  }
  .content.container.common h3 {
    margin-bottom: 16px;
  }
  .content.container.common h4 {
    font-size: 1.8rem;
  }
  .content.container.common p {
    font-size: 1.4rem;
  }
  .content.container.common .inner_common {
    max-width: 90%;
    margin: auto;
  }
  .content.container.common table tr th {
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
  }
  .content.container.common table tr td {
    font-size: 1.4rem;
    border-left: 1px solid #e7e7e7;
  }
}
/* 追加 */
 @media screen and (min-width: 769px) {
.table_wrap {
	table-layout: fixed;
	width: 100%!important;
 }
 .table_wrap.Gokaku {
	  margin-top: 35px!important;
	}
 main.dash01 .content .table_wrap.Gokaku .info_btn:nth-of-type(2) {
	background: #5a7992!important;
}
.table_wrap caption {
	margin: 20px;
}

.table_wrap tr:first-of-type th:first-of-type {
	/*width: 11%!important;*/
}

.table_wrap th input,
.table_wrap td input,
.table_wrap td textarea {
	width: 80%!important;
}
.table_wrap td textarea {
	height: 400px;
	padding: 8px;
	border-radius: 5px;
	line-height: 1.8;
	border: 1px solid #f0f0f0;
	border-radius: 5px;
	padding: 8px;
}
.table_wrap th input,
.table_wrap td input,
.table_wrap td select{
	background: #fff3f5!important;
	border-color: #f0f0f0!important;
}
.table_wrap td input[type="submit"] {
	max-width: 240px!important;
	padding: 0!important;
	font-size: 1.6rem!important;
	box-shadow: none!important;
	background: #5a7992!important;
	color: #fff!important;
	margin-top: 0!important;
	cursor: pointer;
}
/*
.table_wrap td a[target="_blank"] {
	color: #5a7992!important;
}
*/
#preview_link {
	color: #5a7992!important;
}

/* csv_upload.ctp */
h2.public_gokaku {
	font-weight: bold;
    font-size: 2.2rem;
    text-align: center;
    padding: 40px 0;
}
table.public_gokaku caption {
	padding: 32px;
	background: #fff;
	margin: auto;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	line-height: 2;
	text-align: left;
}
table.public_gokaku {
	padding: 32px;
	background: #fff;
	width: 70%;
	margin: auto;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
table.public_gokaku tr {
	border: none;
}
table.public_gokaku td {
	border-bottom: 1px solid #f0f0f0;
}

/* entry_school.html */
table.gokaku_happyo .info_btn {
	margin-top: 0!important;
}

/* EntryManage - index.ctp */
.table_wrap.GokakuAdmin {
	margin-top: 40px!important;
}
table.GokakuAdmin tr {
	border: none!important;
}
table.GokakuAdmin a {
	margin-top: 0!important;
}
input#GokakuCsvfile {
	padding-top: 5px;
}
select#GokakuId {
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	height: 40px;
	padding: 4px 8px;
	width: 25%!important;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	background: #F0F4F7;
	float: left;
	background: #fff3f5!important;
	border-color: #f0f0f0!important;
}
select#GokakuId+span {
	line-height: 40px;
	margin-left: 16px;
}
 main.dash01 .content table tr th {
	 vertical-align: top;
 }
 main.dash01 .content table tr td {
	 vertical-align: middle;
 }
 main.dash01 .content table tr td textarea {
	 width: 100%;
 }
 /* GokakuAdmin - index.ctp */
 .text_require {
	 text-align: center;
 }
 header h1 img {
	 margin-right: 16px!important;
	 object-fit: cover!important;
	 height: 48px!important;
	 padding: 4px 0!important;
	 width: auto!important;
 }
 header a {
	 display: -webkit-flex;
	 display: -ms-flex;
	 display: flex;
	 align-items: center;
 }
 header a i {
	 margin-right: 4px;
 }
 ol {
	 padding-top: 70px;
	 padding-bottom: 16px;
	 width: 70%;
	 margin: auto;
	 /* overflow: auto; */
	}
 ol li {
	 /* float: left; */
	 display: inline;
	 font-size: 14px;
	 padding: 4px 0;
	 margin-right: 24px;
	 position: relative;
 }
  ol li:not(:last-of-type):after {
	  position: absolute;
    content: ">";
    top: 5px;
    right: -18px;
  }
 ol li  a {
	 color: #333;
	 transition: all .3s;
 }
  ol li  a:hover {
	  opacity: .7;
  }
 main.dash01 .content {
	 width: 70%;
	 margin: auto;
 }
 /* index.html  */
 .reload_msg {
	 padding-top: 48px;
	}
 .reload_msg form {
	 margin-bottom: 40px;
 }
 .reload_msg li {
	 margin-bottom: 8px;
 }
}
 @media screen and (max-width: 768px) {
	 main.dash01 .content .table_wrap.Gokaku {
		 margin-top: 35px!important;
		}
	 main.dash01 .content .table_wrap.Gokaku .info_btn:nth-of-type(2) {
		 background: #5a7992!important;
	 }
	 .table_wrap.Gokaku a {
		 margin-top: 40px!important;
	 }
	 .table_wrap caption {
	 	margin: 20px;
	 }
	 .table_wrap th input,
	 .table_wrap td input,
	 .table_wrap td textarea {
	 	width: 100%!important;
	 }
	 .table_wrap th input,
	 .table_wrap td input {
		 background: #fff3f5!important;
	 	border-color: #f0f0f0!important;
	 }
	  .table_wrap td textarea {
		  font-size: 12px;
		  border: 1px solid #f0f0f0;
		  border-radius: 5px;
		  padding: 8px;
		  height: 240px;
		  line-height: 1.8;
	  }
	 .table_wrap td input[type="submit"] {
	 	width: 200px!important;
	 	padding: 0!important;
	 	font-size: 1.6rem!important;
	 	box-shadow: none!important;
		background: #5a7992!important;
		color: #fff!important;
	 }
	  .table_wrap td a[target="_blank"] {
		  color: #5a7992!important;
	  }
	  /* csv_upload.ctp */
	  h2.public_gokaku {
	  	font-weight: bold;
	      font-size: 1.8rem;
	      text-align: center;
	      padding: 40px 0;
	  }
	  table.public_gokaku caption {
	  	padding: 24px;
	  	background: #fff;
	  	margin: auto;
	  	border-radius: 5px;
	  	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	  	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	  	margin-bottom: 30px;
	  	line-height: 2;
	  	text-align: left;
		font-size: 12px;
	  }
	  table.public_gokaku {
	  	padding: 32px;
	  	background: #fff;
	  	width: 70%;
	  	margin: auto;
	  	border-radius: 5px;
	  	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	  	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	  }
	  table.public_gokaku tr {
	  	border: none!important;
	  }
	  table.public_gokaku td {
	  	border-bottom: 1px solid #f0f0f0!important;
		padding: 8px!important;
		/* width: 20%!important; */
		width: 33.3333%!important;
		float: left!important;
		text-align: center!important;
		font-size: 14px!important;
	  }
	 main.dash01 .content .table_wrap {
		 padding: 0!important;
		 margin: 0!important;
	 }
	 input#GokakuCsvfile {
	 	padding-top: 5px;
	 }
	 select#GokakuId {
		 border: 1px solid #e0e0e0;
		 border-radius: 5px;
		 height: 40px;
		 font-size: 1.4rem;
		 padding: 4px 8px;
		 width: 25%!important;
		 -webkit-transition: .3s;
		 -o-transition: .3s;
		 transition: .3s;
		 background: #F0F4F7;
		 float: left;
		 background: #fff3f5!important;
	 	border-color: #f0f0f0!important;
	 }
	 select#GokakuId+span {
		 line-height: 40px;
		 font-size: 13px;
	 }
	 main.dash01 .content table tr {
		 /* display: -webkit-flex;
		 display: -ms-flex;
		 display: flex;
		 flex-wrap: wrap; */
		 display: inline;
	 }
	 main.dash01 .content table tr th {
		 padding: 12px 0px 8px 16px!important;
	 }
	 main.dash01 .content table tr th.sp {
		 width: 30%!important;
		 font-size: 13px!important;
	 }
	 main.dash01 .content table tr th.sp+td {
		 width: 70%!important;
		 font-size: 13px!important;
	 }
	 main.dash01 .content table tr td {
		 padding: 8px!important;
	 }
	 main.dash01 .content table tr td:first-of-type {
		 text-align: center;
		 border-bottom: 1px solid #f0f0f0;;
	 }
	 main.dash01 .content .info_btn,
	 main.dash01 .content button {
		 margin-top: 8px;
		 margin-bottom: 8px;
	 }
	 main.dash01 .content > h3 {
		 text-align: center!important;
	 }
	 /* GokakuAdmin - index.ctp */
	 .text_require {
		text-align: center;
	 }
	 header h1 {
		 padding-left: 24px;
	 }
	 header h1 img {
    float: left;
    width: auto;
    padding: 4px 0;
    height: 56px;
    object-fit: cover;
    margin-right: 24px;
}
	 footer {
		 position: relative!important;
	 }
	 ol {
		padding-top: 56px;
		width: 90%;
		margin: auto;
		/* overflow: auto; */
	 }
	 ol li {
		/* float: left; */
		display: inline;
		font-size: 13px;
		padding: 4px 0;
		margin-right: 24px;
		position: relative;
	 }
	  ol li:not(:last-of-type):after {
		 position: absolute;
		content: ">";
		top: 5px;
		right: -18px;
	  }
	 ol li  a {
		color: #333;
	 }
	 ol li  a:hover {
   	  text-decoration: underline;
     }
	 #reload_button {
		 margin: 56px auto 40px;
	 }
	 .reload_msg li {
		 margin-bottom: 8px;
		 font-size: 13px;
	 }
	 footer h3 {
		 padding-left: 10%;
	 }
 }
  /* 追加終わり */
/*# sourceMappingURL=style.css.map */
