@charset "UTF-8";

:root {
    --content-width: 520px;
    --side-width: calc((100% - var(--content-width)) / 2);
}

body {
    position: relative;
}

.sp-only {
    display: block;
}

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

.enOn {
    display: none;
}

.enOff {
    display: block;
}

.r-mark {
    font-size: 0.8rem;
    font-weight: 600;
}

.bolder-larger {
    font-weight: 600;
    font-size: 1.8rem;
}

/* SP */
.wrapper {
    position: relative;
    z-index: 0;
    overflow: hidden;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
}

/*Google Chrome、Safariへの対応*/
.wrapper::-webkit-scrollbar {
    display: none;
}

.menu {
    position: fixed;
    top: 40px;
    right: 0;
    width: 55px;
    height: 50px;
    z-index: 11;
}

.translated-ltr .menu {
    top: 100px;
}

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

.menu .menu-trigger span {
    background-image: url(../images/icon-sp-menu.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: block;
    height: 54px;
    margin: 0 auto;
}

.menu .en-circle {
    background-color: #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    margin-top: 20px;
}

.menu .en-circle a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: "Noto Serif", serif;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.menu .en-circle a:hover {
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 50%;
    text-decoration: underline;
    color: #000;
}

.translated-ltr .menu .en-circle {
    display: none;
}

.navi {
    visibility: hidden;
    transform: translateY(-100%);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30 !important;
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-align: center;
    overflow-y: scroll;
}

.navi.active {
    visibility: visible;
    transform: translateY(0);
}

.navi img {
    width: 100%;
    max-width: 80px;
    padding: 30px 0 20px;
}

.navi p {
    color: #d52b36;
    line-height: 1, 2rem;
    padding-bottom: 20px;
}

.navi ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

.navi ul li {
    padding: 10px 0 10px 0;
    width: calc(100% / 2);
}

.navi ul li a {
    font-size: 1rem;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}

.navi ul li a:hover {
    text-decoration: none;
}

.navi .ticket-btn {
    background-color: #d52b36;
    width: 90%;
    height: 60px;
    margin: 2rem auto;
    position: relative;
}

.navi .ticket-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: "Noto Serif", serif;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.navi .ticket-btn a:hover {
    background-color: #fff;
    border: 1px solid #d52b36;
    text-decoration: underline;
    color: #d52b36;
}

.navi .ticket-btn a .icon-ticket::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon-ticket.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    margin-right: 5px;
}

.navi .ticket-btn a:hover .icon-ticket::before {
    content: "";
    background-image: url("../images/icon-ticket-red.png");
}

.navi .ticket-end {
    background-color: #e3dcdc;
    border: dashed 1px #d52b36;
    color: #d52b36;
    width: 90%;
    margin: 2rem auto;
    padding: 5% 0;
}

.navi .close-icon img {
    width: 100%;
    max-width: 45px;
    cursor: pointer;
}

.pc-navi {
    display: none;
}

main {
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-overflow-scrolling: auto;
    overflow: hidden;
}

main::-webkit-scrollbar {
    display: none;
}

.sp-footer-contact {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    z-index: 9998;
    overflow: hidden;
}

.sp-footer-contact .sp-deco-03 {
    background-image: url(../images/deco-03.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background-size: 100% 100%;
    width: 45px;
    height: 45px;
}

.sp-footer-contact-flex {
    position: fixed;
    bottom: 0px;
    display: flex;
    justify-content: center;
    gap: 50px;
    width: var(--content-width);
    left: calc((100% - var(--content-width)) / 2);
}

.sp-footer-contact img {
    width: 40px;
    height: 40px;
    margin: 0 5px;
}

.page-up {
    display: flex;
    align-items: center;
}

.page-up a {
    font-size: 1rem;
    color: inherit;
    text-decoration: none;
}

.page-up a:hover {
    text-decoration: underline;
}

.page-up span::before {
    content: "▲";
    padding-right: 5px;
}

.sp-footer-contact .sp-deco-04 {
    background-image: url(../images/deco-04.png);
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background-size: 100% 100%;
    width: 45px;
    height: 45px;
}

.pc-footer-contact {
    display: none;
}

.pc-deco-01 {
    display: none;
}

.pc-deco-02 {
    display: none;
}

main .main-cont {
    width: 100%;
    min-height: 100vh;
    margin-inline: auto;
    position: relative;
    z-index: 10;
}

main .main-bg {
    background: url(../images/bg-main.png),
        linear-gradient(
            to bottom,
            rgba(228, 237, 210, 1),
            rgba(70, 180, 255, 1)
        );
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100%;
    padding-top: 20px;
}

.sp-deco-01 {
    background-image: url(../images/deco-01.png);
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-size: 100% 100%;
    width: 45px;
    height: 45px;
}

.sp-deco-02 {
    background-image: url(../images/deco-02.png);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    background-size: 100% 100%;
    width: 45px;
    height: 45px;
}

main .main-bg .white-curtain {
    background-color: #fff;
    width: 90%;
    margin-inline: auto;
    height: auto;
    padding: 20px 0 5px 0;
    text-align: center;
    position: relative;
}

main .main-bg .white-curtain h1 p .logo-mark {
    width: 100%;
    max-width: 100px;
    padding-bottom: 20px;
}

main .main-bg .white-curtain h1 .red-01 {
    color: #d52b36;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: "Noto Serif", serif;
    padding: 0 0 30px;
}

main .main-bg .white-curtain h1 p .logo-text {
    width: 100%;
    max-width: 230px;
    padding: 0 0 20px;
}

main .main-bg .white-curtain h1 .plain {
    color: inherit;
    padding: 5px 0;
}

main .main-bg .white-curtain h1 .red-02 {
    color: #d52b36;
    font-weight: 900;
    font-size: 1.4rem;
    padding: 20px 0;
}

main .main-bg .white-curtain .color-days {
    padding: 10px 0;
}

main .main-bg .white-curtain .blue {
    color: blue;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 5px 0;
}

main .main-bg .white-curtain .blue span {
    font-size: 1.2rem;
}

main .main-bg .white-curtain .green {
    color: green;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 5px 0;
}

main .main-bg .white-curtain .green span {
    font-size: 1.2rem;
}

main .main-bg .white-curtain .pink {
    color: #ff009b;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 5px 0;
}

main .main-bg .white-curtain .pink span {
    font-size: 1.2rem;
}

main .main-bg .white-curtain .bold {
    color: inherit;
    font-weight: 600;
    font-size: 1.4rem;
    padding: 10px 0;
}

main .main-bg .white-curtain .ticket-btn {
    background-color: #d52b36;
    width: 90%;
    height: 60px;
    margin: 2rem auto;
    position: relative;
}

main .main-bg .white-curtain .ticket-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: "Noto Serif", serif;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

main .main-bg .white-curtain .ticket-btn a:hover {
    background-color: #fff;
    border: 1px solid #d52b36;
    text-decoration: none;
    color: #d52b36;
}

main .main-bg .white-curtain .ticket-btn a .icon-ticket::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon-ticket.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    margin-right: 5px;
}

main .main-bg .white-curtain .ticket-btn a:hover .icon-ticket::before {
    content: "";
    background-image: url("../images/icon-ticket-red.png");
}

main .ticket-end {
    background-color: #e3dcdc;
    border: dashed 1px #d52b36;
    color: #d52b36;
    width: 85%;
    margin: 2rem auto;
    text-align: center;
    padding: 5% 0;
}

main .main-bg .sakekorechan {
    margin-top: 100px;
    width: 100%;
    height: auto;
    background-image: url(../images/sakekorechan-bg.png?1);
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: 50% 15%;
    position: relative;
    z-index: 0;
}

main .main-bg .sakekorechan .deco-03 {
    background-image: url(../images/deco-03.png?1);
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: 0;
    z-index: 10;
    background-size: 100% 100%;
    width: 45px;
    height: 45px;
}

main .main-bg .sakekorechan .deco-04 {
    background-image: url(../images/deco-04.png?1);
    position: absolute;
    top: -35px;
    right: 0;
    z-index: 10;
    background-size: 100% 100%;
    width: 45px;
    height: 45px;
}

main .main-bg .sakekorechan .sakechan {
    width: 100px;
    height: 300px;
    background-image: url(../images/sakechan.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 10;
}

main .main-bg .sakekorechan .korechan {
    width: 100px;
    height: 300px;
    background-image: url(../images/korechan.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -80px;
    left: 0;
    z-index: 10;
}

main .main-bg .sakekorechan h2 {
    color: #fff;
    font-weight: 900;
    font-size: 1.4rem;
    font-family: "Noto Serif", serif;
    text-align: center;
    padding: 50px 0 40px;
}

main .main-bg .sakekorechan p {
    color: #fff;
    text-align: left;
    width: 80%;
    padding-bottom: 40px;
    margin-inline: auto;
    line-height: 1.8rem;
}

main section {
    background-color: #fff;
    width: 100%;
    margin-inline: auto;
    border-bottom: 2px solid #d52b36;
}

main section:last-of-type {
    border-bottom: none;
}

.contact {
    margin-bottom: 90px;
}

main section .about-inner,
.overview-inner,
.venue-inner,
.ticket-inner,
.stage-inner,
.sake-brewery-inner,
.food-inner,
.company-inner,
.illust-inner,
.about-detail-inner,
.notes-inner,
.news-inner,
.contact-inner {
    margin-bottom: 30px;
}

main section img {
    width: 100%;
    margin-inline: auto;
}

main section h2 {
    color: #d52b36;
    text-align: center;
    font-size: 1.8rem;
    font-family: "Noto Serif", serif;
    padding: 30px 0 10px;
}

main section h3 {
    text-align: center;
    font-size: 1rem;
    padding: 0px 0 10px 0;
}

main section .head-bg {
    color: #2b6fd4;
    text-align: center;
    font-size: 1.2rem;
    font-family: "Noto Serif", serif;
    background-color: #f3f7ea;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-inline: auto;
    margin-block: 10px;
}

main section .stage-inner .head-bg {
    text-align: left;
}

main section .stage-inner .head-bg .guest-name {
    padding-left: 10px;
    color: #76a356;
    font-size: 1.4rem;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
}

main section .head-bg-sp {
    color: #2b6fd4;
    text-align: center;
    font-size: 1.2rem;
    font-family: "Noto Serif", serif;
    background-color: #f3f7ea;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-inline: auto;
    margin-block: 10px;
}

main section .head-bg-h-80 {
    color: #2b6fd4;
    text-align: center;
    font-size: 1.2rem;
    font-family: "Noto Serif", serif;
    background-color: #f3f7ea;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-inline: auto;
    margin-block: 10px;
}

main section .head-bg.talkshow {
    color: #76a356;
    text-align: center;
    font-size: 1.2rem;
    font-family: "Noto Serif", serif;
    background-color: #f3f7ea;
    width: 85%;
    height: 50px;
    line-height: 50px;
    margin-inline: auto;
    margin-block: 10px;
}

main section .head-bg span:first-child {
    /* font-size: 1.1rem; */
}

main section .head-bg span:nth-child(2) {
    font-size: 0.8rem;
}

main section .head-bg-sp span:first-child {
    font-size: 1.2rem;
}

main section .time-inner {
    width: 100%;
    margin-inline: auto;
    text-align: left;
    font-weight: 600;
}

main section .time-inner time {
    display: inline-block;
}

main section .inner {
    text-align: center;
    margin: 0 auto;
    width: 85%;
}

main section .inner img {
    width: 100%;
}

main section .inner span a {
    color: #2b6fd4;
}

main section .inner span a:hover {
    text-decoration: none;
}

main section time span {
    font-size: 1rem;
}

main section .time-inner .time-01 {
    color: #7570df;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-inline: auto;
    padding: 20px 0 5px;
}

main section .time-inner .time-02 {
    color: #76a356;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-inline: auto;
    padding: 20px 0 5px;
}

main section .time-inner .time-03 {
    color: #e477be;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-inline: auto;
    padding: 20px 0 5px;
}

main section .time-inner time span:nth-of-type(odd) {
    padding-right: 15px;
}

main section .time-inner time span:nth-of-type(even) {
    padding-right: 0;
}

main section .attention {
    color: #e08f3f;
    font-weight: 600;
}

main section .attention-black {
    color: #000;
    font-weight: 600;
}

main section .ticket-btn {
    background-color: #d52b36;
    width: 85%;
    height: 60px;
    margin: 0 auto 30px;
    position: relative;
}

main section .ticket-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: "Noto Serif", serif;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

main section .ticket-btn a:hover {
    background-color: #fff;
    border: 1px solid #d52b36;
    text-decoration: none;
    color: #d52b36;
}

main section .ticket-btn a .icon-ticket::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon-ticket.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    margin-right: 5px;
}

main section .ticket-btn a:hover .icon-ticket::before {
    content: "";
    background-image: url("../images/icon-ticket-red.png");
}

main section .ticket-btn.talkshow {
    background-color: #76a356;
    width: 85%;
    height: 60px;
    margin: 0 auto 10px;
    position: relative;
}

main section .ticket-btn.talkshow a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    font-family: "Noto Serif", serif;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

main section .ticket-btn.talkshow a:hover {
    background-color: #fff;
    border: 1px solid #76a356;
    text-decoration: none;
    color: #76a356;
}

main section .ticket-btn.talkshow a .icon-ticket::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../images/icon-ticket.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
    margin-right: 5px;
}

main section .ticket-btn.talkshow a:hover .icon-ticket::before {
    content: "";
    background-image: url("../images/icon-ticket-green.png");
}

main section .overview-inner h4 {
    color: #2b6fd4;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 20px 0 10px;
}

main section .overview-inner .time-01 {
    color: #7570df;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    width: 85%;
    margin-inline: auto;
    padding: 50px 0 5px;
}

main section .overview-inner .time-02 {
    color: #76a356;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0 5px;
}

main section .overview-inner .time-03 {
    color: #e477be;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0 5px;
}

main section .venue-inner h4 {
    color: #2b6fd4;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 20px 0 10px;
}

main section .venue-inner .inner span {
    width: 100%;
    margin-inline: auto;
    display: block;
    margin: 10px auto 15px;
}

main section .venue-inner iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

main section .ticket-inner .time-inner {
    display: flex;
    gap: 12px;
    width: 85%;
    margin-inline: auto;
}

main section .ticket-inner h4:first-of-type {
    color: #2b6fd4;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 20px 0 30px;
}

main section .ticket-inner .price {
    color: #d52b36;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 5px 0;
}

main section .ticket-inner .ticket-naiyo {
    padding: 10px 0 5px;
}

main section .ticket-inner img {
    width: 100%;
}

main section .ticket-inner .video-bg {
    /* position: relative;
    width: 85%;
    height: 700px;
    margin-inline: auto; */
    position: relative;
    width: 85%;
    height: 700px;
    margin-inline: auto;
}

main section .ticket-inner .video-bg .video-cont {
    /* position: absolute;
    top: -227px;
    right: 0;
    bottom: 20px;
    left: 0;
    overflow: hidden; */
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    overflow: hidden;
    height: 700px;
}

main section .ticket-inner .video-bg .video-cont video {
    /* position: absolute;
    top: 50%;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%; */
    /* clip-path: inset(25% 0 0 0); */
    position: absolute;
    top: 0;
    left: 50%;
    object-fit: cover;
    transform: translate(-50%, -20px);
    width: 100%;
    height: 700px;
}

main section .ticket-inner .time-inner time {
    line-height: 1.8rem;
}

main section .ticket-inner h4:nth-of-type(2) {
    color: #e477be;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 0 0 30px;
}

main section .ticket-inner .head-bg {
    display: none;
}

main section .ticket-inner .head-bg-h-80 {
    width: 85%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

main section .ticket-inner .head-bg-h-80 span:nth-child(2) {
    display: block;
    margin-top: -20px;
}

main section .period {
    color: #d52b36;
    font-weight: 600;
    text-align: center !important;
    line-height: 1.3rem !important;
}

main section .stage-inner .time-inner {
    display: flex;
    gap: 12px;
    width: 85%;
    margin-inline: auto;
}

main section .stage-inner .time-inner time {
    line-height: 1.8rem;
}

main section .stage-inner h4 {
    color: inherit;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 20px 0 30px;
}

main section .stage-inner .comingsoon {
    color: #7570df;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

main section .stage-inner .period:last-of-type {
    padding: 0;
}

main section .stage-inner h5 {
    color: #76a356;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 20px 0 30px;
}

main section .stage-inner .inner p img {
    width: 100%;
}

main section .stage-inner .inner h5 {
    text-align: left;
    color: #76a356;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 10px;
    margin-bottom: 20px;
    background: #f3f7ea;
}

main section .stage-inner .inner h5.time-01 {
    color: #7570df;
    background: #e5e4ff;
}

main section .stage-inner .inner p {
    width: 100%;
}

main section .stage-inner .inner .introduce {
    padding: 0 0 30px;
}

main section .stage-inner .period {
    color: #d52b36;
    font-weight: 600;
    text-align: center;
}

main section .sake-brewery-inner h4 {
    color: #2b6fd4;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 20px 0 30px;
}

main section .sake-brewery-inner table {
    width: 85%;
    margin-inline: auto;
    margin-bottom: 20px;
    border: 1px solid #e71a7b;
}

.sake-brewery-inner table.enOff {
    display: table;
}

.translated-ltr main section .sake-brewery-inner table.enOff {
    display: none;
    opacity: 0;
}

.translated-ltr main section .sake-brewery-inner table.enOn {
    display: block;
    display: table;
}

main section .sake-brewery-inner table th {
    width: 35%;
    background-color: #f9f4f8;
    border: 1px solid #e71a7b;
    font-weight: 600;
    vertical-align: middle;
}

main section .sake-brewery-inner table td {
    text-align: left;
}

main section .sake-brewery-inner table .border {
    border-bottom: 1px solid #e71a7b;
}

main section .sake-brewery-inner table td span {
    display: block;
    line-height: 1.3rem;
    padding: 10px 0 5px 10px;
    color: #2b6fd4;
}

main section .food-inner .food-name {
    width: 85%;
    margin-inline: auto;
    padding: 0 0 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

main section .food-inner .food-desc {
    padding: 0 0 0 0;
}

main section .food-inner .yokohama-kunsei-kobo {
    display: flex;
    justify-content: left;
    width: 85%;
    margin-inline: auto;
    padding: 0 0 20px 0;
}

main section .food-inner .yokohama-kunsei-kobo p {
    display: flex;
    gap: 15px;
    max-width: 100px;
    margin-inline: 0;
    padding: 15px 0 0;
}

main section .food-inner h4 {
    color: #7570df;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 20px 0 30px;
}

main section .food-inner .kitchencar-menu {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    margin-inline: auto;
}

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-01 {
    display: flex;
    gap: 30px;
    margin-inline: 0;
    padding: 0 0 20px;
}

main
    section
    .food-inner
    .kitchencar-menu
    .kitchencar-menu-cont-01:last-of-type {
    padding: 0 0 0;
}

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-02 {
    width: calc(100% / 2);
    margin-inline: 0;
    /* padding: 0 0 20px; */
    display: flex;
    flex-direction: column;
}

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-02 img {
    aspect-ratio: 1;
}

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-02 p {
    width: 100%;
    padding: 0 0 0;
    margin-inline: 0;
}

main
    section
    .food-inner
    .kitchencar-menu
    .kitchencar-menu-cont-02
    .kitchencar-store-name {
    padding: 5px 0 15px;
}

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-02 ul {
    list-style-type: initial;
    list-style-position: inside;
    line-height: 1.3rem;
}

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-02 ul span {
    font-size: 0.8rem;
}

main
    section
    .food-inner
    .kitchencar-menu
    .kitchencar-menu-cont-02
    .kitchencar-store-desc {
    padding: 15px 0 10px;
    flex-grow: 1;
}

main
    section
    .food-inner
    .kitchencar-menu
    .kitchencar-menu-cont-01:last-of-type
    .kitchencar-menu-cont-02
    .kitchencar-store-desc {
    padding: 15px 0 0;
}

/* main section .food-inner .kitchencar-menu .kitchencar-menu-cont-02:nth-of-type(-n+2) {
    padding: 0 0 0;
} */

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-03 p {
    display: flex;
    gap: 15px;
    max-width: 100px;
    margin-inline: 0;
    padding: 10px 0 0;
}

main section .food-inner .kitchencar-menu .kitchencar-menu-cont-03 img {
    width: 100%;
    max-width: 30px;
    height: auto;
}

main section .company-inner .company-name {
    width: 85%;
    margin-inline: auto;
    padding: 0 0 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

main section .company-inner .company-desc {
    padding: 0 0 0 0;
}

main section .company-inner .company-list {
    list-style: disc;
    list-style-position: inside;
    width: 85%;
    margin-inline: auto;
    margin-block: 20px;
}

main section .company-inner .company-list p {
    width: 85%;
    margin-inline: 0;
    margin-block: 0;
    padding: 10px 0 20px 0;
}

main section .illust-inner h4 {
    color: inherit;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: "Noto Serif", serif;
    line-height: 1.8rem;
    padding: 30px 0 0;
}

main section .illust-inner .caption {
    text-align: center;
    padding: 0;
}

main section .about-detail-inner .caption {
    text-align: right;
    padding: 0;
}

main section .notes-inner h4 {
    width: 85%;
    margin-inline: auto;
    color: #d52b36;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8rem;
    padding: 30px 0 0;
}

main section .news-inner h4 {
    width: 85%;
    margin-inline: auto;
    color: inherit;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.8rem;
    padding: 30px 0 20px;
}

main section .news-inner .twitter-timeline {
    width: 90%;
    margin-inline: auto;
}

/* 各セクションのp ここから */
main section .about-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0;
}

main section .about-inner p:last-of-type {
    padding: 20px 0 0;
}

main section .overview-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 0 0 20px;
}

main section .overview-inner p:last-of-type {
    padding: 0;
}

main section .venue-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 0 0 20px;
}

main section .ticket-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 0 0 20px;
}

main section .venue-inner p:last-of-type {
    padding: 0;
    font-size: 1.4rem;
    font-weight: bold;
}

main section .ticket-inner p:last-of-type {
    padding: 0;
}

main section .stage-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 0 0 20px;
}

main section .sake-brewery-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 0 0 20px;
}

main section .food-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0;
}

main section .food-inner p:nth-of-type(2) {
    padding: 0 0 20px 0;
}

main section .company-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0;
}

main section .illust-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0 0;
}

main section .about-detail-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0 0;
}

main section .notes-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0 0;
}

main section .contact-inner p {
    text-align: left;
    line-height: 1.8rem;
    width: 85%;
    margin-inline: auto;
    padding: 20px 0 0;
}

/* 各セクションのp ここまで */

main section .more-btn {
    background-color: #d52b36;
    width: 85%;
    height: 60px;
    margin: 2rem auto 0;
    position: relative;
}

main section .more-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    line-height: 1.3rem;
    font-family: "Noto Serif", serif;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

main section .more-btn a:hover {
    background-color: #fff;
    border: 1px solid #d52b36;
    text-decoration: none;
    color: #d52b36;
}

aside {
    display: none;
}

.sp-footer {
    width: 100%;
    height: 370px; /* height: 300px; */
}

.sp-footer .footer-info {
    width: 100%;
    background-image: url(../images/sakekorechan-bg.png?1);
    background-repeat: no-repeat;
    background-size: 120%;
    background-position: 40% 15%;
    padding: 20px 0;
    position: absolute;
    z-index: 0;
    text-align: center;
}

.sp-footer .footer-info h2 p .logo-mark {
    width: 100%;
    max-width: 100px;
    padding: 20px 0 10px;
}

.sp-footer .footer-info h2 p .logo-text {
    width: 100%;
    max-width: 230px;
    padding: 20px;
}

.translated-ltr .sp-footer .footer-info h2 p .logo-text {
    padding: 10px 20px;
}

.sp-footer .footer-info h2 .plain {
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 0;
    margin-inline: auto;
    line-height: 1.8rem;
}

.translated-ltr .pc-footer .footer-info h2 .plain span {
    display: block;
}

.pc-footer {
    display: none;
}

.translated-ltr .sp-footer .footer-info h2 .plain.enOn {
    display: block;
}

.translated-ltr .sp-footer .footer-info h2 .plain.enOff {
    display: none;
}

/* PC */
@media (min-width: 769px) {
    .sp-only {
        display: none;
    }

    .wrapper {
        position: relative;
        z-index: 0;
        background-image: url(../images/bg.jpg);
        background-repeat: repeat;
        background-size: cover;
        overflow-x: hidden;
    }

    .pc-navi,
    aside {
        width: var(--side-width);
        min-height: 100vh;
        position: fixed;
        top: 0;
    }

    .pc-navi {
        display: block;
        background: inherit;
        right: 0;
        z-index: 10;
    }

    .translated-ltr .pc-navi {
        padding-top: 56px;
    }

    .pc-navi .pc-navi-cont {
        width: 70%;
        margin: 1.8rem auto;
    }

    .pc-navi ul {
        list-style: none;
    }

    .pc-navi ul li {
        display: flex;
        align-items: center;
        padding: 20px 0 0;
        font-weight: 700;
    }

    .pc-navi ul .icon-logo-mark {
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        width: 20px;
        padding-right: 5px;
    }

    .pc-navi ul .has-icon .icon-logo-mark {
        opacity: 1;
        width: 20px;
        padding-right: 5px;
    }

    .pc-navi ul li a {
        text-decoration: none;
        color: inherit;
    }

    .pc-navi ul .has-icon a {
        color: #d52b36;
    }

    .menu,
    .navi {
        display: none;
    }

    aside {
        display: block;
        background: inherit;
        left: 0;
        z-index: 10;
    }

    aside .aside-cont {
        width: 80%;
        margin: 1.8rem auto;
        text-align: center;
    }

    aside .aside-cont p .logo-mark {
        width: 100%;
        max-width: 100px;
        padding-bottom: 20px;
    }

    aside .aside-cont .red-01 {
        color: #d52b36;
        font-weight: 900;
        font-size: 1.2rem;
        font-family: "Noto Serif", serif;
    }

    aside .aside-cont p .logo-text {
        width: 100%;
        max-width: 230px;
        padding: 20px;
    }

    aside .aside-cont .plain {
        color: inherit;
        padding: 5px 0;
    }

    aside .aside-cont .red-02 {
        color: #d52b36;
        font-weight: 900;
        font-size: 1.4rem;
        padding: 0 0 20px;
    }

    aside .aside-cont .en-circle {
        background-color: #000;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        position: relative;
        margin-inline: auto;
    }

    aside .aside-cont .en-circle a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #fff;
        font-family: "Noto Serif", serif;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s;
    }

    aside .aside-cont .en-circle a:hover {
        background-color: #fff;
        border: 1px solid #000;
        border-radius: 50%;
        text-decoration: none;
        color: #000;
    }

    .translated-ltr aside .aside-cont .en-circle {
        display: none;
    }

    .pc-deco-01 {
        display: block;
        background-image: url(../images/deco-01.png);
        background-repeat: no-repeat;
        position: fixed;
        top: 0;
        left: var(--side-width);
        z-index: 9999;
        background-size: 100% 100%;
        width: 45px;
        height: 45px;
    }

    .pc-deco-02 {
        display: block;
        background-image: url(../images/deco-02.png);
        background-repeat: no-repeat;
        position: fixed;
        top: 0;
        right: var(--side-width);
        z-index: 9999;
        background-size: 100% 100%;
        width: 45px;
        height: 45px;
    }

    .pc-footer-contact {
        display: block;
        /* position: fixed;
        bottom: 0;
        left: 0; */
        width: 100%;
        height: 50px;
        z-index: 20;
    }

    .pc-footer-contact .pc-deco-03 {
        display: block;
        background-image: url(../images/deco-03.png);
        background-repeat: no-repeat;
        position: fixed;
        bottom: 0;
        left: var(--side-width);
        z-index: 9999;
        background-size: 100% 100%;
        width: 45px;
        height: 45px;
    }

    .pc-footer-contact-flex {
        display: flex;
        justify-content: space-around;
        width: var(--content-width);
        position: fixed;
        bottom: 0;
        left: calc((100% - var(--content-width)) / 2);
    }

    .pc-footer-contact img {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }

    .pc-footer-contact .pc-deco-04 {
        display: block;
        background-image: url(../images/deco-04.png);
        background-repeat: no-repeat;
        position: fixed;
        bottom: 0;
        right: var(--side-width);
        z-index: 9999;
        background-size: 100% 100%;
        width: 45px;
        height: 45px;
    }

    main {
        max-width: var(--content-width);
        position: relative;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        padding-bottom: 300px;
    }

    main .main-cont {
        height: auto;
        background: #fff;
        padding-bottom: 60px;
    }

    .sp-deco-01 {
        display: none;
    }

    .sp-deco-02 {
        display: none;
    }

    main section .head-bg {
        width: 100%;
    }

    main section .ticket-inner .head-bg {
        display: block;
    }

    main section .ticket-inner .head-bg-h-80 {
        display: none;
    }

    .contact {
        /* margin-bottom: 0; */
    }

    main section .food-inner .kitchencar-menu .kitchencar-menu-cont-02 p {
        font-size: 1rem;
        padding: 5px 0 10px;
    }

    main section .stage-inner .head-bg {
        text-align: left;
    }

    main section .stage-inner .head-bg .guest-name {
        color: #76a356;
        font-size: 1.4rem;
        font-family: "Noto Serif", serif;
        line-height: 1.8rem;
        padding: 10px;
        margin-bottom: 20px;
    }

    .sp-footer-contact {
        display: none;
    }

    main .main-bg {
    }

    main .main-bg .white-curtain {
    }

    main .main-bg .white-curtain .logo-mark {
    }

    main .main-bg .sakekorechan {
        background-position: 50% 20%;
    }

    .pc-footer {
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 360px;
    }

    .pc-footer .footer-info {
        width: 100%;
        background-image: url(../images/sakekorechan-bg.png?1);
        background-repeat: no-repeat;
        background-size: 120%;
        background-position: 40% 15%;
        padding: 20px 0;
        position: absolute;
        z-index: 0;
        text-align: center;
    }

    .pc-footer .footer-info h2 p .logo-mark {
        width: 100%;
        max-width: 100px;
        padding: 30px 0 20px;
    }

    .pc-footer .footer-info h2 p .logo-text {
        width: 100%;
        max-width: 230px;
        padding: 20px;
    }

    .translated-ltr .pc-footer .footer-info h2 p .logo-text {
        padding: 10px 20px;
    }

    .pc-footer .footer-info h2 .plain {
        color: #fff;
        padding: 10px 0;
        margin-inline: auto;
        line-height: 1.8rem;
    }

    .translated-ltr .pc-footer .footer-info h2 .plain span {
        display: block;
    }

    .sp-footer {
        display: none;
    }

    .translated-ltr .pc-footer .footer-info h2 .plain.enOn {
        display: block;
    }
    .translated-ltr .pc-footer .footer-info h2 .plain.enOff {
        display: none;
    }
}
