@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&display=swap");

@font-face {
  font-family: "Nobel Book";
  font-style: normal;
  font-weight: normal;
  src: local("Nobel Book"), url("/files/css/fonts/Nobel Book.woff") format("woff");
}

@media screen and (min-width: 1025px) {
  .nav_list li:nth-child(2) a {
    position: relative;
  }

  .nav_list li:nth-child(2) a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #7AC0C5;
  }
}

.menuTop {
  margin-bottom: 80px;
}

@media screen and (min-width: 1025px) {
  .menuTop {
    margin-bottom: 100px;
  }
}

.menuTop .menuTopTtl {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0;
}

.menuTop ul {
  margin-bottom: 40px;
}

.menuTop ul li span {
  text-decoration: underline;
}

.tab {
  background: #F4F2EF;
}

@media screen and (min-width: 1025px) {
  .tab {
    padding: 60px 0;
  }
}

.tab .tabInner {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

@media screen and (min-width: 1025px) {
  .tab .tabInner {
    padding: 0 40px;
  }
}

.tab .tabBtn ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tab .tabBtn ul li {
  width: 50%;
}

.tab .tabBtn ul li a {
  background: #EBE9E5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #6F594D;
  padding: 20px 10px;
}

@media screen and (min-width: 1025px) {
  .tab .tabBtn ul li a {
    font-size: 3rem;
    padding: 10px;
  }
}

.tab .tabBtn ul li a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  border-top: 1px solid #C5B89C;
  border-right: 1px solid #C5B89C;
  transform: rotate(45deg);
  transition: 0.5s;
  margin-right: 20px;
}

@media screen and (min-width: 1025px) {
  .tab .tabBtn ul li a::before {
    width: 14px;
    height: 14px;
    border-top: 2px solid #C5B89C;
    border-right: 2px solid #C5B89C;
  }
}

.tab .tabBtn ul li.active a {
  background: #6F594D;
  color: #fff;
}

.tab .tabBtn ul li.active a::before {
  transform: rotate(135deg);
}

.tabContent {
  background: #fff;
  display: none;
  opacity: 0;
  padding: 40px 0;
}

@media screen and (min-width: 1025px) {
  .tabContent {
    padding: 80px 0;
  }
}

.tabContent.is-active {
  display: block;
  opacity: 1;
  -webkit-animation-name: displayAnime;
  animation-name: displayAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.tabContent .tabContentBox {
  display: block;
  border: 1px solid #52392B;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentBox {
    margin-bottom: 100px;
  }
}

.tabContent .tabContentImg {
  margin-bottom: 10px;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentImg {
    margin-bottom: 20px;
  }
}

.tabContent .tabContentImg img {
  display: block;
  width: 100%;
}

.tabContent .tabContentTxt {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 30px;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentTxt {
    font-size: 2.4rem;
    margin-bottom: 60px;
  }
}

.tabContent .tabContentLsit {
  display: block;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentLsit {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* gap: 60px 100px; */
  }
}

.tabContent .tabContentLsit .listItem {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentLsit .listItem {
    width: calc(50% - 50px);
    margin-bottom: 0;
  }
}

.tabContent .tabContentLsit .listItem.mgb0 {
  margin-bottom: 0 !important;
}

.tabContent .tabContentLsit .listItem h5 {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #C5B89C;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentLsit .listItem h5 {
    font-size: 2.8rem;
  }
}

.tabContent .tabContentLsit .listItem h5 .dot {
  display: contents;
}


.tabContent .tabContentLsit .listItem h5 .dot::after {
  content: "";
  background: radial-gradient(farthest-side, #C5B89C, #C5B89C 20%, transparent 70%, transparent);
  background-size: 3px 2px;
  display: inline-block;
  height: 2px;
  flex-grow: 1;
}

.tabContent .tabContentLsit .listItem h5 .price {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  margin-left: 10px;
  font-size: 1.4rem;
  color: #52392B;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentLsit .listItem h5 .price {
    font-size: 1.8rem;
  }
}

.tabContent .tabContentLsit .listItem ul li {
  display: flex;
  align-items: center;
}

.tabContent .tabContentLsit .listItem ul li .dot {
  display: contents;
}

.tabContent .tabContentLsit .listItem ul li .dot::after {
  content: "";
  background: radial-gradient(farthest-side, #C5B89C, #C5B89C 20%, transparent 70%, transparent);
  background-size: 3px 2px;
  display: inline-block;
  height: 2px;
  flex-grow: 1;
}

.tabContent .tabContentLsit .listItem ul li p {
  margin-right: 10px;
}

.tabContent .tabContentLsit .listItem ul li p:last-child {
  margin-right: 0;
  margin-left: 10px;
}

.tabContent .tabContentLsit .listItem ul li p span {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
}

.tabContent .tabContentLsit .listItem ul li p .hot {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  background: #F25F5F;
  border-radius: 25px;
  color: #fff;
  padding: 0 8px;
  margin-left: 5px;
}

@media screen and (min-width: 1025px) {
  .tabContent .tabContentLsit .listItem ul li p .hot {
    font-size: 1.5rem;
  }
}

.tabContent .tabContentLsit .listItem ul.mgb40 {
  margin-bottom: 40px;
}

.tabContent .tabContentLsit .listItem .menu_picture {
  margin-bottom: 40px;
}

.tabContent .tabContentLsit .listItem .menu_picture picture {
  display: block;
  width: 100%;
}

.tabContent .tabContentLsit .listItem .menu_picture picture img {
  display: block;
  width: 100%;
}

.acdOpen {
  margin-bottom: 30px;
}

@media screen and (min-width: 1025px) {
  .acdOpen {
    margin-bottom: 60px;
  }
}

.acdOpen .acdTtl {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  background: #6F594D;
  cursor: pointer;
  position: relative;
  padding: 20px;
  margin-bottom: 0;
}

@media screen and (min-width: 1025px) {
  .acdOpen .acdTtl {
    font-size: 3rem;
    padding: 20px 30px;
  }
}

.acdOpen .acdTtl::before,
.acdOpen .acdTtl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.acdOpen .acdTtl::after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.acdOpen .close {
  cursor: pointer;
  position: relative;
}

.acdOpen .close::after {
  transform: translateY(-50%) rotate(0deg);
  transition: 0.5s;
}

.acdOpen .acdCont {
  display: none;
  background: #EBE9E5;
  padding: 20px;
}

@media screen and (min-width: 1025px) {
  .acdOpen .acdCont {
    padding: 60px;
  }
}

.acdOpen .acdCont .acdContWrap {
  display: block;
}

@media screen and (min-width: 1025px) {
  .acdOpen .acdCont .acdContWrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}

.acdOpen .acdCont .acdContWrap>div {
  width: 100%;
}

@media screen and (min-width: 1025px) {
  .acdOpen .acdCont .acdContWrap>div {
    width: calc(50% - 20px);
  }
}

.acdOpen .acdCont .acdContWrap .acdContWrapImg {
  margin-bottom: 20px;
}

@media screen and (min-width: 1025px) {
  .acdOpen .acdCont .acdContWrap .acdContWrapImg {
    margin-bottom: 0;
  }
}

.acdOpen .acdCont .acdContWrap .acdContWrapImg img {
  display: block;
  width: 100%;
}

.menuLIst02 div img {
  width: 100%;
  margin-bottom: 20px;
}

.menuLIst02 .acdOpen {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .menuLIst02 .acdOpen {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 769px) {
  .menuLIst02 .acdOpen .acdCont {
    padding: 10px 60px 40px 60px;
  }
}

.menuLIst02 .acdOpen .acdCont .flex02 div:first-child {
  margin-right: 0px;
}

@media screen and (min-width: 769px) {
  .menuLIst02 .acdOpen .acdCont .flex02 div:first-child {
    margin-right: 40px;
  }
}

.menuLIst02 .acdOpen .acdCont .flex02 div:first-child img {
  width: 100%;
}

.menuLIst02 .acdOpen .acdCont .flex02 div p:first-child {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .menuLIst02 .acdOpen .acdCont .flex02 div p:first-child {
    margin-bottom: 50px;
  }
}

.mgnB50 {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .mgnB50 {
    margin-bottom: 50px;
  }
}

.pSubsml {
  font-size: 1.2rem !important;
}

@media screen and (min-width: 769px) {
  .pSubsml {
    font-size: 1.4rem !important;
  }
}