html {
  line-height: 100%;
  -webkit-text-size-adjust: 100%;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  color: #000;
  fill: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: justify;
  text-justify: inter-character;
  font-feature-settings: "palt";
}
main hr {
  margin: 0;
  padding-bottom: 0 !important;
  border: none;
}
article header {
  padding-top: 0 !important;
}
a {
  color: #000;
}
a:hover, a:active {
  color: #B39354;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  transition: 0.5s all;
}
.c-align{
    display: flex;
    justify-content: center;
}
a img:hover {
  opacity: 0.7;
}
svg {
  width: 1em;
  height: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* #wrapper {
  width: 100%;
  min-height: 100vh;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 0.2em rgba(0, 0, 0, 0.5);
} */

#wrapper {
  width: 100%;
  min-height: 100vh;
  margin: auto;
  background: #fff;
  box-shadow: 0 0 0.2em rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

/* Make content area grow to fill available space */
#wrapper > main,
#wrapper > .content-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ------------------------------
　ヘッダー
------------------------------ */
#header {
    display: flex;
    align-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    transition: opacity 0.2s ease-out;
    z-index: 100;
    background: rgba(255, 255, 255, 1.0);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="1 1 319.996 100.002"><g><path d="M139.55 0 82.22 100H0L57.33 0h82.22z" fill="%23b39354"/><path d="m229.77 0-57.33 100H90.23L147.55 0h82.22z" fill="%23b39354"/><path d="m319.996.002-57.33 100h-82.22l57.33-100h82.22z" fill="%23b39354"/></g></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: calc(90% + 50px) top, right center;
}

#header .head-icon {
  display: flex;
  position: relative;
  right: 60px;
}
.head-logo {
  display: block;
  position: relative;
  left: 130px;
}
.head-icon li {
  padding: 0 2.0vw;
}

/* ------------------------------
　ハンバーガーメニュー
------------------------------ */
#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
}
#g-nav.panelactive {
  right: 0;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 60px;
}
#g-nav li {
  list-style: none;
  text-align: left;
  padding-left: 5vw;
  border-bottom: 1px solid #ccc;
}
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: #B39354;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* ------------------------------
　検索窓
------------------------------ */
.open-btn {
  position: relative;
  background: url("../img/icon-search.png") no-repeat center;
  background-size: auto;
  width: 20px;
  height: 20px;
  cursor: pointer;
  top: 3px;
}
.open-btn.img-none {
  background: none;
}
@media screen and (max-width: 767px) {
  .open-btn {
    top: 0px;
  }
}

#search-wrap {
  position: absolute;
  top: 150px;
  right: 20px;
  z-index: -1;
  opacity: 0;
  width: 0;
  transition: all 0.4s;
  border-radius: 5px;
}
#search-wrap.panelactive {
  opacity: 1;
  z-index: 3;
  width: 100vw;
  right: -60px;
  padding: 20px;
  top: 35px;
  background: #000;
}
#search-wrap #searchform {
  display: none;
}
#search-wrap.panelactive #searchform {
  display: block;
}
#search-wrap input {
  -webkit-appearance: none;
  outline: none;
  color: #666;
}
#search-wrap input[type="text"] {
  width: 100%;
  border: none;
  transition: all 0.5s;
  letter-spacing: 0.05em;
  height: 46px;
  padding: 10px;
  background-color: #fff;
}
#search-wrap input[type="submit"] {
  position: absolute;
  top: 27px;
  right: 40px;
  background: url("../img/icon-search.png") no-repeat right;
  background-size: auto;
  width: 30px;
  height: 30px;
  border: none;
  cursor: pointer;
}
.scrollActive:not(.nav) #header {
  opacity: 0.8;
}
.scrollTop #header div:after {
  opacity: 0;
}
#siteName a {
  display: block;
  color: #000;
  fill: #000;
  font-weight: bold;
  text-decoration: none;
}
#main {
  width: 100%;
  margin: 145px auto; /* Center align the slider */
  overflow: hidden;
}
#subject {
  position: relative;
  padding: 2em 1.5em;
  z-index: 1;
}
#subject:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  background: #f4f3ed;
  z-index: -1;
}
#pagenation {
  overflow: hidden;
}
#pagenation ul, #pagenation ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: -0.25em;
}
#pagenation li {
  margin: 0.25em;
}
#pagenation a {
  position: relative;
  display: block;
  padding: 0.8em;
  text-decoration: none;
  background: #35220d;
  color: #fff;
  fill: #fff;
  line-height: 1em;
}
#pagenation a:hover, #pagenation a:active {
  opacity: 0.7;
}
#pagenation i {
  position: absolute;
  top: calc(50% - 0.5em);
}
#pagenation [rel] {
  position: relative;
}
#pagenation [rel="prev"] {
  padding-left: 1.8em;
}
#pagenation [rel="prev"] i {
  left: 0.5em;
  transform: scale(-1, 1);
}
#pagenation [rel="next"] {
  padding-right: 1.8em;
}
#pagenation [rel="next"] i {
  right: 0.5em;
}
#pagenation .lsc-current-page {
  pointer-events: none;
  background: #aa9c91;
}
#gMap {
  position: relative;
}
#gMap div+div {
  margin: inherit;
}
#pagePath a:hover, #pagePath a:active {
  text-decoration: none;
}
#pagePath ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
#pagePath li {
  line-height: 1.3em;
}
#pagePath li:last-child {
  font-weight: bold;
}
#pagePath li:last-child i {
  display: none;
}
#pagePath li:last-child a {
  pointer-events: none;
  text-decoration: none;
}
#pagePath i {
  margin: 0 0.3em;
  vertical-align: middle;
  opacity: 0.5;
}
#pageTop {
  text-align: center;
}
#pageTop a {
  display: block;
  width: 2.4em;
  height: 1.2em;
  margin: auto;
  padding-top: 0.2em;
  background: #B39354;
  border-radius: 1.2em 1.2em 0 0;
  color: #fff;
  fill: #fff;
  font-size: 2.4em;
  line-height: 1em;
  overflow: hidden;
}
#pageTop a:hover, #pageTop a:active {
  color: rgba(255, 255, 255, 0.5);
  fill: rgba(255, 255, 255, 0.5);
}
#footer {
    padding: ß0px 40px;
    background: #000;
    color: #fff;
}
#footer .ft-logo {
  margin: auto;
}
#footer .ft-logo img {
  margin: 5rem auto;
  display: block;
}
#footer .ft-txt {
  text-align: center;
}
#footer .ft-txt p {
  margin: 5rem auto;
}
@media screen and (max-width: 767px) {
  #footer .ft-txt {
    padding: 0 2rem;
    font-size: 1.2rem;
  }
}

#footer ul {
  list-style: none;
}
#footer li {
  line-height: 1em;
}
#footer a {
  color: #fff;
  fill: #fff;
}
#fAddress dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#fAddress dt, #fAddress dt+dd {
  width: 100%;
}
#fAddress dt {
  font-size: 3em;
}
#fAddress dd {
  margin-top: 0.5em;
  line-height: 1.4em;
}
#fAddress dd:last-child {
  margin-left: 1.5em;
}
#fAddress i {
  margin-right: 0.2em;
  vertical-align: middle;
}
#fAddress i svg {
  width: 1.4em;
  height: 1.4em;
  margin: -0.2em 0;
}
#fNav span {
  margin-left: 0.2em;
  vertical-align: middle;
  opacity: 0.5;
}
#fNav>ul>li:nth-child(10) {
  display: none;
}
#fLink ul {
  display: flex;
  justify-content: center;
}
#fLink li {
  margin: 0 1em;
}
#fLink a {
  position: relative;
  text-align: center;
  text-decoration: none;
}
#fLink a:hover, #fLink a:active {
  opacity: 0.7;
}
#fLink span {
  position: absolute;
  top: 1em;
  right: 1em;
}
#fSns ul {
  display: flex;
  justify-content: center;
}
#fSns li+li {
  margin-left: 1em;
}
#fSns a {
  display: block;
  width: 1.8em;
  height: 1.8em;
  padding: 0.4em;
  background: #fff;
  border-radius: 100%;
  font-size: 2em;
  color: #35220d;
  fill: #35220d;
}
#fSns a:hover, #fSns a:active {
  background: #f1a107;
}
#fSns svg {
  vertical-align: top;
}
#copyright {
  padding: 1em 0 2em;
}
#copyright p {
  font-size: 0.8em;
  line-height: 1em;
  text-align: center;
}
[id^="anchor_"] {
  position: absolute;
}
.wrap {
  width: calc(100% - 3em);
  margin: auto;
}
.none {
  display: none!important;
}
.subject {
  font-weight: bold;
  text-align: center;
  line-height: 1em;
}
.subject i {
  display: block;
  width: 1.8em;
  height: 1.8em;
  margin: auto calc(50% - 0.7em);
  margin-bottom: 0.5em;
  background: #35220d;
  border-radius: 100%;
  fill: #fff;
}
.subject i svg {
  margin: 0.4em;
}
.subject+* {
  margin-top: 2em;
}
.headline {
  font-size: 4.3rem;
  font-weight: bold;
  line-height: 1.0;
}
.headline span {
  font-size: 1.3rem;
  display: block;
  font-weight: normal;
}
h2.headline:after {
  content: '';
  display: block;
  width: 8em;
  height: 1px;
  background-color: #ddd;
  margin: 0 auto;
}
.toppage .headline:after {
  content: none;
}
.headline+* {
  margin-top: 2em;
}
.title {
  font-weight: bold;
  line-height: 1.4em;
}
.title.line {
  position: relative;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #cfc6c0;
}
.title.point {
  position: relative;
  padding-left: 1.2em;
}
.title.point:before, .title.point:after {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  background: #35220d;
}
.title.point:before {
  top: 0.1em;
  left: 0;
}
.title.point:after {
  top: 0.6em;
  left: 0.5em;
}
.title+* {
  margin-top: 1em;
}
.subTitle {
  font-weight: bold;
  line-height: 1.4em;
}
.subTitle.point {
  position: relative;
  padding: 0.8em;
  background: #f4f3ed;
  mix-blend-mode: multiply;
}
.subTitle.point:before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 0.3em;
  height: 1em;
  background: #aa9c91;
}
.subTitle+* {
  margin-top: 1em;
}
.linkBut {
  display: inline-block;
  padding: 1em;
  line-height: 1em;
  text-decoration: none;
  color: #000;
  fill: #000;
}
.linkBut:hover, .linkBut:active {
  color: #B39354;
  fill: #B39354;
  text-decoration: none;
}
.linkBut::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  transition: 0.5s all;
  padding-right: 30px;
}
.linkBut:hover::before {
  background-image: url(../img/icon-arrow_gold.png);
}
.linkBut i {
  margin-right: 0.4em;
  vertical-align: middle;
}
.linkBut.more {
  position: relative;
  padding: 1em;
  padding-right: 3em;
  fill: #35220d;
}
.linkBut.more:hover, .linkBut.more:active {
  fill: #f1a107;
}
.linkBut.more i {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 1em;
  width: 1em;
  height: 1em;
  margin: 0;
  background: #fff;
  border-radius: 100%;
}
.linkBut.min {
  font-size: 0.875em;
}
.linkBut.reservation {
  background: #f1a107;
}
.linkBut.reservation:hover, .linkBut.reservation:active {
  background: #f4b439;
}
.linkText i {
  margin-right: 0.2em;
  vertical-align: middle;
}
.list {
  list-style: none;
}
.list>li {
  line-height: 1.4em;
}
.list>li+li {
  margin-top: 0.3em;
}
.list.point>li {
  position: relative;
  padding-left: 1em;
}
.list.point>li:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 0.6em;
  height: 0.6em;
  border-radius: 100%;
  background: #35220d;
  opacity: 0.5;
}
.list.notes>li {
  padding-left: 1em;
  text-indent: -1em;
}
.list.count {
  counter-reset: count;
}
.list.count>li {
  position: relative;
  padding-left: 1.5em;
}
.list.count>li:before {
  position: absolute;
  left: 0;
  counter-increment: count;
  content: counter(count)".";
}
.list+*, *+.list {
  margin-top: 1em;
}
dl.table {
  display: flex;
  flex-wrap: wrap;
}
.table {
  border: 1px solid #ebebeb;
}
.table dt {
  border-bottom: 1px solid #ebebeb;
}
.table dd {
  border-bottom: 1px solid #ebebeb;
}
.table dd:last-of-type {
  border-bottom: none;
}
.table dt, .table dd {
  padding: 0.8em;
  line-height: 1.4em;
}
.table dt {
  width: 10em;
  background: #B39354;
  color: #fff;
  fill: #fff;
}
.table dd {
  width: calc(100% - 10em);
  background-blend-mode: multiply;
}
.table+*, *+.table {
  margin-top: 1em;
}
.feeTable {
  width: 100%;
}
.feeTable th, .feeTable td {
  padding: 0.8em 0;
  border-top: 1px dotted #cebbaf;
  border-bottom: 1px dotted #cebbaf;
  vertical-align: middle;
}
.feeTable th {
  text-align: left;
}
.feeTable td {
  width: 6em;
  text-align: right;
}
.feeTable td+td {
  font-weight: bold;
}
.feeTable+*, *+.feeTable {
  margin-top: 1em;
}
.feeTable tr th h4 {
  font-weight: 600;
}
.feeTable tr.opt th h4:after {
  content: "オプション";
  font-size: 0.8rem;
  background-color: red;
  padding: 0.25rem;
  border-radius: 2px;
  color: white;
  margin: 0 0 0 0.5rem;
}
.topicsList {
  list-style: none;
}
.topicsList li {
  display: flex;
  align-items: flex-start;
  padding: 0.8em 0;
  border-bottom: 1px dotted #cebbaf;
}
.topicsList a {
  margin-left: 0.5em;
  font-weight: bold;
  line-height: 1.4em;
  text-align: justify;
  order: 3;
}
.topicsList time, .topicsList span {
  padding: 0.5em;
  font-size: 0.8em;
  line-height: 1em;
}
.topicsList time {
  margin-left: 0.25em;
  line-height: 1em;
  opacity: 0.7;
  order: 2;
  text-align: right;
  margin-top: -1rem;
}
.topicsList span {
  width: 10em;
  background: #B39354;
  color: #fff;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  order: 1;
}
.note {
  padding: 10% 1em;
  background: #f4f3ed;
  border-radius: 0.5em;
  text-align: center;
}
.salonList>dl {
  display: block;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
  border-bottom: 1px solid #cfc6c0;
  position: relative;
}
.salonList dt p {
  margin-top: 0.5em;
  text-align: left;
}
.salonList dt ul {
  margin-top: 1em;
}
.salonList dt li {
  padding: 0;
  border: 0;
  font-size: 0.875em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: inline-grid;
}
.salonList [href^="tel"] {
  font-size: 1.4em;
  font-weight: bold;
}
.salonList dt+dd.favorite {
  position: absolute;
  right: 1em;
  top: 1em;
}
.salonList dt+dd.favorite .heartFavorite {
  font-size: 3.0rem;
}
.thumb:not(img) {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
}
.logo.after-login img {
  height: 60px;
  width: auto;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  main>*, main hr, article, article header, article section {
    /* padding-top: 4em; */
    padding-bottom: 2em;
    margin-left: 2%;
  }
  article #subject {
    top: -2em;
  }
  #wrapper {
    width: 100%;
    overflow: hidden;
  }
  #footer {
    background: #000;
    padding-bottom: 0;
  }
  .toppage #footer {
    padding-bottom: 0;
  }
  #footer .sp_reverse {
    flex-direction: column-reverse;
    display: flex;
  }
  #fLink a {
    color: #fff;
    padding: 0;
  }
  #copyright {
    color: #fff;
    background: none;
    opacity: 1;
  }
  #pagePath {
    padding: 1em 0;
    overflow-x: scroll;
  }
  #pagePath li {
    white-space: nowrap
  }
  #fAddress dl {
    justify-content: center;
    text-align: center;
  }
  #fNav ul {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin: 0 -1.5em;
    margin-top: 1em;
    border-top: 1px solid #fff;
  }
  #fNav ul:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  #fNav li {
    border-bottom: 1px solid #fff;
  }
  #fNav li ul {
    display: none;
  }
  #fNav a {
    display: flex;
    align-content: center;
    padding: 1em;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  #fNav li:nth-child(odd) a {
    padding: 1em 0 1em 2em;
  }
  #fNav a:hover, #fNav a:active {
    background: #5d4e3d;
  }
  #fNav i {
    margin-right: 0.2em;
  }
  #fLink {
    margin: 2em 0;
  }
  #fSns {
    margin: 1em 0;
  }
  .subject {
    font-size: 1.6em;
  }
  .title {
    font-size: 1.4em;
  }
  .subTitle {
    font-size: 1.2em;
  }
  .salonList .subTitle {
    width: 80%;
  }
  .salonList dl {
    flex-wrap: wrap;
  }
  .salonList dt {
    width: 100%;
    padding-bottom: 1em;
  }
  .salonList dt ul {
    padding: 0.8em;
    border: 1px solid #f4f3ed;
  }
  .salonList dt li {
    white-space: normal;
  }
}

@media screen and (max-width: 767px) and (orientation:portrait) {
  html {
    font-size: 2.8vw;
  }
  #siteName {
    height: 15vw;
    padding: 3.5vw 0 0 3vw;
  }
  #siteName svg {
    font-size: 8vw;
  }
  #gMap {
    height: 100vw;
  }
  #fAddress dt+dd {
    text-indent: 0.25em;
  }
  #fNav li {
    width: 50%;
  }
  #fNav li:nth-child(odd) {
    border-right: 1px solid #fff;
  }
  #fLink ul {
    flex-wrap: wrap;
  }
  #fLink li {
    width: 100%;
    text-align: center;
  }
  #fLink li+li {
    margin-top: 1em;
  }
  [id^="anchor_"] {
    margin-top: calc(-15vw - 2em);
  }
  .table dt, .table dd {
    width: 100%;
  }
  .table dd {
    margin-top: 0;
  }
  .topicsList li {
    flex-wrap: wrap;
    align-items: center;
  }
  .topicsList a {
    width: 100%;
    margin: 0.5em 0 0 0;
  }
}

@media screen and (max-width: 767px) and (orientation:landscape) {
  /*767px以下 横向き*/
  html {
    font-size: 1.8vw;
  }
  #wrapper {
    padding-top: 8vw;
  }
  #header {
    height: 8vw;
  }
  #siteName {
    height: 8vw;
    padding: 1.5vw 0 0 1.5vw;
  }
  #siteName svg {
    font-size: 5vw;
  }
  #gMap {
    height: 70vh;
  }
  #fNav li {
    width: 33.33%;
  }
  [id^="anchor_"] {
    margin-top: calc(-10vw - 2em);
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
  #siteName {
    position: absolute;
  }
  #pagePath {
    padding: 2em 0;
  }
  #pagePath ul {
    flex-wrap: wrap;
  }
  #footer .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #fAddress {
    width: 22em;
  }
  #fNav ul {
    display: -ms-flex;
    display: flex;
    justify-content: center;
  }
  #fNav ul ul {
    display: block;
    margin-left: 1.2em;
  }
  #fNav li {
    padding: 2.0rem 0;
    text-align: left;
    border-left: 1px solid #fff;
  }
  #fNav li:last-child {
    border-right: 1px solid #fff;
  }
  #fNav li a {
    width: calc(100% / 6);
    padding: 2.0rem 7.0rem 2.0rem 1.5rem;
    text-decoration: none;
  }
  #fNav>li>a {
    position: relative;
    padding-left: 1.2em;
  }
  #fNav>li i {
    position: absolute;
    left: 0;
  }
  #fNav a:hover, #fNav a:active {
    color: #f1a107;
    fill: #f1a107;
  }
  #fLink, #fSns, #copyright {
    width: 100%;
    margin-top: 2em;
  }
  .subject {
    font-size: 1.8em;
  }
  .title {
    font-size: 1.4em;
  }
  .subTitle {
    font-size: 1.2em;
  }
  .topicsList li {
    padding: 1em 0;
  }
}

.salonList dt {
  width: 100%;
}
.salonList dt+dd {
  margin-left: auto;
}
.salonList dd+dd {
  margin: 1em 0 0 1em;
  display: flex;
}
.salonList dd+dd.map-btn {
  justify-content: right;
  margin: -3em 0 0 0;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.6em;
  }
  main>*, main hr, article, article header, article section {
    padding-top: 1em;
  }
  article #subject {
    top: -4em;
  }
  #siteName {
    top: 1.5em;
    left: 1.5em;
  }
  #siteName svg {
    font-size: 3em;
  }
  #gMap {
    height: 40em;
  }
  [id^="anchor_"] {
    margin-top: -10em;
  }
  /* .wrap {
    max-width: 940px;
  } */
}


/* 2023/01/14 追加 */
/* ------------------------------
　共通
------------------------------ */
.txt-pink {
  color: #ff7676 !important;
}
.txt-black {
  color: #000 !important;
}
.txt-gold {
  color: #B39354 !important;
}
.txt-red {
  color: #A81831 !important;
}
.txt-green {
  color: #009B8F !important;
}
.txt-yellowgreen {
  color: #70EB40 !important;
}
.txt-lightblue {
  color: #95E4FF !important;
}
.txt-lightpink {
  color: #FFADAD !important;
}
.hissu {
  padding-left: 2rem;
  font-size: 1.2rem;
}
.box-shadow {
  box-shadow: 10px 9px 12px 0px rgba(10, 10, 10, 0.1), 0px 0px 0px 1px rgba(10, 10, 10, 0.02);
}
.btn-gold {
  background-color: #B39354;
  color: #fff;
  border: none;
  text-decoration: none;
}
.btn-black {
  background-color: #5a5a5a;
  color: #fff;
  border: none;
  text-decoration: none;
}
.btn-pink {
  background-color: #f99292;
  color: #fff;
  border: none;
  text-decoration: none;
}
.btn-lightgreen {
  background-color: #e5f5f4;
  color: #35220d;
  border: none;
  text-decoration: none;
}
.btn-white {
  background-color: #fff;
  color: #B39354;
  border: 2px solid #ddd;
  text-decoration: none;
}
.btn-orange {
  background-color: #f2a122;
  color: #fff;
  text-decoration: none;
}
.btn-blue {
  background-color: #05a7df;
  color: #fff;
  text-decoration: none;
}
.bg-pink {
  background-color: #feefef;
  color: #000;
}
.bg-blue {
  background-color: #d9f2fa;
  color: #000;
}
.bg-gold {
  background-color: #B39354;
  color: #fff;
}
.bg-grey {
  background-color: #F7F4ED;
}
.bg-black {
  background-color: #000;
  color: #fff;
}
.bg-lightgreen {
  background-color: #e5f5f4;
  color: #35220d;
}
.linkText {
  font-size: 2.0rem;
  font-weight: bold;
  text-decoration: underline;
}
.btn {
  transition: 0.5s all;
}
.btn:hover {
  opacity: 0.5;
}
.btn-pd-lr-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.modal-content {
  border-radius: 8px;
}
.common-frame {
  border: 1px solid #ddd;
  border-radius: 8px;
}
.common-frame .bg-gold ,
.common-frame .bg-black {
  border-radius: 8px 8px 0 0;
  padding: 1em;
  font-size: 1.3em;
  font-weight: bold;
}
.common-frame .main-sec {
  border-radius: 0 0 18px 18px;
}
.row {
  margin-right: 0;
  margin-left: 0;
}
.main-sec {
  padding: 3em 3em 2em;
}
.bg-gold p ,
.bg-gold span {
  color: #fff;
  font-weight: normal;
  font-size: 1.4rem;
  display: block;
}
.text-decoration-underline {
  text-decoration: underline;
}
.border-bottom-gold {
  border-bottom: 1px solid #B39354;
}
.border-bottom-black {
  border-bottom: 1px solid #000;
}
.border-bottom-grey {
  border-bottom: 1px solid #C3C3C3;
}
.strike-through {
  text-decoration: line-through;
}
.various-txt span {
  display: block;
}
.btn-lg {
  padding: 1em 5em;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 10px;
  width: 90%;
}
.btn-middle {
  padding: 1em 3em;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 1px;
}
.btn-small {
  padding: 0.8em 2em;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 5px;
}
.flex-evenly {
  display: flex;
  justify-content: space-evenly;
}
.flex-between {
  display: flex;
  justify-content: space-between;
}
.flex-evenly .btn, .flex-between .btn {
  width: 15em;
  padding: 1em 0;
}
.form-group {
  margin-bottom: 1em;
}
.common-frame.radius-0 {
  border-radius: 0;
}
.common-frame.radius-0 .bg-gold {
  border-radius: 0;
}
.content-box {
  margin: 1em auto 3em;
}
.content-box:last-of-type {
  margin: 1em auto 0;
}
.font-size-10 {
  font-size: 1.0rem !important;
}
.font-size-11 {
  font-size: 1.1rem !important;
}
.font-size-12 {
  font-size: 1.2rem !important;
}
.font-size-13 {
  font-size: 1.3rem !important;
}
.font-size-14 {
  font-size: 1.4rem !important;
}
.font-size-15 {
  font-size: 1.5rem !important;
}
.font-size-16 {
  font-size: 1.6rem !important;
}
.font-size-17 {
  font-size: 1.7rem !important;
}
.font-size-18 {
  font-size: 1.8rem !important;
}
.font-size-19 {
  font-size: 1.9rem !important;
}
.font-size-20 {
  font-size: 2.0rem !important;
}
@media screen and (max-width: 767px) {
  .main-sec {
    padding: 3em 1.5em 2em;
  }
  .sp-block {
    display: block !important;
  }
  .btn-small {
    font-size: 1.2rem;
  }
  .btn-middle {
    padding: 1rem 3em;
  }
  .p-sp-0 {
    padding: 0 !important;
  }
  .font-size-md-10 {
    font-size: 1.0rem !important;
  }
  .font-size-md-11 {
    font-size: 1.1rem !important;
  }
  .font-size-md-12 {
    font-size: 1.2rem !important;
  }
  .font-size-md-13 {
    font-size: 1.3rem !important;
  }
  .font-size-md-14 {
    font-size: 1.4rem !important;
  }
  .font-size-md-15 {
    font-size: 1.5rem !important;
  }
  .font-size-md-16 {
    font-size: 1.6rem !important;
  }
  .font-size-md-17 {
    font-size: 1.7rem !important;
  }
  .font-size-md-18 {
    font-size: 1.8rem !important;
  }
  .font-size-md-19 {
    font-size: 1.9rem !important;
  }
  .font-size-md-20 {
    font-size: 2.0rem !important;
  }
}

/* ------------------------------
　ヘッダー
------------------------------ */
/* header {
  width: 100%;
  height: 50px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
} */

/* ------------------------------
　予約ボタン編集用
------------------------------ */
.fadeInUp {
  -webkit-animation: fadeInUp 0.6s ease;
  -moz-animation: fadeInUp 0.6s ease;
  -ms-animation: fadeInUp 0.6s ease;
  animation: fadeInUp 0.6s ease;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both
}

.delay2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}
.yoyaku_btn {
  text-align: right;
}
.yoyaku {
  float: right;
  margin-top: -39px;
}
#op_btn {
  z-index: 1;
  position: fixed;
}
#op_btn.active {
  opacity: 0.4;
}
.yoyaku {
  position: fixed !important;
  right: 0;
  top: 111px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
  line-height: 1;
  margin: 0;
  z-index: 9999;
  font-size: 16px;
  transition: 0.5s all;
}
.yoyaku:hover {
  opacity: 0.5;
}
.yoyaku.top {
  position: fixed !important;
  right: 0;
  top: 55px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #ce9b0e;
  line-height: 1;
  margin: 0;
  z-index: 9999;
  font-size: 16px;
}
.yoyaku a {
  display: block;
  color: #fff;
  background-color: #B39354;
  padding: 30px 11px;
  text-decoration: none;
}
.before-login {
  display: none;
}
@media screen and (min-width: 768px) {
  .btn-login, .btn-login:not(:disabled):not(.disabled).active, .btn-login:not(:disabled):not(.disabled):active, .show>.btn-login.dropdown-toggle, .btn-login:hover {
    background: none;
    border: none;
  }
  .fade.delay2.yoyaku.fadeInUp {
    top: 60px;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 50px;
  }
  .logo img {
    width: 140px;
  }
  .after-login img {
    height: 60px;
    width: auto;
  }
  .after-login {
    display: block;
  }
  .btn-login {
    text-decoration: none;
    left: 2em;
    padding: 0.5em 1.5em;
    position: absolute;
  }
  .btn-login span {
    color: #fff;
  }
  .yoyaku {
    position: fixed !important;
    width: 100%;
    writing-mode: unset;
    line-height: 1;
    z-index: 9999;
    font-size: 15px;
    text-align: center;
    opacity: 0.9;
    top: auto;
    bottom: 0%;
  }
  .yoyaku a {
    display: block;
    color: #fff;
    padding: 0.7em 1em;
    border-radius: 10%;
    text-decoration: none;
    margin: 1rem 1em 1rem auto;
    width: fit-content;
  }
}

/* ------------------------------
　店舗検索
------------------------------ */
.search-main .flex-fill {
  text-align: center;
  margin: 1em;
  font-size: 1.8rem;
  font-weight: bold;
}
.favorite-box .flex-fill {
  width: 30%;
}
.search-main a {
  -ms-flex: 1 1 auto!important;
  flex: 1 1 auto!important;
  text-decoration: none;
}
.search-main .flex-fill img {
  display: block;
  margin: auto;
  padding-bottom: 1em;
}
.search-box {
  margin: 3rem 0;
}
.title-box {
  font-size: 1.6rem;
  font-weight: bold;
}
.search-box .form-control {
  padding: 2rem 1rem;
}
.search-box .btn-outline-success {
  border: none;
  background-color: #e5f5f4;
}
.search-box .fa-search:before {
  color: #B39354;
  font-size: 2em;
  padding: 1em
}

.favorite-box {
  font-size: 1.8rem;
  font-weight: bold;
}
.favorite-box a {
  text-decoration: none;
}
.favorite-box img {
  display: inline-block;
  margin: auto;
  vertical-align: middle;
  padding: 0 1em 0 0;
}
@media screen and (max-width: 767px) {
  .favorite-box .flex-fill {
    width: 100%;
  }
  .search-main .flex-fill img {
    display: inline-block;
    margin: auto;
    vertical-align: middle;
    padding: 0 1em 0 0;
  }
  .search-main .flex-fill.p-5 {
    padding: 3rem 1rem !important;
    margin: 1em auto;
  }
  .d-flex.search-main {
    display: block !important;
  }
}

/* ------------------------------
　パンくず
------------------------------ */
.breadcrumb {
  background: none;
  margin: 0rem auto 0;
  padding: .75rem 0;
}
.breadcrumb-item+.breadcrumb-item {
  padding: 0;
}
.breadcrumb-item a {
  color: #B39354;
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #B39354;
  opacity: 1;
}
.breadcrumb-item+.breadcrumb-item::before {
  content: ">";
  padding: 0 1.5rem;
  color: #DDDDDD;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 1.2rem;
  }
  .breadcrumb-item+.breadcrumb-item::before {
    padding: 0 1.0rem;
  }
}

/* ------------------------------
　住所検索
------------------------------ */
.subject i {
  background: #d1311c;
}
#salon {
  padding: 0;
}
#salon h3+.salonList {
  margin: 0;
}
#salon h2+.salonList {
  border-top: 1px solid #aa9c91;
}
#mainTab {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
#mainTab li {
  background: #35220d;
  color: #fff;
  fill: #fff;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
#mainTab li.active {
  background: #d1311c;
}
#fav section {
  padding-bottom: 0;
}
#map h2+div {
  position: relative;
}
#selPref_safarimobile, #map select {
  position: absolute;
  top: calc(8px + 2em);
  left: initial;
  right: 10px;
  width: auto;
  height: auto;
  border: solid 1px #35220d;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition-duration: 0.5s;
  transition-property: all;
}
#selPref_safarimobile:hover {
  background-color: #fff;
}
#selPref_safarimobile li, #map select option {
  padding: 0.1em 0.5em;
  opacity: 0.8;
}
#selPref_safarimobile li.selected {
  opacity: 1;
  background-color: #f1a107;
}
#selPref_safarimobile li:not(.selected):hover {
  background-color: #f4b439;
}
.loadingLayer {
  display: none;
  margin: 0
}

.loadingLayer>div {
  background: rgba(0, 0, 0, 0.8);
}
.loadingLayer p {
  font-weight: bold;
}
.loadingLayer .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10em;
  height: 10em;
  margin: -5em;
  border: 2px solid #a90329;
  ;
  border-top-color: transparent;
  border-radius: 100%;
  animation: spin 0.75s infinite linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.mapMask {
  margin: 0!important;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  pointer-events: none
}

#addr section {
  padding-bottom: 0;
}
#planTab {
  text-align: center;
}
#planTab ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  border-bottom: 0.2em solid #e4e4e4;
}
#planTab li {
  width: calc(100% / 7);
  padding: 1em;
  background: #fff;
  color: #4d4e50;
  text-align: center;
  transition: all 0.2s ease-out;
  border: solid 1px #e4e4e4;
  border-radius: 10px 10px 0px 0px;
  font-weight: bold;
}
#planTab li:hover, #planTab li:active {
  cursor: pointer;
  background: #f1a107;
}
#planTab li+li {
  width: calc(100% / 7 - 1px);
}
#planTab .select {
  pointer-events: none;
  background: #e4e4e4;
  color: #4d4e50;
}
.gmap-info-box {
  position: relative;
  padding: 5px 10px 5px 5px;
  border: 1px solid #aaa;
  background-color: #fff;
  color: #5A2204;
}
.gmap-info-box img {
  display: none;
}
.gmap-info-box h3 {
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}
.caption {
  border: 1px solid #d1311c;
  color: #d1311c;
  fill: #d1311c;
  text-align: center;
}
.custom-control, .custom-control-label, input[type=checkbox], input[type=radio] {
  cursor: pointer;
  width: fit-content;
}
input[type=checkbox], input[type=radio] {
  top: 10px;
}
.custom-control {
  margin-bottom: 0;
}
.agree-check .caution-black {
  padding-bottom: 0;
}
.agree-check .custom-control {
  padding-left: 0;
}
.from-wide .custom-control {
  width: calc(100% + 1.5rem);
  display: inline;
}
.custom-checkbox .custom-control-label::before {
  top: 5px;
}
.custom-control-label {
  padding: 3px 0 0 1em;
  font-size: 1.6rem;
  font-weight: bold;
}
.custom-control-label::before {
  background-color: #fff;
  border: solid 1px #ddd;
  width: 20px;
  height: 20px;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  background-color: #B39354;
}
.custom-control-label::after {
  top: 6px;
  left: -14px;
  width: 18px;
  height: 18px;
  background-size: 100%;
}
.search-btn {
  margin: 5rem auto 0;
  padding: 1em 2em;
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
  transition: 0.5s all;
}
.search-btn:hover {
  opacity: 0.5;
}
.search-btn.btn-width_wide {
  width: 50%;
  padding: 1em 0;
}
@media screen and (min-width: 768px) {
  #mainTab li {
    width: calc(33.33% - 0.66em);
    padding: 1.5em 0;
  }
  #mainTab i {
    margin-right: 0.5em;
    vertical-align: middle;
  }
  #mainTab svg {
    width: 1.6em;
    height: 1.6em;
    margin: -0.3em 0;
  }
  .caption {
    padding: 2em;
  }
  .agree-check .custom-control {
    padding-left: 1em;
  }
}

@media screen and (max-width: 767px) {
  #mainTab li {
    width: calc(33.33% - 0.2em);
    padding: 1em 0;
  }
  #mainTab i {
    display: block;
    margin-bottom: 0.5em;
  }
  #mainTab svg {
    font-size: 1.8em;
  }
  #planTab select {
    width: 50%;
  }
  .caption {
    padding: 1em;
  }
  .custom-control-label::after {
    top: 8px;
    left: -10px;
    width: 14px;
    height: 14px;
  }
  .search-btn.btn-width_wide {
    width: 100%;
    padding: 1em 0;
  }
}

/* ------------------------------
　店舗詳細
------------------------------ */
.staff-review {
  max-width: 90%;
  margin: 5rem auto 1rem;
}
.staff-review h3 {
  margin-bottom: 1.5rem;
}
.staff-review h5 {
  font-weight: bold;
  text-align: center;
}
.staff-review .flex-box {
  margin-bottom: 3rem;
}
.staff-review .headline+* {
  margin-top: 0;
}
.staff-pic {
  text-align: center;
}
.staff-pic img {
  width: 100px;
  margin: 0 !important;
}
.staff-review .media-body {
  margin-left: 1em;
}
.staff-review .flex-fill {
  margin: 0 1.0rem;
  width: 50%;
}
.review-box .flex-fill p {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1em;
}
.review-box .flex-fill p+p {
  float: right;
}
.review-box {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .staff-review {
    max-width: 100%;
    margin: 5rem auto 1rem;
  }
  .staff-pic {
    text-align: center;
  }
  .staff-pic img {
    width: 8.0rem;
    margin: auto;
    margin: 0 !important;
  }
  .staff-review .media-body {
    margin-left: 1em;
  }
  .staff-review .flex-fill {
    margin: 1.0rem auto;
    width: 100%;
  }
  .staff-review .d-flex {
    display: block !important;
  }
}

/* ------------------------------
　お困り事
------------------------------ */
.common-table {
  border-collapse: separate;
  border-radius: 20px;
}
.common-table .thead-green {
  background-color: #B39354;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
.common-table .thead-green span {
  color: #addfdb;
  font-weight: normal;
  font-size: 1.4rem;
}
.common-table .thead-green th, .common-table tbody td {
  padding: 1em;
}
.common-table .thead-green th {
  border-radius: 18px 18px 0 0;
  border-bottom: none;
  vertical-align: middle;
}
.common-table tbody .trouble-td {
  border-bottom: 1px solid #ddd;
  border-top: none;
  width: 50%;
}
.common-table tbody tr:last-child td {
  border-bottom: none;
}
.common-table tbody tr td:first-child {
  border-right: 1px solid #ddd;
}
.common-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 18px;
}
.common-table tbody tr:last-child td:last-child {
  border-radius: 0 0 18px 0;
}
.common-table .custom-control-label {
  padding: 0.2rem 0 0.5rem 1.5rem;
  font-size: 1.5rem;
  font-weight: normal;
}

/* ------------------------------
　コース選択　ウィザード
------------------------------ */
.bs-wizard {
  padding: 0 0 50px 0;
}
.bs-wizard>.bs-wizard-step {
  padding: 0;
  position: relative;
  width: 25%;
  opacity: 1;
}
.bs-wizard>.bs-wizard-step .bs-wizard-stepnum {
  color: #595959;
  font-size: 16px;
  margin-bottom: 5px;
}
.bs-wizard>.bs-wizard-step.active .bs-wizard-info {
  color: #000;
  font-weight: bold;
  font-size: 1.2rem;
}
.bs-wizard>.bs-wizard-step .bs-wizard-info {
  color: #bbb;
  font-size: 1.2rem;
}
.bs-wizard>.bs-wizard-step>.bs-wizard-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background: #B39354;
  top: 23px;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
}
.bs-wizard>.bs-wizard-step>.progress {
  position: relative;
  border-radius: 0px;
  height: 8px;
  box-shadow: none;
  margin: 20px 0;
  left: 0%;
}
.bs-wizard>.bs-wizard-step>.progress>.progress-bar {
  width: 0px;
  box-shadow: none;
  background: #B39354;
}
.bs-wizard>.bs-wizard-step.complete>.progress>.progress-bar {
  width: 100%;
}
.bs-wizard>.bs-wizard-step.active>.progress>.progress-bar {
  width: 50%;
}
.bs-wizard>.bs-wizard-step:first-child.active>.progress>.progress-bar {
  width: 0%;
}
.bs-wizard>.bs-wizard-step:last-child.active>.progress>.progress-bar {
  width: 100%;
}
.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot {
  background-color: #f5f5f5;
}
.bs-wizard>.bs-wizard-step.disabled>.bs-wizard-dot:after {
  opacity: 0;
}
.bs-wizard>.bs-wizard-step:first-child>.progress {
  width: 50%;
  left: 50%;
}
.bs-wizard>.bs-wizard-step:last-child>.progress {
  width: 50%;
}
.bs-wizard>.bs-wizard-step.disabled a.bs-wizard-dot {
  pointer-events: none;
}
.new-second {
  justify-content: center;
}
.new-second .search-btn {
  width: 18rem;
  margin: 5rem 0rem 0.5rem;
  border-radius: 0;
}

/* ------------------------------
　コース選択　おすすめ
------------------------------ */
.course-wrap {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.coursebox-wrap {
  width: 24%;
}
.course-box {
  border: 1px solid #B39354;
  border-radius: 10px;
  text-align: center;
  position: relative;
  height: 30rem;
}
.new-select {
  display: flex;
}
.new-select p {
  flex: 1 1 auto;
  text-align: center;
  color: #fff;
}
.new-select .course-new {
  background-color: #f2a127;
  border-radius: 10px 0 0 0;
}
.new-select .course-select {
  background-color: #B39354;
  border-radius: 0 10px 0 0;
}
.course-main .course-txt {
  font-size: 1.8rem;
  padding: 1rem 0 0;
}
.course-main .img-time {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.course-main .img-time img {
  width: auto;
}
.course-main .course-time {
  font-size: 2.0rem;
}
.course-main .course-time span {
  font-size: 5.0rem;
  font-weight: bold;
  line-height: 1;
}
.menu-select .course-main .course-time {
  padding: 1rem 0 2rem;
}
.menu-select .course-main .course-time span {
  font-size: 10rem;
}
.course-main .course-price {
  border-top: 1px solid #ddd;
  margin: 1rem auto 0;
  padding-top: 0.5rem;
  width: 90%;
  font-size: 2.0rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.course-caption {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 1rem 1rem 0;
}
ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#accordion_menu>li {
  border: #ccc 1px solid;
  margin-bottom: -1px;
}
#accordion_menu a {
  color: #666;
}
#accordion_menu a[data-toggle="collapse"] {
  display: block;
  padding: 10px;
  text-decoration: none;
  position: relative;
}
#accordion_menu a[data-toggle="collapse"]:hover {
  background: #e7e7e7;
}
#accordion_menu a[data-toggle="collapse"]::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #666 1px solid;
  border-right: #666 1px solid;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#accordion_menu a[aria-expanded=false]::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition-duration: 0.3s;
}
#accordion_menu a[aria-expanded=true]::after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  transition-duration: 0.3s;
}
[id^="menu"] li {
  padding: 10px 10px 10px 20px;
}
@media screen and (max-width: 767px) {
  .d-flex.new-second {
    display: flex!important;
  }
  .new-second .search-btn {
    width: 15rem;
    margin: 5rem 0 0.5rem;
    border-radius: 0;
  }
  .coursebox-wrap {
    width: 48%;
    margin-bottom: 2rem;
  }
  .course-box {
    height: 33rem;
  }
}

/* ------------------------------
　オプション選択
------------------------------ */
.option-select {
  position: fixed !important;
  width: 100%;
  writing-mode: unset;
  line-height: 1;
  z-index: 9999;
  font-size: 15px;
  text-align: center;
  opacity: 1;
  top: auto;
  bottom: 0%;
  background-color: rgba(255, 255, 255, 0.8);
}
.option-select.yoyaku:hover {
  opacity: 1;
}
.option-select #selectCourse .feeTable th h3 {
  padding: 0;
}
.option-select #selectCourse .feeTable td {
  background-color: #fff;
  text-align: left;
}
#footer.ft-option {
  padding-bottom: 8em;
}
@media screen and (max-width: 767px) {
  .flex-evenly .btn, .flex-between .btn {
    width: 8em;
    padding: 1rem 0;
  }
  .option-select #selectCourse .feeTable th, .option-select #selectCourse .feeTable td {
    padding: 1rem;
  }
  .option-select #selectCourse .feeTable th h3 {
    font-size: 1.5rem;
  }
  .option-select #selectCourse .feeTable td h4 {
    font-size: 1.4rem;
  }
}

/* ------------------------------
　日時指名選択
------------------------------ */
.common-table .right-edit a {
  float: right;
  text-decoration: underline;
  color: #fff;
  font-size: 1.3rem;
  font-weight: normal;
}
.common-table .select-menu {
  font-weight: bold;
}
.common-table .select-menu tr {
  text-align: center;
}
.common-table .select-menu td {
  padding: 1rem 2em 0;
  border-top: none;
  border-bottom: 1px solid #ddd;
  position: relative;
  display: inline-block;
  width: 45%;
  text-align: left;
}
.common-table tbody.select-menu tr td:first-child {
  border-right: none;
}
.common-table .select-menu .select-title td {
  color: #B39354;
  font-weight: bold;
  padding: 2em 0 0 1em;
  border-bottom: none;
  float: left;
}
.common-table .select-menu td+td {
  text-align: right;
  vertical-align: bottom;
}
.common-table .select-menu .total-price td {
  padding: 2em 0 2em 1em;
  font-size: 1.7rem;
}
.common-table .select-menu .total-price td+td {
  color: #35220d;
  padding: 2em;
  float: none;
}
.common-table .right-req p, .common-frame .right-req p {
  display: inline-block;
  vertical-align: -webkit-baseline-middle;
}
.common-frame .right-req .required-right {
  float: right;
  background-color: #f99292;
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  padding: 0.5rem 1.5rem;
}
.card {
  position: relative;
  display: block;
  margin-bottom: .75rem;
  background-color: #fff;
  border: 1px solid #BDBDBD;
  border-radius: .25rem
}

.card-block {
  padding: 1.25rem
}

.staff-slider__image {
  border-radius: .25rem .25rem 0 0
}

.staff-slider {
  margin: 0 -.25rem .5rem;
  position: relative
}

.staff-slider__frame {
  overflow: auto
}

.staff-slider__frame::-webkit-scrollbar {
  display: none
}

.staff-slider__inner {
  -webkit-overflow-scrolling: touch
}

.staff-slider__inner::after {
  content: "";
  display: table;
  clear: both
}

.staff-slider__item {
  background: #fff;
  border-radius: .4rem;
  border: 1px solid #ddd;
  cursor: pointer;
  margin: 0 .25rem;
  overflow: hidden;
  position: relative;
  width: 12rem;
  float: left;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none
}

.staff-woman {
  background-color: #ee8d8c;
}
.staff-man {
  background-color: #179cce;
}
.staff-slider__item .img__wrap {
  width: 6.874rem;
  height: 7.832rem;
  display: table-cell;
  vertical-align: middle;
}
.staff-slider__item:hover {
  background: #E0E0E0;
  border-color: #E0E0E0
}

.staff-slider__prev, .staff-slider__next {
  background: #fff;
  border-radius: 50%;
  border: solid 1px #BDBDBD;
  cursor: pointer;
  display: none;
  height: 2rem;
  outline: none;
  padding: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  z-index: 100;
  line-height: 2rem
}

.staff-slider__prev:hover, .staff-slider__prev:focus, .staff-slider__next:hover, .staff-slider__next:focus {
  background: #E0E0E0;
  outline: none;
  text-decoration: none
}

.staff-slider__prev {
  left: -1.5rem
}

.staff-slider__next {
  right: -1.5rem
}

.staff-slider__prev:before, .staff-slider__next:before {
  font-family: "Font Awesome 5 Free";
  font-size: 1.5rem;
  color: #B39354;
  font-weight: 900;
}
.staff-slider__prev:before {
  margin-left: -.1rem;
  content: '\f104';
}
.staff-slider__next:before {
  margin-right: -.1rem;
  content: '\f105';
}
.staff-slider__input {
  display: none
}

.staff-slider__footer {
  background: #999;
  color: #fff;
  border-top: none;
  font-size: 1.2rem;
  overflow: hidden;
  padding: .375rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.staff-slider__footer.staff-name {
  background-color: #f5f5f5;
  color: #777;
}
.nominate-fee {
  background: #fff;
  color: #35220d;
  width: 12rem;
  height: 4rem;
  clip-path: polygon(10% 90%, 20% 0%, 80% 0%, 90% 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: normal;
}
.staff-slider__image {
  border-radius: 0;
  display: block;
  margin: 0 auto;
  width: 10rem;
  height: 10rem;
  padding: 0.5rem;
}
.staff-slider__naming-fee {
  position: relative;
  z-index: 10;
  height: 1.5rem;
  margin: -1.5rem 0 0;
  padding: 0 0.25rem;
  line-height: 1.5rem;
  text-align: center;
  color: #424242 !important;
  background: rgba(255, 255, 255, 0.5);
  font-size: .75rem
}

.staff-slider__input:checked+.staff-slider__item {
  background: #757575;
  border-color: #757575;
  color: #fff
}

.staff-slider__input:checked+.staff-slider__item:before {
  background: #fff;
  border-radius: 50%;
  color: #B39354;
  content: "\f00c";
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Font Awesome 5 Free";
  font-size: 1.6rem;
  height: 2rem;
  position: absolute;
  right: 5px;
  top: 5px;
  text-align: center;
  width: 2rem;
  font-weight: 900;
}
.staff-slider__input:checked+.staff-slider__item:hover {
  background: #757575;
  border-color: #757575;
  cursor: default
}

@media screen and (max-width: 767px) {
  .common-table .select-menu td {
    padding: 1rem 1rem 0;
    width: 60%;
  }
  .common-table .select-menu td+td {
    padding: 0 1rem;
    width: 30%;
  }
  .common-table .select-menu .total-price td+td {
    padding: 2em 1rem;
  }
}

/* ------------------------------
　日時指名選択（カレンダー）
------------------------------ */
.card-block {
  padding: 1.25rem;
}
.card-block h2 {
  color: #B39354;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.card-block h2+p {
  margin: -0.5rem 0 1rem;
  color: #f99292;
  font-weight: bold;
}
.date-table__top-btn {
  margin-bottom: .5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
.btn-prev.btn-sm {
  padding-left: 2.5rem;
}
.btn-next.btn-sm {
  padding-right: 2.5rem;
}
.btn-secondary {
  color: #424242;
  background-color: #fff;
  border: none;
  font-size: 1.3rem;
}
.btn-prev.btn-secondary:after {
  color: #ccc;
}
.btn-prev {
  padding-left: 1.8rem;
  position: relative;
}
.btn-next {
  padding-right: 1.8rem;
  position: relative;
}
.btn-prev:after {
  content: "\f053";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;
  padding-right: 3.0rem;
}
.btn-next:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: relative;
  padding-left: 3.0rem;
}
.date-table {
  width: 100%;
}
.date-table thead th {
  font-weight: normal;
  vertical-align: middle;
  border-bottom: 1px solid #BDBDBD;
}
.date-table thead th.bg-gold {
  background: #B39354;
  font-weight: bold;
}
.date-table th,
.date-table td {
  padding: 1.0rem;
}
.date-table__thead th, .date-table__tfoot th {
  text-align: center;
}
.date-table th .date-table td {
  padding: 0.2rem 0.4rem;
}
.common-frame .date-table th, .common-frame .date-table td {
  vertical-align: middle;
  border: 1px solid #BDBDBD;
  padding: 0;
  text-align: center;
}
.common-frame .date-table .date-table__thead th {
  padding: 0.5rem 0 1rem;
  border-radius: 0;
}
.date-table__btn--state-disabled {
  color: #BDBDBD;
  cursor: default;
}
.date-table__btn--state-active {
  color: #B39354;
  text-decoration: none;
}
.date-table__btn--state-active, .date-table__btn--state-closed, .date-table__btn--state-disabled {
  display: block;
  width: 100%;
}
.date-table__btn--state-disabled:before {
  content: "×";
}
.date-table__btn--state-active:before {
  content: "◯";
}
.date-table__btn--state-disabled:before, .date-table__btn--state-active:before {
  font-size: 2.0rem;
  font-weight: bold;
}
.date-table__weekday {
  margin: auto;
  display: block;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}
.saturday {
  color: #0a70b7;
}
.sunday {
  color: #df6859;
}
.common-frame .date-table__tbody tr:last-child td {
  border-bottom: 1px solid #BDBDBD;
}
.date-table__tbody td {
  border: 1px solid #ccc;
  cursor: pointer;
}
.delivery-active {
  background-color: #B39354;
}
.date-table__tbody td a {
 display: block;
}
@media screen and (max-width: 767px) {
  .card-block {
    padding: 0;
  }
  .date-table__btn--state-disabled:before,
  .date-table__btn--state-active:before {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .date-table thead th ,
  .date-table td {
    font-size: 0.8rem;
  }
  .date-table th,
  .date-table td {
    padding: 0.2rem 0.4rem;
  }
}

/* ------------------------------
　ログイン
------------------------------ */
.login-page form ,
.login-page .max-w100 {
  max-width: 700px;
  margin: 2em auto;
}
.form-group.row {
  display: flex;
  align-items: center;
}
.form-control {
  padding: 1rem;
  font-size: 1.4rem;
  border-radius: 7px;
  height: auto;
}
.loginbtn button {
  display: block;
  margin: 1em 0 0 auto;
  text-align: center;
}
.loginbtn {
  text-align: center;
}
.loginbtn a {
  display: block;
  margin: 1em auto;
  text-align: center;
  font-size: 1.5rem;
  width: fit-content;
  text-decoration: underline;
}
.account {
  font-size: 1.5rem;
  padding: 1em 0;
  margin: 1em auto;
  text-align: center;
  display: block;
  width: fit-content;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .login-page form ,
  .login-page .max-w100 {
    max-width: 500px;
    margin: 2em 1em;
  }
}

/* ------------------------------
　アカウント作成
------------------------------ */
.form-required {
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  margin-left: 1rem;
  display: inline-block;
}
.common-frame label {
  padding: 7px 0;
  display: inline-block;
  vertical-align: middle;
}
.account-sec form .label-black label {
  font-weight: normal;
  color: #000;
  padding-left: 0.6rem;
}
.form-check-input:disabled~.form-check-label {
  color: #000;
}
.form-select-wrap .form-control {
  width: auto;
}
.birthday-txt {
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.form-check {
  flex-basis: fit-content;
}
.caution-blue {
  color: #2cc1ff;
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
}
.caution-black {
  color: #4d4e50;
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  padding: 1em;
}
.caution-pink {
  color: #f99292;
  display: block;
  font-size: 1.3rem;
  font-weight: normal;
  padding: 1em;
}
.common-table .thead-green.bg-grey {
  background-color: #f6f6f6;
  color: #000;
}
.common-table .thead-green.bg-grey span {
  color: #000;
  font-weight: normal;
  font-size: 1.4rem;
}
.account-sec form .txt-black label {
  color: #000;
}
.custom-control-input:disabled~.custom-control-label {
  color: #000;
}
.account-sec select+select {
  margin-top: 1em;
}
.over-y-scroll {
  overflow-y: scroll;
  height: 200px;
  padding: 1em;
}
.over-y-scroll::-webkit-scrollbar {
  width: 12px;
}
.over-y-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.5);
  border-radius: 5px;
}
.over-y-scroll::-webkit-scrollbar-track {
  background: rgba(100, 100, 100, 0.3);
  border-radius: 0 0 5px 5px;
}
.over-x-scroll {
  overflow-x: scroll;
  padding: 1em;
}
.over-x-scroll::-webkit-scrollbar {
  width: 12px;
}
.over-x-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.5);
  border-radius: 5px;
}
.over-x-scroll::-webkit-scrollbar-track {
  background: rgba(100, 100, 100, 0.3);
  border-radius: 0 0 5px 5px;
}
.agree-btn .btn {
  display: block;
  margin: auto;
  font-size: 1.5rem;
  padding: 1em 3em;
  border-radius: 10px;
}
.agree-btn .btn:disabled {
  opacity: 0.3;
}
.agree-check .custom-control-label {
  padding: 0.3rem 0 0 1em;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 1em 0 0 1em;
}
.account-check-sec .form-control {
  background: #ddd;
}
@media screen and (max-width: 767px) {
  .account-sec .common-frame .main-sec {
    padding: 2em 0 1em;
  }
  .form-select-wrap .form-control {
    padding: 1rem 0.5rem;
    font-size: 1.5rem;
  }
  .agree-btn .btn {
    display: block;
  }
  .caution-black {
    padding: 1em 0;
  }
  .common-frame label {
    line-height: 1.5;
  }
}

.course-check .common-table .select-menu .select-title td {
  background: #e5f5f4;
  width: 90%;
  padding: 0.5rem 1em;
  margin: 3rem auto 1rem;
  float: none;
}
.course-check .common-table .select-menu td {
  border-bottom: none;
}
.course-check .common-table .select-menu tr:last-child td {
  margin-bottom: 3rem;
}
.course-check .customer-check .common-table .select-menu td {
  width: 90%;
}
.complete-page .main-sec {
  text-align: center;
}
.complete-page .btn {
  margin: 2em auto 0;
  display: block;
  width: fit-content;
}
#postcode ,
#prefectures ,
#municipalities {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .course-check .sp-block .btn {
    width: 90%;
    margin: 1em auto;
    display: block;
  }
  .agree-check .custom-control-label {
    padding: 0.5rem 0 0 1em;
  }
}

/* ------------------------------
　モーダル
------------------------------ */
.modal .common-frame .bg-gold {
  border-radius: 0;
}
.modal .common-frame .bg-grey {
  padding: 1em;
  font-size: 1.8rem;
  font-weight: bold;
}

/* ------------------------------
　about
------------------------------ */
/* Default styles (for mobile devices) */


/* ------------------------------
　FAQ
------------------------------ */
.qa-004 dt, .qa-004 dd {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 1em 1em 1em 3.5em;
}
.qa-004 dt {
  font-weight: 600;
}
.qa-004 dd+dt {
  margin-top: 1em;
}
.qa-004 dt::before, .qa-004 dd::before {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  margin-right: 1em;
}
.qa-004 dt::before {
  background-color: #B39354;
  content: 'Q';
}
.qa-004 dd::before {
  background-color: #6ec6bf;
  content: 'A';
}

/* ------------------------------
  プライバシーポリシー
------------------------------ */
.price-sec img {
  max-width: 100%;
  width: auto;
  margin: 2em auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .price-sec img {
    padding: 2em 1em;
  }
}

/* ------------------------------
  サイトマップ
------------------------------ */
.sitemap-sec a {
  text-decoration: underline !important;
  line-height: 2;
  font-size: 1.6rem;
}
.sitemap-sec ul {
  padding-left: 1em;
}
.sitemap-sec ul li:before {
  content: ">";
  color: #B39354;
  font-weight: bold;
  padding-right: 1rem
}

/* ------------------------------
　予約内容のご確認
------------------------------ */
.course-check .common-table .select-menu .select-title td {
  background: #e5f5f4;
  width: 90%;
  padding: 0.5rem 1em;
  margin: 3rem auto 1rem;
  float: none;
}
.course-check .common-table .select-menu td {
  border-bottom: none;
}
.course-check .common-table .select-menu tr:last-child td {
  margin-bottom: 3rem;
}
.course-check .customer-check .common-table .select-menu td {
  width: 90%;
  ;
}
.complete-page .main-sec {
  text-align: center;
}
.complete-page .btn {
  margin: 2em auto 0;
  display: block;
  width: fit-content;
}
.course-check .common-table .select-menu td.width100 {
  width: 100% !important;
  padding-left: calc(5% + 2em) !important;
}
@media screen and (max-width: 767px) {
  .course-check .sp-block .btn {
    width: 90%;
    margin: 1em auto;
    display: block;
  }
}

/* ------------------------------
　マイページ
------------------------------ */
.customer-info .main-sec {
  font-size: 1.3em;
  font-weight: bold;
}
.yen-unit {
  padding-left: 1em;
}
.point-sec .text-small {
  font-size: 0.7em;
}
.rank-img img {
  padding-right: 5vw;
}
.mypage-btn .btn {
  font-size: 1.3em;
  font-weight: bold;
  text-align: left;
  padding: 1em;
  margin-bottom: 1em;
}
.mypage-btn .btn::after {
  content: "◀";
  float: right;
}
.mypage-favorite .salonList .linkText.tel {
  text-decoration: underline;
}
.mypage-favorite .salonList .linkText.tel use {
  color: #B39354;
}
.mypage-favorite .salonList>dl:last-child {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .mypage-favorite .salonList .tel-link {
    margin: 1em 0 0 0;
  }
}

/* ------------------------------
　利用履歴
------------------------------ */
.history-table .common-frame .date-table th {
  font-size: 1.0em;
}
.history-table .common-frame .date-table th, .history-table .common-frame .date-table td {
  padding: 1rem 2rem;
  white-space: nowrap;
}
.history-table .common-frame .date-table .btn {
  font-size: 1.5rem;
  border-radius: 7px;
}

/* ------------------------------
　トピックス
------------------------------ */
.topics-sec .topic-box {
  border-bottom: 1px solid #000;
}
.topics-sec .topic-box:first-of-type {
  border-top: 1px solid #000;
}
.topics-sec.topic-page .topic-box:first-of-type {
  border-top: none;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
}
.pagination li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 45px;
  height: 45px;
  background: #fff;
  border: solid 1px #000;
  color: #000;
  transition: all 0.15s linear;
  cursor: pointer;
}
.pagination li.navi-active {
  background: #111;
  pointer-events: none;
}
.pagination li.navi-active a {
  color: #fff;
}
.pagination li:not(.navi-active):hover {
  background: #111;
}
.pagination li:not(.navi-active):hover a {
  color: #fff;
}
.pagination > * + * {
  margin-left: 12px;
}
.pagination li.first ,
.pagination li.prev ,
.pagination li.next ,
.pagination li.last {
  border: none;
}

/* ------------------------------
　アズリードとは
------------------------------ */
.bg-about {
  background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url("../img/about_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
}
/* .about-box {
  margin: 3rem auto 0;
} */
.about-txt {
  font-size: 1.6rem;
  line-height: 2.0;
}
.box-one {
  border: 5px solid #B39354;
  margin: 3rem auto;
}
.box-number {
  background-color: #B39354;
  font-size: 2.0rem;
  font-weight: bold;
  display: block;
  width: 3rem;
  text-align: center;
}
.box-txt {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  color: #B39354;
  padding: 0rem 0 2rem;
}
@media screen and (min-width: 768px) {
.about-box {
  display: flex;
  flex-wrap: wrap;
  margin: 3rem auto 0;
}
.box-one {
  width: 42%;
}
}

@media screen and (max-width: 767px) {
  .about-txt {
    font-size: 1.3rem;
  }
}

/* ------------------------------
　商品一覧
------------------------------ */
.fade {
  transition: opacity .15s linear;
}
.modal-h3 {
  font-size: 2.0rem;
  font-weight: bold;
  padding-bottom: 2rem
}

.search-modal ul li {
  padding: 0 0 1rem 2rem;
}
.search-part {
  margin: 3rem auto;
}
.search-modal label {
  padding: 0;
  cursor: pointer;
}
.search-modal input[type=checkbox],
.search-modal input[type=radio] {
  margin-right: 10px;
}
/* .products-sec {
  width: auto;
  margin: 5rem auto 0;
} */
.products-sec img {
  width: auto;
  display: block;
  margin: auto;
}
.products-sec .product-name {
  font-size: 2.2rem;
  color: #B39354;
  font-weight: bold;
  text-decoration: underline;
  padding: 0.5rem 0 0.5rem;
  transition: 0.5s all;
}
.products-sec a:hover .product-name {
  opacity: 0.7;
}
/* .products-sec .price-fee {
  border-bottom: 1px solid #ABABAB;
  padding: 0 0 0.5rem;
} */
.products-sec .tag-name {
  color: #B39354;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  justify-content: space-between;
}
.products-sec .tag-name a {
  border: 1px solid #B39354;
  padding: 0.8rem 0 0.5rem;
  margin: 1%;
  width: 30%;
  border-radius: 5px;
  font-size: 1.2rem;
  text-align: center;
  font-weight: bold;
  transition: 0.5s all;
}
.products-sec .tag-name a li {
  color: #B39354;
}
.products-sec .tag-name a:hover {
  opacity: 0.6;
}
/* .numberof-txt {
  display: block;
} */
.numberof-no {
  display: block;
  width: 80%;
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid #CCCCCC;
}
.cart-add {
  padding: 1em 0;
  font-size: 1.6rem;
  font-weight: bold;
  border: none;
  width: 100%;
  background-color: #B39354;
  color: #fff;
  text-decoration: none;
  margin: 1rem auto;
  text-align: center;
  display: block;
  cursor: pointer;
  transition: 0.5s all;
}
.cart-add:hover {
  opacity: 0.6;
}
.products-sec .mb-5 {
  margin-bottom: 8rem !important;
}

/* ------------------------------
　カテゴリー
------------------------------ */
.thumbnail .slick-track {
  transform: unset !important;
}
.thumbnail-img {
  opacity: 0.3;
  transition: opacity .3s linear;
  margin: 0 0.5rem;
  cursor: pointer;
}
.thumbnail .slick-current {
  opacity: 1;
}
.category-page {
}

.category-page .hero {
  padding-top: 50px;
  max-width: 900px;
  margin: auto;
}
.slick-initialized {
  margin-bottom: 1rem;
}
.category-page .thumbnail {
  margin: 0 1rem;
}
.category-sec {
  padding: 0;
}
.category-sec .produt-name {
  font-size: 2.0rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
.price-title {
  display: inline-block;
  margin-bottom: 1rem;
}
.tax-per {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.3rem 1.5rem;
  margin: 0 0 1rem 1rem;
}
.price-yen {
  font-size: 1.8rem;
  display: block;
}
.price-yen span {
  font-size: 1.4rem;
}
.price-detail {
  border-bottom: 1px solid #000;
  padding-bottom: 1rem;
}
.middle-title {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
.large-title {
  font-size: 2.0rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
.cart-white {
  background-color: #fff;
  color: #B39354;
  border: 3px solid #B39354;
}
.category-form {
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 5px;
}
.category-form .pos-right {
  display: flex;
  justify-content: right;
  align-items: center;
}
.category-form .numberof-txt {
  padding-right: 1rem;
}
.category-form .numberof-no {
  width: 100px;
}
.width100 {
  max-width: 100%;
  width: 100%;
  margin: 5rem auto;
}
.rhombus {
  background: url("../img/rhombus.png") no-repeat top right;
  background-size: auto;
  padding: 5rem 0;
}
.various-img {
  max-width: 500px;
  margin: auto;
}
.various-img img {
  width: 500px;
}
.various-pattern h3 {
  font-size: 2.0rem;
}
.various-pattern h4 {
  font-size: 1.8rem;
}
.left-border-gold {
  border-left: 10px solid #B39354;
  padding: 10px 0 10px 20px;
}
.various-table {
  margin: 1rem 0;
}
.various-table th,
.various-table td {
  padding: 1rem;
  border-bottom: 1px solid #000;
  vertical-align: top;
}
.various-table th {
  width: 25%;
  font-weight: normal;
}
.various-table td {
  width: 75%;
}

/* ------------------------------
　FAQ
------------------------------ */
.faq-sec {
  margin: 5rem auto;
}
.faq-sec h3 {
  font-size: 2.0rem;
}
.toggle_title {
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  padding: 10px 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  background: #B39354;
  border-right: 40px solid #9F7F41;
  color: #fff;
}
.toggle_title span {
  font-size: 3.0rem;
  padding: 1rem 2rem 1rem 1rem;
  vertical-align: middle;
}
.toggle_title:hover {
  opacity: 0.7;
}
.toggle_title:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 11px;
  background:url(../img/btn_arrow.png) no-repeat right top;
  position:absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  transition: 0.2s;
}
.toggle_title.selected:after {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.2s;
}
.toggle_txt {
  display: none;
  padding: 2rem 1rem 1rem 1rem;
}
.toggle_txt span {
  font-size: 3.0rem;
  padding: 1rem 2rem 1rem 1rem;
  vertical-align: middle;
}

/* ------------------------------
　お知らせ
------------------------------ */
.topic-content h3 {
  font-weight: normal;
  font-size: 1.8rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1rem 0;
}
.sns-icon {
  display: flex;
  margin: 0 0 0 auto;
  align-items: center;
}
.sns-icon li {
  margin: 0 0.5rem;
}
.topic-content {
  border-bottom: 1px solid #000;
}
.topic-butoon {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
}
.topic-butoon div {
  margin: 1rem 1.5rem;
  transition: 0.5s all;
}
.topic-butoon div:hover {
  opacity: 0.7;
}
.topic-butoon .topic-back ,
.topic-butoon .topic-next{
  padding: 1.5rem;
}
.topic-butoon .topic-list {
  padding: 1.5rem 5rem;
}
.new-topics {
  margin: 5rem auto;
}
.new-topics h4 {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1.6rem;
}
.new-topics .topic-one {
  padding: 1.5rem 1rem 1.5rem 2rem;
  border-bottom: 1px solid #D1D1D1;
}


/* ------------------------------
　読みもの
------------------------------ */
.recommend-blog .topic-box {
  border: none;
}
@media screen and (max-width: 767px) {
  .recommend-blog .topic-box {
    font-size: 1.3rem;
  }
}

/* ------------------------------
　カート
------------------------------ */



.product-name {
  margin: 1rem 0;
}
.up-down .number-of-items {
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  text-align: right;
  font-weight: bold;
  border: 1px solid #ccc;
  margin: 0 0.1rem;
}
.up-down .updown-counter {
  background-color: #000;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.cart-delete {
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.5s all;
}
.cart-delete:hover {
  opacity: 0.7;
}
.total-price {
  text-align: right;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 1rem;
}
.total-price dt {
  width: 60%;
  font-weight: normal;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.total-price dd {
  width: 40%;
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.square-button {
  border-radius: 0;
}

.cartcheck-page .total-price {
  text-align: left;
  font-size: 1.5rem;
}
.order-detail {
  text-align: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.order-detail dt {
  width: 50%;
  margin-bottom: 1rem;
}
.order-detail dd {
  width: 50%;
  margin-bottom: 1rem;
}
.border-frame-grey {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 1rem 0;
  padding: 2rem 1rem;
}
.border-frame-grey p {
  margin: 0.5rem 0;
}
.point-check {
  margin: 0 0 2rem;
}
.point-check label {
  cursor: pointer;
}
.point-use-area {
  margin: 0 0 2rem 3rem;
}
.point-use-area label {
  transition: all 0.5s;
  opacity: 1;
  display: block;
  margin: 1rem;
}
.point-use-area .point-use[disabled] {
  transition: all 0.5s;
  opacity: 0.2;
}
#point-quantity ,
#charge-quantity {
  margin: 0 0.5rem 0 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-align: right;
  padding-right: 1rem;
}
.method-payment-area label {
  display: block;
  margin: 1rem;
}
.cartcheck-page input[type=checkbox],
.cartcheck-page input[type=radio] {
  margin-right: 1rem;
}
.delivery-info #prefectures {
  width: 150px;
}
.delivery-info .date-table td {
  height: 5rem;
}
.modal-dialog {
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .order-detail {
    font-size: 1.0rem;
  }
  .point-use-area {
    margin: 0 0 2rem 1rem;
  }
  #point-quantity ,
  #charge-quantity {
    margin: 0 0.5rem 0 1rem;
    padding-right: 1rem;
    width: 70px;
  }
}

/* ------------------------------
　アンバサダー
------------------------------ */
.ambassador-img-sec {
  display: block;
  position: relative;
  max-width: calc(600px + 5rem);
  margin: auto;
}
.ambassador-img-sec img {
  max-width: 600px;
  width: 600px;
}
.ambassador-img-sec p {
  background-color: #000;
  color: #fff;
  position: absolute;
  padding: 1rem 3rem;
  font-weight: bold;
}
.ambassador-img-sec .job-name {
  bottom: 8rem;
}
.ambassador-img-sec .ambassador-name {
  bottom: 2rem;
  left: 3rem;
}
.ambassador-page .sns-icon {
  margin: 1rem 0 0 auto;
  justify-content: right;
}
.ambassador-txt {
  text-align: center;
}
.ambassador-txt .job-name {
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
}
.ambassador-txt .ambassador-name {
  font-size: 2.4rem;
  padding-bottom: 2.0rem;
}
.ambassador-txt .ambassador-deading {
  font-weight: normal;
  padding-bottom: 3.0rem;
}
.about-sec.ambassador-page.bg-grey {
  max-width: 100%;
}
.about-sec.ambassador-page.bg-grey .wrap{
  max-width: 800px;
}


/* ------------------------------
　ポイント
------------------------------ */
.point-part {
  display: flex;
  margin: 2rem 0 1rem 1rem;
}
.point-part p {
  font-weight: bold;
}
.point-head {
  margin-right: 2rem;
}
.point-tbl {
  width: calc(100% - 2rem);
  margin: 1rem;
}
.point-tbl th {
  padding: 0.9rem;
}
.point-tbl td {
  padding: 1rem;
}
.point-tbl tr th:nth-child(3) ,
.point-tbl tr td:nth-child(3) ,
.point-tbl tr th:nth-child(4) ,
.point-tbl tr td:nth-child(4) {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .point-tbl {
    width: calc(100% - 1rem);
    margin: 1rem 0.5rem;
    font-size: 1.1rem;
  }
  .point-tbl th {
    padding: 0.4rem;
  }
  .point-tbl td {
    padding: 0.5rem;
  }
}

/* ------------------------------
　パスワード
------------------------------ */
.loginbtn.btn-reissue button {
  margin: 1rem auto;
}

@media screen and (max-width: 767px) {
  .loginbtn.btn-reissue button {
    margin: 1rem auto 0 0;
  }
}

/* ------------------------------
　購入履歴
------------------------------ */
.order-page button {
  display: block;
  margin: auto;
}
.order-sec img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .order-page .order-detail {
    font-size: 1.3rem;
  }
}

/* ------------------------------
　特定商取引
------------------------------ */
.specify-dl dt ,
.specify-dl dd {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .specify-dl dt ,
  .specify-dl dd {
    padding-right: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .specify-dl dt {
    padding-left: 0;
  }
}

/* ------------------------------
　特定商取引
------------------------------ */
.terms_main_content_inner {
  padding: 0 1rem;
}
.terms_main_content_inner h3 {
  font-size: 2.2rem;
}
.terms_main_content_inner+.terms_main_content_inner {
  border-top: 1px solid #eeeeee;
  margin: 30px 0 0 0;
  padding: 30px 0 0 0
}
.terms_main_description {
  line-height: 1.8;
}
.terms_main_description h4 {
  margin: 2rem 0 1rem 0;
}
.terms_main_description p+p {
  margin-top: 1.5rem;
}
.terms_main_description ol {
  margin-left: 1rem;
}
.terms_main_description ol li {
  margin: 0 0 1rem 2rem;
  list-style: auto;
}

/* ------------------------------
　プライバシーポリシー
------------------------------ */
.main_description {
  border-bottom: 1px solid #eeeeee;
  letter-spacing: 0.03em;
  padding-top: 30px;
  padding-bottom: 30px
}
.main_description:first-child {
  border-top: 1px solid #eeeeee
}
.main_description h3 {
  font-size: 18px
}
.main_description p,.main_description ul {
  margin-top: 10px
}
.main_description ul {
  margin-left: 10px
}
.main_description ul li {
  position: relative;
  margin-bottom: 10px;
  margin-left: 12px
}
.main_description ul li:last-child {
  margin-bottom: 0
}
.main_description ul li::before {
  position: absolute;
  left: -15px;
  top: 0.75em;
  content: "";
  display: block;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  background: #282828
}
.main_description h4 {
  font-size: 16px;
  margin-top: 20px
}
.main_description a {
  text-decoration: underline
}
.main_description+.main_description {
  border-top: none;
  margin-top: 0
}


/* ------------------------------
　マイページ
------------------------------ */
.mypage-sec a:hover,
.mypage-sec a:active {
  color: #000;
}


/* ------------------------------
　カレンダー
------------------------------ */
th.fc-day-sat {
}
th.fc-day-sun {
}
th.fc-day-sat .fc-col-header-cell-cushion ,
th.fc-day-sat .fc-col-header-cell-cushion:hover {
  color: #0a70b7;
}
th.fc-day-sun .fc-col-header-cell-cushion ,
th.fc-day-sun .fc-col-header-cell-cushion:hover {
  color: #df6859;
}
td.fc-day-sat {
}
td.fc-day-sun {
}
.fc-col-header-cell-cushion {
  color: black;
}
.fc-daygrid-day-number {
  color: black;
}
td.fc-day-sat .fc-daygrid-day-number {
  color: #eaf4ff;
}
td.fc-day-sun .fc-daygrid-day-number {
  color: #ffeaea;
}
.fc .fc-timegrid-slots td.fc-timegrid-slot {
  height: 8.0rem;
  cursor: pointer;
}
.date-table thead th.fc-timegrid-axis {
  height: 5.0rem;
}
.fc.date-table {
  font-size: 1.4rem;
  font-weight: normal;
}
.fc.date-table .fc-toolbar-title {
  font-size: 1.5rem;
  font-weight: normal;
}
.fc.date-table .fc-button-primary {
  background-color: transparent;
  color: #000;
  border: none;
}
.fc.date-table .fc-button-primary:hover {
  border: none;
}
.fc.date-table .fc-button-primary:focus {
  box-shadow: none;
}
.fc.date-table .fc-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fc.date-table .fc-toolbar-chunk {
  margin: 0 1rem;
}

@media screen and (max-width: 767px) {
  .fc.date-table .fc-toolbar-chunk {
    margin: 0;
  }
  .fc.date-table .fc-toolbar {
    justify-content: space-between;
  }
  .fc-scrollgrid-sync-inner {
    word-break: break-all;
  }
  .fc .fc-timegrid-slots td.fc-timegrid-slot {
    height: 5.0rem;
  }

}




