@charset "utf-8";
@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,
button {
    text-decoration: none;
	color: inherit;
	
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover,
button:hover {
	opacity: .7;
}

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

#wrapper{
	min-width: auto;
    overflow: hidden;
}

img{
	vertical-align: bottom;
}

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

input[type=submit]{
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

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

/*共通
----------------------------------------------------------------------------------------------------*/
: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;
}
.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);
    background: var(--sub-color);
    color: var(--black);
}

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

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

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

.w-25 {
    width: 25%;
}
.w-50 {
    width: 50%;
}
.w-75 {
    width: 75%;
}

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

.flex-column {
    flex-direction: column;
}
.column-reverse {
    flex-direction: column-reverse;
}
.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;
}

/*lunch-cafe*/

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

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



.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;
}

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

header nav {
    position: relative;
}
header ul {
    display: flex;
    gap: 1em;
}
header .parent-menu {
    position: relative;
}
header .child-menu {
    display: flex;
    width: fit-content;
    flex-direction: column;
    gap: 0;
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    transform: translateX(-50%);
    background: var(--main-color);
    border-radius: 0 0 8px 8px;
}
header .child-menu a {
    display: block;
    padding: 8px;
    width: 100%;
}
#selected {
    content: '';
    display: block;
    width: 0px;
    position: absolute;
    bottom: 0px;
    border-bottom: 4px solid var(--sub-color);
    transition: 0.5s;
}
header li {}
header a {}

.sel-border{

}

.head-inner {
	width: 1280px;
    margin: auto;
}
.head-flex {
    display: flex;
    gap: 24px;
    align-items: center;
}
.penguin-logo {
    width: 70px;
    height: 70px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.penguin-logo img {}
.header-box {}
.shop-name {}

.header-box > p {
	color: #fff;
    font-size: 18px;
    letter-spacing: 1.4px;
    margin-bottom: 0.2em;
}
.header-box > .header-tel {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0;
    color: #fff;
}

#menu {
    cursor: pointer;
    border: 1px solid #fff;
    height: 60px;
    width: 70px;
}
.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: 6px 4px;
    transition: 0.5s;
}



.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: 80px;
    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: 640px;
    height: 80%;
    left: 0;
    right: 0;
    top: 42%;
    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: 76%;
    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 {
    max-width: 100%;
}
.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 {}


/*メインコンテンツ
----------------------------------------------------------------------------------------------------*/
#main {
}
#main_image {
    position: relative;
    height: 700px;
    width: 100%;
    overflow: hidden;
}
#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%;*/
    top: 40%;
    transform: translateY(-50%);
    z-index: 999 !important;
}
#neon_logo img {
	width: 300px;
}

.content{
	width:1280px;
	margin: 0 auto;
	overflow: hidden;
    padding: 1em 0;
}

/*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;
    cursor: pointer;
}
#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;
    cursor: pointer;
}
.deco-border {
    display: block;
    width: fit-content;
    margin: 1em auto;
}
.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: 50%;
    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 20px 20px;
    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: 96px;
    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: 2em;
}

#lunch-cafe .new-lunch-cafe .flex-box {
    background: var(--main-color);
    padding: 0.5em;
    width: 60%;
    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 {
    border-left: 4px solid var(--sub-color);
    color: #fff;
}
#lunch-cafe .new-lunch-cafe .banner-text p {
}

/*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-brown {
    color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}
.border-title {
    position: absolute;
    top: -1.4em;
}
.border-title img {}
.border-inner {}
.border-flex {
    display: flex;
    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.4;
}
.text-flex {
    display: inline-flex;
    /* align-items: center; */
    /* gap: 0.5em; */
}
.info-text img {
    height: 1.2em;
    width: 1em;
    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;
    letter-spacing: 0.2em;
    gap: 1em;
}
#reservation_tel_box a::before {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    background: url(./../img/common/tel.png)no-repeat center;
    background-size: contain;
}

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

.bg-penguin {
    display: block;
    width: fit-content;
    position: absolute;
    z-index: -1;
    right: -80px;
    top: -80px;
}

.about-img {}
.about-img img {}


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

.menu-title {
    background: url(./../img/index/con-bg1.png) no-repeat center;
    background-size: cover;
    background-position-y: 42%;
    overflow: hidden;
}
#lunch-cafe .menu-title {
    background: url(./../img/index/cafe-bg.png) no-repeat center;
    background-size: cover;
    background-position-y: 42%;
    overflow: hidden;
}
.menu-title img {
    display: block;
    width: fit-content;
    margin: auto;
}

.menu-text {
    margin: 10em 0 0;
    position: relative;
}
.abs-menu {
    position: absolute;
    right: calc( 50% + 640px );
    top: -160px;
    z-index: 1;
    transform: translateX(100%);
}
.abs-pizza {
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: 1;
}
.menu-relative {
    position: relative;
    height: 400px;
}
.menu-inner {
    width: calc( 50% + 640px );
    background: #fff;
    position: absolute;
    right: 0;
    height: 400px;
    padding: 2em;
}
.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 {
    position: relative;
    z-index: 2;
}
.menu-inner .text-box {
    width: 480px;
    font-size: 0.9em;
    margin: 1em 0;
}
.menu-inner .border-btn {
    width: 480px;
}

.con03 .content .set-box {
    width: 50%;
    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 0;
}
.menu-st img {}

/*con04*/

.con04 {
}
.con04::before {
    content: none;
    display: block;
    background: url(./../img/index/events-bg.png)top no-repeat;
    background-size: cover;
    width: 100%;
    height: 800px;
    position: absolute;
    z-index: -1;
}
#lunch-cafe .con04::before {
    content: none;
}
.con04 .content {}
.con04 h2 {}
.con04 h2 img {}
.con04 .penguin-title {
    text-align: right;
}
.con04 .content-inner {
    background: #fff;
    position: relative;
    padding: 2em 2em 2em 2em;
}
.con04 .events {
    background: url(./../img/index/ev-bg.png)no-repeat;
}
.con04 .penguin {
    background: url(./../img/index/pe-bg.png)no-repeat right;
    background-position-y: 0px;
}
.con04 .content-border {
    border: 1px var(--sub-color) solid;
    /* position: absolute; */
    padding: 600px 1em 2em;
}
#lunch-cafe .con04 .content-border {
    border: 1px var(--sub-color) solid;
    /* position: absolute; */
    padding: 640px 1em 2em;
}
.con04 dl {
    width: 50%;
}
.con04 .penguin dl {
    float: right;
}
.con04 dl dt {}
.con04 dl dd {}
.con04 dt img {
    width: 100%;
}
.con04 dd p {}
.con04 dd a {}
.con04 .border-abs-img {
    position: absolute;
    right: 0;
    bottom: 0;
}
.con04 .penguin .border-abs-img {
    position: absolute;
    left: 0;
    right: unset;
    bottom: 0;
}

/*con05*/

.con05 {}
.con05 .content {}
.con05 .floor-st {
    text-align: center;
    border-bottom: 4px solid var(--sub-color);
}
.con05 .text-box {}
.con05 .floor-content {
    max-width: 1600px;
    margin: auto;
    text-align: center;
    position: relative;
}
.con05 .map {
    width: fit-content;
    margin: auto;
}
.con05 .map img {}
.con05 .shopimg1 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.con05 .shopimg2 {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.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: 3em 0;
    padding: 3em 1em;
    color: #fff;
}
.con06 .border-title {}
.con06 .title-center {
    width: fit-content;
    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;
}
.con06 ul li dl {
    display: flex;
    align-items: center;
    gap: 1em;
    color: #fff;
}
.con06 dl dt {
    min-width: 200px;
    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;
}
.barrierfree-box .border-box {
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 1em;
    margin-bottom: 0;
}
.barrierfree-box .border-box p {
    line-height: 1.7;
}

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

/*con07*/

.con07 {}
.con07 .shop-other-img {}
.con07 .shop-othe-img img {}
.con07 .google-map {}
.con07 .google-map iframe {}
.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 {
    gap: 1em;
}
.sns-box li {}
.sns-box img {}
.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: #0c0c0c;
    margin: 0 auto 0.4em;
    width: fit-content;
}
#blog .blog-box {
    border: 1px solid var(--light-blue);
    background: var(--light-blue);
    border-radius: 8px;
    position: relative;
    padding: 2em 4em;
}
#blog .blog-box p {
    background: #fff;
    color: var(--black);
    display: inline;
    font-size: 0.8em;
}
#blog .flex-box {
    margin: 2em 0;
}
#blog .set-box {
    width: 50%;
    color: var(--black);
}
#blog .set-box dl {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
#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;
}
#blog .border-btn {
    background: var(--black);
}


/*フッター
----------------------------------------------------------------------------------------------------*/

footer {
    background: var(--footer-color);
}

.foot-inner {
    width: 1280px;
    margin: auto;
    color: #fff;
}
.foot-left {
    width: 40%;
    border-right: 1px solid #fff;
    padding: 2em 0em 2em 3em;
    position: relative;
}
.foot-left img {
    position: absolute;
    left: 0;
}
.foot-left p {
    font-size: 0.9em;
    line-height: 2em;
}
.foot-right {
    width: 60%;
    padding: 2em;
}
.foot-nav {}
.foot-nav ul {}
.foot-nav li {
    font-size: 0.9em;
    margin-bottom: 1em;
}
.foot-nav a {}

small {}

.footer-penguin {}

.to-top{
    position: fixed;
    bottom: 20px;/*適宜変更*/
    right: calc( 50% - 720px );/*適宜変更 これはコンテンツ幅の右に合わせる場合の指定です*/
    z-index: 99;/*適宜変更・削除*/

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

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


.fix-left {
    position: fixed;
    left: 0;
    top: 14%;
    z-index: 999;
}
.fix-right {
    position: fixed;
    right: 0;
    top: 14%;
    z-index: 999;
}
.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;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    width: fit-content;
    margin: auto;
    z-index: 999;
}
.popup-inner {
    position: relative;
}
.popup-bottom{
    position: absolute;
    display: block;
    bottom: 0;
}