@charset "UTF-8";
@media screen and (max-width: 560px) {
  .is-phone {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

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

body {
  font-size: 16px;
  color: #222;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6875;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
}

a {
  color: #272727;
  text-decoration: none;
  cursor: pointer;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.util-ttl {
  font-family: garamond-premier-pro-display, serif;
  font-weight: 400;
  font-style: normal;

  font-size: 30px;
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1.25;
}
@media screen and (max-width: 800px) {
  .util-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .util-ttl {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}
.page-title {
  font-family: garamond-premier-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .util-linkBox {
    text-align: center;
  }
}

.util-link {
  line-height: 63px;
  transition: all ease 0.35s;
  background-color: #e8e8e8;
  margin: 0 auto;
  max-width: 230px;
  color: #000;
  display: block;
  font-family: garamond-premier-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  position: relative;
  text-align: center;
  /* -webkit-transition: background-color 0.2s, color 0.2s;
  -webkit-transition: background-color 0.4s, color 0.2s;
  transition: background-color 0.4s, color 0.2s; */
  border-radius: 32px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;

  box-shadow: 1px 2px 3px 0 rgba (0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
  .util-link {
    padding: 11px 0px;
    font-size: 1rem;
    line-height: 40px;
    max-width: 200px;
    padding: 7px 0;
  }
}
.util-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #b6a389;
  border-right: solid 2px #b6a389;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 49%;
  right: 10%;
  margin-top: -4px;
}
.util-link:hover {
  opacity: 0.7;
}
.util-link:hover::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #b6a389;
  border-right: solid 2px #b6a389;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 49%;
  right: 10%;
  margin-top: -4px;
}

/* オンライン新規登録リンクボタン */
.util-link-online {
  max-width: 600px;
  color: #fff;
  display: block;
  font-family: garamond-premier-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  -webkit-transition: background-color 0.2s, color 0.2s;
  -webkit-transition: background-color 0.4s, color 0.2s;
  transition: background-color 0.4s, color 0.2s;
  margin: 0 auto;
  padding: 16px 0;
  background: #a2ae89;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  border-radius: 100vh;
}
.util-link-online:hover {
  background: #90a268;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .util-link-online {
    font-size: 16px;
    max-width: 300px;
  }
}
/* １本線白 */
.title-solid {
  display: flex;
  align-items: center;
}
.title-solid-white {
  display: flex;
  align-items: center;
}
.title-solid-white:before,
.title-solid-white:after {
  border-top: 1px solid #fff;
  content: "";
  flex-grow: 1;
}
/* １本線 */
.title-solid:before,
.title-solid:after {
  border-top: 1px solid #111;
  content: "";
  flex-grow: 1;
}
.title-solid:before {
  margin-right: 0.4em;
}
.title-solid:after {
  margin-left: 0.4em;
}
/* ２本線 */
.title-solid-double {
  display: flex;
  align-items: center;
}
.title-solid-double:before,
.title-solid-double:after {
  border-top: 3px double #111;
  content: "";
  flex-grow: 1;
}
.title-solid-double:before {
  margin-right: 0.4em;
}
.title-solid-double:after {
  margin-left: 0.4em;
}

.catalog-link-box {
  text-align: center;
}
.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
}
a.catalog-btn {
  border: 1px solid #000;
}
a.btn-border:hover {
  color: #fff;
  background: #000;
}

/* header
---------------------------- */
.header {
  background: #fff;
  border-bottom: 1px solid #eeeeee;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .header {
    height: 70px;
  }
}
.header_logo img {
  width: 100%;
}
.header .drawer-hamburger-icon {
  background-color: #1a1a1a;
}
.drawer--right .header .drawer-hamburger {
  right: 3px !important;
}

.drawer-open .header .drawer-hamburger-icon {
  background-color: transparent;
}

.header .drawer-hamburger-icon::before,
.header .drawer-hamburger-icon::after {
  background-color: #000;
}

.header_inner {
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .header_inner {
    height: 70px;
  }
}

.header_logo {
  width: 180px;
  padding: 8.8px 0;
}
@media screen and (min-width: 768px) {
  .header_logo {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .header_logo {
    margin-top: 0;
  }
}

.header_nav {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .header_nav {
    top: 70px !important;
    background: #1a1a1a;
    padding: 24px 0 !important;
  }
}

.header_nav_list {
  color: #111111;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .header_nav_list {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .header_nav_link + .header_nav_link {
    margin-left: 40px;
  }
}

.header_nav_link {
  display: block;
  color: #000;
  font-weight: bold;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  position: relative;
  font-family: garamond-premier-pro-caption, serif;
  font-weight: 400;
  font-style: normal;
}
.header_nav_link a {
  color: #000;
}

@media screen and (min-width: 768px) {
  .header_nav_link {
    padding: 0.5em 0;
  }
  .header_nav_link:after {
    background: #111;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    width: 100%;
  }
  .header_nav_link:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@media screen and (max-width: 767px) {
  .header_nav_link {
    font-size: 18px;
    text-align: right;
    padding: 0 15px;
    height: 60px;
    line-height: 10px;
  }
  .header_nav_link a {
    color: #fff;
    font-size: 1.2em;
  }
}

@media screen and (min-width: 768px) {
  .header-sns-instagram {
    margin-left: 20px;
  }
}

@media screen and (min-width: 768px) {
  .header-sns-facebook {
    margin-left: 10px;
  }
}

/* -----TOP---------- */

.slider-top-img1 {
  background-image: url(../img/visial2.jpg);
  background-size: cover;
  background-position: center;
  height: calc(100vh - 33px);
  background-repeat: no-repeat;
}
.slider-top-img2 {
  background-image: url(../img/top1.jpg);
  background-size: cover;
  background-position: top;
  height: calc(100vh - 33px);
  background-repeat: no-repeat;
}

/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .slider-top-img1 {
    height: 60vh;
  }
  .slider-top-img2 {
    height: 60vh;
  }
  .slider-top-img3 {
    height: 60vh;
  }
}
@media screen and (max-width: 800px) {
  .slider-top-img1 {
    height: 50vh;
  }
  .slider-top-img2 {
    height: 50vh;
  }
  .slider-top-img3 {
    height: 50vh;
  }
}

.top-picture-link {
  position: relative;
}
.top_news_link {
  z-index: 300;
}
@media screen and (max-width: 767px) {
  .swiper-slide {
    width: 100%;
    height: 50vh;
  }
}

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

.top-sns-content {
  position: absolute;
  top: 68%;
  right: 0.2%;
  z-index: 800;
  position: fixed;
}

.top-sns-content img {
  width: 40px;
}

.instagram {
  width: 40px;
  margin-bottom: 10px;
}

.facebook {
  width: 40px;
}

.reserve {
  position: fixed;
  top: 60%;
  right: 0;
  z-index: 400;
  margin-top: -34px;
  margin-right: -78px;
  transform: translateY(50%);
  transform: rotate(90deg);
  text-align: center;
  width: 200px;
  height: 42px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.3em;
  display: inline-block;
  outline: none;
}

.reserve a {
  border: solid 2px #111;
  color: #111;
  border-top: none;
  line-height: 42px;
  width: 100%;
}

.reserve a:hover {
  background-color: #111;
  color: #fff;
}
@media screen and (max-width: 899px) {
  .reserve {
    top: 60%;
  }
  .reserve a {
    line-height: 40px;
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .reserve {
    top: 40%;
    font-size: 10px;
  }
  .reserve a {
    line-height: 40px;
    width: 100px;
  }
}
.cssbtn {
  display: inline-block;
  text-align: center;
  outline: none;
  box-sizing: border-box;
}
.cssbtn,
.cssbtn::before,
.cssbtn::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/* -----Info---------- */
.info_content {
  margin: 30px auto 20px;
  background: #e2e2e2;
}
.info_content_inner {
  width: 100%;
  margin: 0 auto;

  max-width: 1020px;
}
@media screen and (max-width: 600px) {
  .info_content {
    width: 80%;
    margin: 20px auto 10px;
    padding: 5px;
  }
}
.info-list-item {
  padding: 6px 80px;
  display: flex;

  color: #111111;
}
@media screen and (max-width: 767px) {
  .info-list-item {
    padding: 3px 5px;
    line-height: 2em;

    color: #111111;
  }
}
.info-list-time {
  margin-right: 30px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .info-list-time {
    margin-right: 10px;
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
.info-list-title {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .info-list-title {
    letter-spacing: 0.1em;
    font-size: 14px;
  }
}
/* -----News--------- */

.news {
  position: static;
  padding: 30px 0;
  margin: 150px auto;
}

@media screen and (min-width: 768px) {
  .news {
    padding: 60px 30px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .news {
    margin: 10px;
    border: none;
    padding: 20px;
  }
}

.news-inner {
  background: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: distribute;
    justify-content: space-between;
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .news-inner {
    padding: 36px 0 38;
    width: 100%;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .news_inner_items {
    padding: 30px 0;
  }
}

.news_picture_img {
  box-shadow: 1.6px 1.4px 4px 0px rgba(162, 162, 162, 0.15);
}
.news_picture_img img {
  object-position: center;
}

/* 3つ目のコンテンツを左寄せにする */
@media screen and (min-width: 768px) {
  .news_inner::after {
    content: "";
    display: block;
    width: 30.333%; /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
  }
  .news_picture {
    width: 32.333%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .news_picture img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  /* img拡大 transform */

  .news_picture_img img {
    transition-duration: 0.3s; /*変化に掛かる時間*/
  }
  .news_picture_img img:hover {
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
    opacity: 0.7;
  }
}
.news_picture img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.news_picture_img {
  overflow: hidden; /*拡大時にはみ出た部分を隠す*/
}

@media screen and (max-width: 767px) {
  .news_picture {
    margin-top: 20px;
    width: 100%;
    padding: 0;
  }
}

.news_item_body {
  margin: 20px 10px 10px;
}

.news_item_title {
  font-size: 1.2em;
  margin-top: 5px;
  color: #272727;
}
@media screen and (max-width: 767px) {
  .news_item_title {
    font-size: 1em;
  }
}
.news_item_date {
  color: #a98e3f;
  line-height: 0.9;
  margin-top: 10px;
  font-family: "Noto Sans", sans-serif;
}

.news-tel {
  display: inline-block;
  color: #272727;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .news-tel {
    margin-left: 5px;
  }
}

.news_inner_news {
  display: flex;
}
/* news固定ページ */
.news-page-content {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .news-page-content {
    margin-top: 65px;
  }
}

.new {
  font-size: 12px;
  line-height: 1;
  text-align: left;
  padding: 4px 16px;
  border: solid 1px #22819e;
  letter-spacing: 0.1em;
  margin-left: 3px;
  color: #22819e;
}
/* -----Refa--------- */

.pick-up-item {
  background: #ededed;
}
/* pc/共通 */
@media screen and (min-width: 768px) {
  .pick-up-item {
    margin-bottom: 120px;
    padding: 60px 0;
  }
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .pick-up-item {
    margin-bottom: 120px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .pick-up-item {
    margin-bottom: 120px;
    padding: 60px 0;
  }
}
.pickup-item-text {
  text-align: center;
  margin-bottom: 58px;
  color: #222;
}
@media screen and (max-width: 800px) {
  .pickup-item-text {
    text-align: center;
    margin-bottom: 58px;
  }
}
@media screen and (max-width: 767px) {
  .pickup-item-text {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.pickup-items {
  display: flex;
  justify-content: center;
  flex: 1;
  margin: 60px auto;
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .pickup-items {
    display: flex;
    margin: 60px auto;
  }
}
@media screen and (max-width: 767px) {
  .pickup-items {
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .pick-up-item {
    margin: 0;
  }
}
.pickup-item-list {
  padding: 20px;
  width: 500px;
}
@media screen and (max-width: 800px) {
  .pickup-item-list {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .pickup-item-list {
    width: 100%;
  }
}

.pickup-item-list iframe {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .pickup-item-list iframe {
    height: 100%;
  }
}

/* single.php css
------------------------- */

.single_content {
  margin: 160px auto;
  padding: 0 100px;
}
.single_content img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 899px) {
  .single_content {
    margin: 130px auto;
  }
}
@media screen and (max-width: 767px) {
  .single_content {
    padding: 0 20px;
    margin: 110px auto;
  }
}

.entry_title {
  line-height: 1.6;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .entry_title {
    font-size: 18px;

    margin: 20px 0;
  }
}

.entry-meta {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 899px) {
  .entry-meta {
    margin-bottom: 40px;
  }
}
.post_list {
  text-align: right;
}

.article-img {
  text-align: center;
  margin-bottom: 60px;
}
.article-img img {
  width: 100%;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .article-img img {
    width: 100%;

    max-height: 360px;
  }
}
@media screen and (max-width: 767px) {
  .article-img {
    text-align: center;
    margin-bottom: 30px;
  }
  .article-img img {
    width: 100%;
    max-width: 400px;
    max-height: 200px;
  }
}

a.post_list {
  padding: 5px 15px;
}
img.page-next {
  width: 60px;
  vertical-align: middle;
  padding-right: 10px;
}
.single-prev {
  margin: 60px 0;
}
@media screen and (max-width: 767px) {
  .entry_text {
    font-size: 0.8em;
  }
}

/* catalog
---------------------------- */
.section-catalog {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .section-catalog {
    padding: 50px 20px;
    margin-bottom: 10px;
  }
}

.slider2-img img {
  height: auto;
  width: 100%;
}
.slider2-img-slide {
  height: 33vh;
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 1200px) {
  .slider2-img-slide {
    height: 33vh;
  }
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .slider2-img-slide {
    height: 200px;
  }
}
/* スマホ縦 */
@media screen and (max-width: 600px) {
  .slider2-img-slide {
    width: 150px;
    height: 12vh;
  }
}

.slider2 {
  margin-bottom: 40px;
}
/* スマホ縦 */
@media screen and (max-width: 600px) {
  .slider2 {
    margin-bottom: 20px;
  }
}
/* 店舗情報
---------------------------- */
.shop-container {
  background: #f6f6f6;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .shop {
    padding: 30px;
  }
}

@media screen and (min-width: 768px) {
  .shop {
    max-width: 1200px;
    padding: 120px 0;
  }
}

@media screen and (max-width: 767px) {
  .shop_inner_items {
    padding: 30px 0;
  }
}

@media screen and (min-width: 768px) {
  .shop_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 80px 48px 50px;
  }
}
.shop_picture_img {
  border-radius: 5px;
  box-shadow: 4px 12px 40px 6px rgba(0, 0, 0, 0.09);
}
.shop_picture_img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .shop_picture {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
  .shop_picture img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 0%;
    object-position: 50% 0%;
  }

  /* img拡大 transform */
  .shop_picture_img {
    overflow: hidden; /*拡大時にはみ出た部分を隠す*/
  }
  .shop_picture_img img {
    transition-duration: 0.3s; /*変化に掛かる時間*/
  }
  .shop_picture_img img:hover {
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
    opacity: 0.7;
  }
}
.shop_item_body {
  margin: 30px 20px 20px;
}

@media screen and (max-width: 767px) {
  .shop_item_body {
    text-align: center;
  }
}

.shop_item_title {
  font-size: 1.2em;
  border-bottom: 1px solid #ab9b65;
}

.shop_item_cost {
  color: #989898;
  line-height: 0.9;
  margin-top: 10px;
  font-size: 0.8em;
}

.shop-item-margin {
  display: inline-block;
  margin-left: 15px;
  color: #272727;
}

@media screen and (max-width: 767px) {
  .shop-item-margin {
    margin-left: 5px;
  }
}
.shop-list-title img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .shop-list-title img {
    width: 50px;
  }
}

.staff_slider {
  margin: 20px 30px;
}
img.swiper_staff {
  width: 300px;
}
/* staff.css
------------------------- */
.staff-ttl {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .staff-ttl {
    margin-top: 100px;
  }
}
.staff-shop {
  font-size: 2em;
  letter-spacing: 0.3em;
  margin-bottom: 30px;
  position: relative;

  text-align: left;
}
/*以下で線を表示*/
.staff-shop::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /*線の上下位置*/
  display: inline-block;
  width: 50px; /*線の長さ*/
  height: 2px; /*線の太さ*/

  background-color: #b3a587; /*線の色*/
}
@media screen and (max-width: 767px) {
  .staff-shop {
    font-size: 1.2em;
  }
}
.section-staff-container {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .section-staff-container {
    margin-top: 80px;
  }
}
.staff-container-items {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px auto 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .staff-container-items {
    justify-content: space-between;
    margin-top: 30px;
  }
  .staff-container-items::after {
    display: block;
    content: "";
    width: calc(100% / 2 - 8px);
  }
}
/* pc・タブレット */
.staff_picture {
  overflow: hidden;
  position: relative;
  width: calc((100% / 5) - 16px);
  margin: 32px 8px;
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .staff_picture {
    width: calc((100% / 3) - 16px);
    margin: 0 8px;
  }
}
/* スマホ縦 */
@media screen and (max-width: 600px) {
  .staff_picture {
    width: calc(100% / 2 - 8px);
    margin: 0 auto;
  }
}

.staff_picture img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
  overflow: hidden;
}

/* img拡大 transform */
.staff_picture_img {
  overflow: hidden; /*拡大時にはみ出た部分を隠す*/
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 1080px) {
  .staff_picture_img {
    height: 200px;
  }
}
.staff_picture_img img {
  transition-duration: 0.3s; /*変化に掛かる時間*/
}
.staff_picture_img img:hover {
  transform: scale(1.1); /*画像の拡大率*/
  transition-duration: 0.3s; /*変化に掛かる時間*/
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .staff_picture_img {
    height: 200px;
  }
}

.staff_item_body {
  margin: 20px 0 10px;
}

.staff_item_title {
  font-size: 1.1em;
  margin-top: 5px;
  font-style: normal;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .staff_item_title {
    font-size: 1em;
    margin-top: 3px;
  }
}

.staff_item_cost {
  color: #b3a587;
  line-height: 0.9;
  margin-top: 10px;
  font-size: 1em;
}

.staff-tel {
  display: inline-block;
  color: #272727;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .staff-tel {
    margin-left: 5px;
  }
}
/* namme.instagram */
.instagram-staff-icon {
  display: inline-block;
}
.instagram-staff-icon img {
  width: 25px;
  height: 25px;
}
.staff_item_meta {
  display: flex;
  justify-content: space-between;
}

/* ------------------------- 
 style
------------------------- */

@media screen and (min-width: 768px) {
  .style {
    max-width: 980px;
    padding: 40px 20px;
    margin: 160px auto 100px;
  }
}
@media screen and (max-width: 767px) {
  .style {
    margin: 110px auto 100px;
  }
}

@media screen and (max-width: 767px) {
  .style_inner_items {
    padding: 30px 0;
  }
}

.style-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  /* justify-content: space-between; */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .style-contents {
    padding: 20px;
    margin-top: 50px;
  }
}

/* スマホ縦 */
@media screen and (max-width: 600px) {
  .style_picture {
    padding: 0;
  }
}

.style_picture img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}
@media screen and (max-width: 767px) {
  .style_picture img {
    height: 200px;
  }
}

@media screen and (min-width: 768px) {
  .style_picture {
    overflow: hidden;
    position: relative;
    width: calc((100% / 3) - 16px);
    margin: 8px;
  }

  /* img拡大 transform */
  .style_picture_img {
    overflow: hidden; /*拡大時にはみ出た部分を隠す*/
  }
  .style_picture_img img {
    transition-duration: 0.3s; /*変化に掛かる時間*/
  }
  .style_picture_img img:hover {
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .style_picture {
    margin-top: 20px;
  }
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .style_picture {
    width: calc((100% / 3) - 16px);
    margin: 32px 8px;
  }
}
/* スマホ縦 */
@media screen and (max-width: 600px) {
  .style_picture {
    width: calc((100% / 2) - 10px);
    margin: 12px 4px;
  }
}

/* ---------styleモーダル--------- */

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  cursor: pointer;
}
.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content {
  left: 50%;
  padding: 60px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  margin: 30px auto;
}
/* スマホ縦 */
@media screen and (max-width: 600px) {
  .modal__content {
    padding: 0;
  }
}

.modal__content img {
  width: 500px;
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .modal__content img {
    width: 100%;
  }
}
.modal-close {
  display: inline-block;
  margin-top: 30px;
  letter-spacing: 0.2em;
  color: #fff;
}
/* archive-catalog ページネーション */
.catalog-pager {
  display: block;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
/* price
---------------------------- */
.price {
  margin: 160px auto 100px;
}

@media screen and (min-width: 768px) {
  .price {
    padding: 50px 30px 50px;
  }
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .price {
    padding: 30px 120px 50px;
    margin-top: 95px;
  }
}
@media screen and (max-width: 767px) {
  .price {
    margin: 60px auto;
    padding: 30px 40px 20px;
  }
}

.content {
  max-width: 1000px;
  margin: 75px auto 50px;
}

@media screen and (max-width: 767px) {
  .content {
    margin: 20px auto 40px;
  }
}

.row {
  width: 100%;
  margin-top: 20px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}

@media screen and (min-width: 768px) {
  .row + .row {
    margin-top: 50px;
  }
  .row .list + .list {
    margin-left: 60px;
  }
}

.row .list {
  width: 100%;
}
/* タブレット縦・スマホ横 */
@media screen and (max-width: 900px) {
  .row .list + .list {
    margin-left: 0;
  }
  .row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

strong {
  font-weight: bold;
  font-size: 1.4em;
  font-family: garamond-premier-pro-display, serif;
}

.price-small-font {
  font-size: 12px;
}

.priceText {
  font-size: 13px;
  float: right;
}

dd {
  margin-top: 5px;
}

dd li {
  padding: 10px 0;
  border-bottom: 1px dashed #d3d3d3;
}

dd li:last-child {
  border: none;
}
.price-nagaoka {
  font-size: 13px;
}
/* online store
---------------------------- */
.online_bg {
  background: #ededed;
  padding: 130px 50px;
}
@media screen and (max-width: 767px) {
  .online_bg {
    padding: 20px 20px;
  }
}
.online {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .online {
    margin: 60px auto 100px;
    padding: 50px 0;
  }
}

@media screen and (min-width: 768px) {
  .online {
    margin: 50px auto 200px;
    max-width: 1020px;
    padding: 120px 40px;
  }
}

.online_picture img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 20% 0;
  object-position: 20% 0;
}

.online_text_lead {
  text-align: center;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .online_text_lead {
    margin: 0 auto 40px;
  }
}

.online_text_lead .text-lead-bold {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .online_text_lead .text-lead-bold {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .online_text_lead {
    margin: 30px 50px;
  }
}

@media screen and (max-width: 767px) {
  .online_text_lead {
    font-size: 13px;
    padding: 0 10px;
  }
}

.online_content {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .online_content {
    margin: 50px auto 20px;
  }
}

.online-link {
  text-align: center;
  margin-top: 30px;
}
.online-link :hover {
  border-bottom: 1px solid #000;
}

@media screen and (min-width: 768px) {
  .online-img-first {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media screen and (max-width: 767px) {
  .online-img-first {
    display: block;
    margin-top: 20px;
  }
}

.online-img-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 260px;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
}
@media screen and (max-width: 767px) {
  .online-img-item {
    padding: 0 50px 50px;
  }
}
.online-img-item img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .online-img-item {
    padding: 0 50px 50px;
  }
}

.online-img-second {
  padding: 0 20px;
}

.online-img-second img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .online-img-second {
    margin-bottom: 20px;
    width: 100%;
  }
}

.online-img-third img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .online-img-third {
    margin: 50px 30px;
  }
}

@media screen and (max-width: 767px) {
  .online-img-third {
    margin-bottom: 30px;
    width: 100%;
    padding: 0 20px;
  }
}

.massage-inner {
  position: relative;
}

/* 概要
---------------------------- */

@media screen and (min-width: 768px) {
  .company {
    margin: 200px auto 50px;
  }
}

@media screen and (max-width: 767px) {
  .company {
    margin: 120px auto 50px;
  }
}
.massage-link {
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .massage-link {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .co_area {
    width: 100%;
    margin: 100px auto 130px;
  }
}

@media screen and (max-width: 767px) {
  .co_area {
    width: 100%;
    margin-top: 50px;
  }
}

.co-set {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.co-set-title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  line-height: 28px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .co-set-title {
    padding: 0 0 30px 10px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .co-set-title {
    font-size: 12px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    padding: 0 0 10px 20px;
  }
}

.co-set-text {
  line-height: 35px;
  border-left: solid 1px #ccc;
  width: calc(100% - 190px);
  font-weight: bold;
  opacity: 0.7;
  padding: 0 0 10px 10px;
}

@media screen and (min-width: 768px) {
  .co-set-text {
    padding: 0 0 10px 20px;
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .co-set-text {
    padding: 0 0 10px 10px;
    font-size: 12px;
  }
}

.map-content {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .map-content {
    margin-top: 100px;
  }
}

@media screen and (max-width: 767px) {
  .map-content {
    margin-top: 30px;
  }
}

.map {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

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

.co-text + .co-text {
  margin-left: 20px;
}
/* philosophy.css
---------------------------- */
.philosophy {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .philosophy {
    margin-top: 120px;
  }
}
.about-lead {
  text-align: center;
  letter-spacing: 0.06em;
  font-weight: 200;
  color: rgba(125, 125, 125, 1);
}
.aboutImg {
  height: 35vw;
  background-image: url(../img/top4.JPG);
  width: calc(100%-40px);
  margin: 90px 10px 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  opacity: 1;
}
@media screen and (max-width: 1090px) {
  .aboutImg {
    height: 43vw;

    margin: 10px auto 0;
  }
}
@media screen and (max-width: 899px) {
  .aboutImg {
    height: 43vw;

    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .aboutImg {
    height: 43vw;
    background-attachment: initial;
    margin: 30px auto 0;
  }
}

@media screen and (min-width: 768px) {
  .about_content {
    width: calc(100% - 23.3%);
    margin: 150px auto 200px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .about_content {
    display: block;
    width: 100%;
  }
}

.about-title {
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.85;
  font-weight: 500;
  top: 190px;
}

@media screen and (max-width: 767px) {
  .about-title {
    font-size: 1.5rem;
    margin-top: 20px;
    text-align: center;
  }
}

.about-title span {
  font-size: 1.35rem;
  font-family: adobe-garamond-pro, serif;
  color: #b3a587;
  letter-spacing: 0.03em;
  display: block;
  line-height: 2.2;
  margin-top: 18px;
  margin-left: 1px;
}

@media screen and (max-width: 767px) {
  .about-title span {
    margin-top: 5px;
    font-size: 1rem;
    letter-spacing: 0.09em;
  }
}

@media screen and (min-width: 768px) {
  .about-title {
    position: sticky;
    position: -webkit-sticky;
    margin-bottom: 135px;
  }
}

.left {
  width: 49.5%;
}

@media screen and (max-width: 767px) {
  .left {
    width: 100%;
    margin: 40px 0;
  }
}

.right {
  width: 46%;
  margin: -2px 0 180px;
}

@media screen and (max-width: 767px) {
  .right {
    margin-top: 20px;
    width: 100%;
    padding: 0 20px;
    margin: 40px 0;
  }
}

.desc {
  margin-top: -4px;
  font-size: 1rem;
  line-height: 3.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1090px) {
  .desc {
    line-height: 3em;
  }
}
@media screen and (max-width: 767px) {
  .desc {
    line-height: 1.2em;
    margin: 0 30px;
  }
}
@media screen and (max-width: 480px) {
  .desc {
    line-height: 1.9em;
  }
}
.about-sigh {
  text-align: right;
  margin-top: 20px;
}
/* shop-list
---------------------------- */
.fixed-bg {
  background: #f5f5f5;
  padding: 20px 0;
}
@media screen and (max-width: 1180px) {
  .fixed-bg {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .fixed-bg {
    padding: 20px 0;
  }
}
.fixed-page-hero {
  background-image: url(../img/visial2.jpg);
  height: 40vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 899px) {
  .fixed-page-hero {
    height: 25vh;
  }
}
.fixed_prev_btn {
  margin-right: 20px;
}
.fixed-page {
  width: 100%;
  background: #fff;
  margin: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .fixed-page {
    margin: 20px 0 0;
  }
}

.fixed-page-title {
  font-size: 3em;
  color: #272727;
  line-height: 1.2;
  font-family: garamond-premier-pro-display, serif;
  font-weight: 400;
  font-style: normal;
}
.fixed-page-title-lead {
  font-size: 1.2em;
  color: #272727;
}
.shop-list-container {
  width: 100%;
  margin-top: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shop-list-container {
    margin-top: 0;
  }
}

.shop-list-title {
  padding: 10px 50px;
  display: flex;
  justify-content: space-between;
  z-index: 300;
  position: relative;
}
@media screen and (max-width: 767px) {
  .shop-list-title {
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
  }
}

/* 店舗詳細情報 */

@media screen and (min-width: 768px) {
  .nagaoka-add {
    display: flex;
    margin: calc(100px - 0.25em) auto;
    max-width: 1242px;
    z-index: 500;
    padding: 0 20px;
  }
}
@media screen and (max-width: 899px) {
  .nagaoka-add {
    display: block;
    margin: 0 40px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .nagaoka-add {
    padding: 30px 30px;
    margin: 20px auto 20px;
    max-width: 1020px;
    display: block;
  }
}

/* 住所 */
.address {
  font-size: 14px;
  line-height: 1.7em;
  color: #535353;
  font-size: 14px;
}
@media screen and (max-width: 899px) {
  .address {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .address {
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 20px;
  }
}

/* 営業時間 */
.business-hour {
  color: #535353;
  font-size: 14px;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .business-hour {
    margin-left: 2vw;
    padding-left: 4.09836vw;

    border-left: 1px solid #e2e2e2;
  }
}
@media screen and (max-width: 899px) {
  .business-hour {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .business-hour {
    border-bottom: 1px solid #e2e2e2;
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 0 20px;
  }
}

/* 2列目の行にbeforeクラス*/
table tr td:nth-of-type(2)::before {
  content: "…";
  display: inline;
  padding-right: 0.25em;
}
@media screen and (max-width: 767px) {
  .business-hour td {
    text-align: right;
  }
}

/* 予約ボタン欄 */
.add-reserve-text {
  margin-bottom: 30px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .add-reserve-text {
    margin-bottom: 20px;
  }
}
.add-reserve {
  color: #535353;
}
@media screen and (min-width: 768px) {
  .add-reserve {
    border-left: 1px solid #e2e2e2;
    color: #535353;
    margin-left: 3.2vw;
    padding-left: 4.09836vw;
    width: 19.09836vw;
  }
}
@media screen and (max-width: 899px) {
  .add-reserve {
    border-bottom: 1px solid #e2e2e2;
    border-left: none;

    margin-left: 0;
    padding-left: 0;
  }
}
.add-reserve a {
  display: inline-block;
  padding: 15px 0;
  width: 100%;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: 0em;
  border-radius: 57px;
  border: 1px solid #ab9b65;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .add-reserve a {
    padding: 15px 0;

    line-height: 1.2em;
  }
}
.add-reserve a:hover {
  background: #ab9b65;
  border: none;
  text-align: center;
  color: #fff;
}

.page-next:hover {
  opacity: 0.7;
}
.fixed-text-box {
  margin: 0 auto;
}
.fixed-text {
  text-align: center;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  line-height: 2em;
}
.fixed-text-strong {
  font-size: 1.5em;
}
.fixed-shop-img-container li img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .shop-list-heading {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .fixed-shop-img-container {
    display: flex;
    justify-content: space-around;
    padding: 50px;
  }
  .fixed-shop-img-container li {
    width: calc((100% / 3) - 16px);
  }
  .fixed-text-box {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .fixed-shop-img-container {
    display: block;

    padding: 30px;
  }
  .fixed-shop-img-container li {
    padding: 10px;
  }
  .fixed-shop-img-container li img {
    width: 100%;
  }
  .fixed-text {
    font-size: 0.8em;
    letter-spacing: 0.1em;
    line-height: 2em;
  }
  .fixed-text-strong {
    font-size: 1.2em;
    font-weight: bold;
  }
}

/* ------シフト-------- */
@media screen and (min-width: 768px) {
  .shift_content {
    height: auto;
    display: flex;
    justify-content: center;
    margin: 40px auto 120px;
  }
}

li.shift_img {
  flex: 1;
}
.shift_img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .shift_content {
    padding: 10px;
  }
  .shift_img + .shift_img {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .shift_img + .shift_img {
    margin-left: 50px;
  }
}
.gmap {
  width: 100%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

@media screen and (max-width: 767px) {
  .gmap {
    height: 30vh;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
  }
}
.gmap-title {
  color: rgba(184, 157, 79, 1);

  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 50px;
  margin-bottom: 20px;
  font-family: Helvetica, MyYuGothicM, YuGothic, -apple-system,
    BlinkMacSystemFont, "Hiragino kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-transition: opacity 0.2s, color 0.2s;
  -webkit-transition: opacity 0.4s, color 0.2s;
  transition: opacity 0.4s, color 0.2s;
}
.gmap-title::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: rgba(184, 157, 79, 1);
  margin-left: 5px;
  vertical-align: middle;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.gmap-title:hover {
  opacity: 0.7;
}
.fixed-page-title {
  font-size: 3.5em;
}
@media screen and (max-width: 767px) {
  .fixed-page-title {
    font-size: 1.5em;
  }
}

/* staff 画像 */

@media screen and (min-width: 768px) {
  .shop_staff_profile {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    max-width: 1242px;
    margin: 100px auto 60px;
  }
}
@media screen and (max-width: 767px) {
  .shop_staff_profile {
    padding: 40px 60px;
  }
}
.shop_staff_item {
  flex-basis: 18%;
  margin-bottom: 30px;
  min-width: 180px;
}
.flex5col_empty {
  flex-basis: 18%;
  margin-bottom: 30px;
}

/* archive page
---------------------------- */
.entries {
  margin: 160px auto 0;
}
@media screen and (max-width: 767px) {
  .entries {
    margin: 120px auto 0px;
  }
}
.entries_container {
  padding: 0 20px 60px;
}
@media screen and (min-width: 768px) {
  .entries_container {
    margin: 160px auto 400px;
  }
}
.pagenation {
  text-align: center;
  margin-bottom: 60px;
}

/* info-archive page
---------------------------- */
.info {
  margin: 160px auto 600px;
}
.info-container {
  padding: 30px;
  margin: 0 auto;
}
.info-item {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #e5e5e5;
  max-width: 600px;
  margin: 0 auto;
}
.info-time {
  margin-right: 40px;
  letter-spacing: 0.4em;
}
.info-title {
  letter-spacing: 0.2em;
}

/* reserves page
---------------------------- */
.reserves {
  margin: 200px auto 600px;
}

.reserves_txt {
  text-align: center;
}
.reserves_content {
  margin-top: 85px;
}
.reserves_content_items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.reserves_content_items li {
  margin: 0 auto;
}
.reserves_item {
  display: block;
  margin: 20px;
  padding: 10px;
  width: 500px;
  min-width: 0;
  background: #ededed;
  text-align: center;
  position: relative;
  -webkit-box-shadow: 0 5px 10px rgba(15, 14, 14, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease 0s; /*hoverの時間*/
}

.reserves_item:hover {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.reserves_shop_en {
  font-size: 2em;
  letter-spacing: 0.2em;
}
.reserves_shop_ja {
  font-size: 1em;
  color: #989898;
}

.reserves_item:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #b6a389;
  border-right: solid 2px #b6a389;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 51%;
  right: 10%;
  margin-top: -4px;
}
@media screen and (max-width: 767px) {
  .reserves {
    margin: 150px auto 150px;
  }
  .reserves_content {
    margin-top: 50px;
  }
  .reserves_content_items {
    display: block;
    width: 100%;
  }
  .reserves_item {
    margin: 20px 0;
    width: 100%;
    flex: 1;
    background: #ededed;
    text-align: center;
    position: relative;
    -webkit-box-shadow: 0 5px 10px rgba(15, 14, 14, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease 0s; /*hoverの時間*/
  }
  .reserves_shop_en {
    font-size: 1.1em;
    letter-spacing: 0.2em;
  }
  .reserves_shop_ja {
    font-size: 0.8em;
    color: #989898;
  }
}
/* recruit
---------------------------- */
.recruit {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-top: 130px;
  }
}
.bamboo_recruit {
  position: fixed;
  background: #fff;
  padding: 0 10px;
  bottom: 20px;
  right: 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 1;
}
.bamboo_recruit:hover {
  opacity: 0.7;
}
.bamboo_recruit img {
  width: 260px;
}
.bamboo_recruit-sp {
  background: #fff;
  transition: all 0.4s ease 0s; /*hoverの時間*/
  display: inline-block;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.bamboo_recruit-sp img {
  width: 200px;
}
@media screen and (min-width: 768px) {
  .bamboo_recruit-sp {
    display: none;
  }
}
.bamboo-img-sp .recruit-main-img {
  background-image: url(../img/event.png);
}
.recruit_main_items {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .recruit-main-img {
    background-image: url(../img/recruit-main.jpg);
    height: 28vw;
    margin: 90px 30px 0;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    position: relative;
    opacity: 1;
  }
}
@media screen and (max-width: 899px) {
  .recruit-main-img {
    background-image: url(../img/recruit-main.jpg);
    height: 43vw;
    margin: 90px 30px 0;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    position: relative;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .recruit-main-img {
    height: 60vw;
    background-repeat: no-repeat;
    margin: 50px 30px 0;
    background-size: cover;
    background-attachment: local;
    position: relative;
    opacity: 1;
  }
}
@media screen and (max-width: 560px) {
  .recruit-main-img {
    height: 60vw;
    background-repeat: no-repeat;
    margin: 0;
  }
}

.recruit_massage_items {
  margin: 120px auto 58px;
  color: #797973;
}
@media screen and (max-width: 767px) {
  .recruit_massage_items {
    margin: 40px auto 20px;
  }
}

.recruit_massage_item {
  margin: 40px auto;
}

/* massage */
.massage_item {
  font-size: 1.5em;
  text-align: center;
  line-height: 2.2em;
  letter-spacing: 0.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .massage_item {
    font-size: 1em;
    text-align: center;
    line-height: 1.8em;
  }
}
.massage_item_bold {
  font-size: 1.6em;
  letter-spacing: 0.1em;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .massage_item_bold {
    font-size: 1.3em;
    letter-spacing: 0.1em;
    line-height: 2em;
  }
}

/* 募集要項 */
.recruit_main_content {
  padding: 0 40px;
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .recruit_main_content {
    margin: 40px auto 0;
    position: relative;
    text-align: center;
  }
}
.recruit_main_text {
  font-size: 2em;
  font-weight: bold;
  border-top: 1px solid #eeeeee;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .recruit_main_text {
    font-size: 1.2em;
    font-weight: bold;
  }
}

@media screen and (max-width: 767px) {
  .recruit_main_overview {
    font-size: 0.9em;
    margin-top: 20px;
  }
}

/* tab */

.recruit_tab_content {
  margin-top: 58px;
}

.recruit_tab_items {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .recruit_tab_items {
    margin: 36px auto 20px;
  }
}

.recruit_tab_link {
  font-size: 1rem;
  font-weight: 400;
  color: #797973;
  background: #e5e5e5;
  border-radius: 5rem;
  font-family: "Noto Sans JP", sans-serif;
  box-shadow: 0px 0px 10px -8px rgba(0, 0, 0, 0.6);
  margin-bottom: 5%;

  padding: 10px 20px;
}
.recruit_tab_link:hover {
  background: #ececec;
}
@media screen and (max-width: 767px) {
  .recruit_tab_link {
    font-size: 0.6em;

    padding: 10px;
  }
}

.recruit_tab_link a {
  display: block;
  padding: 0 0 5px;
  text-decoration: none;
  color: #797973;
}
.recruit_tab_link + .recruit_tab_link {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .recruit_tab_link + .recruit_tab_link {
    margin-left: 10px;
  }
}
.recruit-tab img {
  width: 100%;
}
/* recruit概要
---------------------------- */
.requirements {
  background: #f6f6f6;
  padding: 40px 60px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .requirements {
    padding: 10px 10px;
    font-weight: 200;
    font-size: 12px;
  }
}

.requirements-title {
  font-size: 2.9rem;
  text-align: left;
  color: #6fb525;
  font-family: caflisch-script-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .requirements-title {
    font-size: 2rem;
  }
}

.requirements-title span {
  font-size: 1rem;
}

.recruit-table-row {
  display: flex;
  border-bottom: 1px solid #cecac5;
}
.table-title {
  padding: 20px 25px;
  text-align: left;
  width: 30%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .table-title {
    padding: 20px 10px;
    text-align: left;
    width: 30%;
  }
}
.table-data {
  padding: 20px 25px;
  text-align: left;
  width: 70%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .table-data {
    padding: 20px 10px;
    text-align: left;
    width: 70%;
  }
}

/* recruit-massage
---------------------------- */
.recruit-massage {
  margin: 120px auto 100px;
}
.mk-img img {
  width: 300px;
}

/* pickup-item
------------------------- */
.pickup-item {
  margin: 120px auto 100px;
}
.pickup-item-item {
  text-align: center;
}
/*--catalog固定ページ
------------------------------*/
.catalog {
  margin: 0 auto;
  width: 100%;
  padding: 160px 0 180px;
}
.catalog-row {
  width: 100%;
  margin: 0 auto;
}
.catalog-title {
  margin-bottom: 72px;
}
.slideArea {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
/* メイン画像 */
.catalog-main img {
  width: 480px;
}

.catalog-nav-item img {
  width: 100%;
  width: 120px;
  height: 180px;
  /* トリミング */
  object-fit: cover;
}
.catalog-nav-items {
  display: flex;
  justify-content: center;
}
.catalog-nav-item {
  padding: 10px;
}

/* タブの切り替え */
.catalog-slide-item {
  display: none;
}
.catalog-slide-item.active {
  display: block;
}
.catalog-slide-item img {
  width: 500px;
  height: 600px;
  object-fit: cover;
  object-position: top;
}
/* Next Prevボタン */
.catalog-pagination {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 896px) {
  /* メイン画像 */
  .catalog-main img {
    width: 260px;
  }

  .catalog-nav-items {
    width: 280px;
  }

  .style-title {
    margin-bottom: 10px;
  }
  .styling-comment {
    margin-bottom: 10px;
  }
  .style-title {
    font-size: 2rem;
  }
  .styling-comment dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .catalog {
    margin-top: 40px;
  }
  .catalog-main {
    padding: 20px;
  }
  .catalog-main img {
    width: 300px;
    height: 400px;
    object-fit: cover;
  }
  .catalog-nav-items {
    width: 100%;
  }
  .slideArea {
    display: block;
    margin-bottom: 0px;
  }
  .catalog-slide-item {
    text-align: center;
  }
  .catalog {
    padding: 50px 0 60px;
  }
  .catalog-title {
    margin-bottom: 30px;
  }
  .style-title {
    font-size: 1.5rem;
  }
  .catalog-nav-item {
    padding-right: 0px;
  }
  .catalog-nav-item {
    padding: 5px;
  }
}
/* footer
---------------------------- */
.footer {
  padding: 30px;
  background-color: #222;
}
.footer_logo {
  text-align: center;
  margin-bottom: 10px;
}
.footer_logo img {
  width: 200px;
  height: auto;
}
.footer-sns-contents {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer-sns-contents {
    text-align: center;
  }
}
.footer-sns {
  color: #fff;
  width: 30px;
  display: inline-block;
  font-size: 40px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .footer-sns {
    font-size: 30px;
  }
}

.footer-copyright {
  text-align: center;
  color: #fff;
  font-weight: 100;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    font-size: 12px;
    text-align: center;
    color: #fff;
    font-weight: 100;
    margin-bottom: 20px;
  }
}

/* トップ　style リンク */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-svg {
  font-weight: 700;
  line-height: 54px;

  width: 204px;
  height: 54px;
  padding: 0;

  cursor: pointer;
  text-decoration: none;

  background-color: transparent;
}

a.btn-svg svg {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

a.btn-svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;

  stroke: #000;
  stroke-width: 2;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
}

a.btn-svg:hover svg rect {
  stroke-dashoffset: 284px;
}
jQuery a.btn-svg span {
  color: #000;
}

/* css追加 */
.start {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 280px;
}

/*# sourceMappingURL=style.css.map */
