@charset "UTF-8";

/*FONT-----*/
.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/*-----FONT*/
/*name--*/
.logo-name {
    padding: 0.5rem;
    margin-right: auto;
    margin-left: auto;
}

.logo-name .flex-column {
    justify-content: start;
    align-items: center;
    color: #0a0a0a;
}

.logo-name .logo {
    width: 30px;
    padding-right: 1.0rem;
}

/*--name*/
/*common--*/
h2 {
    line-height: 3.0rem;
    border-bottom: 1px solid #858585;
    padding-bottom: 1.0rem;
    margin-top: 5.0rem;
    margin-bottom: 2.0rem;
}

h3 {
    margin-top: 2.0rem;
    margin-bottom: 0.5rem;
    line-height: 2.5rem;
}

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

a:hover {
    color: gray;
}

ol li,
ul li {
    margin-bottom: 0.5rem;
}

ol {
    counter-reset: number;
    list-style-type: none;
    margin-block-start: 1.0rem;
    margin-block-end: 1.0rem;
    padding-inline-start: 0;
}

.inner-container>ol>li {
    position: relative;
    line-height: 2.0rem;
    margin-bottom: 1.0rem;
}

.inner-container>ol>li::before {
    position: absolute;
    counter-increment: number;
    content: counter(number) ".";
    display: inline-block;
    color: #0a0a0a;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    top: 0.2rem;
    left: 0;
    width: 25px;
    height: 25px;
    line-height: 2.0rem;
}

.inner-container.nesting>ol {
    counter-reset: number;
    list-style-type: none;
}

.inner-container.nesting>ol>li {
    padding-left: 2.0rem;
}

.inner-container.nesting>ol>li::before {
    counter-increment: number;
    content: counters(number) ". ";
}

.inner-container.nesting ol ol {
    padding: 0 0 0 1rem;
}

.inner-container.no-04 ol ol li {
    position: relative;
    line-height: 2.0rem;
    padding-left: 3.0rem;
    margin-bottom: 1.0rem;
}

.inner-container.no-04 ol ol li::before {
    position: absolute;
    counter-increment: number;
    content: "("counter(number) ")";
    display: inline-block;
    color: #0a0a0a;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    top: 0.2rem;
    left: 0;
}

ul {
    list-style: none;
    padding-inline-start: 0;
    margin-top: 1.0rem;
    margin-bottom: 2.0rem;
}

.inner-container.no-01>ul>li>ul {
    position: relative;
    line-height: 2.0rem;
    padding-left: 2.0rem;
}

.inner-container.no-01>ul>li>ul>li::before {
    content: "・";
    position: absolute;
    top: ;
    left: 0;
    font-size: 15px;
}

.inner-container.no-02>ul {
    position: relative;
    line-height: 2.0rem;
    padding-left: 2.0rem;
}

.inner-container.no-02>ul>li::before {
    content: "・";
    position: absolute;
    top: ;
    left: 0;
    font-size: 15px;
}

/*--common*/
.big-container {
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.0rem;
    padding-left: 1.0rem;
}

.date-enactment {
    margin-top: 3.0rem;
    margin-bottom: 3.0rem;
}

.btn-return {
    position: relative;
    padding-right: 1.0rem;
}

.btn-return::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #699550;
    border-right: 2px solid #699550;
    transform: rotate(45deg);
}

.btn-return:hover::after {
    border-top: 2px solid gray;
    border-right: 2px solid gray;
}

.sec-return {
    text-align: right;
    margin-bottom: 3.0rem;
}

@media screen and (max-width: 768px) {
    .pc-01 {
        display: none;
    }

    .flex-column.for-sp {
        display: flex;
    }
}

@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }

    h3 {
        margin-top: 4.0rem;
    }

    .logo-name {
        max-width: 725px;
    }

    .big-container {
        max-width: 725px;
    }

    .sp-01 {
        display: none;
    }

    .flex-column.for-pc {
        display: flex;
    }
}