@charset "utf-8";

/*--------------------------------------
  # page-title
--------------------------------------*/
#pagetitle {
  clear: both;
  display: flex;
  flex-direction: column-reverse;
}

#pagetitle .pagetitle-wrapper {
  padding: 15px 25px 5px;
  line-height: 1.2;
}

#pagetitle .pagetitle-wrapper .jp {
  margin: 0 0 5px -0.1em;
  color: #333;
  font-size: 2.4rem;
  font-weight: 500;
}

#pagetitle .pagetitle-wrapper .en {
  color: #6B7B62;
  font-size: 1.2rem;
  font-weight: bold;
}

#pagetitle .pagetitle-img {
  margin-right: 15px;
}

#pagetitle .pagetitle-img img {
  display: block;
  width: 100%;
  height: 140px;
  border-radius: 0 100vw 100vw 0;
  object-fit: cover;
}

@media (min-width: 950px) {
  #pagetitle {
    position: relative;
    display: block;
    height: 380px;
    margin-top: -25px;
  }

  #pagetitle:after {
    height: 80px;
    background: url(../img/bg/pagetitle_mask_pc.png) no-repeat;
    background-size: 100% 100%;
  }

  #pagetitle .pagetitle-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1380px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
  }

  #pagetitle .pagetitle-wrapper .jp {
    margin-bottom: 15px;
    font-size: 4.8rem;
  }

  #pagetitle .pagetitle-wrapper .en {
    font-size: 2.4rem;
  }

  #pagetitle .pagetitle-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-left: max(45%, 475px);
  }

  #pagetitle .pagetitle-img img {
    height: 100%;
    border-radius: 100vw 0 0 100vw;
  }
}

/*--------------------------------------
  # breadcrumbs
--------------------------------------*/
#breadcrumbs {
  font-size: 1.1rem;
  line-height: 1.2;
  overflow: hidden;
  overflow-x: auto;
}

#breadcrumbs ol {
  display: flex;
  justify-content: right;
  margin: 0 auto;
  padding: 0 25px;
}

#breadcrumbs li {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

#breadcrumbs li:not(:first-child):before {
  content: '';
  width: 6px;
  height: 6px;
  margin: 0 6px 0 5px;
  border-top: 1px solid;
  border-right: 1px solid;
  opacity: 0.8;
  transform: rotate(45deg);
}

@media (min-width: 950px) {
  #breadcrumbs {
    margin-top: -1.2em;
    font-size: 1.3rem;
  }

  #breadcrumbs ol {
    justify-content: left;
    max-width: 1380px;
    padding: 0 40px;
  }
}

/*--------------------------------------
  # main
--------------------------------------*/

#main {
  padding: 30px 0 60px;
}

@media (min-width: 950px) {
  #main {
    padding: 60px 0 100px;
  }
}

/*--------------------------------------
  # layout
--------------------------------------*/

.column-layout {}

.column-layout .column-layout-main {}

.column-layout .column-layout-sub {
  padding: 25px;
}

/* column-layout-sub-item */

.column-layout-sub-item {
  margin-bottom: 20px;
}

.column-layout-sub-item .column-layout-sub-item-ttl {
  margin-bottom: 15px;
  padding: 6px 10px;
  color: #FFF;
  font-weight: 500;
  background: #6ca15a;
  border-radius: 5px;
}

.column-layout-sub-item .column-layout-sub-item-body {}

.column-layout-sub-item .column-layout-sub-item-body ul {}

.column-layout-sub-item .column-layout-sub-item-body ul li {
  margin: 8px 0;
}

.column-layout-sub-item .column-layout-sub-item-body ul li a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  vertical-align: top;
  font-size: 1.4rem;
  line-height: 1.6;
}

.column-layout-sub-item .column-layout-sub-item-body ul li a:before {
  content: '';
  position: absolute;
  top: 0.8em;
  left: 6px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border: 3px solid transparent;
  border-left: 5px solid;
}

.column-layout-sub-item .column-layout-sub-item-body ul li a:hover {}

@media (min-width: 950px) {
  .column-layout {
    display: flex;
    align-items: flex-start;
    max-width: 1380px;
    margin: 0 auto;
  }

  .column-layout .column-layout-main {
    flex: 1;
  }

  .column-layout .column-layout-sub {
    position: sticky;
    top: 90px;
    width: min(30%, 340px);
    padding: 40px;
  }

  /* column-layout-sub-item */
  .column-layout-sub-item {}

  .column-layout-sub-item .column-layout-sub-item-ttl {}

  .column-layout-sub-item .column-layout-sub-item-body {}

  .column-layout-sub-item .column-layout-sub-item-body ul {}

  .column-layout-sub-item .column-layout-sub-item-body ul li {}

  .column-layout-sub-item .column-layout-sub-item-body ul li a {}

  .column-layout-sub-item .column-layout-sub-item-body ul li a:before {}

  .column-layout-sub-item .column-layout-sub-item-body ul li a:hover {}
}

/*--------------------------------------
  # node
--------------------------------------*/

.node {
  padding: 25px 0;
  transition: 0.8s;
}

.node:first-child {}

.node .node-wrapper {
  max-width: 1380px;
  margin: 0px auto;
  padding: 0px 25px;
}

.node .node-wrapper>*:last-child {
  margin-bottom: 0;
}

/* title */
h2 {
  clear: both;
  margin-bottom: 23px;
  color: #333;
  font-size: 1.9rem;
  font-weight: 500;
}

h2:after {
  content: "";
  display: block;
  width: 3em;
  margin-top: 10px;
  border-top: 2px solid #588C46;
}

h3 {
  display: inline-block;
  margin: 15px 0;
  padding: 8px 10px;
  color: #FFF;
  background: #588C46;
  border-radius: 5px;
  line-height: 1.2;
}

h3:first-child {
  margin-top: 0;
}

h4 {}

h5 {}

@media (min-width: 950px) {
  .node {
    padding: 40px 0;
  }

  .node .node-wrapper {
    padding: 0 40px;
  }

  /* title */
  h2 {
    margin-bottom: 35px;
    font-size: 2.8rem;
    text-align: left;
  }

  h2:after {
    margin-top: 12px;
  }

  h3 {
    margin: 20px 0;
    padding: 12px 15px;
    font-size: 1.85rem;
  }

  h4 {}

  h5 {}
}

/*--------------------------------------
  # about
--------------------------------------*/

.director-introduction {
  position: relative;
  margin-top: 3.2em;
  padding: 25px 18px 18px;
  font-size: 1.4rem;
  background: rgb(255 255 255 / 80%);
  border: 1px solid #598c49;
  border-radius: 12px;
}

.director-introduction p:last-child {
  margin-bottom: 0;
}

.director-introduction h3 {
  position: absolute;
  top: 0;
  margin: 0;
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.director-introduction img {
}

.director-introduction .director-introduction-inner {
}

@media (min-width: 950px) {
.director-introduction {padding: 35px 20px 20px;font-size: 1.6rem;}

.director-introduction > *:last-child {
}

.director-introduction h3 {font-size: 1.7rem;}

.director-introduction img {
  margin: 0 10px 10px 30px;
}

.director-introduction .director-introduction-inner {
  overflow: hidden;
}
}

/*--------------------------------------
  # news
--------------------------------------*/

.news-list {
  margin: -25px 0 25px;
}

.news-list .news-list-item {
  padding: 25px 0;
}

.news-list .news-list-item {
  border-bottom: 1px solid #BBB;
}

.news-list .news-list-item .news-list-item-date {
  font-size: 1.2rem;
  font-weight: bold;
}

.news-list .news-list-item .news-list-item-date a {
  margin-left: 1em;
  text-decoration: none;
}

.news-list .news-list-item .news-list-item-ttl {}

.news-header {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.news-header .news-ttl {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #588C46;
  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: 1px solid #588C46;
  line-height: 1.6;
}

.news-header .news-date {
  font-size: 1.2rem;
}

.news-header .news-cat {
  margin-left: 1em;
  font-size: 1.2rem;
}

.news-header .news-cat a {
  text-decoration: none;
}

.news-header #seo-share {
  margin-left: auto;
}

.news-body {
  clear: both;
  margin-bottom: 15px;
  overflow: hidden;
}



/* pager */

.pager {
  margin: 0;
  line-height: 1.2;
}

.pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pager li {
  margin: 4px;
}

.pager span,
.pager a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 1.5em;
  padding: 4px;
  text-align: center;
}

.pager .current {
  color: #999;
}

.pager .prev,
.pager .next {
  width: 2em;
  height: 2em;
  color: #FFF;
  background: #588C46;
  border-radius: 100%;
  text-decoration: none;
}

/* post-nav */

.post-nav {
  clear: both;
  border-top: 1px solid #BBB;
  line-height: 1.2;
}

.post-nav .prev,
.post-nav .next {
  border-bottom: 1px solid #BBB;
}

.post-nav a {
  position: relative;
  display: block;
  padding: 15px 0;
  font-size: 94%;
}

.post-nav a:before {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0.6;
}

.post-nav .prev a {
  padding-left: 25px;
}

.post-nav .prev a:before {
  left: 8px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.post-nav .next a {
  padding-right: 25px;
  text-align: right;
}

.post-nav .next a:before {
  right: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

@media (min-width: 950px) {

  .news-list {}

  .news-list .news-list-item {}

  .news-list .news-list-item {}

  .news-list .news-list-item .news-list-item-date {}

  .news-list .news-list-item .news-list-item-date a {
    transition: 0.2s;
  }

  .news-list .news-list-item .news-list-item-date a:hover {
    opacity: 0.6;
  }

  .news-list .news-list-item .news-list-item-ttl {}

  .news-header {}

  .news-header .news-ttl {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }

  .news-header .news-date {
    font-size: 1.4rem;
  }

  .news-header .news-cat {
    font-size: 1.4rem;
  }

  .news-header .news-cat a {
    transition: 0.2s;
  }

  .news-header .news-cat a:hover {
    opacity: 0.6;
  }

  .news-header #seo-share {}

  .news-header #seo-share svg {
    width: 22px;
    height: 22px;
  }


  .post-nav {
    display: flex;
  }

  .post-nav .prev,
  .post-nav .next {
    flex: 1;
  }

  .post-nav .next {
    border-left: 1px dotted rgba(0, 0, 0, 0.2);
  }

  .post-nav a {
    padding: 15px;
  }

  .post-nav a:before {}

  .post-nav .prev a {}

  .post-nav .prev a:before {}

  .post-nav .next a {}

  .post-nav .next a:before {}

}















/*--------------------------------------
  # 当サロンについて
--------------------------------------*/


.features-block {
  margin-right: -25px;
}

.features-block .features-block-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 105px;
  margin-bottom: 10px;
  background: #FFF;
  border-radius: 100vw 0 0 100vw;
}

.features-block .features-block-item:last-child {
  margin-bottom: 0;
}

.features-block .features-block-item-num {
  position: absolute;
  top: 50%;
  left: -0.4em;
  color: #80574d;
  font-family: "Noto Serif JP", serif;
  font-size: 4.2rem;
  font-weight: 200;
  font-style: italic;
  transform: translateY(-55%);
}

.features-block dl {
  position: relative;
  z-index: 1;
  padding-left: 50px;
  filter: drop-shadow(0 0 0.8px #FFF) drop-shadow(0 0 0.8px #FFF) drop-shadow(0 0 0.8px #FFF) drop-shadow(0 0 0.8px #FFF) drop-shadow(0 0 0.8px #FFF);
  line-height: 1.4;
}

.features-block dl dt {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0rem;
  font-weight: 500;
}

.features-block dl dd {
  margin-top: 5px;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.features-block .features-block-item-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  height: 100%;
}

.features-block .features-block-item-img:after {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.features-block .features-block-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

@media (min-width: 950px) {

  .features-block {
    display: flex;
    margin: 80px -30px 0;
  }

  .features-block .features-block-item {
    flex: 1;
    height: auto;
    margin: 0 30px;
    border-radius: 15px;
  }

  .features-block .features-block-item:last-child {}

  .features-block .features-block-item-num {
    top: 8px;
  }

  .features-block dl {
    padding: 30px 0 30px 25px;
  }

  .features-block dl dt {
    font-size: 2.4rem;
  }

  .features-block dl dd {
    font-size: 1.5rem;
  }

  .features-block .features-block-item-img {
    width: 40%;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
  }

  .features-block .features-block-item-img:after {}

  .features-block .features-block-item-img img {}
}




/*--------------------------------------
  # 予約ブロック
--------------------------------------*/

.inqury-block {
  clear: both;
  padding-top: 10px;
}

.inqury-block .inqury-block-inner {}

.inqury-block .inqury-block-inner .aligncenter {}

.inqury-block ul {
  display: flex;
  height: 60px;
  border-radius: 15px;
  background: #FFF;
}

.inqury-block ul li {
  position: relative;
  flex: 1;
}

.inqury-block ul li:first-child:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  height: 70%;
  border-right: 1px solid #CCC;
  transform: translateY(-50%);
}

.inqury-block ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #FFF;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
}

.inqury-block ul i {
  margin-right: 0.3em;
  font-size: 1.4em;
}

.inqury-block ul .web a {
  color: #998500;
}

.inqury-block ul .line a {
  color: #588c46;
}

.inqury-block ul .line i {
  color: #00c400;
}

@media (min-width: 950px) {
  .inqury-block {
    padding-top: 30px;
  }

  .inqury-block .inqury-block-inner {
    font-size: 2.0rem;
  }

  .inqury-block .inqury-block-inner .aligncenter {}

  .inqury-block ul {
    width: min(100%, 880px);
    height: 100px;
    margin: 0 auto;
  }

  .inqury-block ul li {}

  .inqury-block ul li:first-child:after {}

  .inqury-block ul a {
    font-size: 2.6rem;
    transition: 0.2s;
  }

  .inqury-block ul a:hover {
    filter: contrast(0.8) brightness(1.4);
    transform: scale(1.08);
  }

  .inqury-block ul i {
    margin-right: 0.4em;
  }

  .inqury-block ul .web a {}

  .inqury-block ul .line a {}
}

/*--------------------------------------
  # 施術の流れ
--------------------------------------*/

.flow-block {
  position: relative;
  margin: -15px -10px -15px -20px;
  padding: 15px 0;
}

.flow-block:before {
  content: '';
  position: absolute;
  left: 17px;
  top: 0;
  width: 6px;
  height: 100%;
  background: #93B082;
  background: linear-gradient(0deg, rgba(147, 176, 130, 0) 0%, rgba(147, 176, 130, 1) 5%, rgba(147, 176, 130, 1) 95%, rgba(147, 176, 130, 0) 100%);
}

.flow-block .flow-block-inner {
  position: relative;
}

.flow-block .flow-block-inner::-webkit-scrollbar {
  display: none;
}

.flow-block .flow-block-item {
  display: flex;
  margin-bottom: 30px;
}

.flow-block .flow-block-item:last-child {
  margin-bottom: 0;
}

.flow-block .flow-block-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  color: #588C46;
  font-size: 1.6rem;
  font-weight: 800;
  background: #FFF;
  border-radius: 100%;
}

.flow-block .flow-block-body {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: -10px;
  padding: 15px;
  background: #FFF;
  border-radius: 15px;
}

.flow-block .flow-block-body:after {
  content: '';
  position: absolute;
  top: 0;
  right: 100%;
  width: 0;
  height: 0;
  margin: 20px -1px 0 0;
  border: 10px solid transparent;
  border-right: 13px solid #FFF;
}

.flow-block .flow-block-body .flow-block-body-img {
  order: 1;
  margin: 0 -15px -15px;
}

.flow-block .flow-block-body .flow-block-body-img img {
  display: block;
  width: 100%;
  height: 140px;
  background: #CCC;
  border-radius: 0 0 15px 15px;
  object-fit: cover;
}

.flow-block .flow-block-body .flow-block-body-ttl {
  margin-bottom: 10px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
}

.flow-block .flow-block-body .flow-block-body-body {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

@media (min-width: 950px) {

  .flow-block {
    margin: -40px 0 !important;
    padding: 40px 0;
  }

  .flow-block:before {
    left: 28px;
  }

  .flow-block .flow-block-inner {}

  .flow-block .flow-block-inner::-webkit-scrollbar {}

  .flow-block .flow-block-item {
    margin-bottom: 40px;
  }

  .flow-block .flow-block-num {
    width: 60px;
    height: 60px;
    font-size: 2.1rem;
    margin-right: 40px;
  }

  .flow-block .flow-block-body {
    display: grid;
    grid-template-columns: auto 40px 25%;
    margin-top: 0;
    padding: 0;
  }

  .flow-block .flow-block-body:after {
    border: 12px solid transparent;
    border-right: 15px solid #FFF;
  }

  .flow-block .flow-block-body .flow-block-body-img {
    grid-column: 3 / 4;
    grid-row: 1 / 4;
    margin: 0;
  }

  .flow-block .flow-block-body .flow-block-body-img img {
    height: 100%;
    border-radius: 0 15px 15px 0;
  }

  .flow-block .flow-block-body .flow-block-body-ttl {
    grid-column: 1 / 2;
    margin-bottom: 20px;
    padding: 25px 0 0 30px;
    font-size: 2.2rem;
  }

  .flow-block .flow-block-body .flow-block-body-body {
    grid-column: 1 / 2;
    margin-bottom: 0;
    padding: 0 0 25px 30px;
    font-size: 100%;
  }
}




/*--------------------------------------
  # 施術の流れ
--------------------------------------*/

.access-layout {}

.access-layout .access-layout-inner:not(:last-child) {
  margin-bottom: 25px;
}

.access-layout .access-layout-inner>*:last-child {
  margin-bottom: 0;
}

.access-map {
  margin-bottom: 1.6em;
  border-radius: 15px;
  overflow: hidden;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

@media (min-width: 950px) {
  .access-layout {
    display: flex;
    flex-direction: row;
    margin: 0 -25px;
  }

  .access-layout .access-layout-inner,
  .access-layout .access-layout-inner:not(:last-child) {
    flex: 1;
    margin: 0;
    padding: 0 25px;
  }

  .access-map {
    margin-bottom: 0;
  }

  .access-map iframe {
    height: 420px;
  }
}




/*--------------------------------------
  # メニュー
--------------------------------------*/
.menu-block {
  margin: 15px -10px;
  border-radius: 15px;
  background: #FFF;
  overflow: hidden;
  transition: 0.2s;
}

.menu-block.open {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.15);
}

.menu-block .menu-block-header {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  padding-right: 35px;
  background: #FFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.menu-block .menu-block-header:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-block.open .menu-block-header:before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.menu-block .menu-block-header .menu-block-header-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0 18px 18px;
}

.menu-block .menu-block-header .menu-block-header-title {
  margin: 0 0 8px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.2;
}

.menu-block .menu-block-header .menu-block-header-title:after {
  display: none;
}

.menu-block .menu-block-header .menu-block-header-price {
  color: #588C46;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.menu-block .menu-block-header .menu-block-header-price .small {
  font-size: 70%;
}

.menu-block .menu-block-header .menu-block-header-price .tax {
  margin: 0 -0.4em;
}

.menu-block .menu-block-header .menu-block-header-img {
  width: 94px;
}

.menu-block .menu-block-header .menu-block-header-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-block .menu-block-body {
  padding: 25px 15px;
  overflow: hidden;
  transition: 0.2s;
}

.menu-block:not(.open) .menu-block-body {
  height: 0;
  padding: 0 15px;
  line-height: 0;
}

.menu-block .menu-block-body>*:last-child {
  margin-bottom: 0;
}

.menu-block .menu-block-body h3 {}

.menu-block .menu-block-body table {
  margin: 0 0 10px;
  letter-spacing: 0;
}

.menu-block .menu-block-body table th,
.menu-block .menu-block-body table td {
  padding: 8px 4px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.menu-block .menu-block-body table th {
  font-size: 1.15rem;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
}
.menu-block .menu-block-body table th.price,
.menu-block .menu-block-body table td.price {
  width: 5.5em;
  padding: 4px 0;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.menu-block .menu-block-body table th.time,
.menu-block .menu-block-body table td.time {
  width: 4.5em;
  padding: 4px 0;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
.menu-block .menu-block-body table td.set {
  width: 6.5em;
  text-align: center;
}

.menu-block .menu-block-body table th .small {
  margin: -0.5em;
}

.menu-block .menu-block-body table td {
  color: #333;
  vertical-align: middle;
}

.menu-block .menu-block-body table td.menu {
  font-weight: 500;
}

.menu-block .menu-block-body table td.menu .small {
  color: #666;
  font-weight: 400;
}

.menu-block .menu-block-body table td.menu .icon {color: #444;font-size: 1.1rem;background: #e9f5e6;}

.menu-block .menu-block-body table.table2 th,
.menu-block .menu-block-body table.table2 td {
  width: auto;
  padding: 4px;
}

.menu-block .menu-block-body table.table2 th {}

.menu-block .menu-block-body table.table2 td {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
}

.menu-block .menu-block-body table.table2 td:last-child {
  text-align: center;
}

@media (min-width: 950px) {
  .menu-block {
    margin: 40px 0;
  }

  .menu-block .menu-block-header {
    padding-right: 60px;
    transition: 0.2s;
  }

  .menu-block .menu-block-header:hover {
    filter: contrast(0.8) brightness(1.3);
  }

  .menu-block .menu-block-header:before {
    right: 20px;
  }

  .menu-block.open .menu-block-header:before {}

  .menu-block .menu-block-header .menu-block-header-inner {
    padding: 25px 0 25px 40px;
  }

  .menu-block .menu-block-header .menu-block-header-title {
    margin-bottom: 12px;
    font-size: 2.6rem;
  }

  .menu-block .menu-block-header .menu-block-header-title:after {}

  .menu-block .menu-block-header .menu-block-header-price {
    font-size: 3.2rem;
  }

  .menu-block .menu-block-header .menu-block-header-price .small {
    font-size: 64%;
  }

  .menu-block .menu-block-header .menu-block-header-price .tax {}

  .menu-block .menu-block-header .menu-block-header-img {
    width: 25%;
    overflow: hidden;
  }

  .menu-block .menu-block-header .menu-block-header-img img {
    height: 180px;
    transition: 0.2s;
  }

  .menu-block .menu-block-header:hover .menu-block-header-img img {
    transform: scale(1.1);
  }

  .menu-block .menu-block-body {
    padding: 50px 40px;
  }

  .menu-block:not(.open) .menu-block-body {
    padding: 0 40px;
  }

  .menu-block .menu-block-body>*:last-child {}

  .menu-block .menu-block-body h3 {}

  .menu-block .menu-block-body table {
    margin-bottom: 30px;
    letter-spacing: 0.03em;
  }

  .menu-block .menu-block-body table th,
  .menu-block .menu-block-body table td {
    padding: 10px 15px;
  }

  .menu-block .menu-block-body table th {
  font-size: 1.7rem;
}

  .menu-block .menu-block-body table th.price,
  .menu-block .menu-block-body table th.time,
  .menu-block .menu-block-body table td.price,
  .menu-block .menu-block-body table td.time,
  .menu-block .menu-block-body table td.set {
    width: 18%;
    padding: 10px;
    text-align: center;
  }

  .menu-block .menu-block-body table th .small {}

  .menu-block .menu-block-body table td {
  font-size: 2.2rem;
  line-height: 1.6;
}

  .menu-block .menu-block-body table td.menu .small {
  font-size: 80%;
}
  .menu-block .menu-block-body table td.menu .icon {
  padding: 2px 5px;
  font-size: 1.4rem;
}

.menu-block .menu-block-body table.table2 th,
.menu-block .menu-block-body table.table2 td {
  width: auto;
  padding: 10px;
  font-size: 1.5rem;
}

.menu-block .menu-block-body table.table2 th {}

.menu-block .menu-block-body table.table2 td {
  text-align: center;
}

.menu-block .menu-block-body table.table2 td:first-child {
  width: 41%;
}

.menu-block .menu-block-body table.table2 td:last-child {
  width: 18%;
}
}




/*--------------------------------------
  # その他
--------------------------------------*/

@media (min-width: 950px) {
  a[href*="wakasapripro.com"] img {
    vertical-align: top;
    transition: 0.2s;
  }
  a[href*="wakasapripro.com"] img:hover {
    opacity: 0.6;
  }
}