@charset "UTF-8";
/* Base
================================================== */
html {
  overflow-y: scroll;
}

body {
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-size: 16px;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

*:lang(en) {
  font-family: "Roboto", sans-serif;
}

.custom-file-label::after {
  content: "選択";
}

/* Overwrite
================================================== */
.container {
  max-width: 1010px !important;
}

/* Content
================================================== */
[role="main"] {
  min-height: 530px;
  padding-top: 61px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  [role="main"] {
    min-height: auto;
    padding-top: 61px;
    padding-bottom: 10px;
  }
}

/* header
================================================== */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  background: #fff;
  border-bottom: solid 1px #e2e2e2;
  line-height: 1;
  z-index: 1010;
}
.header__inner {
  display: flex;
  align-items: center;
  height: 60px;
}
.header__logo {
  margin-right: auto;
}
.header__user {
  font-size: 14px;
  line-height: 1.3;
}
.header__logout {
  margin-left: 15px;
}
.header__logout a {
  position: relative;
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  background: #cc0099;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none !important;
}
.header__logout a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: translateY(-50%) rotate(45deg);
}
.header--enmail .header__logo {
  width: 60px;
  overflow: hidden;
}
.header--enmail .header__user {
  text-align: right;
}
.header--enmail .header__user span {
  display: inline-block;
  font-size: 12px;
}
@media (max-width: 767px) {
  .header__inner {
    padding-right: 0;
  }
  .header__logo {
    margin-right: auto;
  }
  .header__logo img {
    width: 156px;
    height: auto;
  }
  .header__user {
    font-size: 12px;
    text-align: right;
  }
  .header__logout {
    margin-left: 10px;
  }
  .header__logout a {
    width: 100px;
    height: 60px;
    line-height: 60px;
    border-radius: 0;
  }
  .header__logout a::before {
    right: 8px;
  }
  .header--enmail .header__logo {
    width: 45px;
  }
}

/* Footer
================================================== */
.footer {
  background: #fff;
  border-top: solid 1px #e2e2e2;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.footer__primary {
  display: flex;
  align-items: center;
}
.footer__primary__logo {
  margin-right: 20px;
}
.footer__nav {
  display: flex;
  margin: 0 0 .5em;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1;
}
.footer__nav li {
  margin-right: .8em;
  padding-right: .8em;
  border-right: solid 1px #222;
}
.footer__nav li:last-child {
  margin-right: 0;
  padding-right: 0;
  border: none;
}
.footer__nav a {
  color: #222;
  text-decoration: none;
}
.footer__nav a:hover {
  text-decoration: underline;
}
.footer__copyright {
  margin: 0;
  font-size: 10px;
}
.footer__secondary {
  display: flex;
  align-items: center;
}
.footer__secondary > div + div {
  margin-left: 30px;
}
.footer__pagetop {
  display: none;
  position: fixed;
  right: 10px;
  bottom: 90px;
  z-index: 1030;
}
.footer__pagetop a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: #000;
}
.footer__pagetop a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 11px;
  height: 11px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-4px) rotate(-45deg);
}
@media (max-width: 767px) {
  .footer__inner {
    display: block;
    padding: 0;
    height: auto;
  }
  .footer__primary {
    display: block;
    padding: 20px 0;
  }
  .footer__primary__logo {
    margin: 0 0 20px 0;
    text-align: center;
  }
  .footer__nav {
    max-width: 75%;
    margin: 0 auto 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__nav li {
    margin-bottom: .85em;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer__secondary {
    padding: 15px 0;
    justify-content: center;
    border-top: solid 1px #e2e2e2;
  }
  .footer__pagetop {
    position: -webkit-sticky;
    position: sticky;
    top: auto;
    bottom: 0;
  }
  .footer__pagetop a {
    margin-left: auto;
  }
}

/* components
================================================== */
/* title 
================================================== */
.c-title {
  margin-bottom: 40px;
  padding: 30px 0;
  border-bottom: solid 1px #e2e2e2;
  color: #028ab7;
}
.c-title__heading {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 980px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .c-title {
    margin-bottom: 0;
    padding: 25px 0;
  }
  .c-title__heading {
    padding: 0 25px;
  }
}

/* subtitle 
================================================== */
.c-subtitle {
  margin: 0 -15px 1em;
  padding: 10px 15px;
  background: #028ab7;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.c-subtitle--plain {
  margin: 0 0 1.5em 0;
  padding: 0;
  background: none;
  color: #222;
}
@media (max-width: 767px) {
  .c-subtitle {
    margin: 0 -25px 1em;
    padding: 10px 25px;
  }
  .c-subtitle--plain {
    margin: 1.25em 0 1em;
    padding: 0;
    font-size: 16px;
  }
}

/* section 
================================================== */
.section {
  margin-bottom: 40px;
  padding: 0 15px;
}
.section__lead {
  margin-top: 1.25em;
  margin-bottom: 1.5em;
}
.section__lead--mbl {
  margin-bottom: 3em;
}
.section__notes {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  font-size: 12px;
}
.section--maintenance {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .section {
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .section__lead {
    margin-top: 1.5em;
  }
  .section--maintenance {
    padding-top: 30px;
  }
}

/* alert
================================================== */
.c-alert {
  margin-bottom: 25px;
  padding: 1em;
  border: solid 1px #d6007f;
  background-color: #e6c8df;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.3;
}
.c-alert--success {
  border: solid 1px #008db8;
  background-color: #81cde4;
  border-radius: 5px;
}
.c-alert__message {
  padding: 0 60px;
}
@media (max-width: 767px) {
  .c-alert {
    font-size: 14px;
  }
}

/* btn
================================================== */
.c-btn {
  transition: opacity .3s ease;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 280px;
  height: 48px;
  background: #44546a;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.c-btn:hover {
  opacity: .7;
  color: #fff;
  text-decoration: none;
}
.c-btn i {
  margin-right: 5px;
}
.c-btn--centered {
  margin-left: auto;
  margin-right: auto;
}
.c-btn--block {
  max-width: 100%;
}
.c-btn--prev, .c-btn--no {
  background: #65b8d4;
}
.c-btn--prev::after {
  position: absolute;
  left: 30px;
  top: 50%;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg) translateY(-8px);
}
.c-btn--change {
  background: #03af9d;
}
.c-btn--change::after {
  position: absolute;
  right: 30px;
  top: 50%;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-8px);
}
.c-btn--med {
  background: #33b372;
}
.c-btn--med::after {
  position: absolute;
  right: 30px;
  top: 50%;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-8px);
}
.c-btn--yes {
  background: #d6007f;
}
.c-btn--delete {
  max-width: 120px;
  height: 32px;
  background: #65b8d4;
  font-size: 14px;
}
.c-btn--delete span {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}
.c-btn.is-disabled {
  opacity: .7;
  pointer-events: none;
}

/* btn-group
================================================== */
.c-btn-group {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-btn-group > li {
  width: 100%;
  max-width: 280px;
  margin: 0 25px;
}
@media (max-width: 767px) {
  .c-btn-group > li {
    margin: 0;
  }
  .c-btn-group > li + li {
    margin-left: 15px;
  }
}

/* form
================================================== */
.c-form {
  margin-bottom: 0;
}
.c-form__input {
  display: block;
  width: 100%;
  height: 44px;
  line-height: 42px;
  padding: 0 15px;
  background-color: #fff;
  border: solid 1px #e2e2e2;
  border-radius: 5px;
  font-size: 16px;
}
.c-form__input_areails {
  display: block;
  width: 100%;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background-color: #ffffff;
  border: solid 1px #e2e2e2;
  border-radius: 2px;
  font-size: 16px;
}


.c-form__input:placeholder-shown {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}
.c-form__input::-webkit-input-placeholder {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}
.c-form__input:-moz-placeholder {
  color: #666;
  opacity: 1;
  font-weight: normal;
  font-size: 16px;
}
.c-form__input::-moz-placeholder {
  color: #666;
  opacity: 1;
  font-weight: normal;
  font-size: 16px;
}
.c-form__input:-ms-input-placeholder {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}
.c-form__input:focus {
  outline: none;
}
.c-form__input:disabled {
  background-color: #e4e4e4;
}
.c-form__textarea {
  display: block;
  width: 100%;
  padding: 15px;
  border: solid 1px #e2e2e2;
  border-radius: 5px;
  font-size: 16px;
}
.c-form__textarea:placeholder-shown {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}
.c-form__textarea::-webkit-input-placeholder {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}
.c-form__textarea:-moz-placeholder {
  color: #666;
  opacity: 1;
  font-weight: normal;
  font-size: 16px;
}
.c-form__textarea::-moz-placeholder {
  color: #666;
  opacity: 1;
  font-weight: normal;
  font-size: 16px;
}
.c-form__textarea:-ms-input-placeholder {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}
.c-form__textarea:focus {
  outline: none;
}
.c-form__select {
  position: relative;
  width: 100%;
}
.c-form__select--narrow {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.c-form__select select {
  -webkit-appearance: button;
  appearance: button;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 60px 0 16px;
  border: none;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #222;
  font-size: inherit;
  box-shadow: 0 4px 0 1px rgba(0, 0, 0, 0.1);
}
.c-form__select select {
  -webkit-appearance: button;
  appearance: button;
  width: 100%;
  height: 45px;
  line-height: 45px;
  padding: 0 60px 0 16px;
  border: solid 1px #e2e2e2;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #222;
  font-size: inherit;
  box-shadow: 0 4px 0 1px rgba(0, 0, 0, 0.1);
}
.c-form__select select::-ms-expand {
  display: none;
}
.c-form__select::before, .c-form__select::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.c-form__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 11px;
  height: 11px;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: translateY(-8px) rotate(-45deg);
}
.c-form__select::before {
  right: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  border-radius: 0 5px 5px 0;
  background: #44546a;
  box-shadow: 0 5px 0 0 #333;
}
.c-form__select--white select {
  background-color: #fff;
}
.c-form__select--gray select {
  background-color: #ededed;
}
.c-form__note {
  margin: 0.5em 0 0;
  line-height: 1.4;
}
.c-form__radios {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: -1em;
  padding: 0;
  list-style: none;
}
.c-form__radios > li {
  margin-right: 1em;
  margin-bottom: 1em;
}
.c-form__radios--wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-form__radios--wrap > li {
  margin-right: 1em;
  margin-bottom: 1em;
}
.c-form__radios--centerd {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.c-form__radios--col3em > li {
  width: 3em;
}
.c-form__radios--col4em > li {
  width: 4em;
}
.c-form__radios--col5em > li {
  width: 5em;
}
.c-form__radios--col6em > li {
  width: 6em;
}
.c-form__radios--col7em > li {
  width: 7em;
}
.c-form__radios--col8em > li {
  width: 8em;
}
.c-form__radios--col9em > li {
  width: 9em;
}
.c-form__radios--col10em > li {
  width: 10em;
}
.c-form__radios--col11em > li {
  width: 11em;
}
.c-form__radios--col12em > li {
  width: 12em;
}
.c-form__radios--col13em > li {
  width: 13em;
}
.c-form__radios--col14em > li {
  width: 14em;
}
.c-form__radios--col15em > li {
  width: 15em;
}
.c-form__required {
  display: inline-block;
  padding: .2em .5em .1em;
  background: #d6007f;
  color: #fff;
  font-style: normal;
  font-size: 85%;
}
.c-form__required_none {
  visibility: hidden;
  display: inline-block;
  padding: .2em .5em .1em;
  background: #d6007f;
  color: #fff;
  font-style: normal;
  font-size: 85%;
}

/* form__radio */
.c-form__radio {
  display: none;
}

.c-form__radio:checked + label::before {
  background: #eaf7fb;
  border: 1px solid #028ab7;
}

.c-form__radio:checked + label::after {
  opacity: 1;
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-form__radio + label {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0 0 32px;
  cursor: pointer;
}
.c-form__radio + label::before, .c-form__radio + label::after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
}
.c-form__radio + label::before {
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  background: #f0f0f0;
  border: 1px solid #ccc;
}
.c-form__radio + label::after {
  opacity: 0;
  left: 6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: #028ab7;
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* form__radio_areails */
.c-form__radio_areails {
  display: none;
}

.c-form__radio_areails:checked + label::before {
  background: #eaf7fb;
  border: 1px solid #028ab7;
}

.c-form__radio_areails:checked + label::after {
  opacity: 1;
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-form__radio_areails + label {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0 0 32px;
  cursor: pointer;
}
.c-form__radio_areails + label::before, .c-form__radio_areails + label::after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
}
.c-form__radio_areails + label::before {
  left: 0;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  background: #ffffff;
  border: 1px solid #ccc;
}
.c-form__radio_areails + label::after {
  opacity: 0;
  left: 6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: #028ab7;
  -webkit-transform: scale(2);
  transform: scale(2);
}

/* form__checkbox */
.c-form__checkbox {
  display: none;
}

.c-form__checkbox:checked + label::before {
  background: #fff;
  border: 1px solid #008db8;
}

.c-form__checkbox:checked + label::after {
  opacity: 1;
  -ms-transform: rotate(-45deg) scale(1);
  -webkit-transform: rotate(-45deg) scale(1);
  -moz-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

.c-form__checkbox + label {
  position: relative;
  padding: 0 0 0 24px;
  cursor: pointer;
  display: inline-block;
}
.c-form__checkbox + label::before, .c-form__checkbox + label::after {
  position: absolute;
  content: '';
}
.c-form__checkbox + label::before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
}
.c-form__checkbox + label::after {
  opacity: 0;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 6px;
  margin-top: -5px;
  border-left: 2px solid #008db8;
  border-bottom: 2px solid #008db8;
  -webkit-transform: rotate(-45deg) scale(0.5);
  -moz-transform: rotate(-45deg) scale(0.5);
  -ms-transform: rotate(-45deg) scale(0.5);
  transform: rotate(-45deg) scale(0.5);
}

.c-form__checkbox--single + label {
  padding-left: 20px;
  margin-bottom: .3rem;
}

/* table
================================================== */
.table .thead-dark th,
.table .table-dark {
  background-color: #44546a;
}
.table tbody tr.is-disabled th, .table tbody tr.is-disabled td {
  background-color: #999;
}
.table-vscroll {
  overflow-y: scroll;
}

/* pages
================================================== */
/* index
================================================== */
/* c-sites */
.c-sites {
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-sites__item {
  display: flex;
  margin-bottom: 1px;
}
.c-sites__item__name {
  flex: 1 0 0%;
  background: #f0f0f0;
  border-radius: 4px 0 0 4px;
}
.c-sites__item__name a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0 0 35px;
}
.c-sites__item__name a::after {
  position: absolute;
  left: 14px;
  top: 50%;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #028ab7;
  border-right: 2px solid #028ab7;
  transform: rotate(45deg) translateY(-4px);
}
.c-sites__item__name a i img {
  display: block;
  margin-left: 10px;
  width: 13px;
  height: auto;
}
.c-sites__item__action {
  flex: 0 0 160px;
  background: #e4e4e4;
  padding: 8px 20px;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 767px) {
  .c-sites__item__action {
    flex: 0 0 105px;
    padding: 8px 10px;
  }
}

/* c-notice */
.c-notice__address {
  margin: 0;
  padding: 1em;
  background: #f0f0f0;
  border-radius: 5px;
}
.c-notice__items {
  margin-bottom: 1em;
  width: 100%;
}
.c-notice__items th, .c-notice__items td {
  padding: 1em .5em;
  border-bottom: solid 1px #e2e2e2;
}
.c-notice__items th {
  width: 5%;
  padding-right: 2em;
  white-space: nowrap;
}
.c-notice__items td label {
  margin-right: 2em;
}
.c-notice__items--centered td {
  padding: 2em .5em;
  text-align: center;
}
@media (max-width: 767px) {
  .c-notice__items {
    display: block;
  }
  .c-notice__items tbody, .c-notice__items tr, .c-notice__items th, .c-notice__items td {
    display: block;
  }
  .c-notice__items th, .c-notice__items td {
    padding: 0;
    border: none;
  }
  .c-notice__items tr {
    padding: 1em 0;
    border-bottom: solid 1px #e2e2e2;
  }
  .c-notice__items th {
    width: auto;
    margin-bottom: .5em;
  }
  .c-notice__items--centered tr {
    padding-top: 0;
  }
  .c-notice__items--centered td {
    padding-top: 0;
    padding-bottom: .5em;
    text-align: left;
  }
  .c-notice__items--centered td input + label {
    margin-top: 1.25em;
  }
}

/* c-unsubscribe */
.c-unsubscribe {
  margin: 2em 0 0 0;
  padding: 30px;
  background: #f0f0f0;
  border-radius: 5px;
  font-size: 14px;
}
.c-unsubscribe__title {
  margin: 0 0 1.25em 0;
  font-size: 18px;
  color: #028ab7;
}
@media (max-width: 767px) {
  .c-unsubscribe {
    padding: 25px;
  }
  .c-unsubscribe__title {
    font-size: 17px;
  }
}

/* favorite */
.favorite {
  margin-top: 2em;
}
.favorite h3 {
  margin-bottom: .75em;
  font-size: 18px;
}
.favorite ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5em 1.5em;
}
.favorite ul li {
  flex: 0 0 calc(1 / 5 * 100% - 1.5em);
}
.favorite ul.col6 li {
  flex: 0 0 calc(1 / 6 * 100% - 1.5em);
}
.favorite ul.col4 li {
  flex: 0 0 calc(1 / 4 * 100% - 1.5em);
}
.favorite ul.col3 li {
  flex: 0 0 calc(1 / 3 * 100% - 1.5em);
}

/* modal overwrite */
.modal-dialog--custom {
  max-width: 680px !important;
}
.modal-dialog--custom .modal-content {
  border: none;
  border-radius: 0;
}
.modal-dialog--custom .modal-header,
.modal-dialog--custom .modal-footer {
  border: none;
}
.modal-dialog--custom .modal-header {
  padding: .5rem;
}
.modal-dialog--custom .modal-header .close {
  padding: .5rem;
  margin: -.5rem -.5rem -.5rem auto;
  background: #028ab7;
  opacity: 1;
  color: #fff;
  text-shadow: none;
}
.modal-dialog--custom .modal-body {
  padding: .5em 50px 0;
  font-size: 14px;
}
.modal-dialog--custom .modal-body h3 {
  margin: 0 0 1em 0;
  font-size: 24px;
  text-align: center;
}
.modal-dialog--custom .modal-footer {
  padding: 50px;
}
.modal-dialog--custom .modal-footer > form,
.modal-dialog--custom .modal-footer > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.modal-dialog--custom .modal-footer > form .c-btn,
.modal-dialog--custom .modal-footer > div .c-btn {
  flex: 1 0 50%;
}
@media (max-width: 767px) {
  .modal-dialog--custom .modal-body {
    padding: .5em 15px 0;
    font-size: 14px;
  }
  .modal-dialog--custom .modal-body h3 {
    font-size: 16px;
  }
  .modal-dialog--custom .modal-footer {
    padding: 30px 7px;
  }
  .modal-dialog--custom .modal-footer > form .c-btn,
  .modal-dialog--custom .modal-footer > div .c-btn {
    flex: 1 0 calc(50% - 16px);
    margin: 0 8px;
  }
}

/* regist
================================================= */
/* c-regist-keyword */
.c-regist-keyword {
  display: flex;
  justify-content: center;
  margin-bottom: 3em;
}
.c-regist-keyword dt {
  margin-right: 1em;
  padding-top: .5em;
}
.c-regist-keyword dd input + p {
  margin: .5em 0 0 0;
  font-size: 14px;
}
@media (max-width: 767px) {
  .c-regist-keyword {
    display: block;
  }
  .c-regist-keyword dt {
    margin: 0 0 .5em 0;
    font-size: 16px;
  }
}

/* en-mail
================================================= */
.c-enmail__body {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: solid 1px #e2e2e2;
  font-size: 14px;
}
.c-enmail__body dl {
  margin-top: 1.5em;
  margin-bottom: 0;
}
.c-enmail__body dt {
  position: relative;
  font-weight: normal;
}
.c-enmail__body dt::before {
  display: inline-block;
  content: "";
  width: .8em;
  height: .8em;
  margin-right: .2em;
  background: #333;
}
.c-enmail__body dd {
  margin: 0;
}
.c-enmail__body dd ul, .c-enmail__body dd ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* certificate
================================================= */
.c-certificate-input {
  display: flex;
  justify-content: center;
  align-items: center;
	gap: .5em;
  margin-bottom: 1em;
}
.c-certificate-input dt {
  flex: 0 0 5.5em;
}
.c-certificate-input dd {
  flex: 0 0 380px;
  margin-bottom: 0;
}
.c-certificate-input + div {
  margin-top: 3em;
}
@media (max-width: 767px) {
	.c-certificate-input {
		flex-direction: column;
		align-items: flex-start;
		margin: 1.5em 0;
	}
	.c-certificate-input dt {
		flex: 0 0 auto;
	}
	.c-certificate-input dd {
		flex: 0 0 auto;
		width: 100%;
	}
}

/* utility
================================================== */
@media (min-width: 768px) {
  .u-forsp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .u-forpc {
    display: none !important;
  }
}
.u-oro {
  transition: opacity .3s ease;
}
.u-oro:hover {
  opacity: .75;
}

.u-cf {
  *zoom: 1;
}
.u-cf:after {
  content: "";
  display: table;
  clear: both;
}

.u-ovh {
  overflow: hidden;
}

.u-ws-nowrap {
  white-space: nowrap;
}

img.u-liquid {
  width: 100%;
  height: auto;
}
img.u-block {
  display: block;
}

.u-ff--condensed {
  font-family: 'Open Sans Condensed', sans-serif;
}

.u-mg0 {
  margin: 0 !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}
.u-pb5 {
  padding-bottom: 5px !important;
}
.u-pb10 {
  padding-bottom: 10px !important;
}
.u-pb15 {
  padding-bottom: 15px !important;
}
.u-pb20 {
  padding-bottom: 20px !important;
}
.u-pb25 {
  padding-bottom: 25px !important;
}
.u-pb30 {
  padding-bottom: 30px !important;
}
.u-pb35 {
  padding-bottom: 35px !important;
}
.u-pb40 {
  padding-bottom: 40px !important;
}
.u-pb45 {
  padding-bottom: 45px !important;
}
.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}
.u-pt5 {
  padding-top: 5px !important;
}
.u-pt10 {
  padding-top: 10px !important;
}
.u-pt15 {
  padding-top: 15px !important;
}
.u-pt20 {
  padding-top: 20px !important;
}
.u-pt25 {
  padding-top: 25px !important;
}
.u-pt30 {
  padding-top: 30px !important;
}
.u-pt35 {
  padding-top: 35px !important;
}
.u-pt40 {
  padding-top: 40px !important;
}
.u-pt45 {
  padding-top: 45px !important;
}
.u-pt50 {
  padding-top: 50px !important;
}

.u-pr0 {
  padding-right: 0 !important;
}
.u-pr5 {
  padding-right: 5px !important;
}
.u-pr10 {
  padding-right: 10px !important;
}
.u-pr15 {
  padding-right: 15px !important;
}
.u-pr20 {
  padding-right: 20px !important;
}
.u-pr25 {
  padding-right: 25px !important;
}
.u-pr30 {
  padding-right: 30px !important;
}
.u-pr35 {
  padding-right: 35px !important;
}
.u-pr40 {
  padding-right: 40px !important;
}
.u-pr45 {
  padding-right: 45px !important;
}
.u-pr50 {
  padding-right: 50px !important;
}

.u-pl0 {
  padding-left: 0 !important;
}
.u-pl5 {
  padding-left: 5px !important;
}
.u-pl10 {
  padding-left: 10px !important;
}
.u-pl15 {
  padding-left: 15px !important;
}
.u-pl20 {
  padding-left: 20px !important;
}
.u-pl25 {
  padding-left: 25px !important;
}
.u-pl30 {
  padding-left: 30px !important;
}
.u-pl35 {
  padding-left: 35px !important;
}
.u-pl40 {
  padding-left: 40px !important;
}
.u-pl45 {
  padding-left: 45px !important;
}
.u-pl50 {
  padding-left: 50px !important;
}

.u-fs10 {
  font-size: 10px !important;
}
.u-fs12 {
  font-size: 12px !important;
}
.u-fs13 {
  font-size: 13px !important;
}
.u-fs14 {
  font-size: 14px !important;
}
.u-fs15 {
  font-size: 15px !important;
}
.u-fs16 {
  font-size: 16px !important;
}
.u-fs18 {
  font-size: 18px !important;
}
.u-fs20 {
  font-size: 20px !important;
}
.u-fs22 {
  font-size: 22px !important;
}
.u-fs24 {
  font-size: 24px !important;
}
.u-fs26 {
  font-size: 26px !important;
}
.u-fs28 {
  font-size: 28px !important;
}
.u-fs30 {
  font-size: 30px !important;
}
.u-fs32 {
  font-size: 32px !important;
}
.u-fs34 {
  font-size: 34px !important;
}
.u-fs36 {
  font-size: 36px !important;
}
.u-fs38 {
  font-size: 38px !important;
}
.u-fs40 {
  font-size: 40px !important;
}

.u-fc-blue {
  color: #008db8 !important;
}
.u-fc-pink {
  color: #d6007f !important;
}
.u-fc-glay {
  color: #666 !important;
}

.u-bg-blue {
  background-color: #81cde4;
}
.u-bg-pink {
  background-color: #e6c8df;
}
.u-bg-glay {
  background-color: #f9f9f9;
}

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

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

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

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

.u-fwn {
  font-weight: normal !important;
}

.u-vat {
  vertical-align: top !important;
}

.u-vam {
  vertical-align: middle !important;
}

.u-vab {
  vertical-align: bottom !important;
}

.u-fl {
  float: left;
}

.u-fright {
  float: right;
}

.u-require,
.u-error {
  color: #c00;
}

.u-important {
  color: #cc0099;
}
