@charset "utf-8";

/*===========
article__header
=============*/
.article__header{
    background-image: url(../images/main-visual-sp.jpg);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
    padding: 120px 0 00;
    overflow: hidden; 
}

.mainVsual{
    position: relative;
    width: 70%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    max-width: 600px;
}

/*DJ針*/
.mainVsual::before{
    display: inline-block;
    content: '';
    position: absolute;
    background-image: url(../images/main-djarm-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    width: 17%;
    height: auto;
    aspect-ratio: 1 / 3;  /* 縦横比を固定 */
    top: -4%;
    right: -2%;
    z-index: 3;
}

/* みたけくん */
.mainVsual::after{
    display: inline-block;
    content: '';
    position: absolute;
    background-image: url(../images/main-mitake-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    width: 38%;
    height: auto;
    bottom: -14%;
    right: 83%;
    aspect-ratio: 2 / 3; /* 縦横比を固定尾 */
    

    transform-origin: center bottom;
    animation: yurayura 2s linear infinite;
}

@keyframes yurayura {
    0% , 100%{
        transform: rotate(8deg);
    }
    50%{
        transform: rotate(-8deg);
    }
}

/*回転animation*/
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.rotate {
  animation: rotate 12s infinite linear;
}



/*==テロップ==*/
.news-banner {
  overflow: hidden;
  height: 48px;
  width: 100%;
  background-color: var(--primary-white);
  border-top: 3px solid var(--primary-Black);
  border-bottom: 3px solid var(--primary-Black);
  box-shadow: 0px 8px 0px 0px #FCF3D2;
  margin-top: 78px;
  position: relative;
}

.news-banner__track-wrapper {
  display: flex;
  width: fit-content;
  animation: scroll-banner 30s linear infinite;
}

.news-banner__content {
  display: flex;
  white-space: nowrap;
}

.news-banner__content span {
  font-family: "IBM Plex Sans JP";
  font-size: 2rem;
  font-weight: 700;
  line-height: 48px;
  color: var(--primary-Black);
  padding-right: 4rem;
}

/* アニメーション定義 */
@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroll{
    color:var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8; /* 181.25% */
    text-align: center;
    margin-top: 26px;
    position: relative;
}


.scroll__item{
    display: block;
    margin: 0 auto;
    animation: bounce 1.4s ease infinite; /* ぽよんと弾むアニメーションを無限に繰り返す */
}

/* 点滅アニメーションの設定 */
@keyframes bounce {
    0% {
        transform: translateY(0) scale(1); /* 通常の位置とサイズ */
    }
    50% {
        transform: translateY(0) scale(0.8); /* 元の位置に戻りつつ縮む */
    }
    100% {
        transform: translateY(0) scale(1); /* 元のサイズと位置に戻る */
    }
}

@media screen and (min-width:769px) {
    .article__header{
        background-image: url(../images/main-visual-pc.jpg);
        background-repeat: no-repeat;
        width: 100%;
        background-size: cover;
        padding: 30px 0 16px;
        margin-top: 67px;  /* ← ヘッダーの高さと同じ */
    }

    .mainVsual{
        position: relative;
        width: 40%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-inline: auto;
        max-width: 440px;
    }

/*DJアーム*/
   .mainVsual::before{
        display: inline-block;
        content: '';
        position: absolute;
        background-image: url(../images/main-djarm-sp.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top;
        width: 17%;
        height: auto;
        aspect-ratio: 1 / 3;  /* 縦横比を固定 */
        top: 4%;
        right: -5%;
        z-index: 3;
    }
/*みたけ君*/
   .mainVsual::after{
        display: inline-block;
        content: '';
        position: absolute;
        background-image: url(../images/main-mitake-sp.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top;
        width: 35%;
        height: auto;
        bottom: 20%;
        right: 98%;
        aspect-ratio: 2 / 3; /* 縦横比を固定尾 */
    
        transform: translate(100%);
    }

    /*==テロップ==*/
        .news-banner {
        height: 64px;
        margin-top: 10px;
        }

        .news-banner__content {
        display: flex;
        white-space: nowrap;
        }

        .news-banner__content span {
        font-size: 2.8rem;
        line-height: 68px;
        padding-right: 4rem;
        }
    
        .scroll{
            font-size: 2.4rem;
            line-height: 1.2; 
            margin-top: 20px;
        }
    
    @media screen and (min-width:1030px) {
        .mainVsual::after{
            display: inline-block;
            content: '';
            position: absolute;
            background-image: url(../images/main-mitake-sp.png);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: top;
            width: 45%;
            height: auto;
            bottom: 0;
            right: 107%;
            aspect-ratio: 2 / 3; /* 縦横比を固定尾 */

            transform: translate(100%);
        }
    }
}/*pc769px

/*=====================================
article__header
=========================================*/
.section__about{
    padding: 32px 0 96px ;
}

.aboutImg-box{
    width: 70%;
    margin-left:  auto;
    display: block;
}
.aboutImg{
    width: 100%;
    border-radius: 16px 0px 0px 16px;
    border-top: 2px solid var(--primary-Black);
    border-bottom: 2px solid var(--primary-Black);
    border-left: 2px solid var(--primary-Black);
}

.about_top{
    padding: 40px 0 0;
    margin-left:5%;
}

.ttl__box{
    position: relative;
}

.about__ttl{
    color: #F9B42C;
    font-size: 7.2rem;
    font-weight: 900;
    line-height: normal;
    position: relative;
    text-align: left; 
}

.about__ttl__p{
    color:var(--primary-Black);
    font-size: 7.2rem;
    font-weight: 900;
    line-height: normal;
    text-align: left; 
    text-shadow: 6px 6px 0px #452F29;
    position: absolute;
    inset: 0;
     z-index: -1;
     /* 追加 */
    -webkit-text-stroke: 6px var(--primary-Black);
}

.ttl__box::before {
    background-color: var(--primary-orange); /* 線の色 */
    bottom: 0px; /* 線の位置 */
    content: "";
    height: 6px; /* 線の高さ */
    left: 16px; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
    width: 40px; /* 線の長さ */
  }

.about__subttl{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1; /* 103.125% */
    letter-spacing: 0.01em;
    margin-top: 34px;
}


.about__txt__area{
    padding: 43px 4.2% 26px;
}

.about__ttl__mitake-pc{
    display: none;
}

.about__txtbox{
    display: grid;
    justify-content: center;
}

.about__txt{
    color: var(--primary-Black);
    font-family: "IBM Plex Sans JP";
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1; 
    margin-top: 20px;
}

.about__txt:first-of-type{
    margin-top: 0;
}

.about__ttl__mitake{
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 0 0 auto;
}

@media screen and (min-width:370px){
    .about_top{
        padding: 40px 4.2% 0;
        margin-left:5%;
    }
}

@media screen and (min-width:500px) {
    .about_top{
        padding: 40px 5% 0 17%;
    }

    .about__txt__area{
        padding: 0;
        margin-top: 43px;
    }

    .about__ttl__mitake{
        margin: 0 15% 0 auto;
    }
    
}/*500pxから*/

@media screen and (min-width:769px) {
    .section__about{
        padding: 40px 0 138px ;
    }
    .about__main{
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }

    .aboutImg-box{
        width: 35.5%;
    }
    .aboutImg{
        border-top: 4px solid var(--primary-Black);
        border-bottom: 4px solid var(--primary-Black);
        border-left: 4px solid var(--primary-Black);
    }

    .about_top{
        padding: 87px 0 0 10%;
    }

    .about__ttl{
    font-size: 8.4rem;
    }

    .about__ttl__p{
        font-size: 8.4rem;
        text-shadow: 8px 8px 0px #452F29;
    }

    .ttl__box::before {
        bottom: -4px;
        left: 32px;
        width: 68px;
        height: 10px;
      }

    .about__subttl{
        font-size: 3.8rem;
        margin-top: 64px;
    }

    /*titleのtextエリア*/
    .about__box{
        padding: 56px 6% 65px;
    }
    .about__txt__area{
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 944px;
        margin: 0 auto;
    }
    
    .about__ttl__mitake-pc{
        display: block;
        width: 28%;
        max-width: 260px;
        height: auto;
        margin-top: 121px;
    }
    
    .about__txtbox{
        display: block;
        width: 400px;
    }

    .about__txt{
        font-size: 2.4rem;
        margin-top: 24px;
    }
    
    .about__txt:first-of-type{
        margin-top: 0;
    }
    
    .about__ttl__mitake{
        width: 28%;
        max-width: 260px;
        height: auto;
        margin: initial;
    }
}

@media screen and (min-width:1100px) {
    .about__ttl{
        font-size: 10.4rem;
    }

    .about__ttl__p{
        font-size: 10.4rem;
        text-shadow: 8px 8px 0px #452F29;
    }

    .ttl__box::before {
        bottom: 0px; /* 線の位置 */
        left: 32px; /* 線の中央寄せ */
        width: 80px; /* 線の長さ */
        height: 12px; /* 線の高さ */
      }

    .about__subttl{
        font-size: 4.8rem;
        margin-top: 64px;
    }

    /*titleのtextエリア*/
    .about__box{
        padding: 56px 6% 65px;
    }
    .about__txt__area{
        display: flex;
        justify-content: space-between;
        max-width: 944px;
        margin: 0 auto;
        gap: 8px;
    }
    
    .about__ttl__mitake-pc{
        display: block;
        width: 100%;
        max-width: 260px;
        height: auto;
        margin-top: 54px;
    }
    
    .about__txtbox{
        display: block;
        width: 400px;
    }

    .about__txt{
        font-size: 2.6rem;
        margin-top: 24px;
    }
    
    .about__txt:first-of-type{
        margin-top: 0;
    }
    
    .about__ttl__mitake{
        width: 100%;
        max-width: 260px;
        height: auto;
        margin: initial;
    }
}

/*========ここからabout-topic=========*/
.about__topic{
    padding: 26px 4.2% 96px;
}

.about__topic__ttl{
    color: var(--primary-Black);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size:2.8rem;
    font-weight: 700;
    line-height: 1; /* 171.429% */
    text-align: center;
    letter-spacing: 0.036em;

    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: end;
}

.about__topic__ttl span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.about__topic__ttl.-visible span {
  transform: translate(0, 0);
}

.about__topic__ttl span:nth-child(2) {
  transition-delay: 0.06s;
}
.about__topic__ttl span:nth-child(3) {
  transition-delay: 0.12s;
}
.about__topic__ttl span:nth-child(4) {
  transition-delay: 0.18s;
}
.about__topic__ttl span:nth-child(5) {
  transition-delay: 0.24s;
}
.about__topic__ttl span:nth-child(6) {
  transition-delay: 0.30s;
}
.about__topic__ttl span:nth-child(7) {
  transition-delay: 0.36s;
}
.about__topic__ttl span:nth-child(8) {
  transition-delay: 0.42s;
}
/*.about__topic__ttl span:nth-child(9) {
  transition-delay: 0.48s;
}*/



.about__topic__ttl01{
    color:var(--primary-orange);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 4rem;
    font-weight: 700;
    transform: rotate(-7deg);
    display: inline-block;
    display: flex;
    overflow: hidden;
}

.about__topic__ttl02{
    color: var(--primary-white);
    font-family: "IBM Plex Sans JP";
    font-size: 3.2rem;
    font-weight: 700;
    display: flex;
    overflow: hidden;
}

.about__contents{
   /* padding: 0 5.8%;*/
    display: grid;
    justify-content: center;
}

.about__item{
    margin: 35px auto 0; 
    flex: 1 1 0;
    max-width: 320px;
    text-align: center;
}

.about__item__ttl{
    color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    z-index: 2;
    position: relative;
    text-align: start;
    margin-left: 12px;
}


.about__topicbox,.about__topicbox02{
    transform: rotate(3deg);
    display: inline-block;
    padding: 30px 13px 30px;
    border-radius: 8px;
    border: 1px solid var(--primary-Black);
    box-shadow: 4px 4px 0px 0 var(--primary-Black);
    background-color: var(--primary-white);
}

.about__topicbox02{
    transform: rotate(-3deg);
    display: inline-block;
}

.about__topicImg{
    width: 100%;
    max-width: 260px;
    object-fit: cover;
}

.about__item__txt{
    color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1; 
    margin-top: 10px;
    text-align: start;
    max-width: 260px;
    padding: 0 10px;
}

.btn{
    display: flex;
    margin: 0 auto;
    width: 215px;
    height: 64px;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    border: 2px solid var(--primary-Black);
    background:var(--primary-white);
    box-shadow: 4px 4px 0px 0px var(--primary-Black);
    color: #220E05;
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5; /* 155% */
    transition: 0.4s;
    position: relative;
    z-index: 3;
}

.btnset{
    position: relative;
    margin-top: 85px;
}

.btnmitake{
    width: 120px;
    height: 180px;
    transform: rotate(9deg);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -85px;
}

.btn::after{
    display: block;
    content:'' ;
    width: 40px;
    height: 57px;
    background-image: url(../images/arrow-btn-sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 3;
}

.btn:hover{
    opacity: 0.5;
}

/*======ここからabout-====*/
@media screen and (min-width:768px) {
    .about__topic{
        padding: 25px 0 138px;
    }

    .about__topic__ttl{
        font-size:4.8rem;
    }

    .about__topic__ttl01{
        font-size: 6.4rem;
    }
    
    .about__topic__ttl02{
        font-size: 5.8rem;
    }

    
    /* ここからボタン*/
    .btnset{
        margin-top: 120px;
        padding: 0 9.7%;
    }
    .btn{
        display: flex;
        margin: 0 0 0 auto;
        width: 310px;
        padding: 8px 20px;
        font-size: 2.4rem;
    }
    
    
    .btnmitake{
        width: 130px;
        height: 188px;
        transform: rotate(9deg);
        position: absolute;
        left: 67%;
        transform: translateX(-50%);
        top: -130%;
    }
}/*pc768px*/

@media screen and (min-width:1021px) {
    .about__contents{
     /*   padding: 0 ;
        width: 1022px;
        display: flex;
        justify-content: space-between;
        margin: 54px auto 0;*/
    
        width: 100%;
        max-width: 1022px;
        display: flex;
        justify-content: space-between;
        gap: 30px;
        margin: 54px auto 0;
        padding: 0 3%;
        box-sizing: border-box;
    }
   
    .about__item{
        margin-top: 0 auto;
        max-width: 320px; /* ポラロイドの横幅の上限 */
    }
    
}

/*=====================================
menu
=========================================*/
.section__menu{
    background-image: url(../images/menu-bg-sp.webp);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 44px 0 176px;
}

/*==テロップはcommonに記載===*/


.menu__box__sp{
    padding: 0 4.2%;
 } 

 .menu__box__pc{
    display: none;
 } 

.menu__ttl__box{
    position: relative;
    margin-top: 10px;
}

.menu__ttl{
    color: var(--primary-white);
    font-size: 6.4rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.menu__ttl__p{
    color: var(--primary-Black);
    font-size: 6.4rem;
    text-align: center;
    text-shadow: 8px 8px 0px #452F29;
    position: absolute;
    inset: 0;
    z-index: 4;
    /* 追加 */
    -webkit-text-stroke: 6px var(--primary-Black);
}

.price__card{
    width: 254px;
    height: auto;
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 32px;
    border: 2px solid #231815;
    background: #F6F4EA;
    box-shadow: 4px 4px 0px 0px #3C231C;
    margin: 13px auto 0;
    position: relative;
}

.price__card::before{
    display: block;
    content:'' ;
    background-image: url(../images/menu-pin.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 15px;
    height: 23px;
    top: 0;
    right: 47%;
    transform: translateY(-50%);
}

.price__card__txt{
    color: #231815;
   font-family: Montserrat;
   font-size: 3.2rem;
   font-weight: 900;
   line-height: 1;
   text-align: center;
}

.price{
    color: #231815;
    font-family: Montserrat;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.5;
    margin-top: 24px;
    position: relative;
    }

.price::after {
    background-color: var(--primary-Black); /* 線の色 */
    content: "";
    width: 8px; /* 線の長さ */
    height: 16px; /* 線の高さ */
    top:-12px; /* 線の位置 */
    left: 50%; /* 線の中央寄せ */
    position: absolute;
    transform: translateX(-50%); /* 線の中央寄せ */
  }

/*-----メニューリスト*/
.menu__list{
    padding: 31px 0;
    background-color: var(--primary-offwhite);
    border-radius: 16px;
    border: 2px solid #231815;
    box-shadow: 4px 4px 0px 0px #3C231C;
    margin-top: 31px;
}

.drink__about{
    text-align: center;
}

.drink__txt{
    color: #231815;
    text-align: left;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1; /* 125% */
}

.drink{
    color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 2.4rem;
    font-weight: 700;
}
/*ドリルハイ*/
.menu__content01{
    width: 84%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__pic01{
    height: 400px;
}
.drink__about01{
    width: 120px;
    margin-left: -89px;
    margin-top: 135px;
}

/*烏龍ハイ*/
.menu__content02{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 15%;
}

.menu__pic02{
    height: 324px;
}

.drink__about02{
    width: 120px;
}

/*beer*/
.menu__content03{
    margin-top: -55px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15%;
}
.menu__pic03{
    height: 336px;
}

.drink__about03{
    width: 112px;
}

/*サングリア*/
.menu__content04{
    margin-top: -35px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu__pic04{
    height: 218px;
}

.drink__about04{
    width: 120px;
    margin-top: 33px;
}

.drink__txt01{
    text-align: center;
}

/*コーヒー焼酎*/
.menu__content05{
    margin-top: -15px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink__about05{
    width: 154px;
    margin-top: -100px;
    margin-right: -60px;
}

.menu__pic05{
    height: 260px;
}

/*menuの注意書き*/
.menu__topic{
    margin: 31px 4.8% 0;
    position: relative;
}

.menu__topic::after{
    display: block;
    content: '';
    background-image: url(../images/menu-mitake-sp.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 95px;
    height: 137px;
    bottom: -61%;
    right: 0;
    transform: translateY(-50%);
}

.menu__txt{
    color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
}

.menu__txt__span{
    color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
}
.menu__txt02{
    color: #231815;
    text-align: left;
    font-family: Montserrat;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
    margin-top: 11px;
}

.menu__iconset{
    display: flex;
    margin-top: 8px;
}

.menu__icon{
    width: 50px;
    height: 50px;
    margin-right: 11px;
}

.menu__item02{
    margin-top: 16px;
}

.menu__txt:last-of-type{
    margin-top: 16px;
}


@media screen and (min-width:600px) {
    .section__menu{
    background-image: url(../images/menu-bg-pc.webp);
    }   

    .menu__box__pc{
        padding: 0 5% ;
    }

    .menu__box__sp{
        display: none;
    }
    
    .menu__box__pc{
        display: flex;
        justify-content: center;
        position: relative;
        margin-top: 40px;
    }
    
    .price__card-box{
        position: absolute;
        top: -14%;
        left: 3%;
        transform: rotate(354deg);
    }
    
    .price__card{
        width: 180px;
        height: 135px;
        padding: 10px;
        align-items: center;
        margin: 13px auto 0;
        position: relative;
        z-index: 5;
    }
    
    .price__card::before{
        width: 20px;
        height: 48px;
    }
    
    .price__card__txt{
        font-size: 2.2rem;
    }
    
    .price{
        font-size: 3rem;
    }
    
    .menu__picPc{
        width:100%;
        max-width: 1024px;
        margin: 0 auto;
    }
    
}/*pc600px    */

@media screen and (min-width:769px){
    .section__menu{
            padding: 64px 0 258px ;
        }
        
    /*==テロップはcommon==*/
    
    .menu__box__pc{
        padding: 0 8.4%;
    } 
    
    .menu__ttl__box{
        position: relative;
        margin-top: 28px;
    }
    
    .menu__ttl{
        color: var(--primary-white);
        font-size: 10.4rem;
        text-align: center;
        position: relative;
        z-index: 5;
    }
    
    .menu__ttl__p{
        color: var(--primary-Black);
        font-size: 10.4rem;
        text-align: center;
        text-shadow: 8px 8px 0px #452F29;
        position: absolute;
        inset: 0;
        z-index: 4;
        /* 追加 */
        -webkit-text-stroke: 6px var(--primary-Black);
    }  
    
    .price__card-box{
        position: absolute;
        top: -12%;
        left: 3%;
        transform: rotate(354deg);
    }
    
    .price__card{
        width: 210px;
        height: 160px;
        padding: 20px 10px;
        align-items: center;
        margin: 13px auto 0;
        position: relative;
        z-index: 5;
    }
    
    .price__card::before{
        width: 20px;
        height: 48px;
    }
    
    .price__card__txt{
        font-size: 2.6rem;
    }
    
    .price{
        font-size: 3.4rem;
    }
    
    
    /*menuの注意書き*/
    .menu__topic{
        margin: 75px 8.4% 0;
        position: relative;
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .menu__topic::after{
        display: block;
        content: '';
        background-image: url(../images/menu-mitake-sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        width: 150px;
        height: 260px;
        top: 147%;
        right: 0%;
        transform: translateY(-50%);
    }
    .menu__item{
        width: 464px;
    }
    
    .menu__txt{
        font-size: 2.4rem;
    }
    
    .menu__txt__span{
        font-size: 2.8rem;
    }
    
    .menu__txt02{
        font-size: 2.8rem;
        margin-top: 17px;
    }
    
    .menu__icon{
        width: 80px;
        height: 80px;
        margin-right: 11px;
    }
    
    .menu__item02{
        margin-top: 0px;
    }
    
    .menu__txt:last-of-type{
    margin-top: 26px;
    }
}

@media screen and (min-width:1350px){
    .price__card-box{
        position: absolute;
        top: -12%;
        left: 10%;
        transform: rotate(354deg);
    }
    
    .price__card{
        width: 294px;
        height: 243px;
        padding: 40px 20px;
        align-items: center;
        margin: 13px auto 0;
        position: relative;
        z-index: 5;
    }
    
    .price__card::before{
        width: 20px;
        height: 48px;
    }
    
    .price__card__txt{
        font-size: 3.6rem;
    }
    
    .price{
        font-size: 4.8rem;
    }

}/*1350px*/


/*=====================================
event
=========================================*/
.section__event{
    background-image: url(../images/event-bg-sp.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 29px 0 141px;
}
.evvent__content{
    padding: 0 6.6%;
}
.event__ttl__box{
    position: relative;
    margin-top: 5px;
}

.event__ttl{
    color: #FBFBFB;
    text-align: center;
    position: relative;
    z-index: 5;
}

.event__ttl__p{
    color:var(--primary-Black);
    text-align: center;
    text-shadow: 8px 8px 0px #F9B42C;
    position: absolute;
    inset: 0;
    z-index: 4;
    /* 追加 */
    -webkit-text-stroke: 6px var(--primary-Black);
  }

.event__subttl{
    color: #FBFBFB;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}
/*ターンテーブル*/
.turntable{
    position: relative;
}

.djs{
    display: flex;
    margin-top: 40px;
    justify-content: center;
}

.djsImg01{
    margin-right: 16px;
}

.djentory__item{
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
}

.djsImg{
    width: 100%;
    max-width: 310px;
    height: auto;
    object-fit: contain;
}
.djvol{
    display: block;
    width: 15%;
    height: auto;
    margin: -10px auto 0;
}

.turntable::after{
    content: '';
    display: inline-block;
    width: 31%;
    height: 34vw;
    background-image:url(../images/event-ladymitake-sp.png) ;
    background-size:contain ;
    background-position:center ;
    background-repeat:no-repeat ;
    position: absolute;
    left: 73%;
    top: 97%;
    transform: translateY(-50%);
}

/*DJエントリー*/
.djentry{
    padding: 80px 9.6% 0;
}

.djentry__ttl{
    color: var(--primary-orange);
    font-family: "IBM Plex Sans JP";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.djentory__item{
    max-width: 254px;
    object-fit: contain;
    position: relative;
    margin: 0 auto;
    /*background-color: pink;*/
    object-fit: cover;
    width: 100%;
   /* height: 67.7vw;*/
   position: relative;
}

.djentory__item02{
    display: none;
}

.djentory__item::before{
    content: '';
    display: inline-block;
    width: 22px;
    height: 16px;
    background-image:url(../images/event-Polygon-sp.png) ;
    background-size:contain ;
    background-position:center ;
    background-repeat:no-repeat ;
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.djentory__item::after{
    content: '';
    display: inline-block;
    width: 22px;
    height: 16px;
    background-image:url(../images/event-Polygon2.png) ;
    background-size:contain ;
    background-position:center ;
    background-repeat:no-repeat ;
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
}


.djentry__txt{
    color: var(--primary-white);
    font-family: "IBM Plex Sans JP";
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2; 
    letter-spacing: 0.04em;
    margin-top: 13px;
}

.event__btn{
    margin-top: 73px;
    box-shadow: 4px 4px 0px 0px var(--primary-yellow);
    position: relative;
}

.event__btn::before{
    content: '';
    display: inline-block;
    width: 47%;
    height: 40vw;
    background-image:url(../images/event-mitake-sp.png) ;
    background-size:contain ;
    background-position:center ;
    background-repeat:no-repeat ;
    position: absolute;
    left: -68px;
    top: 100%;
    transform: translateY(-50%);
}

@media screen and (min-width:769px) {
    .section__event{
        background-image: url(../images/bg-event-pc.jpg);
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 64px 0 160px ;
    }

    .evvent__content{
        padding: 0 9.7%;
    }
    .event__ttl__box{
        position: relative;
        margin-top: 36px;
        height: 276px;
    }
    
    .event__ttl{
        color: #FBFBFB;
        text-align: center;
        position: relative;
        z-index: 5;
        font-size: 10.4rem;
    }
    
    .event__ttl__p{
        font-size: 10.4rem;
        color:var(--primary-Black);
        text-align: center;
        text-shadow: 8px 8px 0px #F9B42C;
        position: absolute;
        inset: 0;
        z-index: 4;
        /* 追加 */
        -webkit-text-stroke: 6px var(--primary-Black);
      }
    
    .event__subttl{
        color: #FBFBFB;
        font-family: "IBM Plex Sans JP";
        font-size: 2.8rem;
        font-weight: 500;
        line-height: 1.5;
        text-align: center;
    }

    /*ターンテーブル*/
    .djs{
    margin-top: 71px;
    }

    .djsImg01{
    margin-right: 40px;
    }

    .djsImg{
    width: 100%;
    max-width: 325px;
    height: auto;
    object-fit: contain;
    }

    .djvol{
        display: block;
        width: 12%;
        height: auto;
        margin: -10px auto 0;
    }

    .turntable::before{
        content: '';
        display: inline-block;
        width: 27%;
        height: 54%;
        background-image:url(../images/event-mitake-sp.png) ;
        background-size:contain ;
        background-position:center ;
        background-repeat:no-repeat ;
        position: absolute;
        left: 5%;
        top: 79%;
        transform: rotate(-6deg);
    }
    
    .turntable::after{
        content: '';
        display: inline-block;
        width: 25%;
        height: 61%;
        background-image:url(../images/event-ladymitake-sp.png) ;
        background-size:contain ;
        background-position:center ;
        background-repeat:no-repeat ;
        position: absolute;
        right: 8%;
        top: 91%;
        transform: translateY(-50%);
    }

    /*DJエントリー*/
    .djentry{
        padding: 156px 0 0;
    }

    .djentry__ttl{
        font-size: 4.8rem;
    }
    
    .djentory__content{
        max-width: 910px;
        position: relative;
        display: flex;
        justify-content: space-between;
        gap: 0 35px;
        margin: 0 auto;
    }


    .djentory__item{
        max-width: 280px;
        object-fit: contain;
        position: initial;
        margin: 0 auto;
        /*background-color: pink;*/
        object-fit: cover;
        width: 100%;
       /* height: 67.7vw;*/
    }
    
    .djentory__item02{
        display: block;
    }


    .djentory__content::before{
        content: '';
        display: inline-block;
        width: 24px;
        height: 18px;
        background-image:url(../images/event-Polygon-sp.png) ;
        background-size:contain ;
        background-position:center ;
        background-repeat:no-repeat ;
        position: absolute;
        left: -24px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .djentory__content::after{
        content: '';
        display: inline-block;
        width: 24px;
        height: 18px;
        background-image:url(../images/event-Polygon2.png) ;
        background-size:contain ;
        background-position:center ;
        background-repeat:no-repeat ;
        position: absolute;
        right: -24px;
        top: 50%;
        transform: translateY(-50%);
    }
    

    .djentry__txt{
        font-size: 2.4rem;
        margin: 24px auto 0;
        max-width: 690px;
    }

    .event__btn{
        margin-top: 116px;
        box-shadow: 4px 4px 0px 0px var(--primary-yellow);
        position: relative;
    }

    .event__btn::before{
        display: none;
    }

}/*pc769px*/

@media screen and (min-width:1100px) {
    .turntable::before{
        content: '';
        display: inline-block;
        width: 19%;
        max-width: 250px;
        height: 22vw;
        background-image:url(../images/event-mitake-sp.png) ;
        background-size:contain ;
        background-position:center ;
        background-repeat:no-repeat ;
        position: absolute;
        right: 5%;
        top: 49%;
        transform: rotate(-6deg);
    }
    
    .turntable::after{
        content: '';
        display: inline-block;
        width: 19%;
        max-width: 250px;
        height: 22vw;
        background-image:url(../images/event-ladymitake-sp.png) ;
        background-size:contain ;
        background-position:center ;
        background-repeat:no-repeat ;
        position: absolute;
        right: 7%;
        top: 89%;
        transform: translateY(-50%);
    }
}


/*=====================================
access
=========================================*/
.section__access{
    padding: 32px 0 51px ;
}

.access__content{
    margin: 38px 4.2% 0;
}

/*案内１*/
.access__block01{
    display: flex;
    justify-content: center;
    margin-top: 52px;
    align-items: start;
    gap: 0 13.8%;
  /*  background-color: paleturquoise;*/
}

.access__item01{
    max-width: 200px;
    height: auto;
    display: inline-block;
}

.access__Img01{
    object-fit: cover;
    width: 100%;
   /* height: 90vw;*/
}

.access__ttl__box{
    display: inline-block;
    position: relative;
    z-index: 5;
}

.access__ttl{
    width: 50px;
    height: auto;
}

.access__txt{
    color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5; 
    margin-top: 6px;
    
}

.access__txt01{
    color: #231815;
    font-family: "IBM Plex Sans JP";
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 10px;
}

/*案内2*/
.access__block02{
    display: flex;
    justify-content: center;
    padding-left: 11.7% ;
    gap: 20px;
}

.access__item02pc{
    display: none;
}

.access__item02sp{
    display: block;
    object-fit: cover;
    width: 100%;
    max-width:101px;
    height: auto;

}

.access__item02{
    margin-top: 52px;
    display: inline-block;
}

.access__Img02{
    object-fit: cover;
    width: 100%;
    max-width: 190px;
    height: auto;
}
/*矢印*/
.access__block-arrow{
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/*案内３*/
.access__block03{
    display: flex;
    justify-content: center;
    margin-top: 13px;
}

.access__item03{
    display: inline-block;
    max-width: 220px;
}

.access__Img03{
    max-width: 220px;
    height: auto;
    object-fit: cover;
}

.access__item03pc{
    display: none;
}

.access__item03sp{
    display: block;
    max-width: 106px;
    height: auto;
    object-fit: cover;
    margin-top: 13px;

}

/*案内4*/
.access__block04{
    position: relative;/*あしらい棒のため*/
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.access__item04pc{
    display: none;
}

.access__item04{
    max-width: 300px;
}

.access__Img04{
    max-width: 300px;
    height: auto;
    object-fit: cover;
}

.access__txt04{
    margin-top: 10px ;
    text-align: center;
}

.access__block04::after{
    content: "";
    background-color: var(--primary-Black); /* 線の色 */
    width: 8px; /* 線の長さ */
    height: 48px; /* 線の高さ */
    position: absolute;
    left: 50%; /* 線の中央寄せ */
    bottom: -100px; /* 線の位置 */
    transform: translateX(-50%); /* 線の中央寄せ */
    }

/*======ご来店ありがとうございます=====*/
.rotate__cont{
    position: relative;
    width: 210px;
    height: 210px;
    margin:156px auto 0;
}
.rotate__inner-mitake{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 17px;
    text-align: center;
    z-index: 1;/* 読み上げ機能などに反応するように円より上に配置するため */
}
.rotate__float{
    animation: rotate 12s infinite linear;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*======pcここから=======*/
@media screen and (min-width:900px) {
    .section__access{
        padding: 64px 0 89px ;
    }
    .access__root{
        padding: 0 11.1%;
    }

    .access__content{
        margin: 118px auto 0;
        max-width: 922px;
        
    }
    
    .access__txt{
        font-size: 2rem;
        margin-top: 6px;
    }
    
    .access__txt01{
        font-size: 2rem;
        margin-top: 16px;
    }
/*案内１*/
    .access__block01{
        display: flex;
        justify-content: space-between;
        margin-top: 111px;
        align-items: start;
        gap: initial;
    }
    
    
    .access__item01{
        max-width: 398px;
    }
    
    .access__Img01{
        object-fit: cover;
        width: 100%;
        max-width: 398px;
        height: auto;
        object-fit: cover;
    }
    
    .access__ttl__box{
        display: inline-block;
        position: relative;
        z-index: 5;
    }
    
    .access__ttl{
        width: 104px;
        height: auto;
    }

    .access__ttl__box::before{
        content: '';
        display: inline-block;
        width: 246px;
        height: 304px;
        background-image:url(../images/acces-mitake02.svg) ;
        background-size:contain ;
        background-position:center ;
        background-repeat:no-repeat ;
        position: absolute;
        left: -240%;
        top: 72%;
        transform: translateY(-50%);
    } 

/*案内２*/
    .access__block02{
        display: flex;
        justify-content: center;
        gap: 0 80px;
        padding: initial;
    }
    
    .access__item02sp{
        display: none;
    }
    
    .access__item02pc{
        display: block;
        width: 100%;
        max-width: 342px;
        height: auto;
        object-fit: cover;
    }
    .access__item02{
        max-width: 310px;
        margin-top: 22px;
        display: inline-block;
    }

    .access__Img02{
        max-width: 310px;
        height: auto;
        object-fit: cover;
    }
    
    /*矢印*/
    .access__block-arrow{
        display: none;
    }

    /*案内３*/
    .access__block03{
        display: flex;
        justify-content: start;
        margin-top: 90px;
        gap: 27px;
    }

    .access__item03{
        max-width: 386px;
        display: inline-block;
    }
    
    .access__Img03{
        max-width: 386px;
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    .access__item03sp{
        display: none;
    }
    
    .access__item03pc{
        display: block;
        max-width: 223px;
    }

/*案内４*/
    .access__block04{
        position: relative;
        display: flex;
        justify-content: end;
        margin-top: 15px;
        gap: 50px;
    }

    .access__item04pc{
        display: block;
        max-width: 204px;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .access__item04{
        max-width: 500px;
        align-items: center;
    }
    
    .access__Img04{
        max-width: 500px;
        width: 100%;
        height: auto;
        object-fit: cover;
        position: relative;
    }
    
    .access__txt04{
        margin-top: 10px;
    }
    
    .access__block04::after{
       display: none;/
        }
    /*======ご来店ありがとうございます=====*/
    .rotate__cont{
        width: 30.5%;
        height: 30vw;
        margin:-76px auto 0 13.8%;
    }
}/*pc769px*