/*---------------common-----------------*/
/*text*/
body {
    color: #333;
    font-size: 14px;
    font-weight: normal;
    font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    margin: 0;
    padding: 0;
}


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .brand, a, .td-name, td, button, input, select, textarea {
    font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 300;
}

h1 {
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
}

h2 {
    font-size: 2rem;
    margin: 0;
    letter-spacing: .06rem;
}

p.sp {
    display: inline;
}

br.pc {
    display: block;
}

br.sp {
    display: none;
}

.ad_01 {
    animation-delay: .1s;
}

.ad_02 {
    animation-delay: .2s;
}

.ad_03 {
    animation-delay: .3s;
}

.ad_04 {
    animation-delay: .4s;
}

.ad_05 {
    animation-delay: .5s;
}

.ad_06 {
    animation-delay: .6s;
}

.slick_arrow_back {
    position: absolute;
    top: calc(50% - 2rem);
    left: 1rem;
    z-index: 100;
    cursor: pointer;
    color: rgba(255,255,255,.8);
    font-size: 3rem;
    line-height: 3rem;
}

.slick_arrow_forward {
    position: absolute;
    top: calc(50% - 2rem);
    right: 1rem;
    z-index: 100;
    cursor: pointer;
    color: rgba(255,255,255,.8);
    font-size: 3rem;
    line-height: 3rem;
}

.slick-prev,.slick-next {
    width: 30px;
    height: 30px;
}

.slick-prev:before,.slick-next:before {
    font-size: 30px;
}

.slick-slide {
    height: inherit;
    min-height: 1px;
}

header {
    background: rgba(255,255,255,.9);
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 6px 10px rgba(186,187,187,.2)
}

header a {
    color: inherit;
    vertical-align: middle;

}

p.txt_header {
    display: inline;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: bold;
    letter-spacing: .1rem;
    color: #111;
    padding-left: 1rem;
}

.box_top_txt {
    position: relative;
}

.box_btn_header {
    padding-right: 1rem;
}

.btn_kramae {
    margin-right: 1rem;
}

header .btn_rsv {
    background: #0E778B;
    box-sizing: border-box;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: .1rem;
    padding: .8rem 1rem;
    min-width: 200px;
    transition: .2s;
    color: #fff;
    cursor: pointer;
    letter-spacing: .08rem;
}

a.line_scroll {
    height: 60px;
    overflow: hidden;
    position: absolute;
    margin: 0 auto;
    bottom: -1rem;
    left: 0;
    right: 0;
    display: block;
    width: 40px;
}

a.line_scroll:after{
    content: "";
    display: block;
    width: 2px;
    border-left: 2px solid #fff;
    animation: scroll 2s ease 0s infinite normal;
    margin: 0 auto 0;
}

@keyframes scroll{
    0%{
        height: 0;
    }
    50%{
        height: 150px;
        margin-top: 0;
    }
    100%{
        margin-top: 150px;
        height: 150px;
    }
}


/*---------------top-----------------*/
#top {
    background: url(../img/img_top.jpg) no-repeat center center;
    background-size: cover;
    height: 96vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.box_top_title {
    margin-top: 0;
}


#top .box_top_title h1 {
    font-size: 1.4rem;
    font-weight: bold;
}

#top .box_top_title h2 {
    font-family: 'PT Sans', sans-serif;
    font-size: 4rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: .4rem;
    margin: 0 0 1.8rem;
}

#top .box_top_title .btn_rsv {
    border: 3px solid #fff;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: .1rem;
    padding: .8rem 1.8rem;
}

.btn_base {
    transition: .3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.btn_base:before {
    content: '';
    background: #0E778B;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(-102%);
    z-index: 0;
    transition: .3s ease-in-out;
    z-index: -10;
}

.btn_base:hover {
    transition: .3s ease-in-out;
}

.btn_base:hover:before {
    transform: translateX(0);
    transition: .3s ease-in-out;
}

.btn_base_top {
    transition: .3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.btn_base_top:before {
    content: '';
    background: #333;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateX(-102%);
    z-index: 0;
    transition: .3s ease-in-out;
    z-index: -10;
}

.btn_base_top:hover {
    transition: .3s ease-in-out;
}

.btn_base_top:hover:before {
    transform: translateX(0);
    transition: .3s ease-in-out;
}



/*---------------concept-----------------*/
#main_01 {
    background: url(../img/bg_pattern_03.svg) repeat;
    background-size: 300px;
    padding: 3rem 0 6rem;
}

.box_card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 10px rgba(115, 159, 169, .2);
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

#concept .box_card {
    text-align: left;
}

.box_concept {
    display: flex;
    margin-bottom: 4rem;
}

.img_concept {
    flex: 1;
    background: url(../img/img_message.jpg) no-repeat center center;
    background-size: cover;
    min-height: 500px;
    margin: 0;
}

.box_concept_text {
    flex: 1;
    padding-left: 3rem;
}

h2.title_underline {
    display: inline-block;
    font-family: 'PT Sans', sans-serif;
    font-style: italic;
    font-weight: bold;
    letter-spacing: .1rem;
    position: relative;
    margin-bottom: 1rem;
    z-index: 10;
}

h2.title_underline:before {
    content: '';
    background: #B9E9F2;
    height: 1rem;
    transform: skew(-20deg);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -10;
}

.box_concept_text p {
    line-height: 2;
}

span.txt_pt {
    font-family: 'PT Sans', sans-serif;
    font-style: italic;
    letter-spacing: .04rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/*---------------service-----------------*/
.box_service {
    text-align: center;
}

.container_service {
    margin: 0;
}

ul.list_service {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    align-items: flex-start;
}

ul.list_service li {
    padding: 1rem;
    display: inline-block;
    width: 50%;
    text-align: center;
    vertical-align: top;
}

.box_service_title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
}

.box_service_title img {
    margin: 0 0 1rem -1rem;
}

.ic_service {
    border-radius: 100%;
    width: 80px;
}

.ic_wi-fi {
    background: #B9E9F2;
}

.ic_stay {
    background: #CFEFCF;
}

.ic_charge {
    background: #F3F0AC;
}

.ic_shower {
    background: #DADCFC;
}

.ic_coffee {
    background: #E3D4B3;
}

.ic_chat {
    background: #F3DDDD;
}

.service_cate {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .1rem;
    /* padding-left: 1rem; */
    margin: 0;
}

#sec_workspace {
    background: inherit;
    padding: 0;
}

.container_ws {
    text-align: left;
    margin-top: .6rem;
    padding: 0;
}

#sec_workspace .block_txt {
    background: none;
    padding: 0 1.2rem;
}

#sec_workspace .box_info_ws table .td_ws_info {
    display: block;
}

#sec_workspace td.td_info p a.link_lp {
    color: #0E778B;
}

#sec_workspace td.td_info p a.link_map {
    color: #fff;
    padding: 6px;
    border-radius: 2px;
    font-size: .8rem;
    background: #555;
    line-height: 2rem;
    margin-left: .4rem;
}

#sec_workspace td.td_info p {
    padding-bottom: 0;
    margin-bottom: .5rem;
    line-height: 1.7;
}

#sec_workspace td.td_info p.link_lp_box {
    margin-bottom: 0;
}


.slider {
  display: none;
}

.slider.slick-initialized {
    display: block;
}

#sec_workspace .slider .slick-slide {
    outline: none;
}

#sec_workspace .slick_arrow_forward {
    position: absolute;
    top: calc(50% - 1.5rem);
    right: 1rem;
}

#sec_workspace .slick_arrow_back {
    position: absolute;
    top: calc(50% - 1.5rem);
    left: 1rem;
}

/*---------------location-----------------*/
#main_02 {
    background: #F7F7F7;
    padding: 3rem 0 6rem;
}

#location {

}

#location .box_card {
    margin-top: -6rem;
}

#location h3 {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: bold;
    letter-spacing: .12rem;
    margin: .6rem 0;
}

#location h3 img {
    height: 40px;
    vertical-align: middle;
}

.hostel_container {
    display: flex;
}

.box_hostel {
    flex: 1;
    padding: 1rem 1.4rem;
    background: #F7F7F7;
    border: 2px solid #E7EFF0;
    border-radius: 10px;
    margin: 1rem;
    text-align: left;
}

p.name_hostel {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: .4rem;
    font-style: italic;
    font-weight: bold;
    letter-spacing: .06rem;
}

.box_img {
    position: relative;
}

img.img_hostel {
    margin-bottom: .4rem;
}

.txt_gray {
    color: #999;
}

.btn_overlay {
    background: #333;
    border: 2px solid #333;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: .06rem;
    padding: .4rem .4rem .4rem .8rem;
    margin: 0 1rem;
    transition: .2s;
    position: absolute;
    bottom: 1.2rem;
    right: -.6rem;
}

.btn_overlay:hover {
    background: #0E778B;
    border: 2px solid #333;
    box-sizing: border-box;
}

.btn_overlay img.ic_overlay {
    display: inline-block;
    width: 30px;
    vertical-align: middle;
    margin-top: -.1rem;
}

.overlay_black {
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.overlay_inner {
    background: #fff;
    max-width: 1200px;
    padding: 0;
    border-radius: 10px;
    position: relative;
}

.box_img_flex {
    display: flex;
}

.overlay_inner img.img_overlay {
    flex: 1;
    width: 480px;
    padding: 1rem;
}

.btn_overlay, .btn_close {
    cursor: pointer;
    outline: none;
}

.btn_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: none;
    border: none;
}

.txt_overlay {
    display: none;
}

.overlay_inner a.line_scroll {
    display: none;
}

.is-hide {
    display: none;
}

.box_address {
    min-height: 140px;
}

.txt_facility {
    margin-top: -.4rem;
}

.txt_facility p {
    line-height: 1.6;
}

.box_btn {
    display: flex;
    margin: 0 -1rem;
}

.box_btn a {
    flex: 1;
    box-sizing: border-box;
    display: inline-block;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    letter-spacing: .06rem;
    padding: .6rem;
    margin: 0 1rem;
    transition: .2s;
}

a.btn_map {
    background: #333;
    border: 2px solid #333;
    color: #fff;
}

a.btn_map:hover {
    color: #fff;
}

a.btn_lp {
    background: #fff;
    border: 2px solid #333;
    color: #333;
}

a.btn_lp:hover {
    color: #fff;
}

.box_empty {
    background: url(../img/bg_pattern_01.svg) repeat;
    background-size: 300px;
    border: 2px solid #E7EFF0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.box_empty p {
    color: #999;
    font-family: 'PT Sans', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    letter-spacing: .1rem;
}

/*---------------qa-----------------*/
#main_03 {
    background: url(../img/bg_pattern_02.svg) repeat;
    background-size: 300px;
    padding: 3rem 0;
}

#main_03 .title_underline {
    font-size: 1.4rem;
    font-style: inherit;
    margin-bottom: 2rem;
    letter-spacing: .12rem;
}

.container_step {
    display: flex;
    margin: 0 -1rem;
}

#qa .box_card {
    margin-top: -6rem;
}

.box_step {
    flex: 1;
    text-align: left;
    margin: 0 1rem;
}

.box_num_txt p {
    display: inline-block;
    font-weight: bold;
}

p.number {
    background: #B9E9F2;
    color: #fff;
    font-size: 20px;
    font-family: 'PT Sans', sans-serif;
    font-weight: bold;
    text-align: center;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    line-height: 2;
    vertical-align: i   nitial;
    margin: 0 .4rem 0 0;
}

.stc_step a {
    color: #0E778B;
}

.stc_step a:hover,
.stc_step a:active,
.stc_step a:focus {
    opacity: .5;
    transition: .2s;
}

#qa .box_qa {
    margin-top: 3rem;
}

.box_qa td {
    vertical-align: initial;
}

tr.line_question p {
    color: #0E778B;
}

.box_qa td a {
    color: #0E778B;
}

#qa table {
    text-align: left;
}

/*---------------form-----------------*/
.container_form {
    display: flex;
}

.box_qa_tab {
    flex: 2;
}

#frame {
    flex: 3;
}

.box_qa_tab p {
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
}

.box_qa_tab p a {
    color: #0E778B;;
}

.box_qa_tab *, .box_qa_tab *:after, .box_qa_tab *:before {
    box-sizing: border-box;
}

.box_qa_tab {
    overflow-x: hidden;
    margin: 0 auto;
    color: #333;
    padding: 1rem 0 0 .6rem;
}

.box_qa_tab .tab_qa {
    padding: 0;
    border-bottom: 1px dotted #ccc;
    text-align: left;
    margin-bottom: 1rem;
    position: relative;
}

.box_qa_tab label {
    font-size: 1.2em;
    display: inline-block;
    padding: 0;
    cursor: pointer;
    width: 100%;
    z-index: 10;
}

.box_qa_tab .cp_plus {
    font-size: 1.4rem;
    display: inline-block;
    margin: 0;
    transition: 0.2s;
    font-weight: bold;
    float: right;
    line-height: 1;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.box_qa_tab .tab_answer {
    color: #666;
    font-size: 1em;
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    padding: .4rem 0 0;
    transition: 0.3s;
    opacity: 0;
}

.box_qa_tab .tab_qa input[type=checkbox]:checked ~ .tab_answer {
    height: auto;
    padding: .4rem 0 .6rem;
    opacity: 1;
    margin: 0;
}

.box_qa_tab .tab_qa input[type=checkbox]:checked ~ label .cp_plus {
    transform: rotate(45deg);
}

.box_qa_tab .tab_qa input[type=checkbox] {
  display: none;
}

/*---------------footer-----------------*/
.box_sns {
    padding: 0;
    line-height: 1;
}

.box_sns li {
    margin: 0 1rem;
}


@media (max-width: 992px) {
    /*---------------common-----------------*/
    br.pc {
        display: none;
    }

    br.sp {
        display: block;
    }

    .box_card {
        max-width: 800px;
    }

    header {
        height: 40px;
    }

    .box_btn_header {
        position: fixed;
        bottom: 0;
        background: #fff;
        width: 100%;
        padding: 10px 0 0;
    }

    header .btn_rsv {
        display: flex;
        justify-content: center;
        margin: 0 10px 10px;
        font-size: .9rem;
        font-weight: bold;
    }

    /*---------------concept-----------------*/
    .box_concept_text p {
        text-align: center;
    }

    /*---------------service-----------------*/
    .list_service {
        display: flex;
        flex-direction: column;
    }

    ul.list_service li {
        width: 40%;
    }

    .container_ws {
        flex-direction: column;
        padding: 0;
    }

    #sec_workspace .block_img {
        margin: .4rem 0 1.4rem;
    }

    #sec_workspace td.td_info {
        padding: 0;
    }

    #sec_workspace td.td_cate p {
        margin: 0;
    }

    #sec_workspace .block_txt {
        padding: 0;
    }

    .box_service_title {

    }

    /*---------------location-----------------*/
    .hostel_container {
        flex-direction: column;
    }

    .box_hostel {
        padding: 1rem;
        margin: .4rem 0;
    }

    p.name_hostel {
        font-size: 1rem;
        margin-bottom: .2rem;
        letter-spacing: .02rem;
    }

    .btn_overlay {
        letter-spacing: .06rem;
        margin: 0 1rem -0.2rem;
    }

    .box_btn {
        flex-direction: column;
    }

    .box_address {
        min-height: inherit;
    }

    a.btn_map {
        margin: .6rem 1rem 1rem;
    }

    .box_empty p {
        font-size: 1.2rem;
        letter-spacing: .06rem;
        margin: 2rem 0;
    }

    .overlay_inner {
        max-width: inherit;
        padding: 0.6rem;
        width: 80vw;
        height: 66vh;
        overflow: scroll;
        max-width: inherit;
        padding: 1rem;
        margin-top: 2rem;
    }

    .box_img_flex {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .overlay_inner img.img_overlay {
        width: 100%;
        padding: 0 0 .6rem;
    }

    .btn_close {
        position: fixed;
        top: 0;
        right: -5px;
        width: 70px;
        height: 70px;
    }

    .txt_overlay {
        display: block;
        position: fixed;
        bottom: 110px;
        right: 10px;
        transform: rotate(-90deg);
        font-weight: bold;
        color: #fff;
    }

    .overlay_inner a.line_scroll {
        height: 60px;
        overflow: hidden;
        position: absolute;
        margin: 0 auto;
        bottom: -1.2rem;
        left: -7.5rem;
        right: 0;
        display: block;
        width: 40px;
        transform: rotate(90deg);
    }

    .overlay_inner a.line_scroll:after {
        content: "";
        display: block;
        width: 2px;
        border-left: 2px solid #fff;
        animation: scroll 2s ease 0s infinite normal;
        margin: 0 auto 0;
    }

    /*---------------form-----------------*/
    .container_form {
        flex-direction: column-reverse;
    }

}


@media (max-width: 767px) {
    /*---------------common-----------------*/
    h2 {
        font-size: 1.6rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: .5rem;
        line-height: 1.7;
    }

    p.sp {
        display: none;
    }

    .box_card {
        box-shadow: 0 4px 8px rgba(115, 159, 169, .2);
        max-width: 100%;
        padding: 1rem;
    }

    #sec_workspace .slick_arrow_back {
        position: absolute;
        top: calc(50% - 2rem);
    }

    #sec_workspace .slick_arrow_forward {
        position: absolute;
        top: calc(50% - 2rem);
    }
    /*---------------top-----------------*/
    #top {
        height: 80vh;
    }

    .box_top_title {
        margin-top: -1rem;
    }

    #top .box_top_title h1 {
        font-size: 1rem;
        margin: 0;
        letter-spacing: .12rem;
    }

    #top .box_top_title h2 {
        font-family: 'PT Sans', sans-serif;
        font-size: 2rem;
        font-weight: 900;
        font-style: italic;
        letter-spacing: .2rem;
        margin: 0 0 1.2rem;
    }

    p.txt_header {
        font-size: 1rem;
        letter-spacing: .04rem;
        line-height: 3.2;
        margin: 0 0 0 .4rem;
    }

    #top .box_top_title .btn_rsv {
        font-size: 1.1rem;
        padding: .5rem;
        width: 90%;
    }
    /*---------------concept-----------------*/
    #main_01 {
        background: url(../img/bg_pattern_03.svg) repeat;
        background-size: 200px;
        padding: 1rem 1rem 6rem;
    }

    .box_concept {
        display: flex;
        margin-bottom: 3rem;
        flex-direction: column;
    }

    h2.title_underline {
        font-size: 1.4rem;
        letter-spacing: .08rem;
    }

    .box_concept_text {
        padding-left: 0;
    }

    #concept .box_card {
        text-align: center;
    }

    .img_concept {
        min-height: 200px;
        width: 100%;
        margin-bottom: 1rem;
    }

    .box_concept_text p {
        line-height: 1.7;
    }

    ul.list_service {
        padding: 0;
        margin: 0;
    }

    ul.list_service li {
        padding: 0;
        display: block;
        width: auto;
    }

    .ic_service {
        width: 40px;
    }

    .box_service_title img {
        margin: 0 0 .4rem;
    }

    .service_cate {
        font-size: 1.2rem;
        letter-spacing: .08rem;
        padding-left: 0;
        margin: 0 0 .2rem;
    }

    #sec_workspace .block_txt {
        padding: 0;
        margin: 0;
    }

    /*---------------location-----------------*/
    #main_02 {
        background: #F7F7F7;
        padding: 3rem 1rem 6rem;
    }

    #location h3 {
        font-size: 1.2rem;
        letter-spacing: .1rem;
        margin: 0px;
    }

    #location h3 img {
        height: 30px;
    }

    .btn_overlay {
        padding: 0rem;
    }

    .txt_overlay {
        color: #333;
    }

/*    .txt_overlay {
        position: fixed;
        bottom: 50vh;
        color: #333;
        right: 0;
        left: 0;
        margin: 0 auto;
        }*/

/*    .overlay_inner a.line_scroll {
        position: absolute;
        margin: 0 auto;
        bottom: -1.2rem;
        left: -25rem;
        right: 0;
    }
    */
    .overlay_inner a.line_scroll:after {
        border-left: 2px solid #333;
    }

    /*---------------step-----------------*/
    .box_step {
        text-align: center;
    }

    /*---------------qa-----------------*/
    #main_03 {
        background: url(../img/bg_pattern_02.svg) repeat;
        background-size: 200px;
        padding: 3rem 1rem;
    }

    #main_03 .title_underline {
        margin-bottom: 1rem;
        letter-spacing: .12rem;
        font-size: 1.1rem;
        letter-spacing: .08rem;
    }

    .container_step {
        display: flex;
        margin: 0 -1rem;
        flex-direction: column;
    }

    p.number {
        font-size: 20px;
        width: 30px;
        height: 30px;
        border-radius: 20px;
        line-height: 1.5;
    }

    .box_qa_tab p {
        font-size: 1rem;
    }

    /*---------------form-----------------*/
    .box_qa_tab p {
        width: 90%;
    }

    .box_qa_tab {
        flex: 1;
        padding: 0;
    }

    #frame {
        flex: 1;
    }

    /*---------------footer-----------------*/
    .box_share {
        display: initial;
    }

    .box_share li {
        margin: 1rem;
    }
}
