@charset "UTF-8";
/* ///////////////////////////////////////////////////////////////////// */
/* ///// Common Style /////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////// */
*:focus {
  outline: 2px #00ffff dotted !important;
}

html {
  font-size: 62.5%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-size: 1.8em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  word-break: break-all;
  color: #414141;
  overflow-x: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", "Noto Sans JP", "Helvetica Neue", Arial, Meiryo, sans-serif;
  line-height: 1.4;
  margin: 0;
}

p {
  line-height: 1.8;
  margin: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dl dt,
dl dd {
  margin: 0;
}

a {
  color: unset;
  text-decoration: none;
  -webkit-transition: ease all 0.4s;
  transition: ease all 0.4s;
  line-height: 1.8;
  position: relative;
}

a:hover {
  color: unset;
  text-decoration: none;
}

.bg_slide {
  position: relative;
  overflow: hidden;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

.bg_slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bg_slide:hover {
  color: #fff !important;
}

.bg_slide:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

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

.pc,
.sp {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .sp {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media screen and (min-width: 1025px) {
  .pc {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/*--------------------------------------------------
header
--------------------------------------------------*/
header {
  position: relative;
  padding: 40px 0;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  header {
    padding: 30px 5.3% 20px 3.5%;
    width: 100%;
    min-height: 108px;
    background-color: #fff;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  header {
    min-height: 84px;
    padding-top: 28px;
  }
}

h1 {
  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;
  margin-bottom: 36px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  h1 {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: none;
            transform: none;
    width: 40%;
    max-width: 260px;
    margin-bottom: 0;
  }
}

.hamburger {
  position: absolute;
  top: 30px;
  right: 5.3%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 200;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  .hamburger {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    top: 12px;
    right: 0;
  }
}

.hamburger p {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 34px;
  color: #4b1a00;
}

.btn-trigger {
  width: 42px;
  height: 34px;
  cursor: pointer;
  position: absolute;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #4b1a00;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 14px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn07 span:nth-of-type(1) {
  -webkit-animation: btn07-bar01 0.75s forwards;
  animation: btn07-bar01 0.75s forwards;
}

@-webkit-keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(14px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn07-bar01 {
  0% {
    -webkit-transform: translateY(14px) rotate(45deg);
            transform: translateY(14px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0);
            transform: translateY(14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#btn07 span:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#btn07 span:nth-of-type(3) {
  -webkit-animation: btn07-bar03 0.75s forwards;
  animation: btn07-bar03 0.75s forwards;
}

@-webkit-keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes btn07-bar03 {
  0% {
    -webkit-transform: translateY(-14px) rotate(-45deg);
            transform: translateY(-14px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0);
            transform: translateY(-14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#btn07.active span:nth-of-type(1) {
  -webkit-animation: active-btn07-bar01 0.75s forwards;
  animation: active-btn07-bar01 0.75s forwards;
}

@-webkit-keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(45deg);
  }
}

@keyframes active-btn07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(14px) rotate(0);
            transform: translateY(14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(14px) rotate(45deg);
            transform: translateY(14px) rotate(45deg);
  }
}

#btn07.active span:nth-of-type(2) {
  opacity: 0;
}

#btn07.active span:nth-of-type(3) {
  -webkit-animation: active-btn07-bar03 0.75s forwards;
  animation: active-btn07-bar03 0.75s forwards;
}

@-webkit-keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(-45deg);
  }
}

@keyframes active-btn07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-14px) rotate(0);
            transform: translateY(-14px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-14px) rotate(-45deg);
            transform: translateY(-14px) rotate(-45deg);
  }
}

nav.gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Montserrat", "Noto Sans JP", "Helvetica Neue", Arial, Meiryo, sans-serif;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  nav.gnav {
    display: block;
    position: fixed;
    width: 70%;
    height: 100vh;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    -webkit-box-shadow: -3px 0 6px 0px rgba(0, 0, 0, 0.16);
            box-shadow: -3px 0 6px 0px rgba(0, 0, 0, 0.16);
    margin-top: 0;
    padding-top: 120px;
    background-color: #fff;
    z-index: 100;
    overflow-y: auto;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (min-width: 320px) and (max-width: 425px) {
  nav.gnav {
    padding-top: 84px;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  nav.gnav.open {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

nav.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  nav.gnav ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

nav.gnav ul li:before {
  content: none;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  nav.gnav ul li {
    width: 100%;
    max-width: unset;
  }
  nav.gnav ul li:nth-child(2n-1) {
    background: #fbf7f3;
  }
}

nav.gnav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  nav.gnav ul li a {
    padding: 22px;
  }
}

nav.gnav ul li a:hover {
  color: #dd6f34;
}

nav.gnav ul li a span {
  width: 100%;
  text-align: center;
}

nav.gnav ul li a span.en {
  font-size: 1.8vw;
  font-weight: 600;
  border-right: 1px solid #4b1a00;
  padding: 0 32px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  nav.gnav ul li a span.en {
    border-right: none !important;
    font-size: 3.2rem;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  nav.gnav ul li a span.en {
    font-size: 2.4rem;
  }
}

nav.gnav ul li a span.jp {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 8px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  nav.gnav ul li a span.jp {
    font-size: 1.6rem;
  }
}

nav.gnav ul li:last-child a span.en {
  border: none;
}

.btn_instagram {
  position: fixed;
  right: 40px;
  top: 42px;
  z-index: 60;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .btn_instagram {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    top: 50%;
    right: 12.4%;
    z-index: -1;
  }
}

.btn_instagram a {
  display: block;
  width: 62px;
  height: 62px;
  background-size: cover;
  background-image: url(../img/btn_instagram.png);
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  .btn_instagram a {
    width: 40px;
    height: 40px;
  }
}

.btn_instagram a:hover {
  opacity: 1;
  background-image: url(../img/btn_instagram_hover.png);
}

/*--------------------------------------------------
footer
--------------------------------------------------*/
footer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 60px 0 32px;
  position: relative;
  background-image: url(../img/footer_bg.png);
}

footer .footer_inner {
  width: 89.5%;
  max-width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  footer .footer_inner {
    display: block;
    position: relative;
  }
}

footer .footer_inner .logo {
  width: 130px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  footer .footer_inner .logo {
    width: 100px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

footer .footer_inner nav {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  footer .footer_inner nav {
    width: auto;
  }
}

footer .footer_inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 72px;
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  footer .footer_inner nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 0;
  }
}

footer .footer_inner nav ul li {
  margin: 0 0 40px 0;
  width: 25%;
  text-align: center;
}

footer .footer_inner nav ul li:nth-child(1), footer .footer_inner nav ul li:nth-child(5) {
  margin-left: 0;
}

footer .footer_inner nav ul li:nth-child(n + 5) {
  margin-bottom: 0;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  footer .footer_inner nav ul li {
    margin: 0 0 30px 0 !important;
    width: 100%;
    text-align: right;
  }
}

footer .footer_inner nav ul li a {
  font-size: 1.6rem;
}

footer .footer_inner nav .other_shop {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 100vh;
  padding: 16px 30px 15px 45px;
  font-size: 1.6rem;
  outline: none;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

footer .footer_inner nav .other_shop span {
  font-weight: 500 !important;
  color: #fff;
  position: relative;
  z-index: 3;
  background-image: url(../img/ft_arr_w.png);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 50%;
  padding-right: 40px;
  background-size: 13px 11px;
}

footer .footer_inner nav .other_shop:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  border-radius: 100vh;
}

footer .footer_inner nav .other_shop:hover span {
  background-image: url(../img/ft_arr_gr.png);
  color: #555;
}

footer .footer_inner nav .other_shop:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

footer .footer_inner .copy {
  width: 100%;
  margin-top: 40px;
  font-size: 1.2rem;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  footer .footer_inner .copy {
    text-align: center;
  }
}

.btn_top,
.btn_top_02 {
  display: block;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border: 1px solid;
  border-radius: 100%;
  color: #414141;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  z-index: 99;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .btn_top,
  .btn_top_02 {
    bottom: 3.9%;
    right: 5.2%;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (min-width: 320px) and (max-width: 425px) {
  .btn_top,
  .btn_top_02 {
    width: 48px;
    height: 48px;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .btn_top.fadeout,
  .btn_top_02.fadeout {
    opacity: 0;
    visibility: hidden;
  }
}

.btn_top:before, .btn_top:after,
.btn_top_02:before,
.btn_top_02:after {
  content: "";
  display: inline-block;
  border-top: 2px solid;
  border-right: 2px solid;
  width: 16px;
  height: 16px;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  .btn_top:before, .btn_top:after,
  .btn_top_02:before,
  .btn_top_02:after {
    width: 16px;
    height: 16px;
  }
}

.btn_top:before, .btn_top:after,
.btn_top_02:before,
.btn_top_02:after {
  top: 50%;
  margin-top: -8px;
}

.btn_top:before,
.btn_top_02:before {
  right: 20px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  .btn_top:before,
  .btn_top_02:before {
    right: 14px;
  }
}

.btn_top:after,
.btn_top_02:after {
  right: 30px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  .btn_top:after,
  .btn_top_02:after {
    right: 24px;
  }
}

.btn_top:hover,
.btn_top_02:hover {
  opacity: 1;
  color: #fff;
  background-color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .btn_top.hidden,
  .btn_top_02.hidden {
    display: none;
  }
}

.btn_top_02 {
  position: absolute;
  bottom: 30px;
}

/*--------------------------------------------------
main
--------------------------------------------------*/
main {
  position: relative;
  overflow-x: hidden;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  main {
    top: 10vh;
    margin-bottom: 10vh;
  }
}

main .mv {
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  main .mv {
    height: calc(100vh - 120px);
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  main .mv figure {
    height: 100%;
  }
  main .mv figure img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    width: 100%;
    height: 100%;
  }
}

main .mv .scroll {
  position: absolute;
  left: 2.6%;
  bottom: 130px;
  width: 3em;
  height: 1em;
  cursor: pointer;
  text-decoration: none;
  color: #f4e9db;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  main .mv .scroll {
    left: 6%;
  }
}

main .mv .scroll span {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
  top: 500%;
  right: 0;
  position: absolute;
}

main .mv .arrow {
  position: absolute;
  top: 1.25em;
  left: 1em;
  -webkit-animation: 2s arrow-animation infinite ease-in-out;
          animation: 2s arrow-animation infinite ease-in-out;
  width: 1px;
  height: 155px;
  background-color: #707070;
}

main .mv .arrow::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: -1px;
  height: 6px;
  width: 1px;
  background-color: #707070;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

@-webkit-keyframes arrow-animation {
  0% {
    height: 10px;
  }
  66% {
    height: 155px;
  }
}

@keyframes arrow-animation {
  0% {
    height: 10px;
  }
  66% {
    height: 155px;
  }
}

section#sec_news,
section#sec_scene,
section#sec_contact {
  margin: 0 auto;
  max-width: 960px;
}

section#sec_news h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  color: #4b1a00;
}

section#sec_news h2:before {
  content: "";
  width: 1px;
  height: 64px;
  position: relative;
  margin-bottom: 16px;
  background-color: #4b1a00;
}

section#sec_news h2 span.en {
  font-size: 6.6rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_news h2 span.en {
    font-size: 4.8rem;
  }
}

section#sec_news h2 span.jp {
  font-size: 1.6rem;
  font-weight: 500;
}

section#sec_news p {
  text-align: center;
  margin-bottom: 96px;
}

section#sec_news .follow {
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_news .follow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 32px;
  }
}

section#sec_news .follow:before {
  content: "";
  width: 148px;
  height: 93px;
  display: block;
  background-image: url(../img/follow.png);
  background-size: cover;
  position: absolute;
  left: 35%;
  top: -120%;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_news .follow:before {
    left: 22%;
    top: -56px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_news .follow:before {
    right: unset;
    left: 0;
  }
}

section#sec_news .follow p {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 40px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_news .follow p {
    font-size: 2.4rem;
  }
}

section#sec_news .follow a {
  display: inline-block;
  padding: 6px 64px 6px 50px;
  border-radius: 100vh;
  font-size: 2rem;
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 0;
  min-width: 230px;
  border: 1px solid #4b1a00;
  color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_news .follow a {
    position: relative;
  }
}

section#sec_news .follow a span:before {
  content: "View more";
  width: 100%;
  text-align: center;
  display: block;
}

section#sec_news .follow a:after {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  background-size: cover;
  position: absolute;
  right: 24px;
  top: 50%;
  margin-top: -3.5%;
  background-image: url(../img/icon_blank.png);
}

section#sec_news .follow a:before {
  background: #4b1a00;
}

section#sec_news .follow a:hover {
  opacity: 1;
  color: #fff !important;
}

section#sec_news .follow a:hover span:before {
  content: "もっと見る";
}

section#sec_news .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section#sec_news .slick-slide {
  max-width: 296px;
  height: 296px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_news .slick-slide {
    max-width: none;
  }
}

section#sec_news .slick-slide:nth-child(n + 2) {
  margin-left: 20px;
}

section#sec_news .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section#sec_news .slick-prev,
section#sec_news .slick-next {
  color: #fff;
  border: 1px solid;
  border-radius: 100%;
  height: 60px;
  width: 60px;
  padding: 0;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  z-index: +1;
}

section#sec_news .slick-prev:before, section#sec_news .slick-prev:after,
section#sec_news .slick-next:before,
section#sec_news .slick-next:after {
  content: "";
  display: inline-block;
  border-top: 2px solid;
  border-right: 2px solid;
  width: 16px;
  height: 16px;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

section#sec_news .slick-prev:before, section#sec_news .slick-prev:after,
section#sec_news .slick-next:before,
section#sec_news .slick-next:after {
  top: 50%;
  margin-top: -8px;
}

section#sec_news .slick-prev:before,
section#sec_news .slick-next:before {
  right: 20px;
}

section#sec_news .slick-prev:after,
section#sec_news .slick-next:after {
  right: 30px;
}

section#sec_news .slick-prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: 2.7%;
}

section#sec_news .slick-next {
  right: 2.7%;
}

section#sec_scene {
  padding: 120px 0 0;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene {
    padding-top: 80px;
  }
}

section#sec_scene h2 {
  color: #000;
  font-size: 4rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 56px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_scene h2 {
    font-size: 2.8rem;
  }
}

section#sec_scene .sce_list {
  max-width: 1080px;
  margin: 0 auto 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .sce_list {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-bottom: 80px;
  }
}

section#sec_scene .sce_list .sce_list_item {
  width: 29.6%;
  min-height: 164px;
  padding: 140px 32px 40px;
  background-color: #f4e9db;
  border-radius: 24px;
  position: relative;
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .sce_list .sce_list_item {
    width: 46%;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_scene .sce_list .sce_list_item {
    padding: 140px 8px 24px;
  }
}

section#sec_scene .sce_list .sce_list_item:nth-child(n + 4) {
  margin-top: 64px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .sce_list .sce_list_item:nth-child(n + 4) {
    margin-top: unset;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .sce_list .sce_list_item:nth-child(n + 3) {
    margin-top: 40px;
  }
}

section#sec_scene .sce_list .sce_list_item:before, section#sec_scene .sce_list .sce_list_item:after {
  content: "";
  display: block;
}

section#sec_scene .sce_list .sce_list_item:before {
  position: absolute;
  top: -26px;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: +1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: center;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_scene .sce_list .sce_list_item:before {
    top: -20px;
    height: 40px;
  }
}

section#sec_scene .sce_list .sce_list_item:after {
  width: 45%;
  height: 140px;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center 60%;
  display: block;
  width: 100%;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .sce_list .sce_list_item:after {
    background-position: center 50%;
  }
}

section#sec_scene .sce_list .sce_list_item.study:before {
  background-image: url(../img/sce_study.png);
}

section#sec_scene .sce_list .sce_list_item.study:after {
  background-image: url(../img/icon_study.png);
  background-size: 85px 68px;
}

section#sec_scene .sce_list .sce_list_item.cafe:before {
  background-image: url(../img/sce_cafe.png);
}

section#sec_scene .sce_list .sce_list_item.cafe:after {
  background-image: url(../img/icon_cafe.png);
  background-size: 69px 77px;
}

section#sec_scene .sce_list .sce_list_item.work:before {
  background-image: url(../img/sce_work.png);
}

section#sec_scene .sce_list .sce_list_item.work:after {
  background-image: url(../img/icon_pc.png);
  background-size: 92px 85px;
}

section#sec_scene .sce_list .sce_list_item.mtg:before {
  background-image: url(../img/sce_mtg.png);
}

section#sec_scene .sce_list .sce_list_item.mtg:after {
  background-image: url(../img/icon_mtg.png);
  background-size: 99px 74px;
}

section#sec_scene .sce_list .sce_list_item.party:before {
  background-image: url(../img/sce_party.png);
}

section#sec_scene .sce_list .sce_list_item.party:after {
  background-image: url(../img/icon_party.png);
  background-size: 81px 87px;
}

section#sec_scene .sce_list .sce_list_item.lunch:before {
  background-image: url(../img/sce_lunch.png);
}

section#sec_scene .sce_list .sce_list_item.lunch:after {
  background-image: url(../img/icon_lunch.png);
  background-size: 82px 82px;
}

section#sec_scene .sce_list .sce_list_item dt,
section#sec_scene .sce_list .sce_list_item dd {
  text-align: center;
}

section#sec_scene .sce_list .sce_list_item dt {
  font-size: 1.6rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .sce_list .sce_list_item dt {
    margin-top: -20px;
  }
}

section#sec_scene .sce_list .sce_list_item dt:after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 10px auto;
  background-color: #4b1a00;
}

section#sec_scene .sce_list .sce_list_item dd {
  font-size: 1.4rem;
  line-height: 1.6;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .sce_list .sce_list_item dd {
    font-size: 1.6rem;
  }
}

section#sec_scene .rental {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 840px;
  margin: 0 auto;
  padding: 26px 0 24px;
  position: relative;
  margin-bottom: 120px;
  color: #4b1a00;
  border-top: 5px solid #4b1a00;
  border-bottom: 5px solid #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .rental {
    max-width: unset;
    width: 94.7%;
  }
}

section#sec_scene .rental:before, section#sec_scene .rental:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
}

section#sec_scene .rental:before {
  top: -3px;
}

section#sec_scene .rental:after {
  bottom: -3px;
}

section#sec_scene .rental > span {
  display: inline-block;
  position: absolute;
  top: -40px;
  padding: 0 48px;
  font-size: 1.6rem;
  font-weight: 600;
  background: #fff;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .rental > span {
    font-size: 1.8rem;
  }
}

section#sec_scene .rental > span:before {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  background-image: url(../img/deco.png);
  background-size: contain;
  margin: 0 auto 10px;
}

section#sec_scene .rental p {
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .rental p {
    font-size: 1.6rem;
  }
}

section#sec_scene .rental p span {
  font-size: 1.2rem;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_scene .rental p span {
    font-size: 1.4rem;
  }
}

section#sec_facility {
  position: relative;
  margin-bottom: 128px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility {
    margin-bottom: 110px;
  }
}

section#sec_facility h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  color: #4b1a00;
}

section#sec_facility h2:before {
  content: "";
  width: 1px;
  height: 64px;
  position: relative;
  margin-bottom: 16px;
  background-color: #4b1a00;
}

section#sec_facility h2 span.en {
  font-size: 6.6rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility h2 span.en {
    font-size: 4.8rem;
  }
}

section#sec_facility h2 span.jp {
  font-size: 1.6rem;
  font-weight: 500;
}

section#sec_facility > p {
  text-align: center;
  margin-bottom: 32px;
}

section#sec_facility .indoor_view {
  margin-bottom: 160px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .indoor_view {
    margin-bottom: 0;
  }
}

section#sec_facility .indoor_view iframe {
  width: 100%;
  min-height: 554px;
}

section#sec_facility .floor_map {
  margin: 0 auto 150px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .floor_map {
    position: relative;
    margin-bottom: 80px;
  }
}

section#sec_facility .floor_map:before {
  content: "";
  display: block;
  width: 38.6vw;
  height: 100%;
  max-height: 960px;
  position: absolute;
  top: 270px;
  left: 0;
  background-color: #fbf7f3;
  z-index: -1;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .floor_map:before {
    width: 72%;
    top: -16px;
    height: 106%;
    max-height: unset;
  }
}

section#sec_facility .floor_map .sub_title {
  max-width: 960px;
  margin: 0 auto 40px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .floor_map .sub_title {
    max-width: unset;
  }
}

section#sec_facility .floor_map .sub_title span {
  display: block;
}

section#sec_facility .floor_map .sub_title span.en {
  margin-bottom: 48px;
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .floor_map .sub_title span.en {
    width: 63%;
    padding-left: 24px;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 1px solid #4b1a00;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .floor_map .sub_title span.en {
    width: 72%;
    margin-bottom: 14px;
  }
}

section#sec_facility .floor_map .sub_title span.en:after {
  content: "";
  height: 1px;
  width: 100vw;
  position: absolute;
  right: 40%;
  margin-top: 110px;
  background-color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .floor_map .sub_title span.en:after {
    display: none;
    visibility: hidden;
  }
}

section#sec_facility .floor_map .sub_title span.jp {
  font-size: 3rem;
  color: #4b1a00;
  font-weight: bold;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .floor_map .sub_title span.jp {
    font-size: 2rem;
    padding-left: 24px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .floor_map .sub_title span.jp {
    font-size: 1.6rem;
  }
}

section#sec_facility .floor_map .floor_map_image {
  position: relative;
  text-align: center;
}

section#sec_facility .floor_map .floor_map_image map area {
  cursor: pointer;
}

section#sec_facility .floor_map .floor_map_image #hover01,
section#sec_facility .floor_map .floor_map_image #hover02,
section#sec_facility .floor_map .floor_map_image #hover03,
section#sec_facility .floor_map .floor_map_image #hover04,
section#sec_facility .floor_map .floor_map_image #hover05 {
  display: none;
}

section#sec_facility .floor_map .floor_map_image .hover_l,
section#sec_facility .floor_map .floor_map_image .hover_r,
section#sec_facility .floor_map .floor_map_image .hover_rb,
section#sec_facility .floor_map .floor_map_image .hover_lb {
  position: absolute;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .floor_map .floor_map_image > img {
    width: 72%;
    max-width: 540px;
    height: auto;
  }
}

section#sec_facility .rental_room {
  position: relative;
  min-height: 590px;
  max-width: 960px;
  margin: 0 auto 90px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room {
    width: 100%;
    max-width: unset;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room {
    margin-bottom: 60px;
  }
}

section#sec_facility .rental_room:before {
  content: "";
  display: block;
  width: 200vw;
  height: 160px;
  position: absolute;
  top: -160px;
  left: -50%;
  background-color: #fcf4ea;
  z-index: -1;
}

section#sec_facility .rental_room .sub_title {
  margin-bottom: 40px;
  position: relative;
  top: -50px;
  text-align: right;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .sub_title {
    top: unset;
    margin-bottom: 0;
    padding: 144px 0 72px;
    background: #fcf4ea;
  }
}

section#sec_facility .rental_room .sub_title span {
  display: block;
}

section#sec_facility .rental_room .sub_title span.en {
  margin-bottom: 48px;
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .sub_title span.en {
    width: 84%;
    text-align: left;
    display: inline-block;
    border-bottom: 1px solid #4b1a00;
    position: relative;
    right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room .sub_title span.en {
    padding-right: 24px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}

section#sec_facility .rental_room .sub_title span.en:after {
  content: "";
  height: 1px;
  width: 100vw;
  position: absolute;
  left: 20%;
  margin-top: 100px;
  background-color: #34211a;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .sub_title span.en:after {
    display: none;
    visibility: hidden;
  }
}

section#sec_facility .rental_room .sub_title span.jp {
  font-size: 3rem;
  color: #4b1a00;
  font-weight: bold;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .sub_title span.jp {
    font-size: 2rem;
    text-align: center;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room .sub_title span.jp {
    font-size: 1.6rem;
  }
}

section#sec_facility .rental_room .rental_room_annex {
  position: relative;
}

section#sec_facility .rental_room .rental_room_annex .image {
  width: 480px;
  height: auto;
  position: relative;
  top: -50px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_annex .image {
    top: -32px;
    width: 60.1%;
    max-width: 462px;
    height: auto;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room .rental_room_annex .image {
    width: 67.7%;
    position: relative;
    top: -24px;
  }
}

section#sec_facility .rental_room .rental_room_annex dl {
  width: 71.7%;
  background-color: #fbf7f3;
  color: #4b1a00;
  padding: 90px 130px 90px 140px;
  position: absolute;
  top: 0;
  right: -120px;
  z-index: -1;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_annex dl {
    width: 65.4%;
    padding: 120px 24px 40px 64px;
    position: relative;
    top: -110px;
    left: 24%;
    right: unset;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room .rental_room_annex dl {
    width: 94.6%;
    padding: 90px 5.25% 24px;
    top: -88px;
    left: 5.4%;
  }
}

section#sec_facility .rental_room .rental_room_annex dl dt {
  font-size: 3.4rem;
  font-weight: 500;
  margin-bottom: 30px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_annex dl dt {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

section#sec_facility .rental_room .rental_room_annex dl dd p {
  font-size: 1.6rem;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_annex dl dd p {
    font-size: 1.4rem;
  }
}

section#sec_facility .rental_room .rental_room_annex dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 24px 0;
}

section#sec_facility .rental_room .rental_room_annex dl dd ul li {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  border: 1px solid;
  text-align: center;
  padding: 6px 14px 4px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_annex dl dd ul li {
    font-size: 1.6rem;
    width: 62.4%;
  }
}

section#sec_facility .rental_room .rental_room_annex dl dd ul li:first-child {
  margin-bottom: 16px;
}

section#sec_facility .rental_room .rental_room_price {
  margin: 148px 0 0px;
  padding: 24px 0 64px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_price {
    margin-top: -78px;
    background: #fbf7f3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room .rental_room_price {
    margin-top: -64px;
  }
}

section#sec_facility .rental_room .rental_room_price:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  top: 0;
  left: -14.5%;
  background: #fbf7f3;
  z-index: -1;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_price:before {
    display: none;
    visibility: hidden;
  }
}

section#sec_facility .rental_room .rental_room_price .title {
  text-align: center;
  color: #4b1a00;
  width: 100%;
  margin-bottom: 24px;
}

section#sec_facility .rental_room .rental_room_price table {
  width: 46.8%;
  background-color: #fff;
  border-collapse: collapse;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_price table {
    width: 89%;
    max-width: 450px;
  }
  section#sec_facility .rental_room .rental_room_price table:first-of-type {
    margin-bottom: 24px;
  }
}

section#sec_facility .rental_room .rental_room_price table th,
section#sec_facility .rental_room .rental_room_price table td {
  padding: 10px;
  text-align: center;
  color: #4b1a00;
  border: solid 1px #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .rental_room .rental_room_price table th,
  section#sec_facility .rental_room .rental_room_price table td {
    width: 50%;
  }
}

section#sec_facility .rental_room .rental_room_price table th {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  background-color: #4b1a00;
}

section#sec_facility .rental_room .rental_room_price table td {
  border-top: none;
  padding: 24px 0;
  font-size: 2rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room .rental_room_price table td {
    font-size: 1.6rem;
    padding: 16px 0;
  }
}

section#sec_facility .rental_room .rental_room_price table td.general, section#sec_facility .rental_room .rental_room_price table td.student {
  font-size: 1.4rem;
  border-bottom: none;
  padding: 8px;
}

section#sec_facility .rental_room .rental_room_price table td.general {
  background-color: #dbdbdb;
}

section#sec_facility .rental_room .rental_room_price table td.student {
  background-color: #b4e6e1;
}

section#sec_facility .rental_room .rental_room_price table td span {
  font-size: 3.2rem !important;
  font-weight: bold;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .rental_room .rental_room_price table td span {
    font-size: 2.4rem !important;
  }
}

section#sec_facility .service {
  max-width: 960px;
  margin: 0 auto 150px;
  padding-bottom: 32px;
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service {
    max-width: unset;
    padding-bottom: 0;
    margin-bottom: 80px;
  }
}

section#sec_facility .service:before {
  content: "";
  position: absolute;
  top: 48px;
  left: -50%;
  width: 200vw;
  height: 100%;
  background: #fcf4ea;
  z-index: -1;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .service:before {
    top: 32px;
  }
}

section#sec_facility .service .sub_title {
  margin-bottom: 48px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .sub_title {
    margin-bottom: 24px;
  }
}

section#sec_facility .service .sub_title span {
  display: block;
}

section#sec_facility .service .sub_title span.en {
  margin-bottom: 48px;
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .sub_title span.en {
    width: 57.6%;
    padding-bottom: 24px;
    padding-left: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #4b1a00;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .service .sub_title span.en {
    padding-bottom: 16px;
    margin-bottom: 10px;
  }
}

section#sec_facility .service .sub_title span.en:after {
  content: "";
  height: 1px;
  width: 100vw;
  position: absolute;
  right: 40%;
  margin-top: 110px;
  background-color: #34211a;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .sub_title span.en:after {
    display: none;
    visibility: hidden;
  }
}

section#sec_facility .service .sub_title span.jp {
  font-size: 3rem;
  color: #4b1a00;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .sub_title span.jp {
    font-size: 2rem;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .service .sub_title span.jp {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok,
  section#sec_facility .service .list_ng {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

section#sec_facility .service .list_ok ul li,
section#sec_facility .service .list_ng ul li {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok ul li,
  section#sec_facility .service .list_ng ul li {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .service .list_ok ul li,
  section#sec_facility .service .list_ng ul li {
    font-size: 1.5rem;
  }
}

section#sec_facility .service .list_ok ul li:nth-child(n + 2),
section#sec_facility .service .list_ng ul li:nth-child(n + 2) {
  margin-top: 20px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok ul li:nth-child(n + 2),
  section#sec_facility .service .list_ng ul li:nth-child(n + 2) {
    margin-top: 12px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_facility .service .list_ok ul li:nth-child(n + 2),
  section#sec_facility .service .list_ng ul li:nth-child(n + 2) {
    margin-top: 0;
  }
}

section#sec_facility .service .list_ok ul li:before,
section#sec_facility .service .list_ng ul li:before {
  margin-right: 8px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok ul li:before,
  section#sec_facility .service .list_ng ul li:before {
    -webkit-transform: scale(0.76);
            transform: scale(0.76);
    margin-right: 2px;
  }
}

section#sec_facility .service .list_ok {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 64px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok dl {
    width: 90%;
    max-width: 400px;
  }
  section#sec_facility .service .list_ok dl:nth-of-type(2) {
    margin-bottom: 56px;
  }
  section#sec_facility .service .list_ok dl:last-of-type {
    margin-bottom: 0;
  }
}

section#sec_facility .service .list_ok dl dt {
  color: #4b1a00;
  font-size: 1.8rem;
  margin-bottom: 32px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok dl dt {
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok dl dd ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

section#sec_facility .service .list_ok dl dd ul li {
  color: #414141;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ok dl dd ul li {
    width: 48%;
  }
}

section#sec_facility .service .list_ok dl dd ul li:before {
  content: url(../img/icon_list_ok.png);
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ng {
    width: 90%;
    max-width: 400px;
    margin-top: 32px;
    margin-bottom: 56px;
  }
}

section#sec_facility .service .list_ng ul li {
  color: #7b7b7b;
}

section#sec_facility .service .list_ng ul li:before {
  content: url(../img/icon_list_ng.png);
}

section#sec_facility .service .list_ng p {
  color: #7b7b7b;
  font-size: 1.6rem;
  margin-top: 20px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_facility .service .list_ng p {
    font-size: 1.2rem;
    text-indent: -1em;
    padding-left: 1em;
    margin-top: 8px;
  }
}

section#sec_howto {
  max-width: 960px;
  margin: 0 auto 80px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_howto {
    margin-bottom: 0;
  }
}

section#sec_howto h2 {
  position: relative;
}

section#sec_howto h2 span {
  display: block;
  text-align: center;
}

section#sec_howto h2 span.en {
  font-size: 22rem;
  font-style: italic;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  color: #fbf7f3;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_howto h2 span.en {
    font-size: 22vw;
  }
}

section#sec_howto h2 span.jp {
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  top: -160px;
  color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_howto h2 span.jp {
    top: -110px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_howto h2 span.jp {
    top: -60px;
  }
}

section#sec_howto .howto_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_howto .howto_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}

section#sec_howto .howto_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 300px;
  position: relative;
  z-index: +1;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_howto .howto_list li {
    margin-top: -150px !important;
    max-width: 402px;
  }
  section#sec_howto .howto_list li:nth-child(even) {
    left: 42.4%;
  }
  section#sec_howto .howto_list li:first-child {
    margin-top: -80px !important;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_howto .howto_list li {
    width: 53.3%;
    margin-top: -64px !important;
  }
  section#sec_howto .howto_list li:nth-child(even) {
    left: 46.7%;
  }
  section#sec_howto .howto_list li:first-child {
    margin-top: 0 !important;
  }
}

section#sec_howto .howto_list li:nth-child(2) {
  margin-top: 50px;
}

section#sec_howto .howto_list li:nth-child(3) {
  margin-top: 100px;
}

section#sec_howto .howto_list li span {
  color: #4b1a00;
  font-weight: 700;
  font-size: 4rem;
  font-family: "Montserrat", "Noto Sans JP", "Helvetica Neue", Arial, Meiryo, sans-serif;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_howto .howto_list li span {
    font-size: 1.8rem;
  }
}

section#sec_howto .howto_list li img {
  margin: 40px 0 30px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_howto .howto_list li img {
    margin: 10px 0;
  }
}

section#sec_howto .howto_list li p {
  font-size: 2.4rem;
  font-weight: 400;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_howto .howto_list li p {
    font-size: 1.6rem;
  }
}

section#sec_price {
  margin: 0 auto 50px;
  max-width: 960px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_price {
    margin-bottom: 80px;
    width: 66.6%;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price {
    width: 100%;
  }
}

section#sec_price h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  color: #4b1a00;
}

section#sec_price h2:before {
  content: "";
  width: 1px;
  height: 64px;
  position: relative;
  margin-bottom: 16px;
  background-color: #4b1a00;
}

section#sec_price h2 span.en {
  font-size: 6.6rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price h2 span.en {
    font-size: 4.8rem;
  }
}

section#sec_price h2 span.jp {
  font-size: 1.6rem;
  font-weight: 500;
}

section#sec_price .price_drop_in .price_inner,
section#sec_price .price_private_room .price_inner {
  background-color: #ededed;
  padding: 40px 32px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_price .price_drop_in .price_inner,
  section#sec_price .price_private_room .price_inner {
    padding: 24px 32px 32px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price .price_drop_in .price_inner,
  section#sec_price .price_private_room .price_inner {
    padding: 24px 24px 32px;
  }
}

section#sec_price .price_drop_in .title,
section#sec_price .price_private_room .title {
  font-family: "Montserrat", "Noto Sans JP", "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-size: 5.8rem;
  font-weight: bold;
  color: #bfbfbf;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_price .price_drop_in .title,
  section#sec_price .price_private_room .title {
    font-size: 4rem;
  }
}

section#sec_price .price_drop_in table,
section#sec_price .price_private_room table {
  margin-top: 16px;
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
}

section#sec_price .price_drop_in table.pc,
section#sec_price .price_private_room table.pc {
  display: table !important;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_price .price_drop_in table.sp,
  section#sec_price .price_private_room table.sp {
    display: table !important;
  }
  section#sec_price .price_drop_in table.pc,
  section#sec_price .price_private_room table.pc {
    display: none !important;
  }
}

section#sec_price .price_drop_in table th,
section#sec_price .price_drop_in table td,
section#sec_price .price_private_room table th,
section#sec_price .price_private_room table td {
  border: 1px solid #4b1a00;
  width: 50%;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_price .price_drop_in table th,
  section#sec_price .price_drop_in table td,
  section#sec_price .price_private_room table th,
  section#sec_price .price_private_room table td {
    width: 100%;
  }
}

section#sec_price .price_drop_in table th,
section#sec_price .price_private_room table th {
  background-color: #4b1a00;
  color: #fff;
  padding: 16px;
  text-align: center;
}

section#sec_price .price_drop_in table td,
section#sec_price .price_private_room table td {
  color: #4b1a00;
  text-align: center;
  padding: 24px 0;
}

section#sec_price .price_drop_in table td p:first-of-type,
section#sec_price .price_private_room table td p:first-of-type {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

section#sec_price .price_drop_in table td p:first-of-type span,
section#sec_price .price_private_room table td p:first-of-type span {
  font-size: 4rem;
}

section#sec_price .price_drop_in table td p:last-of-type,
section#sec_price .price_private_room table td p:last-of-type {
  font-size: 1.8rem;
  color: #414141;
  line-height: 1.6;
  margin-top: 24px;
}

section#sec_price .price_private_room {
  margin-top: 50px;
}

section#sec_price .price_private_room > p {
  text-align: center;
}

section#sec_price .price_private_room > p:nth-child(1) {
  font-size: 3.3rem;
  font-weight: 600;
  color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price .price_private_room > p:nth-child(1) {
    line-height: 1.6;
    font-size: 2.4rem;
  }
}

section#sec_price .price_private_room > p:nth-child(1) span {
  font-size: 1.8rem;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price .price_private_room > p:nth-child(1) span {
    display: block;
    text-align: center;
  }
}

section#sec_price .price_private_room > p:nth-child(2) {
  font-size: 1.6rem;
}

section#sec_price .price_private_room .price_inner {
  margin-top: 24px;
}

section#sec_price .price_private_room .price_inner .title {
  text-align: right;
}

section#sec_price .price_private_room .price_inner table th {
  font-size: 3rem;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_price .price_private_room .price_inner table th {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 8px;
  }
}

section#sec_price .price_private_room .price_inner table td {
  width: 38%;
  font-size: 2.8rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price .price_private_room .price_inner table td {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price .price_private_room .price_inner table td span.yen {
    font-size: 2.8rem;
  }
}

section#sec_price .price_private_room .price_inner table td span.value {
  font-size: 4rem;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price .price_private_room .price_inner table td span.value {
    font-size: 3.2rem;
  }
}

section#sec_price .price_private_room .price_inner table td.general, section#sec_price .price_private_room .price_inner table td.student {
  width: 12%;
  color: #333;
  font-size: 2rem;
  border-right-color: #fff;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_price .price_private_room .price_inner table td.general, section#sec_price .price_private_room .price_inner table td.student {
    width: 16%;
    font-size: 1.4rem;
  }
}

section#sec_price .price_private_room .price_inner table td.general {
  background-color: #dbdbdb;
}

section#sec_price .price_private_room .price_inner table td.student {
  background-color: #b4e6e1;
}

section#sec_price .price_private_room .price_inner table.pc th {
  position: relative;
}

section#sec_price .price_private_room .price_inner table.pc .cafedrink1 {
  display: block;
  position: absolute;
  left: 32px;
  top: -48px;
  color: #4b1a00;
  font-size: 2rem;
  background: #fff;
  padding: 20px 32px;
  border-radius: 96%;
  z-index: +1;
}

section#sec_price .price_private_room .price_inner table.pc .cafedrink1:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 80%;
  margin-top: -40px;
  margin-left: -32px;
  border: 36px solid transparent;
  border-right: 28px solid #fff;
  -webkit-transform: rotate(-32deg);
          transform: rotate(-32deg);
  z-index: -1;
}

section#sec_price .price_private_room .price_inner table.sp .cafedrink1 {
  font-size: 1.4rem;
  display: block;
}

section#sec_price .annotion {
  margin-top: 24px;
  padding: 0 9%;
  text-align: right;
  font-size: 1.6rem;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_price .annotion {
    width: 89.5%;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
  }
}

.pay {
  max-width: 960px;
  margin: 0 auto 160px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .pay {
    width: 89.5%;
    max-width: none;
  }
}

.pay p {
  text-align: center;
  margin-bottom: 50px;
}

section#sec_cafe h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 32px;
  color: #4b1a00;
}

section#sec_cafe h2:before {
  content: "";
  width: 1px;
  height: 64px;
  position: relative;
  margin-bottom: 16px;
  background-color: #4b1a00;
}

section#sec_cafe h2 span.en {
  font-size: 6.6rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_cafe h2 span.en {
    font-size: 4.8rem;
  }
}

section#sec_cafe h2 span.jp {
  font-size: 1.6rem;
  font-weight: 500;
}

section#sec_cafe > p {
  text-align: center;
  font-weight: 2rem;
  margin-bottom: 48px;
}

section#sec_cafe .cafe_wrap {
  background-image: url(../img/bg_cafe.png);
  background-position: center;
  background-size: contain;
  padding: 40px 0 60px;
  margin-bottom: 120px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}

section#sec_cafe .cafe_wrap .cafe_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 89.5%;
  margin: 0 auto 16px;
}

section#sec_cafe .cafe_wrap .cafe_logo img {
  width: 402px;
}

section#sec_cafe .cafe_wrap .cafemenu_wrap {
  max-width: 980px;
  margin: 0 auto;
  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 screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .cafemenu_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .cafemenu_wrap figure {
    width: 88%;
    margin: 0 auto;
    height: unset;
  }
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper {
  position: relative;
  background-image: url(../img/craft-paper.png);
  background-size: cover;
  width: 50%;
  padding: 54px 0 40px;
  margin-top: 32px;
  font-weight: 500;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper {
    width: 89.5%;
    max-width: 480px;
    margin: 40px auto 0;
  }
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper:before {
  content: "";
  display: block;
  background-image: url(../img/tape.png);
  background-size: cover;
  width: 172px;
  height: 37px;
  position: absolute;
  top: 0;
  margin-top: -19px;
  left: 50%;
  margin-left: -86px;
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table {
  font-size: 2rem;
  width: 72%;
  margin: 0 auto 48px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table {
    margin-bottom: 32px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table {
    font-size: 1.6rem;
    width: 90%;
  }
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table th,
section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table td {
  padding-bottom: 16px;
  vertical-align: baseline;
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table th:first-of-type,
section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table td:first-of-type {
  width: 48%;
  text-align: left !important;
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table th {
  font-weight: bold;
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table td:nth-of-type(n + 2) {
  padding-left: 6px;
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper table td span {
  font-weight: normal;
  font-size: 1.5rem;
  color: #757575;
}

section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper p {
  width: 72%;
  margin: 0 auto;
  text-align: right;
  font-size: 1.5rem;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_cafe .cafe_wrap .cafemenu_wrap .bg_craftpaper p {
    width: 90%;
  }
}

section#sec_cafe .cafe_wrap .am_menu {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section#sec_cafe .cafe_wrap .am_menu figure {
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .am_menu figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 89.5%;
    max-width: 480px;
  }
}

section#sec_cafe .cafe_wrap .am_menu figure:before, section#sec_cafe .cafe_wrap .am_menu figure:after {
  content: "";
  width: 192px;
  height: 41px;
  background-image: url(../img/tape.png);
  background-size: cover;
  position: absolute;
  display: block;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  z-index: +1;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .am_menu figure:before, section#sec_cafe .cafe_wrap .am_menu figure:after {
    -webkit-transform: none;
            transform: none;
    position: relative;
    margin-bottom: -20px;
  }
}

section#sec_cafe .cafe_wrap .am_menu figure:before {
  top: 0;
  left: -32px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .am_menu figure:before {
    top: unset;
    left: unset;
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
    width: 147px;
    height: 32px;
  }
}

section#sec_cafe .cafe_wrap .am_menu figure:after {
  bottom: 0;
  right: -64px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .am_menu figure:after {
    display: none;
    visibility: hidden;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_cafe .cafe_wrap .am_menu figure img {
    width: 100%;
    height: auto;
  }
}

section#sec_app {
  background-color: #f7f7f7;
  margin: 250px 0 120px;
  padding-bottom: 80px;
  position: relative;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app {
    margin-top: 96px;
    padding-bottom: 48px;
  }
}

section#sec_app h2 {
  position: relative;
  max-width: 960px;
  margin: 0 auto -150px;
  z-index: +1;
  top: -160px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_app h2 {
    margin-bottom: -110px;
    top: -125px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app h2 {
    margin-bottom: -80px;
    top: -60px;
  }
}

section#sec_app h2 span {
  display: block;
  text-align: left;
}

section#sec_app h2 span.en {
  font-size: 22rem;
  font-style: italic;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  color: #fbf7f3;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_app h2 span.en {
    font-size: 22vw;
  }
}

section#sec_app .app_inner {
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_app .app_inner {
    max-width: 67.1%;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app .app_inner {
    padding-left: 5.5%;
    padding-right: 5.5%;
    max-width: 90%;
  }
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_app .app_inner .app_about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app .app_inner .app_about {
    padding-top: 48px;
  }
}

section#sec_app .app_inner .app_about img.tb, section#sec_app .app_inner .app_about img.sp_s {
  display: none;
  opacity: 0;
  visibility: hidden;
}

@media screen and (min-width: 426px) and (max-width: 1024px) {
  section#sec_app .app_inner .app_about img.tb {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app .app_inner .app_about img.sp_s {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

section#sec_app .app_inner .app_search {
  margin-top: 120px;
  text-align: center;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_app .app_inner .app_search {
    margin-top: 56px;
  }
}

section#sec_app .app_inner .app_dl {
  margin-top: 32px;
  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 screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app .app_inner .app_dl {
    width: 90%;
    margin: 32px auto 0;
  }
}

section#sec_app .app_inner .app_dl .apple_google {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 72px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app .app_inner .app_dl .apple_google {
    margin-right: 24px;
  }
}

section#sec_app .app_inner .app_dl .apple_google a {
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
}

section#sec_app .app_inner .app_dl .apple_google a:hover {
  opacity: 0.6;
}

section#sec_app .app_inner .app_dl .apple_google a:first-of-type {
  margin-bottom: 32px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_app .app_inner .app_dl .apple_google a:first-of-type {
    margin-bottom: 24px;
  }
}

section#sec_contact {
  max-width: 960px;
  margin: 0 auto 120px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_contact {
    width: 89.5%;
  }
}

section#sec_contact h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
  color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_contact h2 {
    margin-bottom: 40px;
  }
}

section#sec_contact h2:before {
  content: "";
  width: 1px;
  height: 64px;
  position: relative;
  margin-bottom: 16px;
  background-color: #4b1a00;
}

section#sec_contact h2 span.en {
  font-size: 6.6rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_contact h2 span.en {
    font-size: 4.8rem;
  }
}

section#sec_contact h2 span.jp {
  font-size: 1.6rem;
  font-weight: 500;
}

section#sec_contact .phone {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_contact .phone {
    margin-bottom: 32px;
  }
}

section#sec_contact .phone > p {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 16px;
}

section#sec_contact .phone > p span {
  font-size: 2rem;
}

section#sec_contact .phone .phone_num {
  line-height: 1.4;
}

section#sec_contact .phone .phone_num span {
  font-weight: 600;
}

section#sec_contact .phone .phone_num span.tel {
  font-size: 2.5rem;
  margin-right: 10px;
}

section#sec_contact .phone .phone_num span.tel_num {
  font-size: 4rem;
  letter-spacing: 0.18em;
}

section#sec_contact .phone .phone_num span.time {
  font-size: 1.6rem;
}

section#sec_contact .phone .phone_num a {
  display: block;
  width: 100%;
  max-width: 372px;
  margin: 0 auto 10px;
  font-size: 4rem;
  font-weight: 600;
  border: 1px solid #414141;
  border-right-width: 4px;
  border-bottom-width: 4px;
  border-radius: 10px;
}

section#sec_contact .phone .phone_num a img {
  width: 22px;
  height: auto;
  margin-top: -12px;
}

section#sec_contact .contact_form_wrap dl {
  position: relative;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_contact .contact_form_wrap dl {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_contact .contact_form_wrap dl {
    width: 100%;
  }
}

section#sec_contact .contact_form_wrap dl dt {
  width: 240px;
  font-size: 2.5rem;
  padding-top: 10px;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_contact .contact_form_wrap dl dt {
    width: auto;
    margin: 0 0 20px 0;
    padding-top: 20px;
  }
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_contact .contact_form_wrap dl dt {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }
}

section#sec_contact .contact_form_wrap dl dt span {
  font-size: 1.6rem;
  color: #fff;
  background-color: #c90000;
  border-radius: 4px;
  padding: 3px 10px 4px;
  margin-right: 16px;
  position: relative;
  top: -2px;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_contact .contact_form_wrap dl dt span {
    font-size: 1.4rem;
  }
}

section#sec_contact .contact_form_wrap dl dd {
  width: 75%;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_contact .contact_form_wrap dl dd {
    width: 100%;
  }
}

section#sec_contact .contact_form_wrap dl dd input[type="text"],
section#sec_contact .contact_form_wrap dl dd input[type="email"],
section#sec_contact .contact_form_wrap dl dd textarea {
  border: 1px solid #414141;
  min-height: 50px;
  width: 100%;
}

section#sec_contact .contact_form_wrap dl dd input[type="checkbox"] {
  height: 1.2em;
  width: 1.2em;
  position: relative;
  top: 4px;
}

section#sec_contact .contact_form_wrap dl dd label {
  cursor: pointer;
}

section#sec_contact .contact_form_wrap button.arr {
  font-weight: 500;
  font-size: 2rem;
  width: 300px;
  height: 74px;
  border-radius: 100vh;
  margin: 72px auto 0;
  display: block;
  -webkit-transition: ease all 0.4s;
  transition: ease all 0.4s;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: center;
  color: #4b1a00;
  border: 1px solid #4b1a00;
}

section#sec_contact .contact_form_wrap button.arr:before, section#sec_contact .contact_form_wrap button.arr:after {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: -6px;
}

section#sec_contact .contact_form_wrap button.arr:before {
  right: 30px;
}

section#sec_contact .contact_form_wrap button.arr:after {
  right: 39px;
}

section#sec_contact .contact_form_wrap button.arr:hover {
  color: #fff !important;
  background-color: #4b1a00;
}

section#sec_access h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
  color: #4b1a00;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_access h2 {
    margin-bottom: 40px;
  }
}

section#sec_access h2:before {
  content: "";
  width: 1px;
  height: 64px;
  position: relative;
  margin-bottom: 16px;
  background-color: #4b1a00;
}

section#sec_access h2 span.en {
  font-size: 6.6rem;
  font-weight: 600;
}

@media screen and (min-width: 320px) and (max-width: 425px) {
  section#sec_access h2 span.en {
    font-size: 4.8rem;
  }
}

section#sec_access h2 span.jp {
  font-size: 1.6rem;
  font-weight: 500;
}

section#sec_access .access_inner {
  background-color: #fbf7f3;
  margin: 0 auto;
  padding: 64px 0 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url(../img/comecome.png);
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_access .access_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

section#sec_access .access_inner .map {
  width: 960px;
  margin: 0 auto;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_access .access_inner .map {
    width: 100%;
  }
}

section#sec_access .access_inner .map p {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #000;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_access .access_inner .map p {
    width: 89.5%;
    margin: 0 auto 30px;
    font-size: 1.6rem;
  }
}

section#sec_access .access_inner .map iframe {
  display: block;
  height: 430px;
  width: 100%;
  background: #ddd;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  section#sec_access .access_inner .map iframe {
    height: 380px;
  }
}

.error_blank,
.error_format,
.error_match {
  display: block;
  color: #c90000;
  font-size: 1.4rem;
  margin-top: 10px;
}

#form_submit {
  position: relative;
  border-radius: 100vh;
  margin: 72px auto 0;
  cursor: pointer;
  width: 300px;
  height: 74px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
  color: #4b1a00;
  border: 1px solid #4b1a00;
}

#form_submit:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  border-radius: 100vh;
  background: #4b1a00;
}

#form_submit input {
  font-weight: 500;
  font-size: 2rem;
  border: none;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 3;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: 50%;
  background-size: 18px 15px;
  background-image: url(../img/submit_arr_b.png);
}

#form_submit:hover input {
  background-image: url(../img/submit_arr_w.png) !important;
  color: #fff;
}

#form_submit:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.pp_text {
  height: 120px;
  margin-top: 20px;
  padding: 12px;
  font-size: 1.4rem;
  overflow-y: scroll;
  border: 1px solid #707070;
}

.pp_text p {
  margin-bottom: 20px;
}

.instagram_list.pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 320px) and (max-width: 1024px) {
  .instagram_list.pc {
    display: none !important;
    opacity: 0;
    visibility: hidden;
  }
}

.instagram_list.pc .instagram_list_item {
  width: 31.2%;
}

.instagram_list.pc .instagram_list_item:nth-child(n + 4) {
  margin-top: 32px;
}

.instagram_list.pc .instagram_list_item img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
/*# sourceMappingURL=style.css.map */