@charset "UTF-8";

:root {
	/* color */
	--backGroundColor:hsla(0, 100%, 6%, 1);
	--backGroundColor_halfClear:hsla(0, 100%, 6%, 0.8);
	--shadowColor:hsla(0, 100%, 3%, 1);
	--textColor:hsla(0, 0%, 70%, 1);
	--backGroundImage-blur:hsla(0, 0%, 0%, 0.6);
	--:hsla(219, 54%, 24%, 1);

	/* size */
	--bodyWidth320:300px;
	--bodyWidth375:350px;
	--bodyWidth390:375px;
	--bodyWidth414:400px;
	--bodyWidth428:410px;
	--bodyWidth620:600px;
	--bodyWidth768:750px;
	--bodyWidth920:900px;
	--bodyWidth980:950px;
	--bodyWidth1200:1180px;
	--bodyWidth1440:1420px;
	--bodyWidth1680:1660px;

	--headerHeight-fixedAdjust:6em;
	--cardStyleWidth:18em;
    --cardStyleWidthTab:15em;
	--cardLiMargin:1em auto;
	--cardGridGap:1em;
	--contentSizeSmall1:400px;

	/* font size */
	--h2:2em;
}
















@font-face {
    font-family: "Bleeding Cowboys";
    src: url(../fonts/Bleeding_Cowboys.ttf);
}
@font-face {
    font-family: "Old Newspaper Types";
    src: url(../fonts/OldNewspaperTypes.ttf);
}
@font-face {
    font-family: "Rye";
    src: url(../fonts/Rye-Regular.ttf);
}
@font-face {
    font-family: "しねきゃぷしょん";
    src: url(../fonts/cinecaption226.ttf);
}
@font-face {
    font-family: "PatrickHand";
    src: url(../fonts/PatrickHand-Regular.ttf);
}


.oldNewsPaper {
    font-family: "Old Newspaper Types";
    letter-spacing: 4px;
}
.bleedingCowboys {
    font-family: "Bleeding Cowboys";
    letter-spacing: 4px;
}
.rye{
    font-family: "Rye";
    letter-spacing: 4px;

}
.chinema{
    font-family: "しねきゃぷしょん";
    border: solid;
    padding: 5px;
    letter-spacing: 2px;
}
.patrick{
    font-family: "PatrickHand";
    letter-spacing: 4px;
}

















*{
    box-sizing: border-box;
}
body {
	background: var(--backGroundColor);
	color:var(--textColor);
}
a:link,
a:visited,
a:hover,
a:active {
	text-decoration: none;
	color: var(--textColor);
}
h2{
	font-size: var(--h2);
}





























/* iPhone1,3G,3GS,4,4s-320*480,5,5s,5c,SE(1gen)-320*568 */
@media only screen and (min-width: 320px) {
    .siteWrapper{
        width: var(--bodyWidth320);
        margin: auto;
    }
    .areaMargin{
        margin-bottom: 5em;
        padding-top: var(--headerHeight-fixedAdjust);
        margin-top: calc( var(--headerHeight-fixedAdjust) * -1);
    }






























    .site-main .firstViewImageArea{
        margin-bottom: 1em;
    }

    .swiper{
        margin-top: 30px;
        height: 300px;
        font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    }
    .swiper-slide {
        width: 100%;
        height: 600px;
        overflow: hidden;
        padding: 2em;
    }
    
    .swiper-slide img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .swiper-slide .texts {
        min-width: 40%;
        max-width: 600px;
        padding: 1.5em 3em;
        background-color: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(3px);
        color: #fff;
        overflow: hidden;
    }
    
    .swiper-slide .title {
        font-size: 2.5rem;
        margin: 0;
    }






















    header{
        position: fixed;
        height: var(--headerHeight-fixedAdjust);
    }
    .site-header{
        display: -webkit-flex;
        display: flex;
        flex-direction: row;/* default */
        flex-wrap: nowrap;/* default */
        justify-content: space-between;
        align-items: stretch;/* default */
        align-content: stretch;/* default */
        width: var(--bodyWidth320);
        background-color: var(--backGroundColor);
        z-index: 100;
    }
    header .site-branding{
        display: -webkit-flex;
        display: flex;
	    flex-direction: row;/* default */
	    flex-wrap: nowrap;/* default */
	    justify-content: flex-start;/* default */
	    align-items: stretch;/* default */
	    align-content: stretch;/* default */
        width: 80%;
    }header .site-branding img{
        width: 3em;
        height: 4em;
        margin-top: 1em;
        margin-right: 1em;
    }
    header .site-branding h1{
        font-size: 1.5em;
        letter-spacing: 0.1em;
        margin-top: 1.3em;
	font-family: "Old Newspaper Types";
    }
    header .nav{
        display: -webkit-flex;
        display: flex;
        flex-direction: row;/* default */
        flex-wrap: nowrap;/* default */
        justify-content: center;
        align-items: center;
        align-content: center;
        width: 20%;
    }
    .menuHAM-cross {
        display: flex;
        height: 4rem;
        width: 4rem;
        justify-content: center;
        align-items: center;
    }
    .menuHAM-cross span,
    .menuHAM-crossClose span,
    .menuHAM-cross span:before,
    .menuHAM-crossClose span:before,
    .menuHAM-cross span:after,
    .menuHAM-crossClose span:after {
        content: "";
        display: block;
        height: 0.2rem;
        width: 2rem;
        border-radius: 1rem;
        background-color: var(--textColor);
        position: absolute;
    }
    .menuHAM-cross span:before,
    .menuHAM-crossClose span:before {
        bottom: 0.7rem;
    }
    .menuHAM-cross span:after,
    .menuHAM-crossClose span:after {
        top: 0.7rem;
    }
    #menuHAM-check:checked ~ .menuHAM-cross span{
        background-color: rgba(255, 255, 255, 0);
    }
    #menuHAM-check:checked ~ .menuHAM-cross span::before{
        background-color: rgba(255, 255, 255, 0);
    }
    #menuHAM-check:checked ~ .menuHAM-cross span::after{
        background-color: rgba(255, 255, 255, 0);
    }
    .navMenu .menuHAM-crossClose span{
        background-color: rgba(255, 255, 255, 0);
    }
    .menuHAM-crossClose span:before {
        bottom: 0;
        transform: rotate(45deg);
    }
    .menuHAM-crossClose span:after {
        top: 0;
        transform: rotate(-45deg);
    }
    #menuHAM-check {
        display: none;
    }
    .menuHAM-crossClose{
        position: absolute;
        top: 2.4em;
        right: 3.2em;
    }
    .navMenu {
        width: 50%;
        height: 100%;
        position: fixed;
        top: 0;
        z-index: 9;
        background-color: var(--backGroundColor_halfClear);
        left: 100%;
        transition: all 0.5s;
    }
    
    .navMenu ul li {
        margin-bottom: 2em;
        list-style: none;
    }
    .navMenu nav {
        margin-top: 100px;
    }
    nav ul{
        margin-left: 1em;
    }
    .navMenu ul li a {
        display: block;
        width: 100%;
        position: relative;
    }
    .navMenu ul li a::before {
        content: "";
        width: 0.5rem;
        height: 0.5rem;
        border-top: solid 0.1rem;
        border-right: solid 0.1rem;
        transform: rotate(45deg);
        position: absolute;
        right: 1rem;
        top: 0.5rem;
    }
    #menuHAM-check:checked ~ .navMenu {
        left: 50%;
    }























    .site-main{
        margin-top: var(--headerHeight-fixedAdjust);
    }
    
    .headIMGCont{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    

























    .newsArea .newsBox a{
        text-decoration: underline;
        color: blue;
    }
    .newsBox li{
        margin-bottom: 1em;
    }
    .newsBox img{
        max-width: 15em;
    }
    .newsBox a{
        word-wrap: break-word;
    }
    .newsboxin{
        /* border: solid; */
        width: 90%;
        display: flex;
        overflow-x: auto;
        width: 100%;
    }
    .newsCont{
        border: solid;
        margin: 20px;
        width: 200px;
        padding: 10px;
    }
    .newsArea .newsContent_image{
        margin-bottom: 1em;
    }
    .newsArea .newsContent_title{
        margin-bottom: 1em;
    }
    .newsArea .newsContent_date{
        text-align: right;
    }























    .conceptback{
        width:  var(--bodyWidth320);
        height: 50em;
        background: url(../images/sp/back.jpg) no-repeat 0 13em;
    }
    .conceptBox{
        backdrop-filter: blur(2px);
        background-color: var(--backGroundImage-blur);
        height: 38em;
    }
    .conceptBoxConceptWrapper {
        display: flex;
        width: 90%;
        margin: auto;
    }
    .conceptBoxContent {
        text-align: justify;
        margin: 0;
        line-height: 4em;
        letter-spacing: 3px;
    }
    .conceptBoxImgfloat {
        float: right;
        height: 118%;
        margin-left: 1em;
        display: flex;
        align-items: flex-end;
        shape-outside: inset(calc(100% - 15em) 0 0);
    }
    .conceptBoxImgfloat img{
        width: 10em;
    }


    .whatSpeakEasy {
        margin: 1rem 0;
    }
    .popup-on {
        margin: auto;
        font-size: 80%;
        text-decoration: underline;
    }
    .popup-off{
        margin: auto;
        display: block;
        width: 3em;
        height: 3em;
        position: relative;
    }
    .popup-off::before,
    .popup-off::after{
        content: "";
        display: block;
        width: 100%;
        height: 0.1em;
        background: var(--backGroundColor);
        transform: rotate(45deg);
        transform-origin:0% 50%;
        position: absolute;
        top: calc(14% - 5px);
        left: 14%;
    }
    .popup-off::after{
        transform: rotate(-45deg);
        transform-origin:100% 50%;
        left: auto;
        right: 14%;
    }
    #popup {
        width: 80%;
        color: var(--backGroundColor);
        background: var(--textColor);
        box-shadow: inset 0 0 1em 0.5em var(--backGroundColor);
        padding: 2% 2%;
        box-sizing: border-box;
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
    #popup p{
        line-height: 2em;
        padding: 1em 3em;
    }
    img {
        width: 100%;
    }
    label {
        display: block;
    }
    
    label span:hover {
        cursor: pointer;
    }
    input[type="checkbox"] {
        display: none;
    }
    
    input[type="checkbox"]:checked + #popup {
        display: block;
        transition: 0.2s;
    }




























    .menuArea li{
        list-style: none;
    }
    .menuArea .menu_container_menuConts{
        margin: 0;
        padding: 0;
    }
    .menuArea .menu_BeverageContents,
    .menuArea .menu_foodContents{
        display: grid;
        gap:var(--cardGridGap);
        grid-template-columns: repeat(auto-fit, minmax(var(--cardStyleWidth), 1fr));
    }
    .menuBox{
        /* border: solid; */
        display: flex;
        justify-content: center;
        height: var(--contentSizeSmall1);
    }
    .menuboxin{
        /* border: solid; */
        width: 90%;
        display: flex;
        overflow-x: auto;
    }
    .menuCont{
        margin: var(--cardLiMargin);
        width: var(--cardStyleWidth);
        padding: 1em;
        box-shadow: 0 0 0.1em var(--textColor);
        text-decoration: none;
    }
    .menuCont p{
        line-height: 2em;
    }
    .menuArea summary{
        margin-left: 2em;
    }
    .menuArea .menu_container{
        margin-bottom: 2em;
    }
    .menu_container_menuConts .foodMenu li{
        margin: 2em 0;
    }





















.addressArea .map iframe{
    width: 100%;
    height: 15em;
}
.addressArea .outside img{
    margin-bottom: 2em;
}
.addressArea .notice{
    line-height: 15px;
    margin: 3em 0;
}





























    .site-footer{
        text-align: center;
    }
}
/* iPhone6,6s,7,8,SE(2gen)-375*667,12mini,13mini,X,XS,11pro--375*812 */
@media only screen and (min-width: 375px) {
    .siteWrapper{
		width: var(--bodyWidth375);
	}
    .site-header{
        width: var(--bodyWidth375);
    }
    .addressArea .map iframe{
        width: 100%;
        height: 18em;
    }
    header .site-branding h1{
        font-size: 1.7em;
        margin-top: 1em;
    }
    .swiper{
        height: 20em;
    }
    .conceptback{
        width:  var(--bodyWidth375);
        height: 53em;
    }
    .conceptBoxContent {
        line-height: 5em;
        letter-spacing: 6px;
    }
    .conceptBoxImgfloat {
        height: 106%;
    }
    .conceptBox{
        height: 41em;
    }
}
/* iPhone12,13,12pro,13pro--390*844 */
@media only screen and (min-width: 390px) {
    .siteWrapper{
		width: var(--bodyWidth390);
	}
    .site-header{
        width: var(--bodyWidth390);
    }
    header .site-branding h1{
        font-size: 1.9em;
        margin-top: 0.8em;
    }
    .swiper{
        height: 22em;
    }
    .conceptback{
        width:  var(--bodyWidth390);
        height: 52em;
    }
    .conceptBoxContent {
        line-height: 5em;
        letter-spacing: 7px;
    }
    .conceptBoxImgfloat {
        height: 123%;
    }
    .conceptBox{
        height: 40em;
    }
}
/* iPhone6plus,6splus,7plus,8plus-414*736,XR,11,XSMax,11proMax-414*896 */
@media only screen and (min-width: 414px) {
    .siteWrapper{
		width: var(--bodyWidth414);
	}
    .site-header{
        width: var(--bodyWidth414);
    }
    header .site-branding h1{
        font-size: 2.1em;
        margin-top: 0.6em;
    }
    .swiper{
        height: 23em;
    }
    .conceptback{
        width:  var(--bodyWidth414);
        height: 52em;
    }
    .conceptBox{
        height: 40em;
    }
    .conceptBoxImgfloat {
        height: 120%;
    }
}
/* iPhone12proMax,13ProMax--428*926 */
@media only screen and (min-width: 428px) {
    .siteWrapper{
		width: var(--bodyWidth428);
	}
    .site-header{
        width: var(--bodyWidth428);
    }
    header .site-branding h1{
        font-size: 2.2em;
        margin-top: 0.6em;
    }
    .conceptback{
        width:  var(--bodyWidth428);
        height: 52em;
    }
    .conceptBoxImgfloat {
        height: 122%;
    }
    .conceptBox{
        height: 40em;
    }
}
/* スマホ上限,タブレット下限 */
@media only screen and (min-width: 620px) {
    body{
        font-size: 120%;
    }
    .siteWrapper{
		width: var(--bodyWidth620);
	}
    .site-header{
        width: var(--bodyWidth620);
    }
    .addressArea .map iframe{
        height: 30em;
    }
    header .site-branding h1{
        font-size: 2.7em;
        margin-top: 0.3em;
        margin-left: 0.3em;
    }
    .swiper{
        height: 30em;
    }
    .menuArea .menu_container_menuConts{
        display: -webkit-flex;
        display: flex;
        flex-direction: row;/* default */
        flex-wrap: wrap;
        justify-content: flex-start;/* default */
        align-items: stretch;/* default */
        align-content: stretch;/* default */
    }
    .menuArea .menu_container_menuConts .menuCont{
        width: var(--cardStyleWidthTab);
    }
    .addressArea .adressContents dl{
        margin-left: 2em;
    }
    .conceptback{
        width:  var(--bodyWidth620);
        height: 53em;
    }
    .conceptBoxContent {
        letter-spacing: 10px;
    }
    .conceptBoxImgfloat {
        height: 125%;
        margin-left: 5em;
    }
    .conceptBox{
        height: 41em;
    }
}
@media only screen and (min-width: 768px) {
    body{
        font-size: 130%;
    }
    .siteWrapper{
		width: var(--bodyWidth768);
	}
    .site-header{
        width: var(--bodyWidth768);
    }
    .swiper{
        height: 35em;
    }
    .conceptback{
        width:  var(--bodyWidth768);
        height: 53em;
    }
    #popup {
        width: 50%;
        left: 70%;
    }
    .conceptBoxImgfloat {
        margin-left: 9em;
    }
}
@media only screen and (min-width: 920px) {
    .siteWrapper{
		width: var(--bodyWidth920);
	}
    .site-header{
        width: var(--bodyWidth920);
    }
    .swiper{
        height: 40em;
    }
    .conceptback{
        width:  var(--bodyWidth920);
        height: 55em;
    }
    .conceptBoxContent{
        display: -webkit-flex;
        display: flex;
        flex-direction: row-reverse;
	    flex-wrap: nowrap;/* default */
        justify-content: space-around;
	    align-items: stretch;/* default */
	    align-content: stretch;/* default */
    }
    .conceptBoxImgfloat{
        width: 30%;
        margin-left: 3em;
    }
    .conceptBoxText{
        width: 70%;
    }
    .conceptBoxContent {
        line-height: 6em;
        letter-spacing: 14px;
    }
    .conceptBoxImgfloat {
        height: 168%;
    }
    .conceptBox{
        height: 43em;
    }
}
@media only screen and (min-width: 980px) {
    .siteWrapper{
		width: var(--bodyWidth980);
	}
    .site-header{
        width: var(--bodyWidth980);
    }
    .swiper{
        height: 45em;
    }
    .conceptback{
        width:  var(--bodyWidth980);
    }
    .conceptBoxImgfloat{
        margin-left: 8em;
    }
}
@media only screen and (min-width: 1200px) {
    body{
        font-size: 140%;
    }
    .siteWrapper{
		width: var(--bodyWidth1200);
	}
    .site-header{
        width: var(--bodyWidth1200);
    }
    .swiper{
        height: 50em;
    }
    .conceptBoxImgfloat {
        shape-outside: inset(calc(100% - 18em) 0 0);
    }
    .conceptBoxImgfloat img{
        width: 13em;
    }
    .conceptback{
        width:  var(--bodyWidth1200);
        height: 39em;
        background: url(../images/sp/back.jpg) no-repeat 3em 13em;
    }
    .conceptBoxText{
        line-height: 4em;
    }
    .conceptBoxContent {
        letter-spacing: 20px;
    }
    .conceptBoxImgfloat {
        height: 120%;
    }
    .conceptBox{
        height: 27em;
    }
}
@media only screen and (min-width: 1440px) {
    body{
        font-size: 150%;
    }
    .siteWrapper{
		width: var(--bodyWidth1440);
	}
    .site-header{
        width: var(--bodyWidth1440);
    }
    .swiper{
        height: 55em;
    }
    .conceptback{
        width:  var(--bodyWidth1440);
        background: url(../images/sp/back.jpg) no-repeat 6em 13em;
    }
    .conceptBoxImgfloat {
        height: 104%;
        margin-left: 11em;
    }
}
@media only screen and (min-width: 1680px) {
    body{
        font-size: 160%;
    }
    .siteWrapper{
		width: var(--bodyWidth1680);
	}
    .site-header{
        width: var(--bodyWidth1680);
    }
    .swiper{
        height: 60em;
    }
    .menuArea .menu_container_menuConts{
        padding: 3em;
    }
    .conceptback{
        width:  var(--bodyWidth1680);
        background: url(../images/sp/back.jpg) no-repeat 9em 13em;
    }
    .conceptBoxText{
        line-height: 4em;
    }
    .conceptBoxImgfloat {
        margin-left: 14em;
    }
}
