@charset "UTF-8";

html {
  font-size: 100%;
  font-family: Noto Sans JP;
}

ul,
ol {
  list-style: none;
}

a {
  color: #B60006;
  list-style: none;
  text-decoration: none;
}


img {
  max-width: 100%;
  vertical-align: bottom;
}

body {
  background-color: #f4f9ff;
  color: #333;
  font-size: 0.875rem;
}

html,
body,
dl,
dt,
dd,
li,
p,
h3 {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  padding: 0 120px;
  margin: 0 auto;
}

header,
main {
  background-color: white;
}

header {
    width: 100%;
    position: fixed;
    z-index: 999;
    background: rgba(255, 255, 255, 1);
}

.BABE_header,
.BABE_main {
  background-color: #E7D6E8;
}

#BABE_intro_BG1,
#BABE_intro_BG3 {
  background-color: #E7D6E8;
}

/*****header*****/

.shop_name {
  font-size: 0.875rem;
  color: white;
  background-color: black;
}

.shop_name .title,
.header_nav ul {
  margin: 0;
  padding: 10px 0;
}

.shop_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo .ins_icon {
  display: none;
}

.logo .ins_icon img {
  width: 40px;
}

#ins_icon2 {
  display: none;
}

#ins_icon2 img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: block;
  position: absolute;
  margin-right: 20px;
  z-index: 2;
  top: 60px;
  right: 60px;
}

#logo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.shop_logo img,
.footer_nav img {
  max-width: 180px;
  width: 100%;
  object-fit: contain;
}


.address {
  margin: auto 0;
}

.address dt,
.address dd {
  color: #B60006;
}

.address dl p {
  font-size: 0.875rem;
}

.address dl,
.address dt {
  display: flex;
  align-items: center;
}

.address dt span {
  margin: 0 10px;
}

.address img {
  width: 20px;
  max-height: 100%;
}


/*****nav*****/

.header_nav {
  margin: 0 auto;
  background-color: #b60006;
}



header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  gap: 0 10px;
  font-size: 1.2rem;
}

footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}

header nav li {
  list-style: none;
  display: inline-block;
}

header nav li:not(:last-child) {
  border-right: 2px solid #FFFFFF;
  padding-right: 10px;
}

.header_nav_address,
#header_nav_menu {
  display: none;
}



/*****mainvisual*****/

.mainvisual {
  background-color: #B60006;
}

.top_mainvisual {
  background-color: #FFFFFF;
}

.babe_mainvisual {
  background-color: #E7D6E8;
}

.babe_mainvisual,
.tina_mainvisual,
.menu_mainvisual {
  height: 450px;
} 


.mainvisual img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
  position: relative;
}

.top_mainvisual {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.fv-swiper,
.fv-swiper .swiper-wrapper,
.fv-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.fv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main_title {
  position: absolute;
  background-color: #FFFFFF;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  padding: 6px 12px;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  white-space: nowrap;
}

.css-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slider-inner {
  display: flex;
  width: max-content;
  list-style: none;
  padding: 0;
  margin: 0;
  animation: slide-anim 120s linear infinite;
}

.slider-inner li {
  width: 100vw;
  height: 100vh;
}

.slider-inner li img {
  width: 100%;
  height: 100%;
  display: block;
}

.css-slider:hover .slider-inner {
  animation-play-state: paused;
}

@keyframes slide-anim {

  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*****shop紹介*****/

.shop_intro {
  background-color: white;
  padding-block: 80px;
}

.shop_wrapper {
  max-width: 1000px;
  margin-inline: auto;
}

.section_title_inner {
  font-size: 2.5rem;
  font-weight: 350;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}

.intro_card {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*同じ幅の欄を2つ作る*/
  gap: 80px;
  margin-top: 80px;
}

.shop_contents {
  width: 90%;
  /*グリットのエリアを埋める*/
  padding: 20px;
  border-radius: 20px;
  border: 1.5px solid #B60006;
}

@media (max-width: 768px) {
  .babe_mainvisual, 
  .tina_mainvisual,
  .menu_mainvisual {
    height: 330px;
}
  
  .intro_card {
    grid-template-columns: 1fr;
    /* 一行になる */
    gap: 40px;
    /* SPの間隔 */
  }
}


#BABE_card,
#BABE_card a {
  border: 1.5px solid #9D318D;
}

#BABE_card a {
  color: #9D318D;
}

.shop_contents img {
  width: 234px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.shop_contents p {
  color: #222222;
  font-size: 1rem;
  text-align: center;
  margin-block: 40px 50px;
}

.shop_btn {
  text-align: center;
}

.shop_btn a {
  font-size: 1.2rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
  align-items: center;
  margin: 0 auto;
  max-width: 250px;
  padding: 10px 55px;
  color: #B60006;
  /* font-weight: 300; */
  border-radius: 100px;
  border: 1.5px solid #B60006;
}

.shop_btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  border-top: solid 3px currentColor;
  border-right: solid 3px currentColor;
  transform: translateY(-50%) rotate(45deg);
}


/**********Tina Page**********/
/*****Tina intro*****/

.shop_intro_card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  /*同じ幅の欄を2つ作る*/
  margin-top: 80px;
  justify-content: center;
}

.T_B_intro {
  max-width: 800px;
  margin: 0 auto;
}

.T_B_intro img {
  margin-top: 40px;
}

/**********BABE Page**********/
/*****BABE intro*****/

#BABE_section_title1,
#BABE_section_title3 {
  color: #9D318D;
}

#BABE_wrapper {
  background-color: #9D318D;
}

#BABE_contents1,
#BABE_contents3 {
  border: 1.5px solid #9D318D;
}

#BABE_menu_btn a {
  color: #9D318D;
  border: 1.5px solid #9D318D;
}


#BABE_contents1 img,
#BABE_contents3 img {
  padding: 10px;
  background-color: white;
}

/**********menu Page**********/
/*****menu intro*****/

#menu_container {
  background-color: #B60006;
}

.menu_wrapper {
  max-width: 1200px;
  padding-bottom: 80px;
  background-color: white;
}

#menu_wrapper {
  width: 94%;
  margin: 0 auto;
}

.menu_card {
  display: block;
  margin: 0 80px;
}

.menu_contents,
.menu02_contents {
  display: grid;
  text-align: center;
  margin: 0 auto;
}

.menu_contents {
  max-width: 555px;
  grid-template-columns: repeat(1, 1fr);
}

.menu02_contents {
  max-width: 1000px;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin: 80px auto;
}

@media (max-width: 768px) {

  .menu_contents,
  .menu02_contents {
    grid-template-columns: 1fr;
  }

  .menu01 dt,
  .menu02 dt {
    padding-left: 5px;
  }

}


.menu01 {
  width: 100%;
  margin: 40px auto;
  padding: 20px 0;
  border-radius: 10px;
  border: 1.7px solid #222222;
}

.menu02 {
  width: 100%;
  padding: 20px 0;
  border-radius: 10px;
  border: 1.7px solid #222222;
}


.menu01 h3,
.menu02 h3 {
  margin-bottom: 50px;
}

.menu02 h3 {
  text-align: center;
}

.menu01 dl,
.menu02 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu01 dt,
.menu02 dt {
  width: 70%;
  text-align: center;
}

.menu01 dd,
.menu02 dd {
  width: 30%;
  text-align: left;
}


.menu01_contents dt,
.menu02_contents dt {
  font-size: 1.25rem;
}

.remarks01 {
  margin-top: 20px;
}

.menu_contents dd,
.menu02_contents dd {
  font-size: 1.25rem;
}

.menu_img {
  width: 100%;
  margin-bottom: 30px;
}

.menu_img img {
  width: 50%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}



/*****あいさつ*****/

.greeting_wrapper {
  background-color: #B60006;
  padding: 120px;
}


.inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 80px;
  max-width: 1000px;
  margin: 40px auto 0;
  border-radius: 20px;
  border: 1.5px solid white;
  padding: 20px;
}

.inner img {
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
}

.contents {
  color: white;
}

@media (max-width: 768px) {
  .inner {
    grid-template-columns: 1fr;
    /* 一行になる */
    gap: 40px;
    /* SPの間隔 */
  }
}

.contents p {
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
}

.owner_sign {
  text-align: right;
  margin-top: 30px;
}


/*****IG_btn*****/

.IG_intro {
  padding-block: 80px;
}

.IG_btn a {
  font-size: 2rem;
  background: #B60006;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 180px;
  padding: 15px 35px;
  color: white;
  font-weight: 300;
}

.IG_btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  border-top: solid 3px currentColor;
  border-right: solid 3px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.shop_intro h2,
.IG_intro h2 {
  color: #B60006;
}

.greeting h2,
.shop_map h2,
.shop p {
  color: white;
}


/*****shop address*****/

.shop_address {
  background-color: #333;
  padding-bottom: 80px;
}

/*****MAP*****/

.shop_map {
  width: 100%;
  padding-block: 80px;
}

.shop_map p {
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}

.google_map {
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  height: 300px;
  background-color: #f4f9ff;
  margin: 0 auto;
}

.google_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*****footer*****/

footer {
  background-color: #333;
}

.footer_nav {
  padding: 80px 120px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
}

.footer_nav .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

footer nav li {
  list-style: none;
  display: inline-block;
}

footer nav li:not(:last-child) {
  border-right: 2px solid white;
  padding-right: 10px;
}

footer nav a {
  text-decoration: none;
  color: white;
}



/***************responsive***************/


@media (max-width: 992px) {
  .container {
    max-width: 960px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .shop_logo {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  #logo {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .logo .ins_icon {
    display: block;
  }

  #ins_icon2 {
    display: block;
  }

  .shop_logo .address {
    display: none;
  }

  .header_nav_address {
    display: block;
    margin-top: 20px;
    padding: 16px;
    border: 1px solid white;
  }

  .header_nav_address dl:first-child {
    margin-bottom: 16px;
  }

  .main_title {
    top: 30%;
    left: 50%;
    font-size: 32px;
  }

  /********** hamburger **********/

  .sp_nav {
    position: absolute;
    z-index: 2;
    top: 0px;
    right: -10px;
    padding: 12px 20px;
  }

  .header_nav .line {
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 2;
    top: 60px;
    right: 20px;
  }

  .header_nav .line::after {
    content: "メニュー";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
  }

  #header_nav_menu:checked + .line::after {
    content: "";
  }

  .footer_nav {
    padding: 40px 10px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }


  .header_nav .line .menu,
  .header_nav .line .menu::before,
  .header_nav .line .menu::after {
    background: #222;
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    transition:
      background ease 0.15s,
      top ease 0.15s 0.15s,
      transform ease 0.15s;
    width: 28px;
  }

  .header_nav .line .menu {
    left: 16px;
    top: 29px;
  }

  .header_nav .line .menu::before {
    top: -13px;
  }

  .header_nav .line .menu::after {
    top: 13px;
  }

  /*****close*****/

  #header_nav_menu:checked+.line .menu {
    background: transparent;
  }

  #header_nav_menu:checked+.line .menu::before {
    transform: rotate(45deg);
  }

  #header_nav_menu:checked+.line .menu::after {
    transform: rotate(-45deg);
  }

  #header_nav_menu:checked+.line .menu::before,
  #header_nav_menu:checked+.line .menu::after {
    top: 0;
    transition:
      top ease 0.15s,
      transform ease 0.15s 0.15s;
  }

  /*****menu open*****/

  #header_nav_menu:checked~.menu-list {
    top: auto;
  }

  .menu-list {
    width: 100%;
    height: auto;
    background: #b60006;
    padding: 16px;
    position: absolute;
    top: -300%;
    left: 0;
    right: -30px;
    z-index: 1;
    transition: all 0.8s;
    overflow: hidden;
  }

  .header_nav,
  .header_nav_address dt,
  .header_nav_address dd {
    color: white;
  }

  header .menu-list {
  background-color: #B60006 !important;
  }

  .menu-list a {
  color: #fff !important;
  }

  header nav li:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

  header nav li {
    border-bottom: 1px solid white;
    padding: 5px 0;
  }

  .menu-list ul {
    padding: 0;
    display: block;
  }

  .menu-list ul>li {
    display: block;
    width: 100%;
  }

.header_nav {
    background-color: #B60006;
}

  /*****shop紹介*****/
  .shop_intro {
    padding-block: 40px;
  }

  .shop_contents p {
    font-size: 0.875rem;
  }

  .section_title_inner {
    padding-bottom: 20px;
    font-size: 2.5rem;
  }

  .intro_card {
    margin-top: 20px;
    gap: 24px;
  }

  .shop_intro_card {
    margin-top: 20px;
  }

  /*****あいさつ*****/

  .greeting_wrapper,
  .IG_intro {
    padding: 40px 20px;
  }

  .inner {
    gap: 24px;
  }

  .shop_address {
    padding-bottom: 0px;
  }
}

@media (max-width: 640px) {

  .intro_card {
    flex-wrap: wrap;
  }

  .header_nav .line {
    top: 70px;
  }

  #ins_icon2 img {
    top: 70px;
  }

  .main_title {
    position: absolute;
    background-color: #FFFFFF;
    top: 30%;
    padding: 6px 12px;
  }

  /*****あいさつ*****/
  .inner {
    flex-wrap: wrap;
  }

  /* footer */
  .footer_nav {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .header_nav_address dd {
    max-width: clamp(150px, 200px, 100%);
  }

  .menu01_contents dt,
  .menu02_contents dt {
  font-size: 1rem;
  }

  .menu01 dt,
  .menu02 dt {
  width: 70%;
  }
}



@media (max-width: 768px) {

  .intro_card {
    margin-top: 40px;
  }

  .menu_card {
    margin: 0 15px;
  }


  .menu02_contents {
    gap: 20px;
    margin: 25px auto;
  }


  .menu01_contents p,
  .menu02_contents p {
    font-size: 0.9rem;
  }

  .menu_contents dd,
  .menu02_contents dd {
    font-size: 0.9rem;
  }

  .menu01 dt,
  .menu02 dt {
    padding-left: 0;
  }

  .menu01 {
    margin: 10px auto;
  }

  .menu01 h2,
  .menu02 h2 {
    margin-bottom: 20px;
  }


  /*****google map*****/
  .google_map iframe {
    width: 100% !important;
    height: 300px;
  }


}

@media (max-width: 425px) {
  .main_title {
    position: absolute;
    background-color: #FFFFFF;
    top: 30%;
    padding: 3px 6px;
    font-size: 28px;
  }

  .section_title_inner {
    font-size: 1.8rem;
  }

  #ins_icon2 img {
    top: 77px;
  }

  #ins_icon2 img {
  width: 40px;
  height: 40px;
  z-index: 2;
}
}

header nav ul li a {
  color: #fff !important;
}