@charset "utf-8";


/* --------------------------
基本設定
----------------------------- */
.container {
    width: 100%;
}

.content-item {
    width: 100%;
}


/* --------------------------
コンテント各種
----------------------------- */

/*---- 親要素の指定：parent--------------------------------- */
.content .box-parent {
    position: relative;
    border-radius: 50px;
}

/*---- ベースの設定：base--------------------------------- */
.content .box-base {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 2rem ;
}

/*---- バックの設定：back--------------------------------- */
.content .box-back {
    top: 12px;
    left: 12px;
}

/*---- テキストエリア--------------------------------- */
.content h3 {
    font-family: "caraque-melted", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.5rem;
    letter-spacing: 2px;

    margin: 0 0 3rem;

    text-align: center;
    color: #A06159;
}

.info-table dl{
    display: flex;
    flex-direction: column;
}

.business-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 80%;
    margin: 0 auto;
    padding: 3rem 2rem;

    border-bottom: 2px solid #222;
}
.business-item:last-child{
    border-bottom: none;
}

.info-table dt {
    width: 30%;
    font-size: 1.1rem;
}
.info-table dd {
    width: 65%;

    font-weight: bold;
}

.sub-business-item {
    margin: 2rem 0;
}

.sub-business-item dt {
    margin: 0 0 1rem;
    width: 100%;

}

.sub-business-item dd {
    font-weight: normal;
    width: 100%;
}

/*---- アクセス--------------------------------- */
.access .coming-soom {
    font-family: "Avenir Next", "Segoe UI", "Calibri", sans-serif;
    font-weight: bold;
    font-size: 3rem;
    color: #999;

    text-align: center;
    margin: 0 0 1rem;
}

.access .coming-soon-sub {
    text-align: center;
    margin: 0 0 3rem;
}

/* --------------------------
レスポンシブ　1000px
----------------------------- */
@media(max-width:1000px) {

    /*---- コンテント設定--------------------------------- */
    .content .box-base {
        padding: 2rem 3rem 3rem;
    }

    .content-item {
        max-width: 650px;
    }

    .business-item {
        width: 100%;
    }


}


/* --------------------------
レスポンシブ　600px
----------------------------- */
@media(max-width:600px) {

    /*---- コンテント設定--------------------------------- */
    .content .box-base {
        padding: 2rem 1.5rem;
    }

    .content h3 {
        font-size: 2.8rem;
        margin: 0 0 2rem;
    }


    /*---- テキストエリア--------------------------------- */
    .business-item{
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 2rem 0;
    }
    .business-item dt {
        width: 90%;
        font-size: 1.1rem;
        margin: 0 auto 1rem;
    }
    .business-item dd {
        width: 90%;
        font-size: .9rem;
        margin: 0 auto;
    }
    .sub-business-item {
        margin: 1.5rem 0;
    }
    /*---- アクセス--------------------------------- */
    .access .coming-soom {
    font-size: 2.5rem;
    letter-spacing: -2px;

    text-align: center;
    margin: 0 0 .5rem;
    }
    .access .coming-soon-sub {
        width: 90%;
        margin: 0 auto 2rem;
    }

}