@charset "UTF-8";
div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 768px) {
  .disp_pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .disp_pc {
    display: block;
  }
}

@media (max-width: 768px) {
  .disp_sp {
    display: block;
  }
}
@media (min-width: 769px) {
  .disp_sp {
    display: none;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: YakuHanMP, "Shippori Mincho", serif;
  background-color: #fdf8f3;
  color: #3a2a1a;
  line-height: 1.8;
  overflow-x: hidden;
}
@media (min-width: 769px) {
  body {
    min-width: 998px;
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.fadein.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-from-left {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
.slide-from-left.is-visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-from-bottom {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
.slide-from-bottom.is-visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-from-right {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  -webkit-transition: -webkit-transform 0.7s ease;
  transition: -webkit-transform 0.7s ease;
  transition: transform 0.7s ease;
  transition: transform 0.7s ease, -webkit-transform 0.7s ease;
}
.slide-from-right.is-visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.parallax-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.parallax-deco {
  display: block;
  position: absolute;
  top: 0;
  opacity: 0.5;
  will-change: transform;
}
.parallax-deco img {
  display: block;
  width: 160px;
}
@media (max-width: 768px) {
  .parallax-deco img {
    width: 90px;
  }
}

.deco_tanuki {
  position: absolute;
  overflow: hidden;
}
.deco_tanuki img {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

@media (max-width: 768px) {
  p {
    font-size: 3.2vw;
    line-height: 1.75;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

figure.photo_wrap {
  overflow: hidden;
}
@media (max-width: 768px) {
  figure.photo_wrap {
    border-radius: 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  figure.photo_wrap {
    border-radius: 20px;
  }
}

body {
  background-image: url(../images/common/bg_001.jpg);
  background-color: #fff;
}

.container {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .container {
    width: 100vw;
    overflow-x: hidden;
  }
}

@media (min-width: 769px) {
  section.last {
    padding-bottom: 150px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .header {
    position: fixed;
    background-image: url(../images/common/header_bg_sp.png);
    background-size: 100% auto;
    width: 100vw;
    height: 77px;
    margin-bottom: -27px;
  }
}
@media (min-width: 769px) {
  .header {
    background-image: url(../images/common/bg_001.jpg);
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 32.5333333333vw;
    top: 20px;
    left: 5.3333333333vw;
    position: absolute;
    z-index: 100;
  }
}
@media (min-width: 769px) {
  .header__logo {
    background-image: url(../images/common/header_logo_bg@2x.png);
    background-size: 409px auto;
    background-position: right bottom;
    width: 409px;
    height: 148px;
    position: absolute;
    left: 0;
    top: -1px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__logo a {
  display: block;
}
@media (min-width: 769px) {
  .header__logo a {
    width: 238px;
    height: auto;
    margin-left: 45px;
  }
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .header__inner {
    pointer-events: none;
  }
}
@media (min-width: 769px) {
  .header__inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 90px;
  }
}
@media (max-width: 768px) {
  .header__inner.opened {
    pointer-events: inherit;
  }
}
.header__inner.opened .header__nav {
  opacity: 1;
  pointer-events: inherit;
  top: 0;
}
@media (max-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    pointer-events: none;
    position: relative;
  }
}
@media (min-width: 769px) {
  .header__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}
.header__nav a {
  color: #000;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .header__nav a {
    display: block;
    font-size: 3.7333333333vw;
    padding: 0.5em 0;
  }
}
@media (min-width: 769px) {
  .header__nav a {
    font-size: 16px;
  }
}
.header__nav a:hover {
  color: #c8611a;
}
@media (max-width: 768px) {
  .header__nav {
    background-color: #ffffff;
    width: 100vw;
    height: 100vh;
  }
}
@media (max-width: 768px) {
  .header .sp_btn {
    background-image: url(../images/common/sp_menu_btn_d.png);
    background-size: contain;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    top: 4vw;
    right: 6.6666666667vw;
    position: absolute;
    z-index: 100;
    pointer-events: inherit !important;
  }
}
@media (min-width: 769px) {
  .header .sp_btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .access {
    padding: 10vw 0;
  }
}
@media (min-width: 769px) {
  .access {
    margin-top: 100px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .access .access__inner {
    margin: 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  .access .access__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.access .access__inner .title {
  color: #953725;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  .access .access__inner .title {
    font-size: 4.8vw;
    margin-bottom: 0.5em;
  }
}
@media (min-width: 769px) {
  .access .access__inner .title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
.access .access__inner .map {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
}
@media (max-width: 768px) {
  .access .access__inner .map {
    height: 60vw;
  }
}
@media (min-width: 769px) {
  .access .access__inner .map {
    width: 998px;
    height: 500px;
  }
}
.access .access__inner .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access .access__inner .tel {
  text-align: center;
}
@media (max-width: 768px) {
  .access .access__inner .tel {
    font-size: 3.2vw;
    line-height: 1.75;
    margin-top: 1em;
  }
}
@media (min-width: 769px) {
  .access .access__inner .tel {
    margin-top: 1.5em;
    font-size: 16px;
  }
}

.reservation_wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.reservation_wrap.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.reservation_wrap.is-docked {
  position: relative;
  bottom: auto;
  left: auto;
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
}
@media (max-width: 768px) {
  .reservation_wrap {
    width: 100vw;
  }
}
.reservation_wrap .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .reservation_wrap .inner {
    width: 100%;
  }
}
@media (min-width: 769px) {
  .reservation_wrap .inner {
    width: 1200px;
  }
}
.reservation_wrap .inner a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .reservation_wrap .inner a {
    font-size: 3.2vw;
    padding: 3.3333333333vw 0;
    width: 50vw;
  }
}
@media (min-width: 769px) {
  .reservation_wrap .inner a {
    border-radius: 5px 5px 0 0;
    font-size: 16px;
    width: 288px;
    height: 60px;
  }
}
.reservation_wrap .inner a span {
  display: inline;
}
.reservation_wrap .inner a span:before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .reservation_wrap .inner a span:before {
    margin-right: 1.3333333333vw;
    width: 4vw;
    height: 4vw;
    top: 2px;
  }
}
@media (min-width: 769px) {
  .reservation_wrap .inner a span:before {
    top: 5px;
    margin-right: 10px;
    width: 24px;
    height: 24px;
  }
}
.reservation_wrap .inner a.plan {
  background-color: #2b7b3e;
}
.reservation_wrap .inner a.plan span:before {
  background-image: url(../images/common/reserv_icon_001@2x.png);
}
.reservation_wrap .inner a.calendar {
  background-color: #bf594b;
}
@media (min-width: 769px) {
  .reservation_wrap .inner a.calendar {
    margin-left: 15px;
  }
}
.reservation_wrap .inner a.calendar span:before {
  background-image: url(../images/common/reserv_icon_002@2x.png);
}

.footer {
  background: #512c1a;
  color: #fff;
  padding: 64px 16px 32px;
}
@media (max-width: 768px) {
  .footer {
    padding: 13.3333333333vw 0 16vw 0;
  }
}
.footer__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__logo {
  display: block;
}
@media (max-width: 768px) {
  .footer__logo {
    margin: 0 auto;
    width: 36vw;
  }
}
@media (min-width: 769px) {
  .footer__logo {
    width: 270px;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}
@media (min-width: 769px) {
  .footer__nav {
    position: absolute;
    top: 0;
    left: 725px;
  }
}
@media (min-width: 769px) {
  .footer__nav ul li {
    margin-bottom: 1em;
  }
}
.footer__nav a {
  color: #fff;
  letter-spacing: 0.05em;
}
@media (min-width: 769px) {
  .footer__nav a {
    font-size: 16px;
  }
}
.footer__nav a:before {
  content: "-";
  display: inline-block;
}
@media (min-width: 769px) {
  .footer__nav a:before {
    margin-right: 1em;
  }
}
.footer__nav a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer__info {
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  .footer__info {
    margin-top: 40px;
  }
}
.footer__info p {
  line-height: 2;
}
@media (max-width: 768px) {
  .footer__info p {
    font-size: 2.9333333333vw;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .footer__info p {
    font-size: 16px;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer__sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  .footer__sns {
    margin-top: 40px;
  }
}
.footer__sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer__sns a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.9333333333vw;
    padding: 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  .footer__sns a {
    font-size: 16px;
    margin-right: 20px;
  }
}
.footer__sns a:before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .footer__sns a:before {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    margin-right: 1.3333333333vw;
  }
}
@media (min-width: 769px) {
  .footer__sns a:before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}
.footer__sns a.insta:before {
  background-image: url(../images/common/footer_icon_insta@2x.png);
}
@media (max-width: 768px) {
  .footer__sns a.fb {
    border-left: 1px solid #fff;
  }
}
.footer__sns a.fb:before {
  background-image: url(../images/common/footer_icon_fb@2x.png);
}
@media (max-width: 768px) {
  .footer__sublink {
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  .footer__sublink {
    margin-top: 40px;
  }
}
.footer__sublink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .footer__sublink ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__sublink ul li {
  color: #fff;
}
@media (max-width: 768px) {
  .footer__sublink ul li {
    font-size: 2.9333333333vw;
  }
}
@media (min-width: 769px) {
  .footer__sublink ul li {
    font-size: 14px;
  }
}
.footer__sublink ul li:before {
  content: "｜";
  display: inline-block;
}
@media (min-width: 769px) {
  .footer__sublink ul li:before {
    margin: 0 0.5em;
  }
}
.footer__sublink ul li:first-child:before {
  display: none;
}
.footer__sublink ul li a {
  color: #fff;
}
@media (max-width: 768px) {
  .footer__banner {
    margin: 12vw auto 0 auto;
    width: 57.3333333333vw;
  }
}
@media (min-width: 769px) {
  .footer__banner {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
  }
}
.footer__banner a {
  display: block;
}
@media (max-width: 768px) {
  .footer__banner a {
    margin-bottom: 4vw;
  }
}
@media (min-width: 769px) {
  .footer__banner a {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .footer__copy {
    font-size: 2.6666666667vw;
    text-align: center;
  }
}
@media (min-width: 769px) {
  .footer__copy {
    position: absolute;
    font-size: 12px;
    right: 0;
    bottom: 0;
  }
}

a.feature__link {
  color: #953725;
  display: inherit;
  font-weight: 500;
}
@media (max-width: 768px) {
  a.feature__link {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 769px) {
  a.feature__link {
    font-size: 18px;
  }
}
a.feature__link:after {
  content: "";
  display: inline-block;
  background-image: url(../images/common/footstamp_btn_bg@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  a.feature__link:after {
    width: 5.0666666667vw;
    height: 5.0666666667vw;
    top: 1vw;
    margin-left: 0.5vw;
  }
}
@media (min-width: 769px) {
  a.feature__link:after {
    width: 24px;
    height: 24px;
    top: 5px;
    margin-left: 6px;
  }
}

#top section {
  position: relative;
}
#top .hero {
  position: relative;
}
@media (min-width: 769px) {
  #top .hero {
    background-image: url(../images/common/bg_001.jpg);
    background-repeat: repeat-y;
  }
}
#top .hero__img {
  position: relative;
}
#top .hero__img img {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #top .hero__img img {
    height: 300px;
  }
}
#top .hero__img:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/top/mv_corner@2x.png);
}
@media (max-width: 768px) {
  #top .hero__img:after {
    background-size: 27.2vw auto;
    background-position: left top;
    width: 27.2vw;
    height: 9.3333333333vw;
    bottom: -2.5vw;
    right: -10vw;
  }
}
@media (min-width: 769px) {
  #top .hero__img:after {
    background-size: 398px auto;
    background-position: left top;
    width: 398px;
    height: 148px;
    bottom: -50px;
    right: -180px;
  }
}
#top .hero__img img {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #top .hero__img img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  #top .hero__text .inner {
    margin: 0 6.6666666667vw;
    padding: 16vw 0 20vw 0;
  }
}
@media (min-width: 769px) {
  #top .hero__text .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 950px;
    margin: 150px auto 0 auto;
    padding-bottom: 200px;
  }
}
@media (max-width: 768px) {
  #top .hero__text .inner p {
    font-size: 3.7333333333vw;
    line-height: 2;
    letter-spacing: 0.12em;
  }
}
@media (min-width: 769px) {
  #top .hero__text .inner p {
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.12em;
    margin-top: 150px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
@media (max-width: 768px) {
  #top .hero__text .inner p.title {
    font-size: 4.8vw;
  }
}
@media (min-width: 769px) {
  #top .hero__text .inner p.title {
    font-size: 32px;
    line-height: 1.85;
    letter-spacing: 0.2em;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  #top .hero__text .inner p.catch {
    width: 50vw;
    margin: 5vw auto;
  }
}
@media (min-width: 769px) {
  #top .hero__text .inner p.catch {
    margin: 0 100px;
    width: 288px;
  }
}
#top .hero__text .inner p .signature {
  display: block;
}
@media (max-width: 768px) {
  #top .hero__text .inner p .signature {
    margin-top: 1.5em;
    text-align: right;
  }
}
@media (min-width: 769px) {
  #top .hero__text .inner p .signature {
    margin-top: 285px;
  }
}
#top .hero__text .deco_tanuki {
  position: absolute;
  overflow: hidden;
}
@media (min-width: 769px) {
  #top .hero__text .deco_tanuki.bijin_001 {
    width: 108px;
    height: 122px;
    bottom: 0;
    margin: auto;
    left: -700px;
    right: 0;
  }
}
#top .hero__catch {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 768px) {
  #top .hero__catch {
    font-size: 1rem;
  }
}
#top .reservation {
  background-image: url(../images/top/reservation_bg.jpg);
  padding: 32px 16px;
}
#top .reservation__inner {
  margin: 0 auto;
}
@media (min-width: 769px) {
  #top .reservation__inner {
    max-width: 1200px;
  }
}
#top .reservation__title {
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  #top .reservation__title {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #top .reservation__title {
    font-size: 40px;
  }
}
#top .reservation .reservation_wrap_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #aaa;
  background-color: #fff;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner {
    width: 95%;
  }
}
@media (min-width: 769px) {
  #top .reservation .reservation_wrap_inner {
    display: table;
    width: 998px;
  }
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner h3 {
    background-color: #42210d;
    color: #fff;
    display: block;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    font-size: 18px;
    padding: 15px 0;
  }
  #top .reservation .reservation_wrap_inner h3 span {
    display: block;
    font-size: 65%;
  }
}
@media (min-width: 769px) {
  #top .reservation .reservation_wrap_inner h3 {
    display: none;
  }
}
#top .reservation .reservation_wrap_inner .search_wrap {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner .search_wrap {
    padding: 5vw;
  }
}
@media (min-width: 769px) {
  #top .reservation .reservation_wrap_inner .search_wrap {
    padding: 20px 30px;
  }
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner .search_wrap form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
        align-items: flex-end;
  }
}
@media (min-width: 769px) {
  #top .reservation .reservation_wrap_inner .search_wrap form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
        align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
#top .reservation .reservation_wrap_inner .search_wrap .date_489ban {
  width: auto;
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner .search_wrap .date_489ban {
    width: 85%;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner .search_wrap .date_489ban dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
  }
  #top .reservation .reservation_wrap_inner .search_wrap .date_489ban dd label {
    font-size: 80%;
  }
}
#top .reservation .reservation_wrap_inner .search_wrap .date_489ban input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 3px;
  border: 1px #000000 solid;
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner .search_wrap .date_489ban input[type=date] {
    width: 150px;
    height: 36px;
    line-height: 35px;
    font-size: 16px;
    border-radius: 3px;
    margin-right: 10px;
  }
}
@media (min-width: 769px) {
  #top .reservation .reservation_wrap_inner .search_wrap .date_489ban input[type=date] {
    padding: 0 0 0 20px;
    width: 180px;
    height: 36px;
    line-height: 35px;
    font-size: 16px;
    margin-right: 10px;
  }
}
#top .reservation .reservation_wrap_inner .search_wrap .inbox_489ban {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 769px) {
  #top .reservation .reservation_wrap_inner .search_wrap .inbox_489ban .stay_489ban {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner .search_wrap .inbox_489ban .stay_489ban,
  #top .reservation .reservation_wrap_inner .search_wrap .inbox_489ban .room_489ban {
    padding-right: 5vw;
  }
}
#top .reservation .reservation_wrap_inner .search_wrap .inbox_489ban select {
  background: url(../images/common/bg_select.png) no-repeat right 7px center #ffffff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 20px 0 10px;
  outline: none;
  width: 56px;
  height: 36px;
  line-height: 35px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 3px;
  border: 1px #000000 solid;
}
#top .reservation .reservation_wrap_inner .search_wrap button {
  background-color: #42210d;
  border-radius: 5px;
  background-image: url(../images/common/icon_search.png);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: left 40px center;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 16px 0 16px 20px;
  width: 210px;
}
@media (max-width: 768px) {
  #top .reservation .reservation_wrap_inner .search_wrap button {
    width: 85%;
    margin-top: 20px;
  }
}
#top .reservation .reservation_wrap_inner .search_wrap button:hover {
  background-color: #bc8079;
  cursor: pointer;
}
#top .reservation .reservation_wrap_inner .search_wrap ul {
  margin-top: 20px;
}
#top .reservation .reservation_wrap_inner .search_wrap ul li {
  display: inline-block;
}
#top .reservation .reservation_wrap_inner .search_wrap ul li a {
  color: #000;
  font-size: 14px;
  background-image: url(../images/common/icon_arrow.png);
  background-repeat: no-repeat;
  background-size: 14px 14px;
  margin: 0 20px 0 0;
  padding: 0 0 0 20px;
}
@media (max-width: 768px) {
  #top .banner-strip {
    margin-top: 40px;
  }
}
@media (min-width: 769px) {
  #top .banner-strip {
    margin-top: 45px;
  }
}
@media (max-width: 768px) {
  #top .banner-strip .inner {
    margin: 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .banner-strip .inner {
    width: 1200px;
  }
}
#top .banner-strip .inner ul {
  width: 100%;
}
@media (max-width: 768px) {
  #top .banner-strip .inner ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 20px auto 20px auto 20px auto;
    grid-template-rows: repeat(4, auto);
    gap: 20px;
  }
}
@media (min-width: 769px) {
  #top .banner-strip .inner ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
#top .feature {
  position: relative;
}
@media (max-width: 768px) {
  #top .feature {
    margin-top: 24vw;
  }
}
@media (min-width: 769px) {
  #top .feature {
    margin-top: 280px;
  }
}
#top .feature .inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  #top .feature .inner {
    height: 1080px;
  }
}
@media (max-width: 768px) {
  #top .feature .inner .text_box {
    padding: 44vw 6.6666666667vw 0;
  }
}
@media (min-width: 769px) {
  #top .feature .inner .text_box {
    padding-top: 100px;
    margin-left: 102px;
    width: 390px;
  }
}
#top .feature .inner .text_box h2 {
  color: #953725;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  #top .feature .inner .text_box h2 {
    font-size: 6.4vw;
  }
}
@media (min-width: 769px) {
  #top .feature .inner .text_box h2 {
    font-size: 48px;
  }
}
#top .feature .inner .text_box p {
  color: #000000;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media (max-width: 768px) {
  #top .feature .inner .text_box p {
    font-size: 3.2vw;
    line-height: 2;
  }
}
@media (min-width: 769px) {
  #top .feature .inner .text_box p {
    font-size: 16px;
    line-height: 2;
  }
}
#top .feature .inner .text_box a.feature__link {
  text-align: right;
}
#top .feature .photo img {
  width: auto;
  height: auto;
}
#top .feature .photo.photo_large {
  overflow: hidden;
}
@media (max-width: 768px) {
  #top .feature .photo.photo_large {
    position: relative;
    width: 93.3333333333vw;
    height: 78.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .feature .photo.photo_large {
    position: absolute;
    width: 49.4444444444vw;
    min-width: 600px;
    height: auto;
  }
}
@media (min-width: 1440px) {
  #top .feature .photo.photo_large {
    height: 600px;
  }
}
#top .feature .photo.photo_small {
  overflow: hidden;
}
@media (max-width: 768px) {
  #top .feature .photo.photo_small {
    position: absolute;
    border-radius: 2.6666666667vw;
    width: 48.8vw;
    height: 36.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .feature .photo.photo_small {
    position: absolute;
    border-radius: 20px;
    width: 34.0277777778vw;
    min-width: 400px;
    height: 25.5555555556vw;
    min-height: 300px;
  }
}
@media (min-width: 1440px) {
  #top .feature .photo.photo_small {
    width: 490px;
    height: 368px;
  }
}
@media (max-width: 768px) {
  #top .feature.feature--right .photo_001 {
    border-radius: 2.6666666667vw 0 0 2.6666666667vw;
    margin-left: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .feature.feature--right .photo_001 {
    border-radius: 20px 0 0 20px;
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  #top .feature.feature--right .photo_002 {
    top: -4.6666666667vw;
    left: -3.3333333333vw;
  }
}
@media (min-width: 769px) {
  #top .feature.feature--right .photo_002 {
    left: 0;
    bottom: 250px;
  }
}
@media (max-width: 768px) {
  #top .feature.feature--right .photo_003 {
    top: 3.3333333333vw;
    left: 48.9333333333vw;
  }
}
@media (min-width: 769px) {
  #top .feature.feature--right .photo_003 {
    bottom: 0;
    left: 304px;
  }
}
@media (max-width: 768px) {
  #top .feature.feature--left .text_box {
    padding-top: 46.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .feature.feature--left .text_box {
    margin-left: 710px;
  }
}
@media (max-width: 768px) {
  #top .feature.feature--left .photo_001 {
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
    margin-right: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .feature.feature--left .photo_001 {
    border-radius: 0 20px 20px 0;
    top: 0;
    left: 0;
  }
}
@media (max-width: 768px) {
  #top .feature.feature--left .photo_002 {
    top: 3.3333333333vw;
    left: 4vw;
  }
}
@media (min-width: 769px) {
  #top .feature.feature--left .photo_002 {
    right: 0;
    bottom: 250px;
  }
}
@media (max-width: 768px) {
  #top .feature.feature--left .photo_003 {
    top: -4.6666666667vw;
    right: -3.3333333333vw;
  }
}
@media (min-width: 769px) {
  #top .feature.feature--left .photo_003 {
    bottom: 0;
    right: 304px;
  }
}
#top .feature.rooms .deco {
  position: absolute;
  -webkit-animation: deco-snap-rotate 2s steps(1) infinite;
          animation: deco-snap-rotate 2s steps(1) infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media (max-width: 768px) {
  #top .feature.rooms .deco {
    display: none;
  }
}
@media (min-width: 769px) {
  #top .feature.rooms .deco {
    width: 306px;
    height: auto;
    top: -250px;
    right: -50px;
  }
}
#top .feature.experience .deco {
  position: absolute;
  -webkit-animation: deco-snap-rotate 2s steps(1) infinite;
          animation: deco-snap-rotate 2s steps(1) infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media (min-width: 769px) {
  #top .feature.experience .deco {
    width: 228px;
    height: auto;
    top: -150px;
    right: -15px;
  }
}
@media (max-width: 768px) {
  #top .panorama {
    margin-top: 30.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .panorama {
    margin-top: 250px;
  }
}
#top .panorama__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 768px) {
  #top .panorama__img img {
    height: 93.3333333333vw;
  }
}
@media (min-width: 769px) {
  #top .panorama__img img {
    height: 850px;
  }
}
#top .plans {
  background: #ffffff;
}
@media (max-width: 768px) {
  #top .plans {
    padding: 17.3333333333vw 0;
  }
}
@media (min-width: 769px) {
  #top .plans {
    margin-top: 130px;
  }
}
@media (max-width: 768px) {
  #top .plans .inner {
    margin: 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #top .plans .inner {
    max-width: 998px;
    margin: 0 auto;
    padding: 100px 0;
  }
}
#top .plans .inner .plans__title {
  color: #953725;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  line-height: 1;
}
@media (max-width: 768px) {
  #top .plans .inner .plans__title {
    font-size: 4.8vw;
  }
}
@media (min-width: 769px) {
  #top .plans .inner .plans__title {
    font-size: 32px;
  }
}
#top .plans .inner .plans__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 768px) {
  #top .plans .inner .plans__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  #top .plan-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 769px) {
  #top .plan-card:nth-of-type(2) {
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}
@media (min-width: 769px) {
  #top .plan-card:nth-of-type(3) {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}
@media (max-width: 768px) {
  #top .plan-card__img {
    width: 27.3333333333vw;
    height: 20vw;
  }
}
#top .plan-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #top .plan-card__img img {
    width: 27.3333333333vw;
    height: 20vw;
  }
}
@media (min-width: 769px) {
  #top .plan-card__img img {
    width: 100%;
    height: 180px;
  }
}
#top .plan-card__title {
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 768px) {
  #top .plan-card__title {
    font-size: 3.4666666667vw;
  }
}
@media (min-width: 769px) {
  #top .plan-card__title {
    font-size: 16px;
    margin: 0.8em 0;
  }
}
@media (max-width: 768px) {
  #top .plan-card__body {
    width: 57.0666666667vw;
  }
}
#top .plan-card__text {
  color: #000000;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #top .plan-card__text {
    font-size: 2.9333333333vw;
    margin-top: 0.8em;
  }
}
@media (min-width: 769px) {
  #top .plan-card__text {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #top .bijin_001 {
    bottom: 0;
    left: 5vw;
    width: 16vw;
  }
}
@media (min-width: 769px) {
  #top .bijin_001 {
    width: 108px;
    height: 138px;
    bottom: 0;
    margin: auto;
    left: -700px;
    right: 0;
  }
}
@media (min-width: 769px) {
  #top .geinou_001 {
    width: 132px;
    height: 122px;
    top: -122px;
    margin: auto;
    left: 0;
    right: -800px;
  }
}
@media (max-width: 768px) {
  #top .kodakara_001 {
    bottom: -7vw;
    width: 27vw;
  }
}
@media (min-width: 769px) {
  #top .kodakara_001 {
    width: 154px;
    height: 120px;
    margin: auto;
    left: 0;
  }
}

@-webkit-keyframes deco-snap-rotate {
  0%, 49% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50%, 100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@keyframes deco-snap-rotate {
  0%, 49% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50%, 100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
body.sub .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  body.sub .btn {
    border-radius: 0.6666666667vw;
    font-size: 3.2vw;
    width: 100%;
    height: 10.6666666667vw;
  }
}
@media (min-width: 769px) {
  body.sub .btn {
    border-radius: 5px;
    font-size: 16px;
    width: 290px;
    height: 50px;
  }
}
body.sub .btn.square {
  background-color: #953725;
  background-image: url(../images/common/btn_square_bg@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
}
@media (max-width: 768px) {
  body.sub .btn.square {
    background-position: right 2.6666666667vw top;
  }
}
@media (min-width: 769px) {
  body.sub .btn.square {
    background-position: right 10px top;
  }
}
body.sub .hero {
  position: relative;
}
@media (max-width: 768px) {
  body.sub .hero {
    margin-top: 12vw;
  }
}
body.sub .hero__img {
  position: relative;
}
@media (max-width: 768px) {
  body.sub .hero__img {
    width: 100%;
    height: 300px;
  }
}
body.sub .hero__img img {
  width: 100%;
  height: 770px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  body.sub .hero__img img {
    width: auto;
    height: 300px;
  }
}
@media (max-width: 768px) {
  body.sub .hero__text {
    margin-top: 16.6666666667vw;
  }
}
@media (min-width: 769px) {
  body.sub .hero__text {
    margin-top: 90px;
  }
}
body.sub .hero__text .inner h1 {
  color: #953725;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  body.sub .hero__text .inner h1 {
    font-size: 5.3333333333vw;
    letter-spacing: 0.15em;
  }
}
@media (min-width: 769px) {
  body.sub .hero__text .inner h1 {
    font-size: 48px;
    letter-spacing: 0.15em;
  }
}
@media (max-width: 768px) {
  body.sub .hero__text .inner p.lead {
    font-size: 3.2vw;
    line-height: 1.75;
    text-align: center;
    margin-top: 1.5em;
  }
}
@media (min-width: 769px) {
  body.sub .hero__text .inner p.lead {
    font-size: 16px;
    line-height: 2.25;
    margin-top: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  body.sub .main_contents {
    margin-top: 21.3333333333vw;
    margin-bottom: 26.6666666667vw;
  }
}
@media (min-width: 769px) {
  body.sub .main_contents {
    margin-top: 180px;
    margin-bottom: 200px;
  }
}
body.sub .knowledge {
  background-image: url(../images/common/knowledge_line_bottom@2x.png);
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  body.sub .knowledge {
    background-size: auto 1.8666666667vw;
    margin: 21.3333333333vw 6.6666666667vw 0 6.6666666667vw;
    padding-bottom: 3vw;
  }
}
@media (min-width: 769px) {
  body.sub .knowledge {
    background-position: center bottom;
    background-size: 100% auto;
    margin-top: 90px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
    width: 998px;
  }
}
body.sub .knowledge h2 {
  width: 100%;
}
@media (max-width: 768px) {
  body.sub .knowledge h2 {
    height: 20vw;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  body.sub .knowledge h2 img {
    width: auto;
    height: 20vw;
    max-width: inherit;
  }
}
@media (max-width: 768px) {
  body.sub .knowledge .inner {
    margin-top: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  body.sub .knowledge .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 30px;
  }
}
body.sub .knowledge .inner .text_wrap h3 {
  font-weight: 500;
  letter-spacing: 0.075em;
}
@media (max-width: 768px) {
  body.sub .knowledge .inner .text_wrap h3 {
    font-size: 4.2666666667vw;
    line-height: 1.75;
  }
}
@media (min-width: 769px) {
  body.sub .knowledge .inner .text_wrap h3 {
    font-size: 24px;
  }
}
body.sub .knowledge .inner .text_wrap p {
  text-align: justify;
}
@media (max-width: 768px) {
  body.sub .knowledge .inner .text_wrap p {
    margin-top: 1em;
  }
}
@media (min-width: 769px) {
  body.sub .knowledge .inner .text_wrap p {
    font-size: 14px;
    line-height: 2;
    margin-top: 1em;
  }
}
@media (max-width: 768px) {
  body.sub .knowledge .inner .photo_wrap {
    margin: 0 auto;
    width: 57.0666666667vw;
  }
}
@media (min-width: 769px) {
  body.sub .knowledge .inner .photo_wrap {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 75px;
    width: 330px;
  }
}
@media (max-width: 768px) {
  body.sub .knowledge .inner .photo_wrap .photo_wrap__inner {
    margin: 8vw auto;
  }
}
@media (min-width: 769px) {
  body.sub .knowledge .inner .photo_wrap .photo_wrap__inner {
    margin-bottom: 25px;
  }
}
body.sub .knowledge .inner .photo_wrap .photo_wrap__inner .caption {
  margin-top: 0.8em;
  text-align: justify;
}
@media (max-width: 768px) {
  body.sub .knowledge .inner .photo_wrap .photo_wrap__inner .caption {
    font-size: 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  body.sub .knowledge .inner .photo_wrap .photo_wrap__inner .caption {
    font-size: 14px;
    line-height: 1.75;
  }
}

#cuisine .main_contents .intro .intro_wrap {
  position: relative;
}
@media (max-width: 768px) {
  #cuisine .main_contents .intro .intro_wrap {
    margin-top: 17.3333333333vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .intro .intro_wrap {
    margin: 80px auto 0 auto;
    padding-top: 100px;
    width: 1200px;
  }
}
#cuisine .main_contents .intro .intro_wrap .text_wrap {
  background-color: #fff;
}
@media (max-width: 768px) {
  #cuisine .main_contents .intro .intro_wrap .text_wrap {
    margin: 0 6.6666666667vw;
    padding: 80vw 5.3333333333vw 8vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .intro .intro_wrap .text_wrap {
    width: 590px;
    height: 460px;
    padding: 50px 60px;
  }
}
#cuisine .main_contents .intro .intro_wrap .text_wrap h2 {
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  #cuisine .main_contents .intro .intro_wrap .text_wrap h2 {
    background-color: #953725;
    color: #fff;
    font-size: 6.1333333333vw;
    letter-spacing: 0.075em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 17.3333333333vw;
    height: 53.3333333333vw;
    position: absolute;
    top: -2.6666666667vw;
    left: 6.6666666667vw;
    z-index: 10;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .intro .intro_wrap .text_wrap h2 {
    color: #953725;
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  #cuisine .main_contents .intro .intro_wrap .text_wrap h2 .small {
    font-size: 65%;
    margin-bottom: 0.25em;
  }
}
@media (max-width: 768px) {
  #cuisine .main_contents .intro .intro_wrap .text_wrap p {
    font-size: 3.2vw;
    line-height: 1.75;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .intro .intro_wrap .text_wrap p {
    font-size: 16px;
    line-height: 2;
    margin-top: 35px;
    width: 380px;
  }
}
#cuisine .main_contents .intro .intro_wrap figure {
  position: absolute;
}
@media (max-width: 768px) {
  #cuisine .main_contents .intro .intro_wrap figure {
    top: 0;
    width: 100%;
    height: 65.3333333333vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .intro .intro_wrap figure {
    border-radius: 20px;
    overflow: hidden;
    width: 694px;
    top: 0;
    right: 0;
  }
}
#cuisine .main_contents .intro .intro_wrap:first-of-type {
  margin-top: 0;
}
@media (min-width: 769px) {
  #cuisine .main_contents .intro .intro_wrap:nth-last-child(even) .text_wrap {
    margin: 0 0 0 auto;
    padding-left: 155px;
  }
}
@media (max-width: 768px) {
  #cuisine .main_contents .intro .intro_wrap:nth-last-child(even) .text_wrap h2 {
    left: auto;
    right: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .intro .intro_wrap:nth-last-child(even) figure {
    left: 0;
    right: auto;
  }
}
@media (max-width: 768px) {
  #cuisine .main_contents .rooms {
    margin: 20vw 6.6666666667vw 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .rooms {
    margin-top: 160px;
  }
}
@media (max-width: 768px) {
  #cuisine .main_contents .rooms .rooms_wrap {
    margin-top: 12vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .rooms .rooms_wrap {
    margin: 180px auto 0 auto;
    width: 998px;
  }
}
#cuisine .main_contents .rooms .rooms_wrap h2 {
  color: #953725;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  #cuisine .main_contents .rooms .rooms_wrap h2 {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .rooms .rooms_wrap h2 {
    font-size: 32px;
  }
}
#cuisine .main_contents .rooms .rooms_wrap p.lead {
  text-align: center;
}
@media (max-width: 768px) {
  #cuisine .main_contents .rooms .rooms_wrap p.lead {
    font-size: 3.2vw;
    margin-top: 0.5em;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .rooms .rooms_wrap p.lead {
    font-size: 16px;
    line-height: 2;
    margin-top: 1em;
  }
}
#cuisine .main_contents .rooms .rooms_wrap figure {
  overflow: hidden;
}
@media (max-width: 768px) {
  #cuisine .main_contents .rooms .rooms_wrap figure {
    border-radius: 1.3333333333vw;
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #cuisine .main_contents .rooms .rooms_wrap figure {
    border-radius: 20px;
    margin-top: 50px;
  }
}
#cuisine .main_contents .rooms .rooms_wrap:first-of-type {
  margin-top: 0;
}

@media (max-width: 768px) {
  #rooms .main_contents .room__wrap {
    margin: 20vw 6.6666666667vw 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap {
    margin: 150px auto 0 auto;
    width: 998px;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap:first-of-type {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  #rooms .main_contents .room__wrap .room_photo {
    border-radius: 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap .room_photo {
    border-radius: 20px;
    overflow: hidden;
  }
}
#rooms .main_contents .room__wrap .room_photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #rooms .main_contents .room__wrap .room_photo img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap .room_photo img {
    width: 998px;
    height: auto;
  }
}
@media (max-width: 768px) {
  #rooms .main_contents .room__wrap .room__title {
    border-bottom: 1px solid #000;
    padding: 2vw 0 4vw 0;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap .room__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
  }
}
#rooms .main_contents .room__wrap .room__title h2 {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #rooms .main_contents .room__wrap .room__title h2 {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap .room__title h2 {
    font-size: 30px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 768px) {
  #rooms .main_contents .room__wrap .room__title h2 .small {
    font-size: 3.4666666667vw;
    margin-right: 1em;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap .room__title h2 .small {
    font-size: 16px;
    margin-right: 1em;
  }
}
@media (max-width: 768px) {
  #rooms .main_contents .room__wrap .room__title .spec {
    font-size: 3.2vw;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__wrap .room__title .spec {
    border-left: 1px solid #000;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding-left: 30px;
    margin-left: 30px;
  }
}
#rooms .main_contents .room__detail {
  position: relative;
}
@media (min-width: 769px) {
  #rooms .main_contents .room__detail {
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  #rooms .main_contents .room__detail p {
    font-size: 3.2vw;
    line-height: 1.75;
    margin-top: 3vw;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__detail p {
    font-size: 14px;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  #rooms .main_contents .room__detail .btn.square {
    margin-top: 5vw;
  }
}
@media (min-width: 769px) {
  #rooms .main_contents .room__detail .btn.square {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .hero .hero__img img {
    height: 650px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .hero .hero__text {
    margin-top: 10vw;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .hero .hero__text .inner h1 .small {
    font-size: 32px;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents {
    margin-top: 15vw;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents {
    margin-top: 130px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .gallery .slick-slide {
    margin: 0 5px;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .gallery .slick-slide {
    margin: 0 10px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .spec {
    margin: 13.3333333333vw 6.6666666667vw 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .spec {
    border-bottom: 1px solid #9e9e9e;
    margin: 90px auto 0 auto;
    width: 1030px;
  }
}
#rooms.rooms-detail .main_contents .spec dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .spec dl {
    border-top: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    font-size: 3.2vw;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .spec dl {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .spec dl dt {
    padding: 2vw 2.6666666667vw;
    width: 25%;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .spec dl dt {
    border-top: 1px solid #9e9e9e;
    text-align: center;
    padding: 30px 0 0 0;
    width: 160px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .spec dl dd {
    padding: 2vw 2.6666666667vw;
    width: 75%;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .spec dl dd {
    border-top: 1px solid #9e9e9e;
    padding: 30px 0;
    width: 870px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .btn.large {
    margin: 0 6.6666666667vw;
    width: auto;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .btn.large {
    margin: 0 auto;
    width: 610px !important;
    height: 80px !important;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .btn.large span {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .btn.square {
    margin-top: 13.3333333333vw;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .btn.square {
    margin-top: 100px;
  }
}
#rooms.rooms-detail .main_contents .btn.border {
  border: 1px solid #bb665a;
  background-color: #fff;
}
@media (max-width: 768px) {
  #rooms.rooms-detail .main_contents .btn.border {
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #rooms.rooms-detail .main_contents .btn.border {
    margin-top: 50px;
  }
}
#rooms.rooms-detail .main_contents .btn.border span {
  color: #bb665a;
}

#spa .main_contents .spa__wrap {
  position: relative;
}
@media (min-width: 769px) {
  #spa .main_contents .spa__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    padding-bottom: 45.1388888889vw;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #spa .main_contents .spa__wrap .text_area {
    margin: 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .spa__wrap .text_area {
    width: 24.3055555556vw;
    margin-left: 8.3333333333vw;
  }
}
#spa .main_contents .spa__wrap .text_area h2 {
  color: #953725;
  font-weight: 500;
}
@media (max-width: 768px) {
  #spa .main_contents .spa__wrap .text_area h2 {
    font-size: 6.1333333333vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .spa__wrap .text_area h2 {
    font-size: 3.3333333333vw;
  }
}
#spa .main_contents .spa__wrap .text_area p {
  text-align: justify;
}
@media (min-width: 769px) {
  #spa .main_contents .spa__wrap .text_area p {
    font-size: 1.1111111111vw;
    line-height: 2;
  }
}
#spa .main_contents .spa__wrap figure {
  overflow: hidden;
}
@media (max-width: 768px) {
  #spa .main_contents .spa__wrap figure.photo_large {
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
    width: 93.3333333333vw;
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .spa__wrap figure.photo_large {
    border-radius: 20px 0 0 20px;
    right: 0;
    width: 63.5416666667vw;
    height: auto;
  }
}
@media (max-width: 768px) {
  #spa .main_contents .spa__wrap figure.photo_middle {
    border-radius: 2.6666666667vw 0 0 2.6666666667vw;
    width: 78.6666666667vw;
    margin-top: 4vw;
    margin-left: 21.3333333333vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .spa__wrap figure.photo_middle {
    border-radius: 20px;
    position: absolute;
    width: 62.2916666667vw;
    height: auto;
    left: 15.2777777778vw;
    bottom: 0;
  }
}
#spa .main_contents .spa__wrap figure img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
@media (max-width: 768px) {
  #spa .main_contents .spa__wrap.ehigasa {
    margin-top: 24vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .spa__wrap.ehigasa {
    margin-top: 200px;
  }
}
@media (max-width: 768px) {
  #spa .main_contents .bottom {
    margin-top: 20vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom {
    width: 1200px;
    margin: 180px auto 0 auto;
  }
}
@media (max-width: 768px) {
  #spa .main_contents .bottom figure {
    border-radius: 0;
  }
}
#spa .main_contents .bottom h3 {
  color: #bb665a;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  #spa .main_contents .bottom h3 {
    font-size: 5.3333333333vw;
    line-height: 1.75;
    margin-top: 24vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom h3 {
    font-size: 32px;
    margin-top: 75px;
  }
}
#spa .main_contents .bottom .lead {
  text-align: center;
}
@media (max-width: 768px) {
  #spa .main_contents .bottom .lead {
    margin-top: 1em;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom .lead {
    margin-top: 1em;
  }
}
#spa .main_contents .bottom .spec {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  #spa .main_contents .bottom .spec {
    margin: 6.6666666667vw 6.6666666667vw 0 6.6666666667vw;
    padding: 5vw 0;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom .spec {
    margin: 50px auto 0 auto;
    padding: 30px 0;
    width: 998px;
  }
}
@media (max-width: 768px) {
  #spa .main_contents .bottom .spec table {
    font-size: 3.2vw;
    line-height: 1.75;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom .spec table {
    font-size: 16px;
    line-height: 1.75;
    width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  #spa .main_contents .bottom .spec table th,
  #spa .main_contents .bottom .spec table td {
    padding: 1.3333333333vw 0;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom .spec table th,
  #spa .main_contents .bottom .spec table td {
    padding: 5px 0;
  }
}
#spa .main_contents .bottom .spec table th {
  vertical-align: top;
}
@media (max-width: 768px) {
  #spa .main_contents .bottom .spec table th {
    width: 20vw;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom .spec table th {
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
    width: 60px;
  }
}
@media (min-width: 769px) {
  #spa .main_contents .bottom .spec table td {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  #coffee .hero .hero__text .inner {
    margin: 0 6.6666666667vw;
  }
}
@media (max-width: 768px) {
  #coffee .hero .hero__text .inner img {
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .hero .hero__text .inner img {
    margin: 50px auto 0;
    width: 1200px;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu {
    margin-top: 13.3333333333vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu {
    width: 998px;
  }
}
#coffee .main_contents section.menu h2 {
  color: #953725;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu h2 {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu h2 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu .menu_wrap {
    margin: 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu .menu_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner {
    margin-top: 9.3333333333vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner {
    width: 480px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner:first-of-type {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner h3 {
    font-size: 3.2vw;
    padding: 0 0 1.3333333333vw 2vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner h3 {
    font-size: 16px;
  }
}
#coffee .main_contents section.menu .menu_wrap .menu_wrap_inner ul {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 2vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner ul {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner ul li {
    font-size: 3.2vw;
    padding: 2vw 0 2vw;
    width: 50%;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu .menu_wrap .menu_wrap_inner ul li {
    font-size: 16px;
    padding: 20px 0 0 15px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu p.notice {
    font-size: 2.6666666667vw;
    line-height: 1.75;
    margin: 4vw 6.6666666667vw 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu p.notice {
    font-size: 12px;
    line-height: 1.75;
    margin: 25px 0 0 25px;
  }
}
#coffee .main_contents section.menu .border-text {
  border: 1px solid #000;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 768px) {
  #coffee .main_contents section.menu .border-text {
    font-size: 4.2666666667vw;
    line-height: 1.75;
    margin: 4vw 6.6666666667vw 0 6.6666666667vw;
    padding: 0.5em 0;
    text-align: center;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.menu .border-text {
    font-size: 24px;
    margin-top: 30px;
    padding: 20px 0;
    text-align: center;
  }
}
#coffee .main_contents section.oneday {
  background-image: url(../images/coffee/oneday_bg@2x.jpg);
}
@media (max-width: 768px) {
  #coffee .main_contents section.oneday {
    border-radius: 2.6666666667vw;
    margin: 10.6666666667vw 6.6666666667vw 13.3333333333vw 6.6666666667vw;
    padding: 9.3333333333vw 0;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.oneday {
    border-radius: 20px;
    margin-top: 110px;
    margin-bottom: 110px;
    padding: 70px 0;
    width: 998px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.oneday h2 {
    margin: 0 auto;
    width: 78.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.oneday h2 {
    margin: 0 auto;
    width: 640px;
  }
}
#coffee .main_contents section.oneday .oneday_wrap__inner {
  color: #fff;
}
@media (max-width: 768px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner {
    margin: 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner {
    margin: 0 auto;
    width: 590px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner p.lead {
    font-size: 3.2vw;
    line-height: 1.75;
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner p.lead {
    font-size: 15px;
    margin-top: 40px;
  }
}
#coffee .main_contents section.oneday .oneday_wrap__inner p.hours {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  line-height: 1;
}
@media (max-width: 768px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner p.hours {
    font-size: 4vw;
    line-height: 2;
    margin-top: 6.6666666667vw;
    padding: 0.5em 0 0.5em 4em;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner p.hours {
    font-size: 18px;
    margin-top: 40px;
    padding: 1em 0;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner p.large {
    font-size: 3.7333333333vw;
    margin-top: 4vw;
    text-align: center;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner p.large {
    font-size: 24px;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.oneday .oneday_wrap__inner p.large .small {
    display: block;
    font-size: 80%;
  }
}
#coffee .main_contents section.shopinfo {
  background-color: #fff;
}
#coffee .main_contents section.shopinfo .shopinfo_wrap {
  margin: 0 auto;
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap {
    padding: 10.6666666667vw 0;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap {
    padding: 100px 0;
    width: 998px;
  }
}
#coffee .main_contents section.shopinfo .shopinfo_wrap h2 {
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap h2 {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .photo_box {
    margin: 4vw auto 0 auto;
    width: 64vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .photo_box {
    width: 450px;
  }
}
#coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .photo_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1em;
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .photo_box a .icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .photo_box a span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .photo_box a {
    display: none;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box {
    margin: 5.3333333333vw 6.6666666667vw 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box {
    width: 490px;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box p {
    font-size: 16px;
    line-height: 1.75;
  }
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1em;
  }
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box a .icon {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    margin-right: 5px;
  }
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box a span {
    font-size: 3.2vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box a {
    display: none;
  }
}
#coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box .info_box {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  position: relative;
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box .info_box {
    margin-top: 10.6666666667vw;
    padding: 4vw 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box .info_box {
    margin-top: 50px;
    padding: 20px 50px;
  }
}
#coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box .info_box h3 {
  display: block;
  background-color: #fff;
  position: absolute;
}
@media (max-width: 768px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box .info_box h3 {
    font-size: 2.6666666667vw;
    top: -3vw;
    left: 0;
    padding-right: 1em;
  }
}
@media (min-width: 769px) {
  #coffee .main_contents section.shopinfo .shopinfo_wrap .shopinfo_wrap__inner .text_box .info_box h3 {
    font-size: 14px;
    top: -16px;
    left: 0;
    padding-right: 1em;
  }
}

@media (max-width: 768px) {
  #event .main_contents section.intro .intro_wrap {
    margin-top: 10.6666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.intro .intro_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 130px auto 0 auto;
    width: 1200px;
  }
}
#event .main_contents section.intro .intro_wrap figure {
  overflow: hidden;
}
@media (max-width: 768px) {
  #event .main_contents section.intro .intro_wrap figure {
    border-radius: 0 2.6666666667vw 2.6666666667vw 0;
    width: auto;
    margin-right: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.intro .intro_wrap figure {
    border-radius: 20px;
    width: 690px;
    height: 520px;
  }
}
#event .main_contents section.intro .intro_wrap figure img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  #event .main_contents section.intro .intro_wrap p {
    font-size: 3.7333333333vw;
    line-height: 1.75;
    margin: 1em 6.6666666667vw 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.intro .intro_wrap p {
    font-size: 18px;
    line-height: 2.2;
    text-align: right;
  }
}
#event .main_contents section.intro .intro_wrap:first-of-type {
  margin-top: 0;
}
#event .main_contents section.intro .intro_wrap:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#event .main_contents section.intro .intro_wrap:nth-child(even) figure {
  overflow: hidden;
}
@media (max-width: 768px) {
  #event .main_contents section.intro .intro_wrap:nth-child(even) figure {
    border-radius: 2.6666666667vw 0 0 2.6666666667vw;
    width: auto;
    margin-right: 0;
    margin-left: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.intro .intro_wrap:nth-child(even) p {
    text-align: left;
  }
}
#event .main_contents section.next_event {
  background-color: #fff;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event {
    margin-top: 14.6666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event {
    border-radius: 20px;
    margin: 180px auto 0 auto;
    padding: 50px 0;
    width: 1200px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner {
    margin: 0 6.6666666667vw;
    padding: 6.6666666667vw 0 13.3333333333vw 0;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner {
    margin: 0 auto;
    width: 998px;
  }
}
#event .main_contents section.next_event .next_event_inner .event_info h2 {
  color: #ff682c;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .event_info h2 {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .event_info h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .event_info .banner {
    margin-top: 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .event_info .banner {
    margin-top: 40px;
  }
}
#event .main_contents section.next_event .next_event_inner .event_info .text_box h3 {
  font-weight: 500;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box h3 {
    font-size: 5vw;
    margin-top: 3vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box h3 {
    font-size: 28px;
    margin-top: 25px;
  }
}
#event .main_contents section.next_event .next_event_inner .event_info .text_box .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box .date {
    margin-top: 1vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box .date {
    margin-top: 10px;
  }
}
#event .main_contents section.next_event .next_event_inner .event_info .text_box .date .tag {
  border: 1px solid #953725;
  color: #953725;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-right: 1em;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box .date .tag {
    font-size: 2.6666666667vw;
    height: 4.8vw;
    padding: 0 1.3333333333vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box .date .tag {
    font-size: 14px;
    height: 24px;
    padding: 0 5px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box .date p {
    font-size: 3.2vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box .date p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box p.detail {
    margin-top: 1.5vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .event_info .text_box p.detail {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer,
  #event .main_contents section.next_event .next_event_inner .plan {
    margin-top: 12vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .performer,
  #event .main_contents section.next_event .next_event_inner .plan {
    margin-top: 50px;
  }
}
#event .main_contents section.next_event .next_event_inner .performer h3,
#event .main_contents section.next_event .next_event_inner .plan h3 {
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer h3,
  #event .main_contents section.next_event .next_event_inner .plan h3 {
    font-size: 3.7333333333vw;
  }
}
#event .main_contents section.next_event .next_event_inner .performer h4,
#event .main_contents section.next_event .next_event_inner .plan h4 {
  color: #bb665a;
  font-weight: 600;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer h4,
  #event .main_contents section.next_event .next_event_inner .plan h4 {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .performer h4,
  #event .main_contents section.next_event .next_event_inner .plan h4 {
    font-size: 20px;
  }
}
#event .main_contents section.next_event .next_event_inner .performer .performer_wrap {
  background: linear-gradient(131deg, rgb(251, 252, 242) 0%, rgb(252, 236, 234) 100%);
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap {
    margin-top: 4vw;
    padding: 6.6666666667vw 3.3333333333vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 35px;
    padding: 40px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .photo {
    display: block;
    margin: 0 auto;
    width: 57.3333333333vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .photo {
    width: 180px;
    margin-right: 30px;
  }
}
#event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box h4 {
  font-weight: 600;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box h4 {
    margin-top: 5.3333333333vw;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box p {
    margin-top: 1.5vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box p {
    font-size: 14px;
    line-height: 2;
    margin-top: 1em;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box ul.link {
    margin-top: 1.5vw;
  }
}
#event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box ul.link li {
  background-image: url(../images/common/icon_arrow_002@2x.png);
  background-repeat: no-repeat;
  background-position: left center;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box ul.link li {
    background-size: 4vw 4vw;
    background-position: left top 2.3vw;
  }
}
#event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box ul.link li a {
  color: #bb665a;
  line-height: 1;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .performer .performer_wrap .text_box ul.link li a {
    font-size: 3.4666666667vw;
    padding: 0 0 0 6vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 35px;
  }
}
#event .main_contents section.next_event .next_event_inner .plan .plan_wrap a.image {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap a.image {
    margin: 5.3333333333vw auto 0 auto;
    width: 66.6666666667vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap a.image {
    width: 250px;
    margin-right: 50px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box h4 {
    margin-top: 2vw;
  }
}
#event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box p.date {
  font-weight: 600;
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box p.date {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box p.date {
    font-size: 14px;
    margin-top: 0.5em;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box p.detail {
    font-size: 3.2vw;
    margin-top: 2vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box p.detail {
    font-size: 14px;
    margin-top: 0.5em;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box .btn.square {
    margin-top: 4vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.next_event .next_event_inner .plan .plan_wrap .text_box .btn.square {
    margin: 20px 0 0 auto;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.schedule {
    margin: 0 6.6666666667vw;
    padding: 14.6666666667vw 0;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule {
    margin: 100px 0 0 0;
  }
}
#event .main_contents section.schedule h2 {
  color: #953725;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  #event .main_contents section.schedule h2 {
    font-size: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule h2 {
    font-size: 32px;
  }
}
#event .main_contents section.schedule dl.schedule_table {
  border-bottom: 1px solid #000;
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table {
    margin-top: 4vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 790px;
    margin: 50px auto 0 auto;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dt,
  #event .main_contents section.schedule dl.schedule_table dd {
    padding: 15px 0;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table dt {
    float: left;
    width: 14.6666666667vw;
    padding: 3.5vw 0 0 0;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dt {
    border-top: 1px solid #000;
    width: 20%;
  }
}
#event .main_contents section.schedule dl.schedule_table dt span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fa9f00;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table dt span {
    border-radius: 2.6666666667vw;
    font-size: 4vw;
    width: 12vw;
    height: 12vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dt span {
    font-size: 24px;
    width: 90px;
    height: 45px;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table dd {
    padding-left: 16vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dd {
    border-top: 1px solid #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table dd.date {
    border-top: 1px solid #000;
    padding-top: 3vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dd.date {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 30%;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table dd.date p {
    font-size: 3.2vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dd.date p {
    font-size: 16px;
  }
}
#event .main_contents section.schedule dl.schedule_table dd.title {
  font-weight: 600;
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table dd.title {
    padding-bottom: 3vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dd.title {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #event .main_contents section.schedule dl.schedule_table dd.title p {
    font-size: 3.7333333333vw;
  }
}
@media (min-width: 769px) {
  #event .main_contents section.schedule dl.schedule_table dd.title p {
    font-size: 24px;
  }
}
#event .main_contents section.schedule dl.schedule_table dd.title p .small {
  font-size: 80%;
}
@media (min-width: 769px) {
  #event .main_contents section.gallery {
    margin-top: 120px;
  }
}

#experience .main_contents {
  position: relative;
}
#experience .main_contents h1 {
  color: #bb665a;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  #experience .main_contents h1 {
    font-size: 8vw;
    line-height: 1.65;
    margin: 45vw 0 35vw 0;
  }
}
@media (min-width: 769px) {
  #experience .main_contents h1 {
    font-size: 70px;
  }
}
#experience .main_contents section.mainvisual {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual {
    height: 152vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual {
    width: 100%;
    height: 1091px;
  }
}
#experience .main_contents section.mainvisual .piece {
  position: absolute;
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece {
    display: none;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece {
    margin: auto;
    left: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece.piece_001 {
    display: block;
    top: -1vw;
    width: 66vw;
    right: -11vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_001 {
    width: 661px;
    top: 0;
    right: -995px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece.piece_002 {
    display: block;
    width: 66vw;
    left: -9vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_002 {
    width: 529px;
    top: 94px;
    left: -56px;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_003 {
    width: 225px;
    top: 90px;
    left: -820px;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_004 {
    width: 304px;
    top: 56px;
    left: -1326px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece.piece_005 {
    display: block;
    width: 76vw;
    left: -16vw;
    top: 57vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_005 {
    width: 638px;
    top: 310px;
    left: -1012px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece.piece_006 {
    display: block;
    width: 39vw;
    right: -6vw;
    top: 59vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_006 {
    width: 356px;
    top: 363px;
    right: -38px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece.piece_007 {
    display: block;
    width: 42vw;
    top: 32vw;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
    left: -1vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_007 {
    width: 256px;
    top: 533px;
    right: -741px;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_008 {
    width: 261px;
    top: 606px;
    right: -1192px;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_009 {
    width: 250px;
    top: 699px;
    left: -388px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece.piece_010 {
    display: block;
    top: 126vw;
    width: 50vw;
    left: -7vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_010 {
    width: 404px;
    bottom: 0;
    left: -1112px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.mainvisual .piece.piece_011 {
    display: block;
    width: 66vw;
    right: -19vw;
    top: 95vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.mainvisual .piece.piece_011 {
    width: 527px;
    top: 625px;
    right: -422px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.point {
    margin-top: 33.3333333333vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.point {
    margin-top: 100px;
  }
}
#experience .main_contents section.point h2 {
  color: #bb665a;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  #experience .main_contents section.point h2 {
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.point h2 {
    font-size: 45px;
    line-height: 1.75;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.point .point_slider {
    margin-top: 9.3333333333vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.point .point_slider {
    margin-top: 50px;
  }
}
#experience .main_contents section.point .point_wrap {
  background-color: #fdf6e7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  #experience .main_contents section.point .point_wrap {
    border-radius: 2.6666666667vw;
    margin: 0 1.3333333333vw;
    padding: 4vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.point .point_wrap {
    border-radius: 20px;
    margin: 0 10px;
    width: 350px;
    padding: 30px;
  }
}
#experience .main_contents section.point .point_wrap h3 {
  color: #bb665a;
  font-weight: 500;
}
@media (max-width: 768px) {
  #experience .main_contents section.point .point_wrap h3 {
    font-size: 4.2666666667vw;
    line-height: 1.5;
    margin-top: 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.point .point_wrap h3 {
    font-size: 22px;
    line-height: 1.5;
    margin-top: 15px;
  }
}
#experience .main_contents section.point .point_wrap p {
  text-align: justify;
}
@media (max-width: 768px) {
  #experience .main_contents section.point .point_wrap p {
    font-size: 3.2vw;
    line-height: 1.5;
    margin-top: 2vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.point .point_wrap p {
    font-size: 15px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.map {
    margin-top: 17.3333333333vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.map {
    margin-top: 150px;
  }
}
#experience .main_contents section.map h2 {
  color: #bb665a;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media (max-width: 768px) {
  #experience .main_contents section.map h2 {
    font-size: 4vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.map h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  #experience .main_contents section.map .map_wrap {
    margin: 9.3333333333vw auto 0 auto;
    width: 87.4666666667vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents section.map .map_wrap {
    margin: 80px auto 0 auto;
    width: 890px;
  }
}
#experience .main_contents section.map .map_wrap .map_wrap_inner {
  position: relative;
}
@media (max-width: 768px) {
  #experience .main_contents section.map .map_wrap .map_wrap_inner {
    display: none;
  }
}
#experience .main_contents section.map .map_wrap .map_wrap_inner p.floor {
  color: #953725;
  position: absolute;
}
@media (min-width: 769px) {
  #experience .main_contents section.map .map_wrap .map_wrap_inner p.floor {
    font-size: 30px;
    top: 0;
    left: -80px;
  }
}
#experience .main_contents .mainvisual .piece {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#experience .main_contents .mainvisual .piece.is-visible {
  opacity: 1;
}
@-webkit-keyframes deco-burst {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes deco-burst {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.01);
            transform: scale(1.01);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
#experience .main_contents .deco_bg {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
#experience .main_contents .deco_bg.is-visible {
  -webkit-animation: deco-burst 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
          animation: deco-burst 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
#experience .main_contents .deco_bg {
  position: absolute;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  #experience .main_contents .deco_bg {
    background-image: url(../images/experience/deco_sp.png);
    background-size: 100% auto;
    background-position: center top;
    top: 35vw;
  }
}
@media (min-width: 769px) {
  #experience .main_contents .deco_bg {
    background-image: url(../images/experience/deco_pc.png);
    background-size: 1900px auto;
    background-position: center top;
    top: 0;
  }
}

.static .main_contents h1 {
  color: #bb665a;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .static .main_contents h1 {
    font-size: 8vw;
    line-height: 1.65;
    margin: 58vw 0 24vw 0;
  }
}
@media (min-width: 769px) {
  .static .main_contents h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  #privacy .privacy_wrap {
    margin: 13.3333333333vw 6.6666666667vw 0 6.6666666667vw;
  }
}
@media (min-width: 769px) {
  #privacy .privacy_wrap {
    margin: 100px auto 0;
    width: 900px;
  }
}
@media (max-width: 768px) {
  #privacy .privacy_wrap .privacy_wrap_inner {
    margin-top: 10vw;
  }
}
@media (min-width: 769px) {
  #privacy .privacy_wrap .privacy_wrap_inner {
    margin-top: 50px;
  }
}
#privacy .privacy_wrap .privacy_wrap_inner h2 {
  font-weight: 500;
}
@media (max-width: 768px) {
  #privacy .privacy_wrap .privacy_wrap_inner h2 {
    font-size: 4.2vw;
  }
}
@media (min-width: 769px) {
  #privacy .privacy_wrap .privacy_wrap_inner h2 {
    font-size: 20px;
  }
}
#privacy .privacy_wrap .privacy_wrap_inner p {
  margin-top: 1em;
}
#privacy .privacy_wrap .privacy_wrap_inner ul {
  margin-top: 0.5em;
}
#privacy .privacy_wrap .privacy_wrap_inner ul li {
  list-style-type: disc;
  margin-left: 1.5em;
}
@media (max-width: 768px) {
  #privacy .privacy_wrap .privacy_wrap_inner ul li {
    font-size: 3.2vw;
    line-height: 1.75;
  }
}