@charset "utf-8";

#header__container {
    height: 80px;
}
#header__container::before {
    opacity: 1;
}
.header__container__logo img {
    filter: invert(100%);        
}
.header__container__link__nav li p,
.header__container__link__nav li a {
    color: #000;
}
.header__container__link__nav li a::before,
.header__container__link__nav__a::before,
.header__container__link__nav__line {
    background-color: #000;
}

#wrap {
    background-image: url(../image/main-image_bg.webp);
    background-size: contain;
    background-position: top;
    background-repeat: repeat-y;
}

#l_wrapper {
    margin: 0 auto;
    padding: 193px 0 160px;
    width: calc((1000 / 1440)*100vw);
}

.as_list {
    display: flex;
    flex-direction: column;
    gap: 75px;
    width: 100%;
    height: auto;
}

.as_list__item {
    width: 100%;
    height: auto;
}

.as_list__item dt {
    margin-bottom: 15px;
    padding-left: 36px;
    position: relative;
    color: #000;
    font-family: "Shippori Mincho B1", serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 130%;
    white-space: pre-wrap;
}
.as_list__item dt::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 11px;
    left: 0;
    border-radius: 100px;
    background-color: #C39A6C;
}

.as_list__item dd {
    color: #000;
    font-family: "Shippori Mincho B1", serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 150%;
}

.as_list__item dd + dd {
    margin-top: 27px;
}

.as_list__item dd ul {
    margin-top: 5px;
}

.as_list__item dd .email {
    margin-top: 5px;
    color: #000;
    font-family: "Shippori Mincho B1", serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 110%;
}

.as_list__item dd a {
    color: #2219D3;
    text-decoration: underline;
}

.as_list__item ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.as_list__item ul li {
    padding-left: 1rem;
    position: relative;
    color: #000;
    font-family: "Shippori Mincho B1", serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 180%;
}

.as_list__item ul li::before {
    content: '・';
    display: block;
    position: absolute;
    left: 0;
}

dd + ul,
ul + dd {
    margin-top: 5px;
}


/* Tablet ================================================== */
@media all and (max-width: 768px){    
    #header__container {
        height: auto;
        padding-bottom: 20px;
    }

    #l_wrapper {
    padding: 164px 0 65px;
    width: calc((287 / 375)*100vw);
    }

   .as_list {
        padding-bottom: 40px;
        gap: 40px;
    }

   .as_list__item dt {
        margin-bottom: 10px;
        padding-left: 22px;
        font-size: 18px;
    }
    .as_list__item dt::before {
        width: 12px;
        height: 12px;
        top: 8px;
    }

    .as_list__item dd {
        font-size: 14px;
        line-height: 140%;
    }

    .as_list__item dd .email {
        font-size: 12px;
        line-height: 140%;
    }

    .as_list__item ul li {
        font-size: 12px;
        line-height: 140%;
    }
}