@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200&family=Hina+Mincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100&display=swap');
@font-face {
    font-family: 'sushiki';
    src: url('font/sushiki.ttf') format('truetype');
    }
@font-face {
    font-family: 'marukoi';
    src: url('font/marukoi.ttf') format('truetype');
    }

/* reset */
button{background:transparent;border:none;cursor:pointer;outline:none;padding:0;appearance:none;}ul{list-style-type:none;margin:0;padding:0;}li,p{margin: 0;}
/* reset */


body {
    background-image: url(../img/bg.jpg);
    background-size: cover;
    height:100%;
    font-family: 'Dosis', 'Hina Mincho', serif;
    min-height: 150vh;
    /* position: relative; */
    padding-bottom: 100px;
    box-sizing: border-box;
    animation-name:fadeInAnime;
    animation-duration: 3s;
    animation-fill-mode:forwards;
    opacity:0;
} 

/* 英語サイトへ（index） */

.ln-toen-index::after {
    content: "EN";
    position: absolute;
    top: 120px;
    left: calc(50% + 120px);
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: #fef4f4;
    text-align: center;
    padding: 3px 0 0;
    line-height: 1.5;
    font-size: 16px;
    font-weight: bold;
    color: #1f3134;
    letter-spacing: 1px;
    box-sizing: border-box;
    transition: opacity 1s;
}

.ln-toen-index {
    transition: opacity 1s;
}
.ln-toen-index:hover {
    opacity: 0.5;
}

/* 日本語サイトへ（index） */

.ln-tojp-index::after {
    content: "JP";
    position: absolute;
    top: 120px;
    left: calc(50% - 150px);
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50px;
    background: #eaf4fc;
    text-align: center;
    padding: 3px 0 0;
    line-height: 1.5;
    font-size: 16px;
    font-weight: bold;
    color: #203744;
    /* letter-spacing: 1px; */
    box-sizing: border-box;
    transition: opacity 1s;
}

.ln-tojp-index {
    transition: opacity 1s;
}
.ln-tojp-index:hover {
    opacity: 0.5;
}

/* 英語サイトへ（index以外） */

.ln-toen-other::after {
    content: "EN";
    position: absolute;
    top: 80px;
    left: calc(50% + 60px);
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50px;
    background: #fef4f4;
    text-align: center;
    padding: 3px 0 0;
    line-height: 1.1;
    font-size: 12px;
    font-weight: bold;
    color: #1f3134;
    /* letter-spacing: 1px; */
    box-sizing: border-box;
    transition: opacity 1s;
}

.ln-toen-other {
    transition: opacity 1s;
}
.ln-toen-other:hover {
    opacity: 0.5;
}

/* 日本語サイトへ（index以外） */

.ln-tojp-other::after {
    content: "JP";
    position: absolute;
    top: 80px;
    left: calc(50% - 80px);
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50px;
    background: #eaf4fc;
    text-align: center;
    padding: 3px 0 0;
    line-height: 1.1;
    font-size: 12px;
    font-weight: bold;
    color: #1f3134;
    /* letter-spacing: 1px; */
    box-sizing: border-box;
    transition: opacity 1s;
}

.ln-tojp-other {
    transition: opacity 1s;
}
.ln-tojp-other:hover {
    opacity: 0.5;
}

.particle {
    position: absolute;
    width: 100px;
    top: 0;
    left: 0;
    z-index: -999;
}

.top-header {
    height: 300px;
}

.top-header-contents {
    text-align: center;
    padding-top: 50px;
}

.top-header-img {
    width: 180px;
}

.top-header-text {
    color: #302833;
    padding-top: 20px;
    text-align: center;
    font-size: 15px;
    font-family: 'Dosis', 'Noto Sans JP', serif;
}


.lineup {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lineup button {
    color: #302833;
    cursor: default;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    font-family: 'Dosis', 'Hina Mincho', serif;
}

.lineup ul > li {
    text-align: center;
    /* 閉じている状態 */
    padding-top: 0;
    padding-bottom: 0;
    /* 閉じるアニメーション */
    transition:
    border-top     .5s ease-out,
    padding-top    .5s ease-out,
    padding-bottom .5s ease-out;
}

.lineup ul.is-open > li {
    /* 開いている状態 */
    padding-top: 13px;
    padding-bottom: 13px;
    /* 開くアニメーション */
    transition:
    border-top     .5s ease-out,
    padding-top    .5s ease-out,
    padding-bottom .5s ease-out;
}

.lineup ul > li > p {
    /* 閉じている状態 */
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    /* 閉じるアニメーション */
    transition:
    line-height .5s ease-out,
    opacity     .2s linear,
    visibility  .2s linear;
}

.lineup ul.is-open > li > p {
    /* 開いている状態 */
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    transition:
    line-height .5s ease-out,
    opacity     .2s linear .2s,
    visibility  .2s linear .2s;
}

.lineup p{
    text-align: center;
    font-size: 20px;
}

.lineup a{
    text-decoration: none;
    color:#165e83;
    transition: color 1s;
}

.lineup a:hover{
    color: #b9d08b;
}

.story {
    text-align: center;
    position: relative;
    z-index: 1;
}

.story button {
    color: #302833;
    cursor: default;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    font-family: 'Dosis', 'Hina Mincho', serif;
}

.story ul > li {
    text-align: center;
    /* 閉じている状態 */
    padding-top: 0;
    padding-bottom: 0;
    /* 閉じるアニメーション */
    transition:
    border-top     .8s ease-out,
    padding-top    .8s ease-out,
    padding-bottom .8s ease-out;
}

.story ul.is-open > li {
    /* 開いている状態 */
    padding-top: 13px;
    padding-bottom: 13px;
    /* 開くアニメーション */
    transition:
    border-top     .8s ease-out,
    padding-top    .8s ease-out,
    padding-bottom .8s ease-out;
}

.story ul > li > p {
    /* 閉じている状態 */
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    /* 閉じるアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .3s linear,
    visibility  .3s linear;
}

.story ul.is-open > li > p {
    /* 開いている状態 */
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .3s linear .3s,
    visibility  .3s linear .3s;
}

.story p{
    color: #43676b;
    text-align: center;
    font-size: 15px;
}

.aboutus {
    text-align: center;
    position: relative;
    z-index: 1;
}

.aboutus button {
    color: #302833;
    cursor: default;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    font-family: 'Dosis', 'Hina Mincho', serif;
}

.aboutus ul > li {
    text-align: center;
    /* 閉じている状態 */
    padding-top: 0;
    padding-bottom: 0;
    /* 閉じるアニメーション */
    transition:
    border-top     .5s ease-out,
    padding-top    .5s ease-out,
    padding-bottom .5s ease-out;
}

.aboutus ul.is-open > li {
    /* 開いている状態 */
    padding-top: 13px;
    padding-bottom: 13px;
    /* 開くアニメーション */
    transition:
    border-top     .7s ease-out,
    padding-top    .7s ease-out,
    padding-bottom .7s ease-out;
}

.aboutus ul > li > p {
    /* 閉じている状態 */
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    /* 閉じるアニメーション */
    transition:
    line-height .7s ease-out,
    opacity     .4s linear,
    visibility  .4s linear;
}

.aboutus ul.is-open > li > p {
    /* 開いている状態 */
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    transition:
    line-height .7s ease-out,
    opacity     .2s linear .2s,
    visibility  .2s linear .2s;
}

.aboutus p{
    color: #274a78;
    text-align: center;
    font-size: 15px;
}

.aboutus a{
    text-decoration: none;
    color:#007bbb;
    transition: opacity 1s;
}

.aboutus a:hover{
    opacity: 0.6;
}


/* 箱根板橋 */

.hakone-header {
    height: 160px;
}

.hakone-header-contents {
    text-align: center;
    padding-top: 50px;
}

.hakone-header-img {
    width: 70px;
}

.hakone-header-text {
    color: #302833;
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    font-family: 'Dosis', 'Noto Sans JP', serif;
}

/* トグルボタン */

.toggle-button {
    margin-bottom: 30px;
    z-index: 1;
}

.toggle {
    position: absolute;
    display: block;
    margin: auto;
    left: calc(50% - 40px);
    width: 40px;
    height: 24px;
    margin: 20px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.toggle input[type=checkbox] {
    display: none;
    z-index: 1;
}

.toggle:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: #a99e93;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}
.toggle:after {
    content: "1F";
    position: relative;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 50px;
    background: #fff;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    text-align: center;
    padding: 3px 0 0;
    line-height: 1;
    font-size: 14px;
    font-weight: bold;
    color: #856859;
    letter-spacing: .5px;
    box-sizing: border-box;
}
.toggle.checked:before {
    background: #a99e93;
}
.toggle.checked:after {
    content: "2F";
    left: 17.5px;
    box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
    color: #856859;
    padding: 3px 0 0 1px;
}

@keyframes SlideDown-In {
    0% {
    opacity: 0;
    transform: translateY(-20px);
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes SlideDown-Out {
    0% {
    opacity: 1;
    transform: translateY(0);
    }
    100% {
    opacity: 0;
    transform: translateY(20px);
    }
}

@keyframes SlideUp-In {
    0% {
    opacity: 0;
    transform: translateY(20px);
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes SlideUp-Out {
    0% {
    opacity: 1;
    transform: translateY(0);
    }
    100% {
    opacity: 0;
    transform: translateY(64px);
    }
}

/* 図面 */
.structure {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.structure h1{
    text-align: center;
    font-size: 20px;
}

.structure-img {
    position: relative;
    margin:auto;
    width: 400px;
    height: 350px;
} 
@media screen and (min-width:600px) {
    .structure-img {
    position: relative;
    margin:auto;
    width: 600px;
    height: 500px;
    }
}

.structure-img-2f img {
    margin-top: 50px;
    width: 280px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    /* 閉じるニメーション */
}
@media screen and (min-width:600px) {
.structure-img-2f img {
    margin-top: 50px;
    width: 420px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    /* 閉じるニメーション */
}
}

.structure-img-2f img.appear {
    position:absolute;
    top: 0px;
    left: 65px;
    margin-top: 50px;
    width: 280px;
    height: auto;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    animation: SlideDown-In 1s linear;
}
@media screen and (min-width:600px) {
.structure-img-2f img.appear {
    position:absolute;
    top: 0px;
    left: 65px;
    margin-top: 50px;
    width: 420px;
    height: auto;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    animation: SlideDown-In 1s linear;
}
}

.structure-img-1f img {
    position:absolute;
    top: 60px;
    left: 42px;
    width: 320px;
    height: auto;
        /* 開くアニメーション */
    /* 開くアニメーション */
    animation: SlideUp-In 1s linear;
}
@media screen and (min-width:600px) {
.structure-img-1f img {
    position:absolute;
    top: 60px;
    left: 42px;
    width: 480px;
    height: auto;
        /* 開くアニメーション */
    /* 開くアニメーション */
    animation: SlideUp-In 1s linear;
}
}

.structure-img-1f img.disappear {
    position:absolute;
    top: 60px;
    left: 50px;
    width: 320px;
    height: 0;
    visibility: hidden;
    opacity: 0;
        /* 閉じるアニメーション */
    animation: SlideDown-Out 1s linear;
}

@media screen and (min-width:600px) {
.structure-img-1f img.disappear {
    position:absolute;
    top: 60px;
    left: 50px;
    width: 480px;
    height: 0;
    visibility: hidden;
    opacity: 0;
        /* 閉じるアニメーション */
    animation: SlideDown-Out 1s linear;
}
}

/* 周辺情報 */
.around {
    text-align: center;
    z-index: 1;
}

.around h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}

.around a{
    color: #302833;
    text-decoration: none;
    transition: opacity 1s;
}

.around a:visited{
    color: #302833;
}

.around a:hover{
    opacity: 0.5;
}

/* 予約 */
.reservation {
    text-align: center;
    position: relative;
    z-index: 1;
}

.reservation h1{
    text-align: center;
    margin-top: 20px;
    font-size: 20px;

}

.reservation h2{
    font-size: 12pt;
    margin-top: -10px;
    margin-bottom: 10px;
}

.reservation a{
    color: #302833;
    text-decoration: none;
    transition: opacity 1s;
}

.reservation a:visited{
    color: #302833;
}

.reservation a:hover{
    opacity: 0.5;
}


/* ギャラリーメニュー */

.gallery-menu {
    text-align: center;
    z-index: 1;
}

.gallery-menu h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}

.gallery-menu a{
    color: #302833;
    text-decoration: none;
    transition: opacity 1s;
}

.gallery-menu a:visited{
    color: #302833;
}

.gallery-menu a:hover{
    opacity: 0.5;
}


.gallery{
    columns: 4;/*段組みの数*/
    padding:0 15px;/*ギャラリー左右に余白をつける*/
    margin:0;
    
    }
    
/* その場で */
.gallery{
    animation-name:fadeInAnime;
    animation-duration: 3s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
    from {
        opacity: 0;
    }
    
    to {
        opacity: 1;
    }
    }

    .gallery li {
        margin-bottom: 20px;/*各画像下に余白をつける*/
    list-style:none;
    }
    
    /*ギャラリー内のイメージは横幅100%にする*/
    .gallery img{
        width:100%;
        height:auto;
        filter: grayscale(80%); /* モノクロにする */
        transition: filter 2s;
        border-radius: 2px;
        vertical-align: bottom;/*画像の下にできる余白を削除*/
    }
    
    .gallery img:hover{
        filter: grayscale(0%)
    }

    /*　横幅900px以下の段組み設定　*/
    @media only screen and (max-width: 900px) {
        .gallery{
        columns:3;
        }	
    }
    
    @media only screen and (max-width: 768px) {
        .gallery{
        columns: 2;
        }	
    }




/* 問い合わせ */
.inquiry-menu {
    text-align: center;
    z-index: 1;
}

.inquiry-menu h1{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}

.inquiry-menu a{
    color: #302833;
    text-decoration: none;
    transition: opacity 1s;
}

.inquiry-menu a:visited{
    color: #302833;
}

.inquiry-menu a:hover{
    opacity: 0.5;
}



.inquiry {
    width: 300px;
    text-align: center;
    position: relative;
    margin: auto;
    z-index: 1;
}

.inquiry button {
    color: #302833;
    cursor: default;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
    font-family: 'Dosis', 'Hina Mincho', serif;
}

.inquiry ul > li {
    text-align: center;
    /* 閉じている状態 */
    padding-top: 0;
    padding-bottom: 0;
    /* 閉じるアニメーション */
    transition:
    border-top     .8s ease-out,
    padding-top    .8s ease-out,
    padding-bottom .8s ease-out;
}

.inquiry ul.is-open > li {
    /* 開いている状態 */
    padding-top: 13px;
    padding-bottom: 13px;
    /* 開くアニメーション */
    transition:
    border-top     .8s ease-out,
    padding-top    .8s ease-out,
    padding-bottom .8s ease-out;
}

.inquiry ul > li > p {
    /* 閉じている状態 */
    line-height: 0;
    opacity: 0;
    visibility: hidden;
    /* 閉じるアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .3s linear,
    visibility  .3s linear;
}

.inquiry ul.is-open > li > p {
    /* 開いている状態 */
    line-height: 1.5;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .3s linear .3s,
    visibility  .3s linear .3s;
}

.inquiry h2{
    font-weight: normal;
    text-align: center;
    font-size: 20px;
}

.inquiry p{
    text-align: left;
    font-size: 20px;
}

.inquiry a{
    color: #302833;
    text-decoration: none;
    transition: opacity 1s;
}

.inquiry a:visited{
    color: #302833;
}

.inquiry a:hover{
    opacity: 0.5;
}

.inquiry label {
    color: black;
    display: block;
    text-align: left;
}

#namelabel, #maillabel {
    width: 200px;
    display: block;
    padding: 5px;
    margin-top: 10px;
    font-size: 12pt ;
    font-family: 'Dosis', 'Hina Mincho', serif;
    border: none;
    border-radius: 0.5em;
    background-color: #fbfaf5;
}

.inquiry textarea {
    display: block;
    border: none;
    border-radius: 0.5em;
    padding: 5px;
    margin-top: 10px;
    font-size: 12pt ;
    font-family: 'Dosis', 'Hina Mincho', serif;
    background-color: #fbfaf5;
}

.inquiry-form p{
    padding-left: 5px;   
}

.item1,.item2,.item3,.item4  {
    padding-top: 10px;
    padding-bottom: 10px;
}

.item1,.item2,.item3,.item4 p{
    color: #005243;
}

.submit-button {
    display: block;
    width: 150px;
    height: 40px;
    padding: 5px;
    margin-top: 10px;
    font-size: 12pt ;
    font-family: 'Dosis', 'Hina Mincho', serif;
    border: none;
    border-radius: 0.5em;
    background-color: #d6c6af;
    transition: .5s;
}

.submit-button:hover {
    opacity: 0.5;
}

.buttons {
    padding-top: 20px;
}

.btn-back {
    display: inline-block;
    width: 130px;
    height: 40px;
    padding: 5px;
    margin-top: 10px;
    margin-right: 10px;
    font-size: 12pt ;
    font-family: 'Dosis', 'Hina Mincho', serif;
    border: none;
    border-radius: 0.5em;
    background-color: #f8f4e6;
    transition: .5s;
}

.btn-send {
    display: inline-block;
    width: 130px;
    height: 40px;
    padding: 5px;
    margin-top: 10px;
    margin-left: 10px;
    font-size: 12pt ;
    font-family: 'Dosis', 'Hina Mincho', serif;
    border: none;
    border-radius: 0.5em;
    background-color: #d6c6af;
    transition: .5s;
}

.complete p{
    font-size: 15px;
    text-align: center;
    padding: 15px;
}

.inquiry-back p{
    text-align: center;
    font-size: 20px;
    padding-top: 50px;
}

.inquiry-back a{
    color: #302833;
    text-decoration: none;
    transition: opacity 1s;
}

.inquiry-back a:visited{
    color: #302833;
}

.inquiry-back a:hover{
    opacity: 0.5;
}



/* アクセス     */
.access {
    text-align: center;
}

.access button {
    color: #302833;
    cursor: default;
display: block;
margin-left: auto;
margin-right: auto;
    font-family: 'Dosis', 'Hina Mincho', serif;
}

.access h1{
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.access-info h4{
    font-size: 13pt;
    margin-top: 30px;
    margin-bottom: 10px;
}

.access-info ul > li {
    text-align: center;
    /* 閉じている状態 */
    padding-top: 0px;
    padding-bottom: 0px;
    /* 閉じるアニメーション */
    transition:
    border-top     .8s ease-out,
    padding-top    .8s ease-out,
    padding-bottom .8s ease-out;
}

.access-info ul.is-open > li {
    /* 開いている状態 */
    padding-top: 13px;
    padding-bottom: 13px;
    /* 開くアニメーション */
    transition:
    border-top     .8s ease-out,
    padding-top    .5s ease-out,
    padding-bottom .8s ease-out;
}

.access-info ul > li > p {
    /* 閉じている状態 */
    line-height: 0;
    opacity: 0;
    visibility: visible;;
    /* 閉じるアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .3s linear,
    visibility  .3s linear;
}

.access-info ul.is-open > li > p {
    /* 開いている状態 */
    line-height: 1;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .5s linear .3s,
    visibility  .8s linear .3s;
}

.access-info ul > li > h4 {
    /* 閉じている状態 */
    line-height: 0;
    opacity: 0;
    visibility: visible;
    /* 閉じるアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .3s linear,
    visibility  .3s linear;
}

.access-info ul.is-open > li > h4 {
    /* 開いている状態 */
    color: #640125;
    line-height: 1;
    opacity: 1;
    visibility: visible;
    /* 開くアニメーション */
    transition:
    line-height .8s ease-out,
    opacity     .5s linear .3s,
    visibility  .8s linear .3s;
}

.access-info p{
    font-size: 12pt;
}

.access-info a{
    color: #302833;
    text-decoration: none;
    transition: opacity 1s;
}

.access-info a:visited{
    color: #302833;
}

.access-info a:hover{
    opacity: 0.5;
}

.map-area {
    text-align: center;
}

#map.is-open {
    width: 300px;
    height: 300px;
    opacity: 1;
    visibility: visible;
    /* 閉じるアニメーション */
    transition:
    height .3s ease-out,
    opacity     .3s linear,
    visibility  .3s linear;
    } 
    @media screen and (min-width:600px) {
#map.is-open {
    width: 600px;
    height: 300px;
    opacity: 1;
    visibility: visible;
    /* 閉じるアニメーション */
    transition:
    height .3s ease-out,
    opacity     .3s linear,
    visibility  .3s linear;
    }
}

#map {
    width: 300px;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition:
    height .8s ease-out,
    opacity     .8s linear,
    visibility  .8s linear;
    }
    @media screen and (min-width:600px) {
#map {
width: 600px;
height: 0;
opacity: 0;
visibility: hidden;
transition:
height .8s ease-out,
opacity     .8s linear,
visibility  .8s linear;
}
}





.map-canvas {
    display: block;
    margin: auto;
}


footer {
    color: #b3ada0;
    text-align: center;
    font-size: 10px;
    font-family: serif;
    position: sticky;
    top: 100vh;
    margin-top: 50px;
    width: 100%;
    height: 50px;
}