/* =====================================
   特定商取引法ページ
===================================== */

.legal-page{
    position:relative;
    padding:100px 20px;
    background:#f7f2e8;
    overflow:hidden;
}

.legal-page::before{
    content:"";
    position:absolute;
    left:-140px;
    top:180px;
    width:320px;
    height:320px;
    background:#ffd200;
    border-radius:50%;
    z-index:0;
}

.legal-page::after{
    content:"";
    position:absolute;
    right:-120px;
    bottom:150px;
    width:260px;
    height:260px;
    background:#09b9b3;
    border-radius:50%;
    z-index:0;
}

.legal-container{
    position:relative;
    z-index:2;
    max-width:1100px;
    margin:auto;
}

.legal-section{
    background:#fffdf8;
    border-radius:36px;
    padding:70px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.legal-title{
    text-align:center;
    margin-bottom:60px;
}

.legal-title p{
    color:#09b9b3;
    font-size:14px;
    letter-spacing:.25em;
    font-weight:700;
    margin-bottom:10px;
}

.legal-title h1{
    font-size:42px;
    line-height:1.4;
    color:#333;
}

.legal-list{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.legal-item{
    display:grid;
    grid-template-columns:240px 1fr;
    border-bottom:1px solid #ece4d7;
    padding-bottom:28px;
}

.legal-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.legal-item h2{
    color:#09b9b3;
    font-size:20px;
    margin:0;
    font-weight:700;
}

.legal-item p{
    margin:0;
    color:#555;
    line-height:2;
    font-size:16px;
}

.legal-item ul{
    margin:15px 0 0;
    padding-left:20px;
}

.legal-item li{
    margin-bottom:10px;
    line-height:1.8;
}

.legal-item a{
    color:#09b9b3;
    font-weight:700;
    text-decoration:none;
}

.legal-item a:hover{
    color:#ff8700;
}

/* ---------- SP ---------- */

@media(max-width:768px){

.legal-page{
    padding:70px 15px;
}

.legal-section{
    padding:35px 22px;
    border-radius:24px;
}

.legal-title{
    margin-bottom:40px;
}

.legal-title h1{
    font-size:30px;
}

.legal-item{
    grid-template-columns:1fr;
    gap:12px;
}

.legal-item h2{
    font-size:18px;
}

.legal-item p,
.legal-item li{
    font-size:15px;
}

}