/* Fonts
------------------------------------------------------------*/
body {
	font-size: 75%; /* IE */
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif !important;
	/*
	font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	font-family: "qMmpS Pro W3","Hiragino Kaku Gothic Pro","CI","Meiryo",verdana,Osaka,"lr oSVbN","MS PGothic",Sans-Serif;
	*/
	-webkit-text-size-adjust: 100%;
}
body .yu_go{
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif ;
}
body .futura{
	font-family: futura-pt, sans-serif;
	font-style: normal;
}
body .hira{
	font-family: "qMmpS Pro W3","Hiragino Kaku Gothic Pro","CI","Meiryo",verdana,Osaka,"lr oSVbN","MS PGothic",Sans-Serif;
}
a:hover {
    text-decoration: none;
}
html {
    scroll-behavior: smooth;
}
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: url(../images/top/bg_block02.png) no-repeat center bottom #262626;
    background-size: cover;
}
.loader {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite, fadeOut 3s ease forwards;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
#content {
    display: none;
}
.header_design {
    width: 100%;
    height: 80px;
    background-color: #000;
    display: flex;
    align-items: center;
    position: relative;
}
.logo {
    position: absolute;
    width: 164px;
    height: 164px;
    z-index: 5;
    top: 25px;
    left: 30px;
}
.nav_wrapper {
    margin-left: auto;
    margin-right: 60px;
    width: 300px;
    display: none;
}
.nav_wrapper.active {
    display: block;
}
.hamburger {
    display: block;
    cursor: pointer;
    width: 30px;
    margin-left: auto;
    margin-right: 30px;
}
.hamburger div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
}
.ul_design {
    display: flex;
    color: #fff;
    font-size: 1.1rem;
    justify-content: space-between;
}
.ul_design li:first-child {
    color: #950012;;
}
.ul_design a:hover {
    color: #950012;
    transition: all 0.4s;
}
.header_design .sticky {
    display: flex;
    padding: 0 26px;
    justify-content: space-between;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: #feac1a;
    width: 200px;
    height: 50px;
    z-index: 999;
    transition: background-color 0.3s;
}
.header_design .sticky:hover {
    background-color: #222;
}
.header_design p {
    font-size: 1rem;
    color: #fff;
    display: flex;
    align-items: center;
}
.reserve {
    position: relative;
    z-index: 10;
}
.header_design .reserve {
    font-size: 1.2rem;
}
.reserve::before {
    content: ">";
    position: absolute;
    left: -18px;
    transition: left 0.3s ease;
}
.sticky:hover .reserve::before {
    animation: moveLeft 0.3s forwards;
} 
@keyframes moveLeft {
    0% {
        left: -18px;
    }
    100% {
        left: -14px;
    }
}
.reserve::after {
    content: "|";
    position: absolute;
    right: -18px;
}
.sticky:hover .reserve::after {
    animation: moveRight 0.3s forwards;
} 
@keyframes moveRight {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.main_img_wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
}
.main_img {
    opacity: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}
.main_img:nth-child(1) {
    background-image: url('../images/top/top_mv01.jpg');
}
.main_img:nth-child(2) {
    background-image: url('../images/top/top_mv02.jpg');
}
.main_img:nth-child(3) {
    background-image: url('../images/top/top_mv03.jpg');
}
.active {
    opacity: 1;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none; 
    width: 50px;
    height: 50px;
    background: #950012;
    text-align: center;
    padding-top: 20px;
    transition: opacity 0.3s ease, padding-top 0.3s ease;
    z-index: 20;
}
.back-to-top.show {
    display: block;
    opacity: 1;
}
.back-to-top:hover {
    padding-top: 15px;
    opacity: 0.8;
}
.back-to-top img  {
    width: 20px;
}
.main_wrapper{
    width: 100%;
}
.news {
    width: 700px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}
.main_wrapper h1 {
    font-size: 2rem;
    margin-bottom: 50px;
}
.concept h1 {
    margin-bottom: 50px;
}
.concept h3 {
    font-size: 1.5rem;
    margin: 10px 0 8px;
    border-bottom: solid 1px;
}
.news_title, .concept_title {
    position: relative;
}
.news_title::after, .concept_title::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 50px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.concept_title::after {
    top: 65px;
}
.news_title.active::after, .concept_title.active::after {
    transform: scaleX(1) translateX(-50%);
}
.news_items {
    width: fit-content;
    margin: 0 auto;
}
.news_item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.news_date {
    font-size: 0.75rem;
    padding-right: 7px;
}
.news_category {
    font-size: 0.75rem;
    background-color: #003453;
    color: #ffffff;
    width: 100px;
    min-width: 100px;
    display: inline-block;
    height: 21px;
    text-align: center;
    line-height: 21px;
}
.news_category_new {
    background-color: #FEAC1A;
}
.news_subtitle {
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.news_subtitle .news_link:hover {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.concept {
    width: 100%;
    background-image: url(../images/top/tpo_block01_bg01.jpg);
    background-size: cover;
    text-align: center;
    padding: 80px 0 160px;
    line-height: 2;
}
.concept p {
    margin: 25px 0 16px;
    font-size: 0.9rem;
    color: #fff;
}
.brown {
    color: #fff;
    font-weight: bold;
}
.brown_txt{
    color: #000;
    font-weight: bold;
}
.concept_block{
    background-color: #950012;
    padding: 40px 30px;
    margin: 0 auto;
    max-width: 880px;

}
.zigokumusi {
    position: relative;
    width: 100%;
    text-align: center;
    background: url(../images/top/bg_block02.png) no-repeat center bottom #262626;
    background-size: contain;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 150px;
}
.zigokumusi h3 {
    margin: 80px 0 8px;
}
.zigokumusi p {
    color: #fff;
}
.explain_first {
    font-size: 1.2rem;
    line-height: 1.6;
}
.musi_icon {
    position: absolute;
    top: -90px;
    left: 30px;
    width: 175px;
    height: 175px;
}
.bold{
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}
.asa {
    position: relative;
    font-size: 1.3rem;
    color: #c70e24;
    font-weight: bold;
}
/*.zigokumusi .asa::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/top/top_block02_icon01.png) no-repeat left top;
    background-size: 25px 25px;
    width: 25px;
    height: 25px;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
}*/
.zigokumusi .asa::after, .zigokumusi .chuya::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/common/bg_ttl_b.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 40px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.asa.active::after, .chuya.active::after {
    transform: scaleX(1) translateX(-50%);
}
.explain_second {
    margin: 45px 0 16px;
    font-size: 1rem;
    line-height: 1.6;
}
.img_wrapper {
    width: 100%;
    margin: 30px auto 16px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.img_wrapper img {
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 280px;
}
.img_wrapper img.active {
    opacity: 1;
}
.sp_img_wrapper {
    display: none;
}
.sp_char01 {
    display: none;
}
.chuya {
    position: relative;
    font-size: 1.3rem;
    font-weight: bold;
    color: #c70e24;
}
/*.zigokumusi .chuya::before {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/top/top_block02_icon02.png) no-repeat left top;
    background-size: 78px 25px;
    width: 78px;
    height: 25px;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}*/
.bg {
    width: 100%;
    background-color: #eee;
}
.live {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;

    padding: 30px 0 90px;
}
.live h3 {
    color: #950012;
}
.live_icon {
    position: absolute;
    top: -90px;
    left: 30px;
    width: 175px;
    height: 175px;
}
.livekitchen {
    display: flex;
    position: relative;
    width: 600px;
    margin-top: 145px;
    margin-left: 70px;
    margin-right: 70px;
}
.ex_live {
    background-color: #950012;
    color: #fff;
    margin-top: 60px;
}
.ex_textarea {
    flex: 1;
    position: relative;
    text-align: left;
    line-height: 1.6;
    z-index: 2;
}
.ex_textarea p {
    color: #fff;
}
.morning {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    width: 65px;
    text-align: center;
}
.morning::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/top/clock01.png) no-repeat left top;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.morning::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 32px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.mini_title {
    font-weight: 500px;
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}
.ex_live {
    padding: 35px 85px 35px 45px;
    font-size: 14px;
    transition: opacity 1s ease;
}
.ex_img {
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 550px;
    z-index: 10;
}
.ex_img img {
    width: 510px;
    height: 510px;
    transition: opacity 0.5s ease;
}
.more {
    position: relative;
    width: fit-content;
    margin-top: 30px;
    background-color: #262626;
    padding: 13px 28px 11px 28px;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.more:hover {
    background-color: rgba(38, 38, 38, 0.8);
    color: #fff;
}
.more::before {
    content: ">";
    position: absolute;
    left: 8px;
    transition: left 0.3s ease;
}
.more:hover::before {
    animation: moreMoveLeft 0.3s forwards;
} 
@keyframes moreMoveLeft {
    0% {
        left: 8px;
    }
    100% {
        left: 12px;
    }
}
.mirror {
    margin-left: auto;
}
.mirror .ex_live {
    padding: 35px 85px 35px 100px;
}
.mirror .more {
    margin-left: auto;
}
.mirror .ex_img {
    left: auto;
    right: 550px
}
.noon {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    width: 65px;
    text-align: center;
}
.noon::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/top/clock02.png) no-repeat left top;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.noon::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 32px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.night {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    width: 65px;
    text-align: center;
}
.night::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/top/clock03.png) no-repeat left top;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.night::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 32px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.morning.active::after, .noon.active::after, .night.active::after {
    transform: scaleX(1) translateX(-50%);
}
.mirror .noon {
    margin-left: auto;
}
.menu {
    align-items: stretch;
    display: flex;
    gap: 55px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 150px;
}
.menu_inner {
    display: flex;
    flex-direction: column;
    width: 330px;
}
.menu_inner .more {
    display: block;
    width: 260px;
    margin: auto auto 0;
}
.menu_inner .more::before {
    left: 50px;
}
.menu_inner .more:hover::before {
    animation: moreMoveLeftMenu 0.3s forwards;
}
@keyframes moreMoveLeftMenu {
    0% {
        left: 50px;
    }
    100% {
        left: 55px;
    }
}
.menu_img {
    align-items: center;
    aspect-ratio: 330 / 226;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 50px;
}
.menu_img img{
    height: auto;
    max-width: 330px !important;
}
.morning_menu {
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}
.morning_menu::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/top/clock01.png) no-repeat left top;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.morning_menu::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
}
.noon_menu {
    width: 100%;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.noon_menu::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/top/clock02.png) no-repeat left top;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.noon_menu::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
}
.night_menu {
    width: 100%;
    position: relative;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.night_menu::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/top/clock03.png) no-repeat left top;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.night_menu::after {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
}
.livekitchen .ex_img img,
.menu_inner {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.livekitchen .ex_textarea,
.menu_inner {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.livekitchen .ex_img img.active,
.menu_inner.active,
.livekitchen .ex_textarea.active,
.menu_inner.active {
    opacity: 1;
}
.notice {
    text-align: center;
    line-height: 1.7;
    font-size: 0.7rem;
    margin-top: 2em;
}
.access {
    width: 1200px;
    margin: 100px auto 0;
    padding-bottom: 80px;
}
.access_title, .about_title{
    position: relative;
    width: 130px;
    font-size: 1rem;
    font-weight: 500; 
    letter-spacing: 3px;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 8px;
}
.access_title::before, .about_title::before {
    content: "";
    background: url(../images/common/bg_ttl.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    position: absolute;
    left: 50%;
    margin-left: -32px;
    bottom: -15px;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}
.access_title.active::before, .about_title.active::before {
    transform: scaleX(1);
}
.access_inner {
    font-size: 16px;
    font-weight: 400;
    color: #262626;
    padding: 25px 0 10px 40px;
    border-bottom: solid 1px #262626;
}
.access_inner p {
    margin-bottom: 16px;
}
.access ul {
    margin-top: 35px;
    width: 500px;
}
.access_inner span {
    display: block;
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 500;
    position: relative;
}
.access_inner span::before {
    content: "";
    background-size: 25px 18px;
    position: absolute;
    width: 25px;
    height: 18px;
    left: -40px;
}
.access_inner .icon1::before {
    background: url(../images/top/block04_icon01.png) no-repeat left top;
    background-size: 25px 18px;
}
.access_inner .icon2::before {
    background: url(../images/top/block04_icon02.png) no-repeat left top;
    background-size: 25px 18px;
}
.access_inner .icon3::before {
    background: url(../images/top/block04_icon03.png) no-repeat left top;
    background-size: 25px 18px;
}
.access_inner .icon4::before {
    background: url(../images/top/block04_icon04.png) no-repeat left top;
    background-size: 25px 18px;
}
.access_inner .icon5::before {
    background: url(../images/top/block04_icon05.png) no-repeat left top;
    background-size: 25px 18px;
}
.about_bg {
    background: #fbfbfb;
}
.about {
    width: 1200px;
    display: flex;
    gap: 75px;
    padding-top: 20px;
    padding-bottom: 100px;
    align-items: end;
    margin: 0 auto;
}
.about img {
    width: 605px;
}
.about_inner table {
    width: 510px;
    margin-top: 50px;
    border-collapse: collapse;
    box-sizing: border-box;
}
th,td {
    padding: 13px 0 11px;
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 100;
    border-bottom: solid 1px #000;
}
th {
    width: 80px;
}
td {
    width: 420px;
}
.timetable {
    display: flex;
    gap: 30px;
}
.fee {
    display: flex;
}
.fee div:first-child {
    margin-right: 0.9rem;
}
.red {
    color: #f00;
}
footer {
    background-color: #000;
    padding: 60px 0 60px;
}
.footer_inner {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}
.footer_inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-top: #fff 1px solid;
    border-bottom: #fff 1px solid;
}
.footer_inner ul img {
    vertical-align: middle;
}
.footer_section {
    display: flex;
    margin-top: 60px;
    align-items: end;
}
.footer_section img {
    margin-right: 20px;
    width: 120px;
}
.footer_img1 {
    width: 53px;
}
.footer_img2 {
    width: 101px;
}
.footer_img3 {
    width: 49px;
}
.footer_section p {
    width: 400px;
    font-size: 1.1rem;
    line-height: 1.2;
    color: #fff;
    text-align: left;
    padding-top: 5px;
    padding-bottom: 8px;
}
.footer_section p span {
    font-size: 0.9rem;
}
.footer_section .footer_TEL {
    display: flex;
    background: #950012;
    justify-content: center;
    align-items: center;
    width: 275px;
    height: 70px;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.footer_TEL:hover {
    background-color: #262626;
}
small {
    display: block;
    margin-top: 50px;
    font-size: 0.6rem;
    color: #fff;
}
.char01 {
    position: absolute;
    top: 510px;
    right: 0;
    width: 73px;
}
.char02 {
    position: absolute;
    top: 600px;
    left: 0;
    width: 61px;
}
.char03 {
    position: absolute;
    top: 1100px;
    left: 0;
    width: 48px;
}
.char04 {
    position: absolute;
    top: 1150px;
    right: 0;
    width: 48px;
}
.char05 {
    position: absolute;
    top: -70px;
    right: 100px;
    width: 170px;
}
.char06 {
    position: absolute;
    top: -70px;
    right: 400px;
    width: 207px;
}
.char07 {
    position: absolute;
    top: -70px;
    right: 100px;
    width: 252px;
}
.sp_br {
    display: none;
}
.sp375_br {
    display: none;
}
@media (max-width: 1200px) {
    .live {
        width: 100%;
    }
    .access {
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .access .access_title {
        align-items: start;
    }
    .about {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin: 0 auto;
    }
    .timetable {
        height: 89.6px;
    }
    .livekitchen {
        margin: 125px auto 0;
    }
    .ex_live {
        text-align: center;
        padding-left: 85px;
    }
    .morning, .noon, .night {
        margin: 0 auto;
    }
    .ex_textarea {
        margin-top: 510px;
    }
    .ex_textarea .more {
        margin: 30px auto;
    }
    .ex_img {
        left: 50%;
        transform: translateX(-50%);
        top: -80px;
    }
    .mirror .ex_img {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    .mirror .ex_live {
        padding-left: 85px;
    }
    .char05 {
        position: absolute;
        top: -70px;
        right: -10vw;
        z-index: 20;
    }
    .char06 {
        position: absolute;
        top: -70px;
        right: 55vw;
        z-index: 20;
    }
    .char07 {
        position: absolute;
        top: -70px;
        right: -9vw;
        z-index: 20;
        width: 40%;
    }
}
@media (max-width: 1120px){
    .musi_icon {
        top: -175px;
    }
    .live_icon {
        top: -175px;
    }
}
@media (max-width: 820px) {
    .footer_inner {
        width: 100%;
    }
    .footer_section {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .nav_wrapper.active {
        position: fixed;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav_wrapper {
        position: absolute;
        top: -100vh;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        margin-right: 0;
    }
    .ul_design {
        flex-direction: column;
    }
    .ul_design li {
        margin-top: 10vw;
    }
    .bar {
        width: 30px;
        height: 4px;
        background-color: #fff;
        margin: 6px 0;
        transition: 0.4s;
        position: relative;
        z-index: 1001;
    }
    .hamburger {
        display: block;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
    .main_img_wrapper {
        height: 80vw;
    }
    .logo {
        width: 50px;
        height: 50px;
        top: 15px;
    }
    .concept {
        padding-left: 3%;
        padding-right: 3%;
    }
    .concept p {
        text-align: left;
    }
    .musi_icon, .live_icon {
        top: -15vw;
        width: 30%;
        height: auto;
    }
    .img_wrapper img {
        width: 47%;
    }
    .asa, .chuya {
        font-size: 1.5rem;
    }
    .zigokumusi, .live {
        padding-top: 25%;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 20vw;
    }
    .livekitchen {
        width: 100%;
    }
    .ex_textarea {
        padding-top: calc(100vw* 0.8 - 225px);
    }
    .explain_first, .explain_second {
        text-align: left;
    }
    .ex_live {
        padding: 5%;
    }
    .mirror .ex_live {
        padding: 5%;
    }
    .ex_textarea {
        margin-top: 0;
        z-index: 5;
    }
    .ex_img {
        z-index: 2;
        left: 36%;
        width: 80%;
    }
    .mirror .ex_img {
        left: 36%;
    }
    .ex_img img {
        width: 100%;
        height: auto;
    }
    .morning, .noon, .night {
        position: absolute;
        top: -15%;
        right: 4%;
    }
    .menu {
        margin-top: 20%;
    }
    .menu_inner {
        width: 100%;
    }
    .menu_inner img {
        width: 100%;
        height: auto;
    }
    .menu_inner .more {
        width: 80%;
    }
    .access_title {
        margin: 0 auto 8px;
    }
    .about_title {
        margin: 7% auto;
    }
    .access_wrapper {
        padding: 5%;
    }
    .access ul {
        width: 100%;
    }
    .about {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 10%;
    }
    .about_inner table {
        width: 100%;
    }
    td {
        width: auto;
    }
    .about img {
        width: 100%;
    }
    .timetable {
        height: auto;
    }
    .footer_inner ul {
        gap: 10%;
    }
    .footer_section {
        margin-top: 0;
    }
    .footer_section img {
        width: 20%;
        margin: 5% auto;
    }
    .footer_section p {
        width: auto;
        padding-left: 2%;
        padding-right: 2%;
    }
    .footer_section .footer_TEL {
        width: 60%;
        height: auto;
        padding-top: 3%;
        padding-bottom: 3%;
    }
    small {
        margin-top: 3%;
    }
    footer {
        padding: 10% 0 6%;
    }
    .char01, .char02, .char03, .char04 {
        display: none;
    }
    .char05 {
        position: absolute;
        top: calc(80vw - 225px + 60px - 27vw);
        width: 40%;
        right: 0;
        z-index: 3;
    }
    .char06 {
        position: absolute;
        top: calc(80vw - 225px + 60px - 27vw);
        width: 40%;
        right: 0;
        z-index: 3;
    }
    .char07 {
        position: absolute;
        top: calc(80vw - 225px + 60px - 23vw);
        width: 40%;
        right: 0;
        z-index: 3;
    }
    .sp_char01 {
        display: block;
    }
    .sp_img_char01 {
        position: absolute;
        bottom: 6vw;
        right: 6vw;
        width: 20%;
    }
    .sp_img_wrapper {
        display: flex;
        width: 47%;
        justify-content: center;
        align-items: center;
    }
    .img_wrapper .sp_img_02 {
        width: 30%;
    }
    .sp_br {
        display: block;
    }
    .concept_block{
        background-color: #950012;
        padding: 40px 30px;
        margin: auto;
    }
    .zigokumusi .asa::after{
    content: "";
    position: absolute;
    display: block;
    background: url(../images/common/bg_ttl_b.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 160px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    }
    .zigokumusi .chuya::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/common/bg_ttl_b.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 120px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    }
    .asa.active::after, .chuya.active::after {
    transform: scaleX(1) translateX(-50%);
    }
}
@media (max-width: 700px) {
    .news{
        width: 100%;
    }
}
@media (max-width: 425px) {
    .news_subtitle{
        width: 70%;
    }
}
@media (max-width: 375px) {
    .news_subtitle{
        width: 55%;
    }
    .sp375_br {
        display: block;
    }
}
@media (min-width: 769px) {
    .nav_wrapper {
        display: block;
    }
    .hamburger {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 768px) {
    .zigokumusi .asa::after,.zigokumusi .chuya::after {
    content: "";
    position: absolute;
    display: block;
    background: url(../images/common/bg_ttl_b.png) no-repeat left top;
    background-size: 64px 9px;
    width: 64px;
    height: 9px;
    top: 84px;
    left: 50%;
    transform: scaleX(0) translateX(-50%);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    }
    .asa.active::after, .chuya.active::after {
    transform: scaleX(1) translateX(-50%);
    }
}