html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: rgba(0, 0, 0, 0);
}
body {
    line-height: 1.4;
    letter-spacing: 0.04em;
    font-weight: 400;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
        "Hiragino Sans", Meiryo, sans-serif;
}
body * {
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: rgba(0, 0, 0, 0);
    text-decoration: none;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
input,
select {
    vertical-align: middle;
}
main {
    display: block;
}
ol,
li {
    list-style-type: none;
}
button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all false;
    cursor: pointer;
}
.nav-open .nav {
    right: 0;
}
.nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
}
.nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
}
.nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
}
.nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
}
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 24px 10px;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0px 3px 12px -6px #707070;
}
@media screen and (min-width: 1200px) {
    .header {
        padding: 37px 30px;
    }
}
.header > .header_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media screen and (min-width: 1200px) {
        max-width: 1440px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}
.header > .header_inner > .logo {
    max-width: 270px;
    @media screen and (min-width: 768px) {
        max-width: 300px;
    }
}
@media not screen and (min-width: 1200px) {
    .nav {
        position: fixed;
        right: -320px;
        top: 0;
        width: 300px;
        height: 100vh;
        padding-top: 60px;
        background-color: #fff;
        transition: all 0.6s;
        z-index: 200;
        overflow-y: auto;
    }
    .hamburger {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }
    .nav_list {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .nav_item {
        text-align: center;
        padding: 0 14px;
        font-weight: bold;
    }
    .nav_item a {
        color: #308ccc;
        display: flex;
        align-items: center;
        gap: 0 8px;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        text-decoration: none;
    }
    .nav_item a > img {
        width: 8px;
    }
    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #333;
        transition: all 0.6s;
    }
    .hamburger_border_top {
        top: 14px;
    }
    .hamburger_border_center {
        top: 20px;
    }
    .hamburger_border_bottom {
        top: 26px;
    }
    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #333;
        opacity: 0;
        visibility: hidden;
        transition: all 0.6s;
        cursor: pointer;
    }
    .nav-open .nav {
        right: 0;
    }
    .nav-open .black_bg {
        opacity: 0.8;
        visibility: visible;
    }
    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
    }
    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
    }
    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
    }
}
@media screen and (min-width: 1200px) {
    .nav_list {
        text-align: right;
    }
    .nav_list li {
        display: inline-block;
        text-align: right;
        padding-left: 20px;
    }
    .nav_item a {
        font-weight: bold;
        color: #308ccc;
        display: flex;
        align-items: center;
        gap: 0 8px;
        padding: 12px 0;
        text-decoration: none;
        transition: all 0.3s;
    }
    .nav_item a:hover {
        filter: brightness(110%);
        transition: all 0.3s;
    }
    .nav_item a:hover > img {
        transition: all 0.3s;
        transform: translateX(2px);
    }
    .nav_item a > img {
        width: 8px;
        transition: all 0.3s;
    }
}
@media screen and (min-width: 1920px) {
    .header > .header_inner {
        max-width: 1480px;
    }
}
.acaricLounge > .hero {
    margin-top: 70px;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .hero {
        margin-top: 120px;
    }
}
.acaricLounge > .hero > .image {
    position: relative;
}
.acaricLounge > .hero > .title {
    color: #231815;
    font-weight: bold;
    position: absolute;
    font-size: 22px;
    top: 15.3%;
    left: 0;
    @media screen and (min-width: 768px) {
        font-size: 45px;
        top: 25.5%;
        left: 73px;
    }
    @media screen and (min-width: 1200px) {
        top: 21.7%;
    }

    > .title-inner {
        display: flex;
        flex-direction: column;

        > .title-desc {
            width: fit-content;
            line-height: 1.3;
            background-color: #fff;
            padding: 6px 10px;

            & + & {
                margin-top: 10px;
                margin-left: 15px;
                @media screen and (min-width: 768px) {
                    margin-top: 26px;
                    margin-left: 60px;
                }
            }
        }
    }
}
.acaricLounge > .feature {
    padding: 30px 15px 40px;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .feature {
        padding: 50px 0 60px;
    }
}
.acaricLounge > .feature > .intro {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .feature > .intro {
        flex-direction: row;
        gap: 0 20px;
        max-width: 1000px;
        margin: 0 auto;
    }
}
.acaricLounge > .feature > .intro > .group {
    @media screen and (min-width: 1200px) {
        max-width: 1000px;
        margin-inline: auto;
    }
}
.acaricLounge > .feature > .intro > .group > .title {
    font-size: 22px;
    font-weight: bold;
    color: #3d3b3a;
    text-align: center;
    @media screen and (min-width: 1200px) {
        font-size: 40px;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .feature > .intro > .group > .title {
        font-size: 40px;
    }
}
.acaricLounge
    > .feature
    > .intro
    > .group
    > .title
    > .title-inner
    > .image-container
    > img {
    max-width: 30px;
    margin-inline: auto;
    @media screen and (min-width: 1200px) {
        max-width: 45px;
    }
}
.acaricLounge
    > .feature
    > .intro
    > .group
    > .title
    > .title-inner
    > .title-desc {
    margin-top: 5px;
}
.acaricLounge > .feature > .intro > .group > .descriptions {
    margin-top: 20px;
    @media screen and (min-width: 1200px) {
        margin-top: 30px;
        max-width: 750px;
        margin-inline: auto;
    }
}
.acaricLounge > .feature > .intro > .group > .descriptions > .description {
    letter-spacing: 0;
    line-height: 1.6;
    color: #3d3b3a;
    font-size: 15px;
    @media screen and (min-width: 1200px) {
        font-size: 18px;
    }
    & + & {
        margin-top: 25px;
    }
    > span {
        font-weight: bold;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .feature > .intro > .group > .descriptions > .description {
        line-height: 1.8;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .feature > .intro > .image {
        flex-basis: 442px;
    }
}
.acaricLounge > .feature > .lounge-gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    @media screen and (min-width: 1200px) {
        gap: 24px;
        grid-template-columns: repeat(4, 1fr);
        margin-top: 60px;
        max-width: 1000px;
        margin-inline: auto;
    }
}
.acaricLounge > .feature > .service {
    margin-top: 40px;
    @media screen and (min-width: 1200px) {
        margin-top: 60px;
    }
}
.acaricLounge > .feature > .service > .title {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #3d3b3a;
    @media screen and (min-width: 1200px) {
        font-size: 32px;
    }
}
.acaricLounge > .feature > .service > .contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
    @media screen and (min-width: 960px) {
        padding: 0px;
        margin-top: 53px;
        gap: 30px;
        max-width: 960px;
        margin-inline: auto;
    }
}
@media not screen and (min-width: 960px) {
    .acaricLounge > .feature > .service > .contents {
        border: 5px solid #b9dff8;
        justify-content: center;
    }
}
.acaricLounge > .feature > .service > .contents > .group {
    @media screen and (min-width: 960px) {
        position: relative;
        height: 145px;
        border: 5px solid #b9dff8;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 280px;
        @media screen and (min-width: 1200px) {
            width: 300px;
        }
    }
}
.acaricLounge > .feature > .service > .contents > .group > .symbol {
    width: 66px;
    margin: 0 auto;
}
@media screen and (min-width: 960px) {
    .acaricLounge > .feature > .service > .contents > .group > .symbol {
        position: absolute;
        top: -27%;
        left: 50%;
        transform: translateX(-50%);
    }
}
.acaricLounge > .feature > .service > .contents > .group > .symbolDescription {
    font-size: 16px;
    font-weight: bold;
    color: #308ccc;
    text-align: center;
    margin-top: 10px;
    @media screen and (min-width: 768px) {
        margin-top: 0px;
        height: 63px;
    }
}
@media screen and (min-width: 768px) {
    .acaricLounge
        > .feature
        > .service
        > .contents
        > .group
        > .symbolDescription {
        font-size: 22px;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge
        > .feature
        > .service
        > .contents
        > .group
        > .symbolDescription {
        font-size: 28px;
    }
}
.acaricLounge
    > .feature
    > .service
    > .contents
    > .group
    > .symbolDescription
    > .note {
    margin-top: 5px;
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: #308ccc;
    > .hiddenSP {
        display: none;
        @media screen and (min-width: 768px) {
            display: block;
        }
    }
    > .hiddenPC {
        @media screen and (min-width: 768px) {
            display: none;
        }
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge
        > .feature
        > .service
        > .contents
        > .group
        > .symbolDescription
        > .note {
        font-size: 16px;
    }
}
.acaricLounge > .feature > .service > .note {
    color: #D20004;
    text-align: center;
    margin-top: 10px;
    font-size: 12px;
    @media screen and (min-width: 768px) {
        margin-top: 20px;
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .feature > .service > .note {
        font-size: 16px;
    }
}

.acaricLounge > .feature > .service > .link {
    text-align: center;
}
.acaricLounge > .feature > .service > .link > a {
    display: inline-flex;
    gap: 0 10px;
    align-items: center;
    justify-content: center;
    margin: 10px 0 0;
    padding: 15px;
    width: 100%;
    max-width: 350px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(90deg, #FF4144 0%, #FF4144 73.08%, #E54229 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}
@media not screen and (min-width: 768px) {
    .acaricLounge > .feature > .service > .link > a {
        padding: 10px;
        font-size: 16px;
    }
}
.acaricLounge > .feature > .service > .link > a:hover {
    box-shadow: 0 4px 15px 2px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    filter: brightness(110%);
}
.acaricLounge > .feature > .service > .link > a > img {
    width: unset;
    height: 14px;
    transition: all 0.3s;
}
.acaricLounge > .feature > .service > .link > a:hover > img {
    transform: translateX(3px);
}

.acaricLounge > .contact {
    padding: 40px 15px 40px;
    border: 6px solid #b9dff8;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .contact {
        padding: 70px 0 70px;
        margin: 0 auto;
    }
}
.acaricLounge > .contact > .inner {
    @media screen and (min-width: 1200px) {
        max-width: 710px;
        margin-inline: auto;
    }
}
.acaricLounge > .contact > .inner > .contents .title {
    font-size: 20px;
    font-weight: bold;
    color: #3d3b3a;
    text-align: center;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .contact > .inner > .contents .title {
        font-size: 32px;
    }
}
.acaricLounge > .contact > .inner > .contents .description {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #3d3b3a;
}
@media not screen and (min-width: 768px) {
    .acaricLounge > .contact > .inner > .contents .description > .hiddenSP {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    .acaricLounge > .contact > .inner > .contents .description {
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .contact > .inner > .contents .description {
        font-size: 16px;
    }
    .acaricLounge > .contact > .inner > .contents .description > .hiddenPC {
        display: none;
    }
}
.acaricLounge > .contact .link > a {
    background: linear-gradient(
        90deg,
        #41b1ff 0%,
        #1c9df7 73.08%,
        #308ccc 100%
    );
    line-height: 1.4;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 0 10px;
    transition: all 0.3s;
    width: fit-content;
    margin-inline: auto;
    padding: 10px 20px;
    margin-top: 25px;
    @media screen and (min-width: 768px) {
        padding: 15px 18px;
    }
    > span {
        > .hiddenPC {
            @media screen and (min-width: 768px) {
                display: none;
            }
        }
    }
}
.acaricLounge > .contact .link > a:hover {
    box-shadow: 0 5px 8px 2px rgba(0, 0, 0, 0.14);
    transform: translateY(-2px);
    filter: brightness(110%);
    transition: all 0.3s;
}
.acaricLounge > .contact .link > a:hover > img {
    transition: all 0.3s;
    transform: translateX(3px);
}
@media screen and (min-width: 768px) {
    .acaricLounge > .contact .link > a {
        font-size: 16px;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .contact .link > a {
        font-size: 18px;
    }
}
.acaricLounge > .contact .link > a > img {
    width: 8px;
    transition: all 0.3s;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .contact .link > a > img {
        width: 10px;
    }
}
.acaricLounge > .guide {
    background-color: #fff9ed;
}
.acaricLounge > .guide.new {
    padding-bottom: 45px;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .guide.new {
        padding-bottom: 94px;
    }
}
.acaricLounge > .guide > .title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 20px 0 20px;
    background-color: #308ccc;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .guide > .title {
        font-size: 36px;
        padding: 25px 0;
    }
}
.acaricLounge > .guide > .contents > .group {
    @media screen and (min-width: 1200px) {
        display: flex;
        align-items: flex-start;
        flex-direction: row-reverse;
        max-width: 1000px;
        margin-inline: auto;
    }
}
.acaricLounge > .guide > .contents > .group > .inner > .group > .title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.acaricLounge > .guide > .contents > .group > .inner > .group > .title > img {
    max-width: 30px;
    @media screen and (min-width: 1200px) {
        max-width: 40px;
    }
}
.acaricLounge > .guide > .contents {
    padding: 40px 15px 40px;
    > .group + .group {
        margin-top: 40px;
        @media screen and (min-width: 1200px) {
            margin-top: 40px;
        }
    }
}
.acaricLounge > .guide > .contents > .group > .image {
    display: block;
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .guide > .contents > .group > .image {
        max-width: 450px;
    }
}
.acaricLounge > .guide > .contents > .group > .inner {
    margin-top: 20px;
    margin-inline: auto;
    @media screen and (min-width: 768px) {
        margin: 0;
        margin-right: auto;
        width: fit-content;
    }
}
.acaricLounge > .guide > .contents > .group > .inner > .group {
    margin-top: 15px;
}
.acaricLounge > .guide > .contents > .group > .inner > .group > .title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    @media screen and (min-width: 1200px) {
        font-size: 20px;
    }
}
.acaricLounge > .guide > .contents > .group > .inner > .group > .address {
    color: #000;
    margin-top: 15px;
    font-size: 13px;
    @media screen and (min-width: 768px) {
        margin-top: 20px;
        font-size: 15px;
    }
    > .inner {
        line-height: 1.5;
    }
}
@media screen and (min-width: 1200px) {
    .acaricLounge > .guide > .contents > .group > .inner > .group > .address {
        font-size: 15px;
    }
}
.footer {
    background-color: #f5f5f5;
    padding: 8% 0% 0%;
}
@media screen and (min-width: 1080px) {
    .footer {
        padding: 41px 0 0;
    }
}
.footer__inner {
    width: 90%;
    margin: 0 auto;
}
@media screen and (min-width: 1080px) {
    .footer__inner {
        display: flex;
        justify-content: space-between;
    }
}
.footer__bold {
    font-weight: bold;
}
.footer__list {
    font-size: 3.2vw;
}
@media screen and (min-width: 1080px) {
    .footer__list {
        font-size: 13px;
    }
}
.footer__list.btn {
    width: 100%;
    margin-bottom: 14px;
}
.footer__list.sns {
    width: 33%;
}
.footer__list + .footer__list {
    margin-top: 15px;
}
@media screen and (min-width: 1080px) {
    .footer__list.copy + .footer__list.copy {
        margin-top: 0;
        margin-left: 20px;
    }
}
@media screen and (max-width: 1079px) {
    .footer__lists + .footer__lists {
        margin-top: 38px;
    }
}
.footer__button {
    transition: all 0.3s;
    font-weight: bold;
    background-color: #fff;
    padding: 5% 14% 6%;
    font-size: 4.2666666667vw;
    color: #308ccc;
    width: 87%;
    margin: 0 auto;
    display: block;
    text-align: center;
    border-radius: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (min-width: 1080px) {
    .footer__button {
        font-size: 16px;
        padding: 5% 22% 6%;
    }
}
.footer__sns {
    font-size: 3.7333333333vw;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}
@media screen and (min-width: 1080px) {
    .footer__sns {
        font-size: 14px;
    }
}
.footer__lists.copyright {
    background-color: #464646;
    margin-top: 30px;
    padding: 8% 4% 8%;
    color: #fff;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 2.6666666667vw;
}
@media screen and (min-width: 1080px) {
    .footer__lists.copyright {
        font-size: 12px;
        padding: 27px 0 21px;
    }
}
.footer__list.text {
    margin-top: 32px;
    text-align: center;
}
@media screen and (min-width: 1080px) {
    .footer__list.text {
        margin-top: 0;
        text-align: left;
        margin-left: auto;
    }
}
@media screen and (min-width: 1080px) {
    .footer__inner01 {
        width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }
}
.footer__img {
    width: 40%;
}
.footer__img01 {
    width: 4%;
    transition: all 0.3s;
}
@media screen and (min-width: 1080px) {
    .footer__inner .footer__lists:last-of-type {
        width: 461px;
    }
}
.uk-breadcrumb.acw-mg-v0_25em {
    display: none;
}
.acw-totop {
    display: none;
}
.highlight-text {
    color: #e71212;
    font-size: 18px;
    @media screen and (min-width: 1200px) {
        font-size: 20px;
    }
}
.emphasized {
    font-size: 1.1em;
}
