
/*
body
*/
body {
    overscroll-behavior: none;
    width: 100%;
    font-family : "Times New Roman" , "游明朝体" , "Yu Mincho", serif;
}

a {
    color: #ffffff;
    text-decoration: none;
}

/*
common
*/
.under {
    text-decoration: underline;
}

.red {
    color: red;
}

.bold {
    font-weight: 700;
}

#news h2, #menu h2 {
    width: 100%;
    text-align: center;
}

/*
header
*/
header {
    color: white;
    height: 110px;
    position: fixed;
    width: 100%;
    z-index: 100;
}

header.change-color {
}

/*
nav
*/
/* hanbuger-menu*/
.hamburger {
    border: solid 1px #ffffff;
    display : block;
    position: fixed;
    z-index : 5;
    right : 30px;
    top   : 30px;
    width : 49px;
    height: 45px;
    cursor: pointer;
    text-align: center;
}
.hamburger.active {
    border: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.hamburger span {
    display : block;
    position: absolute;
    width   : 24px;
    height  : 1px ;
    left    : 12px;
    background : #ffffff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
    border: solid 1px #ffffff;
}
.hamburger.active span:nth-child(1) {
    top : 21px;
    left: 11px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
    width: 0;
}
.hamburger.active span:nth-child(3) {
    top: 21px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}

nav.globalMenuSp {
    display: flex;
    align-items: center;
    position: fixed;
    z-index : 0;
    top  : -220px;
    left : 0;
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,0.8);
    height: 220px;
    width: 100%;
    transition: all .6s ease;
}

nav.globalMenuSp ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    height: 19px;
    width: 681px;
}

nav.globalMenuSp ul li {
    display: flex;
    list-style-type: none;
    padding: 0;
    transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}

nav.globalMenuSp ul li a {
    display: block;
    margin-right: 10px;
    text-decoration :none;
    width: 100%;
}
nav.globalMenuSp ul li span {
    margin: auto;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(135deg);
}
nav.globalMenuSp ul.en li span {
    margin: auto;
    margin-bottom: 7px;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(135deg);
}

.container span.msg,
.container span.choose {
    color: #555;
    padding: 5px 0 10px;
    display: inherit
}
.container {
    width: 200px;
    margin: 30px 103px 0 auto;
    text-align: center
}

/*Styling Selectbox*/
.dropdown {
    padding-left: 19px;
    border: solid 1px #ffffff;
    width: 200px;
    display: inline-block;
    transition: all .5s ease;
    position: relative;
    font-size: 21px;
    letter-spacing: 1.31px;
    color: #ffffff;
    height: 45px;
    text-align: left;
    z-index: 3;
}
.dropdown:after {
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    top: 50%; right: 25px;
    margin-top: -3px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    transition: all .3s ease-in-out;
    transform-origin: 50% 0;
}
.dropdown.active:after {
    margin-top: 3px;
    transform: rotate(-135deg) translateY(-50%);
}

.dropdown .select {
    cursor: pointer;
    display: flex;
    height: 100%;
    align-items: center;
}
.dropdown .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}
.dropdown.active .select > i {
    transform: rotate(-90deg)
}
.dropdown .dropdown-menu {
    position: absolute;
    /*background-color: #fff;*/
    width: 200px;
    left: -1px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 3;
}
.dropdown .dropdown-menu li {
    border: solid 1px #ffffff;
    padding-left: 19px;
    height: 45px;
    display: flex;
    align-items: center;
    transition: all .2s ease-in-out;
    cursor: pointer
}
.dropdown .dropdown-menu {
    padding: 0;
    list-style: none
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    z-index : 4;
    top: 0;
}

/*
section: top
*/
#top {
    height: 960px;
    width: 100%;
    position: relative;
}

#top:before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height: 960px;
    background:url("../images/bg_top.png") no-repeat center;
    background-size:cover;
}

.top-wrapper {
    position: fixed;
    height: 100%;
    width: 100%;
    padding: 75px 56px 24px 56px;
    z-index: -1;
}
.top-logo {
    width: 138px;
    height: 306px;
    margin-bottom: 434px;
}

.top-box {
    position: relative;
    display: flex;
    height: 73px;
    width: 10px;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
}

.top-box-text {
    position: absolute;
    letter-spacing: 1px;
    color: white;
    left: -8px;
    top: 12px;
    transform: rotate( 90deg );
}

/*
section: main
*/
#main {
    position: relative;
    z-index:1;
    background-image: url("../images/bg_main.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 600px;
}

.main-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 62px;
    padding-bottom: 40px;
}

.main-box img{
    margin-right: 0;
    margin-left: auto;
}

.main-top-text p {
    letter-spacing: 6.7px;
}

/*
section: news
*/
#news {
    height: 100%;
    padding: 70px 0;
    width: 100%;
    background-color: #ffffff;
}

.news-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}
#news h2 {
    line-height: 22px;
    font-size: 22px;
    letter-spacing: 1.38px;
    margin-bottom: 40px;
}
#news h2 img {
    margin: 0 auto;
}

#news .news-text {
    text-align: center;
    line-height: 28px;
}

.news-subtitle {
    align-items: flex-end;
    border-top: solid 1px #000000;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 17px auto 39px auto;
    text-align: center;
    width: 100px;
}

.news-subtitle p {
    letter-spacing: 5px;
}

#news ul{
    width:100%;
}

#news li{
    border-bottom: solid 1px #D8D8D8;
    color:#333;
    font-size: 14px;
    padding:32px 0;
}

#news li:nth-child(1){
    border-top: solid 1px #D8D8D8;
}

#news li span:nth-child(1) {
    font-size: 13px !important;
    margin-right: 49px;
}

#news span:nth-child(2) {
    font-family : "游明朝体" , "Yu Mincho", serif;
    font-size: 14px;
    letter-spacing: 2px;
}

/*
section: menu
*/
#menu {
    background-image: url("../images/bg_menu.png");
    background-size: cover;
    height: 832px;
    width: 100%;
    padding: 70px 0;
}

.menu-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1440px;
}

#menu h2 img {
    margin: 0 auto;
}

.menu-subtitle {
    align-items: flex-end;
    border-top: solid 1px #ffffff;
    color: #ffffff;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 20px auto 40px auto;
    text-align: center;
    width: 100px;
}

.menu-subtitle p {
    letter-spacing: 5px;
    font-size: 14px;
}

.menu-box {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    height: 540px;
    color: #ffffff;
}

.coming-soon {
    position: relative;
}
.coming-soon p {
    font-size: 40px;
    letter-spacing: 2.5px;
    position: absolute;
    top: 178px;
    right: 98px;
}

.menu-image {
    position: relative;
    max-width: 960px;
    background-position: center;
    height: 540px;
    min-width: 960px;

}
.menu-image img {
    overflow: hidden;
    min-width: 960px;
}
.prev-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}
.next-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}


.menu-description-box {
    letter-spacing: 1px;
    margin-top: 10.6%;
    margin-left: 35px;
    max-width: 275px;
    min-width: 275px;
}

.menu-description-box h3 {
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 8px;
}

.menu-description-box p {
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 28px;
}

.menu-buttons {
    position: absolute;
    bottom: 189px;
    display: flex;
    height: 32px;
    justify-content: space-between;
    right: 220px;
    top: 531px;
    color: #ffffff;
    width: 214px;
}

.menu-buttons .prev, .menu-buttons .next {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menu-buttons .prev div, .menu-buttons .next div {
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    transition: .4s all;
}

.menu-buttons .prev p, .menu-buttons .next p {
    transition: .4s all;
}

.menu-buttons .prev div {
    margin-right: 10px;
}

.menu-buttons .next div {
    margin-left: 10px;
}

.slick-dots{
    display: flex;
    margin-top: 14px;
    height: 18px;
    max-width: 960px;
    justify-content: flex-end;
}
.slick-dots li::marker{
    content:none;
    height: 0;
}

.slick-dots li{
    margin-left: 10px;
}
.slick-dots li button{
    cursor: pointer;
    font-size:initial;
    color:initial;
    border-bottom: solid 1px #ffffff;
    background:initial;
    width:100%;
    height:100%;
    font-size: 14px;

    color:#fff;
}
.slick-dots li.slick-active button{
    position: relative;
    color: #DF0000;
    border-bottom: solid 1px #DF0000;
}
.slick-dots li.slick-active button:after{
    position: absolute;
    bottom: -1px;
    width: 50%;
    right: 0;
    content: '';
    border-bottom: solid 1px #ffffff;
}
/*
section: reserve
*/
#reserve {
    background-color: #EFEDE5;
    height: 447px;
    padding: 70px 0;
}

.reserve-wrapper {
    margin: 0 auto;
    max-width: 1100px;
}

#reserve h2 {
    line-height: 22px;
    font-size: 22px;
    margin-bottom: 40px;
    letter-spacing: 1.38px;
    text-align: center;
}

#reserve ul {
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 24px;
    list-style-type: none;
}
#reserve ul li {
    font-family : "游明朝体" , "Yu Mincho", serif;
    letter-spacing: 0.93px;
    text-indent: -1em;
    padding-left: 1em;
}
#reserve ul.en li {
    letter-spacing: 0.5px;

    font-family : "Times New Roman" , "游明朝体" , "Yu Mincho", serif;
}
#reserve ul li:before {
    content: '・';
}

.button {
    position: relative;
    text-align: center;
}

.button-arrow {
    position: relative;
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding-top: 29px;
    padding-bottom: 25px;
    width: 360px;
    transition: all  0.3s ease;
}

.button-arrow:before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 21px;
    width: 11px;
    height: 11px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(45deg);
}

.button-arrow:after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 19px;
    width: 19px;
    height: 1px;
    background: #ffffff;
}


/*
section: address
*/
#address {
    background-color: #ffffff;
    height: 777px;
    padding: 70px 0;
}

.address-wrapper {
    margin: 0 auto;
    text-align: center;
    max-width: 1100px;
}

#address h2 img {
    margin: 0 auto;
    height: 99px;
}

.address-subtitle {
    align-items: flex-end;
    border-top: solid 1px #000000;
    color: #000000;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 20px auto 30px auto;
    text-align: center;
    width: 100px;
}

.address-subtitle p {
    font-size: 14px;
    letter-spacing: 5px;
}

.address-text {
    font-family : "游明朝体" , "Yu Mincho", serif;
    letter-spacing: 0.88px;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 30px;
}
.address-text.en {
    letter-spacing: 0;
    font-family : "Times New Roman" , "游明朝体" , "Yu Mincho", serif;
}

.address-button {
    margin-top: 30px;
    text-align: center;
}

/*
footer
*/
footer {
    display: flex;
    height: 302px;
    position: relative;
}

.footer-left {
    background-image: url("../images/bg_footer.png");
    background-position: center;
    background-size: cover;
    width: 41.6%;
}

.footer-right {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    padding-top: 60px;
    padding-left: 29px;
    width: 58.4%;
}

.footer-logo {
    height: 153px;
    margin-right: 39px;
    width: 83px;
}

.footer-box h2 {
    font-size: 22px;
    letter-spacing: 1.38px;
    line-height: 22px;
    margin-bottom: 20px;
}

.footer-box p {
    font-family : "游明朝体" , "Yu Mincho", serif;
    font-size: 14px;
    letter-spacing: 0.88px;
    margin-bottom: 16px;
}
.footer-box.en p {
    font-family : "Times New Roman" , "游明朝体" , "Yu Mincho", serif;
    letter-spacing: 0px;
}

.footer-button{
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    top: 0;
    background: #333333;
    transition: all  0.3s ease;
}

.footer-button a{
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    text-decoration: none;
}

.footer-button a::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%); /*要素の大きさの半分ずつを戻す*/
    -webkit-transform: translateY(-50%) translateX(-50%);
    content: "";
    border-right: 10px solid transparent;
    border-bottom: 12px solid #ffffff;
    border-left: 10px solid transparent;
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none !important;
    }

    .main-box {
        text-align: right;
    }
    .main-box.en {
        color: #ffffff;
        width: 599px;
        margin: 0 0 0 auto;
        text-align: left;
    }
    .main-top-text {
        margin-bottom: 25px;
    }
    .main-top-text p {
        font-size: 25px;
        line-height: 50px;
    }
    .main-top-text.en p {
        letter-spacing: 3px;
    }
    .main-sub-text p {
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 5px;
        letter-spacing: 6.7px;
    }
    .main-sub-text.en p {
        letter-spacing: 3px;
    }

    #news .news-text {
        letter-spacing: 0.93px;
    }
    #news li {
        line-height: 14px;
    }

    #menu {
        position: relative;
        overflow-x: hidden;
    }
    #menu h2 {
        height: 48px;
    }
    #menu h2.en {
        height: 100%;
        font-size: 22px;
        line-height: 22px;
        letter-spacing: 1.57px;
        color: #ffffff;
    }
    .menu-wrapper {
        margin-left: -770px;
        position: absolute;
        left: 53.4%;
    }

    .button-arrow {
        font-size: 16px;
        line-height: 16px;
    }
    .button {
        height: 70px;
    }

    #reserve.ja{
        height: 423px;
    }

    #reserve ul.en li {
        font-size: 14px;
    }

    #address h2 {
        height: 100%;
        font-size: 22px;
        line-height: 22px;
        letter-spacing: 1.57px;
    }

    .footer-box p {
        line-height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }

    header {
        height: 69px;
    }

    .dropdown {
        width: 128px;
        height: 29px;
        font-size: 13px;
    }
    .hamburger {
        height: 29px;
        right: 20px;
        width: 31px;
        top: 20px;
    }
    .hamburger span {
        left: 7px;
        width: 15px;
    }
    .hamburger span:nth-child(1) {
        top: 6px;
    }
    .hamburger span:nth-child(2) {
        top: 12px;
    }
    .hamburger span:nth-child(3) {
        top: 18px;
    }
    nav.globalMenuSp{
        align-items: flex-start;
        padding-top: 35px;
        height: 140px;
    }
    nav.globalMenuSp ul {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        margin: 0 auto;
        padding: 0;
        height: 19px;
        width: 681px;
    }
    nav.globalMenuSp ul li {
        display: flex;
        justify-content: center;
        list-style-type: none;
        padding: 0;
        transition: .4s all;
    }
    nav.globalMenuSp ul li a{
        margin-right: 0;
        padding: 7px 0;
    }
    .hamburger.active span:nth-child(1) {
        top : 13px;
        left: 7px;
    }
    .hamburger.active span:nth-child(3) {
        top: 13px;
    }
    .container {
        width: 128px;
        margin: 20px 71px 0 auto;
    }
    .dropdown {
        padding-left: 12px;
        width: 128px;
        font-size: 13px;
        letter-spacing: 0.84px;
        height: 29px;
    }
    .dropdown:after {
        width: 7px;
        height: 7px;
        right: 13px;
        margin-top: -3px;
    }
    .dropdown.active:after {
        margin-top: 2px;
    }
    .dropdown .dropdown-menu {
        width: 128px;
    }
    .dropdown .dropdown-menu li {
        padding-left: 12px;
        height: 29px;
    }

    #top {
        height: 718px;
    }
    #top:before {
        height: 718px;
        background-size: cover;
        background-position: 3% 75%;
    }
    .top-wrapper {
        padding-top: 128px;
    }
    .top-logo {
        height: 210px;
        width: 95px;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 277px;
    }
    #main {
        background-image: url("../images/bg_main_sp.png");
        background-position: 90% 45%;
        background-size: cover;
        background-repeat: no-repeat;
        height: 500px;
        position: relative;
    }
    #main:before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        z-index: -1;
        position: absolute;
        content: '';
        height: 92.8%;
        width: 100%;
    }
    .main-wrapper {
        padding: 60px 0;
        width: 90%;
    }
    .main-box {
        color: #ffffff;
        text-align: center;
    }
    .main-top-text p {
        font-size: 19px;
        font-weight: 600;
        line-height: 48px;
    }
    .main-top-text.en p {
        letter-spacing: 0px;
        line-height: 44px;
        font-size: 16px;
    }
    .main-sub-text {
        letter-spacing: 2px;
        margin-top: -10px;
    }
    .main-sub-text p {
        font-size: 13px;
        line-height: 26px;
        margin-bottom: 5px;
    }
    .main-sub-text.en p {
        /*font-size: 11px;*/
        letter-spacing: 0.5px;
    }
    #news {
        padding: 50px 0;
    }
    #news h2 {
        font-size: 22px;
        line-height: 22px;
        letter-spacing: 1.57px;
        margin-bottom: 30px;
    }
    #news .news-text {
        font-size: 13px;
        line-height: 24px;
        letter-spacing: 0.4px;
    }

    .news-wrapper {
        width: 90%;
    }
    .news-subtitle {
        margin-bottom: 21px;
    }
    #news ul {
        list-style: none;
    }
    #news li {
        font-size: 13px;
        padding: 24px 0;
    }
    #news li p {
        letter-spacing: 1px;
    }
    #news li p:nth-child(1) {
        letter-spacing: 1px;
        margin-bottom: 4px;
    }
    #news li p:nth-child(2) {
        font-family : "游明朝体" , "Yu Mincho", serif;
        letter-spacing: 2px;
        line-height: 21px;
    }
    #menu {
        height: 437px;
        background-image: url("../images/bg_menu_sp.png");
        padding: 50px 0;
    }
    #menu h2 {
        font-size: 22px;
        line-height: 22px;
        letter-spacing: 1.57px;
        color: #ffffff;
    }
    .menu-subtitle {
        margin: 16px auto 23px auto;
    }
    .menu-wrapper-comingsoon {
        height: 512px;
    }
    .menu-container {
        position: relative;
        max-width: 375px;
        margin: 0 auto;
    }
    .menu-box {
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    .coming-soon p {
        top: 81px;
        right: 91px;
        font-size: 30px;
        letter-spacing: 3.1px;
    }
    .menu-image {
        width: 375px;
        height: 210px;
        min-width: 375px;
        max-width: 375px;
        margin: 0 auto;
    }
    .menu-image img {
        width: 100%;
        min-width: 100%;
    }
    .menu-description-box {
        width: 334px;
        max-width: 334px;
        min-width: 334px;
        margin: 40px auto 0 auto;
    }
    .menu-description-box h3 {
        font-size: 18px;
        letter-spacing: 1.13px;
    }

    .slick-dots {
        position: absolute;
        top: 202px;
        right: 20px;
    }

    #reserve {
        height: 100%;
        padding: 50px 0;
    }
    #reserve h2 {
        margin-bottom: 30px;
    }
    .reserve-wrapper {
        width: 90%;
    }
    .reserve-wrapper h2 {
        margin-bottom: 20px;
    }
    .button-arrow {
        width: 78%;
        font-size: 14px;
        padding: 20px 0;
    }

    #address {
        padding: 50px 0;
        height: 100%;
    }
    #address h2 {
        font-size: 22px;
        line-height: 22px;
        letter-spacing: 1.57px;
    }
    .address-subtitle {
        margin: 16px auto 13px auto;
    }
    .address-text-box {
        margin-bottom: 27px;
        text-align: center;
    }
    .address-text {
        display: inline-block;
        line-height: 21px;
        text-align: left;
    }
    #address .button-arrow {
        width: 69%;
        height: 54px;
        line-height: 14px;
        padding: 20px 0;
        color: #000000;
        border: solid 1px #000000;
        background-color: #ffffff;
    }
    #address .button-arrow:before {
        border-top: solid 1px #000000;
        border-right: solid 1px #000000;
    }
    #address .button-arrow:after {
        background: #000000;
    }

    footer {
        flex-direction: column;
        height: 478px;
    }
    .footer-left {
        background-image: url("../images/bg_footer_sp.png");
        height: 280px;
        width: 100%;
        margin-bottom: -2px;
    }
    .footer-logo {
        width: 70px;
        margin: 35px auto 0 auto;
    }
    .footer-right {
        padding: 25px 0 0 0;
        height: 200px;
        width: 100%;
    }
    .footer-box {
        width: 90%;
        margin: 0 auto;
    }
    .footer-box h2 {
        margin-bottom: 9px;
        font-size: 22px;
    }
    .footer-box p {
        font-size: 13px;
        line-height: 25px;
    }
    .footer-box.en p {
        font-size: 11px;
    }
    .footer-button, .footer-button a {
        width: 40px;
        height: 40px;
    }
    .footer-button a::after {
        border-left: solid 8px transparent;
        border-right: solid 8px transparent;
    }

}

@media (hover: hover) {
    .button-arrow:hover {
        background-color: #DF0000 !important;
    }
    .menu-buttons .prev div:hover, .menu-buttons .next div:hover {
        background-color: #CBB269;
    }
    #address .button-arrow:hover {
        color: #ffffff;
        border: none;
        background-color: #ffffff;
    }
    #address .button-arrow:hover:before {
        border-top: solid 1px #ffffff;
        border-right: solid 1px #ffffff;
    }
    #address .button-arrow:hover:after {
        background: #ffffff;
    }
    .footer-button:hover {
        background-color: #DF0000;
    }
}