@charset "utf-8";

/* CSS Document */
html,body{
    margin: 0;
    padding: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #202124;
    text-decoration: none;
}

*{
    box-sizing: border-box;
}

#MainContent{
    overflow: hidden;
}

/*----------LP----------*/
.lp-contents{
    width: 90%;
    max-width: 1020px;
    margin: 0 auto 180px;
    font-family: "Noto Serif JP";
    color: #442e18;
    letter-spacing: 0.04em;
    line-height: 1.6;
}
.lp-contents img{
    width: 100%;
    max-width: 100%;
}
.lp-contents a{
    transition: all 0.5s;
}

/* mv */
.mv{
    width: 100%;
    margin: 0 auto;
}

/* lead */
.lp-lead{
    width: 100%;
    margin: 55px auto 145px;
    font-size: 16px;
    line-height: 1.875;
    text-align: center;
}
.lp-lead_title{
    margin: 0 auto 1em;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    font-family: "Noto Serif JP";
    letter-spacing: 0.06em;
    color: #442e18;
}

/* item */
.item-sec{
    width: 100%;
    margin: 0 auto 10%;
}
.item-sec_title{
    margin: 0 auto 0.7em;
    width: 100%;
    font-family: gill-sans-nova, sans-serif;
    font-weight: 600;
    font-size: 34px;
    letter-spacing: 0.04em;
    color: #442e18;
}

.item{
    width: 100%;
    margin: 0 auto 70px;
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
.item_main{
    width: 53%;
}
.item_sub{
    width: 41%;
}
.item_sub img{
    margin-bottom: 5px;
}
.item_text{
    font-size: 16px;
    line-height: 2;
}

.item-sec-2{
    margin-top: 130px;
}
.item-2{
    display: flex;
    align-items: center;
    gap: 6%;
}
.item_title {
    margin: 0 auto 30px;
    font-size: 26px;
    font-weight: normal;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.item-reverse{
    flex-direction: row-reverse;
}
.item-reverse .item_textarea{
    padding-left: 0;
    padding-right: 5%;
}

/* credit */
.credit{
    margin: 20px auto 0;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
}
.credit li{
    margin-bottom: 5px;
    line-height: 1.6;
}
.credit li a{
    color: #442e18;
    text-decoration: underline;
}
.credit li a:hover{
    color: #999999;
}
.credit .small{
    font-size: 0.85em;
}

/* btn area */
.btn-area{
    margin: 160px auto;
}
.btn-area .btn{
    width: 600px;
    margin: auto;
    padding: 1.2em 0;
    max-width: 90%;
    border: 1px solid #442e18;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #442e18;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.btn-area .btn::after{
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #442e18;
    border-right: 1px solid #442e18;
    transform: rotate(45deg);
    position: absolute;
    right: 30px;
    top: 44%;
}
.btn-area .btn:hover{
    background-color: #442e18;
    color: #fff;
}
.btn-area .btn:hover:after{
    border-color: #fff;
}

@media screen and (min-width:768px) {
    .lp-contents .sp{
        display: none;
    }

    .lp-contents{
        width: 95%;
    }
}

@media screen and (max-width:767px) {
    .lp-contents .pc{
        display: none;
    }

    .lp-contents{
        width: 100%;
        margin-bottom: 20%;
    }

    /* lead */
    .lp-lead{
        width: 100%;
        margin: 40px auto 50px;
        font-size: 14px;
    }
    .lp-lead_title{
        font-size: 18px;
    }

    /* item */
    .item-sec{
        width: 100%;
        margin: auto;
    }
    .item-sec-2{
        margin-top: 15%;
    }
    .item-sec_title{
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }
    .item{
        margin-bottom: 40px;
        flex-direction: column;
        row-gap: 20px;
    }
    .item_main{
        width: 100%;
    }
    .item_sub{
        width: 100%;
        text-align: center;
    }
    .item_text{
        font-size: 14px;
        text-align: left;
    }

    .item-2{
        width: 100%;
        margin: auto;
        flex-wrap: wrap;
    }
    .item_title{
        margin-top: 8%;
        margin-bottom: 5%;
        font-size: 21px;
    }

    /* credit */
    .credit{
        margin-top: 20px;
        text-align: left;
    }
    .credit li a{
        font-size: 14px;
    }

    /* btn area */
    .btn-area{
        margin: 80px auto;
    }
    .btn-area .btn{
        font-size: 16px;
    }
}