@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');

body.noscroll {
  overflow: hidden;
}

.wrap {
  /* 共通 */
  font-family: 'Shippori Mincho B1', serif;
}

.main_contents {
  width : 85%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .main_contents {
    width: 90%;
  }
}

@media screen and (max-width: 420px) {
  .main_contents {
    width: 100%;
  }
}


/* ========================================================== 
  header
============================================================*/
.header_home {
  border: none
}

header {
  /* 共通 */
  padding      : 4% 0 1%;
  width        : 75%;
  margin       : 0 auto;
  display      : flex;
  align-items  : baseline;
  border-bottom: 2px solid #998675;
}

@media screen and (max-width: 1000px) {
  header {
    border-bottom: none;
    height       : 80px;
    padding      : 0;
    align-items  : flex-end;
    position     : relative;
  }
}

@media screen and (max-width: 768px) {
  header {
    width: 90%;
  }
}

@media screen and (max-width: 420px) {
  header {
    width : 90%;
    height: 65px;
  }
}

@media screen and (max-width: 330px) {
  header {
    height: 55px;
  }
}

.logo {
  width       : 20%;
  margin-right: 3%;
  min-width   : 180px;
}

@media screen and (max-width: 1000px) {
  .logo {
    width: 25%;
  }
}

@media screen and (max-width: 420px) {
  .logo {
    min-width: 130px;
  }
}

.logo img {
  width: 100%;
}

header nav {
  width: 80%;

  height        : 100%;
  display       : flex;
  align-items   : center;
  font-size     : 15px;
  font-weight   : 200;
  letter-spacing: 1px;
}

.header_left {
  width          : 80%;
  display        : flex;
  justify-content: space-around;
  align-items    : center;
}


.header_left li {
  margin-right: 6%;
  padding     : 2% 0;

  width     : 15%;
  min-width : 75px;
  text-align: center;
}

.header_left li:nth-of-type(1) {
  width    : 17%;
  min-width: 85px;
}

.header_left li img {
  width: 100%;
}

.header_left li img.nav_menu {
  width: 58%;
}

.header_left li img.nav_thebar {
  width: 85%;
}

.header_right {
  width          : 40%;
  display        : flex;
  align-items    : center;
  justify-content: flex-end;
}

.reserve {
  width          : 45%;
  width          : 150px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  background     : #998675;
  padding        : 3% 0;
  margin-right   : 5%;
}

.reserve img {
  width       : 15%;
  margin-right: 4%;
}

.reserve a span {
  font-size   : 13px;
  margin-right: 2px;
}

.reserve a {
  font-size  : 12px;
  color      : #fff;
  font-weight: 200;
}

.header_right li {
  width       : 20px;
  margin-right: 5%;
}

.header_right li:nth-of-type(2) {
  margin-right: 0;
}

.header_right li:nth-of-type(1) img {
  width: 80%;
}

.header_right li:nth-of-type(2) img {
  width: 100%;
}

.sp_reserve {
  display: none;
}

@media screen and (max-width: 1000px) {
  .sp_reserve {
    display        : block;
    width          : 70px;
    height         : 100%;
    background     : #998675;
    color          : #fff;
    font-size      : 10px;
    display        : flex;
    flex-direction : column;
    justify-content: flex-end;
    text-align     : center;
    font-weight    : 300;
    padding-bottom : 8px;
    position       : absolute;
    right          : 2%;
  }

  .sp_reserve.active {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .sp_reserve {
    right: 7%;
  }
}

@media screen and (max-width: 420px) {
  .sp_reserve {
    width: 60px;
    right: 13%;
  }
}

.sp_reserve img {
  width : 45%;
  margin: 0 auto 7px;
}


/* ========================================================== 
  SP nav, toggle
============================================================*/
@media screen and (max-width: 1000px) {
  .toggle {
    display : block;
    top     : 7.4%;
    right   : 8%;
    width   : 40px;
    height  : 28px;
    cursor  : pointer;
    position: fixed;
    z-index : 11111;
  }

  .toggle span {
    display      : block;
    width        : 70%;
    height       : 2px;
    background   : #000;
    transition   : 0.5s;
    margin-bottom: 15%;
  }

  .toggle span:nth-of-type(2) {
    position: relative;
  }

  .toggle.active span:nth-of-type(1) {
    transform: rotate(45deg);
    transform: translateY(4px) rotate(-45deg);
  }

  .toggle.active span:nth-of-type(2) {
    opacity   : 0;
    transition: 0.5s;
  }

  .toggle.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }

  header nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .toggle {
    top   : 5.9%;
    height: 25px;
    right : 3%;
  }
}

@media screen and (max-width: 420px) {
  .toggle {
    top: 6.1%;
  }
}

@media screen and (max-width: 380px) {
  .toggle {
    top: 5.6%;
  }
}

@media screen and (max-width: 330px) {
  .toggle {
    top  : 6.2%;
    right: 0;
  }
}

.sp_nav {
  display: none;
}

@media screen and (max-width: 1000px) {
  .sp_nav {
    width     : 100%;
    height    : 100vh;
    z-index   : 20;
    opacity   : 0;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    text-align: left;
    display   : inline-block;
    background: #ebe7e3;
    background: #fff;
    position  : absolute;
    right     : 0;
    top       : 10.3%
  }

  .sp_nav.active {
    right     : 0;
    top       : 10.3%;
    opacity   : 1;
    visibility: visible;
    position  : fixed;
    overflow-y: auto;
  }

  .sp_nav ul {
    text-align: center;
    padding   : 0 7% 5%;
    background: #ebe7e3;
    width     : 90%;
    margin    : 0 auto;
    margin-top: 3%;
  }

  .sp_nav ul li {
    padding       : 5% 0 4%;
    border-bottom : 2px solid #fff;
    color         : #666666;
    letter-spacing: 1px;
    width         : 100%;
  }

  .sp_nav ul li:nth-of-type(1) img,
  .sp_nav ul li:nth-of-type(2) img,
  .sp_nav ul li:nth-of-type(3) img {
    width    : 17%;
    min-width: 80px;
  }

  .sp_nav ul li:nth-of-type(2) img {
    width    : 9.5%;
    min-width: 43px;
  }

  .sp_nav ul li:nth-of-type(4) img {
    width    : 14%;
    min-width: 67px;
  }

  .sp_nav ul li:nth-of-type(5) {
    border-bottom: none;
  }

  .sp_iconArea {
    display        : flex;
    justify-content: center;
    margin-top     : 3%;
  }

  .sp_icon {
    margin-right: 4%;
  }

  .sp_icon:nth-of-type(2) {
    margin-right: 0;
  }

  .sp_icon img {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .sp_nav ul li {
    padding: 6% 0 4%;
  }

  .sp_nav ul li a {
    font-size: 14px;
  }
}


/* ========================================================== 
  index.html video
============================================================*/
.mv {
  position: relative;
}

@media screen and (max-width: 1000px) {
  .mv {
    margin-top: 15px;
  }
}

#sound {
  position : absolute;
  right    : 2%;
  bottom   : 2%;
  color    : #fff;
  width    : 2%;
  min-width: 20px;
}

@media screen and (max-width: 768420px) {
  #sound {
    position : absolute;
    bottom   : 5%;
    min-width: 15px;
  }
}

#sound img {
  width: 100%;
}

/* ========================================================== 
  about
============================================================*/
section {
  padding: 0 5%;
}

@media screen and (max-width: 420px) {
  section {
    padding: 0 3%;
  }
}

.about {
  text-align : center;
  color      : #333333;
  line-height: 1.8;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .about {
    padding: 0 3%;
  }
}

h1 {
  font-size     : 18px;
  letter-spacing: 6px;
  /* font-weight   : 300; */
  margin-top    : 6%;
}

@media screen and (max-width: 900px) {
  h1 {
    font-size: 16px;
  }
}

@media screen and (max-width: 420px) {
  h1 {
    font-size     : 12px;
    margin-top    : 13%;
    letter-spacing: 3px;
  }
}

.about h5 {
  font-size  : 28px;
  /* font-weight: 500; */
  margin     : 0;
}

@media screen and (max-width: 900px) {
  .about h5 {
    font-size: 25px;
  }
}

@media screen and (max-width: 420px) {
  .about h5 {
    font-size: 20px;
  }
}

.about span {
  margin-left: 2%;
}

.about_desc {
  font-size     : 18px;
  /* font-weight   : 500; */
  letter-spacing: 1px;
  line-height   : 2;
  margin        : 3% auto 10%;
  max-width     : 1100px;
}

@media screen and (max-width: 1024px) {
  .about_desc {
    font-size: 16px;
  }
}

@media screen and (max-width: 900px) {
  .about_desc {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .about_desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  .about_desc {
    font-size : 13px;
    margin-top: 6%;
  }
}

/* ========================================================== 
  News
============================================================*/
.box_news {
  margin         : 5% auto 10%;
  width          : 90%;
  height         : 25vw;
  display        : flex;
  flex-wrap      : wrap;
  justify-content: space-evenly;
  overflow-y     : scroll;
  padding        : 3%;
  font-weight: 700;
}

@media screen and (max-width: 900px) {
  .box_news {
    flex-wrap      : nowrap;
    flex-direction : column;
    justify-content: unset;
  }
}

@media screen and (max-width: 420px) {
  .box_news {
    margin: 20% auto 20%;
  }
}

.box_news::-webkit-scrollbar {
  width: 10px;
}

@media screen and (max-width: 420px) {
  .box_news::-webkit-scrollbar {
    width: 7px;
  }
}

.box_news::-webkit-scrollbar-thumb {
  background: #111;
}

.box_news::-webkit-scrollbar-track {
  background: #eeecec;
}

.box_news:after {
  content: "";
  display: block;
  width  : 40%;
  height : 0;
}

.post {
  width        : 40%;
  height       : 40%;
  margin-bottom: 4%;
}

@media screen and (max-width: 900px) {
  .post {
    width        : 100%;
    height       : 100%;
    margin-bottom: 13%;
  }
}

.post_data {
  font-size     : 13px;
  color         : #666666;
  letter-spacing: 1px;
  margin-bottom : 8px;
}

@media screen and (max-width: 420px) {
  .post_data {
    font-size: 10px;
  }
}

.post_txt {
  font-size: 15px;
}

@media screen and (max-width: 420px) {
  .post_txt {
    font-size: 10px;
  }
}

.post_txt p {
  width        : 50%;
  text-overflow: ellipsis;
  line-height  : 1.3;
  white-space  : nowrap;
  text-overflow: ellipsis;
  overflow     : hidden;
}


/* ========================================================== 
  Online Store
============================================================*/
.store {
  margin: 10% 0;
}

@media screen and (max-width: 420px) {
  .store {
    margin: 20% 0;
  }
}

.box_store {
  width : 90%;
  margin: 0 auto;
}

@media screen and (max-width: 420px) {
  .box_store {
    width: 100%;
  }
}

.box_store img {
  width     : 100%;
  text-align: center;
}


/* ========================================================== 
  Data
============================================================*/
.data {
  margin-bottom: 18%;
}

.box_data {
  color         : #333333;
  text-align    : center;
  letter-spacing: 1px;
  margin-bottom : 8%;
  font-weight: 700;
}

@media screen and (max-width: 420px) {
  .box_data {
    margin-bottom: 20%;
  }
}

.box_data h1 {
  font-size     : 26px;
  /* font-weight   : 500; */
  letter-spacing: 2px;
  margin-top    : 5%;
  line-height   : 1.3;
}

@media screen and (max-width: 900px) {
  .box_data h1 {
    font-size: 25px;
  }
}

@media screen and (max-width: 420px) {
  .box_data h1 {
    font-size : 20px;
    margin-top: 8%;
    margin-bottom: 6%;
  }
}

.box_data h1 span {
  font-size     : 15px;
  display       : block;
  letter-spacing: 1px;
}

@media screen and (max-width: 900px) {
  .box_data h1 span {
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  .box_data h1 span {
    font-size: 11px;
  }
}

.box_txt {
  margin: 3% 0 2%;
  font-weight: 700;
}

.fz18 {
  font-size: 18px;
}

@media screen and (max-width: 900px) {
  .fz18 {
    font-size: 16px;
  }
}

@media screen and (max-width: 420px) {
  .fz18 {
    font-size: 12px;
  }
}

.add {
  font-size: 18px;
}

@media screen and (max-width: 900px) {
  .add {
    font-size: 16px;
  }
}

@media screen and (max-width: 420px) {
  .add {
    font-size: 12px;
  }
}

.box_txt span {
  font-size: 19px;
}

@media screen and (max-width: 900px) {
  .box_txt span {
    font-size: 16px;
  }
}

@media screen and (max-width: 420px) {
  .box_txt span {
    font-size: 12px;
  }
}

.mr10 {
  margin-right: 10px;
}

.info {
  line-height: 1.3;
  margin     : 2% 0 3%;
}

@media screen and (max-width: 420px) {
  .info {
    line-height: 1.3;
    margin     : 3% 0 4%;
  }
}

.ml15 {
  margin-left: 15px;
}

@media screen and (max-width: 420px) {
  .box_txt .txt {
    font-size: 11px;
  }
}

.map {
  width : 90%;
  height: 40vw;
  margin: 0 auto;
}

@media screen and (max-width: 420px) {
  .map {
    width: 100%;
  }
}

/* ========================================================== 
  images
============================================================*/
.box_images {
  width : 20%;
  margin: 0 auto 20%;
}

.box_images img {
  width: 100%;
}


/* ========================================================== 
  menu.html
============================================================*/
.menu {
  width        : 90%;
  margin       : 0 auto;
  margin-bottom: 20%;
  font-weight: 700;
}

.ttl {
  /* 共通 */
  width         : 100%;
  min-width     : 150px;
  max-width     : 300px;
  text-align    : center;
  letter-spacing: 1px;
  margin        : 6% auto 0;
}

@media screen and (max-width: 768px) {
  .ttl {
    margin: 6% auto 10%;
  }
}

@media screen and (max-width: 420px) {
  .ttl {
    margin: 6% auto 8%;
  }
}

.ttl h2 {
  /* 共通 */
  padding  : 5% 4% 3%;
  margin   : 0 auto;
  font-size: 1.8vw;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .ttl h2 {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 420px) {
  .ttl h2 {
    margin-bottom: 2%;
    font-size    : 16px;
  }
}

.menu_imgttl {
  width: 33%;
}
@media screen and (max-width: 420px) {
  .menu_imgttl {
    width: 24%;
  }
}

.sub_ttl {
  /* 共通 */
  padding  : 0 18%;
  font-size: 15px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .sub_ttl {
    font-size: 13px;
  }
}

@media screen and (max-width: 420px) {
  .sub_ttl {
    font-size: 13px;
  }
}

.menu_list {
  width : 80%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .menu_list {
    width: 100%;
  }
}

@media screen and (max-width: 420px) {
  .menu_list {
    width: 100%;
  }
}

h5 {
  /* 共通 */
  font-size     : 1.8vw;
  letter-spacing: 4px;
  text-align    : center;
  margin        : 8% 0 13%;
}

@media screen and (max-width: 768px) {
  h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 420px) {
  h5 {
    font-size     : 20px;
    letter-spacing: 2px;
  }
}

.menu_box {
  display       : flex;
  align-items   : center;
  letter-spacing: 2px;
}

@media screen and (max-width: 420px) {
  .menu_box {
    flex-direction: column;
  }
}

.box_left {
  width        : 40%;
  border-radius: 20px;
  text-align   : right;
}

@media screen and (max-width: 420px) {
  .box_left {
    width: 60%;
  }
}

.box_left img {
  width        : 100%;
  border-radius: 20%;
  object-fit   : cover;
}

.box_right {
  width        : 60%;
  padding      : 10px 0 15px 3%;
  border-bottom: 2px solid #000;
  line-height  : 1.5;
}

@media screen and (max-width: 950px) {
  .box_right {
    width: 80%;
  }
}

@media screen and (max-width: 420px) {
  .box_right {
    width        : 100%;
    padding      : 10px 0 15px 0;
    border-bottom: none;
    text-align   : center;
  }
}

h3 {
  /* 共通 */
  font-size     : 1.6vw;
  letter-spacing: 1px;
  /* font-weight   : 500; */
}

@media screen and (max-width: 1024px) {
  h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 420px) {
  h3 {
    font-size     : 16px;
    letter-spacing: 1px;
  }
}

h4 {
  /* 共通 */
  font-size     : 1.8vw;
  letter-spacing: 3px;
  /* font-weight   : 500; */
}

@media screen and (max-width: 1024px) {
  h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 420px) {
  h4 {
    font-size     : 20px;
    letter-spacing: 2px;
  }
}

.price {
  /* 共通 */
  font-size     : 1.5vw;
  /* font-weight   : 400; */
  display       : inline-block;
  margin        : 1% 2% 0 0;
  color         : #222;
  letter-spacing: 1px;
}

@media screen and (max-width: 1024px) {
  .price {
    font-size: 16px;
  }
}

@media screen and (max-width: 420px) {
  .price {
    font-size     : 14px;
    letter-spacing: 1px;
  }
}

.box_right .price {
  margin: 2% 2% 0 0;
}

.dn_price {
  margin: 2% 2% 1% 0;
}

.tax {
  font-size     : 1.5vw;
  color         : #222;
  letter-spacing: 1px;
}

@media screen and (max-width: 1024px) {
  .tax {
    font-size: 15px;
  }
}

@media screen and (max-width: 420px) {
  .tax {
    font-size     : 13px;
    letter-spacing: 1px;
  }
}

.menu_list ul li:nth-of-type(2) {
  margin: 15% 0;
}


/* ========================================================== 
  footer
============================================================*/
footer {
  padding        : 2% 0 5%;
  text-align     : center;
  width          : 100%;
  display        : flex;
  align-items    : center;
  justify-content: center;
}

@media screen and (max-width: 420px) {
  footer {
    margin-bottom: 5%;
  }
}

footer a {
  margin-right: 1.5%;
}

footer img {
  width: 80%;
}


/* ========================================================== 
  menu_01, 02, 03
============================================================*/
.menu_ttl {
  width      : 100%;
  margin     : 6% auto 5%;
  text-align : center;
  /* font-weight: 500; */
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .menu_ttl {
    margin: 10% auto 5%
  }
}

.sliderArea {
  max-width: 100%;
  margin   : 0 auto;
}

.slick-slide {
  margin: 0 5px;
}

.slick-slide img {
  width : 100%;
  height: auto;
}

.slick-prev,
.slick-next {
  z-index: 1;
}

.thumb_1 {
  margin: 20px auto 0;
  width : 99.8%;
}

.thumb_2 {
  margin: 20px auto 0;
  width : 100%;
}

.thumb_3 {
  margin: 20px auto 0;
  width : 100%;
}

.thumb .slick-slide {
  cursor: pointer;
}

.thumb .slick-slide:hover {
  opacity: .7;
}

.slick-dotted.slick-slider {
  margin-bottom: 20px !important;
}

.slick-dots {
  bottom : 0 !important;
  padding: 2% 0 !important;
}

@media screen and (max-width: 420px) {
  .slick-dots {
    display: none !important;
  }
}

.slick-dots li {
  margin: 0 1px !important;
}

.slick-dots li button:before {
  opacity  : .7 !important;
  color    : #fff !important;
  font-size: 10px !important;
}

.slick-dots li.slick-active button:before {
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  color: #fff !important;
}

.slick-next,
.slick-prev {
  width : 30px !important;
  height: 30px !important;
}

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

  .slick-next,
  .slick-prev {
    width : 15px !important;
    height: 15px !important;
  }
}

.slick-prev {
  right          : 0 !important;
  background     : url(../img/cmn/prev.png) no-repeat !important;
  background-size: contain !important;
  left           : 30px !important;
}

@media screen and (max-width: 420px) {
  .slick-prev {
    left: 13px !important;
  }
}

.slick-next {
  right          : 15px !important;
  background     : url(../img/cmn/next.png) no-repeat !important;
  background-size: contain !important;
}

@media screen and (max-width: 420px) {
  .slick-next {
    right: 2px !important;
  }
}

.slick-next:before {
  content: '' !important;
}

.slick-prev:before {
  content: '' !important;
}

.slick-initialized .slick-slide {
  outline: none !important;
}

.course_menu {
  width      : 90%;
  margin     : 0 auto;
  padding    : 3% 0 4%;
  line-height: 1.5;
  /* font-weight: 500; */
}

@media screen and (max-width: 950px) {
  .course_menu {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .course_menu {
    padding: 3% 1.5% 4%;
  }
}

.course_menu_table {
  width      : 100%;
  line-height: 1.6;
  font-size  : 15px;
}

@media screen and (max-width: 580px) {
  .course_menu_table {
    font-size: 12px;
  }
}

.course_menu_table tr {
  display: flex;
}

@media screen and (max-width: 900px) {
  .course_menu_table tr {
    flex-wrap: wrap;
  }

  .td1 {
    width: 100%;
  }
}

.course_menu_table td {
  margin-right: 2%;
}

td:before {
  content     : '●';
  color       : #d1b073;
  margin-right: 5px;
}

.ur td:before {
  content     : '●';
  color       : #998675;
  margin-right: 5px;
}

.dn td:before {
  content     : '●';
  color       : #8a573b;
  margin-right: 5px;
}

.course_menu p {
  font-size : 13px;
  margin-top: 10px;
}

@media screen and (max-width: 580px) {
  .course_menu p {
    font-size : 11px;
    margin-top: 5px;
  }
}

.course_main {
  width      : 90%;
  margin     : 0 auto;
  line-height: 2;
}

@media screen and (max-width: 950px) {
  .course_main {
    width: 100%;
  }
}

@media screen and (max-width: 580px) {
  .course_main {
    padding: 0 1.5%;
  }
}

.course_main p {
  font-size: 17px;
}

@media screen and (max-width: 580px) {
  .course_main p {
    font-size: 12px;
  }
}

.course_main_table {
  width: 60%;
}

.course_main td {
  margin-right: 2%;
  font-weight : 500;
}

.row {
  display: flex;
}

.row_left {
  width: 250px;
}

@media screen and (max-width: 420px) {
  .row_left {
    width: 200px;
  }
}

.row_right {
  width: 250px;
}

@media screen and (max-width: 580px) {
  .row_right {
    width: 310px;
  }
}

@media screen and (max-width: 320px) {
  .row_right {
    width: 250px;
  }
}

.row p {
  /* font-weight: 500; */
  font-size  : 16px;
}

@media screen and (max-width: 580px) {
  .row p {
    font-size: 12px;
  }
}

.row p:before {
  content     : '●';
  color       : #d1b073;
  margin-right: 5px;
}

.ur .row p:before {
  content     : '●';
  color       : #998675;
  margin-right: 5px
}

.dn .row p:before {
  content     : '●';
  color       : #8a573b;
  margin-right: 5px
}

.row a {
  font-family  : 'Noto Sans JP', sans-serif;
  font-size    : 14px;
  font-weight  : 400;
  background   : #d1b073;
  margin-left  : 20px;
  border-radius: 12px;
  display      : inline-block;
  width        : 70px;
  height       : 23px;
  line-height  : 23px;
  text-align   : center;
  color        : #fff;
}

@media screen and (max-width: 580px) {
  .row a {
    font-size  : 10px;
    width      : 45px;
    height     : 15px;
    line-height: 15px;
    margin-left: 5px;
  }
}

@media screen and (max-width: 420px) {
  .row a {
    border-radius: 8px;
  }
}

@media screen and (max-width: 320px) {
  .row a {
    transform: scale(0.7);
  }
}

.ur .row a {
  background: #998675;
}

.dn .row a {
  background: #8a573b;
}

.row a.ml {
  margin-left: 68px;
}

@media screen and (max-width: 580px) {
  .row a.ml {
    margin-left: 41px;
  }
}

.row a.lim {
  font-size  : 12px;
  background : #fff;
  border     : 2px solid #d1b073;
  color      : #d1b073;
  line-height: 19px;
  height     : 25px;
}

@media screen and (max-width: 580px) {
  .row a.lim {
    font-size  : 10px;
    line-height: 15px;
    height     : 20px
  }
}

@media screen and (max-width: 420px) {
  .row a.lim {
    margin-left  : -5px;
    border       : 2px solid #998675;
    color        : #998675;
    transform    : scale(0.7);
    width        : 66px;
    height       : 25px;
    line-height  : 20px;
    border-radius: 11px;
  }
}

@media screen and (max-width: 320px) {
  .row a.lim {
    margin-left: 2px;
    transform  : scale(0.6);
    width      : 50px;
    height     : 20px;
    line-height: 15px;
  }
}

.ur .row a.lim {
  border: 2px solid #998675;
  color : #998675;
}

.dn .row a.lim {
  border: 2px solid #8a573b;
  color : #8a573b;
}


/* ========================================================== 
  The BAR
============================================================*/
.bar {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
}

.bar_ttl01 {
  width: 100%;
}

.thebar_imgttl {
  width: 50%;
}

@media screen and (max-width: 480px) {
  .thebar_imgttl {
    width: 33%;
  }
}

.bar_ttl01 h2 {
  border-bottom: none;
  margin-bottom: 0;
  padding      : 5% 4% 3%;
}

.bar_hr01 {
  width : 60%;
  margin: 0 auto 3%;
}

.bar_hr02 {
  width : 45%;
  margin: 0 auto 1%;
}

.bar_sub {
  border-top: none;
  display   : block;
  width     : 100%;
}

.bar_contents {
  width    : 80%;
  max-width: 1000px;
  margin   : 0 auto;
}

@media screen and (max-width: 768px) {
  .bar_contents {
    width: 90%;
  }
}

@media screen and (max-width: 420px) {
  .bar_contents {
    width: 95%;
  }
}

.bar_contents h5 {
  margin: 6% 0 10%;
}

.bar_contents .imgArea {
  display        : flex;
  justify-content: center;
  align-items    : flex-start;
}

.bar_img01 {
  width       : 30%;
  margin-right: 0.4%;
}

.bar_img01:before {
  content    : "";
  display    : block;
  width      : 100%;
  padding-top: 75%;
}

.bar_img02 {
  width: 79.6%;
}

.bar_img02:before {
  content    : "";
  display    : block;
  width      : 100%;
  padding-top: 75%;
}

.bar_menu {
  margin        : 5% 0 25%;
  /* font-weight: 500; */
}

@media screen and (max-width: 768px) {
  .bar_menu {
    display       : flex;
    flex-direction: column-reverse;
  }
}

.bar_menuList {
  display        : flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .bar_menuList {
    flex-direction: column;
  }
}

.bar_menuList_ttl {
  border-top: 1px solid #000;
  padding   : 2% 0;
}

.bar_menuList_ttl h5 {
  /* 共通 */
  line-height: 1.8;
  margin     : 0;
  font-size  : 1.6vw;
}

@media screen and (max-width: 420px) {
  .bar_menuList_ttl h5 {
    font-size: 18px;
  }
}

.charge,
.free {
  width: 47%;
}

@media screen and (max-width: 768px) {
  .charge {
    width        : 50%;
    margin-bottom: 5%;
  }

  .free {
    margin-left: auto;
    width      : 82%;
  }
}

@media screen and (max-width: 420px) {
  .charge {
    width        : 60%;
    margin-bottom: 8%;
  }
}

.charge_ttl {
  text-align: left;
}

.bar_price {
  display  : block;
  font-size: 1.2vw;
}

@media screen and (max-width: 768px) {
  .bar_price {
    font-size: 1.8vw;
  }
}

@media screen and (max-width: 420px) {
  .bar_price {
    font-size: 14px;
  }
}

.bar_price:after {
  content  : "円";
  font-size: 1vw;
}

@media screen and (max-width: 768px) {
  .bar_price:after {
    content  : "円";
    font-size: 12px;
  }
}

.charge_list {
  margin     : 10% 0;
  line-height: 1.5;
}

.charge_list li {
  display  : flex;
  font-size: 1.2vw;
}

@media screen and (max-width: 768px) {
  .charge_list li {
    font-size: 2vw;
  }
}

@media screen and (max-width: 420px) {
  .charge_list li {
    font-size: 13px;
  }
}

.charge_list li p {
  width: 60%;
}
@media screen and (max-width: 420px) {
  .charge_list li p {
    width: 70%;
  }
}
.free_ttl {
  text-align: right;
}

.bar_menuDesc {
  font-size     : 1.1vw;
  letter-spacing: 1px;
  line-height   : 1.5;
}

@media screen and (max-width: 768px) {
  .bar_menuDesc {
    width      : 100%;
    margin     : 8% auto 15%;
    text-align : center;
    font-size  : 2vw;
    line-height: 1.8;
  }
}

@media screen and (max-width: 420px) {
  .bar_menuDesc {
    font-size: 15px;
  }
}

.bar_menuDesc .sp_on {
  display: none;
}

@media screen and (max-width: 768px) {
  .bar_menuDesc .sp_on {
    display: block;
  }
}

.service_charge {
  text-align    : center;
  font-size     : 1.1vw;
  letter-spacing: 1px;
  line-height   : 1.5;
  margin-bottom : 2%;
}

@media screen and (max-width: 768px) {
  .service_charge {
    font-size: 1.7vw;
  }
}

@media screen and (max-width: 420px) {
  .service_charge {
    font-size    : 11px;
    margin-bottom: 5%;
  }
}


/* ========================================================== 
  Signature
============================================================*/
.signature {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 700;
}

.sig_ttl {
  width: 100%;
}

.sig_imgttl {
  width: 60%;
}
@media screen and (max-width: 420px) {
  .sig_imgttl {
    width: 45%;
  }
}
.signature_contents {
  width    : 88%;
  max-width: 1000px;
  margin   : 0 auto 6%;
}

@media screen and (max-width: 768px) {
  .signature_contents {
    width: 95%;
  }
}

@media screen and (max-width: 380px) {
  .signature_contents {
    width: 98%;
  }
}

.signature_contents h5 {
  margin: 6% 0 5%;
}

@media screen and (max-width: 420px) {
  .signature_contents h5 {
    font-size: 20px;
  }
}

.sig_img {
  width: 100%;
}

.signature_contents hr {
  width : 80%;
  margin: 7% auto;
}

.sig_desc {
  font-size  : clamp(14px, 1.5vw, 18px);
  line-height: 1.5;
}

.sig_desc span {
  font-size     : clamp(18px, 2.5vw, 32px);
  letter-spacing: -3px;
}