@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap');
/* font-family: 'Zen Antique', serif; */

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-size: 16px;
    background: var(--main-color);
    font-family: Meiryo, Tahoma, Verdana, Arial, sans-serif;
}

#lunch-cafe {
    background: var(--lunch-main) !important;
}

#wrapper {
    min-width: 320px;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

img {
    vertical-align: bottom;
    width: 100%;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
input[type=button] {
    -webkit-appearance: none;
    border: 1px solid #999999;
}

.for-pc {
    display: none !important;
}

.sp-br {
    display: block;
}

/*共通
----------------------------------------------------------------------------------------------------*/
:root {
    --black: #0c0c0c;
    --orange: #ff6600;
    --yellow: #ff9900;
    --gray: #232323;
    --light-blue: #bbecff;

    --main-color: var(--black);
    --lunch-main: var(--light-blue);
    --sub-color: var(--yellow);
    --accent-color: var(--orange);
    --footer-color: var(--gray);
}

.flex-box {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-reverse {
    flex-direction: row-reverse;
}

.sp-column {
    flex-direction: column;
}

.column-reverse {
    flex-direction: column-reverse;
}

.flex-right {}

.set-box {}

.text-box {
    display: block;
    line-height: 2em;
}

.text-white {
    color: white;
}

.text-brown {
    color: var(--main-color);
}

.form-group {}

.border-btn {
    display: flex;
    color: #fff;
    background: transparent;
    border: 1px solid;
    font-size: 1em;
    height: 2em;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.border-btn::after {
    content: '>';
    display: inline-block;
    position: absolute;
    right: 1em;
}

.btn-white {}

.btn-orange {
    color: var(--sub-color);
}

.btn-bg-orange {
    border: var(--sub-color) !important;
    background: var(--sub-color) !important;
    color: var(--black) !important;
}

.border-brown {
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.border-black {
    color: var(--main-color);
    border-color: var(--main-color);
}

.bg-tile {
    background: url(./../img/common/bg-tile.png);
}

.w-25 {
    width: 25%;
    width: 100%;
}

.w-50 {
    width: 50%;
    width: 100%;
}

.w-75 {
    width: 75%;
    width: 100%;
}

.mt-1 {
    margin-top: 1em;
}


.align-center {
    align-items: center;
}

.align-base {
    align-items: baseline;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-1 {
    gap: 1em;
}

.lum-lightbox {
    z-index: 1;
}


.banner-box {
    width: 100%;
    margin: 1em auto;
}

.banner-box img {
    width: 100%;
}

.for-foreigners {
    background: #ff9900;
    padding: 0.5em 1em;
    line-height: 1.7em;
    /* font-size: 0.8em; */
}

/*ヘッダー
----------------------------------------------------------------------------------------------------*/
header {
    position: relative;
    z-index: 10000;
    padding: 4px 12px;
    background: var(--main-color);
    border-top: 6px solid var(--accent-color);
    overflow: hidden;
}


.sel-border {}

.head-inner {
    width: 100%;
    margin: auto;
}

.rslides li {
    height: 200px;
}

.rslides li img {
    height: 100%;
    object-fit: cover;
}

.head-flex {
    display: flex;
    gap: 0.5em;
    align-items: center;
}

.penguin-logo {
    width: fit-content;
    height: fit-content;
}

.penguin-logo img {}

.header-box {}

.shop-name {}

.header-box>p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.4px;
}

.header-box>.header-tel {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0;
}

#menu {
    border: 1px solid #fff;
    height: 50px;
    width: 50px;
    float: right;
    position: absolute;
    right: 12px;
}

.navmenu-inner {
    width: 100%;
    height: 100%;
}

.menu-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menu-box>span {
    display: block;
    width: 60%;
    height: 2px;
    background: #fff;
    margin: 4px;
    transition: 0.5;
}

.active .menu-box {}

.active .menu-box>span:first-of-type {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotateZ(410deg);
    transition: 0.5s;
}

.active .menu-box>span:nth-of-type(2) {
    opacity: 0;
    transition: 0.5s;
}

.active .menu-box>span:last-of-type {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotateZ(-410deg);
    transition: 0.5s;
}



#fix_navi {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--main-color);
    height: 100%;
    width: 100%;
}

.fix-nav-inner {
    width: 100%;
    height: 100%;
}

.fix-nav-box {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    transform: translateY(-50%);
}

.fix-nav-contact {}

.fix-nav-contact a {
    margin: 1em auto;
    text-align: center;
}

.nav-tel {
    display: block;
    width: fit-content;
}

.nav-tel img {}

.active .fix-nav-box {
    height: 86%;
    transition: 0.8s;
}


.grid-box {
    margin: 0em 0 2em;
}

.grid-box .grid-inner-box {}

.grid-box ul {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 1em 2em;
}

.grid-box li {}

.grid-box a {
    display: block;
    text-align: center;
}

.grid-box img {
    width: 100%;
    height: 2.8em;
    object-fit: contain;
}

.fix-nav-reservation {
    text-align: center;
    display: block;
    width: 100%;
    background-color: var(--footer-color);
    padding: 0.5em 0;
    margin: 3em auto;
}

.fix-nav-reservation img {
    height: 2.8em;
    object-fit: contain;
}



/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/
#main {}

#main_slider {
    height: 400px;
    width: 100%;
    background-size: cover;
}

#main_slider .main-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

#main_slider .rslides li {
    height: 400px;
}

#main_slider .rslides img {
    display: flex;
    height: 100%;
    margin: auto;
    object-fit: cover;
}


#main_image {
    position: relative;
    height: 200px;
    width: 100%;
}

#main_image .main-inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}


#neon_logo {
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999 !important;
}

#neon_logo img {
    display: block;
    width: 40%;
    margin: auto;
}

.content {
    min-width: 320px;
    max-width: 600px;
    margin: 0 auto;
    padding: 2em 12px;
    overflow: hidden;
}


/*lunch-cafe
--------------------*/

.lunch-cafe {
    position: relative;
    background: url(./../img/index/cafe-bg.png) no-repeat center;
    background-size: cover;
    background-position-y: 42%;
    overflow: hidden;
}

#lunch-cafe .lunch-cafe {
    position: relative;
    background: url(./../img/index/con-bg1.png) no-repeat center;
    background-size: cover;
    background-position-y: 42%;
    overflow: hidden;
}

.deco-border {
    display: block;
    width: fit-content;
    margin: 0.5em auto;
    width: 98%;
}

.cafe-title {
    display: block;
    width: fit-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    transform: translateY(-50%);
}


.new-lunch-cafe {}

.new-lunch-cafe .content {}

.new-lunch-cafe .flex-box {
    background: #bbecff;
    padding: 0.5em;
    width: 100%;
    margin: auto;
    gap: 0.5em;
    position: relative;
}

.new-lunch-cafe .flex-box::after {
    content: '';
    display: block;
    position: absolute;
    right: 0.5em;
    bottom: 0.5em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 1em 1em;
    border-color: transparent transparent #362222 transparent;
    line-height: 0px;
    _border-color: #000000 #000000 #362222 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}

.new-lunch-cafe figure {
    height: 4em;
    overflow: hidden;
    width: 30%;
}

.new-lunch-cafe figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-lunch-cafe .banner-text {
    color: #362222;
    text-align: center;
    font-family: 'Zen Antique', serif;
    padding: 0.2em;
    width: 70%;
    height: 100%;
    border-left: 4px solid;
}

.new-lunch-cafe .banner-text span {
    font-size: 0.9em;
}

.new-lunch-cafe .banner-text p {
    font-size: 1.8em;
}

#lunch-cafe .new-lunch-cafe .flex-box {
    background: var(--main-color);
    padding: 0.5em;
    width: 100%;
    margin: auto;
    gap: 0.5em;
    position: relative;
}

#lunch-cafe .new-lunch-cafe .flex-box::after {
    border-color: transparent transparent var(--sub-color) transparent;
    _border-color: #000000 #000000 var(--sub-color) #000000;
}

#lunch-cafe .new-lunch-cafe .banner-text {
    height: 4em;
    border-left: 4px solid var(--sub-color);
    color: #fff;
}

#lunch-cafe .new-lunch-cafe .banner-text p {
    font-size: 1.2em;
}

/*con01
--------------------*/
.con01 {}

.reservation-box {
    margin: 1em 0 2em;
}

.information-box {
    margin: 2em 0;
}

.border-box {
    border: 1px solid #fff;
    padding: 1em;
    position: relative;
}

.border-orange {
    color: var(--sub-color) !important;
    border-color: var(--sub-color) !important;
}

.border-title {
    position: absolute;
    top: -1.4em;
}

.border-title img {
    max-height: 2em;
    object-fit: contain;
}

.border-inner {}

.border-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
}

.reserve-form select,
.reserve-form input {
    width: 100%;
    height: 2em;
    padding: 0.2em 0;
}

.info-text {}

.info-text p {
    line-height: 1.7em;
}

.text-flex {
    display: inline-flex;
}

.info-text img {
    height: 1.6em;
    width: 1.2em;
    object-fit: contain;
}

#reservation_tel_box {
    margin-top: 1em;
}

#reservation_tel_box a {
    background: var(--light-blue);
    color: var(--black);
    display: flex;
    align-items: center;
    border-radius: 4px;
}

#reservation_tel_box a::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url(./../img/common/tel.png)no-repeat center;
    background-size: contain;
    position: absolute;
    left: 1em;
}

/*con02
--------------------*/
.con02 {
    position: relative;
    overflow: hidden;
    padding: 2em 0;
}

.con02 h2 {}

.con02 h2 img {
    width: 100%;
}

.bg-penguin {
    display: block;
    width: 120%;
    position: absolute;
    z-index: -1;
    right: 0;
    left: -50px;
    margin: auto;
}

.about-img {}

.about-img img {
    display: block;
    width: 90%;
    margin: auto;
}


/*con03
--------------------*/
.con03 {}

.menu-title {
    background: url(./../img/index/con-bg1.png) no-repeat center;
    background-size: cover;
    background-position-y: 42%;
    overflow: hidden;
}

.menu-title img {
    display: block;
    width: 60%;
    margin: auto;
}

.menu-text {
    margin: 3em 0 0;
    position: relative;
}

.abs-menu {
    width: 37%;
    margin-left: 3em;
}

.abs-pizza {
    width: 62%;
    position: absolute;
    top: -130px;
    right: -52px;
    z-index: 1;
}

.menu-relative {
    position: relative;
    height: 260px;
}

.menu-inner {
    width: 95%;
    background: #fff;
    position: absolute;
    right: 0;
    height: 16em;
    padding: 2em 0 2em 2em;
}

#lunch-cafe .menu-inner {
    height: 13em;
}

.menu-inner::after {
    content: '';
    display: block;
    border: 1px solid var(--sub-color);
    position: absolute;
    right: -1em;
    width: 100%;
    height: calc(100% - 2em);
    top: 1em;
}

.menu-inner .set-box {}

.menu-inner .text-box {
    font-size: 0.9em;
    margin: 1em 0;
}

.menu-inner .border-btn {
    position: relative;
    z-index: 2;
}

.con03 .content .set-box {
    overflow: hidden;
    position: relative;
}

.con03 .content .set-box::after {
    content: '';
    display: block;
    border: 1px solid var(--sub-color);
    position: absolute;
    width: calc(100% - 2em);
    height: calc(100% - 2em);
    top: 1em;
    left: 1em;
}

.con03 .content .text-box {
    overflow: hidden;
    padding: 0 3em;
    font-size: 0.8em;
    line-height: 1.7em;
}

.con03 .content .border-btn {
    margin: 1em auto 2em;
    position: relative;
    width: calc(100% - 4em);
    z-index: 1;
}

.menu-image {}

.menu-image img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
}

.menu-st {
    text-align: center;
    margin: 1em auto;
    width: 60%;
    height: 48px;
}

.menu-st img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/*con04*/

.con04 {}

.con04::before {
    content: none;
    display: block;
    background: url(./../img/index/events-bg.png)top no-repeat;
    background-size: cover;
    width: 100%;
    height: 400px;
    position: absolute;
    z-index: -1;
}

#lunch-cafe .con04::before {
    content: none;
}

.con04 .content {
    padding-bottom: 300px;
}

#lunch-cafe .con04 .content {
    padding-bottom: 248px;
}

.con04 h2 {}

.con04 h2 img {}

.con04 .penguin-title {
    text-align: right;
}

.con04 .content-inner {
    background: #fff;
    position: relative;
    padding: 1em;
    height: 200px;
    width: 78%;
}

.con04 .events {
    background: url(./../img/index/ev-bg.png)no-repeat;
    background-size: cover;
}

.con04 .penguin {
    background: url(./../img/index/pe-bg.png)no-repeat right;
    background-position-y: 0px;
    background-size: cover;
}

.con04 .content-border {
    position: absolute;
    border: 1px var(--sub-color) solid;
    height: 200px;
    width: 100%;
}

.con04 dl {
    width: 112%;
    position: absolute;
    bottom: -140%;
    z-index: 1;
}

#lunch-cafe .con04 dl {
    width: 112%;
    position: absolute;
    /*    bottom: -100%;*/
    bottom: -120%;
    z-index: 1;
}

.con04 dl dt {}

.con04 dl dd {}

.con04 dt img {
    width: 100%;
}

.con04 dd p {}

.con04 dd a {}

.con04 .border-abs-img {
    display: block;
    width: 50%;
    position: absolute;
    right: -24%;
    bottom: 0;
}

/*con05*/

.con05 {
    overflow: hidden;
}

.con05 .content {}

.con05 .floor-st {
    text-align: center;
    border-bottom: 4px solid var(--sub-color);
}

.con05 .floor-st img {
    width: 80%;
}

.con05 .text-box {}

.con05 .floor-content {
    max-width: 1600px;
    margin: 0em 12px;
    text-align: center;
}

.con05 .map {
    width: fit-content;
    margin: auto;
    margin-bottom: 1em;
}

.con05 .map img {}

.con05 .shopimg1 {}

.con05 .shopimg2 {}

.con05 figure {}

.con05 figure img {}

.con05 figcaption {
    color: var(--sub-color);
    margin: 1em auto;
    background: url(./../img/common/penguin-icon.png)no-repeat center;
    background-position-x: left;
    background-size: contain;
    width: fit-content;
    padding-left: 2em;
}


/*con06*/

.con06 {}

.con06 .content {}

.con06 .border-box {
    margin: 2em 0;
    padding: 2em 1em;
    color: #fff;
}

.con06 .border-title {}

.con06 .title-center {
    width: fit-content;
    text-align: center;
    margin: auto;
    left: 0;
    right: 0;
    top: -2em;
}

.con06 .border-title img {}

.con06 .tel-number {
    text-align: center;
}

.con06 .tel-number img {}

.con06 .flex-box {}

.con06 .flex-box ul {}

.con06 ul li {
    margin: 0.8em 0;
}

.con06 ul li dl {
    display: flex;
    flex-direction: column;
    gap: 1em;
    color: #fff;
}

.con06 dl dt {
    min-width: 100%;
    padding: 0.2em 1em;
    letter-spacing: 0.1em;
    background: var(--sub-color);
}

.con06 dl dd {
    line-height: 1.4em;
}

.con06 .guide-list {
    color: #fff;
}

.con06 .guide-list li {}

.con06 .border-btn {
    margin: 2em auto;
}

#lunch-cafe .con06 dl dd {
    color: var(--main-color);
}

#lunch-cafe .con06 .barrierfree-box {
    color: var(--main-color);
}


/*con07*/

.con07 {}

.con07 .shop-outer-img {}

.con07 .shop-outer-img img {
    width: 100%;
    object-fit: cover;
}

.con07 .google-map {}

.con07 .google-map iframe {
    height: 200px;
}

.con07 .flex-box {
    gap: 1em;
}

.con07 .flex-box a {}

/*con08*/

.con08 {}

.news-box {
    margin-bottom: 2em;
}

.news-box ul {}

.news-box ul li {
    width: 100%;
}

.news-box figure {}

.news-box img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.news-box dl {
    color: #fff;
}

.news-box dt {
    margin: 0.5em 0;
}

.news-box dd {
    margin-bottom: 1em;
}

.connect-with-us {
    margin-bottom: 2em;
}

.sns-box {}

.sns-box ul {
    flex-wrap: wrap;
}

.sns-box li {
    width: 33%;
}

.sns-box img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.sns-box {}

.other {
    margin-bottom: 2em;
}

.other .flex-box {}

.other .sub-footer-banner {}


/*food-photo-gallery*/

.food-photo-gallery {}

.food-photo-gallery .flex-box {
    width: 100%;
    overflow: hidden;
    justify-content: center;
}

.food-photo-gallery li {}

.food-photo-gallery img {}



/*blog*/

#blog {}

#blog .contet {}

#blog h2 {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--black);
    margin: 0 auto 1em;
    width: fit-content;
}

#blog .blog-box {
    border: 1px solid var(--light-blue);
    background: var(--light-blue);
    border-radius: 8px;
    position: relative;
    padding: 1em;
}

#blog .blog-box p {
    color: var(--black);
    display: inline;
    background: #fff;
}

#blog .flex-box {
    margin: 2em 0;
}

#blog .set-box {
    /*    width: 50%;*/
}

#blog .set-box dl {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    color: var(--black);
}

#blog .set-box dt {
    font-size: 2em;
    font-weight: bold;
}

#blog .set-box dd {
    font-size: 0.8em;
}

#blog .set-box span {
    display: inline-block;
    padding: 0.2em 0.5em;
    /* border: 1px solid; */
    margin-right: 1em;
    background: var(--black);
    color: #fff;
}

#blog .set-box figure {}

#blog .set-box img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 8px;
}

.border-btn {
    display: flex;
    color: #fff;
    background: transparent;
    border: 1px solid;
    font-size: 1em;
    height: 2em;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: var(--black);
    position: relative;
}

/*フッター
----------------------------------------------------------------------------------------------------*/
footer {
    background: var(--footer-color);
}

.foot-inner {
    width: 100%;
    color: #fff;
}

.foot-left {
    padding: 2em 0em 2em 4em;
    position: relative;
}

.foot-left img {
    position: absolute;
    left: 1em;
    width: 2em;
    height: 2em;
}

.foot-left p {
    font-size: 1em;
    line-height: 2em;
}

.foot-right {
    padding: 0em 0 2em 4em;
}

.foot-nav {}

.foot-nav ul {}

.foot-nav li {
    font-size: 0.9em;
    margin-bottom: 1em;
}

.foot-nav a {}

small {}

.footer-penguin {
    display: none;
}

.to-top {
    position: fixed;
    bottom: 20px;
    /*適宜変更*/
    right: 12px;
    /*適宜変更・削除*/
    z-index: 99;
    /*適宜変更・削除*/

    display: inline-block;
    /*必要があれば適宜変更*/
}

.to-top img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.to-en {
    position: fixed;
    bottom: 94px;
    /*適宜変更*/
    right: 12px;
    /*適宜変更・削除*/
    z-index: 99;
    /*適宜変更・削除*/

    display: inline-block;
    /*必要があれば適宜変更*/
}

.to-en img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


.fix-left {
    display: none;
    position: fixed;
    left: 0;
    top: 14%;
}

.fix-right {
    display: none;
    position: fixed;
    right: 0;
    top: 14%;
}

.fix-inner {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.fix-inner a {}

.fix-inner img {}


/*popup*/

.popup-filter {
    display: none;
    background: rgba(0, 0, 0, 0.8);
    height: 100%;
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 999;
}

.popupbox {
    display: none;
    z-index: 9999;
    position: fixed;
    width: 96%;
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
}

.popup-inner {
    position: relative;
    width: 100%;
}

.popup-bottom {
    position: absolute;
    display: block;
    bottom: 0;
}