@media screen and (max-width: 767px) {
  .button + .button {
    margin-top: 10px;
  }
  .messageActionModule .button + .button {
    margin-top: 0;
  }
}

.orange {
  color: #ed6d00;
}

.mainModule.full {
  width: 100%;
}

.actionModule {
  background-color: #ed6d0d;
  color: #fff;

  font-size: 13px;
}

.actionModule h2 {
  background-color: #ed6d0d;
  padding-bottom: 9px;

  padding: 0 20px;

  font-size: 16px;
  font-weight: bold;

  line-height: 52px;

  border-bottom: solid 2px #f18a3d;
}

.actionModule p {
  font-weight: normal;
  line-height: 1.5;

  margin-bottom: 20px;

  font-size: 13px;
}

.actionModule .inner {
  background-color: #ed6d0d;
  padding: 10px 15px 20px;
}

.actionModule ul {
  padding: 0;
  border: none;

  overflow: hidden;
}

.actionModule li a {
  display: block;

  border-radius: 0 2px 2px 0;

  padding-left: 6px;
  margin-left: 10px;

  color: #ed6d0d;
  background-color: #fff;

  line-height: 40px;

  font-weight: bold;

  position: relative;
}

.actionModule li + li {
  margin-top: 10px;
}

.actionModule li a:before {
  content: "";
  height: 0;
  width: 0;

  border: solid 20px transparent;
  border-right: solid 10px #fff;

  position: absolute;
  top: 0;
  right: 100%;
}

/* Buttons  */

.button {
  display: inline-block;

  background-color: #ed6d00;
  color: #fff !important;

  text-align: center;

  line-height: 56px;
  width: 230px;

  position: relative;
}

.button.gray {
  background-color: #939393;
}

.button.lightgray {
  background-color: #f2f2f2;
  color: #000 !important;
}

.button.blue {
  background-color: #357ecf;
}

.button.yes:before {
  background: url(../img/common/ico_yes01.png) no-repeat;
}

.button.no:before,
.button.no:after {
  content: "";

  height: 2px;
  width: 30px;

  background-color: #fff;

  position: absolute;
  top: 0;
  left: 13px;
  bottom: 0;

  margin: auto;
}

.button.no:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.button.no:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.button.next:after,
.button.prev:before {
  background: url(../img/common/ico_arrow01_right.png) no-repeat;
}

.button.next:after {
  right: 6px;
}

.button.next.black:after {
  background: url(../img/common/ico_arrow03_right.png) no-repeat;
  background-size: contain;
}

.button.prev:before {
  transform: rotate3d(0, 1, 0, 180deg);
  left: 6px;
}

.button.yes:before,
.button.prev:before,
.button.next:after {
  content: "";

  margin: auto;

  background-size: contain;
  background-repeat: no-repeat;

  position: absolute;
  top: 0;
  bottom: 0;
}

.button.yes:before {
  height: 20px;
  width: 20px;
  left: 15px;
}

.button.prev:before,
.button.next:after {
  height: 15px;
  width: 7px;
}

.pagination .button {
  line-height: 30px;
  width: 120px;
}

.pagination {
  margin: 0 auto;
  text-align: center;

  font-size: 0;
}

.pagination li {
  display: inline-block;
}

.pagination li a {
  padding: 0 8px;
}

.pagination li + li {
  margin-left: 10px;
}

.pagination .current a {
  color: #ed6d00;
  text-decoration: underline;
}

.squareList li {
  position: relative;

  line-height: 26px;

  padding-left: 18px;
}

.squareList li:before {
  content: "";

  height: 6px;
  width: 6px;

  margin: 10px 0;

  background-color: #ed6d00;

  position: absolute;
  top: 0;
  left: 0;
}

.withdraw {
  background-color: #e0e0e0;

  padding: 20px 15px;
}

.withdraw a {
  width: 100%;
  background-color: #f7f7f7;
  color: #111 !important;

  padding-left: 10px;

  font-size: 12px;

  text-align: left;

  line-height: 40px;

  font-weight: bold;
}

/* Desktop */

@media screen and (min-width: 768px), print {
  .squareList .important span {
    color: #cc0000;
  }
}

/* Mobile */

@media screen and (max-width: 767px) {
  .squareList .important {
    color: #ed6d00;
  }

  .button {
    font-size: 17px;
  }

  .button.next::after,
  .button.prev::before {
    height: 15px;
    width: 7px;
  }

  .button.yes:before {
    height: 25px;
    width: 25px;
  }

  .button.checkbox:before,
  .button.checked:before {
    left: 5px;
  }

  .pagination .button {
    display: none;
  }

  .pagination {
    text-align: left;
  }

  .pagination li:nth-child(2) {
    margin-left: 0;
  }

  .pagination li:nth-child(n + 11) {
    display: none;
  }

  .pagination a {
    display: inline-block;

    background-color: #f3f3f3;

    line-height: 24px;
  }

  .pagination .current a {
    background-color: #ed6d00;
    color: #fff;

    text-decoration: none;
  }

  .pagination li + li:not(:nth-child(2)) {
    margin-left: 5px;
  }

  .actionModule .inner {
    padding: 15px 15px 20px;
  }

  .withdraw {
    padding: 15px;
    margin-bottom: 40px;
  }

  .withdraw a {
    padding-left: 0;
    text-align: center;
  }
}

.extraTable {
  font-size: 14px;
}

.extraTable dt,
.extraTable dd {
  padding: 0 20px;
}

.extraTable dt {
  width: 180px;
  background-color: #ececec;

  font-weight: bold;
}

.extraTable dd {
  background-color: #f3f3f3;
}

.extraTable .heading {
  background-color: #e1e1e1;

  padding: 20px;
}

.extraTable .row {
  background-color: #f3f3f3;

  padding: 20px 22px;
}

.extraTable .heading + .row {
  border-top: solid 1px #fff;
}

.extraTable.sub dt,
.extraTable.sub dd {
  padding: 0;
  padding-left: 13px;
}

.extraTable.sub dt,
.extraTable.sub dd {
  padding: 8px 12px;
}

.extraTable.sub .heading,
.extraTable.sub .row {
  padding: 15px 20px;
}

.extraTable.sub .heading {
  font-weight: bold;
}

@media screen and (min-width: 768px), print {
  .extraTable dl {
    display: table;
    width: 100%;
  }

  .extraTable dl:not(:first-child),
  .extraTable .heading:not(:first-child) {
    border-top: solid 1px #fff;
  }

  .extraTable dt,
  .extraTable dd {
    padding: 20px 20px 20px 20px;
  }

  .extraTable.add dt,
  .extraTable.add dd {
    padding: 20px 20px 20px 20px;
  }

  .extraTable dt,
  .extraTable dd {
    vertical-align: middle;
  }

  .extraTable dt,
  .extraTable dd {
    display: table-cell;
  }

  .extraTable dt {
    padding-left: 15px;
  }

  .extraTable.sub dl:first-child dt,
  .extraTable.sub dl:first-child dd {
    padding-top: 10px;
  }

  .extraTable.sub dt {
    padding: 6px 22px;
  }

  .extraTable.sub dd {
    padding: 6px 12px;
  }

  .extraTable.sub .heading,
  .extraTable.sub .row {
    padding: 12px;
  }
}

@media screen and (max-width: 767px) {
  .heading,
  .extraTable dt,
  .extraTable dd {
    display: block;
    width: 100%;

    padding: 12px 15px;
  }

  .extraTable dd {
    padding: 20px 15px;
  }
}

.desc {
  line-height: 1.5;
}

.entry .contentsModule.type01 .mainModule {
  margin: 0 auto;
  float: none;

  font-size: 14px;
}

.titType01.entry .inner {
  background: url(../img/entry/ico_entry02.png) no-repeat;
  background-size: 54px 57px !important;
  background-position: 18px center;
}

.titType01.entry h1 span {
  letter-spacing: 4px;
}

.mainModule.center {
  padding: 0 15px;
}

.entryTit {
  padding: 20px 30px 12px;
  margin-bottom: 60px;

  border-left: solid 6px #ed6d00;

  font-size: 14px;

  line-height: 24px;

  font-weight: bold;

  position: relative;
}

.entryTit p {
  line-height: 24px;
  font-weight: bold;
}

.entryTit:after {
  content: "";

  height: 25px;
  width: 72px;

  background: url(../img/common/ico_arrow_bottom.png) no-repeat;

  position: absolute;
  left: 0;
  right: 0;

  top: 100%;

  margin: 15px auto 20px;
}

.entryTit.finish {
  margin-bottom: 100px;
}

.entryTit.finish:after {
  top: calc(100% + 12px);
}

.entryTit h2 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #ed6d00;

  font-weight: bold;
}

.entryHead {
  margin-top: 30px;
  padding-left: 32px;
  margin-bottom: 13px;
  line-height: 1;
  font-size: 16px;
  color: #ed6d00;
  position: relative;

  font-weight: bold;
}

.entryHead.border {
  padding-bottom: 6px;
  border-bottom: solid 2px #ed6d00;
}

.entryHead:before,
.entryHead:after {
  content: "";
  position: absolute;
}

.entryHead:after {
  height: 0;
  width: 0;
  border: solid 7px transparent;
  border-top: solid 7px #ed6d00;
  left: 6px;
  top: 10px;
}

.entryHead:before {
  height: 10px;
  width: 14px;
  background-color: #ed6d00;
  top: 0;
  left: 6px;
}

.entryHead.border {
  margin-top: 24px;
  padding-left: 25px;
}

.entryHead.border:after,
.entryHead.border:before {
  left: 1px;
}

.termsModule {
  border: solid 10px #dfdfdf;
  padding: 30px 25px 40px;
  font-size: 14px;
  background-color: #f2f2f2;

  line-height: 1.5;
}

.termsModule h2 {
  font-size: 16px;
  color: #ed6d00;

  text-align: center;

  font-weight: bold;
}

.termsModule > p {
  font-weight: bold;
}

.termsModule .inner {
  margin-top: 10px;
  height: 262px;
  overflow-y: scroll;
  background-color: #fff;

  padding: 20px;
}

.termsModule .inner p {
  margin-top: 15px;
}

.termsModule .inner dd {
  font-weight: normal;
  margin-bottom: 25px;
}

.kanaTable {
  width: 300px;
}

.kanaTable .inner {
  border-collapse: separate;
  border-spacing: 10px;
}
.kanaTable .inner td {
  padding: 0px;
}

.kanaTable .inner a,
.schoolNA {
  height: 20px;
  line-height: 20px;

  display: block;

  text-align: center;
  border-radius: 2px;

  background-color: #494949;
  color: #fff !important;

  user-select: none;
}

.kanaTable .inner a {
  width: 20px;
}

.kanaTable .inner a:empty {
  cursor: default;
  background-color: #a2a2a2;
}

.schoolNA {
  margin: 0 auto;
  width: 150px;
}

.usefulFeature {
  margin: 22px 0 20px;

  background-color: #4e6083;
  color: #fff;

  font-size: 16px;

  position: relative;

  overflow: hidden;
}

.usefulFeature h2 {
  font-size: 16px;
}

.usefulFeature h2 p {
  display: inline-block;
  font-weight: bold;
}

.usefulFeature h2 span {
  display: inline-block;

  padding-left: 50px;
  padding-right: 6px;

  line-height: 45px;

  background-color: #357ecf;

  position: relative;
}

.usefulFeature h2 span:before {
  content: "";

  height: 100%;
  width: 100%;

  background: url(../img/common/ico_star01.png) no-repeat;
  background-position: 18px center;

  background-size: 24px 23px;

  position: absolute;
  top: 0;
  left: 0;
}

.usefulFeature h2 span:after {
  content: "";

  height: 0;
  width: 0;

  border: solid 30px transparent;
  border-left: solid 25px #357ecf;

  position: absolute;
  top: 0;
  left: 100%;
}

.entryFormModule > section {
  margin-bottom: 30px;
}

.entryFormModule dt {
  background-color: #ececec;
}

.entryFormModule dd {
  background-color: #f3f3f3;
}

.entryFormModule .heading {
  background-color: #e1e1e1;
  font-weight: bold;
}

.entryFormModule .heading.type01 {
  padding: 15px;
  background-color: #dfdfdf;
}

.entryFormModule .attention {
  background-color: #fff8ee;
  color: #ed6d00;
}

.buttonList {
  width: 470px;
  margin: 30px auto 0;
}

.buttonList .button {
  line-height: 56px;
  font-size: 16px;
}

.privacyBtn {
  margin-top: 17px;
  display: block;

  padding: 12px;

  width: 100%;

  font-weight: bold;

  background-color: #f5f5f8;

  color: #000;

  border-radius: 4px;

  font-size: 15px;

  line-height: 1.5;

  text-align: center;

  position: relative;
}

.privacyBtn:before {
  content: "";

  height: 16px;
  width: 16px;

  background: url(../img/common/ico_arrow06.png) no-repeat;
  background-size: contain;

  position: absolute;
  top: 0;
  left: 0;
}

#policy {
  margin: 25px auto 0;
  width: 860px;
}

/* DESKTOP AND TABLE */

@media screen and (min-width: 768px), print {
  .entry .mainModule {
    margin: 0 auto !important;
    width: 860px !important;
    float: none !important;
    font-size: 14px !important;
  }
  .termsModule h2 {
    margin-bottom: 22px;
  }

  .buttonList.finish {
    margin-top: 75px;
  }

  .entryTit {
    margin-bottom: 70px;
  }

  .entryTit:after {
    margin: 20px auto 25px;
  }

  .entryTit.finish {
    padding: 45px 30px;
  }

  .entryFormModule > section {
    border: solid 6px #dfdfdf;
  }
  .privacyBtn {
    padding-left: 60px;
    text-align: left;
  }

  .privacyBtn:before {
    margin: auto;
    bottom: 0;
    left: 36px;
  }

  .usefulFeature h2,
  .usefulFeature h2 span {
    line-height: 60px;
  }

  .usefulFeature h2 span {
    margin-right: 36px;
  }

  .buttonList .button:first-of-type {
    float: right;
  }

  .buttonList .button:last-of-type {
    float: left;
  }

  .usefulFeature:after {
    content: "";

    background: url(../img/common/ico_arrow01_bottom.png) no-repeat;

    height: 10px;
    width: 21px;

    position: absolute;
    top: 26px;
    right: 10px;
  }

  .usefulFeature.opened:after {
    transform: rotate3d(1, 0, 0, -180deg);
  }

  .formModule .extraTable {
    border: solid 6px #dfdfdf;
  }
}

/* MOBILE */

@media screen and (max-width: 767px) {
  .entry .mainModule {
    width: 100%;
  }

  .buttonList {
    margin-top: 25px;
  }

  .buttonList.finish {
    padding: 0;
    width: 100%;
  }

  .titType01.entry .inner {
    background-position: left 25px center;
    background-size: 36px 38px !important;
  }

  .entryTit.terms {
    padding-bottom: 40px;
  }

  .entryHead {
    padding-left: 40px;
  }

  .entryHead:before,
  .entryHead:after {
    left: 15px;
  }

  .entryHead.feature {
    margin-left: 9px;
  }

  .entryFormModule {
    border: none;
  }
  .entryFormModule dl {
    background-color: #e1e1e1;
  }

  .termsModule {
    padding: 12px 15px;
  }

  .termsModule .inner {
    height: 235px;
    padding: 15px;
  }

  .termsModule h2 {
    text-align: left;
  }

  .button {
    width: 100%;
  }

  .formSubmit {
    margin: 0 auto;
    width: 80%;
  }

  .privacyBtn {
    padding: 20px 40px;
    text-align: left;
    font-size: 17px;
  }

  .privacyBtn:before {
    height: 20px;
    width: 20px;

    top: 20px;
    left: 12px;
  }

  #policy {
    width: 75%;
  }

  .buttonList {
    width: 100%;
    padding: 0 15px;
  }

  .buttonList .button {
    font-size: 17px;
  }

  .buttonList.finish .button {
    line-height: 50px;
  }

  .buttonList.big .button {
    line-height: 60px;
  }

  .buttonList.big .button.next::after,
  .buttonList.big .button.prev::before {
    height: 21px;
    width: 10px;
  }

  .usefulFeature {
    margin: 0 15px 20px;
  }

  .usefulFeature h2 {
    font-size: 14px;
  }

  .usefulFeature h2 span {
    display: block;

    padding: 0;

    font-size: 16px;
    text-align: center;

    line-height: 45px;
  }

  .usefulFeature h2 {
    display: block;
    width: 100%;

    text-align: left;
  }

  .usefulFeature p {
    padding: 15px 15px 0;
  }

  .usefulFeature h2 span:before {
    background-position: calc(50% - 3.25em) center;
  }

  .usefulFeature .sub {
    display: block;
    padding: 0 40px;
  }

  .usefulFeature .toggle {
    height: 45px;

    background: url(../img/common/ico_arrow01_top.png) no-repeat;
    background-size: 21px 10px;
    background-position: center;

    transform: rotate3d(1, 0, 0, 180deg);
  }

  .usefulFeature.opened .toggle {
    transform: rotate3d(1, 0, 0, 0deg);
  }
}

.eg {
  display: inline-block;
  margin-left: 5px;

  font-size: 13px;
}

.eg02 {
  display: block;
  font-size: 13px;
}

.formModule .extraTable .heading {
  border-top: none !important;
}

.formModule .extraTable .heading.chkbox {
  padding: 18px 20px;
}

.formModule .extraTable .boding {
  padding: 18px 20px;
  background-color: #f3f3f3;
}
.formModule.add .extraTable label {
  line-height: 1.8;
}

.formModule .extraTable dl {
  border: none !important;
  vertical-align: top;
}

.formModule input[type="text"],
.formModule input[type="password"],
.formModule select {
  height: 34px;
  width: 170px;
  padding-left: 10px;
  font-size: 16px;
}
.formModule input[type="mail"] {
  height: 34px;
  width: 100%;
  padding-left: 10px;
}

label > input[type="checkbox"],
label > input[type="radio"] {
  vertical-align: middle;
  margin-right: 5px;
}
.sideModule .majority label > input[type="checkbox"],
.sideModule .majority label > input[type="radio"] {
  vertical-align: middle;
  margin-right: 0px;
}

.formModule .extraTable dt,
.formModule .extraTable dd {
  padding: 20px 20px 20px 20px;
}

.formModule .extraTable dl:first-of-type dd,
.formModule .extraTable dl:first-of-type dt {
  padding-top: 20px;
}

.formModule .extraTable .attention + dl dd,
.formModule .extraTable .attention + dl dt {
  padding-top: 20px;
}

.extraTable .attention {
  padding: 15px 20px;
  line-height: 1.5;

  color: #ed6d00;
  background-color: #fff8ee;
}

.extraTable .attention small {
  display: block;
  font-size: 12px;
}

.formModule .nameForm,
.formModule .emailForm,
.formModule .phoneForm {
  /*  display: inline-block;*/
  font-size: 0;
}

.formModule .nameForm label,
.formModule .emailForm span {
  font-size: 13px;
}

.formModule .nameForm label {
  display: inline-block;
  width: 25px;

  text-align: center;
}

.formModule .emailForm span,
.formModule .phoneForm span {
  /*
  display: inline-block;
  text-align: center;

  font-size: 16px;
  */
}

.formModule .emailForm span {
  width: 28px;
}

.formModule .phoneForm input {
  width: 100px;
}

.formModule .phoneForm span {
  width: 20px;
}

.formModule .addressForm input {
  width: 400px;
}

.formModule .graduateForm {
  display: inline-block;
  margin-right: 15px;
}

.formModule .receiveMail {
  display: block;
  font-size: 12px;
}

.formModule .selectForm {
  line-height: 1.5;
}

.formModule .selectForm label {
  margin-right: 10px;
}
.formModule .selectForm label {
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .formModule .extraTable dt {
    background-color: #ececec;
  }

  .formModule .extraTable dd {
    background-color: #f3f3f3;
  }

  .formModule .facultyList {
    width: 300px;
  }
  .formModule input[type="mail"] {
    height: 34px;
    width: 300px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 767px) {
  .formModule select {
    -webkit-appearance: none;
    width: 100%;
    height: 30px;
    line-height: 30px;
  }
  .formModule.add {
    margin-top: 25px;
  }
  .formModule .extraTable .heading.chkbox {
    background-color: #d3d3d3;
  }

  .formModule .extraTable dt {
    background-color: #dfdfdf;
  }

  .formModule .extraTable dd {
    background-color: #f3f3f3;
  }

  .formModule .nameForm,
  .formModule .emailForm,
  .formModule .phoneForm {
    width: 100%;
  }

  .formModule input[type="text"],
  .formModule input[type="password"],
  .formModule select {
    width: 100%;
  }

  .formModule .nameForm {
    display: block;
    width: 100%;
  }

  .formModule .nameForm + .eg {
    margin-left: 25px;
  }

  .formModule .nameForm label:first-of-type,
  .formModule .nameForm input:first-of-type {
    margin-bottom: 10px;
  }

  .formModule .nameForm input {
    width: calc(100% - 25px);
  }

  .formModule .emailForm input:last-child {
    width: 100%;
  }

  .formModule .phoneForm input {
    width: calc(33% - 40px / 3);
  }

  .formModule .addressForm input {
    width: 100%;
  }

  .formModule .graduateForm {
    width: calc(100% - 6em);
  }
}

.message .titType01 .inner {
  background-image: url(../img/message/ico_tit_message01.png);
  background-repeat: no-repeat;
  background-size: 33px 22px !important;
  background-position: left 15px bottom 20px;
}
.message.bookmark .titType01 .inner {
  background-image: url(../img/mypage/ico_mypage_entry01.png);
  background-repeat: no-repeat;
  background-size: 60px !important;
  background-position: -10px 30px;
}
.message.bookmark .titType01 .inner.qr {
  background-image: url(../img/common/ico_qr01.png);
  background-repeat: no-repeat;
  background-size: 40px !important;
  background-position: 10px 30px;
}
.message .mypage .other {
  padding-bottom: 15px;
}

.message .titType01 span {
  letter-spacing: 4px;
}

.message .mainModule {
  margin-top: 20px;
}

.messageListHeader {
  display: none;
}

.messageListModule {
  margin-top: 15px;
  line-height: 30px;
  font-size: 14px;
}

.messageActionModule .button {
  height: 40px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

.messageListModule li {
  overflow: hidden;
  position: relative;
}

.messageListModule .unread p {
  font-weight: bold !important;
}

.messageListHeader .deleteCell {
  padding: 13px 0;
  text-align: center;
}

.messageListHeader .senderCell {
  padding-left: 10px;
}

.messageListModule .senderCell {
  padding-left: 25px;
  position: relative;
}

.messageListModule li .senderCell:before {
  content: "";
  height: 19px;
  width: 17px;
  background: url(../img/message/ico_message02.png) no-repeat;
  background-size: contain;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.messageListModule li.unread .senderCell:before {
  height: 13px;
  background-image: url(../img/message/ico_message01.png);
}

.messageListModule li.unread {
  background-color: #fff3e1;
}

.mypage .sideModule .mypage,
.message .sideModule .mypage {
  margin-bottom: 0;
}

.message .sideModule .mypage .other {
  background-color: #eaeaea;
}

.messageActionModule .checkAll:before,
.messageActionModule .removeChecks:before,
.messageActionModule .deleteMsg:before {
  content: "";
  height: 12px;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: auto;
  position: absolute;
  top: 0;
  left: 5px;
  bottom: 0;
}

.messageActionModule .checkAll:before {
  background-image: url(../img/message/ico_checkbox02.png);
}

.message .removeChecks br {
  display: none;
}

.messageActionModule .removeChecks:before {
  background-image: url(../img/message/ico_checkbox01.png);
}

.messageActionModule .deleteMsg:before {
  height: 100%;
  width: 100%;
  background-image: url(../img/message/ico_ban01.png);
  background-size: 15px 15px;
  background-position: calc(50% - 7.5em) center;
  left: 0;
}

@media screen and (max-width: 767px) {
  .message .resultTxt {
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .messageListModule {
    margin-top: 25px;
  }

  .messageListModule li {
    /*     height: 110px;*/
    padding: 4px 0 4px 40px;
    border-top: solid 1px #b4b4b4;
  }

  .messageListModule li p {
    line-height: 34px;
  }

  .messageListModule ul > li:last-of-type {
    border-bottom: solid 1px #b4b4b4;
  }

  .messageListModule li .deleteCell {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 13px;
    bottom: 0;
    margin: auto;
  }

  .messageListModule li .deleteCell input {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .messageActionModule {
    margin-top: 18px;
    margin-bottom: 15px;
  }

  .messageActionModule .button {
    display: inline-block;
  }

  .messageActionModule .checkAll,
  .messageActionModule .removeChecks {
    width: 48.5%;
    width: calc(50% - 5px);
    float: left;
  }

  .messageActionModule .checkAll {
    margin-right: 5px;
    line-height: 40px;
    letter-spacing: -0.1em;
    padding-left: 20px;

    float: left;
  }

  .messageActionModule .removeChecks {
    /* display: inline-block; */

    line-height: 40px;
    letter-spacing: -0.1em;

    margin-left: 5px;
    padding-left: 20px;

    text-align: center;

    float: right;
  }

  .messageActionModule .deleteMsg {
    margin-top: 10px !important;
    width: 100%;
    padding: 0;
    line-height: 40px;
  }

  .messageActionModule .deleteMsg:before {
    background-position: calc(50% - 8.5em) center;
  }

  .message .pageType01:first-of-type {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 351px) {
  .messageActionModule .removeChecks {
    text-align: left;
    padding-left: 25px;
    line-height: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .message .titType01 .inner {
    background-size: 48px 33px !important;
    background-position: 21px center;
  }
  .message.bookmark .titType01 .inner {
    background-size: 78px 100px !important;
    background-position: left 0px bottom 0px;
  }

  .message #pankuzu {
    margin: 10px auto;
  }

  .messageListModule li .deleteCell {
    display: inline-block;
    height: 50px;
    width: 50px !important;
    position: relative;
  }

  .messageListModule li .deleteCell input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .messageListHeader {
    display: block;
    background-color: #4e6083;
    color: #fff;
    font-size: 0;
  }

  .messageListHeader p {
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    padding: 13px 0 13px 10px;
  }

  .messageListModule li {
    border-bottom: solid 1px #b4b4b4;
    height: 50px;
  }

  .messageListModule li > div,
  .messageListModule li > p {
    padding: 11px 15px;
    display: inline-block;
    float: left;
  }

  .messageListModule li p:first-of-type,
  .messageListModule p + p {
    border-left: solid 1px #b4b4b4;
  }

  .messageListModule .deleteCell {
    width: 50px;
  }

  .messageListModule .senderCell {
    width: 201px;
  }

  .messageListModule li .senderCell {
    padding-left: 34px;
  }

  .messageListModule .titleCell {
    width: 304px;
  }
  .messageListModule.bookmark .titleCell {
    width: 504px;
  }
  .messageListModule.bookmark .titleCell.p280 {
    width: 280px;
  }

  .messageListModule .dateCell {
    width: 165px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .messageListModule.bookmark .dateCell {
    width: 165px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  .messageListModule.bookmark .dateCell.p100 {
    width: 100px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .messageListHeader .dateCell {
    padding-left: 10px;
    text-align: left;
  }

  .senderCell:before {
    left: 10px !important;
  }

  .messageActionModule {
    margin-top: 20px;
  }

  .messageActionModule .sortBtn {
    padding: 2px 0;
    display: inline-block;
    line-height: 26px;
    font-size: 0;
    font-weight: bold;
    float: right;
  }

  .messageActionModule .sortBtn span {
    font-size: 14px;
  }

  .messageActionModule .sortBtn .button {
    height: 26px;
    width: 50px;
    text-align: center;
    line-height: 26px;
  }

  .messageActionModule .sortBtn .button + .button {
    margin-left: 4px;
  }

  .messageActionModule .button {
    height: 30px;
    line-height: 30px;
    text-align: left;
  }

  .messageActionModule .deleteMsg {
    text-align: center;
  }

  .messageActionModule .button + .button {
    margin-left: 8px;
  }

  .messageActionModule .checkAll,
  .messageActionModule .removeChecks,
  .messageActionModule .deleteMsg {
    padding-left: 25px;
  }

  .messageActionModule .deleteMsg {
    width: 220px;
    float: left;
  }

  .messageActionModule .removeChecks {
    width: 160px;
    letter-spacing: -0.1em;
    float: left;
  }

  .messageActionModule .checkAll {
    width: 150px;
    float: left;
  }

  .messageActionModule:last-of-type {
    margin-bottom: 40px;
  }

  .message .pagination {
    margin-top: 35px;
  }
}

@media (max-width: 351px) {
  .message .removeChecks br {
    display: inline;
  }
}

/*
 detail
*/

.messageModule dl {
  display: table;
  height: 46px;
  width: 100%;
  border-collapse: collapse;
  border-right: solid 1px #b4b4b4;
}

.messageModule dt,
.messageModule dd {
  display: table-cell;
  vertical-align: middle;
}

.messageModule dt {
  width: 60px;
  text-align: center;
  background-color: #4e6083;
  color: #fff;
  border-bottom: solid 1px #fff;
  font-weight: bold;
}

.messageSender dd {
  border-top: solid 1px #b4b4b4;
}

.messageModule dd {
  padding-left: 15px;
  border-bottom: solid 1px #b4b4b4;
}

.messageBody {
  border: solid 1px #b4b4b4;
}

.messageBody dt {
  display: none;
}

.messageBody dd {
  padding: 15px;
  line-height: 1.8;
  word-break: break-all;
}

.message-detail .messageActionModule {
  margin: 15px 0;
}

.message-detail .messageActionModule .deleteMsg {
  margin: 0;
}

@media (max-width: 767px) {
  .messageTitle dt,
  .messageTitle dd {
    border-bottom: none;
  }

  .message-detail .mainModule {
    margin-top: 25px;
  }
}

@media (min-width: 768px), print {
  .messageModule .messageSender {
    height: 54px;
  }

  .messageModule dl {
    height: 51px;
  }

  .messageModule dt {
    width: 70px;
    padding-left: 10px;
    text-align: left;
  }

  .messageModule dd {
    padding-left: 20px;
  }

  .messageBody {
    border: none;
  }

  .messageBody dt {
    display: table-cell;
    padding-top: 10px;
    vertical-align: top;
    border-bottom: solid 1px #4e6083;
  }

  .message-detail .messageActionModule {
    margin-top: 20px;
  }

  .message-detail .messageActionModule .deleteMsg {
    float: right;
  }
}

.mypage .titType01 .inner {
  background-image: url(../img/mypage/ico_tit_mypage01.png);
  background-repeat: no-repeat;
  background-size: 74px 53px !important;
  background-position: 12px center;

  letter-spacing: 10px;
}

.mypage .titType01 .inner h1 span {
  font-variant-ligatures: none;
  letter-spacing: 4px;
}

.mypage .extraTable {
  border: solid 2px #ed6d0d;
  margin-bottom: 25px;
}

.mypage .mainModule > h2 {
  padding-left: 26px;
  padding-bottom: 4px;

  font-size: 16px;

  line-height: 1.35;

  color: #ed6d0d;

  font-weight: bold;

  position: relative;
}

.mypage .mainModule > h2:before {
  content: "";

  height: 18px;
  width: 18px;

  background: url(../img/common/ico_info01.png) no-repeat;
  background-size: contain;

  position: absolute;
  top: 0;
  left: 0;

  margin: auto;
}

.mypage .mainModule > h2 a {
  padding: 0 10px;

  line-height: 26px;

  font-weight: normal;

  color: #fff;
  background-color: #ab9473;

  position: absolute;
  right: 23px;
  bottom: 0;
}

.mypage .mainModule > h2 a:after,
.mypage .mainModule > h2 a:before {
  content: "";
  height: 100%;
  width: 23px;

  position: absolute;
  top: 0;
  left: 100%;
}

.mypage .mainModule > h2 a:before {
  content: "";
  height: 100%;
  width: 23px;

  background-color: #ed6d0d;
}

.mypage .mainModule > h2 a:after {
  background: url(../img/common/ico_edit01.png) no-repeat;
  background-size: 13px;
  background-position: center;
}

.myInfoTable {
  border: solid 2px #ed6d0d;
  margin-bottom: 25px;
}

.mypage .other {
  background-color: #eaeaea !important;
  padding-bottom: 15px !important;
}

@media screen and (max-width: 767px) {
  .mypage .extraTable.add2 {
    margin-top: 25px;
  }
  .mypage .titType01 .inner {
    background-size: 52px 38px !important;
    background-position: left 15px bottom 20px;
  }

  .actionModule {
    margin-top: 25px;
  }

  .mypage .mainModule > h2 {
    padding-bottom: 8px;
  }

  .mypage .mainModule h2 a {
    right: 35px;

    line-height: 35px;

    padding: 0 15px;
  }

  .mypage .mainModule > h2 a:before,
  .mypage .mainModule > h2 a:after {
    height: 35px;
    width: 35px;
  }
}

.search .titType01 span {
  letter-spacing: 2px;
}

.search .titType01 .inner {
  background: url(../img/search/ico_search01.png) no-repeat;
  background-size: 42px !important;
  background-position: left 16px bottom 15px;
}

.search #pankuzu {
  margin-top: 8px;
  margin-bottom: 32px;
}

.test01W {
  font-size: 0;
}

.test01 {
  display: inline-block;

  width: 171px;
  line-height: 48px;

  margin-bottom: 12px;

  text-align: center;

  background: #4e6083;
  background-image: url(../img/common/ico_arrow01_bottom.png);
  background-repeat: no-repeat;
  background-position: right 11px center;
  background-size: 17px 9px;

  color: #fff !important;
}

.test01:not(:nth-of-type(4n + 1)):not(:first-of-type) {
  margin-left: 12px;
}

.freeWordModule {
  font-size: 0;
}

.freeWordModule h2 {
  padding-left: 62px;

  font-size: 18px;
  font-weight: bold;

  position: relative;
}

.freeWordModule h2:before {
  content: "";
  height: 59px;
  width: 52px;

  background: url(../img/search/tit_search01.png) no-repeat;
  background-size: contain;

  position: absolute;
  top: -10px;
  left: 0;
}

.freeWordModule input {
  display: inline-block;
  height: 48px;
}

.freeWordModule input[type="text"] {
  width: calc(100% - 187px);

  padding-left: 10px;
  font-size: 16px;

  float: left;
}

.freeWordModule input[type="text"]::placeholder {
  font-weight: bold;
}

.freeWordModule input[type="submit"] {
  position: relative;
  margin-left: 17px;
  width: 170px;
  font-size: 16px;
  border: none;
  background: #357ecf;
  color: #fff;
  /*
    background-image: url(../img/search/ico_search01.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 40px center -20px;
    */
}
@media screen and (max-width: 767px) {
  .freeWordModule input[type="submit"] {
    background-image: url(../img/search/ico_search01.png);
    background-size: 20px 20px;
    background-repeat: no-repeat;
  }
}
.searchMenuModule {
  margin-top: 30px;
}

.searchMenuModule h2 {
  padding-left: 15px;

  line-height: 50px;

  background-color: #f06d00;
  color: #fff;

  border-radius: 2px;

  font-size: 20px;

  position: relative;
}

.searchMenuModule h2:before {
  content: "";

  height: 21px;
  width: 10px;

  background: url(../img/common/ico_arrow01_right.png) no-repeat;
  background-size: contain;
  background-position: center;

  margin: auto;
  position: absolute;
  top: 0;
  right: 11px;
  bottom: 0;

  transition: all 0.4s ease;
}

.searchMenuModule h2.opened:before {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}

.searchMenuModule .inner {
  padding: 30px 45px;

  background-color: #f2f2f2;
  color: #000;
}

.searchMenuModule .col {
  display: inline-block;
  width: 50%;

  float: left;
}

.searchMenuModule label {
  display: block;
}

.searchMenuModule p {
  display: inline;
  text-decoration: underline;
}

.senpaiSearchModule {
  margin-top: 50px;
}

.senpaiSearchModule p {
  display: inline-table;
  width: 210px;

  padding-left: 90px;

  line-height: 1;

  height: 70px;

  font-size: 18px;
  font-weight: bold;

  text-align: left;

  background-color: #e3e1e5;

  position: relative;

  float: left;
}

.senpaiSearchModule p span {
  display: table-cell;
  vertical-align: middle;
}

.senpaiSearchModule p:before {
  content: "";

  height: 100%;
  width: 100%;

  background: url(../img/search/tit_senpai01_pc.png) no-repeat;
  background-size: contain;

  position: absolute;
  top: 0;
  left: 0;
}

.senpaiSearchModule p:after {
  content: "";

  height: 0;
  width: 0;

  border: solid 10px transparent;
  border-left: solid 10px #e3e1e5;

  margin: auto;
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
}

.senpaiSearchModule .button {
  line-height: 48px;

  margin: 11px 0 11px 34px;

  width: calc(100% - 248px);

  font-size: 16px;

  background-color: #0e53a0;
}

.senpaiSearchModule .button span {
  display: inline-block;
  line-height: 18px;

  padding-left: 1.5em;

  background-image: url(../img/search/ico_search01.png);
  background-repeat: no-repeat;
  background-size: 18px;

  background-position: 0 center;
}

.searchBtn {
  display: block;

  margin: 30px auto 0;

  width: 330px;
  line-height: 48px;

  color: #fff;

  border: none;

  background: #357ecf;
  font-size: 16px;
}

.searchBtn span {
  padding-left: 1.5em;

  background-image: url(../img/search/ico_search01.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 0 center;
}
.corp_searchBtn2_wrap {
  padding-left: 1.5em;
  background-image: url(../img/search/ico_search01.png);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: 0 center;
}

@media (min-width: 768px), print {
  .freeWordModule {
    margin-top: 24px;
  }

  .search .titType01 .inner {
    background-size: 57px !important;
    background-position: left 18px center;
  }
}

@media (max-width: 767px) {
  .companyList02 {
    margin: 20px 0 0;
  }
  .searchBtn {
    line-height: 50px;
  }

  .freeWordModule {
    margin-top: 45px;
    margin-bottom: 28px;
  }

  .freeWordModule h2 {
    font-size: 16px;
    padding-left: 50px;
  }

  .freeWordModule h2:before {
    top: -14px;
  }

  .freeWordModule input[type="text"] {
    width: calc(100% - 38px);

    font-size: 13px;

    border: solid 1px #ccc;
    border-right: none;
  }

  .freeWordModule input[type="submit"] {
    width: 38px;
    margin: 0;
    font-size: 0;
    background-position: center;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .searchMenuModule {
    margin-top: 15px;
  }

  .searchMenuModule h2 {
    line-height: 46px;
    padding-left: 15px;

    font-size: 16px;
  }

  .searchMenuModule .inner {
    padding: 15px;
  }

  .searchMenuModule .col {
    width: 100%;
    float: none;
  }

  .searchMenuModule label {
    display: block;
    margin-bottom: 6px;
  }

  .searchMenuModule label:last-of-type {
    margin: 0;
  }

  .searchMenuModule p {
    font-size: 12px;
  }

  .senpaiSearchModule {
    margin-top: 35px;
  }

  .senpaiSearchModule p {
    width: 100px;
    padding-left: 50px;

    line-height: 1.25;

    height: 60px;

    font-size: 16px;
  }

  .senpaiSearchModule p:before {
    background-image: url(../img/search/tit_senpai01.png);
  }

  .senpaiSearchModule .button {
    margin: 5px 0 5px 15px;
    width: calc(100% - 115px);
  }

  .searchBtn {
    width: 100%;
    margin-top: 16px;
  }
}

.schedule #pankuzu {
  margin: 10px auto 20px;
}

.schedule .titType01 .inner {
  background: url(../img/schedule/ico_tit_schedule01.png) no-repeat;
  background-size: 35px !important;
  background-position: left 19px bottom 20px;
}

.schedule .titType01 span {
  letter-spacing: 2px;
}

.scheduleTit {
  font-size: 28px;
  text-align: center;
  color: #444;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.calendarControl {
  margin-bottom: 20px;
}

.calendarControl .button {
  line-height: 40px;
  width: 140px;
  background-color: #444444;
  font-size: 13px;
}

.calendarControl .next {
  float: right;
}

.calendarModule .inner {
  padding: 15px;
  background-color: #f2f2f2;
  position: relative;
}

.calendarModule .row h3 {
  padding-left: 15px;
  background-color: #444444;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
}

.calendarModule .row p {
  font-size: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}

.calendarModule .inner a {
  color: #4e6083;
}

.scheduleList li {
  /*
    padding-left: 1em;
    */
  line-height: 1.8;
}

.scheduleList li + li {
  margin-top: 10px;
}

.scheduleList a {
  position: relative;
  font-weight: bold;
  color: #fff !important;
  background: #ef6d00;
  display: block;
  line-height: 1.4;
  text-decoration: none;
  padding: 15px;
}
.scheduleList a.useradd {
  border: solid 3px #ef6d00;
  color: #ef6d00 !important;
  background: #fff !important;
  padding: 15px;
}
.scheduleAdd {
  display: block;
  line-height: 35px;
  width: 120px;
  color: #111111 !important;
  background-color: #fff;

  font-weight: bold;
  text-decoration: none;
  text-align: center;

  position: absolute;
  bottom: 10px;
}
.scheduleAdd span {
  padding: 0 0 0 5px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
}

@media (max-width: 767px) {
  .scheduleTit {
    margin: 22px 0;
    font-size: 20px;
  }
  .calendarModule .inner {
    padding: 20px;
  }
  .calendarControl .button {
    line-height: 40px;
    font-size: 14px;
    font-weight: bold;
  }

  .calendarModule {
    margin-bottom: 40px;
  }

  .calendarModule .row p {
    display: none;
  }

  .calendarHeader {
    display: none;
  }
  .calendarModule .row section.weekSat h3 {
    /*
        background-color: #357ecf;
        */
    background: #357ecf;
  }

  .calendarModule .row section.weekSun h3 {
    background: #ffa700;
  }

  .scheduleAdd {
    position: relative;
    width: 100%;
    bottom: 0;
  }

  .scheduleList {
    margin-bottom: 15px;
  }
  .calendarControl .button + .button {
    margin-top: 0;
  }
  .calendarControl.smOnly {
    margin-top: 25px;
  }
}

@media (min-width: 768px) {
  .scheduleAdd {
    position: absolute;
    bottom: 15px;
  }
  .scheduleList a {
    padding: 10px;
  }
  .scheduleList a.useradd {
    padding: 10px;
  }
  .schedule .titType01 .inner {
    background-size: 55px !important;
    background-position: 25px center;
  }

  .schedule .contentsModule {
    width: 998px;
  }

  .schedule .contentsModule .mainModule {
    width: 100%;
  }

  .calendarControl {
    margin-bottom: 10px;
  }

  .calendarHeader .button {
    font-size: 13px;
  }

  .calendarHeader {
    font-size: 0;
    margin-bottom: 3px;
  }

  .calendarHeader p {
    display: inline-block;
    line-height: 50px;
    width: 140px;

    background-color: #444444;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
  }

  .calendarHeader p + p {
    margin-left: 3px;
  }

  .calendarHeader p.weekSun {
    background-color: #ffa700;
  }

  .calendarHeader p.weekSat {
    background-color: #3676bb;
  }

  .calendarModule .inner {
    padding: 0 12px 10px;
    /*min-height : 160px;*/
  }
  .calendarModule .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  .calendarModule .row section {
    position: relative;
    background: #f2f2f2;
    width: 140px;

    vertical-align: top;
  }
  .calendarModule .row section {
    background: #f2f2f2;
    min-height: 150px;
  }
  .calendarModule .row section.weekSat {
    color: #357ecf;
  }
  .calendarModule .row section.weekSun {
    background: #fff3e1;
  }
  .calendarModule .row section:first-of-type {
    border-left: solid 0px !important;
  }

  .calendarModule section + section {
    margin-left: 3px;
  }

  .calendarModule .row {
    margin-bottom: 3px;
    min-height: 150px;
  }

  .calendarModule .inner {
    height: 100%;
  }

  .calendarModule .row h3 {
    display: none;
  }

  .calendarModule .row .weekSat .inner {
    color: #357ecf;
  }

  .calendarModule .row .weekSun .inner {
    color: #ffa700;
    /*
        background-color: #fff3e1;
        */
  }

  .scheduleAdd {
    line-height: 25px;
    border: none;
    font-size: 12px;
  }

  .scheduleList {
    margin-bottom: 55px;
  }
}

@media (max-width: 768px) {
  .messageActionModule {
    margin-bottom: 25px;
  }
}

@media (min-width: 767px) {
  .messageActionModule {
    margin-bottom: 20px;
  }
}

.listTable {
  width: 100%;
}

.listTable thead {
  background-color: #4e6083;
  color: #fff;
}

@media (min-width: 768px), print {
  .shrink {
    width: 1px;
    white-space: nowrap;
  }

  .listTable thead tr {
    height: 54px;
  }

  .listTable tbody tr {
    height: 50px;
    border-bottom: solid 1px #d4d4d4;
  }

  th,
  td {
    padding: 0 12px;
  }

  .listTable th + th {
    border-left: solid 1px #fff;
  }

  .listTable td + td {
    border-left: solid 1px #d4d4d4;
  }

  .listTable .selectCell {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .listTable tbody tr {
    display: block;
    position: relative;

    border-top: solid 1px #d4d4d4;
  }

  .listTable tbody tr:last-of-type {
    border-bottom: solid 1px #d4d4d4;
  }

  .listTable tbody td {
    display: block;
    line-height: 2;

    padding-left: 40px;
  }

  .listTable .selectCell {
    padding: 0;

    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
  }

  .listTable .selectCell input[type="checkbox"] {
    margin: auto;

    position: absolute;
    top: 0;
    left: 13px;
    bottom: 0;
  }
}

a.deleteButton {
  display: inline-block;
  text-align: center;

  background-color: #929292;
  color: #fff;

  height: auto;
  min-height: 30px;

  line-height: 1.5;

  padding-left: 25px;

  font-size: 12px;

  text-decoration: none;
}

.deleteButton span {
  display: inline-block;
  margin: 6px;

  text-align: left;
}

.deleteButton span:before {
  content: "";

  height: 100%;
  min-height: 30px;
  width: 30px;

  background: url(../img/message/ico_ban01.png) no-repeat;
  background-size: 15px;
  background-position: center;

  margin: auto;
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
}

@media screen and (min-width: 767px) {
  .deleteButton span {
    position: relative;
  }

  .messageActionModule .deleteButton {
    margin-left: 5px;
  }

  .listTableModule .shrink {
    width: 1px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  a.deleteButton {
    width: 100%;
    position: relative;

    min-height: 40px;

    text-align: center;
  }

  .deleteButton span {
    margin: 11px;
  }

  .deleteButton span:before {
    position: absolute;
    top: 0;
    left: 0;
  }

  .messageActionModule .deleteButton {
    margin-top: 10px;
  }
}

.mapWrap .inner {
  position: relative;
  overflow: hidden;
}

#mapAlert {
  display: none;
  padding: 4px 10px;

  background-color: #ed150a;
  color: #fff;

  font-size: 15px;
  line-height: 1.5;

  user-select: none;
  cursor: default;

  position: absolute;
  top: 0;
  right: 0;

  z-index: 10;

  transform: translate(0, -100%);
  transition: transform 0.25s linear;
}

#mapAlert.opened {
  display: block;
  transform: none;
}

.listTable td a {
  text-decoration: underline;
}

.formModule .wtel {
  width: 30% !important;
}
@media screen and (min-width: 767px) {
  .formModule .wtel {
    width: 70px !important;
  }
}
