@charset "UTF-8";
/* ------------------------
    ヘッダー
------------------------ */
.header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 15px;
  transition: all 0.3s ease;
  background: transparent;
}
.header.js-scroll {
  background-color: rgba(0, 0, 0, 0.54);
  position: fixed;
  padding: 0 16px 0 18px;
}
.header.js-scroll .header__inner {
  height: 70px;
  -webkit-align-items: center;
  align-items: center;
}
.header.js-scroll .header__logo {
  display: block;
  opacity: 1;
  width: 87px;
  height: 61px;
  margin-top: 0;
}
.header.js-scroll .header-ig {
  display: block;
}
.header.js-scroll .header-lang {
  display: block;
  margin-left: 0;
}
.header.js-scroll .global-nav__item.news {
  margin-right: 40px;
}
.header.js-scroll .global-nav__list {
  -webkit-align-items: center;
  align-items: center;
}
.header.js-scroll .global-nav__link {
  color: #ffffff;
}
.header.js-scroll .global-nav__link::after {
  background: #ffffff;
}
.header__inner {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  height: 90px;
  transition: all 0.3s ease;
}
.header__inner figure {
  display: none;
}
.header__logo {
  margin: 65px auto 0 0;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background: url("./img/logo_site.svg") no-repeat center/contain;
  width: 155px;
  height: 106px;
}
.header .global-nav {
  height: 100%;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.header .global-nav__list {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.header .global-nav__item {
  position: relative;
  margin-right: 40px;
}
.header .global-nav__item:last-of-type {
  margin-right: 0;
}
.header .global-nav__item.logo {
  display: none;
}
.header .global-nav__item.news {
  margin-right: 0;
}
.header .global-nav__item.contact, .header .global-nav__item.privacy {
  display: none;
}
.header .global-nav__link {
  position: relative;
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 2.57em;
}
.header .global-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  bottom: 5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header .global-nav__link:hover::after {
  transform: scale(1, 1);
}
.header-ig {
  display: block;
  text-decoration: none;
  height: 40px;
  width: 40px;
  position: relative;
  transition: all 0.3s ease;
  margin-left: 40px;
}
.header-ig::before {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url(./img/ico_ig.png) no-repeat center/contain;
  transition: all 0.3s ease;
}
.header-lang {
  margin-right: 22px;
  display: block;
  margin-left: 40px;
}
.header-lang a {
  opacity: 0.5;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  line-height: 2.57em;
  cursor: pointer;
}
.header-lang a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  bottom: 5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.header-lang a:hover::after {
  transform: scale(1, 1);
}
.header-lang a:first-of-type {
  margin-right: 26px;
}
.header-lang a:first-of-type::before {
  content: "";
  position: absolute;
  top: 15px;
  right: -15px;
  height: 15px;
  width: 1px;
  background: #ffffff;
}
.header-lang a.current {
  opacity: 1;
}
.header-lang a.current::after {
  transform: scale(1, 1);
}
.header-lang a:hover::after {
  transform: scale(1, 1);
}

#page-index .header.js-scroll {
  background-color: transparent;
  position: absolute;
}
#page-index .header__logo {
  display: none;
}
#page-index .header-ig, #page-index .header-lang {
  display: none;
}

#page-contact .header__logo, #page-privacy .header__logo {
  display: none;
}
#page-contact .header-ig, #page-contact .header-lang, #page-privacy .header-ig, #page-privacy .header-lang {
  display: none;
}
#page-contact .header.js-scroll .header__logo, #page-privacy .header.js-scroll .header__logo {
  display: block;
}
#page-contact .header.js-scroll .header-ig, #page-contact .header.js-scroll .header-lang, #page-privacy .header.js-scroll .header-ig, #page-privacy .header.js-scroll .header-lang {
  display: block;
}
#page-contact .header.js-scroll .global-nav__link, #page-privacy .header.js-scroll .global-nav__link {
  color: #ffffff;
}
#page-contact .header.js-scroll .global-nav__link::after, #page-privacy .header.js-scroll .global-nav__link::after {
  background: #ffffff;
}
#page-contact .header .global-nav__link, #page-privacy .header .global-nav__link {
  color: #222222;
}
#page-contact .header .global-nav__link::after, #page-privacy .header .global-nav__link::after {
  background: #222222;
}

@media only screen and (max-width: 1100px) {
  .header__logo {
    width: 117px;
    height: 80px;
    margin-top: 15px;
  }
}
@media only screen and (max-width:1024px) {
  .header {
    top: 20px;
    padding: 0 10px 0 20px;
  }
  .header__inner {
    height: 70px;
    position: relative;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .header-ig {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 8px;
  }
  .header-lang {
    display: none;
    margin: 0 auto 0 0;
  }
  .header-lang a {
    color: #222222;
  }
  .header-lang a::after {
    background: #222222;
  }
  .header-lang a:first-of-type::before {
    background: rgba(34, 34, 34, 0.5);
  }
  .header.js-scroll {
    top: 0;
    padding: 0 10px 0 15px;
  }
  .header.js-scroll .header__logo {
    display: block;
  }
  .header.js-scroll .header-lang {
    margin: 0 15px 0 auto;
  }
  .header.js-scroll .header-lang a {
    color: #ffffff;
  }
  .header.js-scroll .header-lang a::after {
    background: #ffffff;
  }
  .header.js-scroll .header-lang a:first-of-type::before {
    background: #ffffff;
  }
  .header.js-scroll .global-nav__item.news {
    margin: 20px auto 0;
  }
  .header.js-scroll .global-nav__link {
    color: #222222;
  }
  .header .global-nav {
    width: 100%;
    padding: 0 20px;
  }
  .header .global-nav__list {
    padding: 40px 0 30px;
    width: 100%;
    display: block;
    height: 100vh;
  }
  .header .global-nav__item {
    margin: 20px auto 0;
    padding: 0;
    color: #222222;
    text-align: left;
    width: 260px;
    max-width: 100%;
  }
  .header .global-nav__item.logo {
    display: block;
    width: 185px;
    height: 158px;
    margin: 0 auto;
  }
  .header .global-nav__item.logo img {
    width: 100%;
  }
  .header .global-nav__item.logo + .global-nav__item {
    margin-top: 40px;
  }
  .header .global-nav__item.logo .global-nav__link {
    padding-left: 0;
  }
  .header .global-nav__item.logo .global-nav__link::before {
    display: none;
  }
  .header .global-nav__item.news {
    margin: 20px auto 0;
  }
  .header .global-nav__item.lang {
    display: block;
  }
  .header .global-nav__item.contact, .header .global-nav__item.privacy {
    display: block;
    margin: 15px auto 0;
    text-align: center;
  }
  .header .global-nav__item.contact .global-nav__link, .header .global-nav__item.privacy .global-nav__link {
    font-size: 1.4rem;
    line-height: 1.2em;
    font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    padding-left: 0;
    text-align: center;
    position: relative;
  }
  .header .global-nav__item.contact .global-nav__link::before, .header .global-nav__item.privacy .global-nav__link::before {
    display: none;
  }
  .header .global-nav__item.contact .global-nav__link::after, .header .global-nav__item.privacy .global-nav__link::after {
    bottom: -5px;
    background: #222222;
  }
  .header .global-nav__item.contact .global-nav__link:hover::after, .header .global-nav__item.privacy .global-nav__link:hover::after {
    transform: scale(1, 1);
  }
  .header .global-nav__item.contact {
    margin-top: 70px;
  }
  .header .global-nav__item:nth-of-type(2) .global-nav__link::before {
    background: url(./img/orn_gn_red.png) no-repeat center/contain;
  }
  .header .global-nav__item:nth-of-type(3) .global-nav__link::before {
    background: url(./img/orn_gn_green.png) no-repeat center/contain;
  }
  .header .global-nav__item:nth-of-type(4) .global-nav__link::before, .header .global-nav__item:nth-of-type(5) .global-nav__link::before {
    background: url(./img/orn_gn_bk.png) no-repeat center/contain;
  }
  .header .global-nav__link {
    color: #222222;
    font-family: "Shippori Mincho B1", serif;
    position: relative;
    font-size: 2rem;
    line-height: 2em;
    font-weight: bold;
    display: inline-block;
    padding-left: 28px;
  }
  .header .global-nav__link:hover::after {
    transform: scale(0, 1);
  }
  .header .global-nav__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 13px;
    height: 5px;
  }
  #page-contact .header-ig, #page-privacy .header-ig {
    display: block;
  }
  #page-contact .header.js-scroll .header__inner, #page-privacy .header.js-scroll .header__inner {
    height: 70px;
  }
  #page-contact .header.js-scroll .global-nav__link, #page-privacy .header.js-scroll .global-nav__link {
    color: #222222;
  }
  #page-contact .header.js-scroll .global-nav__link::after, #page-privacy .header.js-scroll .global-nav__link::after {
    background: #222222;
  }
  #page-contact .header .global-nav__link, #page-privacy .header .global-nav__link {
    color: #222222;
  }
  #page-contact .header .global-nav__link::after, #page-privacy .header .global-nav__link::after {
    background: #222222;
  }
  #page-index .header-ig {
    display: block;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------
    スマホナビ
------------------------ */
.drawer-hamburger {
  display: none;
}

@media only screen and (max-width:1024px) {
  .drawer.drawer--top .drawer-hamburger {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 0 15px;
    overflow: visible;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon {
    height: 2px;
    background-color: #000000;
    margin: 0;
    width: 100%;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
    width: 100%;
    height: 2px;
    background-color: #000000;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before {
    top: -8px;
  }
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
    top: 8px;
  }
  .drawer.drawer--top .drawer-nav {
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    opacity: 0;
    pointer-events: none;
    transition: none;
  }
  .drawer.drawer--top.drawer-open .drawer-hamburger {
    width: 50px;
    padding: 0 15px;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle {
    left: auto;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle::after {
    opacity: 1;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon {
    background: transparent;
  }
  .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::before, .drawer.drawer--top.drawer-open .drawer-toggle .drawer-hamburger-icon::after {
    top: 0;
    left: -2px;
    background: none;
    background-color: #000000;
    width: calc(100% + 4px);
  }
  .drawer.drawer--top.drawer-open .drawer-nav {
    pointer-events: auto;
    animation: opacity 0.5s ease 0.2s forwards;
    padding: 0 20px;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-top: 70px;
    height: 200vh;
  }
  .drawer.drawer--top.drawer-open .drawer-overlay {
    background: url("./img/bg_drawer.png") repeat center/contain;
  }
  .drawer.drawer--top.drawer-open .header__inner {
    height: 70px;
  }
  .drawer.drawer--top.drawer-open .header__logo {
    display: none;
  }
  .drawer.drawer--top.drawer-open .header-lang {
    display: block;
  }
  .drawer.drawer--top.drawer-open .header.js-scroll .header__logo {
    display: block;
  }
  .drawer.drawer--top.drawer-open#page-index .header-lang, .drawer.drawer--top.drawer-open#page-contact .header-lang, .drawer.drawer--top.drawer-open#page-privacy .header-lang {
    display: block;
  }
}
.drawer--top.drawer-open .drawer-nav {
  top: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--left.drawer-open .drawer-nav,
.drawer--left .drawer-hamburger,
.drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* ------------------------
    フッター
------------------------ */
#page-index .footer {
  margin-top: 0;
}

.footer {
  position: relative;
  margin: 120px auto 0;
  background: #ffffff;
  color: #222222;
  width: 100%;
  background: url("./img/bg_footer01.png") repeat center/contain;
}
.footer__inner {
  width: 764px;
  max-width: 100%;
  padding: 70px 20px 55px;
  margin: 0 auto;
  background: url("./img/bg_footer02.png") repeat center/contain;
}
.footer__logo {
  display: block;
  margin: 0 auto;
  width: 453px;
  max-width: 100%;
  height: 152px;
  text-decoration: none;
}
.footer__logo img {
  width: 100%;
}
.footer__nav {
  margin: 75px auto 0;
}
.footer__nav .nav-list {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer__nav .nav-list__link {
  font-size: 1.4rem;
  color: #222222;
  text-decoration: none;
  margin-right: 25px;
  font-weight: 500;
  position: relative;
}
.footer__nav .nav-list__link::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.footer__nav .nav-list__link:hover::after {
  transform: scale(1, 1);
}
.footer__contact {
  margin: 42px auto 0;
  font-size: 1.4rem;
  color: #222222;
  font-weight: 500;
  text-align: center;
  line-height: 1.71em;
}
.footer__contact .tel {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #222222;
  font-size: 1.4rem;
  line-height: 1.71em;
}
.footer__copy {
  margin: 30px auto 0;
  text-align: center;
  color: #222222;
  font-size: 1.4rem;
  line-height: 1.71em;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width:768px) {
  .footer {
    margin-top: 80px;
  }
  .footer__inner {
    padding: 47px 20px 30px;
  }
  .footer__logo {
    width: 185px;
    height: 158px;
  }
  .footer__nav {
    margin: 28px auto 0;
  }
  .footer__nav .nav-list {
    display: block;
    text-align: center;
  }
  .footer__nav .nav-list__item {
    margin: 10px auto 0;
  }
  .footer__nav .nav-list__link {
    margin: 0 auto;
  }
  .footer__contact {
    margin: 47px auto 0;
  }
  .footer__contact .tel {
    pointer-events: auto;
    cursor: pointer;
  }
  .footer__copy {
    margin-top: 28px;
  }
}
/* ------------------------
    トップページ
------------------------ */
.index-hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
.index-hero__image {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
}
.index-hero__image .hero-image {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  height: 100vh;
}
.index-hero__image .hero-image figure {
  width: 50%;
  margin: 0 auto;
}
.index-hero__image .hero-image figure img {
  width: 100%;
  height: 100%;
}
.index-hero__inner {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 350px;
  max-width: 100%;
  padding: 0 20px;
  height: 190px;
  text-align: center;
}
.index-hero__inner.west {
  left: 25%;
  right: unset;
}
.index-hero__inner.east {
  left: 75%;
  right: unset;
}
.index-hero__inner .shop {
  display: inline-block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  font-family: "Shippori Mincho B1", serif;
  margin: 0 auto;
  position: relative;
  padding-bottom: 35px;
  letter-spacing: 0.06em;
}
.index-hero__inner .shop::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 11px;
  background: url("./img/orn_ttl_wt.png") no-repeat center/contain;
}
.index-hero__inner .logo {
  display: block;
  width: 308px;
  max-width: 100%;
  height: 50px;
  margin: 30px auto 0;
}
.index-hero__logo {
  position: absolute;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 169px;
  height: 117px;
}

@media only screen and (max-width:1024px) {
  .index-hero__image .hero-image {
    flex-direction: column;
  }
  .index-hero__image .hero-image figure {
    width: 100%;
    height: 50vh;
    margin: 0 auto;
  }
  .index-hero__inner {
    width: 100%;
    padding: 0 20px;
    height: auto;
  }
  .index-hero__inner.west {
    left: 50%;
    top: 25%;
    bottom: unset;
  }
  .index-hero__inner.east {
    left: 50%;
    top: 75%;
  }
}
@media only screen and (max-width:768px) {
  .index-hero:before {
    display: none;
  }
  .index-hero__inner {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    padding: 0 20px;
    height: auto;
  }
  .index-hero__inner .shop {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .index-hero__inner .shop::after {
    width: 20px;
    height: 7px;
  }
  .index-hero__inner .logo {
    display: block;
    width: 100%;
    height: 40px;
    margin: 30px auto 0;
  }
  .index-hero__logo {
    width: 140px;
    height: 97px;
    z-index: 1;
  }
}
.top-about {
  position: relative;
  width: 100%;
  margin: 170px auto 0;
  padding: 110px 15px 360px;
  background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.84) 30%, rgba(0, 0, 0, 0.84) 50%, rgba(0, 0, 0, 0.84) 70%, transparent 100%);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.84) 30%, rgba(0, 0, 0, 0.84) 50%, rgba(0, 0, 0, 0.84) 70%, transparent 100%);
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.225) 25%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.675) 75%, rgba(0, 0, 0, 0.81) 100%);
}
.top-about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100vh + 100% + 170px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
  top: calc(-100vh - 170px);
  left: 0;
}
.top-about__inner {
  height: 580px;
  margin: 0 auto;
  color: #ffffff;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  z-index: 1;
}
.top-about__inner h2 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "Shippori Mincho B1", serif;
  color: #ffffff;
  position: relative;
  letter-spacing: 0.3em;
  padding-bottom: 25px;
}
.top-about__inner h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 11px;
  background: url("./img/orn_ttl_wt.png") no-repeat center/contain;
}
.top-about__inner p {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  position: relative;
  font-size: 1.8rem;
  margin-top: 80px;
}

@media only screen and (max-width:768px) {
  .top-about {
    margin: 100px auto 0;
    padding: 30px 45px 320px;
  }
  .top-about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100vh + 100% + 100px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
    top: calc(-100vh - 100px);
    left: 0;
  }
  .top-about__inner {
    height: auto;
  }
  .top-about__inner h2 {
    font-size: 3rem;
    letter-spacing: 0.3em;
    padding-bottom: 15px;
  }
  .top-about__inner h2::after {
    width: 24px;
    height: 9px;
  }
  .top-about__inner p {
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    font-size: 1.6rem;
    margin-top: 60px;
  }
}
.top-shop {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.top-shop__inner {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 300px;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.top-shop__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 302px;
  background: #FBFAF8;
}
.top-shop__inner .image {
  background: transparent;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
.top-shop__inner .image .sp {
  display: none;
}
.top-shop__inner .image figure {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-shop__inner .image figure img {
  width: 100%;
  vertical-align: middle;
  height: 100%;
}
.top-shop__inner .text {
  margin: 0 auto;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  background: #FBFAF8;
}
.top-shop__inner .text .inner {
  width: 440px;
  max-width: 100%;
}
.top-shop__inner .text .name {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Shippori Mincho B1", serif;
}
.top-shop__inner .text figure {
  width: 344px;
  max-width: 100%;
  height: 56px;
  margin-top: 20px;
}
.top-shop__inner .text .logo-sub {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Shippori Mincho B1", serif;
}
.top-shop__inner .text .desc {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2em;
  margin-top: 40px;
}
.top-shop__inner .text .link {
  margin: 30px auto 0;
  -js-display: inline-flex;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  flex-direction: column;
}
.top-shop__inner .text .link a {
  display: inline-block;
  color: #222222;
  text-decoration: none;
  padding-left: 27px;
  position: relative;
  line-height: 2.28em;
  margin-top: 5px;
}
.top-shop__inner .text .link a.more::before, .top-shop__inner .text .link a.access::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
}
.top-shop__inner .text .link a.more::after, .top-shop__inner .text .link a.access::after {
  content: "";
  width: 13px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.3s ease;
}
.top-shop__inner .text .link a.more:hover::after, .top-shop__inner .text .link a.access:hover::after {
  width: 23px;
}
.top-shop__inner .text .link a.more {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  font-weight: bold;
}
.top-shop__inner .text .link a.access {
  font-size: 1.5rem;
  font-weight: 500;
  color: #222222;
}
.top-shop__inner .text .link a.access::before {
  background: #222222;
}
.top-shop__inner .text .link a.access::after {
  background: #222222;
}
.top-shop__inner .text .link a.ig {
  font-size: 1.6rem;
  line-height: 2.56em;
  font-weight: 500;
  color: #222222;
  padding-left: 43px;
}
.top-shop__inner .text .link a.ig::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  height: 30px;
  background: url("./img/ico_ig_gray.png") no-repeat center/contain;
  transition: all 0.3s ease;
}
.top-shop__inner .text .link a.ig:hover::before {
  background: url("./img/ico_ig_bk.png") no-repeat center/contain;
}
.top-shop.west .top-shop__inner .text {
  width: calc(50% - 9px);
  width: 50%;
  padding: 0 20px 0 130px;
  margin: 0 0 0 auto;
}
.top-shop.west .top-shop__inner .text .name, .top-shop.west .top-shop__inner .text .logo-sub {
  color: #983C3A;
}
.top-shop.west .top-shop__inner .text .more::before {
  background: #983C3A;
}
.top-shop.west .top-shop__inner .text .more::after {
  background: #983C3A;
}
.top-shop.west .top-shop__inner .text .more:hover {
  color: #983C3A;
}
.top-shop.west .top-shop__inner .image {
  width: calc(50% + 11px);
}
.top-shop.east .top-shop__inner .text {
  width: calc(50% + 11px);
  padding: 0 130px 0 20px;
}
.top-shop.east .top-shop__inner .text .inner {
  margin-left: auto;
}
.top-shop.east .top-shop__inner .text .name, .top-shop.east .top-shop__inner .text .logo-sub {
  color: #137C63;
  width: 100%;
  text-align: left;
}
.top-shop.east .top-shop__inner .text figure {
  margin-right: auto;
}
.top-shop.east .top-shop__inner .text .more::before {
  background: #137C63;
}
.top-shop.east .top-shop__inner .text .more::after {
  background: #137C63;
}
.top-shop.east .top-shop__inner .text .more:hover {
  color: #137C63;
}
.top-shop.east .top-shop__inner .image {
  width: calc(50% - 9px);
}

@media only screen and (max-width: 1200px) {
  .top-shop__inner .text .inner {
    width: 100%;
    max-width: none;
  }
  .top-shop__inner .text .desc {
    margin-top: 20px;
    line-height: 1.75em;
  }
  .top-shop__inner .text .link {
    margin-top: 20px;
  }
  .top-shop__inner .image figure img {
    vertical-align: top;
    height: auto;
  }
  .top-shop.west .top-shop__inner .text {
    padding-left: 40px;
  }
  .top-shop.east .top-shop__inner .text {
    padding-right: 40px;
  }
}
@media only screen and (max-width:1024px) {
  .top-shop {
    position: relative;
    margin: 0 auto;
    z-index: 1;
  }
  .top-shop__inner {
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding-top: 100px;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #FBFAF8;
  }
  .top-shop__inner::after {
    display: none;
  }
  .top-shop__inner .image {
    width: 100%;
  }
  .top-shop__inner .image .pc {
    display: none;
  }
  .top-shop__inner .image .sp {
    display: block;
  }
  .top-shop__inner .image figure {
    width: auto;
    max-height: 800px;
  }
  .top-shop__inner .image figure img {
    width: auto;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  .top-shop__inner .text .inner {
    width: 100%;
  }
  .top-shop__inner .text figure {
    width: 238px;
    height: 45px;
    margin-top: 20px;
  }
  .top-shop__inner .text figure img {
    width: 100%;
    height: auto;
  }
  .top-shop__inner .text .logo-sub {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
  }
  .top-shop__inner .text .desc {
    line-height: 2em;
    margin-top: 40px;
  }
  .top-shop__inner .text .link {
    margin: 30px auto 0;
  }
  .top-shop.west .top-shop__inner .text {
    width: 100%;
    padding: 0 20px;
    margin: 50px auto 0;
  }
  .top-shop.west .top-shop__inner .image {
    width: 100%;
    padding-left: 20px;
  }
  .top-shop.west .top-shop__inner .image figure {
    text-align: right;
  }
  .top-shop.west .top-shop__inner .image figure img {
    margin: 0 0 0 auto;
  }
  .top-shop.east .top-shop__inner {
    padding-top: 90px;
  }
  .top-shop.east .top-shop__inner .text {
    order: 2;
    width: 100%;
    padding: 0 20px;
    margin: 50px auto 0;
  }
  .top-shop.east .top-shop__inner .text .inner {
    margin: 0 auto;
  }
  .top-shop.east .top-shop__inner .text figure {
    margin-right: auto;
  }
  .top-shop.east .top-shop__inner .image {
    order: 1;
    width: 100%;
    padding-right: 20px;
  }
  .top-shop.east .top-shop__inner .image figure {
    text-align: left;
  }
}
@media only screen and (max-width: 650px) {
  .top-shop {
    position: relative;
    margin: 0 auto;
    z-index: 1;
  }
  .top-shop__inner {
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding-top: 100px;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #FBFAF8;
  }
  .top-shop__inner::after {
    display: none;
  }
  .top-shop__inner .image {
    width: 100%;
  }
  .top-shop__inner .image .pc {
    display: none;
  }
  .top-shop__inner .image .sp {
    display: block;
  }
  .top-shop__inner .image figure img {
    height: auto;
  }
}
.top-instagram {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: #FBFAF8;
  padding-top: 150px;
}
.top-instagram__inner {
  width: 908px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}
.top-instagram__inner .ttl-cmn-01 {
  font-size: 4rem;
  letter-spacing: 0.3em;
  padding-top: 60px;
}
.top-instagram__inner .ttl-cmn-01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background: url("./img/ico_ig_gray.png") no-repeat center/contain;
}
.top-instagram .insta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 60px;
}
.top-instagram .insta-list li {
  list-style: none;
  width: 33.3333%;
  padding: 0 1.5px;
  margin-bottom: 3px;
}
.top-instagram .insta-list li a {
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  transition: all 0.3s ease;
}
.top-instagram .insta-list li a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.top-instagram .insta-list li a:hover {
  opacity: 0.75;
}
.top-instagram .insta-link {
  margin: 15px auto 0;
  text-align: center;
}
.top-instagram .insta-link a {
  display: inline-block;
  text-decoration: none;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.28em;
  position: relative;
  padding-left: 27px;
}
.top-instagram .insta-link a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  background: #222222;
}
.top-instagram .insta-link a::after {
  content: "";
  width: 13px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.3s ease;
  background: #222222;
}
.top-instagram .insta-link a:hover::after {
  width: 23px;
}

@media only screen and (max-width:768px) {
  .top-instagram {
    padding-top: 120px;
  }
  .top-instagram__inner {
    width: 100%;
    padding: 0 7px;
  }
  .top-instagram__inner .ttl-cmn-01 {
    font-size: 2.7rem;
    padding-top: 50px;
  }
  .top-instagram__inner .ttl-cmn-01::before {
    width: 35px;
    height: 35px;
  }
  .top-instagram .insta-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 40px;
  }
  .top-instagram .insta-list li {
    padding: 0;
    margin-bottom: 0;
    border: 1px solid #ffffff;
  }
}
.top-access {
  margin: 0 auto;
  padding: 145px 0 100px;
  background: #FBFAF8;
  position: relative;
}
.top-access.shop {
  background: transparent;
}
.top-access__inner {
  width: 908px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}
.top-access .table-cmn-01 td {
  border-bottom: 1px solid #222222;
}
.top-access .table-cmn-01 .tel {
  text-decoration: none;
  color: #222222;
  pointer-events: none;
  cursor: default;
}
.top-access .table-cmn-01 .fax {
  text-decoration: none;
  color: #222222;
  pointer-events: none;
}
.top-access .map {
  margin: 50px auto 0;
  width: 100%;
}

@media only screen and (max-width:768px) {
  .top-access {
    margin-top: 0;
    padding: 85px 0 100px;
  }
  .top-access .table-cmn-01 tr {
    border-bottom: none;
  }
  .top-access .table-cmn-01 th {
    border-bottom: 1px solid #CBCBCB;
  }
  .top-access .table-cmn-01 .tel {
    pointer-events: auto;
    cursor: pointer;
  }
}
.top-news {
  margin: 0 auto;
  padding: 150px 0 135px;
  position: relative;
  background: #ffffff;
}
.top-news__inner {
  width: 908px;
  padding: 0 20px;
  max-width: 100%;
  margin: 0 auto;
}

@media only screen and (max-width:768px) {
  .top-news {
    padding: 50px 0 100px;
  }
  .top-news__inner {
    width: 100;
  }
}
/* ------------------------
    汎用
------------------------ */
.hero {
  width: 100%;
  position: relative;
  height: 100vh;
  padding-top: 90px;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.hero.west {
  background: #983C3A;
}
.hero.east {
  background: #137C63;
}
.hero__inner {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  height: calc(100vh - 144px);
  width: 1940px;
  max-width: 100%;
  padding: 0 0 0 20px;
}
.hero__inner .text {
  width: 43.4%;
  color: #ffffff;
  position: relative;
  padding: 0 95px 0 20px;
}
.hero__inner .text .inner {
  width: 410px;
  max-width: 100%;
  margin: 0 0 0 auto;
  text-align: center;
}
.hero__inner .text .shop {
  display: inline-block;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  font-family: "Shippori Mincho B1", serif;
  margin: 0 auto;
  position: relative;
  padding-bottom: 35px;
  letter-spacing: 0.06em;
}
.hero__inner .text .shop::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 11px;
  background: url("./img/orn_ttl_wt.png") no-repeat center/contain;
}
.hero__inner .text .logo {
  display: block;
  width: 400px;
  max-width: 100%;
  height: 65px;
  margin: 30px auto 0;
}
.hero__inner .text .shop-sub {
  margin: 10px auto 0;
  font-size: 1.6rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: bold;
  line-height: 2.56em;
  text-align: center;
}
.hero__inner .text .shop-catch {
  margin: 10px auto 0;
  font-size: 2rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  line-height: 2em;
  text-align: center;
}
.hero__inner .image {
  width: 56.6%;
  margin-left: 0;
  position: relative;
  height: 100%;
}
.hero__inner .image figure {
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 100%;
}
.hero__inner .image figure img {
  object-fit: contain;
  object-position: right;
}

@media only screen and (max-width: 1200px) {
  .hero {
    display: block;
  }
  .hero__inner .text {
    padding-right: 55px;
  }
}
@media only screen and (max-width:1024px) {
  .hero {
    height: auto;
  }
  .hero__inner {
    height: auto;
    display: block;
    padding: 20px 0 40px;
  }
  .hero__inner .text {
    width: 100%;
    padding: 0 10px;
  }
  .hero__inner .text .inner {
    width: 100%;
    margin: 0 auto;
  }
  .hero__inner .text .shop {
    font-size: 2rem;
    padding-bottom: 15px;
    letter-spacing: 0.11em;
  }
  .hero__inner .text .shop::after {
    width: 20px;
    height: 7px;
  }
  .hero__inner .text .logo {
    width: 245px;
    height: auto;
  }
  .hero__inner .text .shop-sub {
    margin: 10px auto 0;
    font-size: 1.4rem;
    line-height: 1.43em;
  }
  .hero__inner .text .shop-catch {
    margin: 10px auto 0;
    font-size: 1.8rem;
    line-height: 2.22em;
  }
  .hero__inner .image {
    width: 100%;
    margin: 50px 0 0 auto;
    padding: 0 0 0 20px;
  }
  .hero__inner .image figure {
    width: 100%;
  }
}
.ttl-cmn-01 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8em;
  width: 100%;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #222222;
  font-family: "Shippori Mincho B1", serif;
  position: relative;
  padding-bottom: 20px;
}
.ttl-cmn-01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 30px;
  height: 11px;
  background: url("./img/orn_ttl_bk.png") no-repeat center/contain;
}
.ttl-cmn-01 span {
  display: block;
  font-size: 2rem;
}
.ttl-cmn-01.red::after {
  background: url("./img/orn_ttl_red.png") no-repeat center/contain;
}
.ttl-cmn-01.green::after {
  background: url("./img/orn_ttl_green.png") no-repeat center/contain;
}

@media only screen and (max-width:768px) {
  .ttl-cmn-01 {
    font-size: 2.5rem;
    line-height: 2.16em;
    padding-bottom: 15px;
    font-weight: bold;
  }
  .ttl-cmn-01::after {
    width: 24px;
    height: 9px;
  }
}
.table-cmn-01 {
  margin-top: 50px;
  width: 100%;
}
.table-cmn-01 tr {
  border-bottom: 1px solid #CBCBCB;
}
.table-cmn-01 th {
  font-weight: bold;
  padding: 25px 18px 10px;
  border-bottom: 1px solid #CBCBCB;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.79em;
}
.table-cmn-01 td {
  padding: 25px 18px 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.625em;
}
.table-cmn-01 td .title {
  font-weight: bold;
  display: block;
}

@media only screen and (max-width:768px) {
  .table-cmn-01 {
    display: block;
    margin-top: 30px;
  }
  .table-cmn-01 thead, .table-cmn-01 tbody, .table-cmn-01 tr, .table-cmn-01 th, .table-cmn-01 td {
    display: block;
    width: 100%;
  }
  .table-cmn-01 th {
    padding: 15px 0 7px;
    border-bottom: none;
  }
  .table-cmn-01 td {
    padding: 15px 0 12px;
  }
}
.gmap-link {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-left: 36px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #222222;
  margin-top: 15px;
  transition: all 0.3s ease;
}
.gmap-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 22px;
  height: 30px;
  background: url("./img/ico_map.png") no-repeat center/contain;
}
.gmap-link:hover {
  text-decoration: underline;
}

.txt-cmn {
  font-size: 1.6rem;
  color: #222222;
  line-height: 2;
  margin-top: 25px;
}

@media only screen and (max-width:768px) {
  .txt-cmn {
    font-size: 1.5rem;
    margin-top: 25px;
  }
}
.form-table {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 70px;
}
.form-table dt {
  width: 258px;
  padding: 13px 0;
  padding-left: 58px;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #222222;
  position: relative;
}
.form-table dt::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  display: inline-block;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 22px;
  height: 24px;
  width: 48px;
  text-align: center;
}
.form-table dt.req::after {
  content: "必須";
  background: #D00400;
}
.form-table dt.any::after {
  content: "任意";
  background: #000000;
}
.form-table dd {
  width: calc(100% - 258px);
  padding: 10px 0;
  display: block;
  color: #222222;
}
.form-table dd .half {
  width: 50%;
}
.form-table dd .one-third {
  width: 30%;
}
.form-table dd p {
  font-size: 1.4rem;
  line-height: 1.71em;
}
.form-table .hidden {
  display: none;
}
.form-table .full {
  width: 100%;
  padding-bottom: 0;
}
.form-table .privacy-text {
  font-size: 1.6rem;
  line-height: 1.625em;
  margin-top: 55px;
  text-align: center;
  font-weight: 500;
}
.form-table .privacy-text a {
  color: #222222;
}

@media only screen and (max-width:768px) {
  .form-table {
    margin-top: 30px;
  }
  .form-table dt {
    width: 100%;
    padding: 13px 0 0 58px;
  }
  .form-table dt::after {
    top: 18px;
  }
  .form-table dd {
    width: 100%;
    padding: 3px 0 0;
  }
  .form-table dd .half {
    width: 100%;
  }
  .form-table dd .one-third {
    width: 100%;
  }
  .form-table dd p {
    line-height: 2.2em;
  }
  .form-table .privacy-text {
    font-size: 1.5rem;
    line-height: 1.73em;
    text-align: left;
  }
}
input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  background-color: #ffffff;
  border: 1px solid #AFAFAF;
  padding: 7px 10px;
  width: 100%;
  border-radius: 4px;
}

@media only screen and (max-width:768px) {
  input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
    font-size: 1.6rem;
    padding: 6px;
  }
}
textarea {
  height: 276px;
}

@media only screen and (max-width:768px) {
  textarea {
    height: 232px;
  }
}
.btn-submit {
  margin: 40px auto 0;
  display: block;
  width: 248px;
  height: 64px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #222222;
  background: #ffffff;
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  line-height: 62px;
  font-weight: 500;
  text-align: center;
  border-radius: 47px;
  border: 1px solid #AFAFAF;
  cursor: pointer;
}
.btn-submit:hover {
  background: #222222;
  color: #ffffff;
}

/* 下層ページ */
/* お問い合わせ */
.contact {
  padding-bottom: 12px;
}
.contact-heading {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 24px;
  font-size: 1.8rem;
  line-height: 1.44;
  font-weight: 500;
  border-bottom: 1px solid #CBCBCB;
}
.contact-heading p {
  margin-top: 75px;
}
.contact-heading a {
  display: block;
  text-decoration: none;
  color: #222222;
  pointer-events: none;
  cursor: default;
  text-align: center;
}
.contact-heading a.tel {
  margin-top: 15px;
}
.contact-heading + p {
  margin-top: 40px;
  font-size: 1.8rem;
  line-height: 1.44;
  font-weight: 500;
}

@media only screen and (max-width:768px) {
  .contact {
    padding-bottom: 20px;
  }
  .contact-heading {
    font-size: 1.6rem;
    padding-bottom: 48px;
  }
  .contact-heading + p {
    margin-top: 45px;
    font-size: 1.6rem;
  }
}
/* 店舗ページ */
.west-bg {
  position: relative;
  padding: 120px 0;
  margin: 0 auto;
  background: url("./img/under/bg_west01.jpg") repeat;
}
.west-bg .contents {
  margin-top: 0;
}

.east-bg {
  position: relative;
  padding: 120px 0;
  margin: 0 auto;
  background: #FEFFF0;
}
.east-bg .contents {
  margin-top: 0;
}

@media only screen and (max-width:768px) {
  .west-bg, .east-bg {
    padding: 60px 0;
  }
}
.shop-slide-wrap {
  width: 100%;
  margin: 0 auto;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.shop-slide-wrap.sp, .shop-slide-wrap.sp-02 {
  display: none;
}

.shop-slide {
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  animation: loop-slide 35s infinite linear 1s both;
}
.shop-slide figure {
  height: 520px;
  width: 520px;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes loop-slide-sp {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@media only screen and (max-width:768px) {
  .shop-slide-wrap.sp {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
  .shop-slide-wrap.sp .shop-slide {
    animation: loop-slide-left 35s infinite linear 1s both;
  }
  .shop-slide-wrap.pc {
    display: none;
  }
  .shop-slide-wrap.sp-02 {
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }
  .shop-slide-wrap.sp-02 .shop-slide {
    animation: loop-slide-sp 35s infinite linear 1s both;
  }
  .shop-slide {
    height: 200px;
  }
  .shop-slide figure {
    width: 200px;
    height: 100%;
  }
}
.shop-west-contents {
  width: 100%;
  position: relative;
  height: 1460px;
  background: url("./img/under/bg_west01.jpg") repeat;
  padding: 120px 0;
}
.shop-west-contents .shop-west__inner {
  position: relative;
  margin: 0 auto;
  height: 100%;
  width: 1384px;
  max-width: 100%;
}
.shop-west-contents .left-wrap {
  width: 56%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
.shop-west-contents .left-wrap .left-inner .text {
  padding: 80px 0 0 110px;
  margin: 0 auto;
}
.shop-west-contents .left-wrap .left-inner .text h3 {
  font-size: 2.5rem;
  font-family: "Shippori Mincho B1", serif;
  font-weight: bold;
  line-height: 2.16em;
  color: #222222;
}
.shop-west-contents .left-wrap .left-inner .text p {
  margin-top: 45px;
}
.shop-west-contents .left-wrap .left-inner figure {
  margin: 70px auto 0 0;
  width: 520px;
  max-width: 100%;
}
.shop-west-contents .left-wrap .left-inner .man {
  display: none;
}
.shop-west-contents .right-wrap {
  position: absolute;
  width: 56%;
  height: 100%;
  right: 0;
  top: 0;
  -js-display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.shop-west-contents .right-wrap .right-inner {
  width: 100%;
}
.shop-west-contents .right-wrap .right-inner figure {
  margin: 55px 0 0 auto;
  max-width: 100%;
  width: 570px;
}
.shop-west-contents .right-wrap .right-inner figure:first-of-type {
  margin: 0 50px 0 auto;
  width: 518px;
}
.shop-west-contents .right-wrap .right-inner p {
  margin-top: 25px;
  padding-right: 110px;
}

@media only screen and (max-width: 1200px) {
  .shop-west-contents {
    height: 1340px;
  }
  .shop-west-contents .left-wrap {
    width: 50%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }
  .shop-west-contents .left-wrap .left-inner .text {
    padding: 60px 0 0 50px;
    margin: 0 auto;
  }
  .shop-west-contents .left-wrap .left-inner .text h3 {
    font-size: 2.5rem;
    font-family: "Shippori Mincho B1", serif;
    font-weight: bold;
    line-height: 2.16em;
    color: #222222;
  }
  .shop-west-contents .left-wrap .left-inner .text p {
    margin-top: 30px;
  }
  .shop-west-contents .left-wrap .left-inner figure {
    margin: 50px auto 0 0;
    width: 450px;
    max-width: 100%;
  }
  .shop-west-contents .right-wrap {
    width: 53%;
  }
  .shop-west-contents .right-wrap .right-inner figure {
    margin: 55px 0 0 auto;
    max-width: 100%;
    width: 500px;
  }
  .shop-west-contents .right-wrap .right-inner figure:first-of-type {
    margin: 0 50px 0 auto;
    width: 450px;
  }
  .shop-west-contents .right-wrap .right-inner p {
    margin-top: 25px;
    padding-right: 50px;
  }
}
@media only screen and (max-width:1024px) {
  .shop-west-contents {
    height: auto;
    padding: 60px 0 0;
  }
  .shop-west-contents .left-wrap {
    width: 100%;
    position: relative;
  }
  .shop-west-contents .left-wrap .left-inner .text {
    padding: 0 20px;
    width: 100%;
  }
  .shop-west-contents .left-wrap .left-inner .text h3 {
    font-size: 2rem;
    line-height: 2em;
  }
  .shop-west-contents .left-wrap .left-inner .text p {
    margin-top: 20px;
  }
  .shop-west-contents .left-wrap .left-inner .man {
    display: block;
    margin: 20px 0 0 auto;
    width: 62.3%;
    max-width: 500px;
  }
  .shop-west-contents .left-wrap .left-inner figure:nth-of-type(2) {
    margin: -15% auto 0 0;
    width: 71.8%;
    height: auto;
    max-height: 500px;
  }
  .shop-west-contents .right-wrap {
    width: 100%;
    position: relative;
    padding-bottom: 60px;
  }
  .shop-west-contents .right-wrap .right-inner .man {
    display: none;
  }
  .shop-west-contents .right-wrap .right-inner p {
    margin: 35px auto 0;
    width: 100%;
    padding: 0 20px;
  }
  .shop-west-contents .right-wrap .right-inner figure {
    margin-top: 40px;
    width: 85.7%;
  }
}
.recommend-item-wrap {
  margin: 0 auto;
  position: relative;
  padding-top: 120px;
}
.recommend-item-wrap.west {
  background: url("./img/under/bg_west01.jpg") repeat;
}
.recommend-item-wrap.east {
  background: #FEFFF0;
}

.recommend-item__inner {
  width: 1156px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.recommend-item__inner h3 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.6em;
  font-family: "Shippori Mincho B1", serif;
  margin-top: 60px;
}
.recommend-item__inner h3 + p {
  margin-top: 30px;
}
.recommend-item__inner h4 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.22em;
  font-family: "Shippori Mincho B1", serif;
  margin-top: 10px;
}
.recommend-item__inner h4 + p {
  margin-top: 5px;
  line-height: 1.67;
}
.recommend-item__inner .grid-cmn:first-of-type {
  margin-top: 20px;
}
.recommend-item__inner .grid-cmn:nth-of-type(2) {
  margin: 5px -15px 0;
}
.recommend-item__inner .grid-cmn:nth-of-type(2) .col {
  padding: 0 15px;
}
.recommend-item__inner .grid-cmn a {
  text-decoration: none;
  display: block;
  color: #222222;
}

@media only screen and (max-width:1024px) {
  .recommend-item__inner h3 {
    margin-top: 0;
  }
}
@media only screen and (max-width:768px) {
  .recommend-item-wrap {
    padding-top: 60px;
  }
  .recommend-item__inner {
    width: 1156px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .recommend-item__inner h3 {
    font-size: 2rem;
    line-height: 2em;
    margin-top: 25px;
  }
  .recommend-item__inner h3 + p {
    margin-top: 15px;
  }
  .recommend-item__inner h4 {
    font-size: 1.7rem;
    line-height: 1.59em;
    margin-top: 20px;
  }
  .recommend-item__inner h4 + p {
    margin-top: 10px;
  }
  .recommend-item__inner .grid-cmn:first-of-type {
    margin-top: 0;
  }
  .recommend-item__inner .grid-cmn:first-of-type .col:first-of-type {
    order: 2;
  }
  .recommend-item__inner .grid-cmn:first-of-type .col:nth-of-type(2) {
    order: 1;
  }
  .recommend-item__inner .grid-cmn:nth-of-type(2) {
    margin: 5px -15px 0;
  }
  .recommend-item__inner .grid-cmn:nth-of-type(2) .col {
    padding: 0 15px;
  }
}
.order {
  width: 100%;
  margin: 120px auto 0;
  color: #ffffff;
  padding: 0 20px 120px;
}
.order__inner {
  background: url("./img/under/bg_order.jpg") no-repeat center/contain;
  margin: 0 auto;
  width: 1156px;
  max-width: 100%;
  padding: 60px;
  position: relative;
}
.order__inner .grid-cmn {
  margin: 0 -30px;
}
.order__inner .grid-cmn .col {
  margin-top: 0;
  padding: 0 30px;
}
.order__inner .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.order h3 {
  font-size: 3rem;
  line-height: 1.8em;
  font-weight: bold;
  font-family: "Shippori Mincho B1", serif;
}
.order p {
  margin-top: 30px;
}

@media only screen and (max-width:1024px) {
  .order__inner {
    padding: 50px 25px;
  }
  .order__inner .grid-cmn {
    margin: 0 -15px;
  }
  .order__inner .grid-cmn .col {
    margin-top: 0;
    padding: 0 15px;
  }
  .order__inner h3 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width:768px) {
  .order {
    margin: 50px auto 0;
    padding-bottom: 60px;
  }
  .order__inner {
    background: url("./img/under/bg_order_sp.jpg") no-repeat center/contain;
    position: relative;
    padding: 142.5714% 0 0 0;
  }
  .order__inner .grid-cmn {
    margin: 0 auto;
    top: 0;
    left: 0;
    position: absolute;
    padding: 10% 7%;
  }
  .order__inner .grid-cmn .col {
    margin-top: 0;
    padding: 0;
  }
  .order h3 {
    font-size: 1.8rem;
    line-height: 3em;
    margin-top: 10px;
    text-align: center;
  }
  .order p {
    margin-top: 5px;
  }
}
@media only screen and (max-width:389px) {
  .order {
    margin: 50px auto 0;
  }
  .order__inner .grid-cmn {
    padding: 8% 5%;
  }
  .order__inner .grid-cmn .col {
    margin-top: 0;
    padding: 0;
  }
  .order h3 {
    margin-top: 0;
    line-height: 2.8em;
  }
  .order p {
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.8em;
  }
}
.top-access.shop {
  position: relative;
  padding: 120px 0 100px;
}
.top-access.shop .shop-gmap {
  margin: 100px auto 0;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 650px;
}
.top-access.shop .shop-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width:768px) {
  .top-access.shop {
    padding: 65px 0 0;
  }
  .top-access.shop .shop-gmap {
    margin: 40px auto 0;
    width: 100%;
    padding-top: 550px;
  }
  .top-access.shop .shop-gmap iframe {
    padding: 0 20px;
  }
}
.shop-link-wrap {
  position: relative;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}
.shop-link-wrap .shop-link {
  display: block;
  text-decoration: none;
  width: 660px;
  height: 238px;
  max-width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.shop-link-wrap .shop-link:hover {
  opacity: 0.8;
}

@media only screen and (max-width:768px) {
  .shop-link-wrap {
    margin-top: 80px;
  }
  .shop-link-wrap .shop-link {
    display: block;
    text-decoration: none;
    width: 300px;
    min-width: 65%;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  .shop-link-wrap .shop-link:hover {
    opacity: 0.8;
  }
}
.privacy {
  margin: 215px auto 0;
  width: 928px;
  max-width: 100%;
  padding: 0 20px;
}
.privacy h1 + p {
  margin-top: 55px;
}
.privacy h3 {
  margin-top: 45px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.73em;
}
.privacy h3 + p {
  margin-top: 15px;
  font-size: 1.5rem;
  line-height: 1.73em;
}

@media only screen and (max-width:768px) {
  .privacy {
    margin-top: 140px;
  }
  .privacy h1 + p {
    margin-top: 60px;
    line-height: 1.6em;
  }
  .privacy h3 {
    margin-top: 42px;
  }
  .privacy h3 + p {
    margin-top: 15px;
    line-height: 1.6em;
  }
}/*# sourceMappingURL=common.css.map */