@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: table;
    width: 100%;
    height: 100%;
    text-align: center;
    
    padding: 60px 0;
    
    background: rgba(0,0,0,0.07);

    z-index: 102;
}

/*------------------------------------------*/
/*                 #privacy                 */
/*------------------------------------------*/
#privacy {
    position: relative;
    margin: 0;
    padding: 100px 0;
    text-align: left;
    
}


#privacy h3 {
    margin-bottom: 60px;
    text-align: center;
    text-transform: capitalize;
    font-weight: normal;
    color: #000;
    font-size: 20px;
}
#privacy h3 span {
    display: block;
    font-size: 30px;
}

#privacy p {
    margin-top: 60px;
    line-height: 1.8;
}
#privacy ul {
    margin-top: 40px;
}
#privacy ul li {
    display: list-item;
    list-style: decimal !important;
    margin-left: 1.6em;
    line-height: 1.8;
    margin-bottom: 30px;
    
    text-align: justify !important;
    text-justify: inter-ideograph !important;
    word-break: break-all;
}


#privacy ol {
    display: block;
    width: 100%;
    margin-top: 15px;
}
#privacy ol li {
    display: list-item;
    list-style: disc !important;
    margin-left: 1.6em;
    line-height: 1.8;
    margin-bottom: 0;
}


#privacy dl dt {
    margin-top: 20px;
    margin-bottom: 7px;
}
#privacy dl dd {
    margin-left: 1em;
    
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
}

#privacy dl dd a {
    display: inline-block;
    padding: 3px 3px;
    border-bottom: 1px rgba(0,0,0,0.2) solid;
}
#privacy dl dd a:hover {
    opacity: 1;
    border-bottom: 1px rgba(0,0,0,1) solid;
}



#privacy .tojiru-btn {
    display: table;
    width: 100%;
    margin-top: 50px;
    text-align: center;
}
#privacy .tojiru-btn a {
    padding-bottom: 5px;
    border-bottom: 1px rgba(0,0,0,0.3) solid;
    color: #000;
    text-align: center;
    font-weight: 100;
    font-size: 20px;
}



/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 1199px) {
/* - - - - - - - - - - - - - - - - - - - */
}
/* - - - - - - - - - - - - - - - - - - - */
@media screen and (max-width: 480px) {
/* - - - - - - - - - - - - - - - - - - - */
#privacy {
    padding: 90px 0 40px 0;
}
#privacy h3 {
    margin-bottom: 40px;
    font-size: 16px;
}
#privacy h3 span {
    font-size: 23px;
}
    
#privacy .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;
}