@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-text-size-adjust: 100%;
}

p {
  color: #333;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.pcOnly {
  display: none;
}
@media (min-width: 768px) {
  .pcOnly {
    display: block;
  }
}

.spOnly {
  display: block;
}
@media (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

/*=================================================*/
/*共通
/*=================================================*/
.flex {
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 40px;
  margin: auto;
}
@media (min-width: 768px) {
  .flex {
    width: 700px;
  }
}
@media (min-width: 1024px) {
  .flex {
    width: 95%;
    flex-flow: initial;
    gap: 3%;
  }
}
@media (min-width: 1200px) {
  .flex {
    width: 100%;
  }
}

.imgRadius {
  border-radius: 20px;
}

/*=================================================*/
/*店舗情報
/*=================================================*/
.addressSectiionBg {
  position: relative;
}

.addressSectiion {
  width: 90%;
  margin: 80px auto 0;
  padding-bottom: 50px;
  max-width: 1100px;
}
@media (min-width: 768px) {
  .addressSectiion {
    width: 700px;
  }
}
@media (min-width: 1024px) {
  .addressSectiion {
    margin: 147px auto 0;
    width: 95%;
  }
}
@media (min-width: 1200px) {
  .addressSectiion {
    width: 100%;
  }
}
.addressSectiion .flex {
  width: 100%;
}
.addressSectiion .flex .imgBox {
  display: flex;
  flex-flow: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .addressSectiion .flex .imgBox {
    width: 400px;
  }
}
@media (min-width: 1200px) {
  .addressSectiion .flex .imgBox {
    width: 500px;
  }
}
.addressSectiion .flex .imgBox .img {
  aspect-ratio: 3/2;
}
@media (min-width: 1024px) {
  .addressSectiion .flex .imgBox .img {
    width: 400px;
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .addressSectiion .flex .imgBox .img {
    width: 500px;
    height: 340px;
  }
}
.addressSectiion .flex .textBox {
  position: relative;
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .addressSectiion .flex .textBox {
    width: 513px;
    margin-top: 0;
  }
}
.addressSectiion .flex .textBox .topTitleBox {
  border-bottom: 1px solid #AC886D;
}
.addressSectiion .flex .textBox .topTitleBox .img {
  position: absolute;
  top: -10%;
  right: 0px;
  width: 184px;
  height: 127px;
}
@media (min-width: 1024px) {
  .addressSectiion .flex .textBox .topTitleBox .img {
    top: -10%;
    right: 0px;
    width: 184px;
    height: 127px;
  }
}
.addressSectiion .flex .textBox .topTitleBox .p {
  color: #1A1A1A;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.44px;
  padding-bottom: 15px;
}
.addressSectiion .flex .textBox .flexUl .flexli {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(172, 136, 109, 0.2);
}
@media (min-width: 768px) {
  .addressSectiion .flex .textBox .flexUl .flexli {
    flex-flow: initial;
  }
}
@media (min-width: 768px) {
  .addressSectiion .flex .textBox .flexUl .flexli .titleBox {
    width: 23%;
  }
}
.addressSectiion .flex .textBox .flexUl .flexli .titleBox .title {
  color: #1A1A1A;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.64px;
}
@media (min-width: 768px) {
  .addressSectiion .flex .textBox .flexUl .flexli .contentBox {
    width: 82%;
  }
}
.addressSectiion .flex .textBox .flexUl .flexli .contentBox .content {
  display: inline-block;
  color: #1A1A1A;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1.28px;
}
.addressSectiion .flex .textBox .flexUl .flexli .contentBox .content.contentBottom {
  margin-top: 13px;
}
.addressSectiion .flex .textBox .flexUl .flexli .contentBox .contentLink {
  display: inline-block;
}
.addressSectiion .flex .textBox .commonBtnBox {
  margin-top: 30px;
}
.addressSectiion .flex .textBox .commonBtnBox .commonBtn {
  width: 194px;
  height: 50px;
}

/*=================================================*/
/*お席のご案内
/*=================================================*/
.seatSectionBg {
  padding: 120px 0 120px;
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .seatSectionBg {
    padding: 131px 0 150px;
  }
}
@media (min-width: 1500px) {
  .seatSectionBg {
    padding: 131px 0 220px;
  }
}
.seatSectionBg .bgColorImgBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
}
@media (min-width: 1500px) {
  .seatSectionBg .bgColorImgBox {
    height: 150px;
  }
}
.seatSectionBg .seatSection {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
@media (min-width: 768px) {
  .seatSectionBg .seatSection {
    width: 700px;
  }
}
@media (min-width: 1024px) {
  .seatSectionBg .seatSection {
    width: 95%;
  }
}
@media (min-width: 1200px) {
  .seatSectionBg .seatSection {
    width: 100%;
  }
}
.seatSectionBg .seatSection .sectionTitleBox {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .seatSectionBg .seatSection .sectionTitleBox {
    margin-bottom: 68px;
  }
}
.seatSectionBg .seatSection .sectionTitleBox .h2 {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .seatSectionBg .seatSection .sectionTitleBox .h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: 2.56px;
  }
}
.seatSectionBg .seatSection .flexUl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px 40px;
  z-index: 5;
}
@media (min-width: 1024px) {
  .seatSectionBg .seatSection .flexUl {
    gap: 74px 40px;
  }
}
.seatSectionBg .seatSection .flexUl .flexLi {
  position: relative;
  height: 100%;
}
@media (min-width: 1024px) {
  .seatSectionBg .seatSection .flexUl .flexLi {
    width: 45%;
  }
}
.seatSectionBg .seatSection .flexUl .flexLi .titleBox {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 320px;
  border-radius: 100px;
  text-align: center;
  padding: 8px 10px 10px;
  background: #AC886D;
}
@media (min-width: 768px) {
  .seatSectionBg .seatSection .flexUl .flexLi .titleBox {
    width: 356px;
  }
}
.seatSectionBg .seatSection .flexUl .flexLi .titleBox .h3 {
  color: #FFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.seatSectionBg .seatSection .flexUl .flexLi .textBox {
  margin-top: 30px;
}
.seatSectionBg .seatSection .flexUl .flexLi .textBox .p {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 1.28px;
}
.seatSectionBg .bgColorImgBox.bgColorImgBoxBottom {
  position: absolute;
  bottom: 0;
  top: initial;
  left: 0;
  width: 100%;
  height: 94px;
}
@media (min-width: 1500px) {
  .seatSectionBg .bgColorImgBox.bgColorImgBoxBottom {
    height: 150px;
  }
}

/*=================================================*/
/*アクセス
/*=================================================*/
.accessSectionBg {
  padding-top: 10px;
  position: relative;
}
@media (min-width: 1024px) {
  .accessSectionBg {
    padding-top: 40px;
  }
}
.accessSectionBg .accessSection {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
@media (min-width: 768px) {
  .accessSectionBg .accessSection {
    width: 700px;
  }
}
@media (min-width: 1024px) {
  .accessSectionBg .accessSection {
    width: 95%;
  }
}
@media (min-width: 1200px) {
  .accessSectionBg .accessSection {
    width: 100%;
  }
}
.accessSectionBg .accessSection .sectionTitleBox {
  text-align: center;
  margin-bottom: 40px;
}
.accessSectionBg .accessSection .mapBox {
  margin: 0;
  width: 100%;
  height: 350px;
  margin: 0;
  background: #333;
}
@media (min-width: 768px) {
  .accessSectionBg .accessSection .mapBox {
    height: 402px;
  }
}
.accessSectionBg .accessSection .mapBox iframe {
  margin: 0;
  width: 100%;
  height: 100%;
}

/*=================================================*/
/*オーナー紹介
/*=================================================*/
.ownerSection {
  margin: 60px auto 80px;
  max-width: 1100px;
}
@media (min-width: 768px) {
  .ownerSection {
    width: 700px;
  }
}
@media (min-width: 1024px) {
  .ownerSection {
    margin: 80px auto 118px;
    width: 95%;
  }
}
@media (min-width: 1200px) {
  .ownerSection {
    width: 100%;
  }
}
.ownerSection .sectionTitleBox {
  text-align: center;
  margin-bottom: 37px;
}
@media (min-width: 1024px) {
  .ownerSection .sectionTitleBox .h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: 2.56px;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .ownerSection .flex .imgBox {
    width: 527px;
    height: 400px;
  }
}
@media (min-width: 1024px) {
  .ownerSection .flex .textBox {
    width: 457px;
  }
}
.ownerSection .flex .textBox .p {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 1.28px;
}
@media (min-width: 768px) {
  .ownerSection .flex .textBox .p {
    font-size: 16px;
  }
}
.ownerSection .flex .textBox .name {
  margin-top: 20px;
  color: #AC886D;
  text-align: right;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}
@media (min-width: 768px) {
  .ownerSection .flex .textBox .name {
    font-size: 20px;
  }
}/*# sourceMappingURL=about.css.map */