/*=================
*Global Setting
===================*/
img {
    max-width: 100%;
}

/*=================
*   Description
===================*/
p {
    border: 1px solid black;
    text-align: left;
    text-indent: 1.5em;
    padding: 1em;
}

/*=================
*   Detail
===================*/
.detail .p-section__text {
    display: grid;
    grid-template-columns: 50% 50%;
    justify-content: center;
    align-items: stretch;
    grid-gap: 1em;
}

.detail p {
    border: 1px solid black;
    text-align: left;
    text-indent: 1.5em;
    padding: 1em;
    margin: 0;
}

/*=================
*   Team
===================*/
li {
    list-style-type: none;
}

li dl dd .comment {
    width: 40px;
    height: 33px;
    display: inline-block;
    background: url(../img/comment_icon.gif) left top no-repeat;
    background-size: 100% auto;
    vertical-align: middle;
    cursor: pointer
}

.comment-link:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.2s;
}

/*=================
*   Development
===================*/
.p-section__in {
    width: 90%;
}

.log-container {
    display: grid;
    grid-template-columns: 50% 50%;
    overflow: auto;
    height: 50em;
    flex-grow: 2;
}

.log-future {
    text-align: left;
    border-left: 1px solid;
}

.log-future>h3,
.log-current>h3 {
    margin: 1em;
}

.log-item:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-34px, 1.7em)
}

.log-current {
    text-align: right;
}

.log-item {
    display: grid;
    grid-template-areas: 'aicon aicon' 'title time' 'body body';
}

.log-item>h4 {
    grid-area: title;
    font-size: 10pt;
}

.log-item>h5 {
    grid-area: time;
    font-size: 6pt;
    position: absolute;
    transform: translate(150px, 1.2em)
}

.log-item>i {
    grid-area: aicon;
}

.log-item>p {
    grid-area: body;
    border-radius: 10px;
    box-shadow: inset 20px 20px 60px #c04e52, inset -20px -20px 60px #ff6a6e;
    padding: 1%;
}

.log-item>p>h6 {
    margin: 2em;
}

.log-item>p h1 {
    font-size: 8pt;
}

/*=================
*   Reference
===================*/
.warning {
    color: red;
}

/*=================
*   Modal
===================*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    overflow: scroll
}

.modal-inner {
    position: relative;
    width: 100%;
    height: 100%
}

.modal-inner .layer-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .85);
    z-index: 1
}

.modal-inner .close-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: url(../img/close-outline.png) left top no-repeat;
    background-size: 100% auto;
    z-index: 4;
    cursor: pointer
}

.close-btn:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: 0.2s;
}

.modal-inner .cont {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    margin-right: auto;
    margin-left: auto;
    max-width: 1120px
}

.modal-inner .cont .comment {
    display: table-cell;
    vertical-align: middle
}

.modal-inner .cont .comment.column .comment-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.modal-inner .cont .comment.column .comment-inner .avatar {
    width: 32%
}

.modal-inner .cont .comment.column .comment-inner .txt {
    width: 64%
}

.modal-inner .cont .comment-inner .txt__roll {
    margin-bottom: 45px;
    padding-top: 15px
}

.modal-inner .cont .comment-inner .txt__roll span:after {
    padding-left: 10px;
}

.modal-inner .cont .comment-inner .txt__message dl {
    font-size: 1.4rem
}

.modal-inner .cont .comment-inner .txt__message dl:not(:last-child) {
    margin-bottom: 34px
}

.modal-inner .cont .comment-inner .txt__message dl dt {
    margin-bottom: 15px;
    color: #e7316e;
    font-weight: 700;
    letter-spacing: .14em
}

.modal-inner .cont .comment-inner .txt__message dl dd {
    font-weight: 500;
    letter-spacing: .14em;
    color: #565663
}