.main-background {
  background-color: #fafafa;
}

html, body {
  overflow: hidden;
  height: 100%;
  margin: 0;
}

.hide {
  display: none;
}
.hide.active {
  display: inline-block;
}

.btn {
  color: white;
  border: initial;
  border-radius: 5px;
  padding: 5px 30px;
  transition: all 0.5s ease;
}
@media (max-width: 834px) {
  .btn {
    padding: 5px 10px;
  }
}
.btn.default {
  opacity: 0.7;
  background-color: black;
}
.btn.default:hover {
  opacity: 0.55;
}
.btn.primary {
  background-color: #007bff;
  opacity: 0.7;
}
.btn.primary:hover {
  opacity: 0.55;
}
.btn.danger {
  background-color: #f44336;
  opacity: 0.7;
}
.btn.danger:hover {
  opacity: 0.55;
}

.right-area {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
  transform: translateX(100%);
  height: 100%;
  width: calc(100% - 60px);
  background-color: white;
}
.right-area.active {
  transform: translateX(30%);
  transform-origin: right center;
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
}
.right-area .toggle-btn {
  display: inline-flex;
  position: absolute;
  z-index: 2;
  width: 30px;
  height: 100px;
  border-radius: 10px 0 0 10px;
  background-color: #3f51b5;
  align-items: center;
  justify-content: center;
  left: 1px;
  transform: translateX(-30px) translateY(-50px);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.right-area .toggle-btn span {
  color: white;
  writing-mode: vertical-rl;
}

.item-wrapper {
  margin-bottom: 30px;
}

.item-title {
  font-weight: bold;
}

.item-title-header {
  display: inline-block;
  background-color: #25568d;
  color: white;
  width: 100%;
  padding: 6px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
}

.item-content-header {
  font-size: 1.7em;
  text-align: center;
  margin: 15px 0;
}

.item-input input, .item-input textarea {
  padding: 7.5px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #ccc;
  width: 100%;
}
.item-input input[type=checkbox], .item-input textarea[type=checkbox] {
  background-color: #ccc;
  text-align: center;
  padding: 5px;
}

.item-input textarea {
  height: 100px !important;
}

.chk-enhance {
  background-color: #e3e3e3;
  text-align: center;
  padding: 7.5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.upload-btn {
  background-color: #e3e3e3;
  text-align: center;
  padding: 7.5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.contents-table {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 5px;
  overflow: auto;
}
.contents-table tbody {
  text-align: center;
}
.contents-table tbody th {
  width: 33%;
  background-color: #d5e9fd;
  border-right: 1px solid #ccc;
}
.contents-table tbody td {
  width: 66%;
  background-color: white;
}
.contents-table tbody th, .contents-table tbody td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.contents-table tbody tr:last-child th, .contents-table tbody tr:last-child td {
  border-bottom: none;
}

.img-common {
  width: 100%;
  height: auto;
  margin: 15px 0;
}
.img-common img {
  width: 100%;
  height: 100%;
}

.errorlist {
  list-style: none;
  padding-left: 0px;
  color: red;
  font-size: 0.8em;
  margin: 5px 0 15px;
}

.btn-primary {
  background-color: #478dd8 !important;
}

hr {
  border-top: 1px solid #ddd;
}

.header-comment-note {
  text-align: center;
  margin: 0 7.5px 30px;
}

.passlink-contents {
  font-size: 2.8em !important;
  text-align: center !important;
  margin: 15px 0 !important;
}
.passlink-contents.special {
  margin: 35px 0 !important;
  font-size: 2em !important;
}

.note {
  width: 100%;
  max-height: 250px;
  overflow: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
}

.section-title {
  font-weight: bold !important;
  margin: 30px 0 !important;
}

.link {
  text-decoration: underline;
}

.contents-wrapper {
  z-index: 1;
  width: 100%;
  border-top: 3px solid #2d5f92;
  background-color: white;
  padding: 30px;
  margin-bottom: 30px;
}
.contents-wrapper .content-title {
  font-size: 1.5em;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contents-wrapper .content-body {
  padding: 15px;
}
.contents-wrapper .content-body .contents-table th, .contents-wrapper .content-body .contents-table td {
  text-align: left !important;
  padding: 15px;
}
.contents-wrapper .content-body .contents-table td input {
  width: 80%;
  padding: 7.5px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #ccc;
}
.contents-wrapper .content-body .flex-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.contents-wrapper .content-body .flex-wrapper .flex-left, .contents-wrapper .content-body .flex-wrapper .flex-right {
  width: 49%;
}

ul li {
  list-style-type: none;
  margin-left: -37.5px;
}

.enhance {
  color: red;
  font-size: 1.3em;
}

.wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.wrapper .header-wrapper {
  height: 110px;
  width: 100%;
}
.wrapper .header-wrapper .header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 100%;
  padding: 7.5px 10% 7.5px 10%;
  font-size: 1.5em;
  font-weight: bold;
}
@media (max-width: 834px) {
  .wrapper .header-wrapper .header-top {
    padding: 7.5px;
  }
}
.wrapper .header-wrapper .header-title {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.35em;
  background-color: #dbde56;
  padding: 7.5px 7.5px 7.5px 10%;
}
@media (max-width: 834px) {
  .wrapper .header-wrapper .header-title {
    padding: 7.5px;
    justify-content: center;
  }
}
.wrapper .container {
  max-width: 100%;
  padding: 30px 15px;
  background-color: #efefef;
}
.wrapper .container .pc {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 834px) {
  .wrapper .footer-wrapper {
    width: 80%;
    margin: 15px auto 0;
    height: 70px;
    background-color: white;
  }
  .wrapper .footer-wrapper .footer-top {
    display: flex;
    justify-content: space-between;
  }
  .wrapper .footer-wrapper .footer-top div a {
    text-decoration: underline;
    color: #555;
    font-weight: bold;
  }
  .wrapper .footer-wrapper .footer-bottom {
    text-align: center;
    color: #555;
    font-weight: bold;
  }
}
@media (min-width: 834px) {
  .wrapper .footer-wrapper {
    width: 650px;
    margin: 15px auto 0;
    height: 70px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .wrapper .footer-wrapper .footer-top {
    display: flex;
    width: 50%;
    justify-content: space-between;
  }
  .wrapper .footer-wrapper .footer-top div a {
    text-decoration: underline;
    color: #555;
    font-weight: bold;
  }
  .wrapper .footer-wrapper .footer-bottom {
    text-align: right;
    color: #555;
    font-weight: bold;
    width: 50%;
  }
}

.container .detail .item-wrapper .passlink-contents {
  font-size: 2.8em;
  text-align: center;
}

.border-contents {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  padding: 15px;
  text-align: center;
  margin-bottom: 15px;
  background-color: white;
  border-radius: 15px;
}

.item-between {
  display: flex;
  justify-content: space-between;
}
.item-between .border-between {
  border-left: 1px solid #ddd;
  margin-top: 60px;
}
.item-between .item-contents {
  width: 46%;
  text-align: center;
}
.item-between .item-contents .item-date-enhance {
  padding-top: 25.5px;
}
.item-between .item-contents .item-date-enhance .year {
  font-size: 0.85em;
  margin: 0 auto;
  font-weight: bold;
}
.item-between .item-contents .item-date-enhance .month-day {
  font-size: 3em;
  margin: 0 auto;
}

.container .upload .default-hidden {
  height: 0px;
  display: none;
}
.container .upload .default-hidden.active {
  display: block;
  height: auto;
}

.login-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.login-wrapper .header-wrapper {
  height: 60px;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
}
.login-wrapper .header-wrapper .header-top {
  font-size: 1.5em;
  font-weight: bold;
}
.login-wrapper .main {
  height: 650px;
}
.login-wrapper .main .login-title {
  font-size: 1.5em;
  margin-top: 75px;
  text-align: center;
}
.login-wrapper .main .main-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-wrapper .main .main-wrapper .item-wrapper {
  width: 350px;
}
.login-wrapper .main .main-wrapper .item-wrapper .item-title {
  font-size: 0.9em;
}
.login-wrapper .main .main-bottom {
  text-align: center;
  width: 350px;
  margin: 0 auto;
}
.login-wrapper .footer-wrapper {
  width: 600px;
  margin: 15px auto 0;
  height: 60px;
  background-color: white;
}
.login-wrapper .footer-wrapper .footer-top {
  display: flex;
  justify-content: space-between;
}
.login-wrapper .footer-wrapper .footer-top div a {
  text-decoration: underline;
  color: #555;
  font-weight: bold;
}

.submit-button {
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35em;
  font-weight: 600;
}
.submit-button.pc {
  height: 60px;
  width: 225px !important;
  margin: 0 auto;
}

.temporary-focus {
  width: 100%;
  padding: 7.5px 30px;
  background-color: #f57c00;
  color: white;
  border-radius: 7.5px;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */
