/*---------------------------------------------------------
                共通css
---------------------------------------------------------*/
:root {
    --base-color: #FFFFFF;
    --bg-color: #F7EEE6;
    --text-color: #8F6856;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-repeat: no-repeat;
}


a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

html {
    min-height: 100lvh;
    color: var(--text-color);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
}

body {
    background-color: var(--base-color);
    background-size: contain;
    display: flex;
    flex-direction: column;
    min-height: 100lvh;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

p,
dt,
dd,
a {
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

/*---------------------------------------------------------
                フロント
---------------------------------------------------------*/
.main_wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.main_wrapper svg path {
    fill: var(--text-color);
}

.main_wrapper svg rect {
    stroke: var(--text-color);
}

.main_wrapper .img_content {
    width: calc(100% - 376px);
    height: 100%;
    background-image: url(../img/img_parse.webp);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main_wrapper .info_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 376px;
}

.main_wrapper .info_content .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: fit-content;
}

.main_wrapper .info_content .inner svg.logo {
    width: 70px;
}

.main_wrapper .info_content .inner svg.logo.sp {
    display: none;
}

.main_wrapper .info_content .inner .parse_img {
    display: none;
    margin-top: 24px;
    width: 100%;
}

.main_wrapper .info_content .inner .parse_img img {
    width: 100%;
}

.main_wrapper .info_content .inner .open_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 85px;
    padding: 24px 0;
    width: 100%;
    background: var(--bg-color);
    border-radius: 4px;
}

.main_wrapper .info_content .inner .open_box svg {
    width: 24px;
}

.main_wrapper .info_content .inner .open_box p {
    color: var(--text-color);
}

.main_wrapper .info_content .inner .info_table {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.main_wrapper .info_content .inner .info_table dl {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main_wrapper .info_content .inner .info_table dl dd {
    font-size: 14px;
    font-weight: 400;
}

.main_wrapper .info_content .inner .info_table dl dd a.map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding: 10px 0;
    width: 100%;
    color: var(--text-color);
    line-height: 1;
    border: 1px solid var(--text-color);
    border-radius: 4px;
    transition: .3s;
}

.main_wrapper .info_content .inner .info_table dl dd a.map svg {
    width: 9px;
}

.main_wrapper .info_content .inner .info_table dl dd a.map svg path {
    transition: .3s;
}

.main_wrapper .info_content .inner .info_table dl dd a.tel {
    color: var(--text-color);
}

.main_wrapper .info_content small {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
    .main_wrapper .info_content .inner .info_table dl dd a.map:hover {
        background: var(--text-color);
        color: var(--base-color);
    }

    .main_wrapper .info_content .inner .info_table dl dd a.map:hover svg path {
        fill: var(--base-color);
    }
}

@media screen and (max-width:990px) {
    .main_wrapper {
        height: auto;
        padding: 20px 0 40px;
    }

    .main_wrapper .img_content {
        display: none;
    }

    .main_wrapper .info_content {
        margin: 0 auto;
        width: 100%;
    }

    .main_wrapper .info_content .inner {
        width: 100%;
    }

    .main_wrapper .info_content .inner svg.logo {
        width: 120px;
    }

    .main_wrapper .info_content .inner svg.logo.pc {
        display: none;
    }

    .main_wrapper .info_content .inner svg.logo.sp {
        display: block;
    }

    .main_wrapper .info_content .inner .parse_img {
        display: block;
    }

    .main_wrapper .info_content .inner .open_box,
    .main_wrapper .info_content .inner .info_table {
        width: 90%;
    }

    .main_wrapper .info_content small {
        position: relative;
        bottom: unset;
        left: unset;
        transform: unset;
        margin-top: 72px;
    }
}

@media screen and (max-width:600px) {
    .main_wrapper .info_content .inner .open_box {
        margin-top: 40px;
    }

    .main_wrapper .info_content .inner .info_table {
        margin-top: 50px;
    }
}