@charset "utf-8";

body {
}
.buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.btn {
    background: #428bca;
    border: #357ebd solid 1px;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    padding: 4px 10px;
    text-decoration: none;
    text-align: center;
    min-width: 60px;
    position: relative;
    transition: color 0.1s ease;
}
.btn:hover {
    background: #357ebd;
}
.btn.btn-big {
    font-size: 18px;
    padding: 15px 20px;
    min-width: 100px;
}
/* キャンセルボタン */
.btn-close {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-close:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
}
/* 申し込みボタン */
.btn-success {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}
.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
}
.btn-danger {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}
.btn-warning {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background-color: #ff9900;
    border-color: #ff9900;
}
.btn-warning:hover {
    color: #fff;
    background-color: #ff6600;
    border-color: #ff6600;
}
.btn-primary {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
/* 受講申し込み画面 */
.modal2 {
    max-height: 100% !important;
}
input:read-only,
textarea:read-only {
    background-color: #ccc;
}
select:disabled {
    color: #000;
    background-color: #ccc;
}
label {
    color: black;
}
label.label_input {
    align-items: center;
}
label.label_input::before {
    content: "■";
    color: black;
    margin-right: 0.5rem;
}

label.label_status {
    padding: 2px 5px;
    font-weight: bold;

    color: #000000;/*文字色*/
    background: #FFF;
    border: solid 5px #000000;/*線*/
    border-radius: 10px;/*角の丸み*/
}

label.input_required::after {
    content: "※";
    color: red;
}
ul.particle {
    width: 100%;
}
.childBox {
    width: 70%;
    display: inline-block;
    text-align: left;
    color: black;
}
input[type="number"] {
    box-sizing: border-box;
    width: 3rem;
}
input[type="checkbox"] {
    width: 2rem !important;
    height: 2rem;
    vertical-align: middle;
    margin-left: 0px;
}
ul.particle li label {
    width: 50%;
    padding-left: 13px;
    display: flex;
    align-items: center;
    vertical-align: top;
    text-align: left;
    color: #000;
}

ul.particle li {
    padding: 7px 0;
    border-top: 1px dotted #c7c7c7;
    display: flex;
}
.buttons2 {
    justify-content: flex-end;
}
.buttons2 > div {
    margin: 0 1rem;
}
.ds-event-modal {
    left: 0px;
    top: 0px;
    height: 100%;
    overflow: hidden;
    text-align: center;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    width: fit-content;
    margin: auto;
}
.ds-event-modal > p {
    margin: 0;
    padding: 0;
}
.ds-event-modal.active {
    display: -webkit-flex;
    display: flex;
}
.ds-event-modal > .container {
    min-width: 35%;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #333;
    text-align: center;
    color: #333;
    border-radius: 5px;
}
.ds-event-modal > .container > .header {
    font-size: 20px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
/* 管理者の場合 */
.admin>.container {
    border: none;
    border-radius: 0px;
}
.admin>.container>.header {
    border: 1px solid #333;
    border-bottom: none;
    border-radius: 5px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.admin>.container>form .content {
    border: 1px solid #333;
    border-radius: 5px;
}
.admin > .container > form .content:nth-child(1) {
    border-top: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
.admin > .container > form .content:nth-child(2) {
    margin-top: 1rem;
}
.admin > .container > form .content .particle {
     border-bottom: 1px solid #eee;
     margin-bottom: 20px;
}
.admin>.container>form .content .particle .title {
    font-size: 20px;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
/*ここまで*/
.ds-event-modal > .container > .content .time {
    padding-top: 10px;
    color: #777;
}
.ds-event-modal > .container > .content .description {
    padding: 10px 20px;
    text-align: justify;
}
.ds-event-modal > .container > .footer {
    border-top: 1px solid #eee;
    padding: 10px;
}
.ds-event-modal.ie8.active {
    display: block;
}

.send-message-modal {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}
.send-message-modal > p {
    margin: 0;
    padding: 0;
}
.send-message-modal.active {
    display: -webkit-flex;
    display: flex;
}
.send-message-modal > .container {
    min-width: 35%;
    max-width: 100%;
    max-height: 80%;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #333;
    text-align: center;
    color: #333;
    border-radius: 5px;
}
.send-message-modal > .container > .header {
    font-size: 20px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.send-message-modal > .container > .content .time {
    padding-top: 10px;
    color: #777;
}
.send-message-modal > .container > .content .description {
    padding: 10px 20px;
    text-align: justify;
}
.send-message-modal > .container > .footer {
    border-top: 1px solid #eee;
    padding: 10px;
}
.send-message-modal.ie8.active {
    display: block;
}
.send-message-modal input {
    margin: 0.5rem 0;
    width: 98%;
    height: 2rem;
    white-space: normal;
}
.chose-template-modal {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-align: center;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}
.chose-template-modal > p {
    margin: 0;
    padding: 0;
}
.chose-template-modal.active {
    display: -webkit-flex;
    display: flex;
}
.chose-template-modal > .container {
    min-width: 35%;
    max-width: 90%;
    max-height: 100%;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #333;
    text-align: center;
    color: #333;
    border-radius: 5px;
}
.chose-template-modal > .container > .header {
    font-size: 20px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.chose-template-modal > .container > .content .time {
    padding-top: 10px;
    color: #777;
}
.chose-template-modal > .container > .content .description {
    padding: 10px 20px;
    text-align: justify;
}
.chose-template-modal > .container > .footer {
    border-top: 1px solid #eee;
    padding: 10px;
}
.chose-template-modal.ie8.active {
    display: block;
}

.chose-template-contents {
    height: 2rem;
    width: 90%;
    border-width: 1px;
    border-style: solid;
    border-color: #000;
    white-space: pre-wrap;
}

.fs_content {
    margin: 0 5%;
}

/* 必須説明 */
.require {
    font-size: 1rem;
}
.require span {
    color: #ff3333;
}
form .content {
    display: flex;
}
.childBox input {
    width: 94%;
    resize: none;
    border-radius: 0;
    padding: 1.5%;
    border: 1px solid #c8d2dc;
    border-radius: 3px;
}

/* ラジオボタン */
.childBox input[type="radio"] {
    width: 5%;
}

/* セレクトボックス */
.childBox select {
    width: 97.7%;
    resize: none;
    border-radius: 0;
    padding: 1.5%;
    border: 1px solid #c8d2dc;
    border-radius: 3px;
}

/* 日付 */
.entering_date {
    width: 97.5%;
    display: flex;
    justify-content: space-around;
}
.entering_date input:not(:first-child) {
    margin-left: 1rem;
}
.entering_date input:not(:last-child) {
    margin-right: 1rem;
}

/* 日付 */
.entering_month_end_no {
    width: 97.5%;
    display: flex;
    justify-content: space-around;
}
.entering_month_end_no input:first-child {
    margin-left: 8px;
    margin-right: 8px;
}
.entering_month_end_no input:last-child {
    margin-left: 8px;
}

/* 電話番号 */
.phone_number {
    width: 97.5%;
    display: flex;
    justify-content: space-around;
}

.phone_number input:not(:first-child) {
    margin-left: 1rem;
}

.phone_number input:not(:last-child) {
    margin-right: 1rem;
}

/* 名前入力 */
.name {
    width: 97.5%;
    display: flex;
     justify-content: space-around;
}

.name input:first-child {
    margin-right: 15px;
}

.name input:last-child {
    margin-left: 15px;
}

.adminBtn {
    margin-bottom: 16px;
    margin-right: 3.1rem;
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.adminBtn div {
    margin: 0 0.5rem;
}

.modal2 {
    margin-bottom: 1rem;
}

.inline {
    display: inline !important;
}

.approval-status {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.confirm-download {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.visibility_hidden {
    visibility:hidden;
}