@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Martel&display=swap');

body {
  font-feature-settings: "palt";
  font-size: 16px;
  color: #333;
  background: #f0f0f0;
  font-family: "メイリオ", "Meiryo", arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: 100;
}

body::before {
  content: "";
  display: block;
  background-image: url(../img/main-bg.jpg);
  background-size: cover;
  background-repeat: repeat;
  background-position: top;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  /*    animation: gradation 20s infinite;*/
}

img {
  vertical-align: middle;
}

.loading {
  width: 100vw;
  height: 100vh;
  background: #383333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.loading img {
  width: 60%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 70% auto;
  filter: drop-shadow(0px 0px 1px #fff);
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  z-index: 99;
  transition: ease 0.3s;
  background: #fff;
  /* border-bottom:3px solid #fff; */
  box-shadow: 0px 2px 4px -1px rgb(0 0 0 / 20%);

}

main {
  position: relative;
}


@keyframes gradation {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

.logo-area {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 3;
}

.logo-area h1 {
  width: 150px;
  height: 60px;
  padding: 0.2rem 0;
}

.logo-area a {
  display: block;
  background: url("../img/visual-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  /* filter: drop-shadow(0px 0px 1px #fff); */
}

#nav-circle-bg {
  position: fixed;
  background: rgba(255, 255, 255, 1);
  width: 600px;
  height: 100vh;
  top: 0;
  right: -600px;
  border-radius: 50%;
  transition: transform 0.5s ease;
  transition-delay: 1.1s;
}

.open #nav-circle-bg {
  transform: matrix(2.7, 0, 0, 2.7, 0, 0);
  transition-delay: 0s;
}

#nav {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 57px;
  right: -100%;
  text-align: center;
}

.open #nav {
  top: 54px;
}

#nav ul {
  width: 100%;
  list-style: none;
  padding-top: 0;
}

#nav li+li {
  /* transition: transform .5s ease;
  transition-delay: 0; */
  border-top: 1px solid #ccc;
}

@media screen and (min-width:801px) {
  #nav li+li {
    border-top: 0;
  }
}

#nav li {
  transition: transform .5s ease;
  transition-delay: 0;
  border-bottom: 1px solid #fff;
}

#nav li:nth-child(1) {
  transition-delay: 0;
}

#nav li:nth-child(2) {
  transition-delay: 0.1s;
}

#nav li:nth-child(3) {
  transition-delay: 0.2s;
}

#nav li:nth-child(4) {
  transition-delay: 0.3s;
}

#nav li:nth-child(5) {
  transition-delay: 0.4s;
}

#nav li:nth-child(6) {
  transition-delay: 0.5s;
}

#nav li:nth-child(7) {
  transition-delay: 0.6s;
}

#nav li:nth-child(8) {
  transition-delay: 0.7s;
}

#nav li:nth-child(9) {
  transition-delay: 0.8s;
}

#nav li:nth-child(10) {
  transition-delay: 0.9s;
}

#nav li:nth-child(11) {
  transition-delay: 1s;
  border-bottom: 0;
}

.open #nav li {
  transform: translateX(-100%);
}

.open #nav li:nth-child(1) {
  transition-delay: 0s;
}

.open #nav li:nth-child(2) {
  transition-delay: 0.1s;
}

.open #nav li:nth-child(3) {
  transition-delay: 0.2s;
}

.open #nav li:nth-child(4) {
  transition-delay: 0.3s;
}

.open #nav li:nth-child(5) {
  transition-delay: 0.4s;
}

.open #nav li:nth-child(6) {
  transition-delay: 0.5s;
}

.open #nav li:nth-child(7) {
  transition-delay: 0.6s;
}

.open #nav li:nth-child(8) {
  transition-delay: 0.7s;
}

.open #nav li:nth-child(9) {
  transition-delay: 0.8s;
}

.open #nav li:nth-child(10) {
  transition-delay: 0.9s;
}

.open #nav li:nth-child(11) {
  transition-delay: 1s;
}


#nav p {
  font-size: 0.5rem;
  line-height: 1;
  color: #000;
  padding-top: 0.3rem;
}

.close-btn {
  padding: 0.5rem 0;
  color: #C7B492;
  font-weight: 600;
}

#nav a {
  width: 100%;
  display: block;
  color: #C7B492;
  text-decoration: none;
  padding: 0.5rem 0;
  line-height: 1;
}

#nav-toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 102;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;

}

/* #nav-toggle :nth-child(2){
  width: 2.5rem;
    left: 0.5rem;
}
#nav-toggle :nth-child(3){
  width: 1.5rem;
    left: 1.5rem;
} */
#nav-toggle>div {
  position: relative;
  height: 15px;
  width: 20px;
  margin: 0 auto 0.5rem;
}

#nav-toggle>div::after {
  content: "MENU";
  display: block;
  color: #000;
  font-size: 0.5rem;
  /* width: 60px; */
  position: absolute;
  bottom: -130%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: 0.35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 50%;
  /* transform: translateY(-50%); */
}

#nav-toggle span:nth-child(3) {
  top: 100%;
}

.open #nav-toggle span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  /* width: 3rem; */
  left: 0;
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  /* width: 3rem; */
  left: 0;
}

.content--canvas {
  height: 100vh;
}

.mainvisual-bg {
  width: 100%;
  height: 60vh;
  position: relative;
  z-index: 0;
}

.mainvisual-bg:before {
  content: "";
  display: block;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 100%),
    url("../img/mainvisual.jpg?ver1");
  background-size: cover;
  background-position: right top 60px;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  /*  position: fixed;*/
  top: 0;
  left: 0;
  z-index: -1;
}

.visual-logo {
  background: url("../img/visual-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 18% 0;
  filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff);
}

.mainvisual {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 5rem 11% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #4c4c4c;
}

.mainvisual p {
  padding: 1rem 0;
  color: #fff;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .6));
}

.mainvisual ul {
  display: flex;
  justify-content: center;
  padding: 0 0 1rem;
}

.mainvisual li {
  margin: 0.5rem 1rem;
  line-height: 1;
}

.mainvisual a {
  color: #fff;
  font-size: 2rem;
}

.scroll-btn {
  line-height: 1;
}

.scroll-btn a {
  font-size: 1rem;
  text-decoration: none;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .6));
}

.main-contact {
  width: 100%;
  background: #fff;
  /* color: #fff; */
}

.main-contact a {
  color: #fff;
  text-decoration: none;
}

.main-contact ul {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.main-contact ul li {
  padding: 0.5rem;

}

.main-contact ul li+li {

  border-left: 1px solid #ddd;
}

.main-contact ul .fa-mobile-alt {
  margin-right: 5px;
}

.contents-ttl {
  /*  background: url("../img/title.svg");*/
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
  /*  margin: 2rem 0;*/
  text-align: center;
  line-height: 1.2;
}

.contents-ttl h2 {
  font-size: 2rem;
  color: #C7B492;
  text-shadow: 0 0 white;
  padding-bottom: 0.25rem;
  font-family: 'Cinzel', serif;
  font-weight: 100;
}

.contents-ttl p {
  font-size: 0.75rem;
  color: #767676;
  text-shadow: 0 0 white;
  font-weight: bold;

}

.index-pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .index-sp {
    display: none;
  }

}

.pick-wrap {
  width: 100%;
  padding: 0 1rem;
  position: relative;
}

.pick-image a {
  display: block;
  width: 100%;
  background: url("../img/pickup.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(4/3*100%);
}

.name-wrap {
  position: absolute;
  left: 2rem;
  bottom: 0.5rem;
  color: #fff;
}

.name-wrap li {
  text-shadow: 2px 2px 5px #454545;
}

.news-wrap {
  width: 100%;
  padding: 0 1rem 1rem;
}

.news-image01 a {
  background: url("../img/news01.jpg");
}

.news-image02 a {
  background: url("../img/news02.jpg");
}

.news-image01 a,
.news-image02 a {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(3/4*100%);
}

.news-text-wrap {
  width: 100%;
  padding: 1rem 1rem 0.475rem;
  background: #fff;
  margin-bottom: 1rem;
}



.news-ttl-top {
  font-weight: 600;
  margin-top: 0.5rem;
  height: 3.5rem;
  overflow: hidden;
}

.news-text-wrap li:first-child {
  font-size: 0.75rem;
  color: #4c4c4c;
}

.news-text-wrap li span {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #cdc095;
  color: #fff;
  margin-right: 1rem;
}

.todays-wrap {
  width: 100%;
  padding: 2rem 0.5rem 1rem;
  /*  background: linear-gradient(to top, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%), url(../img/todays-bg.jpg);*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #4c4c4c;
  line-height: 1.2;
  text-align: center;
}

.tosays-ttl {
  margin-bottom: 2rem;
}

.todays-wrap h2 {
  font-size: 2rem;
  color: #C7B492;
  text-shadow: 0 0 white;
  padding-bottom: 0.25rem;
  font-family: 'Cinzel', serif;
  font-weight: 100;
}

.todays-wrap p {
  font-size: 0.75rem;
  /* color: #767676;
  text-shadow: 0 0 white;
  font-weight: bold; */
}

.therapist-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.staff-box {
  width: 49%;
  text-align: center;
  color: #454545;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 20%);
  padding: 0.5rem;
  background: #fff;
}

.staff-box>ul>li:nth-of-type(1) {
  padding: 0.5rem 0.5rem 0;
  font-size: 0.9rem;
}

.staff-box>ul li span {
  color: #C7B492;
}

.staff-box>ul>li span {
  margin: 0 0.2rem;

}

.staff-box>ul li span.cup {
  font-size: 0.8rem;
  margin-left: -3px;
  color: #333;
}

.staff-box>ul>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding-bottom: 0.3rem;
}

.staff-box>ul>ul li+li {
  margin-left: 0.2rem;
}

.staff-box>ul>li:nth-of-type(n+2) {
  border-top: 1px dashed #4c4c4c;
  padding: 0.5rem 0;
  line-height: 1;
}

.staff-box li i {
  padding-right: 0.25rem;
}

.staff-box>ul>li.cond {
  /*    background: -webkit-linear-gradient( 0deg, #d76a6f 10%, #eec1c3 50%, #f4d4d5 90%);*/
  background: #EEE;

  /* color:#fff; */
  border: none;
  padding: 0.5rem 0;
}

.staff-image {
  width: 100%;
  display: block;
  padding-top: calc(4/3*100%);
  position: relative;
  text-decoration: none;
  color: #fff;
}

.staff-image a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.box-inner {
  background: #fff;
  color: #666;
  width: 100%;
  left: 0;
  bottom: 0;
}

.box-inner li {
  padding: 0.25rem 0;
}

.box-inner>li {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-wrap {
  width: 100%;
  padding: 1rem 1rem;
  /* background: #fff; */
}

.blog-box {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
}

.blog-box+.blog-box {
  border-top: 1px solid #4c4c4c;
}

.blog-text {
  width: 66%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

/* 
.clamp-text2 {
  width: 100%;
  max-height: 2.75rem;
  overflow: hidden;
  text-align: justify;
  /* background: #fffcf7; */
position: relative;
line-height: 1.4;
margin-top: auto;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}

*/ .clamp-text2:before,
.clamp-text2:after {
  position: absolute;
  /* background: #fffcf7; */
}

/* .clamp-text2:before {
  content:"…";
  bottom: 0;
  right: 0;
}
.clamp-text2:after {
  content: "";
  width: 100%;
  height: 100%;
} */
.clamp-text2 a {
  color: #454545;
}

.clamp-text3 {
  width: 100%;
  max-height: 2.75rem;
  overflow: hidden;
  text-align: justify;
  /* background: #fffcf7; */
  position: relative;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: 600;
}

.clamp-text3:before,
.clamp-text3:after {
  position: absolute;
  /* background: #fffcf7; */
}

/* .clamp-text3:before {
  content:"…";
  bottom: 0;
  right: 0;
}
.clamp-text3:after {
  content: "";
  width: 100%;
  height: 100%;
} */
.news-sp-none {
  display: none;
}

.blog-image01,
.blog-image02,
.blog-image03 {
  width: 30%;
}

.blog-image01 a {
  background: url("../img/blog01.jpg");
}

.blog-image02 a {
  background: url("../img/blog02.jpg");
}

.blog-image03 a {
  background: url("../img/blog03.jpg");
}

.blog-image01 a,
.blog-image02 a,
.blog-image03 a {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(4/3*100%);
}

.last-border {
  border-bottom: 0;
}

.link-bnr-wrap {
  width: 100%;
  padding: 0 1rem;
  overflow: hidden;
}

.reserve-bnr {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), url("../img/reserve-bg.jpg");
}

.qa-bnr {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), url("../img/qa-bg.jpg");

}

.recruit-bnr {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), url("../img/recruit-bg.jpg");
}

.reserve-bnr,
.qa-bnr,
.recruit-bnr {
  width: 100%;
  padding: 0.5rem;
  margin: 1rem 0;
  text-align: center;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.reserve-bnr a,
.qa-bnr a,
.recruit-bnr a {
  display: block;
  text-decoration: none;
  padding: 1rem 0;
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, .4);
  line-height: 1.2;
  font-family: 'Cinzel', serif;
  font-weight: 100;
}

.reserve-bnr a p,
.qa-bnr a p,
.recruit-bnr a p {
  font-size: 0.75rem;
}

.concept-wrap {
  width: 100%;
  padding: 0 1rem 1rem;
  line-height: 1.2;
}

.concept-bg {
  background-image: url("../img/kazari-tl.svg"),
    url("../img/kazari-tr.svg"),
    url("../img/kazari-br.svg"),
    url("../img/kazari-bl.svg");
  background-position: left top, right top, right bottom, left bottom;
  background-repeat: no-repeat;
  background-size: 20%, 20%, 20%, 20%;
  /* background-color: #fff; */
  text-align: center;
  padding: 2rem 1rem;
}

.concept-wrap h3 {
  font-size: 2rem;
  color: #C7B492;
  text-shadow: 0 0 white;
  padding-bottom: 0.25rem;
  font-family: 'Cinzel', serif;
  font-weight: 100;
}

.concept-wrap p {
  font-size: 0.75rem;
  color: #767676;
  text-shadow: 0 0 white;
  /* font-weight: bold; */

}

.concept-wrap p+p {
  margin-top: 1rem;
}

.schedule-wrap {
  width: 100%;
  padding: 0 0.5rem;
}

.under-main {
  padding-top: 60px;
}

.under-wrap {
  /* background: #fff; */
  padding-top: 1rem;
}

.weekly-schedule {
  width: 100%;
  padding: 0 1rem 1rem;
}

.weekly-schedule ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.weekly-schedule li {
  text-align: center;
  background: #C7B492;
}

.weekly-schedule li:first-child {
  width: 100%;
  margin-bottom: 0.25rem;
}

.weekly-schedule li:nth-child(n+2) {
  width: 49%;
  margin: 0.25rem 0;
}

.weekly-schedule li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1rem;
  /* border: 1px solid #4c4c4c; */
}

.weekly-schedule li a.current {
  background: #A09176;
  color: #fff;
  border: none;
}

.filter-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 1rem 1rem;
}

.filter-wrap select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.filter-wrap select {
  font-size: 1rem;
  padding: 0.5rem;
  border: 1px solid #4c4c4c;
  color: #4c4c4c;
  width: 68%;
  background-image: url("../img/filter-arrow.svg"), linear-gradient(to bottom, #cdc095 0%, #cdc095 100%);
  background-size: 2.625rem 2.625rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.filter-wrap .filter-reset {
  width: 32%;
  text-align: center;
}

.filter-wrap .filter-reset a {
  text-decoration: underline;
  color: #4c4c4c;
}

.filter-inner {
  width: 100%;
  text-align: left;
  border: 1px solid #4c4c4c;
  background: #fff;
  padding: 0.5rem;
  margin-top: 1rem;
  position: relative;
  height: 2.625rem;
}

.filter-inner label {
  margin-right: 1rem;
}

.filter-inner input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.filter-inner input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  background: #cdc095;
  color: #fff;
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 4rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 0;
}

.profile-wrap {
  width: 100%;
  padding: 0 1rem 1rem;
}

.tab-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.tab-label {
  flex: 1;
  color: #666;
  background: #eaeaea;
  order: -1;
  font-size: 0.9rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
}

.tab-content {
  width: 100%;
  height: 100%;
  display: none;
}

.tab-switch:checked+.tab-label {
  background: #cdc095;
  color: #fff;
}

.tab-switch:checked+.tab-label+.tab-content {
  display: block;
}

.tab-switch {
  display: none;
}

.tab-image01 {
  background: url("../img/profile01.jpg");
}

.tab-image02,
.tab-image03 {
  background: url("../img/noimage.jpg");
}

.tab-image01,
.tab-image02,
.tab-image03 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(4/3*100%);
}

.shame-btn {
  width: 100%;
  margin-top: 1rem;
}

.shame-btn a {
  display: block;
  text-align: left;
}

.shame-btn img {
  width: 100%;
}

.staff-name {
  font-size: 1.25rem;
  border-bottom: double #000;
  padding: 0 0 0.5rem;
}

.detail-wrap li {
  border-bottom: 1px dotted #454545;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.shop-cmt {
  font-weight: 600;
  /* border-bottom: double #000; */
  padding: 1.5rem 0 0.5rem;
}

.shop-cmt+div {
  text-align: justify;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.shop-cmt.shame {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.weekly-ttl {
  margin-top: auto;
}

.detail-tbl {
  width: 100%;
  display: flex;
  font-size: 0.875rem;
}

.detail-tbl thead {
  display: block;
  width: 30%;
  background: #C7B492;
  color: #fff;
}

.detail-tbl tbody {
  display: block;
  width: 70%;
}

.detail-tbl tr {
  display: block;
}

.detail-tbl th {
  font-weight: 400;
}

.detail-tbl tr th,
.detail-tbl tr td {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid #ddd;
}

@media screen and (max-width:800px) {
  .detail-tbl tr th {
    border-right: none;
  }

  .detail-tbl tr td {
    border-left: none;
  }

  .detail-tbl tr th+th,
  .detail-tbl tr td+td {
    border-top: none;
  }

  .detail-tbl tr th:not(:last-child) {
    border-bottom-color: #ffffff;
  }



}

/* .sat,
.weekly-schedule .sat a {
  color: #0265b8;
}
.sun,
.weekly-schedule .sun a {
  color: #f42c65;
} */
.ico-area {
  position: absolute;
  bottom: 0.25rem;
  left: 0.25rem;
}

.ico-newface {
  background: #eb3b54 !important;
}

.ico-deli {
  background: #3b8aeb !important;
}

.ico-popular {
  background: #40c727 !important;
}

.ico-area li {
  width: 4rem;
  height: 1.5rem;
  color: #fff;
  /* transform: rotate(45deg); */
  overflow: hidden;
}

.ico-area li+li {
  margin-top: 0.2rem;
}

.ico-area li p {
  /* transform: rotate(-45deg); */
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1.2;
}

.profile-wrap .ico-area {
  top: 2.5rem;
  left: 0.5rem;
}

/*
.profile-wrap .ico-area li {
	width:4rem;
	height:4rem;
}
.profile-wrap .ico-area li p {
	font-size:1rem;
	width:4rem;
	height:4rem;
}
*/

.form-caution {
  width: 100%;
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  text-align: center;
}

.form-caution .text-red {
  color: #f44336;
}

.form-wrap {
  padding: 0 1rem 1rem;
}

.reserve {
  padding: 0 0 1rem;
}

.reserve>div {
  position: relative;
  padding: 0.5rem 1rem;
  /*  background: #4c4c4c;*/
}

.reserve.confirm>div+div {
  border-top: 1px dashed #ddd;
}

.reserve>div label {
  display: block;
}

.reserve input[type="text"],
.reserve input[type="number"],
.reserve input[type="tel"],
.reserve input[type="email"],
.reserve input[type="date"],
.reserve select {
  width: 100%;
  padding: 0 0.5rem;
  display: block;
  height: 2.5rem;
  border: 1px solid #000;
  font-size: 1rem;
  border-radius: 0;
}

.reserve textarea {
  width: 100%;
  display: block;
  padding: 0.5rem;
  border: 1px solid #000;
  font-size: 1rem;
  border-radius: 0;
}

.reserve select::-ms-expand {
  display: none;
}

.reserve select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../img/select-arrow.svg"), linear-gradient(to bottom, #000 0%, #000 100%);
  background-size: 2.5rem 2.5rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.ui-datepicker-trigger {
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
  background: #000;
  display: none;
}

.reserve #schedule {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  height: 2.5rem;
  line-height: 2.5rem;
  border: 1px solid #000;
  border-radius: 0;
  background-image: url("../img/calendar.svg"),
    linear-gradient(to bottom, #000 0%, #000 100%);
  background-size: 2.5rem 2.5rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #fff;
  cursor: default;
}

.reserve input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0 0.5rem;
  display: block;
  height: 2.5rem;
  line-height: 2.5rem;
  border: 1px solid #000;
  font-size: 1rem;
  border-radius: 0;
  background-image: url("../img/select-arrow.svg"), linear-gradient(to bottom, #000 0%, #000 100%);
  background-size: 2.5rem 2.5rem;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #fff;
}

.reserve input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-radius: 8px;
  background: #F3F3F3;
  color: #333;
  border: 1px solid #CCC;
  text-align: center;
  text-decoration: none;
  font-weight: 100;
  line-height: 1;
}

.reserve input[type="submit"][disabled] {
  background: #ccc;
  color: #fff;
}

.reserve input[type="checkbox"] {
  margin: 0 auto;
}

.reserve input[type="radio"],
.reserve input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.reserve input[type="radio"]+label {
  padding-left: 1.25rem;
  margin-right: 1.25rem;
  position: relative;
}

.reserve input[type="radio"]+label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.125rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
}

.reserve input[type="radio"]:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.375rem;
  left: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #000;
  border-radius: 50%;
}

.check-point {
  padding-left: 1.25rem;
  position: relative;
}

.check-point:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 1px solid #4c4c4c;
  border-radius: 4px;
}

.comp-btn {
  text-align: center;
}

.comp-btn a {
  display: inline-block;
  width: auto;
  padding: 1rem 2rem;
  border-radius: 8px;
  background: #F3F3F3;
  color: #333;
  border: 1px solid #CCC;
  text-align: center;
  text-decoration: none;
  font-weight: 100;
  line-height: 1;
}

.filter-inner input[type="checkbox"]:checked+.check-point:after,
.reserve input[type="checkbox"]:checked+.check-point:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 0.65rem;
  height: 1rem;
  transform: translateY(-80%) rotate(40deg);
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
}

div.checkbox {
  background: transparent;
  width: 100%;
  padding: 1rem 0;
  text-align: center;
}

.recruit-main {
  padding-top: 60px;
}

.recruit-mainvisual {
  background: url("../img/recruit-top.jpg?ver1");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(386/900*100%);
  width: 100%;
}

.recruit-ttl {
  background: #c5809b;
  text-align: center;
  padding: 1rem 0;
}

.recruit-ttl h2 {
  color: #fff;
  font-size: 1.25rem;
}

.recruit-container {
  width: 100%;
  padding: 2rem 0 0;
}

.recruit-bg01 {
  background: #eee0c8;
}

.recruit-wrap {
  width: 100%;
  text-align: center;
  padding-bottom: 1rem;
}

.recruit-wrap a {
  color: #454545;
}

.job-box {
  padding: 0 1rem;
}

.job-box dl {
  justify-content: space-between;
}

.job-box dl dt,
.job-box dl dd {
  width: 100%;
  padding: 1rem;
  border: 1px solid #454545;
}

.job-box dl dt {
  text-align: center;
  background: #F9F9F9;
  /* color: #cdc095; */
}

.job-box dl dt+dd {
  background: rgba(255, 255, 255, 0.7);
  border-top: 0;
  border-bottom: 0;
}

.job-box dl:last-child dt+dd {
  border-bottom: 1px solid #454545;
}

.shop-intro {
  padding: 0 1rem 2rem;
}

.recruit-info-ttl {
  padding: 1rem 0 1.5rem;
  font-size: 1.25rem;
}

.recruit-info {
  width: 100%;
  padding: 1rem 1rem 2rem;
}

.text-under-line {
  text-decoration: underline;
  font-size: 0.875rem;
}

.recruit-image01,
.recruit-image02 {
  width: 100%;
}

.recruit-image02 {
  padding: 1rem 0 0;
}

.recruit-image01 img,
.recruit-image02 img {
  width: 100%;
}

.top-line {
  padding: 0 1rem;
}

.top-line:before {
  content: "";
  display: block;
  width: 100%;
  margin: 1rem auto;
  border-top: 1px solid #454545;
}

.salary-example {
  width: 100%;
  padding: 0 2rem 1rem;
}

.salary-example li {
  background: #fff;
  padding: 1rem;
  margin: 0 0 1rem;
  border-radius: 1rem;
}

.recruit-contact {
  width: 100%;
  padding: 0 2rem 1rem;
}

.recruit-contact p {
  padding-bottom: 1rem;
}

.recruit-contact li {
  background: #4c4c4c;
  color: #fff;
  padding: 1rem;
  margin: 0 0 1rem;
  border-radius: 1rem;
}

.recruit-contact li a {
  text-decoration: none;
  color: #fff;
  display: block;
}

.recruit-contact i {
  margin-right: 0.25rem;
}

.twitter-wrap {
  width: 100%;
  height: 480px;
  padding: 0 1rem;
  margin-bottom: 1rem;
  overflow-y: scroll;
}

.map-wrap {
  width: 100%;
  background: url("../img/map-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2rem 0;
}

.map-wrap .contents-ttl {
  color: #fff;
  margin: 0;
}

.map-box {
  padding: 2rem 1rem 0;
  color: #fff;
}

.map-box a {
  color: #fff;
  text-decoration: none;
}

.map-box iframe {
  width: 100%;
  height: 380px;
}

.accordion ul {
  width: 100%;
  padding: 0 1rem;
}

.accordion li {
  position: relative;
  list-style: none;
  margin-bottom: 1rem;
}

.accordion>ul>li>div {
  cursor: pointer;
  position: relative;
  /* color: #dddddd; */
  padding: 0.5rem 3.5rem 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
  border: 1px solid #4c4c4c;
}

.accordion>ul>li>p {
  display: none;
  text-align: left;
  padding: 0.5rem;
  color: #383333;
}

.accordion li .accordion_icon,
.accordion li .accordion_icon span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}

.accordion li .accordion_icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #eee;
  text-align: center;
}

.accordion li .accordion_icon span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.5rem;
  height: 2px;
  background: #4c4c4c;
}

.accordion li .accordion_icon span:nth-of-type(1) {
  transform: rotate(0deg);
}

.accordion li .accordion_icon span:nth-of-type(2) {
  transform: rotate(90deg);
}

.accordion li .accordion_icon.active span:nth-of-type(1) {
  display: none;
}

.accordion li .accordion_icon.active span:nth-of-type(2) {
  transform: rotate(180deg);
}

.toggle>div>span {
  font-size: 0.5rem;
}

.system-wrap {
  width: 100%;
  padding: 0 1rem;
}

.list-wrap {
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.list-wrap h3 {
  /* border-top: 1px solid #4c4c4c;
  border-bottom: 1px solid #4c4c4c; */
  text-align: center;
  font-size: 1.2rem;
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 10px;
  font-weight: 100;
  line-height: 1;
}

.list-wrap p {
  padding: 1rem 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.list-wrap dl {
  width: 100%;
  display: flex;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: space-between;

}

.list-wrap dt,
.list-wrap dd {
  width: 50%;
  /* border: 1px solid #c0c0c0; */
  margin-top: -1px;
  padding: 0.5rem;
  text-align: center;
  font-family: 'Martel', serif;
  font-style: italic;
  font-size: 1.2rem;
}

.list-wrap dt {
  /* background: #5e615b; */
  color: #C7B492;
  text-align: right;
  padding-right: 2.5rem;
  position: relative;
  z-index: 0;

}

.list-wrap dt::before {
  content: "...";
  color: #333;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.1rem;

}

.list-wrap dd {
  /* background: #fff; */
  border-left: 0;
  text-align: left;
  padding-left: 1rem;
}

.list-wrap .system-caution {
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
}

.list-wrap li {
  padding: 0.5rem 0;
}

.list-wrap li img {
  width: 100%;
}

.col-wrap {
  width: 100%;
  padding: 0 1rem;
}

.col-left {
  width: 100%;
}

.col-right {
  width: 100%;
}

.news-under-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #4c4c4c;
}

.news-under-image {
  width: 40%;
}

.news-detail-image {
  max-height: 546px;
  overflow: hidden;
}

.news-bg01 a {
  background: url("../img/news-image01.jpg");
}

.news-bg02 a {
  background: url("../img/news-image02.jpg");
}

.news-bg03 a {
  background: url("../img/news-image03.jpg");
}

.news-bg04 a {
  background: url("../img/news-image04.jpg");
}

.news-bg05 a {
  background: url("../img/news-image05.jpg");
}

.news-under-wrap .news-bg01 a,
.news-under-wrap .news-bg02 a,
.news-under-wrap .news-bg03 a,
.news-under-wrap .news-bg04 a,
.news-under-wrap .news-bg05 a {
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(3/4*100%);
}

.news-detail-wrap .news-bg01 a,
.news-detail-wrap .news-bg02 a,
.news-detail-wrap .news-bg03 a,
.news-detail-wrap .news-bg04 a,
.news-detail-wrap .news-bg05 a {
  display: block;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 33.333% 0;
}

.news-inner-info {
  width: 59%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 0.5rem;
}

.news-inner-info a {
  color: #454545;
}

.days-text {
  font-size: 0.75rem;
}

.news-ico {
  padding: 0.25rem;
  background: #cdc095;
  color: #fff;
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

.news-pager {
  width: 100%;
  padding: 1rem 0 0;
}

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

.news-pager li {
  margin-bottom: 0.5rem;
}

.news-pager li a {
  display: block;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  margin: 0 0.25rem;
  border: 1px solid #4c4c4c;
  color: #4c4c4c;
}

.news-pager li a.pager-current {
  background: #4c4c4c;
  color: #fff;
}

.blog-under-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #fff;
  margin-bottom: 1rem;
}

.blog-under-image {
  width: 50%;
}

.blog-inner-info {
  width: 50%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.blog-bg01 a {
  background: url("../img/blog-image01.jpg");
}

.blog-bg02 a {
  background: url("../img/blog-image02.jpg");
}

.blog-bg03 a {
  background: url("../img/blog-image03.jpg");
}

.blog-bg04 a {
  background: url("../img/blog-image04.jpg");
}

.blog-bg01 a,
.blog-bg02 a,
.blog-bg03 a,
.blog-bg04 a {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(4/3*100%);
}

.blog-update {
  color: #4c4c4c;
  font-size: 0.75rem;
}

.blog-under-ttl {
  width: 100%;
  height: 3.125rem;
  overflow: hidden;
}

.blog-clamp {
  width: 100%;
  /* height: 4.25rem; */
  overflow: hidden;
  text-align: justify;
  background: #fff;
  position: relative;
  line-height: 1.4;
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;

}

.blog-detail {
  text-align: center;
}

.blog-detail a {
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 1rem;
  background: #cdc095;
  font-size: 0.75rem;
}

.blog-detail i {
  margin-left: 0.25rem;
}

.pick-under-wrap {
  width: 100%;
  position: relative;
}

.name-under-wrap {
  position: absolute;
  left: 1rem;
  bottom: 0.5rem;
  color: #fff;
}

.name-under-wrap li {
  text-shadow: 2px 2px 5px #454545;
}

.news-detail-info,
.blog-detail-info {
  padding: 0 0 1rem;
}

.news-detail-info:after,
.blog-detail-info:after {
  content: "";
  display: block;
  border-bottom: 1px solid #4c4c4c;
  border-top: 1px solid #4c4c4c;
  padding: 0 0 0.25rem;
  margin-top: 0.5rem;
}

.blog-detail-ttl {
  font-weight: 600;
}

.end-line {
  width: 100%;
  border-bottom: 1px solid #4c4c4c;
  border-top: 1px solid #4c4c4c;
  padding: 0 0 0.25rem;
  margin: 1rem 0;
}

.news-text-area,
.blog-text-area {
  padding: 1rem 0;
}

/* .news-text-area:after,
.blog-text-area:after {
  content: "";
  display: block;
  border-bottom: 1px solid #4c4c4c;
  border-top: 1px solid #4c4c4c;
  padding: 0 0 0.25rem;
  margin-top: 1rem;
} */
.news-btn {
  display: none;
}

.prev-btn {
  text-align: center;
}

.prev-btn a {
  display: inline-block;
  width: auto;
  padding: 1rem 2rem;
  border-radius: 8px;
  background: #F3F3F3;
  color: #333;
  border: 1px solid #CCC;
  text-align: center;
  text-decoration: none;
  font-weight: 100;
  line-height: 1;
}

.blog-detail-wrap {
  width: 100%;
}

.blog-detail-image {
  background: url("../img/blog-image01.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(4/3*100%);
}

.archive {
  width: 100%;
  padding: 1rem 0;
}

.archive h3 {
  background: #4c4c4c;
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 400;
}

.archive li {
  border: 1px solid #4c4c4c;
  border-top: 0;
  padding: 0.5rem 1rem;
  background: #fff;
}

.archive li a {
  display: block;
  text-decoration: none;
  color: #4c4c4c;
}

.archive li a i {
  margin-right: 0.5rem;
}

.access-container {
  width: 100%;
  padding: 1rem;
  background: #fff;
}

.access-box h3 {
  font-size: 1.25rem;
  /* color: #550009; */
  padding-bottom: 0.5rem;
  border-bottom: 1px solid;
}

.access-box address {
  padding: 0.5rem 0;
  font-style: normal;
}

.access-box p {
  padding-bottom: 0.5rem;
}

.access-box iframe {
  width: 100%;
  height: 380px;
}

footer {
  padding: 2rem 2rem 4rem;
  background: #181916;
  text-align: center;
  color: #fff;
  /* border-top:2px solid #4c4c4c; */
}

footer ul {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

footer li {
  margin: 0.5rem 1rem;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a i {
  color: #fff;
  font-size: 2rem;

}

.footer-logo {
  background: url("../img/visual-logo.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 16% 0; */
  /* 追記 ↓ */
  width: 100%;
  padding-top: calc(223/777*100%);
  margin: 0 auto 1rem;
  filter: drop-shadow(0px 0px 1px #fff);
  /* 追記 */
}

.sp-foot {
  width: 100%;
  height: auto;
  /* padding: 0.5rem; */
  background: #fffcf7;
  /* transform: translateY(100%); */
  transition: ease 0.5s;
  position: fixed;
  bottom: 0;
  opacity: 0;
  /* border-top:3px solid #fff; */
}

.sp-foot ul {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
}

.sp-foot li {
  width: 33.333%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /*    background: linear-gradient(0deg, #757575 0%, #E8E8E8 50%, #9E9E9E 90%);*/
  background: #fff;
  /* border-radius: 4px; */
}

.sp-foot li.web {
  background: #a0affac2;
}

.sp-foot li.line {
  background: #06c755;
}

/*.sp-foot li:nth-child(2) {
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
}*/

.sp-foot.double li {
  width: 50%;
}

.sp-foot li+li {
  border-left: 1px solid #CCC;
  /* margin-left: 1px; */
}

.sp-foot a {
  color: #000;
  font-size: 0.9rem;
  /* display: block; */
  text-decoration: none;
  min-height: 43px;
  line-height: 1;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sp-foot a i {
  padding-left: 0;
  color: #000;
  display: block;
  margin-bottom: 0.2rem;
}

.fixed-foot.sp-foot {
  transform: translateY(0);
  opacity: 1;
}

.more-btn {
  text-align: center;
}

.more-btn a {
  display: inline-block;
  width: auto;
  padding: 1rem 2rem;
  border-radius: 8px;
  background: #F3F3F3;
  color: #333;
  border: 1px solid #CCC;
  text-align: center;
  text-decoration: none;
  font-weight: 100;
  line-height: 1;

}

.more-btn i {
  margin-left: 1rem;
}

.sp {
  display: block;
}

.pc {
  display: none;
}

.bottom-link-wrap {
  width: 1168px;
  max-width: 100%;
  margin: auto;
  padding: 1rem;
}

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

.bottom-link-wrap li {
  padding: 0.3rem;
  max-width: 50%;
}

.bottom-link-wrap img {
  max-width: 100%;
}

@media screen and (min-width: 481px) and (max-width: 768px) {
  #nav-circle-bg {
    width: 1200px;
    right: -1200px;
  }
}

@media screen and (min-width: 769px) {

  .list-wrap dt,
  .list-wrap dd {
    font-size: 1.6rem;
  }

  .news-text-wrap {
    margin-bottom: 0;
  }

  .loading img {
    width: 20%;
    margin: auto;
  }

  header {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 67px;
  }

  .logo-area {
    position: static;
    top: inherit;
    left: inherit;
    z-index: 3;
  }

  #nav-toggle,
  #nav-circle-bg {
    display: none;
  }

  #nav {
    position: static;
    width: auto;
    height: auto;
    right: inherit;
  }

  #nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 0;
  }

  #nav ul li {
    padding: 0 0.5rem;
    border-bottom: 0;
    font-size: 1rem;
  }

  #nav ul li i {
    font-size: 1.5rem;
  }

  .mainvisual-bg {
    height: 80vh;
  }

  .mainvisual-bg:before {
    /*    background: url("../img/mainvisual.jpg");*/
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    height: 100%;
  }

  .mainvisual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    padding: 0 20%;
    /*    background: rgba(0,0,0,0.5);*/
  }

  .visual-logo {
    padding: 8% 0;
    filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff);
  }

  /* .under-bg:before {
    content: "";
    display:block;
    background: url("../img/mainvisual.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  } */
  .under-main {
    background: transparent;
    margin-top: 4rem;
    padding-top: 0;
  }

  .under-wrap {
    padding-top: 2rem;
    /*    background: rgba(224,224,224,0.9);*/
  }

  .job-box dl {
    display: flex;
  }

  .job-box dl dt {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .job-box dl dd {
    width: 60%;
  }

  .job-box dl dt+dd {
    border-top: 1px solid #454545;
    border-bottom: 1px solid #454545;
    border-left: 0;
  }

  .job-box dl+dl dt {
    border-top: 0;
  }

  .job-box dl+dl dd {
    border-top: 0;
  }

  .job-box dl dt:not(:last-of-type) {
    border-bottom-color: #999;
  }

  .recruit-mainvisual {
    padding-top: calc(386/900*62.5%);
    width: 62.5%;
    margin: 6rem auto 2rem;
  }

  .close-btn,
  .main-contact,
  .sp-foot,
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  .more-btn {
    width: 100%;
  }

  .main-contents {
    width: 100%;
  }

  .main-wrap01 {
    width: 100%;
    padding: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main-wrap02 {
    width: 100%;
    padding: 0 0.5rem 2rem;
  }

  .main-wrap03 {
    width: 100%;
    padding: 0 1rem;
  }

  .pickup-container {
    width: 30%;
  }

  .news-container {
    width: 68%;
  }

  .news-wrap {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .news-box {
    width: 49%;
    margin-bottom: 1rem;
  }

  .staff-box {
    width: 19%;
    padding: 0.5rem;
  }

  .todays-wrap {
    /*
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("../img/todays-bg.jpg");
*/
  }

  .todays-wrap .more-btn {
    width: 50%;
    margin: 0 auto;
  }

  .blog-container {
    width: 60%;
    padding: 0 1rem;
  }

  .blog-text {
    width: 85%;
    padding: 1rem;
  }

  .first-box {
    padding: 0 0 1rem;
  }

  .blog-image01,
  .blog-image02,
  .blog-image03 {
    width: 15%;
  }

  .twitter-container {
    width: 40%;
    padding: 0 1rem;
  }

  .twitter-wrap {
    height: 550px;
    padding: 0;
  }

  .map-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .map-box iframe {
    width: 50%;
  }

  .map-text {
    width: 50%;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.5rem;
  }

  .map-text p {
    text-align: left;
  }

  .link-bnr-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 1rem;
  }

  .reserve-bnr,
  .qa-bnr,
  .recruit-bnr {
    width: 30%;
    padding-top: calc(10/281*30%);
    background-repeat: no-repeat;

  }

  .concept-bg {
    background-size: 10%, 10%, 10%, 10%;
    padding: 3rem 2rem;
  }

  .concept-wrap {
    padding: 0 1rem 3rem;
    max-width: 1168px;
    margin: 0 auto;
  }

  .concept-wrap p {
    font-size: 1rem;
  }

  .schedule-wrap {
    width: 100%;
    padding: 0 1rem 2rem;
  }

  .weekly-schedule {
    width: 100%;
    padding: 0.5rem 0;
    background: #cdc095;
  }

  .weekly-schedule ul {
    justify-content: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 0.25rem 0;
  }

  .weekly-schedule ul:before {
    content: "";
    width: 100%;
    display: block;
    border-top: 1px solid #fff;
  }

  .weekly-schedule ul:after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: 1px solid #fff;
  }

  .weekly-schedule li {
    background: transparent;
  }

  .weekly-schedule li:first-child {
    width: auto;
    margin: 0;
  }

  .weekly-schedule li:nth-child(n+2) {
    width: auto;
    margin: 0;
  }

  .weekly-schedule li a {
    border: 0;
    padding: 1rem;
    color: #fff;
  }

  .weekly-schedule li a.current {
    background: transparent;
    color: #fff;
    text-decoration: underline;
  }

  .filter-wrap {
    padding: 1rem 2rem;
  }

  .filter-wrap select {
    order: 1;
    width: 10rem;
    background-size: 2.5rem 2.6875rem;
    margin-right: 1rem;
  }

  .filter-inner {
    order: 2;
    width: 22rem;
    margin-top: 0;
  }

  .filter-wrap .filter-reset {
    order: 3;
    width: 6rem;
  }

  .profile-wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1rem 2rem;
  }

  .tab-wrap {
    width: 35%;
  }

  .tab-label {
    height: 3rem;
    line-height: 3rem;
  }

  .profile-wrap .ico-area {
    top: 3.5rem;
    bottom: unset;
  }

  .detail-wrap {
    width: 65%;
    padding: 0.5rem 1rem 0;
    display: flex;
    flex-direction: column;
  }

  .shame-btn img {
    width: 375px;
  }

  .detail-tbl {
    display: table;
    table-layout: fixed;
  }

  .detail-tbl thead {
    display: table-header-group;
  }

  .detail-tbl tbody {
    display: table-row-group;
  }

  .detail-tbl tr {
    display: table-row;
  }

  .detail-tbl tr th,
  .detail-tbl tr td {
    display: table-cell;
  }

  .detail-tbl tr td {
    padding: 0.5rem 2rem;
    line-height: 1;
    vertical-align: middle;
  }

  .form-caution {
    font-size: 1rem;
  }

  .reserve .pc-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 10rem;
  }

  .reserve .radio-box {
    display: flex;
    justify-content: center;
    padding: 0.5rem 10rem;
  }

  .reserve .radio-box p {
    width: 50%;
    text-align: left;
  }

  .reserve input[type="radio"]+label {
    margin-right: 0;
    width: 16.7%;
  }

  .reserve>div:first-child {
    padding-top: 4rem;
  }

  .reserve>div:nth-child(12) {
    padding: 0.5rem 10rem 4rem;
  }

  .reserve input[type="text"],
  .reserve input[type="number"],
  .reserve input[type="tel"],
  .reserve input[type="email"],
  .reserve input[type="date"],
  .reserve input[type="time"],
  .reserve select,
  .reserve textarea {
    width: 50%;
  }

  img.ui-datepicker-trigger {
    right: 10rem;
  }

  .reserve input[type="time"] {
    padding: 0.5rem;
    /* background-image: none; */
  }

  .recruit-main {
    padding-top: 0.5rem;
  }

  .recruit-ttl h2 {
    font-size: 1.5rem;
  }

  .accordion {
    padding: 2rem 0;
    width: 100%;
  }

  .list-wrap {
    width: 100%;
    padding: 0 1rem 1rem;
  }

  .list-wrap ul {
    width: 100%;
    /* display: flex;
    justify-content: space-between; */
  }

  .list-wrap li {
    width: 50%;
    padding: 1rem 0 0;
  }

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

  .col-left {
    width: 75%;
    padding: 1rem;
  }

  .col-right {
    width: 25%;
    padding: 0 1rem;
  }

  .news-under-wrap {
    padding: 1rem;
    margin-bottom: 1rem;
    /*    background: #fff;*/
    /*    border-bottom: 0;*/
    position: relative;
  }

  .news-inner-info {
    padding: 0.5rem;
    overflow: hidden;
  }

  .news-inner-ttl {
    margin: 1rem 0 1.5rem;
  }

  .news-inner-ttl a {
    font-weight: 600;
    text-decoration: none;
  }

  .clamp-text3 {
    max-height: 1.5rem;
    background: transparent;
    margin: 0.5rem 0;
    font-size: 1.25rem
  }

  .clamp-text3:before {
    display: none;
  }

  .news-sp-none {
    display: block;
    width: 100%;
    /* max-height: 3rem; */
    overflow: hidden;
    text-align: justify;
    background: #fffcf7;
    position: relative;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  /* .news-sp-none:before,
  .news-sp-none:after {
    position: absolute;
    background: #fffcf7;
  }
  .news-sp-none:before {
    content:"…";
    bottom: 0;
    right: 0;
  }
  .news-sp-none:after {
    content: "";
    width: 100%;
    height: 100%;
  } */
  .news-sp-none a {
    color: #454545;
  }

  .clamp-text3:after {
    display: none;
  }

  .news-btn {
    display: block;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .news-btn a {
    text-decoration: none;
    color: #fff;
    background: #cdc095;
    padding: 0.25rem;
    font-size: 0.75rem;
  }

  .news-btn i {
    margin-right: 0.25rem;
  }

  .blog-under-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .blog-under-wrap {
    width: 49%;
  }

  .blog-detail-wrap {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .blog-detail-info {
    width: 70%;
    padding-left: 1.5rem;
  }

  .blog-detail-info:after {
    display: none;
  }

  .blog-text-area {
    padding: 0 0 1rem;
  }

  .blog-text-area:after {
    display: none;
  }

  .blog-detail-update:after {
    content: "";
    display: block;
    border-bottom: 1px solid #4c4c4c;
    border-top: 1px solid #4c4c4c;
    padding: 0 0 0.25rem;
    margin-top: 0.5rem;
  }

  .blog-detail-ttl {
    margin: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
  }

  .blog-detail-image {
    width: 30%;
    padding: 20% 0;
  }

  .recruit-container {
    width: 100%;
    padding: 2rem 0;
  }

  .recruit-wrap {
    width: 100%;
    padding: 0 1rem 1rem;
  }

  .shop-intro {
    padding: 1rem;
  }

  .recruit-info-ttl {
    font-size: 1.5rem;
  }

  .recruit-col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .recruit-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 2;
  }

  .recruit-image01,
  .recruit-image02 {
    width: 50%;
    padding: 1rem;
  }

  .top-line:before {
    margin: 1.5rem auto 1rem;
  }

  .recruit-contact {
    width: 100%;
    padding: 1rem 2rem;
  }

  .salary-example {
    padding: 0 2rem;
  }

  .salary-example ul,
  .recruit-contact ul {
    display: flex;
    justify-content: space-between;
  }

  .salary-example li,
  .recruit-contact li {
    width: 30%;
    margin: 1rem 0;
  }

  .recruit-contact p {
    padding-bottom: 0;
  }

  footer {
    padding: 2rem 40% 2rem;
  }

  .modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 199;
  }

  .modal__bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
  }

  .modal__content {
    background: #fff;
    left: 50%;
    padding: 1rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    text-align: center;
  }

  .modal__content .text-bold {
    font-size: 2.25rem;
    font-weight: 600;
  }

  .modal__content>div {
    border: 1px solid #454545;
    padding: 1rem;
  }

  .modal__content>div p:nth-child(1) {
    font-size: 1.25rem;
    font-weight: 600;
  }

  a.js-modal-close {
    position: static;
    background: #000;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    width: 25%;
    margin: 1rem auto 0;
    text-decoration: none;
  }

  .access-box iframe {
    height: 480px;
  }

  #nav a {
    background: transparent;
  }
}

@media screen and (min-width: 1024px) {}

@media screen and (min-width: 1200px) {
  #nav ul li {
    padding: 0 1rem;
  }

  .main-wrap01 {
    width: 1168px;
    margin: 0 auto;
  }

  .main-wrap02 {
    width: 1168px;
    margin: 0 auto;
  }

  .main-wrap03 {
    width: 1168px;
    margin: 0 auto;
  }

  .schedule-wrap {
    width: 1168px;
    margin: 0 auto;
    padding: 0 0 2rem;
  }

  .filter-wrap {
    width: 1168px;
    margin: 0 auto;
    padding: 1rem;
  }

  .system-wrap {
    width: 1168px;
    margin: 0 auto;
  }

  .recruit-wrap {
    width: 1168px;
    margin: 0 auto;
  }

  .col-wrap {
    width: 1168px;
    margin: 0 auto;
  }
}

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


@media screen and (min-width: 1025px) {}


.news-box {
  box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 20%);
}

.ico01,
.ico04,
.ico07,
.ico010,
.ico013 {
  background: #eb3b54 !important;
}

.ico02,
.ico05,
.ico08,
.ico011 {
  background: #3b8aeb !important;
}

.ico03,
.ico06,
.ico09,
.ico012 {
  background: #40c727 !important;
}


.credit-bnr {
  display: flex;
  align-items: center;

}

.list-wrap .credit-bnr img {
  width: 20%;
}

input[type="time" i]::-webkit-calendar-picker-indicator {
  opacity: 0;
}


.main-wrap04 {
  background: #ebe8e2;
}

.material-symbols-outlined {
  vertical-align: middle;
  font-size: 20px !important;
  margin-right: 0.2rem;
}

#contenttop ul li+li {
  line-height: 1;
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.staff-image {
  position: relative;
  z-index: 0;
}

.access-wrap {
  padding: 1rem;
}

/*--------------------
Shame
--------------------*/
.shame-wrap {
  width: 100%;
  margin: 0 auto 2rem;
}

.shame-area>div:last-child {
  margin-top: 2rem;
}

.shame-area {
  max-height: 350px;
  overflow: auto;
}

.shame-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.shame-box+.shame-box {
  border-top: 1px solid #7c6105;
  padding-top: 1rem;
  margin-top: 1rem;
}

.shame-text {
  width: 76%;
  text-align: left;
  line-height: 1.4;
  overflow: hidden;
}

.shame-text p {
  font-size: 0.75rem;
}

.shame-text p a {
  color: #454545;
}

.shame-image {
  width: 20%;
  border: none !important;
}

.shame-image a {
  background-size: cover;
  background-position: center;
  display: block;



  width: 100%;
  padding-top: calc(4/3*100%);
  border: 1px solid #454545;
}

.shame .topics-image a {
  padding-top: calc(4/3*100%);
}

.topics-detail-iamge.shame span {
  padding-top: calc(4/3*100%);
}

.shame-area.prof .shame-image {
  width: 20%;
}

.shame-area.prof .shame-text {
  width: 76%;
  overflow: unset;
}

.shame-area.prof .shame-text p {
  font-size: 1rem;
}

.shame-box .clamp-text2 {
  height: unset;
}

.shame-area.grid {
  max-height: unset;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.shame-area.grid .shame-box+.shame-box {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.shame-area.grid .shame-box {
  width: 32%;
  display: block;
  position: relative;
  margin-bottom: 1rem;
}

.shame-area.grid .shame-box .shame-text {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #ffffffb3;
  color: #000;
  line-height: 1.5rem;
  padding: 0.25rem;
}

.shame-area.grid .shame-box .shame-text p {
  text-align: right;
  font-weight: bold;
  font-size: 0.75rem;
}

.shame-area.grid .shame-box .shame-text .clamp-text2 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1rem;
  height: 1rem;
}

.shame-area.grid .shame-box .shame-text a {
  color: #000;

}

.shame-area.grid .shame-box .shame-image {
  width: 100%;
}

.shame-area.grid .shame-box .shame-image a {}

.shamebtn-area {}

.sns-btn {}

.sns-btn a {
  display: block;
  padding: 1rem;
  background: #fe7e8b;
  /* text-shadow: 1px 1px 3px rgb(0 0 0 / 30%); */
  color: #fff;
  border-radius: 50px;
  width: 100%;
  max-width: 700px;
  margin: 1rem auto 0;
  text-align: center;
  /* text-shadow: 1px 1px 1px rgb(0 0 0 / 55%); */
}

.topics.shame {
  width: 100%;
  margin-bottom: 1rem;
  /* box-shadow: 0 2px 2px -1px rgb(0 0 0 / 10%); */
  display: flex;
  justify-content: space-between;
}

.topics.shame .topics-info {
  width: 65%;
  font-size: 1.2rem;
  max-height: 2.3rem;
}

.topics.shame .topics-image {
  width: 30%;
  align-items: center;
}

.topics.shame .new-topics {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
}

.shame-box a {
  color: #009a9a;
  word-break: break-all;
}

.topics.shame .topics-ttl {
  font-size: 1rem;
}

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

  .shame-box .clamp-text2,
  .topics.shame .topics-ttl {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 801px) {
  .shame .topics {
    width: 32%;
  }

  .topics.shame .topics-info {
    width: 78%;
    font-size: 1.2rem;
    max-height: 2.3rem;
  }

  .topics.shame .topics-image {
    width: 20%;
  }

  /*--------------------
  Shame
  --------------------*/
  .shame-wrap {
    width: 100%;
    margin: 0 0 2rem;
  }

  .shame-text {
    width: calc(80% - 1rem);
  }

  .shame-area.grid .shame-box .shame-text p {
    font-size: 1rem;
  }

  .shame-area.grid .shame-box .shame-text {
    padding: 0.5rem;
  }
}

/******************************
ãƒ©ãƒ³ã‚­ãƒ³ã‚°
******************************/

.clamp-text2 {
  width: 100%;
  height: 3rem;
  overflow: hidden;
  text-align: justify;
  position: relative;
  margin-top: auto;
  line-height: 1.6rem;
}