@charset "UTF-8" ;

body {
    /* iphone スクロールを滑らかに */
    -webkit-overflow-scrolling: touch;
}


.modal-overlay {
    display:none;
    position:fixed;
    top:0;
    left:0;
    
    width:100%;
    height:100vh;
    background-color: rgba(255,255,255,0.9);
    
    z-index:100;
}

.modal-content {
    display:none;
    position:fixed;
    width:100%;
    height: 100vh;
    margin:0;
    padding: 0;
    background: rgba(255,255,255,0.9);

    overflow: scroll;
    overflow-x: hidden;
    
    z-index:101;
}

/*------------------------------------------*/
/*                 head                     */
/*------------------------------------------*/
.modal-content #head {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 70px;
    text-align: right;
    margin: 0;
    padding: 10px 20px;
    background: #fff;
    
    z-index: 102;
}

/*------------------------------------------*/
/*                 body                     */
/*------------------------------------------*/
.modal-content #body {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    
    padding: 100px 0;
    margin-bottom: 100px;

    z-index: 102;
}

/*------------------------------------------*/
/*                    news                  */
/*------------------------------------------*/
/*--- h4 ---*/
.modal-content h4 {
    display: block;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: capitalize;
    text-align: left;
    line-height: 1.8;
    border-bottom: 1px rgba(0,0,0,0.3) solid;
    padding-bottom: 10px;
    margin-top: 30px;
    margin-bottom: 40px;
}
.modal-content h4 span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #999;
}

/*--- p ---*/
.modal-content p {
    margin-top: 40px;
    line-height: 2.2;
}
.modal-content p span.text-right {
    display: block;
    margin-top: 30px;
    text-align: right;
    line-height: 1.8;
}

.modal-content span.text-center {
    display: block;
    margin: 20px 0;
    text-align: center;
}




/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1024px) {
/* - - - - - - - - - - - - - - - - - - - */
    .modal-content h4 {
        font-size: 16px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 767px) {
/* - - - - - - - - - - - - - - - - - - - */
    .modal-content h4 {
        font-size: 15px;
    }
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
    .modal-content h4 {
        font-size: 14px;
    }
}





.modal-content .tojiru-btn {
    display: table;
    width: 100%;
    margin-top: 70px;
    text-align: center;
}
.modal-content .tojiru-btn a {
    padding-bottom: 5px;
    border-bottom: 1px rgba(155,128,117,0.7) solid;
    text-align: center;
    color: #9b8075;
    font-weight: 100;
    font-size: 21px;
}

/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
.modal-content .tojiru-btn a {
    font-size: 16px;
}
}





/*------------------------------------------*/
/*               original                   */
/*------------------------------------------*/

.modal-open {
    color:#00f;
}

.modal-open:hover {
    cursor:pointer;
    color:#f00;
}

.modal-close {
    color:#00f;
}

.modal-close:hover {
    cursor:pointer;
    color:#f00;
}