/* common */
* {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "dnp-shuei-gothic-gin-std", sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.75;
    color: #231815;
}

li {
    list-style: none;
}

a {
    color: #231815;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

address {
    font-style: normal;
}

@media (max-width: 767px) {
    .pc-only {
        display: none;
    }
}

@media (min-width: 768px) {
    .sp-only {
        display: none;
    }
}

.flex {
    display: flex;
}

.content-width {
    max-width: 100rem;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .content-width {
        width: 100%;
    }
}

.section-text {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .section-text {
        font-size: 1.6rem;
    }
}

.header {
    padding: 5rem 0 0;
}

.header__logo {
    text-align: center;
}

.header__logo img {
    width: 9rem;
}

@media (min-width: 768px) {
    .header__logo img {
        width: 13rem;
    }
}

.header__catch {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .header__catch {
        font-size: 3rem;
    }
}

.header__text {
    font-size: 1.3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .header__text {
        font-size: 1.8rem;
    }
}

.header__img {
    margin-top: 2rem;
    width: 100%;
    height: 96vw;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center bottom;
    object-position: center bottom;
}

@media (min-width: 768px) {
    .header__img {
        height: auto;
    }
}

.footer {
    padding: 5rem 0 10rem;
}

.footer address {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .footer address {
        font-size: 1.6rem;
    }
}

.footer__logo {
    text-align: center;
}

.footer__logo img {
    width: 9rem;
}

.footer .copyright {
    font-size: 1.4rem;
    text-align: center;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .footer .copyright {
        font-size: 1.6rem;
    }
}

.contact-button-wrap {
    text-align: center;
    margin-top: 4rem;
}

.contact-button {
    border: solid 2px #231815;
    border-radius: 1.1rem;
    font-size: 1.6rem;
    padding: 1rem 4rem;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    box-shadow: 1.5px 2px 0px #231815;
}

@media (min-width: 768px) {
    .contact-button {
        font-size: 1.8rem;
    }
}