@charset "utf-8";

/* CSS Document */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Noto Sans', sans-serif;
    background-color: #fff;
    letter-spacing: 0.2em;
}

header {
    z-index: 9999;
    padding: 20px 10% 10px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    transition: all 0.2s ease-out;
}

header.min-header {
    padding: 20px 10%;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 20px;
}

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

a:hover {
    opacity: 0.8;
}

p {
    line-height: 1.2;
}

nav {
    margin: 0 0 0 auto;
}

.pc-nav ul {
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
}

.pc-nav li {
    margin: 0 0 0 15px;
    font-size: 14px;
}

.pc-english {
    display: block;
}

.sp-english {
    display: none;
}

.en-btn {
    display: inline-block;
    height: calc(((100vw - 769px) / 46.04) + 25px);
    padding: 0 1em;
    margin-left: 2rem;
    font-size: calc(((100vw - 769px) / 121.1) + 14px);
    color: #fff;
    background: #000;
    box-shadow: 3px 3px 0 #dd9b2c;
    transition: .3s;
    font-family: 'RocknRoll One', sans-serif;
}

.en-btn:hover {
    transform: translate3d(0, 3px, 0);
    box-shadow: none;
    opacity: 1;
}

#slider {
    width: 100%;
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

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

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.flex-end {
    justify-content: flex-end;
}

.mt30 {
    margin-top: 3rem;
}

@media screen and (min-width: 1023px) {
    .br-pc {
        display: block;
    }

    .br-sp {
        display: none;
    }
}

@media screen and (max-width: 1023px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }
}

.img-sp {
    display: none;
}

@media screen and (max-width: 560px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
    }
}

.dotted {
    border-top: 1px dotted #ccc;
}

a[href*="tel:"] {
    pointer-events: none;
}

@media only screen and (max-width: 1024px) {
    a[href*="tel:"] {
        pointer-events: initial;
    }
}

.beige-back {
    background-color: #f2e3cc;
}

.orange-back {
    background-color: #f56035;
    padding: 10rem 0;
}

.yellow-back {
    background-color: #f3a41b;
    padding: 10rem 0;
}


/* heading */

.heading-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.heading-block h1,
h2 {
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #fff;
}

.slide-txt1 {
    font-size: 3vw;
    white-space: nowrap;
    font-family: 'RocknRoll One', sans-serif;
    font-weight: normal;
    /* text-shadow: 1px 2px 3px #808080; */
}

.slide-txt2 {
    font-size: 5vw;
    white-space: nowrap;
    font-family: 'RocknRoll One', sans-serif;
    font-weight: normal;
}

.heading-block p {
    font-size: 1.2vw;
    letter-spacing: 0.5em;
}

.glowAnime span {
    opacity: 0;
}


/*アニメーションで透過を0から1に変化させtext-shadowをつける*/

.glowAnime.glow span {
    animation: glow_anime_on 1s ease-out forwards;
}

@keyframes glow_anime_on {
    0% {
        opacity: 0;
        text-shadow: 0 0 0 #fff, 0 0 0 #fff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #fff, 0 0 15px #fff;
    }

    100% {
        opacity: 1;
        text-shadow: 2px 5px 8px #808080;
    }
}

.sp-nav {
    display: none;
}


/*what*/

#about {
    background-image: url("../images/top/whats_bc.png");
    background-repeat: no-repeat;
    background-position: left;
}

.what-magin {
    margin: 10rem 0 15rem;
    position: relative;
    z-index: 2;
}

.box1200 {
    max-width: 1200px;
    margin: 0 auto;
}

.whats-cantina {
    position: absolute;
    top: -30%;
    left: 5%;
    z-index: 1;
}

.whats-cantina2 {
    position: absolute;
    bottom: -50%;
    right: 5%;
    z-index: 1;
}

.what-text {
    padding: 2rem;
}


/*リンクボタン*/


/*a.button {
	display: block;
	width: 250px;
	margin: 0 auto;
	padding: 15px 30px;
	text-align: center;
	border: 1px solid #fff;
	transition: all .3s ease-out;
}
a.button:hover {
	color: #505050;
	background-color: #fff;
}*/


/* section */

.flex {
    display: flex;
}

section {
    overflow: hidden;
    /*text-align: center;*/
    padding: 100px 0;
}

section h2 {
    margin: 0 0 50px 0;
    color: #293f4d;
    text-align: center;
}

section p {
    color: #000;
    font-size: 1.8rem;
}

.collection {
    text-align: center;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.collection-main a:hover {
    opacity: 0.8;
}

.lum-lightbox {
    position: fixed;
    display: none;
    top: 115px;
    right: 0;
    bottom: 0;
    left: 0;
}

.object {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34%;
}

.object img {
    width: 100%;
}

.anim-box.zoomin.is-animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.spot-magin {
    z-index: 2;
    margin: 10rem auto;
    position: relative;
}

#spot {
    background-image: url("../images/top/photo-spot.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 65vh;
}

.spot-phot1 {
    position: absolute;
    left: 0;
    bottom: -2.7%;
    width: 34%;
}

.spot-phot1 img {
    width: 100%;
}

.spot-phot2 {
    position: absolute;
    right: 0;
    bottom: -12%;
    width: 40%;
}

.spot-phot2 img {
    width: 100%;
}

.spot-ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: 3vw;
    font-weight: bold;
    z-index: 99;
}

figure img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

figure:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.followme img {
    margin: 0 auto;
    text-align: center;
    display: block;
}

#sns-area {
    background-image: url("../images/top/sns-bc.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 4rem 0;
}

.box1300 {
    max-width: 1300px;
    margin: 0 auto;
}

.sns-text {
    margin: 2rem auto;
    text-align: center;
}

.black-bc {
    background-color: #000;
    padding: 2rem 0;
    position: relative;
}

.heart01 {
    position: absolute;
    top: 60%;
    left: 10%;
    width: 158px;
    z-index: 2;
}

.heart02 {
    position: absolute;
    top: 5%;
    left: 40%;
    width: 158px;
    z-index: 2;
}

.heart03 {
    position: absolute;
    top: 60%;
    right: 10%;
    width: 158px;
    z-index: 2;
}

.scroll-area {
    display: flex;
    align-items: center;
    height: 300px;
    overflow: hidden;
    background-color: #fff;
    padding: 2rem 0 0;
}

.slideshow {
    display: flex;
    animation: loop-slide 20s infinite linear 1s both;
    list-style: none;
}

.slide-paused:hover .slideshow {
    animation-play-state: paused;
}

.content {
    width: 400px;
    height: 300px;
    padding: 1rem 1rem 0;
    z-index: 1;
}

.content-hover {
    transition: all 0.2s;
}

.content-hover img:hover {
    transform: translateY(-20px);
    border-radius: 0 10%;
    box-shadow: 0 3px 10px 0 #333;
    opacity: 0.8;
    cursor: pointer;
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.party-ttl {
    font-size: 10rem;
    font-weight: bold;
    text-align: center;
    color: #000;
}

.party-sub-ttl {
    font-size: 5rem;
    text-align: center;
    color: #000;
    font-weight: 700;
}

#party {
    background-image: url("../images/top/party_bc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.patty-deco {
    margin: 0 auto;
    text-align: center;
}

.party-magin {
    z-index: 2;
    margin: 1rem auto 10rem;
}

.party-main {
    text-align: center;
}

.link-area {
    max-width: 1360px;
    margin: 2rem auto 10rem;
}

/* チャンピオン決定戦 */
.box900 {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}
.box1000 {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.box1200c {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.box1600 {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}
.prl10 {
	padding-left: 1rem;
	padding-right: 1rem;
}
.champion-area {
	background-color: #fffba4;
}
.fire-top {
	display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 10rem;
	position: relative;
    bottom: -1px;
}

.champion-event-area {
	background-color: #fff;
	position: relative;
	margin-top: clamp(8rem, 6vw, 10rem);
	margin-bottom: clamp(7rem, 8vw, 12rem);
}
.champion-event-area::before,.champion-event-area::after {
	content: "";
	display: block;
	width: calc(100% - 30px);
	height: 0;
	position: absolute;
	left: 0;
}
.champion-event-area::before {
	border-bottom: solid 30px #fff;
	border-left: solid 30px transparent;
	bottom: 100%;
}
.champion-event-area::after {
	border-top: solid 30px #fff;
	border-right: solid 30px transparent;
	top: 100%;
}
.orange-border {
	border-bottom: 5px solid #dd9b2c;
	margin-bottom: 2rem;
}
.champion-img-ttl {
	max-width: 50%;
	margin-top: 2rem;
}
.line-15 {line-height: 1.5em;}
.font18-24 {font-size: clamp(18px,2vw,24px);}
.orange-box-font {
	background-color: #dd9b2c;
	color: #fff;
	padding: .5rem;
	font-weight: bold;
	border-radius: 6px;
}
.red-font {
	color: #b70000;
	font-weight: bold;
}
.champion-gyoza,.champion-zangi {
	max-width: 400px;
	padding: 2rem;
	margin-left: auto;
	margin-right: auto;
}
.champion-gyoza {
	background-color: #ff8f00;
}
.champion-zangi {
	background-color: #e53a04;
}
.champion-movie-area .fire-top {
	margin-top: 4rem;
}
.champion-gyoza img,.champion-zangi img {
	max-height: 52px;
}


/* footer */

footer {
    padding: 50px 0 20px;
    background-image: url("../images/common/footer_bc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.foot-logo,
.foot-tel {
    text-align: center;
}

.foot-info {
    color: #fff;
}

.copylight {
    color: #fff;
    text-align: center;
}

.foot-info table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 16px;
}

.foot-info table th {
    width: 12%;
    /*background: #fff27d;
  border: 1px solid #ccc;
  box-sizing: border-box;*/
    padding: 5px;
    vertical-align: middle;
    font-weight: bold;
    text-align: right;
}

.foot-info table td {
    /*background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;*/
    padding: 5px;
    vertical-align: top;
    text-align: left;
}

@media all and (max-width: 767px) {

    .foot-info table th,
    .foot-info table td {
        display: block;
        width: 100%;
        text-align: left;
        /*border-bottom: none;*/
    }

    .foot-info table tr:last-child td:last-child {
        /*border-bottom: 1px solid #ccc;*/
    }
}

main {
    margin: 0;
}


/* フェードイン用のCSS */


/* 上からフェードイン */

.slide-top {
    opacity: 0;
    transform: translate(0, -20px);
    transition: all 1s ease-out;
}


/* 下からフェードイン */

.slide-bottom {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1s ease-out;
}


/* 左からフェードイン */

.slide-left {
    opacity: 0;
    transform: translate(-20px, 0);
    transition: all 1s ease-out;
}


/* 右からフェードイン */

.slide-right {
    opacity: 0;
    transform: translate(20px, 0);
    transition: all 1s ease-out;
}

.music-p {
    font-size: 14px;
}

.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube-short {
	width: 100%;
	aspect-ratio: 434 / 771;
}

.youtube iframe,.youtube-short iframe {
    width: 100%;
    height: 100%;
}


/*FOOD MENU
-------------------------------------*/
.anchor {
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}

.menu-nav {
    padding-top: 10rem;
}

.page-ttl {
    text-align: center;
    margin: 0 auto;
    padding: 8rem 2rem 0;
}

.page-ttl .ttl-img {
    padding: 60px 0 80px;
}

.page-ttl .ttl-about {
    padding: 0;
    font-weight: 500;
    font-family: 'Zen Maru Gothic', sans-serif;
    /* font-size: 1.1em; */
    line-height: 1.5;
}

.page-ttl .ttl-redtxt {
    color: #ff0000;
    font-weight: 900;
}

.white-box {
    background-color: #ffffffa2;
    display: inline-block;
    border-radius: 10px;
    padding: 1em;
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.5;

}

.sec-menu {
    padding: 60px 0;
}

.mg4 {
    margin: 2rem auto;
}

.wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.wrap-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1190px;
    margin: 0 auto;
}

.item {
    width: 16.6%;
    min-width: 200px;
    padding: 1rem;
}

.item p {
    font-size: 1.6rem;
}

.item a :hover {
    transform: scale(1.1, 1.1);
}

.pizza-price {
    font-size: 80%;
    text-align: right;
    white-space: nowrap;
}

.pizza-span {
    font-size: 75%;
    white-space: nowrap;
}

.pasta-name {
    white-space: nowrap;
    text-align: left;
}

.text-box {
    padding: 0 3px;
    margin: 0 5px;
    border: solid 1px #231815;
    border-radius: 3px;
    /*角の丸み*/
    letter-spacing: normal;
}

.text-box p {
    margin: 0;
    padding: 0;
}

.text-box2 {
    padding: 1rem 0.5rem;
    margin: 1rem 0.1rem;
    background-color: #fff;
    border-radius: 3px;
    /*角の丸み*/
}

.text-box2 p {
    margin: 0;
    padding: 0;
}

.menu-ttl {
    text-align: center;
    margin: 0 auto;
    padding: 0 2rem;
}

.box560 {
    width: 560px;
}

.tuika-box {
    padding: 1rem;
    /*ボックス内の余白*/
    background: #fffcf4;
    border-radius: 8px;
    /*角の丸み*/
    box-shadow: 0px 0px 5px silver;
    /*5px=影の広がり具合*/
    list-style: none;
}

.tuika-box li {
    line-height: 0.8;
    padding: 0.5em 0;
    width: 45%;
    display: flex;
    text-align: left;
    display: inline-block;
}

.mg-auto {
    margin: 0 auto;
}

.menu-about {
    padding: 0;
    font-weight: 500;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.2em;
    line-height: 1.8;
}

.menu-about-red {
    color: #ff0000;
    padding: 0;
}


/* ザンギミートマン登場 */
.food-ttl-area {
    position: relative;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.zangimeatman-img {
    position: absolute;
    top: 0;
    left: clamp(500px, 70vw, 682px);
}

.zangimeatman-img img {
    /* max-height: 100px; */
}

.zangi-s{
    transform-origin: center bottom;
    animation: yurayura 3s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(3deg);
  }
  50%{
      transform: rotate(-3deg);
  }
}

.zangi-name {
    margin: 0 auto;
    position: relative;
    top: -15px;
}

.food-zangi-area {
    justify-content: center;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}

.food-zangi-area .menu-about {
    padding-top: 40px ;
}

.zangimeatman-img2 {
    /* position: absolute; */
    position: relative;
    top: -20px;
    /* left: clamp(500px, 70vw, 682px); */
    right: 0;
}




.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

@media all and (max-width: 767px) {
    .page-ttl {
        padding: 4rem 1rem 0;
    }

    .page-ttl .ttl-img {
        padding: 20px 0 40px;
    }

    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }

    /* ザンギミートマン登場 */
    .zangi-sp {
        max-width: 70%;
        margin: 0 auto;
    }

}


/*DRINK MENU
-------------------------------------*/

.wf-roundedmplus1c {
    font-family: "M PLUS Rounded 1c";
}

.font700 {
    font-weight: 700;
}

.font30 {
    font-size: 3rem;
}

.drink-ttl {
    margin: 0 0 2rem;
    text-align: left;
}

hr.style3 {
    border-top: 3px dashed #ad954e;
}

.cp_table {
    width: 100%;
}

.flex {
    display: flex;
    display: -ms-flexbox;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
}

hr.tab-r-line {
    position: relative;
    top: calc(50% - 1px);
    margin: 0 10px;
    border: none;
    border-top: dotted 1px #ad954e;
}

.tab-reader-box2 {
    flex: auto;
}

.wine {
    display: block;
    margin-bottom: 2rem;
}

.highball-img {
    max-width: 480px;
}

.highball-img img {
    border-radius: 10px;
    margin: 0 auto;
}

.wine-txt {
    font-size: 1.4rem;
    margin-left: 1em;
    color: #ad954e;
}

@media all and (max-width: 767px) {
    .highball-img {
        top: 0;
        left: 0;
        margin: 10px auto;
    }

    .original figure {
        margin: 40px auto;
        text-align: center;
    }

}

/*PARTY
-------------------------------------*/

.plan-ttl {
    font-size: 4rem;
    font-weight: bold;
}

.party {
    text-align: center;
}

.party-sub {
    margin-bottom: 6rem;
    font-size: 3rem;
    text-align: left;
    font-weight: 400;
}

.party-hr {
    border-width: 0;
    border-top: 3px solid #231815;
    margin: 1rem 0;
}

.second-area {
    margin: 10rem auto;
}

.odoburu-place {
    text-align: center;
    font-size: 5rem;
    font-weight: bold;
    margin: 2em auto;
    padding: 0.5em;
    width: 100%;
    background-color: #fff;
    /* 背景色 */
    border: 1px solid #ccc;
}

.odoburu-text {
    font-size: 3rem;
}

.sp-width50 img {
    margin-top: 3rem;
}

#access {
    background-image: url("../images/access/access_bc.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.white-back {
    background-color: #fff;
    max-height: 650px;
}

.pd10 {
    padding: 1rem;
}

.course-menu {
    list-style: none;
}

.course-menu li {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    padding-left: 1em;
    text-indent: -1em;
}

.pc-only {
    display: block;
}
.sp-only {
    display: none;
}


@media screen and (max-width: 1280px) {
    .slide-txt1 {
        font-size: 3vw;
    }

    .slide-txt2 {
        font-size: 5vw;
    }

    .whats-cantina {
        position: absolute;
        top: -10%;
        left: 0;
        z-index: 1;
    }

    .whats-cantina2 {
        position: absolute;
        bottom: -65%;
        right: 0;
        z-index: 1;
    }

    .what-text {
        padding: 4rem;
    }

    /*section p {
    padding: 2rem;
}*/
    .spot-magin {
        margin: 2rem auto;
    }

    #spot {
        height: 52vh;
    }

    .spot-ttl {
        top: 20%;
    }

    .spot-phot1 {
        bottom: -23%;
        left: -5%;
        width: 50%;
    }

    .spot-phot2 {
        bottom: -2%;
        width: 50%;
    }

    .font30 {
        font-size: 2rem;
    }

    .heart01 {
        width: 74px;
        top: 60%;
    }

    .heart02 {
        width: 74px;
        top: 10%;
    }

    .heart03 {
        width: 74px;
        top: 60%;
    }

    .content {
        width: 200px;
        height: 150px;
        padding: 1rem 1rem 0;
    }

    .sp-width50 img {
        width: 70%;
        margin-bottom: 2rem;
        margin-top: 0;
    }

    .link-area {
        padding: 0 2rem;
    }
}


/*横幅が768px以下になった際の指定*/

@media only screen and (max-width: 768px) {

    /* ENGLISHボタン */
    .pc-english {
        display: none;
    }

    .sp-english {
        display: block;
    }

    .en-btn {
        font-size: 16px;
        height: 30px;
        margin-right: 2em;
        margin-left: calc(((100vw - 360px) / 1.6492) + 0px);
    }

    /*ハンバーガーメニュー*/
    .pc-nav {
        display: none;
    }

    .sp-nav {
        z-index: 1;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        background: rgba(255, 255, 255, 0.6);
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.2s ease-in-out;
        padding: 40px 0;
        overflow-y: scroll;
    }

    #hamburger {
        position: relative;
        display: block;
        width: 30px;
        height: 25px;
        margin: 0 0 0 auto;
    }

    #hamburger span {
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #000;
        transform: translateY(-50%);
    }

    #hamburger::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
    }

    #hamburger::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70%;
        height: 2px;
        background-color: #000;
    }

    /*スマホメニュー*/
    .sp-nav ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        list-style: none;
    }

    .sp-nav li {
        margin: 0;
        padding: 0;
    }

    .sp-nav li span {
        font-size: 15px;
        color: #000;
    }

    .sp-nav li a,
    .sp-nav li span {
        display: block;
        padding: 8px 0;
    }

    /*-閉じるアイコンー*/
    .sp-nav .close {
        position: relative;
        padding-left: 20px;
    }

    .sp-nav .close::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #000;
        transform: rotate(45deg);
    }

    .sp-nav .close::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        display: block;
        width: 16px;
        height: 1px;
        background: #000;
        transform: rotate(-45deg);
    }

    .toggle {
        transform: translateY(0);
        opacity: 1;
    }

    .main-visual {
        padding: 0;
    }

    h2 {
        line-height: 1.6;
        text-align: center;
    }

    /* section */
    #service ul li {
        width: 50%;
    }

    .whats-cantina {
        position: absolute;
        top: 0%;
        left: 0%;
        z-index: 1;
    }

    .whats-cantina2 {
        position: absolute;
        bottom: -45%;
        right: 0%;
        z-index: 1;
    }

    section p {
        font-size: 1.6rem;
    }

    #spot {
        height: 45vh;
    }

    .spot-phot1 {
        bottom: -3%;
        width: 40%;
    }

    .spot-phot2 {
        bottom: -3%;
        width: 50%;
    }

    .spot-ttl {
        top: 38%;
        left: 38%;
        font-size: 3rem;
    }

    .wrap {
        justify-content: flex-start;
    }

    .wrap-center {
        justify-content: flex-start;
    }

    .item {
        width: 33.3333%;
        padding: 0px 5px;
    }

    .item img {
        text-align: center;
    }

    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}

@media only screen and (max-width: 560px) {
    section {
        overflow: hidden;
        /*text-align: center;*/
        padding: 0;
    }

    .slide-txt1 {
        font-size: 4vw;
    }

    .slide-txt2 {
        font-size: 6.5vw;
    }


    .whats-cantina {
        position: absolute;
        top: -10%;
        left: 0%;
        z-index: 1;
    }

    .whats-cantina2 {
        position: absolute;
        bottom: -235px;
        right: 0%;
        z-index: 1;
    }

    .spot-phot1 {
        bottom: -4%;
        width: 55%;
    }

    .spot-phot2 {
        bottom: -4%;
        width: 63%;
    }

    .heart01 {
        width: 50px;
        top: 70%;
    }

    .heart02 {
        width: 50px;
        top: 10%;
    }

    .heart03 {
        width: 50px;
        top: 70%;
    }

    .party img {
        width: 50%;
        text-align: center;
    }

    .party-ttl {
        font-size: 5rem;
    }

    .party-sub-ttl {
        font-size: 2rem;
    }

    p {
        font-size: 1.4rem;
    }

    .item {
        width: 50%;
        min-width: auto;
    }

    .wrap-center .item p {
        font-size: 1.4rem;
    }

    .menu-ttl {
        padding: 0;
    }

    .menu-ttl img {
        margin-bottom: 10px;
    }

    .menu-about {
        font-size: 1em;
        line-height: 1.4;
        text-align: left;
    }

    .menu-about-red {
        font-size: 1em;
    }

    .wrap-center .item .pizza-price {
        text-align: center;
        font-size: 70%;
        letter-spacing: 2px;
    }

    .plan-ttl {
        font-size: 2rem;
    }

    .party-sub {
        margin-bottom: 3rem !important;
        font-size: 1.6rem;
    }

    .odoburu-place {
        text-align: center;
        font-size: 2.5rem;
        font-weight: bold;
        margin: 2em auto;
        padding: 0.5em;
        width: 100%;
        background-color: #fff;
        /* 背景色 */
        border: 1px solid #ccc;
    }

    .odoburu-text {
        font-size: 1.6rem;
    }

    .sp-width50 img {
        width: 50%;
        margin-bottom: 2rem;
    }

    .tuika-box li {
        width: 100%;
    }
	
	section.champion-area {
		padding-bottom: 100px;
	}
}

html {
    scroll-behavior: smooth;
}

.gotop {
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #999;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #333;
    opacity: 0.5;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}

.gotop::before {
    content: "";
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}

.gotop:hover {
    opacity: 1;
}

@media (max-width: 750px) {
    .gotop {
        width: 40px;
        height: 40px;
        text-indent: -9999px;
        opacity: 1;
        border: none;
        background: none;
        bottom: 10px;
        right: 10px;
    }

    .gotop::before {
        bottom: 0;
    }
}


/*20241213追加*/

.drink-sub-catch{
	color: #000;/*文字色*/
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px #ad954e;/*上線*/
  border-bottom: solid 3px #ad954e;/*下線*/
  font-size: 1.9rem;	
　}

.pt40{padding-top: 40px;}
.pb40{padding-bottom: 40px;}

.indent {
	padding-left:1em;
	text-indent:-1em;
}

@media (max-width: 750px) {

.indent {
    padding-left: 1em;
    text-indent: 0;
}