﻿.contents b {
    font-weight: bold;
    padding-bottom: 7px;
    font-size: 18px;
    position: relative;
    margin-bottom: 20px;
}

.line .contents-ttl:before {
    content: '■ ';
}

.line a {
    transition: .3s;
}

.line a:hover {
    opacity: 0.7;
}

.line:last-child {
    border-bottom: none;
}

.hot {
    color: #ff0000;
    font-weight: bold;
    font-size: 16px;
    padding-left: 25px;
}

/* BUTTON */
.btn button, .btn [type=submit] {
    display: block;
    text-decoration: none;
    position: relative;
    font-size: 15px;
    text-align: center;
    background: #333;
    letter-spacing: 0.1em;
    color: #FFF;
    border-radius: 100px;
    width: 240px;
    max-width: 260px;
    padding: 9px 0 11px;
    transition: .3s;
    border: 1px solid #333;
}

.btn-square button, .btn-square [type=submit] {
    border-radius: 0px;
}

.btn.w220 button, .btn.w220 [type=submit] {
    width: 220px;
}

.btn-window-wt button, .btn-window-wt [type=submit] {
    background: transparent;
    color: #333;
}

.btn-wt button, .btn-wt [type=submit] {
    background: #fff;
    color: #333;
}

.btn-arrow button::after, .btn-arrow [type=submit]::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    right: 20px;
    height: 6px;
    width: 6px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: rotate(-45deg);
    transition: .3s;
}

.btn-back button::after, .btn-back [type=submit]::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    left: 20px;
    height: 6px;
    width: 6px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(135deg);
    transition: .3s;
}

.btn-window button::after, .btn-window [type=submit]::after {
    content: "";
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(img/common/icon_blank_wt.png);
    background-size: 14px;
    background-repeat: no-repeat;
    top: calc(50% - 7px);
    right: 20px;
    transition: .3s;
}

.btn-window-wt button::after, .btn-window-wt [type=submit]::after {
    background-image: url(img/common/icon_blank_bk.png);
}

.btn button:hover,
.btn button:hover {
    background: transparent;
    color: #333;
}

.hover-opacity button:hover, .hover-opacity [type=submit]:hover {
    background: #333;
    color: #fff;
    opacity: 0.7;
}

.btn-window-wt button:hover, .btn-window-wt [type=submit]:hover {
    background: #333;
    color: #fff;
}

.btn-window button:hover::after, .btn-window [type=submit]:hover::after {
    background-image: url(img/common/icon_blank_bk.png);
}

.btn-window-wt button:hover::after, .btn-window-wt [type=submit]:hover::after {
    background-image: url(img/common/icon_blank_wt.png);
}

.btn-arrow button:hover::after, .btn-arrow [type=submit]:hover::after {
    right: 15px;
    border-bottom-color: #333;
    border-right-color: #333;
}

.btn-back button:hover::after, .btn-back [type=submit]:hover::after {
    left: 15px;
    border-bottom-color: #333;
    border-right-color: #333;
}
/* BUTTON */

body {
    min-width: 100%;
}
#header {
    min-width: 100%;
}

@media screen and (max-width:768px) {
    .logout .main-wrap.wrap {
        width: 100%;
    }
}

.hide {
    display: none;
}

/* VALIDATION */
.error-msg > span {
    margin-top: 0;
}
.error {
    color: #fa0000;
    margin-top: 0 !important;
    text-align: left;
}

.error > * {
    margin-bottom: 5px;
    display: block;
    font-size: 12px;
}

input.input-validation-error, select.input-validation-error {
    background: #feeae9;
}

.field-validation-error ~ .field-validation-error {
    display: none
}

.login-table-row.m-0 {
    margin: 0;
}
/* VALIDATION */

.contents-ttl4.contents-ttl-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.contents-ttl4.contents-ttl-flex .title {
    padding-right: 20px;
}

.contents-ttl4.contents-ttl-flex .list-link {
    position: initial;
}

@media (max-width: 767.98px) {
    .contents-ttl4.contents-ttl-flex {
        flex-direction: column;
    }

    .contents-ttl4.contents-ttl-flex .title {
        padding-right: 0;
    }
}

/* POPUP */
.overlay-popup.show-popup, .pupup-info.show-popup {
    display: block;
}

.overlay-popup {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, .7);
}

.pupup-info {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.pupup-info__wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.pupup-info__inner {
    padding: 50px;
    border: 1px solid #333;
    background-color: #fff;
}

.pupup-info__inner p {
    padding-bottom: 20px;
}

.pupup-info__btn {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.pupup-info__btn a {
    display: block;
    text-align: center;
    width: 100px;
    padding: 5px 0;
    border: 1px solid #333;
    border-radius: 5px;
}

.pupup-info__btn a.link {
    text-decoration: none;
}

.pupup-info__btn a:hover {
    background: #333;
    color: #fff;
    opacity: 1;
}
/* POPUP */
.text-left {
    text-align: left !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-20 {
    margin-bottom: 20px;
}


.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.bg-transparent {
    background-color: transparent !important;
}

@media screen and (min-width:768px) {
    .login-area.width-md {
        width: 680px;
    }

    .login-area.width-690 {
        width: 690px;
    }

    .login-area.width-700 {
        width: 700px;
    }

    .login-area.width-md .table-item {
        width: 450px;
    }

    tr.width-md .table-item {
        width: 450px;
    }

    .form-custom {
        position: relative;
    }

    .form-custom__note {
        position: absolute;
        top: 7px;
        left: 71%;
        margin-top: 0;
        white-space: nowrap;
    }

    .login-table-width .table-item-full {
        flex-grow: 1;
        max-width: calc(100% - 240px);
    }

    .wider-width {
        width: calc(100% + 100px);
    }

    .wider-width-120 {
        width: calc(100% + 120px);
    }

    .text-space-pre {
        white-space: pre;
    }
}

.relative {
    position: relative;
}

.show-pass {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: url('../img/show-password.png') no-repeat center / 65% auto;
    cursor: pointer;
}

.show-pass.is-hide {
    background-image: url('../img/hide-password.png')
}