@charset "utf-8";

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Thin.otf");
    font-weight: 200;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.otf");
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.otf");
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.otf");
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-ExtraBold.otf");
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
}

/******************************/
/* NOTE: Layout
/******************************/

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000000;
    -webkit-overflow-scrolling: touch;
    font-size: 100%;
    box-sizing: border-box;
    color: #32130c;
    overflow-x: hidden;
    scrollbar-gutter: stable;
}

body {
    box-sizing: border-box;
    position: relative;
    width: 100%;
    background-color: #1D283A;
    background-size: contain;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", Arial, Tahoma, sans-serif;
    font-weight: 400;
    font-size: 4vw;
    line-height: 1.2em;
}

@media only screen and (min-width: 768px) {
    body {
        font-size: 1.35vw;
    }
}

input.submit,
input.button,
button {
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

button.btn.active {
    opacity: 0.4 !important;
    pointer-events: none !important;
}

a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 300ms ease;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    a:hover {
        text-decoration: none;
        opacity: 0.7;
    }
}

img {
    display: inline-block;
    width: 100%;
    height: auto;
}

.only-d {
    display: none;
}

.only-m {
    display: block;
}

@media only screen and (min-width: 768px) {
    .only-d {
        display: block;
    }

    .only-m {
        display: none;
    }
}

#app {
    width: 100%;
}

h1 {
    font-size: 1.8em;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 1em;
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 2.9em;
        line-height: 1.1em;
        margin-bottom: 0.7em;
    }
}

p {
    line-height: 1.25em;
    font-size: 1.3em;
    margin-bottom: 1em;
}

@media only screen and (min-width: 768px) {
    p {
        margin-bottom: 0.7em;
    }
}

/* main bg */

#app {
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url(../gfx/bg-m-neon.jpg);
}

@media only screen and (min-width: 768px) {
    #app {
        background-image: url(../gfx/bg-d-neon.jpg);
    }
}

@media (hover: hover) and (pointer: fine) {
    #app {
        background-size: calc(100% + var(--scrollbar-width)) auto;
    }
}

/* frames */

.frame-std {
    position: relative;
    width: 100vw;
    background-size: 100% 100%;
}

/* frame 1 */

#frame1 {
    text-align: center;
    height: 218vw;
}

@media only screen and (min-width: 768px) {
    #frame1 {
        height: 87.6vw;
    }
}

#yakitoriya-logo img {
    margin-top: 7vw;
    margin-bottom: 3vw;
    width: 58vw;
}

@media only screen and (min-width: 768px) {
    #yakitoriya-logo img {
        position: absolute;
        margin-top: 1.1vw;
        margin-bottom: 0;
        width: 28vw;
        top: 8.3vw;
        left: 65.4vw;
    }

    #frame1 .frame-title {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #frame1 .frame-title h1 {
        position: absolute;
        margin: 0;
        text-align: left;
        top: 7.7vw;
        left: 6.3vw;
        z-index: 1;
        line-height: 1.1em;
        font-size: 7.7vw;
        font-weight: 800;

    }

    #frame1 .frame-title h2 {
        position: absolute;
        margin: 0;
        text-align: left;
        top: 16.4vw;
        left: 33.1vw;
        z-index: 1;
        line-height: 1.05em;
        font-size: 3.5vw;
        width: 40vw;
    }

    #frame4 .frame-title {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #frame4 .frame-title h1 {
        position: absolute;
        margin: 0;
        text-align: left;
        top: 1.1vw;
        left: 64vw;
        z-index: 1;
        line-height: 1.1em;
        font-size: 5vw;
        font-weight: 800;
        width: 30vw !important;
    }
}

button.btn {
    cursor: pointer;
    border: none;
    border-radius: 0.4em;
    color: #000;
    background-color: #EFF500;
    font-weight: 900;
    font-size: 1.4em;
    opacity: 1;
    padding: 0.8em 1.5em;
    transition: background-color 500ms ease, opacity 500ms ease;
}

@media only screen and (min-width: 768px) {
    button.btn {
        font-size: 1.1em;
    }
}

button.btn.btn-main {
    box-shadow: 0px 0.3em 0.8em rgba(23, 44, 36, 0.2);
    border-radius: 0.6em;
    color: #000;
    background-color: #EFF500;
    font-weight: 900;
    font-size: 1.4em;
    max-width: 90vw;
    opacity: 1;
    padding: 0.8em 1.2em;
    width: 90vw;
    transition: background-color 500ms ease, opacity 500ms ease;
    position: relative;
    z-index: 5;
}

@media only screen and (min-width: 768px) {
    button.btn.btn-main {
        box-shadow: 0px 0.3em 0.8em rgba(23, 44, 36, 0.2);
        border-radius: 0.6em;
        color: #fff;
        background-color: #ec4194;
        font-weight: 900;
        font-size: 1em;
        opacity: 1;
        width: auto;
        padding: 0.8em 1.8em;
        transition: background-color 500ms ease, opacity 500ms ease;
    }
}

input.text {
    font-weight: 400;
    font-size: 1.4em;
    opacity: 1;
    padding: 0.45em 1.2em;
    border: 2px solid #fff;
    border-radius: 0.4em;
    color: #000;
    background-color: #fff;
}

#frame1_flow {
    position: relative;
    z-index: 1;
}

/* Swiper */

.swiper-pagination {
    display: inline;
    bottom: 0;
    position: relative !important;
    padding: 0.4em 1.3em !important;
    border-radius: 0.5em !important;
    line-height: 1;
    height: auto;
    width: auto !important;
}

@media only screen and (min-width: 768px) {
    .swiper-pagination {
        padding: 0.3em 1.3em !important;
        border-radius: 0.6em !important;
    }
}

.swiper-pagination-bullet {
    opacity: 1 !important;
    display: inline-block;
    position: relative;
    top: 0.2em;
    width: 0.7em !important;
    height: 0.7em !important;
    margin: 0 0.3em !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.9em !important;
    height: 0.9em !important;
    top: 0.1em;
}

.prev {
    position: relative;
    width: 18vw;
    z-index: 2;
    display: inline-block;
}

.next {
    position: relative;
    width: 18vw;
    z-index: 2;
    display: inline-block;
}

#frame3 .prev,
#frame3 .next {
    display: none;
}

@media only screen and (min-width: 768px) {
    .prev {
        position: absolute;
        width: 4vw;
        top: 45% !important;
        left: 15.2vw;
        z-index: 2;
        display: block;
    }

    .next {
        position: absolute;
        width: 4vw;
        top: 45% !important;
        right: 15.2vw;
        z-index: 2;
        display: block;
    }

    #frame3 .prev,
    #frame3 .next {
        display: inline-block;
    }
}

/* frame 2 dishes */

#frame2 {
    text-align: center;
    height: 260vw;
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #frame2 {
        height: 55vw;
    }
}

#frame2_flow {
    position: relative;
    z-index: 1;
}

.menu-buttons {
    margin-bottom: 1em;
    margin-top: 2em;
}

.menu-buttons .btn {
    margin-bottom: 1.5em;
}

@media only screen and (min-width: 768px) {
    .menu-buttons .btn.btn-main {
        margin-bottom: 0;
        margin: 0 0.5em;
        padding: 0.7em 3.8em;
        color: #000;
        background-color: #EFF500;
    }

    .menu-buttons {
        margin-top: 0;
        margin-bottom: 2.7em;
    }
}

#frame2-slider {
    z-index: 1;
}

#frame2-slider .swiper-slide {
    box-sizing: border-box;
    padding: 0 0.5em;
}

@media only screen and (min-width: 768px) {
    #frame2-slider .swiper-slide {
        box-sizing: border-box;
        padding: 0 0.7em;
    }
}

#frame2-slider .swiper-slide-inner {
    overflow: hidden;
}

@media only screen and (min-width: 768px) {
    #frame2-slider .swiper-slide-inner {
        overflow: hidden;
        transition: transform 600ms ease;
    }
}

#frame2 .swiper-pagination-wrapper {
    position: absolute;
    width: 100%;
    bottom: 48vw;
    left: 0;
    z-index: 2;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    #frame2 .swiper-pagination-wrapper {
        position: absolute;
        width: 100%;
        top: 48vw;
        bottom: auto;
        left: 0;
        z-index: 2;
        text-align: center;
    }
}

#frame2 .swiper-pagination2 {
    background: #6256ed;
}

#frame2 .swiper-pagination-bullet {
    background-color: #332b9e !important;
}

#frame2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff !important;
}

#frame2 .content {
    padding: 0;
    text-align: left;
    font-size: 0.9em;
}

#frame2 .content h1 {
    font-size: 1.6em;
    line-height: 1.25em;
    margin-bottom: 0.15em;
    color: #fff;
    font-weight: 600;
}

#frame2 .slider-bg {
    background-color: #FF108D;
    border-radius: 1.8em;
    margin-bottom: 1.5em;
    padding: 0.4em 0;
}

#frame2 .slider-bg img {
    display: block;
    border-radius: 1.9em;
}

@media only screen and (min-width: 768px) {
    #frame2 .slider-bg {
        padding: 0;
        margin-bottom: 0.7em;
    }

    #frame2 .slider-bg img {
        border-radius: 1.5em;
        margin-bottom: 0em;
        display: block;
    }

    #frame2 .content {
        padding: 0;
        z-index: 1;
    }

    #frame2 .content h1 {
        font-size: 1.1em;
        margin-bottom: 0.1em;
    }
}

#frame2 .content p.price {
    font-size: 3em;
    margin-bottom: 0.1em;
    color: #fff;
}

@media only screen and (min-width: 768px) {
    #frame2 .content p.price {
        font-size: 2.1em;
        margin-bottom: 0.1em;
    }
}

#frame2 .content p.desc {
    font-size: 1.2em;
    margin-bottom: 0;
    color: #fff;
    line-height: 1.1em;
}

@media only screen and (min-width: 768px) {
    #frame2 .content p.desc {
        font-size: 0.8em;
        margin-bottom: 0;
    }
}

#frame2 .content p.desc strong {
    display: inline-block;
    margin-top: 0.6em;
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 1em;
}

@media only screen and (min-width: 768px) {
    #frame2 .content p.desc strong {
        display: inline-block;
        margin-top: 0.7em;
        margin-bottom: 1.5em;
        font-size: 1.14em;
        font-weight: 600;
    }

    #frame2 .next,
    #frame2 .prev {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 0.5rem 0.3em 0 !important;
        display: inline-block;
        width: 4vw;
        height: auto;
    }
}

#frame2 .prev,
#frame2 .next {
    margin: 0em 0.5em 0 0.5em;
}

/* frame 4 gifts */

#frame4 {
    text-align: center;
    height: 272vw;
}

@media only screen and (min-width: 768px) {
    #frame4 {
        height: 72vw;
    }
}

.frame-title {
    padding: 6vw 6.7vw 0vw 6vw;
    text-align: left;
    position: relative;
    z-index: 3;
    display: block;
}

.frame-title h1 {
    font-size: 3.15em;
    text-transform: uppercase;
    line-height: 1.1em;
    color: #EFF500;
    margin: 0 0 0.9em 0;
}

.frame-title h2 {
    position: absolute;
    top: 20vw;
    left: 50vw;
    font-weight: 600;
    font-size: 1.33em;
    text-transform: lowercase;
    line-height: 1.1em;
    color: #FFF;
    margin: 0 0 0.9em 0;
}

@media only screen and (min-width: 768px) {
    .frame-title {
        padding: 0;
        width: 100%;
        left: 0;
        text-align: center;
        z-index: 3;
    }

    .frame-title h1 {
        width: 50%;
        margin: 0 auto;
        font-size: 2em;
        line-height: 1.15em;
        margin-top: 2em;
    }
}

@media only screen and (min-width: 768px) {

    #frame2 .frame-title h1,
    #frame3 .frame-title h1 {
        margin-top: 0;
    }

    #frame4 .frame-title {
        padding: 1.5vw 0 4vw 0;
        font-size: 0.9em;
    }

    #frame4 .frame-title h1 {
        width: 100%;
    }
}

.gifts>div.gift {
    position: relative;
    width: 100vw;
    margin: 0 auto 3em;
}

.gifts img {
    width: 90%;
    height: auto;
}

.gifts .gift2 img {
    width: 75%;
}

@media only screen and (min-width: 768px) {
    .gifts>div.gift.gift1 {
        position: relative;
        width: 63vw;
        top: -1em;
        margin: 0 0 0.5em;
        z-index: 2;
    }

    .gifts>div.gift.gift2 {
        position: absolute;
        top: 14.2vw;
        left: 38.7vw;
        width: 64.8vw;
        margin: 0 0 2em;
        z-index: 1;
    }

    .gifts img {
        width: 100%;
    }
}

.gifts>div.gift span {
    text-align: center;
    position: absolute;
    width: 80%;
    bottom: 1.3em;
    left: 10%;
    z-index: 1;
    font-size: 2em;
    font-weight: 600;
    line-height: 1.3em;
    display: inline-block;
    color: #fff;
}

@media only screen and (min-width: 768px) {
    .gifts>div.gift span {
        bottom: 1em;
        font-size: 1.3em;
        width: 100%;
        left: 0;
    }
}

.gifts-desc {
    color: #fff;
    text-align: left;
    padding: 7vw 5vw;
    font-weight: 500;
    line-height: 1.3em;
    font-size: 1.07em;
}

@media only screen and (min-width: 768px) {
    .gifts-desc {
        padding: 0 6.3vw;
        font-size: 1.36em;
        width: 87vw;
    }
}

/* --- Footer --- */

footer {
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 3.5em 20vw;
    font-size: 0.8em;
    border-top-left-radius: 2em;
    border-top-right-radius: 2em;
    margin-bottom: 4em;
}

@media only screen and (min-width: 768px) {
    footer {
        font-size: 0.9em;
        padding: 2.5em 4vw;
        border-top-left-radius: 1.5em;
        border-top-right-radius: 1.5em;
    }
}

footer>div {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: stretch;
}

@media only screen and (min-width: 768px) {
    footer>div {
        display: flex;
        flex-flow: column wrap;
        justify-content: space-between;
        align-items: flex-end;
    }
}

#copy-get {
    order: 3;
}

@media only screen and (min-width: 768px) {
    #copy-get {
        order: 2;
        margin-bottom: 0;
        margin-right: 0;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-start;
        align-items: stretch;
    }
}

#copy-social {
    order: 2;
    margin: 3em 0 2em;
}

@media only screen and (min-width: 768px) {
    #copy-social {
        position: absolute;
        top: 4vw;
        left: 0;
        flex: 0 0 auto;
        order: 2;
        margin: 0;
    }
}

#copy-logo img {
    margin-bottom: 3em;
}

@media only screen and (min-width: 768px) {
    #copy-logo {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #copy-logo img {
        width: 12vw;
        margin-bottom: 0;
    }
}

#copy-text {
    order: 1;
    font-size: 0.9em;
    line-height: 1.2em;
    padding: 0;
    text-align: left;
    margin-bottom: 2em;
}

@media only screen and (min-width: 768px) {
    #copy-text {
        font-size: 0.6em;
        flex: 1 0 auto;
        order: 1;
        margin: 0.7em 0 3.5em 0;
        padding: 0;
        text-align: left;
        display: flex;
        flex-flow: row nowrap;
        justify-content: flex-end;
        align-items: stretch;
        width: 65vw;
        color: red;
    }
}

#copy-text,
#copy-text a {
    color: #b4b3b3;
}

#copy-text>div {
    margin: 0 0 1em 0;
}

@media only screen and (min-width: 768px) {
    #copy-text>div {
        margin: 0;
    }
}

#copy-text a {
    text-decoration: underline;
}

#copy-text a:hover {
    text-decoration: none;
}

#copy-get div {
    margin: 0 0 1em;
}

#copy-get a img {
    height: auto;
    width: 40vw;
}

@media only screen and (min-width: 768px) {
    #copy-get div {
        margin: 0 0 0 1em;
    }

    #copy-get a img {
        height: 2.4vw;
        width: auto;
    }
}

#copy-social {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

#copy-social div {
    margin: 0 0.8em 0 0;
}

#copy-social a img {
    height: 9vw;
    width: auto;
}

@media only screen and (min-width: 768px) {
    #copy-social div {
        margin: 0 1em 0 0;
    }

    #copy-social a img {
        height: 2vw;
        width: auto;
    }
}

footer img {
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
}

footer a:hover img {
    opacity: 0.7;
}

.rel {
    position: relative;
}