@charset "UTF-8";
/* Responsive
======================================== */
@media (max-width: 1000px) {
  ._pc {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  ._sp {
    display: none !important;
  }
}
@media (max-width: 1250px) {
  ._xl {
    display: none !important;
  }
}
/* Reset
======================================== */
a,
button {
  border: none;
}

a {
  color: inherit;
  color: #333 !important;
  text-decoration: none !important;
}

body {
  color: #333;
}

p {
  margin: 0 !important;
}

/* Common Parts
======================================== */
.lg-inner {
  margin: 0 auto;
  width: 95vw;
  max-width: 1280px;
}

.basic-ttl {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}
.basic-ttl.bg {
  background-color: #0b5c8b;
  color: white;
  margin: 0 calc(50% - 50vw) 40px;
  padding: 20px calc(50vw - 50%);
}
.basic-ttl.sm {
  font-size: 24px;
  padding: 10px calc(50vw - 50%);
  margin: 0 calc(50% - 50vw) 20px;
}

.basic-btn {
  margin: 50px auto 0;
  display: block;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.basic-btn.add {
  background-color: orange;
  color: #fff;
}
.basic-btn.back {
  background-color: #727272;
  color: #fff;
}
.basic-btn.gray {
  background-color: #ececec;
  border: 1px solid #a5a4a4;
  color: #333 !important;
}

.btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  font-weight: 600;
}
.btn-list button {
  color: #fff;
  border-radius: 5px;
  font-size: 18px;
  margin: 0;
}

.panel-container {
  background-color: white;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  width: -moz-fit-content;
  width: fit-content;
  min-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  padding: 50px;
}

/* --- 成功時のメッセージ --- */
.alert {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  border-radius: 0px;
}

.breadcrumb a {
  text-decoration: underline !important;
  color: rgba(33, 37, 41, 0.75) !important;
}

/*Header
======================================== */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  height: 95px;
}
header .logo {
  width: auto;
  height: 80px;
}
header .title {
  line-height: 1;
}
header .title h1 {
  font-size: 28px;
}
header .title span {
  font-size: 22px;
}

footer {
  margin-top: auto !important;
  padding-top: 40px;
}

.page-container {
  background-color: #eceef4;
  min-height: calc(100vh - 95px);
  margin: 0 calc(50% - 50vw);
  padding: 20px calc(50vw - 50%);
  width: 100vw;
  display: flex;
  flex-direction: column;
}

/* Index
======================================== */
main.index .panel-container .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}
main.index .panel-container .btn-wrap a {
  background-color: #fcfcfc;
  border: 1px solid #a5a4a4;
  text-align: center;
  padding: 10px;
  width: 300px;
  border-radius: 10px;
}

/* Email List
======================================== */
main.email-list .table-responsive,
main.email-forward .table-responsive {
  border-radius: 15px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
main.email-list table td,
main.email-list table th,
main.email-forward table td,
main.email-forward table th {
  padding: 10px 10px;
}
main.email-list table button,
main.email-list table a,
main.email-forward table button,
main.email-forward table a {
  padding: 5px 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  margin: 0;
}
main.email-list table button.delete,
main.email-list table a.delete,
main.email-forward table button.delete,
main.email-forward table a.delete {
  background-color: red;
  border-color: red;
  color: #fff;
}

/* Email Forward
======================================== */
main.email-forward .row {
  justify-content: stretch !important;
}
main.email-forward .panel-container {
  min-width: auto;
  width: auto;
  padding: 30px;
  min-height: 230px;
}
main.email-forward .panel-container .basic-btn.gray {
  margin: 0;
  margin-top: auto;
}
main.email-forward .panel-container.table {
  padding: 0px;
  min-height: auto;
}
main.email-forward .panel-container.table .basic-ttl {
  margin: 0;
}

/* Login
======================================== */
main.login .basic-btn {
  margin: 0 auto;
  width: 100%;
}