html {
    scroll-padding-top: 15%;
}
body {
    font-family: YuGothic,"Yu Gothic Medium","Yu Gothic",sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3 {
    margin-block: 0;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style: none;
}
ol {
    padding: 0;
}
figure {
    margin: 0;
}

/*
 * common
 */
:root {
    --navy: #1d2a40;
    --green: #bad800;
    --white: #fff;
    --block: #000;
}
.section-heading {
    margin-block-end: 18px;
    color: var(--navy);
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 2px;
    font-family: "dnp-shuei-nmincho-std", sans-serif;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .section-heading {
        margin-block-end: 20px;
        font-size: 30px;
        line-height: 2;
    }
}
.section-inner {
    max-width: 960px;
    margin-inline: auto;
}
.section-intro-text {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.79;
}
@media screen and (min-width: 768px) {
    .section-intro-text {
        margin-block: 0 32px;
        font-size: 16px;
        line-height: 1.94;
        text-align: center;
    }
}
.reserve-button {
    display: inline-block;
    width: 100%;
    background: var(--green);
    border-radius: 50px;
    color: var(--block);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}
.button-size-m {
    padding-block: 13px;
    font-size: 14px;
}
.button-size-l {
    padding-block: 16px;
    font-size: 16px;
}
@media screen and (min-width: 768px) {
    .button-size-l {
        padding-block: 25px;
        font-size: 18px;
    }
}
.caption-text {
    margin-block-start: 5px;
    color: var(--navy);
    font-size: 12px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .caption-text {
        margin-block-start: 8px;
        font-size: 13px;
        text-align: center;
    }
}
@media screen and (min-width: 768px) {
    .sp-only {
        display: none;
    }
}
.pc-only,
.pc-only-text {
    display: none;
}
@media screen and (min-width: 768px) {
    .pc-only {
        display: block;
    }
    .pc-only-text {
        display: inline-block;
    }
    .link-hover-opacity {
        transition: opacity .3s;
    }
    .link-hover-opacity:hover {
        opacity: .7;
    }
}


/*
 * header
 */
.header {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    padding: 20px;
    z-index: 10;
}
.header.js-header-bg {
    transition: all .5s ease-in-out;
    background: rgba(0, 0, 0, 0.85);
}
@media screen and (min-width: 1030px) {
    .header {
        justify-content: space-between;
        align-items: center;
        padding: 30px;
    }
}
.header-logo {
    width: 192px;
}
@media screen and (min-width: 1030px) {
    .header-logo {
        width: 231px;
    }
}
.header-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    display: none;
    background: var(--block);
}
@media screen and (min-width: 1030px) {
    .header-nav {
        display: flex;
        align-items: center;
        gap: 35px;
        position: static;
        height: initial;
        background: transparent;
    }
}
.header-nav-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-block: 170px 80px;
}
@media screen and (min-width: 1030px) {
    .header-nav-list {
        flex-direction: row;
        gap: 35px;
        margin-block: 0;
    }
}
.header-nav-list-item {
    text-align: center;
}
.header-nav-list-item a {
    color: var(--white);
    font-size: 16px;
    line-height: 1.63;
    text-align: center;
    text-decoration: none;
}
@media screen and (min-width: 1030px) {
    .header-nav-list-item a {
        font-weight: 600;
        font-size: 14px;
        line-height: 1.86;
    }
    .header-nav-list-item a::after {
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        opacity: 0;
        transition: opacity .2s ease-in-out;
        content: '';
    }
    .header-nav-list-item a:hover::after {
        opacity: 1;
    }
}
.header-button {
    width: 178px;
    margin-inline: auto;
}
.hamburger-button {
    position: absolute;
    top: 44px;
    right: 46px;
    display: block;
    transition: all .3s;
}
.hamburger-button span {
    position: absolute;
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all .3s;
}
.hamburger-button span:nth-of-type(1) {
    top: -10px;
}
.hamburger-button.js-open span:nth-of-type(1) {
    top: 0;
    width: 30px;
    transform: rotate(45deg);
}
.hamburger-button span:nth-of-type(2) {
    top: 0;
    opacity: 1;
}
.hamburger-button.js-open span:nth-of-type(2) {
    opacity: 0;
}
.hamburger-button span:nth-of-type(3) {
    top: 10px;
}
.hamburger-button.js-open span:nth-of-type(3) {
    top: 0;
    width: 30px;
    transform: rotate(-45deg);
}
@media screen and (min-width: 1030px) {
    .hamburger-button {
        display: none;
    }
}

/*
 * mv
 */
.mv-wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.heading {
    position: absolute;
    bottom: 8px;
    left: 50%;
    z-index: 1;
    width: 100%;
    color: var(--white);
    font-weight: normal;
    font-size: 20px;
    line-height: 1.8;
    font-family: "dnp-shuei-nmincho-std", sans-serif;
    letter-spacing: 2px;
    text-align: center;
    transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
    .heading {
        bottom: 102px;
        font-size: 30px;
        line-height: 2;
        letter-spacing: 3px;
    }
}
.gradation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}
.gradation::after {
    display: block;
    width: 100%;
    height: 400px;
    padding: 208px 474px 102px;
    mix-blend-mode: multiply;
    background-image: linear-gradient(to top, #000, rgba(84, 84, 84, 0));
    content: '';
}
.mv-movie {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    z-index: -2;
}
.mv-movie video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
 * intro
 */
.intro-wrap {
    background: linear-gradient(to bottom, #000 0, #000 90%, #fff 90%, #fff 100%);
}
@media screen and (min-width: 768px) {
    .intro-wrap {
        background: linear-gradient(to bottom, #000 0, #000 80%, #fff 80%, #fff 100%);
    }
}
.intro-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 960px;
    margin-inline: auto;
    padding-inline: 20px;
}
@media screen and (min-width: 768px) {
    .intro-inner {
        flex-direction: row;
        gap: 30px;
    }
}
.intro-text {
    margin-block: 4px 0;
    color: var(--white);
    font-size: 14px;
    line-height: 1.79;
}
@media screen and (min-width: 500px) and (max-width: 872px) {
    .intro-text {
        font-size: 14px;
        line-height: 2.25;
    }
}
@media screen and (min-width: 873px) {
    .intro-text {
        margin-block: 100px 0;
        font-size: 16px;
        line-height: 2.25;
    }
}

.intro-image {
    width: 100%;
    max-width: 370px;
    margin-inline: auto;
}
@media screen and (min-width: 768px) {
    .intro-image {
        margin-inline: auto;
    }
}

/*
 * outdoor
 */
.outdoor-wrap {
    padding: 80px 20px 100px;
    background: linear-gradient(to bottom, #fff 0%, #fff 10%, #f2faff 10%, #f2faff 100%);
}
@media screen and (min-width: 768px) {
    .outdoor-wrap {
        padding: 100px 20px;
    }
}
.outdoor-sub-heading {
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.79;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .outdoor-sub-heading {
        margin-block-end: 27px;
        font-size: 20px;
        line-height: 1.55;
    }
}
.outdoor-section-hero {
    margin-block-end: 32px;
}
@media screen and (min-width: 768px) {
    .outdoor-section-hero {
        margin-block-end: 85px;
    }
}
.outdoor-sauna-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-block-end: 40px;
}
@media screen and (min-width: 768px) {
    .outdoor-sauna-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
.outdoor-sauna-list-item figcaption {
    margin-block-start: 15px;
    text-align: left;
}
.outdoor-banner-wrap {
    max-width: 465px;
    margin-inline: auto;
}

/*
 * barrel-sauna
 */
.barrel-sauna-wrap {
    padding: 72px 20px 80px;
}
@media screen and (min-width: 768px) {
    .barrel-sauna-wrap {
        padding-block: 83px;
    }
    .barrel-sauna-wrap h2 {
        margin-block-end: 26px;
    }
}
.barrel-sauna-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block-end: 40px;
}
@media screen and (min-width: 768px) {
    .barrel-sauna-list {
        flex-direction: row;
        gap: 26px;
    }
}
.barrel-sauna-img-wrap {
    position: relative;
}
.barrel-sauna-label {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 10px;
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
}
@media screen and (min-width: 768px) {
    .barrel-sauna-label {
        font-size: 14px;
    }
}
.sauna-spec-heading {
    margin-block-end: 22px;
    color: var(--navy);
    font-weight: 400;
    font-size: 20px;
    font-family: freight-neo-pro, sans-serif;
    letter-spacing: 3px;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .sauna-spec-heading {
        margin-block-end: 30px;
        font-size: 30px;
        letter-spacing: 3px;
    }
}
.sauna-spec-wrap {
    padding: 30px 24px;
    border: 2px solid var(--navy);
}
@media screen and (min-width: 768px) {
    .sauna-spec-wrap {
        padding: 25px 40px 30px;
    }
}
.spec-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 25px;
}
@media screen and (min-width: 768px) {
    .spec-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/*
 * flow
 */
.flow-wrap {
    padding: 0 20px 80px;
}
.flow-sauna-type-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
@media screen and (min-width: 768px) {
    .flow-sauna-type-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 35px 20px;
    }
}
.sauna-type-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}
@media screen and (min-width: 768px) {
    .sauna-type-list {
        gap: 20px;
    }
}
.sauna-type-list-item {
    width: 47%;
}
@media screen and (min-width: 768px) {
    .sauna-type-list-item {
        width: 100%;
        max-width: 225px;
    }
}
.sauna-type-category {
    margin-block-end: 20px;
    padding: 7px 10px;
    background: var(--navy);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    .sauna-type-category {
        padding: 6px 10px;
    }
}
.flow-list {
    display: grid;
    grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
    .flow-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr) 28.5%;
        width: calc(100% - 20px);
    }
}
.flow-list-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    height: fit-content;
    padding: 25px 0 25px 16vw;
}
.flow-list-item:not(:nth-of-type(1)) {
    padding: 46px 0 25px 16vw;
}
@media screen and (min-width: 768px) {
    .flow-list-item {
        justify-content: flex-start;
        flex-direction: column;
        height: 200px;
        padding: 30px 30px 0;
    }
    .flow-list-item:not(:nth-of-type(1)) {
        padding: 30px 25px 0 30px;
    }
}
.flow-list-item::after {
    position: absolute;
    right: 0;
    bottom: -20px;
    display: block;
    z-index: 2;
    width: 100%;
    height: 20px;
    border-style: solid;
    border-width: 20px 45vw 0 45vw;
    content: '';
}
@media screen and (min-width: 768px) {
    .flow-list-item::after {
        right: -20px;
        bottom: 0;
        width: 20px;
        border-width: 100px 0 100px 20px;
    }
}
.flow-list-item:nth-of-type(1) {
    background: #1d2a40;
}
.flow-list-item:nth-of-type(1)::after {
    border-color: #1d2a40 transparent transparent transparent;
}
@media screen and (min-width: 768px) {
    .flow-list-item:nth-of-type(1)::after {
        border-color: transparent transparent transparent #1d2a40;
    }
}
.flow-list-item:nth-of-type(2) {
    background: #38486d;
}
.flow-list-item:nth-of-type(2)::after {
    border-color: #38486d transparent transparent transparent;
}
@media screen and (min-width: 768px) {
    .flow-list-item:nth-of-type(2)::after {
        border-color: transparent transparent transparent #38486d;
    }
}
.flow-list-item:nth-of-type(3) {
    background: #566da1;
}
.flow-list-item:nth-of-type(3)::after {
    border-color: #566da1 transparent transparent transparent;
}
@media screen and (min-width: 768px) {
    .flow-list-item:nth-of-type(3)::after {
        border-color: transparent transparent transparent #566da1;
    }
}
.flow-list-item:nth-of-type(4) {
    background: #6083bf;
}
.flow-list-item:nth-of-type(4)::after {
    border-color: #6083bf transparent transparent transparent;
}
@media screen and (min-width: 768px) {
    .flow-list-item:nth-of-type(4)::after {
        border-color: transparent transparent transparent #6083bf;
    }
}
.flow-list-item div {
    color: var(--white);
    font-weight: 600;
    font-size: 50px;
    font-style: italic;
    line-height: 1;
    font-family: dashiell-text, serif;
    text-align: center;
}
.flow-list-item p {
    margin-block: 0;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.71;
}
@media screen and (min-width: 768px) {
    .flow-list-item p {
        line-height: 1.57;
        text-align: center;
    }
}

/*
 * how-to
 */
.how-to-step-wrap {
    padding: 0 20px 80px;
}
.how-to-step-list {
    max-width: 550px;
    margin-inline: auto;
    list-style: none inside;
}
.how-to-step-list.bg-illust {
    background: url("./images/bg-01.webp") no-repeat top right / 28% auto;
}
@media screen and (min-width: 768px) {
    .how-to-step-list.bg-illust {
        background-position: top right 30px;
        background-size: 200px auto;
    }
}
.how-to-step-list-item {
    margin-block-end: 23px;
    color: var(--navy);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.63;
    counter-increment: number;
}
.how-to-step-list-item::before {
    display: inline-block;
    margin-inline-end: 10px;
    font-size: 40px;
    font-style: italic;
    line-height: 1;
    font-family: dashiell-text, serif;
    content: counter(number)".";
}
@media screen and (min-width: 768px) {
    .how-to-step-list-item {
        margin-block-end: 44px;
        font-size: 20px;
        line-height: 1.3;
    }
    .how-to-step-list-item::before {
        margin-inline-end: 20px;
        font-size: 50px;
    }
}
.how-to-step-list-item .layout-flex {
    display: flex;
    gap: 16px;
}
.how-to-step-list-item .layout-flex p {
    width: 58vw;
}
@media screen and (min-width: 768px) {
    .how-to-step-list-item .layout-flex {
        gap: 30px;
    }
    .how-to-step-list-item .layout-flex p {
        max-width: 261px;
    }
}
.how-to-step-text-bold {
    margin-block: 14px 5px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.79;
}
@media screen and (min-width: 768px) {
    .how-to-step-text-bold {
        margin-block: 12px 10px;
        font-size: 16px;
        line-height: 1.63;
    }
}
.how-to-step-text {
    margin-block: 0;
    color: var(--navy);
    font-weight: 500;
    font-size: 13px;
    line-height: 1.77;
}
@media screen and (min-width: 768px) {
    .how-to-step-text {
        font-size: 14px;
        line-height: 1.71;
    }
    .how-to-step-text-bold,
    .how-to-step-text {
        padding-inline-start: 60px;
    }
}
.how-to-sauna-image-wrap {
    width: 27vw;
    min-width: 101px;
}
@media screen and (min-width: 768px) {
    .how-to-sauna-image-wrap {
        width: 100%;
        max-width: 200px;
    }
}
.how-to-step-detail {
    width: 58vw;
}
@media screen and (min-width: 768px) {
    .how-to-step-detail {
        width: auto;
    }
}
.how-to-step-last-word {
    color: var(--navy);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.94;
    text-align: center;
}
.how-to-step-last-word .point-text {
    font-size: 32px;
}
@media screen and (min-width: 768px) {
    .how-to-step-last-word {
        font-size: 20px;
        line-height: 1.55;
    }
    .how-to-step-last-word .point-text {
        font-size: 30px;
    }
}

/*
 * gallery
 */
.gallery-wrap {
    padding-block-end: 80px;
}
@media screen and (min-width: 768px) {
    .gallery-wrap {
        padding-block-end: 84px;
    }
}
.swiper-wrapper {
    transition-timing-function: linear;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}
.swiper-button-next::before,
.swiper-button-prev::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--white);
    border-right: 3px solid var(--white);
}
.swiper-button-next::before {
    transform: rotate(45deg);
}
.swiper-button-prev::before{
    transform: rotate(-135deg);
}

/*
 * spotify
 */
.spotify-wrap {
    padding: 0 20px 80px;
}
@media screen and (min-width: 768px) {
    .spotify-wrap {
        padding: 0 20px 84px;
    }
}
.spotify {
    max-width: 550px;
    margin-inline: auto;
}

/*
 * attention
 */
.attention-wrap {
    padding: 0 20px 80px;
}
@media screen and (min-width: 768px) {
    .attention-wrap {
        padding-block-end: 84px;
    }
}
.attention-contents-wrap {
    padding: 40px 24px;
    border: solid 2px var(--navy);
}
@media screen and (min-width: 768px) {
    .attention-contents-wrap {
        padding: 40px 20px;
    }
}
.attention-contents-text {
    color: var(--navy);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
}
.attention-contents-text a {
    color: var(--navy);
}
@media screen and (min-width: 768px) {
    .attention-contents-text {
        font-size: 20px;
        line-height: 2;
    }
}

/*
 * q&a
 */
.qa-wrap {
    padding: 0 20px 80px;
}
@media screen and (min-width: 768px) {
    .qa-wrap {
        padding-block-end: 84px;
    }
}
.qa-content {
    margin-block-end: 16px;
}
.qa-content:last-of-type {
    margin-block-end: 0;
}
@media screen and (min-width: 768px) {
    .qa-content {
        margin-block-end: 20px;
    }
}
.question-box {
    position: relative;
    padding: 24px;
    background: var(--navy);
}
@media screen and (min-width: 768px) {
    .question-box {
        padding: 30px;
        cursor: pointer;
    }
}
.qa-switch-border {
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--white);
}
.qa-switch-border:nth-of-type(2) {
    transform: rotate(90deg);
    opacity: 1;
    transition: all .2s;
}
.qa-switch-border:nth-of-type(2).active {
    opacity: 0;
}
.answer-box {
    display: none;
    padding: 0 24px 24px;
    background: var(--navy);
}
@media screen and (min-width: 768px) {
    .answer-box {
        padding: 0 30px 30px;
    }
}
.question-text {
    margin: 0;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.86;
    width: 90%;
}
@media screen and (min-width: 768px) {
    .question-text {
        width: 100%;
        font-size: 16px;
        line-height: 1.63;
    }
}
.question-text::before {
    content: "Q.";
}
.answer-text {
    margin: 0;
    color: var(--white);
    font-size: 13px;
    line-height: 1.77;
    width: 90%;
}
@media screen and (min-width: 768px) {
    .answer-text {
        width: 100%;
        font-size: 14px;
        line-height: 1.71;
    }
}
.answer-text::before {
    content: "A.";
}

/*
 * enjoy-plus
 */
.enjoy-plus-wrap {
    padding: 0 20px 80px;
}
@media screen and (min-width: 768px) {
    .enjoy-plus-wrap {
        padding-block-end: 84px;
    }
}
.enjoy-plus-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 15px;
}
@media screen and (min-width: 768px) {
    .enjoy-plus-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
.enjoy-plus-name {
    margin-block: 14px 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
@media screen and (min-width: 768px) {
    .enjoy-plus-name {
        margin-block: 17px 10px;
        font-size: 16px;
    }
}
.enjoy-plus-description {
    margin-block: 0;
    color: var(--navy);
    font-size: 13px;
    line-height: 1.77;
}
@media screen and (min-width: 768px) {
    .enjoy-plus-description {
        font-size: 14px;
        line-height: 1.71;
    }
}

/*
 * access
 */
.access-wrap {
    padding: 80px 20px;
    background: var(--navy);
}
@media screen and (min-width: 768px){
    .access-wrap {
        padding-block: 84px 100px;
    }
}
.access-wrap h2 {
    color: var(--white);
}
.access-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-block-end: 60px;
}
@media screen and (min-width: 768px) {
    .access-block {
        align-items: center;
        flex-direction: row;
        gap: 30px;
    }
}
.map-wrap {
    width: 100%;
    height: 216px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
}
@media screen and (min-width: 768px) {
    .map-wrap {
        width: 465px;
        height: 300px;
    }
}
.access-data {
    display: flex;
    align-items: center;
    gap: 33px;
    margin-block: 0 14px;
}
.access-data:last-of-type {
    margin-block-end: 0;
}
.access-data dt,
.access-data dd {
    color: var(--white);
    font-size: 13px;
}
@media screen and (min-width: 768px) {
    .access-data {
        margin-block-end: 22px;
    }
    .access-data dt,
    .access-data dd {
        font-size: 16px;
    }
}
.access-data dt {
    position: relative;
    width: 4em;
}
.access-data dt::after {
    position: absolute;
    top: 50%;
    right: -17px;
    display: inline-block;
    width: 1px;
    height: 13px;
    background: var(--white);
    transform: translateY(-50%);
    content: '';
}
@media screen and (min-width: 768px) {
    .access-data dt::after {
        height: 16px;
    }
}
.access-data dd {
    margin-inline-start: 0;
}
.button-wrap {
    margin-block-end: 27px;
}
@media screen and (min-width: 768px) {
    .button-wrap {
        margin-block-end: 40px;
        width: 422px;
        margin-inline: auto;
    }
}
.contact-link-wrap {
    text-align: center;
}
.contact-link {
    padding-block-end: 5px;
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 768px) {
    .contact-link {
        padding-block-end: 7px;
        color: var(--white);
        font-size: 16px;
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/*
 * footer
 */
.footer-wrap {
    padding-block: 40px;
}
@media screen and (min-width: 768px) {
    .footer-wrap {
        padding-block: 60px;
    }
}
.footer-logo {
    width: 192px;
    height: 50px;
    margin: 0 auto 24px;
}
@media screen and (min-width: 768px) {
    .footer-logo {
        width: 231px;
        height: 60px;
        margin-block-end: 25px;
    }
}
.footer-address {
    margin-block-end: 24px;
    color: var(--block);
    font-size: 13px;
    line-height: 1.77;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .footer-address {
        margin-block-end: 23px;
        font-size: 14px;
    }
}
.copyright {
    margin-block: 0;
    font-size: 11px;
    text-align: center;
    color: #a3a3a3;
}