
/*------------------
# General
------------------*/
* {margin:0;padding:0;}

body {
  -webkit-text-size-adjust:100%;
  font-family:"Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  background: #fff;
  font-size: 16px;
  letter-spacing: .024em;
  background-color: #000;
}

.reservation{
  background-color:#ce020e;/* rgba(206,2,14,1.0) */
  border-radius: 6px;
  padding: 5px 5px 5px 3px;
  margin: 0 0 0px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 380px) {
.reservation{
font-size: calc(1.25vw + .5rem);
}
}

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

.reservation img{
  width: 20px;
  vertical-align: middle;
}

.tel a {
  color: #fff;
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

a:hover {text-decoration: none;}

a:focus{outline:none;}

h1, h2, h3, h4, h5 {
}

img{
  border:0;margin:0;padding:0;vertical-align:middle;max-width:100%;
}

ul,ol{list-style:none;}

.pc_only {
  display: block;
}

.sp_only{
  display: none;
}

.gmenu_w956_only {
  display: block;
}

@media screen and (max-width: 955px) {
  .gmenu_w956_only {
  display: none;
}
}

@media screen and (max-width: 767px) {
.pc_only {
  display: none;
}
.sp_only{
  display: block;
}
}

.bold{
  font-weight:bold;
}


div.triangle_hr {
    padding-bottom: 0px;
}

div.triangle_hr span.hr{
    -webkit-transform: translate(0, 100%) translate(0, -5px);
    transform: translate(0, 100%) translate(0, -5px);
    background-repeat: repeat-x;
    background-size: 16px 5px;
    background-position: 8px 0px, 0px 5px, 0px 5px, 8px 0px;
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(0.5, #fff), color-stop(0.5, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), -webkit-gradient(linear, left top, right top, from(#fff), color-stop(0.5, #fff), color-stop(0.5, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(135deg, #fff 3px, rgba(0, 0, 0, 0) 3px), -webkit-linear-gradient(225deg, #fff 3px, rgba(0, 0, 0, 0) 3px), -webkit-linear-gradient(315deg, #fff 3px, rgba(0, 0, 0, 0) 3px), -webkit-linear-gradient(45deg, #fff 3px, rgba(0, 0, 0, 0) 3px);
    background-image: linear-gradient(45deg, #fff 3px, rgba(0, 0, 0, 0) 3px), linear-gradient(135deg, #fff 3px, rgba(0, 0, 0, 0) 3px), linear-gradient(225deg, #fff 3px, rgba(0, 0, 0, 0) 3px), linear-gradient(315deg, #fff 3px, rgba(0, 0, 0, 0) 3px);
    height: 30px;
    margin-bottom: 0;
    display: block;
}


/*------------------
.header 
------------------*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 100;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}

.logo {}

.logo h1 {
  font-size: 1.25em;
  font-weight: bold;
}

.logo img.site_logo{
  width: 160px;
}

.header_menu{
  display: flex;
  align-items: center;
  margin-left: auto;
  column-gap: 10px;
}

.header_sns img{
  width: 50px;
}

@media only screen and (max-width: 539px) {
.header__inner {
  padding: 0.5rem 0.5rem;
}

.header_sns img{
  width: 30px;
}
.logo img.site_logo{
  width: 100px;
}
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; 
 /*margin-left: auto;  右寄せ */
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* メニューのデザイン */
.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: #fff;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}

h2.drawer__menu{
  text-align: center;
  font-size: 24px;
}

.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}

.drawer__nav__link {
  display: block;
  color: #000;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}

.drawer__info{
  text-align: center;
  display: flex;
  flex-direction: column;
  margin: 20px auto;
}

.drawer__info img.logo{
  width: 200px;
}

.drawer__info h2{
  font-size: 18px;
  margin: 10px 0 10px;
}

.drawer__info .reservation{
  max-width: 400px;
  margin: auto;
}

@media only screen and (max-width: 539px) {
.drawer__info .reservation{
  max-width: 200px;
}
}

.drawer__social{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
}

.drawer__social img{
  width: 60px;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

/*PCのみ*/
ul.g_menu{
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: 15px;
}

ul.g_menu li a{
  color: #000;
  text-decoration: none;
}

ul.g_menu li a:hover{
  color: #666;
  text-decoration: none;
}

ul.g_menu li:last-child{
  margin-right:20px;
}


/*インフォメーション キャッチコピー*/
.info{
  background-color: #f9f0ce;
  padding: 8px 0;
  text-align: center;
}

.info p{
  font-size: 15px;
  color: #000;
}

@media only screen and (max-width: 540px) {
.info p {
    font-size: calc(1.25vw + .5rem);
}
}

/*------------------
# Back to page_top
------------------*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 50px;
  background: #cda45e;
  opacity: 0.8;
  border-radius: 50%;
  z-index: 10;
}

#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before{
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/*------------------
# Sections General
------------------*/
section {
  padding:30px 0;
  overflow:hidden;
  position:relative;
}


/*------------------
mv01 Main Visual
------------------*/
.mv01 {
    padding: 0;
  }
  .mv01 .l-inner {
    padding-bottom: 0;
  }
  .mv01 .swiper-fade .swiper-slide {
    -webkit-transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, -webkit-transform !important;
    transition-property: opacity, transform !important;
    transition-property: opacity, transform, -webkit-transform !important;
    pointer-events: none;
  }

  .mv01 .swiper-slide .slide{
    border: none;
  }

  .mv01 .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }

  .mv01 .slide-media {
    height: 700px;
  }

  .mv01 .slide-media img.kv {
    -webkit-transition: 7s 1s ease-out;
    transition: 7s 1s ease-out;
    object-fit: cover;
    height: 100%;
    margin: auto;
    width: 100%;
  }

  .mv01 .slide-title {
    font-size: clamp(1.5rem, 1.364rem + 0.68vw, 1.875rem);
    font-weight: normal;
    line-height: 1.6;
    position: absolute;
    bottom: 15%;
    right: 15%; /**/
    text-align: right;
    color: #fff;
    width:100%;
}

.mv01 .slide-title p{
  font-size: clamp(1.5rem, 1.364rem + 0.68vw, 1.875rem);
}

  .mv01 .swiper-slide[class*=-active] .slide-media img {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  .mv01 .swiper-slide[class*=-active] .slide-title_1st  {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing)  both;
            animation: mv01-fadeIn 2s 0.5s var(--easing)  both;
  }

  .mv01 .swiper-slide[class*=-active] .slide-title {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
            animation: mv01-fadeIn 2s 0.5s var(--easing) both;
  }

  @-webkit-keyframes mv01-fadeIn {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
    }
  }

  @keyframes mv01-fadeIn {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
      opacity: 0;
      -webkit-filter: blur(300px);
              filter: blur(300px);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      -webkit-filter: blur(0);
              filter: blur(0);
    }
  }

  @media only screen and (max-width: 1024px) {
    .mv01 .slide-media {
      height: max(45vh, 63vw);
    }/**/
     .mv01 .slide-title img{
      width:70%;
    }
  }

  @media only screen and (max-width: 599px) {
    .mv01 .slide-title {

    }

    .mv01 .slide-media {
      height: max(60vh, 70vw);
    }
     .mv01 .slide-media img {
      object-fit: cover;
      height: 600px;
      margin: auto;
      width: 100%;
    }
  }


/*------------------
about
------------------*/
.about{
  color: #fff; 
}

.about_area{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 0px 10px;
}

.about h2{
  font-size: 2rem;
  margin: 10px 0 20px;
}

.about p{
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin: 0px 0 10px;
  line-height: 1.6;
}

.about .reservation.sp_only{
  max-width: 280px;
  margin: 15px auto 5px;
  font-size: 18px;
}

.about .reservation.pc_only{
  max-width: 380px;
  margin: 15px auto 5px;
  font-size: 18px;
}

.about p a, .about p a:hover{
  color: #fff;
}

/*------------------
charge
------------------*/
.charge{
  color: #fff;
  background-color: #2b2a2a;
}

.charge_flex{
  max-width: 1024px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  padding: 0px 10px;
}

.charge h2{
  text-align: center;
  font-size: 2rem;
  margin: 10px 0 20px;
}

.charge h3{
  text-align: center;
  font-size: 1.25rem;
  margin: 0px 0 10px;
  line-height: 1.2;
}

.charge h3 span{
  font-size: 2.25rem;
}

.charge h4{
  text-align: center;
  font-size: 1.25rem;
  margin: 0px 0 10px;
  line-height: 1.6;
}

.base{
  width: calc(50% - 60px);
  margin: 10px auto;
  max-width: 600px;
  padding: 20px;
  text-align: center;
  border: dotted 3px #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.first_time{
  width: calc(50% - 60px);
  border: dotted 3px #ffe2e2;
  margin: 10px auto;
  max-width: 600px;
  padding: 20px;
  color: #ffe2e2;
}

.first_time h2{
  font-size: 1.5rem;
  line-height: 1.6;
}

.first_time h2 span{
  font-size: 1.75rem;
}

.charge_notice{
  padding: 20px 10px 0;
}

@media only screen and (max-width: 768px) {
  .base,
  .first_time{
    width: 96%;
}
}

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

}

/*------------------
carousel共通
------------------*/
:root {
  --easing_1st: cubic-bezier(0.25, 0.1, 0.25, 1);
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #ce020e;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 920px;
  margin: 0 auto;
  padding: 0px 10px;
}

.l-inner h2{
  text-align: center;
  font-size: 2rem;
  margin: 10px 0 20px;
  color: #fff;
  text-shadow: 0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333;
}

.l-inner p{
  text-align: center;
  margin: 0px 0 10px;
  color: #fff;
  line-height: 1.6;
  text-shadow: 0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333,
               0 0 10px #333;
}

[class*=swiper]:focus {
  outline: none;
}

.swiper-button-prev, .swiper-button-next {
  display: grid;
  place-content: center;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before, .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: #ce020e;
  border: solid 2px #fff
  /*-webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);*/
}
.swiper-button-prev::after, .swiper-button-next::after {
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.swiper-slide .slide{
    overflow: hidden;
    position: relative;
    border: 2px solid #FFF;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    font-weight: 600;
}

ul.list{
  width: 100%;
}

.menu ul.list li,
.song_list ul.list li {
  padding: 0 20px 5px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .swiper-button-prev::before, .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before, .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/*------------------
.menu メニュー / Drink menu .card00
------------------*/

.menu h2{
  text-align: center;
  font-size: 2rem;
  margin: 10px 0 20px;
  color: #fff;
}

.menu{
  background: url(/img/bg_drink_list.webp);
  background-size: cover;
  background-position: center;
}

/*.card01 */
.drink_menu-inner {
    position: relative;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 100%;
    margin: 0 auto;
    padding: 0px 10px;
}
  .card01 {
    overflow: hidden;
  }
  .card01 .swiper {
    overflow: visible;
  }
  .card01 .swiper-button-prev, .card01 .swiper-button-next {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .card01 .swiper-button-prev::before, .card01 .swiper-button-next::before {
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: var(--box-shadow-dark);
            box-shadow: var(--box-shadow-dark);
  }
  .card01 .swiper-button-prev::after, .card01 .swiper-button-next::after {
    border-color: #fff;
  }
  .card01 .swiper-button-prev {
    right: calc(100% - 1.6rem);
  }
  .card01 .swiper-button-next {
    left: calc(100% - 1.6rem);
  }
  .card01 .swiper-a:not(.swiper-initialized) {
    padding: 0;
  }
  .card01 .swiper-a:not(.swiper-initialized) .swiper-button-prev,
  .card01 .swiper-a:not(.swiper-initialized) .swiper-button-next {
    display: none;
  }
  .card01 .swiper-a:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .card01 .swiper-b:not(.swiper-initialized) {
    padding: 0;
  }
  .card01 .swiper-b:not(.swiper-initialized) .swiper-button-prev,
  .card01 .swiper-b:not(.swiper-initialized) .swiper-button-next {
    display: none;
  }
  .card01 .swiper-b:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .card01 .slide {
    overflow: hidden;
    border-radius: 0px;
  }

  .card01 .slide-content {
    padding: 2rem 0.75rem;
  }

  .card01 .slide-content h3{
  text-align: center;
  font-size: 1.375rem;
  padding: 0 0 1rem;
}

  @media only screen and (max-width: 1024px) {
    .card01 .swiper {
      padding: 0 3.2rem;
    }
    .card01 .swiper-button-prev {
      right: calc(100% - 5.2rem);
    }
    .card01 .swiper-button-next {
      left: calc(100% - 5.2rem);
    }
  }

  @media only screen and (max-width: 599px) {
    .card01 .swiper-b:not(.swiper-initialized) .swiper-wrapper {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  @media only screen and (min-width: 1025px) {

    .card01 .slide {
      -webkit-transition: var(--transition);
      transition: var(--transition);
    }
    .card01 .slide:hover {
      -webkit-transform: translateY(-16px);
              transform: translateY(-16px);
    }

  }

  @media only screen and (max-width: 1024px) and (min-width: 600px) {
    .card01 .swiper-b:not(.swiper-initialized) .swiper-wrapper {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
  }

/*------------------
.mirror_ball_area
------------------*/
.mirror_ball_area{
  background: #F8C6C7;
  background: linear-gradient(180deg, rgba(248, 198, 199, 1) 0%, rgba(233, 76, 83, 1) 100%);
  text-align: center;
}

.mirror_ball_area img.mirror_ball{
  width:20%;
}

@media only screen and (max-width: 767px) {
.mirror_ball_area img.mirror_ball{
  width:50%;
}
}

/*------------------
song_list ソングリスト
------------------*/
.song_list{
  background: url(/img/bg_song_list.webp);
  background-size: cover;
  background-position: center;
}

/*.card02 */
.card02 .swiper-area {
  position: relative;
}
.card02 .swiper-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.card02 .swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  vertical-align: top;
  background-color: var(--color-gray);
}

.card02 .swiper-pagination-bullet-active {
  width: 4rem;
  background-color: var(--color-theme);
}
.card02 .swiper-button-prev, .card02 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.card02 .swiper-button-prev {
  right: calc(100% + 1.4rem);
}
.card02 .swiper-button-next {
  left: calc(100% + 1.4rem);
}

.card02 .slide-content {
  padding: 2rem 0.75rem;
}

.card02 .slide-content h3{
  text-align: center;
  font-size: 1.375rem;
  padding: 0 0 1rem;
}

.card02 .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.2em;
  margin-top: 1.6rem;
}

.card02 .swiper-slide:not(.swiper-slide-visible) .slide {
    pointer-events: none;
    opacity: 0.3;
  }

@media only screen and (max-width: 1024px) {
  .card02 .swiper-button-prev::before, .card02 .swiper-button-next::before {
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: var(--box-shadow-dark);
            box-shadow: var(--box-shadow-dark);
  }
  .card02 .swiper-button-prev::after, .card02 .swiper-button-next::after {
    border-color: #fff;
  }
  .card02 .swiper-button-prev {
    right: calc(100% - 2rem);
  }
  .card02 .swiper-button-next {
    left: calc(100% - 2rem);
  }
}

@media only screen and (min-width: 1025px) {

  .card02 .swiper {
    padding-top: 16px;
  }
  .card02 .slide {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card02 .slide img {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .card02 .slide:hover {
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
  }
  .card02 .slide:hover img {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*------------------
.member メンバー紹介
------------------*/
.member{
  padding: 30px 0 50px;
  background-color: #2b2a2a;
}

.member h2{
  text-align: center;
  font-size: 2rem;
  margin: 10px 0 20px;
  color: #fff;
}

.member ul.band_members{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 920px;
  margin: 0px auto;
  padding: 0 10px;
  justify-content: center;
}

.member ul.band_members li{
  width: calc(50% - 60px);
  padding: 10px;
  border: solid 1px #fff;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: #000;
}

.member ul.band_members li .order0{
  order: 0;
}

.member ul.band_members li .order1{
  order: 1;
}

.member ul.band_members li .img{
  width: 45%;
}

.member ul.band_members li .introduction{
  width: 55%;
  color: #fff;
}

.member ul.band_members li h3{
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 10px;
  line-height: 1.4;
}

.member ul.band_members li h3 span{
  font-size: 96%;
  display: block;
  line-height: 1.8;
}

.member ul.band_members li p{
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 10px;
  padding: 5px;
  text-align: left;
  display: inline;
}

@media only screen and (max-width: 767px) {
  .member ul.band_members li{
  width: 98%;
}
}

/*------------------
.youtube 動画
------------------*/
.youtube{
  padding: 30px 0 0px;
}

.youtube h2{
  text-align: center;
  font-size: 1.8rem;
  margin: 10px 0 20px;
  color: #fff;
}

.youtube h2 span{
  font-size: 60%;
  font-weight: 400;
}

.youtube ul.youtubes{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1080px;
  margin: 0px auto;
  padding: 0 10px;
  justify-content: center;
}

.youtube ul.youtubes li{
  width: calc(33% - 60px);
  padding: 10px;
  border: dashed 1px #ccc;
}

.youtube ul.youtubes li .movie{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* アスペクト比 16:9 */
  height: 0;
}

.youtube ul.youtubes li .movie iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube ul.youtubes li .introduction p{
  font-size: 0.975rem;
  text-align: center;
  color: #fff;
  padding: 10px 10px;
}

.youtube .youtube_channel{
  max-width: 400px;
  margin: 0px auto;
  padding: 20px 10px 20px;
  text-align: center;
}

.youtube .youtube_channel img{
  width: 70px;
}

.youtube .youtube_channel p{
  font-size: 0.975rem;
  color: #fff;
  padding: 0 10px 10px;
}

.youtube .youtube_channel a{
  text-decoration: none;
}

.youtube .youtube_channel a p:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .youtube ul.youtubes li{
  width: 98%;
  margin: auto;
}
}

/*------------------
.access アクセス/地図
------------------*/
.access{
  background-color: #f5f2e4;
}

.access h2{
  text-align: center;
  font-size: 2rem;
  margin: 10px 0 20px;
  /*color: #fff;*/
}

.adress{
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 20px 10px 0;
}

.adress p{
  text-align: left;
  display: inline-block;
  margin: 0px 0 10px;
  /*color: #fff;*/
  line-height: 1.6;
}

.adress .tel a {
    color: #000;
}

.content{
  max-width: 100%;
  margin:0 auto;
  padding:0 30px;}

@media screen and (max-width:1024px){
  .content{
    width:100%;
    padding:0;
  }
}

.content iframe{
  border:none;
  max-width:100%;
}

iframe.google-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width:767px){
.access{
  padding: 30px 10px;
}
}

/*------------------
.footer
------------------*/
.footer{
  padding: 50px 0 20px;
  background-color: #000;
  color: #fff;
  text-align: center;
}

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

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

img.footer_logo{
  width: 240px;
  padding: 0 0 10px;
}

.footer-social{
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social img{
  width: 80px;
}

.footer p.copyright{
  font-size:12px;
  text-align: center;
  padding: 20px 0 0;
}