@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

:root {
  --color-main:       #004896;
  --color-accent:     #DC3143;
  --color-normal:     #333333;
  --color-disabled:   #878785;
  --color-background: #F3F3F3;
  --color-white:      #FFFFFF;
  --color-background2: #E1EFFF;
}

html, body {
  height: 100%;
}

body {
  font-family: "Arial", "メイリオ", sans-serif;
  margin: 0;
}

a {
  font-size: 16px;
  color:var(--color-main) !important;
  text-decoration: none;
}

p {
  font-size: 16px;
}

::placeholder {
  color: var(--color-disabled);
}


/* =================================
  add style
================================== */
.font-size--10 {
  font-size: 10px !important;
}
.font-size--12 {
  font-size: 12px;
}
.font-size--14 {
  font-size: 14px !important;
}
.font-size--15 {
  font-size: 15px;
}
.font-size--16 {
  font-size: 16px;
}
.font-size--18 {
  font-size: 18px;
}
.font-size--20 {
  font-size: 20px;
}
.font-size--32 {
  font-size: 32px;
}
.font-size--44 {
  font-size: 44px;
}
.font-size--140 {
  font-size: 140px;
}

.font-weight--bold {
  font-weight: bold !important;
}

.text-align--center {
  text-align: center !important;
}

.text-align--left {
  text-align: left !important;
}

.text-align--right {
  text-align: right !important;
}

.width--fit-content {
  width: fit-content;
}
.width--100 {
  width: 100%;
}
.height--100 {
  height: 100%;
}

.color--normal {
  color: var(--color-normal);
}
.color--main {
  color: var(--color-main);
}
.color--disabled {
  color: var(--color-disabled);
}
.color--accent {
  color: var(--color-accent);
}
.color--white {
  color: var(--color-white);
}

.bgcolor--normal {
  background-color: var(--color-background) !important;
}
.bgcolor--main {
  background-color: var(--color-background2);
}
.bgcolor--disabled {
  background-color: var(--color-disabled) !important;
}
.bgcolor--accent {
  background-color: var(--color-accent) !important;
}
.bgcolor--white {
  background-color: var(--color-white) !important;
}

.margin-top--5 {
  margin-top: 5px !important;
}
.margin-top--10 {
  margin-top: 10px !important;
}
.margin-top--20 {
  margin-top: 20px !important;
}
.margin-top--24 {
  margin-top: 24px !important;
}
.margin-top--40 {
  margin-top: 40px !important;
}
.margin-bottom--0 {
  margin-bottom: 0 !important;
}
.margin-bottom--5 {
  margin-bottom: 5px !important;
}
.margin-bottom--10 {
  margin-bottom: 10px !important;
}
.margin-bottom--20 {
  margin-bottom: 20px !important;
}
.margin-bottom--40 {
  margin-bottom: 40px !important;
}
.margin-bottom--50 {
  margin-bottom: 50px !important;
}
.margin-left--10 {
  margin-left: 10px;
}
.margin-left--20 {
  margin-left: 20px;
}
.margin-right--10 {
  margin-right: 10px;
}
.margin-right--20 {
  margin-right: 20px;
}
.margin--zeroauto {
  margin: 0 auto;
}

.padding--0 {
  padding: 0 !important;
}
.padding-top--10 {
  padding-top: 10px !important;
}
.padding-top--20 {
  padding-top: 20px !important;
}
.padding-bottom--10 {
  padding-bottom: 10px !important;
}
.padding-bottom--20 {
  padding-bottom: 20px !important;
}
.padding-left--10 {
  padding-left: 10px !important;
}
.padding-left--20 {
  padding-left: 20px !important;
}
.padding-left--30 {
  padding-left: 30px !important;
}
.padding-left--40 {
  padding-left: 40px !important;
}
.padding-right--10 {
  padding-right: 10px;
}
.padding-right--20 {
  padding-right: 20px !important;
}
.padding-right--30 {
  padding-right: 30px !important;
}
.padding-right--40 {
  padding-right: 40px !important;
}


.display--flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.justify-content--flex-start {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start !important;
  -ms-flex-justify-content: flex-start !important;
  justify-content: flex-start !important;
}
.justify-content--flex-end {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end !important;
  -ms-flex-justify-content: flex-end !important;
  justify-content: flex-end !important;
}
.justify-content--center {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.justify-content--space-between {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.align-items--center {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.align-items--start {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
}
.align-items--end {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.flex-direction--column {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction : column;
  -ms-flex-direction : column;
  flex-direction: column;
}
.flex-flow {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow : column;
  -ms-flex-flow : column;
  flex-flow: column;
}

.white-space--nowrap {
  white-space: nowrap;
}
.white-space--pre-wrap {
  white-space: pre-wrap;
}

.word-wrap--break-word {
  word-wrap:break-word;
}

.show {
  display: block;
}
.hide {
  display: none !important;
}
.mb {
  display: none;
}

.icon-text {
  display: flex;
  align-items: center;
}

.msg-box {
  width: 80%;
  max-width: 520px;
  margin: 40px auto;
  background-color: var(--color-white);
  border: solid 1px var(--color-disabled);
  border-radius: 4px;
  padding: 20px 10px;
}
.msg-box > p {
  margin-bottom: 0;
}

/* =================================
  Header
================================== */
.mdl-layout__header--ext {
  background-color: #fff;
  width: 100%;
  min-height: 80px;
  box-shadow: none;
}
.mdl-layout__header-row--ext {
  padding-left: 20px;
  width: 100%;
  height: 100%;
}
.header__logo {
  width: 60px;
  height: 60px;
}
.header__title {
  color: var(--color-normal);
  font-size: 20px;
  font-weight: normal;
  padding-left: 20px;
  margin-bottom: 0;
}
.header__license {
  color: var(--color-normal);
  margin-right: 10px;
  margin-bottom: 0;
  background-color: var(--color-background2);
  border-radius: 3px;
  padding: 4px 8px;
  text-align: center !important;
}
.mdl-button--ext {
  margin-left: 10px !important;
  padding: 0;
  min-width: 30px;
  text-align: center;
}
.mdl-menu__item--ext {
  padding: 0;
}
.mdl-menu__item--ext > a {
  display: block;
  text-decoration: none !important;
}


/* ---------------------------------
  ログイン
---------------------------------- */
.login-box {
  max-width: 500px;
  margin: 0 auto;
}

.login-box__item {
  margin-bottom: 20px;
  padding: 0 10%;
}

.login-box__item-title {
  color: var(--color-normal);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 4px;
}

.login-box__item input,
.login-box__item textarea {
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  height: 40px;
  border: solid 1px var(--color-disabled);
  border-radius: 4px;
  padding: 6px 10px;
  box-sizing: border-box;
}
.login-box__item select {
  font-size: 16px;
  width: 100%;
  max-width: 400px;
  height: 40px;
  border: solid 1px var(--color-disabled);
  border-radius: 4px;
  padding: 4px;
}

.login-box__item select option:hover {
  background-color: var(--color-main);
}
.login-box__item input:focus,
.login-box__item textarea:focus,
.login-box__item select:focus {
  border: solid 1px var(--color-main);
  outline: solid 1px var(--color-main);
}


/* =================================
  main
================================== */
.mdl-layout--fixed-drawer2 > .mdl-layout__content {
  margin-left: 150px
}

.form-box {
  width: 100%;
}

.page-top-box {
  width: 100%;
  background-color: var(--color-background);
  padding-bottom: 26px;
}
.page-top-box__content {
  width: calc(100% - 40px);
  margin: 0 auto;
  max-width: 1000px;
}
/*吹き出し三角*/
.triangle {
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 70px 0 70px;
  border-color: var(--color-background) transparent transparent transparent;
}
.triangle2 {
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 70px 0 70px;
  border-color: var(--color-background2) transparent transparent transparent;
}
.main-box {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 30px;
}

.page-title {
  font-size: 34px;
  line-height: 1.2em;
  font-weight: bold;
  text-align: center;
}
.page-sub-title {
  font-size: 20px;
  text-align: center;
}
.page-index {
  font-size: 30px;
  line-height: 1.2em;
  font-weight: bold;
  text-align: center;
}
/*注意文*/
.caution-txt {
  font-size: 20px;
  color: var(--color-accent);
  font-weight: bold;
  text-align: center;
}

.cursor--default {
  cursor: default !important;
}

/* ---------------------------------
  パンくずリスト
---------------------------------- */
.breadcrumb-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 48px;
  padding: 0 20px 0 20px;
  background-color: var(--color-background);
}
.breadcrumb-list a,
.breadcrumb-list p {
  font-size: 13px !important;
}
.breadcrumb-list--height--bottom {
  margin-bottom: 0 !important;
  height: 48px;
}
.mdl-layout--fixed-drawer2 > .breadcrumb-list {
  margin-left: 150px;
}


/* ---------------------------------
  入力フォーム
---------------------------------- */
.input-item {
  margin-bottom: 20px;
}
.input-item__title {
  font-size: 16px;
  margin-bottom: 4px;
}
.input-item__desc {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--color-disabled);
}
.input-item input[type="text"],
.input-item input[type="number"],
.input-item input[type="date"],
.input-item input[type="url"],
.input-item input[type="password"],
.input-item input[type="email"],
.input-item input[type="tel"] {
  font-size: 16px;
  width: 100%;
  height: 40px;
  border: solid 1px var(--color-disabled);
  border-radius: 4px;
  padding: 6px 10px;
  box-sizing: border-box;
}
.input-item input[type="text"]:read-only,
.input-item input[type="number"]:read-only,
.input-item input[type="url"]:read-only,
.input-item input[type="password"]:read-only,
.input-item input[type="email"]:read-only,
.input-item input[type="tel"]:read-only {
  border: none;
  width: 100%;
  background-color: var(--color-background);
}
.input-item textarea {
  font-size: 16px;
  width: 100%;
  height: 64px;
  border: solid 1px var(--color-disabled);
  border-radius: 4px;
  padding: 6px 10px;
  box-sizing: border-box;
}
.input-item select {
  font-size: 16px;
  width: 100%;
  height: 40px;
  border: solid 1px var(--color-disabled);
  border-radius: 4px;
  padding: 4px;
}

.input-item select option:hover {
  background-color: var(--color-main);
}
.input-item input:focus,
.input-item textarea:focus,
.input-item select:focus {
  border: solid 1px var(--color-main);
  outline: solid 1px var(--color-main);
}

.input-item input[type="checkbox"],
.input-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.input-item .check-box,
.input-item .radio-box {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
}
.input-item .check-box label,
.input-item .radio-box label {
  width: 80px;
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding: 10px;
  margin-right: 6px;
  margin-bottom: 2px;
  border-radius: 3px;
  cursor: pointer;
}
.input-item .radio-box2 label {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  padding: 10px;
  margin-right: 6px;
  margin-bottom: 2px;
  border-radius: 3px;
  cursor: pointer;
}
.input-item .check-box input[type="checkbox"],
.input-item .radio-box input[type="radio"],
.input-item .radio-box2 input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input-item .check-box input[type="checkbox"] + label,
.input-item .radio-box input[type="radio"] + label,
.input-item .radio-box2 input[type="radio"] + label {
  background-color: var(--color-white);
  border: solid 1px var(--color-main);
  color: var(--color-main);
  font-size: 16px;
}
.input-item .check-box  input[type="checkbox"]:checked + label,
.input-item .radio-box  input[type="radio"]:checked + label,
.input-item .radio-box2 input[type="radio"]:checked + label {
  background-color: var(--color-white);
  border: solid 1px var(--color-main);
  color: var(--color-main);
}
.input-item .check-box input[type="checkbox"] + label:before {
  content: '\e835';
  font-family: 'Material Icons';
  color: var(--color-main);
  margin-right: 6px;
  position: relative;
  top: 0px;
  font-size: 1.2em;
}
.input-item .check-box input[type="checkbox"]:checked + label:before {
  content: '\e834';
  font-family: 'Material Icons';
  color: var(--color-main);
}
.input-item .radio-box  input[type="radio"] + label:before,
.input-item .radio-box2 input[type="radio"] + label:before {
  content: '\e836';
  font-family: 'Material Icons';
  color: var(--color-main);
  margin-right: 6px;
  position: relative;
  top: 0px;
  font-size: 1.2em;
}
.input-item .radio-box  input[type="radio"]:checked + label:before,
.input-item .radio-box2 input[type="radio"]:checked + label:before {
  content: '\e837';
  font-family: 'Material Icons';
  color: var(--color-main);
}
/*disabled*/
.input-item .check-box input[type="checkbox"]:disabled + label {
  border: solid 1px var(--color-disabled);
  color: var(--color-disabled);
  cursor: default;
}
.input-item .check-box input[type="checkbox"]:disabled + label:before {
  color: var(--color-disabled);
}

.input-item__disp {
  font-size: 16px;
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--color-disabled);
  border-radius: 4px;
  padding: 6px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

/*必須マーク*/
.required-mark {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 2px 4px;
  border-radius: 4px;
  margin-left: 4px;
}
/*エラーメッセージ*/
.err-txt {
  color: var(--color-accent);
}

.button-box {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.button-box--bottom {
  padding: 20px 0 30px 0;
  display: flex;
  justify-content: center;
}


.doc-file-box {
  display: flex;
  align-items: center;

}
.doc-text {
  color: var(--color-main);
  font-size: 18px;
  display: flex;
  align-items: center;
  border-bottom: 2px dotted var(--color-main);
  padding-right: 16px;
  margin-top: 6px;
  margin-bottom: 10px;
  cursor: pointer;
}
.doc-text::before {
  content: '\e415';
  font-family: 'Material Icons'; 
  color: var(--color-main);
  font-size: 20px;
  padding-right: 6px;
}

.btn-icon {
  color: var(--color-main);
  border: none;
  background: transparent;
  cursor: pointer;
}

/* ---------------------------------
  パスワード入力フォーム
---------------------------------- */
.passwd-box {
  border: solid 1px var(--color-disabled);
  border-radius: 4px;
  background-color: var(--color-white);
  display: flex;
  vertical-align: middle;
}
.passwd-box input{
  border: none !important;
  outline: none !important;
  width: calc(100% - 50px) !important;
}
.passwd-box button{
  border: none;
  outline: none;
  cursor: pointer;
  background:none;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: auto;
}
.passwd-box button:hover{
  background-color: var(--color-background);
}
.passwd-box button > i{
  padding: 0;
  margin: 0;
  color: var(--color-disabled);
}
/*Edge　目アイコン自動表示対策*/
input::-ms-reveal {
  display: none;
}

/* ---------------------------------
  ボタン・リンク
---------------------------------- */
.bottom-box--vertical {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.button--exe {
  width: 256px;
  height: 56px;
  background-color: var(--color-main);
  border-radius: 6px;
  font-size: 16px;
  color: #fff;
  border-style: none;
  cursor: pointer;
}
.btn-start {
  width: 256px;
  height: 56px;
  background-color: var(--color-white);
  font-size: 18px;
  color: var(--color-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
}
.btn-start--medium {
  width: 138px;
  height: 40px;
  background-color: var(--color-white);
  font-size: 18px;
  color: var(--color-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
}
.btn-start--small {
  background-color: var(--color-white);
  font-size: 16px;
  color: var(--color-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  background: transparent;
  background-color: var(--color-white);
  cursor: pointer;
  padding: 10px 4px;
  border-radius: 6px;
  width: 150px;
  height: 34px;
  margin-bottom: 4px;
}
.btn-start--xs {
  background-color: var(--color-white);
  font-size: 13px;
  color: var(--color-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-main);
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 4px;
}

.link-text {
  border: none;
  outline: none;
  background: transparent;
  color: var(--color-main);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.link-text i {
  margin-right: 4px;
}


/* ---------------------------------
  検索ボックス
---------------------------------- */
.search-box {
  width: calc(100%-24);
  max-width: 1000px;
  display: flex;
  justify-content: end;
}
.search-box div {
  border: solid 1px var(--color-disabled);
  border-radius: 9999px;
  width: 300px;
  height: 40px;
  color: var(--color-disabled);
  font-size: 16px;
  padding-left: 20px;
  display: flex;
  vertical-align: middle;
}
.search-box div i{
  padding-top: 8px;
  margin-right: 10px;
}
.search-box div input{
  border: none;
  outline: none;
  width: calc(100% - 80px);
}
.search-box div input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset;
}
.search-box div button{
  border: none;
  outline: none;
  cursor: pointer;
  background:none;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: auto;
}
.search-box div button:hover{
  background-color: var(--color-background);
}
.search-box div button > i{
  padding: 0;
  margin: 0;
}

/* ---------------------------------
  競技会一覧
---------------------------------- */
.comlst-item,
.compe-item {
  position: relative;
  background-color: #fff;
  width: calc(100% - 24px);
  margin: 10px auto 26px auto;
  max-width: 1000px;
  cursor: pointer;
}
.compe-item:hover {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .2);
  transition: box-shadow 0.2s ease-out;
	-webkit-transition: box-shadow 0.2s ease-out;
	-ms-transition: box-shadow 0.2s ease-out;
}
.comlst-item-inact,
.compe-item-inact {
  background-color: #fff;
  width: calc(100% - 24px);
  margin: 10px auto 26px auto;
  max-width: 1000px;
  cursor: auto;
}
.comlst-item__img,
.compe-item__img {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 140px;
  background-color: var(--color-background2) !important;
}
.compe-img {
  width:100%;
  height:100%;
}
.icon-photo {
  font-size: 3rem;
  color: var(--color-main);
}

.mdl-card__supporting-text--ext {
  padding: 0;
}

.compe-item__status {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: end;
}
.compe-item__status div {
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 16px;
  border-radius: 0 0 0 10px;
  width: 120px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.compe-item__status--diaabled {
  background-color: var(--color-disabled) !important;
}

.comlst-item h4,
.compe-item h4 {
  font-weight: bold;
  font-size: 26px;
  margin: 14px auto;
}
.compe-item h4 {
  width: 90%;
}


.ribbon-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.ribbon {
  display: inline-block;
  position: absolute;
  padding: 7px 0;
  left: -40px;
  top: 22px;
  width: 160px;
  text-align: center;
  font-size: 18px;
  line-height: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  letter-spacing: 0.05em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ---------------------------------
  会場一覧
---------------------------------- */
.compe-box-top {
  width: calc(100% - 24px);
  max-width: 1000px;
  margin: 0 auto 30px auto;
}
.compe-box-top__title{
  font-size: 36px;
  text-align: center;
  margin-top: 0;
}
.compe-box-top__doc-box {
  background-color: var(--color-white);
  display: flex;
  padding: 14px 20px 14px 40px !important;
}
.compe-box-top__doc-box div:first-child {
  font-size: 20px;
  /*background: no-repeat url('smarty_tpl/images/document.svg');*/
  
  display: flex;
  align-items: center;
}

.compe-box-top__doc-box div a {
  font-size: 16px;
  padding-bottom: 14px;
}
.compe-box-top__doc-box div a:last-child {
  padding-bottom: 0;
}

.venue-box--entried {
  width: 100%;
  background-color: var(--color-background2);
  padding: 18px 0;
}
.venue-box {
  background-color: var(--color-white);
  padding: 0 0 30px 0;
}

.venue-box__text {
  text-align: center;
  font-size: 20px;
  padding: 20px 0;
}

.venue-item {
  width: calc(100% - 24px);
  margin: 12px auto;
  max-width: 1000px;
  min-height: 78px;
  padding-bottom: 10px;
}
.venue-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}
.venue-item__status {
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 14px;
  border-radius: 0 0 10px 0;
  width: 100px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.venue-item__status--disabled {
  background-color: var(--color-disabled) !important;
  cursor: default !important;
}

.venue-item__contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.venue-item__contents div:last-child {
  display: flex;
  /*align-items: flex-end;*/
  margin-top: 10px;
}

.venue-item__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}
.venue-item__text{
  font-size: 16px;
  margin-bottom: 0;
}
.venue-button {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 8px;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  margin-right: 20px;
}

.venue-button i {
  font-size: 40px;
}
.venue-button span {
  font-size: 12px;
}

.venue-button--disabled {
  width: 70px;
  height: 70px;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 8px;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------
  マイページ／会員ページ
---------------------------------- */
.mypage-box {
  width: calc(100% - 24px);
  margin: 0 auto 20px auto;
  max-width: 600px;
  background-color: var(--color-white);
  padding: 10px 40px 20px 40px;
}
.mypage-box table {
  width: 100%;
  border-collapse: collapse;
}

.mypage-box table tr td {
  border-bottom: solid 1px var(--color-disabled);
}
.mypage-box table td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.mypage-box table td:first-of-type {
  width: 30%;
  padding-left: 10px;
}
.mypage-box table td:last-of-type {
  width: 70%;
}

/* ---------------------------------
  会員情報
---------------------------------- */
.profile-box {
  width: calc(100% - 24px);
  margin: 12px auto;
  max-width: 600px;
  min-height: 78px;
  padding-bottom: 10px;
}
.profile-box__disp {
  padding: 0 20px;
  margin-bottom: 20px;
}
.profile-box__input {
  background-color: var(--color-background2);
  padding: 20px;
  border-radius: 6px;
}

/* ---------------------------------
  申込（EntReg）
---------------------------------- */
.entry-venue-box {
  background-color: var(--color-background2);
  padding: 20px;
}

.entry-venue-box__title {
  font-size: 20px;
  font-weight: bold;
}
.entry-venue-box__date:last-child {
  margin-bottom: 0;
}
.entry-list {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto 20px auto;
}
.entry-list__item {
  width: 100%;
  margin-bottom: 4px;
}
.entry-list__item > div {
  padding: 6px 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.entry-list__item > div:first-child {
  min-width: 100px;
  background-color: var(--color-background);
}
.entry-list__item > div:last-child {
  background-color: var(--color-white);
}

.payment {
  display: block;
  width: 100%;
}
.payment p:last-child {
  margin-bottom: 0;
}

.entry-box {
  width: calc(100% - 24px);
  margin: 40px auto;
  max-width: 600px;
  min-height: 78px;
  padding-bottom: 10px;
}

/* ---------------------------------
  ポップアップ
---------------------------------- */
.modal-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
}
.modal_overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.3);
}
.dialog-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  width: auto;
  max-width: 80%;
  min-width: 300px;
  border-radius: 4px;
}

.dialog-box__header {
  width: 100%;
  height: 50px;
  background-color: var(--color-main);
  border-radius: 4px 4px 0 0;
}
.dialog-box__header > i {
  color: var(--color-white);
  position: fixed;
  top: 6px;
  left: calc(100% - 30px);
  cursor: pointer;
}
.dialog-box__header > div {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 10px;
  left: calc(50% - 40px);
  border-radius: 50%;
  background-color: var(--color-white);
  padding-top: 10px;
  padding-left: 12px;
}
.dialog-box__header > div > img {
  width: 60px;
  height: 60px;
}
.dialog__item {
  margin-top: 20px;
  padding: 0 24px;
}
.dialog-box__title p {
  font-weight: bold;
}
.dialog-box__title p:last-child {
  font-weight: bold;
}
.dialog-box__text {
  height: 160px;
  margin-bottom: 20px;
}
.dialog-box__text > p {
  height: 100%;
  overflow-y: auto;
  margin-bottom: 0;
}
.mdl-dialog__title--notice {
  text-align: center;
  font-size: 3rem;
}

.dialog__item2 {
  margin-top: 40px;
  margin-bottom: 20px;
  height: 100%;
  padding: 10px 24px 10px;
  display: flex;
  flex-direction: column;
}
.dialog__item2 > div {
  height: 100%;
  padding: 6px 0;
}

/* =================================
  一括操作用モーダル
================================== */
.running-modal-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
}
.running-modal_overlay {
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.3);
}
.running-dialog--form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #F5A23A;
  color: #fff;
  min-width: 300px;
  height: auto;
  padding: 20px 0 18px 0;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}
.running-dialog--form > p {
  font-size: 22px;
  margin: 0 0 0 6px;
}
.running-icon {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0%   { transform: rotate(360deg); }
  100% { transform: rotate(0); }
}


/* =================================
　システムエラー画面
================================== */
.err-box {
  margin: 50px auto;
  text-align: center;
  font-size: 1.1em;
}



/* =================================
  Media Queries
================================== */
@media (max-width: 479px) {
  .mb{
    display: block;
  }
  .mdl-layout__header--ext {
    min-height: 46px;
  }
  .mdl-layout__header-row--ext {
    padding-left: 10px;
  }
  .header__logo {
    width: 20px;
    height: 20px;
  }
  .header__title {
    font-size: 8px;
    line-height: 1.1em;
    padding-top: 4px;
    padding-left: 4px;
  }
  .header__license {
    margin-right: 6px;
    margin-bottom: 0;
    font-size: 12px;
    padding: 2px 6px;
  }
  .mdl-button--ext {
    margin-left: 4px !important;
  }

  .breadcrumb-list {
    padding: 0 10px 0 15px;
    font-size: 11px !important;
    line-height: 16px !important;
  }
  .breadcrumb-list a,
  .breadcrumb-list p {
    font-size: 11px !important;
    line-height: 16px !important;
  }

  .login-box > p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-box {
    width: calc(100% - 24px);
  }
  .page-title {
    font-size: 26px;
    margin-bottom: 0;
    padding-left: 6px;
    padding-right: 6px;
  }

  .compe-box-top__doc-box {
    padding-left: 20px !important;
  }
  .compe-box-top__doc-box div:first-child {
    padding-bottom: 10px;
  }
  
  .mdl-card__supporting-text--cnt-ext {
    padding: 10px;
  }

  .venue-item__contents div:last-child {
    margin-top: 10px;
  }

  .venue-box__text{
    padding: 0 10px;
    font-size: 16px;
  }

  .venue-button {
    margin-right: 14px;
  }

  .entry-list {
    width: calc(100% - 24px);
    margin: 0 auto;
  }

  .mypage-box {
    padding: 10px 10px 20px 10px;
  }

  .msg-item {
    width: 100%;
    margin: 0 auto;
  }
  .mdl-data-table--ext {
    width: calc(100% - 20px);
    margin: 0 auto;
    font-size: 12px;
  }

  .SendTime--width, .SendName--width {
    white-space: normal;
  }

  .page-coursetitle {
    padding: 0 15px;
  }
  .page-coursetitle p {
    font-size: 12px !important;
  }

  .refmaterial-item {
    width: calc(100% - 30px);
    margin: 20px auto;
  }

  .refmaterial-icon {
    display: none;
  }
  .refmaterial-small{
    display: inline;
    margin-top: 20px;
    padding-right: 20px;
    font-size: 32px !important;
  }
  .mdl-card__refmaterial {
    margin: 0;
  }

  .breakBox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction : column;
    -ms-flex-direction : column;
    flex-direction: column;
  }

  .refmaterial-titlearea {
    width: 100%;
  }
  .notice-table td:first-of-type {
    padding-left: 5px;
  }
  .notice-table td:last-of-type {
    padding-right: 5px;
  }
  .mdl-dialog--notice, .mdl-dialog--mes {
    width: 90%;
    max-width: 90%;
  }

  .err-box {
    font-size: 0.9em;
  }

  .mes-table {
    white-space: normal;
    font-size: 12px;
  }
  .mdl-dialog--form {
    width: 70%;
  }
}


@media (max-width: 800px) {
  .mb{
    display: block;
  }
}

@media (max-width: 320px) {
  .notice-table td:first-of-type {
    padding-left: 5px;
  }
  .notice-table td:last-of-type {
    padding-right: 5px;
  }
  .mdl-dialog--notice, .mdl-dialog--mes {
    width: 90%;
    max-width: 90%;
  }
}

