@charset "UTF-8";
body {
  color: #333;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

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

/* FontFamily */
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* font-weight */
@font-face {
  font-family: "Futura PT Demi";
  src: url(/assets/fonts/FuturaPTDemi.otf);
}
@font-face {
  font-family: "Futura PT Bold";
  src: url(/assets/fonts/FuturaPTBold.otf);
}
@font-face {
  font-family: "Futura PT Book";
  src: url(/assets/fonts/FuturaPTBook.otf);
}
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.5640273705vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-close:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-animation: instaReveal 1s linear forwards;
          animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #000;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
          box-shadow: 0 0 10px rgba(0, 0, 0, .3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    -webkit-transform: none;
            transform: none;
  }
  .modaal-gallery-next {
    left: auto;
    right: 5%;
  }

  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  -webkit-transform: scale(0.25);
          transform: scale(0.25);
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
          animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

.btn {
  position: absolute;
  z-index: 2;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 1.875vw;
    position: absolute;
    top: 70%;
    left: 7%;
    max-width: 13.75rem;
    margin: 0px auto;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
.btn .section_link {
  position: relative;
  font-size: 20px;
  color: #fff;
  line-height: 1.25;
  font-weight: 400;
  display: inline-block;
  padding: 0.8em 2.5em;
  border: 1px solid #fff;
  letter-spacing: 0.2em;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50px;
  font-family: "Futura PT Demi";
}
@media screen and (min-width: 768px) {
  .btn .section_link {
    font-size: 1.328125vw;
    padding: 1.15em 5.1em 1.15em 2.6em;
    text-align: left;
    letter-spacing: 0.25em;
    border-radius: 3.90625vw;
    border: 1px solid #C4b19b;
  }
}
@media screen and (min-width: 768px) {
  .btn .section_link:before {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 50%;
    left: 72%;
    /*線の形状*/
    width: 50px;
    height: 1px;
    background: #C4b19b;
    -webkit-animation: arrowlong01 2.5s ease infinite;
            animation: arrowlong01 2.5s ease infinite;
  }
}
@-webkit-keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 38%;
    opacity: 1;
  }
  100% {
    width: 38%;
    opacity: 0;
  }
}
@keyframes arrowlong01 {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 0;
    opacity: 1;
  }
  80% {
    width: 38%;
    opacity: 1;
  }
  100% {
    width: 38%;
    opacity: 0;
  }
}
.btn .section_link:hover {
  background: transparent;
  border: 1.5px solid #fff;
  opacity: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .btn .section_link:hover {
    background: #fff;
    opacity: 1;
    color: #C4b19b;
  }
}

@media screen and (min-width: 768px) {
  .btn__fa > img {
    width: 1.5625vw;
  }
}

@media screen and (min-width: 768px) {
  .btn__insta > img {
    width: 1.5625vw;
  }
}

.button {
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.5rem;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    margin: 0;
    margin: initial;
  }
}
.button .link_item {
  position: relative;
  line-height: 1.25;
  font-weight: 400;
  display: inline-block;
  padding: 1em 3.5em 1em 3.5em;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 0.25em;
  background: #FF7E57;
  color: #fff;
  font-family: "Futura PT Demi";
}
@media screen and (min-width: 768px) {
  .button .link_item {
    font-size: 1.40625vw;
    padding: 1.2em 6em;
    text-align: left;
    margin-top: 12.5vw;
    padding: 1.2em 5em;
    letter-spacing: 0.25em;
    background: #FF7E57;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .button .link_item::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10%;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.button .link_item:hover {
  color: #fff;
  background: #4c586f;
  opacity: 1;
}
.button .link_item:hover:after {
  width: 20px;
  width: 1.25rem;
  position: absolute;
  right: 10%;
  text-align: center;
}

.button-insta {
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .button-insta {
    font-size: 1.5rem;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    margin: 0;
    margin: initial;
  }
}
.button-insta .link_item-insta {
  position: relative;
  line-height: 1.25;
  font-weight: 400;
  display: inline-block;
  padding: 1em 3.5em 1em 3.5em;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 0.25em;
  background: #4c586f;
  color: #fff;
  font-family: "Futura PT Demi";
}
@media screen and (min-width: 768px) {
  .button-insta .link_item-insta {
    font-size: 1.40625vw;
    padding: 1.2em 6em;
    text-align: left;
    margin-top: 20.5vw;
    padding: 1.2em 5em;
    letter-spacing: 0.25em;
    background: #4c586f;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .button-insta .link_item-insta::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10%;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.button-insta .link_item-insta:hover {
  color: #fff;
  background: #FF7E57;
  opacity: 1;
}
.button-insta .link_item-insta:hover:after {
  width: 20px;
  width: 1.25rem;
  position: absolute;
  right: 10%;
  text-align: center;
}

.button-line {
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .button-line {
    font-size: 1.5rem;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    margin: 0;
    margin: initial;
    margin-left: 7.8125vw;
  }
}
.button-line .link_item-line {
  position: relative;
  line-height: 1.25;
  font-weight: 400;
  display: inline-block;
  padding: 1em 3.5em 1em 3.5em;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 0.25em;
  background: #333;
  color: #fff;
  font-family: "Futura PT Demi";
}
@media screen and (min-width: 768px) {
  .button-line .link_item-line {
    font-size: 1.40625vw;
    padding: 1.2em 6em;
    text-align: left;
    margin-top: 12.5vw;
    padding: 1.2em 5em;
    letter-spacing: 0.25em;
    background: #333;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .button-line .link_item-line::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10%;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.button-line .link_item-line:hover {
  color: #fff;
  background: #4c586f;
  opacity: 1;
}
.button-line .link_item-line:hover:after {
  width: 20px;
  width: 1.25rem;
  position: absolute;
  right: 10%;
  text-align: center;
}

.button-menu {
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.25)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, .25));
}
@media screen and (min-width: 768px) {
  .button-menu {
    font-size: 1.5rem;
    bottom: auto;
    bottom: initial;
    left: auto;
    left: initial;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
    margin: 0;
    margin: initial;
  }
}
.button-menu .link_item-menu {
  position: relative;
  line-height: 1.25;
  font-weight: 400;
  display: inline-block;
  padding: 1em 3.5em 1em 3.5em;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 50px;
  font-size: 16px;
  letter-spacing: 0.25em;
  background: #333;
  color: #fff;
  font-family: "Futura PT Demi";
}
@media screen and (min-width: 768px) {
  .button-menu .link_item-menu {
    font-size: 1.40625vw;
    padding: 1.2em 6em;
    text-align: left;
    margin-top: 12.5vw;
    padding: 1.2em 5em;
    letter-spacing: 0.25em;
    background: #333;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .button-menu .link_item-menu::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 10%;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.button-menu .link_item-menu:hover {
  color: #fff;
  background: #4c586f;
  opacity: 1;
}
.button-menu .link_item-menu:hover:after {
  width: 20px;
  width: 1.25rem;
  position: absolute;
  right: 10%;
  text-align: center;
}

.text {
  font-weight: 700;
  color: #333;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7857;
  letter-spacing: 0.7px;
  letter-spacing: 0.04375rem;
}
@media screen and (min-width: 768px) {
  .text {
    font-size: 1rem;
  }
}

.fade {
  -webkit-animation: fadeInUp 7s ease 3s 1 normal;
          animation: fadeInUp 7s ease 3s 1 normal;
}

@-webkit-keyframes fadeIn {
  /*animation-nameで設定した値を書く*/
  0% {
    opacity: 0;
  }
  /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時は不透明度100%*/
}

@keyframes fadeIn {
  /*animation-nameで設定した値を書く*/
  0% {
    opacity: 0;
  }
  /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時は不透明度100%*/
}
.fade2 {
  -webkit-animation: fadeInUp 0.8s ease 0.3s 1 normal;
          animation: fadeInUp 0.8s ease 0.3s 1 normal;
}

@keyframes fadeIn {
  /*animation-nameで設定した値を書く*/
  0% {
    opacity: 0;
  }
  /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時は不透明度100%*/
}
.card__items {
  margin-top: -7vw;
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .card__items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 1;
    margin: 0;
    margin: initial;
    padding: 0 11.625vw;
    margin-top: 9vw;
    padding-bottom: 1vw;
  }
}

.card__item {
  width: 100%;
  margin-top: 40px;
  margin-top: 2.5rem;
  background: #fff;
  -webkit-box-shadow: 4px 8px 8px rgba(0, 0, 0, .25);
          box-shadow: 4px 8px 8px rgba(0, 0, 0, .25);
}
@media screen and (min-width: 601px) {
  .card__item {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .card__item {
    width: 19.53125vw;
    margin-top: 1.6rem;
    -webkit-box-shadow: 4px 8px 8px rgba(0, 0, 0, .25);
            box-shadow: 4px 8px 8px rgba(0, 0, 0, .25);
  }
  .card__item:nth-of-type(1) {
    margin-bottom: 19rem;
  }
  .card__item:nth-of-type(2) {
    margin: 10rem 0;
  }
  .card__item:nth-of-type(3) {
    margin-top: 20rem;
  }
}

.media__img {
  outline: none;
}
.media__img > img {
  width: 100%;
  margin: 0 auto;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .media__img > img {
    width: 17.92vw;
    margin: initial;
    margin: 10px auto;
    padding: 0;
    padding: initial;
  }
}
.media__body {
  margin: 5px auto;
  margin: 0.3125rem auto;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 0;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .media__body {
    margin-top: 0;
    padding-top: 0;
    padding-right: 1.171875vw;
    padding-bottom: 1.171875vw;
    padding-left: 1.171875vw;
  }
}
.media__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.22;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
}
@media screen and (min-width: 768px) {
  .media__title {
    line-height: 1.3;
    font-size: 1.015625vw;
  }
}
.media__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.7px;
  letter-spacing: 0.04375rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .media__text {
    font-size: 0.9375vw;
    line-height: 1.7857;
    letter-spacing: 0.04375rem;
    margin-top: 0.3rem;
  }
}
.media__price {
  font-size: 16px;
  font-weight: 700;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .media__price {
    margin-top: 0.4rem;
    font-size: 0.9375vw;
    font-weight: bold;
  }
}
.media__img-style > img {
  width: 45vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .media__img-style > img {
    width: 24.921875vw;
    margin: 0;
    margin: initial;
  }
}

.c_text {
  text-align: center;
}

#nav-toggle {
  position: fixed;
  top: 8px;
  top: 0.5rem;
  right: 20px;
  right: 1.25rem;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 34px;
  width: 2.125rem;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #333;
  position: absolute;
  -webkit-transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
  transition: transform 0.6s ease-in-out, top 0.5s ease, -webkit-transform 0.6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 9px;
}
#nav-toggle span:nth-child(3) {
  top: 18px;
}

.open #nav-toggle {
  background: transparent;
}
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
  background: #fff;
  padding: 0.3em 0.2em 0.6em 0.2em;
  opacity: 0.7;
}
#nav-toggle span {
  background: #000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  opacity: 1;
  background: linear-gradient(155deg, #4c586f 0%, #c6c3fc 100%) scroll;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  letter-spacing: 1;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.2s ease;
  transition: transform 0.6s ease, opacity 0.2s ease, -webkit-transform 0.6s ease;
}
#gloval-nav ul li:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
#gloval-nav ul li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#gloval-nav ul li:nth-child(4) {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
#gloval-nav ul li:nth-child(5) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
#gloval-nav ul li:nth-child(6) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
#gloval-nav ul li:nth-child(7) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1350px;
    padding-right: 35px;
    padding-left: 35px;
  }
}

.l-inner-second {
  width: 100%;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner-second {
    max-width: 1385px;
    padding-right: 0;
    padding-left: 0;
  }
}

.title {
  width: 200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .title {
    width: 18.75vw;
  }
}
.title__menu {
  width: 140px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .title__menu {
    width: 14.0625vw;
  }
}
.title__reservation {
  width: 230px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .title__reservation {
    width: 27.34375vw;
    margin: 0 auto;
    margin-top: -45vw;
  }
}

.title__line {
  border: 1px #C4b19b solid;
  width: 100vw;
  margin: 1.5vw calc(50% - 50vw);
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .title__line {
    margin-top: 2.1875vw;
    margin: 1.5vw calc(50% - 50vw);
    width: 100vw;
  }
}

.c-text {
  letter-spacing: 0.015em;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 1.015625vw;
    line-height: 1.384;
  }
}

.image {
  outline: none;
}

.u-mapText {
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .u-mapText {
    font-size: 1.09375vw;
  }
}

.u-textCenter {
  text-align: center;
}

.u-textLeft {
  text-align: left;
}

.u-section {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .u-mg30 {
    margin-top: 2.734375vw;
  }
}

@media screen and (min-width: 768px) {
  .u-mg20 {
    margin-top: 1.5625vw;
  }
}

@media screen and (min-width: 768px) {
  .u-mg70 {
    margin-top: 5.46875vw;
  }
}

@media screen and (min-width: 768px) {
  .u-mg50 {
    margin-top: 4.296875vw;
  }
}

.u-ml30 {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .u-ml30 {
    margin-left: 2.34375vw;
  }
}

@media screen and (min-width: 768px) {
  .u-mr50 {
    margin-right: 3.90625vw;
  }
}

@media screen and (min-width: 768px) {
  .u-ml100 {
    margin-left: 7.8125vw;
  }
}

@media screen and (min-width: 768px) {
  .u-mg100 {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .u-mg160 {
    margin-top: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .u-desktopLeft {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .u-desktopRight {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .u-right {
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .u-center {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .u-center5 {
    margin: 5px auto;
  }
}

@media screen and (min-width: 768px) {
  .u-mg0 {
    margin-top: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .u-width {
    width: 26vw;
  }
}

.about {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 8.59375vw;
    padding-left: 7.8125vw;
    padding-right: 7.8125vw;
  }
}
@media screen and (min-width: 768px) {
  .about__wrapper {
    position: relative;
    margin-right: -8vw;
  }
}
.about__bg {
  margin-right: 20px;
  height: 302px;
  background: #C4B19B;
  z-index: -1;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, .25);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, .25);
}
@media screen and (min-width: 768px) {
  .about__bg {
    position: absolute;
    top: 0%;
    left: 6.5%;
    width: 55.5vw;
    height: 44.6093vw;
  }
}
.about__container {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about__container {
    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;
    margin-top: 11.71875vw;
  }
}
.about__img {
  margin-top: -300px;
  z-index: 3;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .about__img {
    width: 41.875vw;
    margin-top: 5vw;
    margin-left: 5vw;
  }
}
.about__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 33.625vw;
    font-size: 18px;
    background: #fff;
    z-index: 3;
    margin-top: 5vw;
  }
}
.about__title {
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__title {
    font-size: 1.40625vw;
    letter-spacing: 0.075em;
    line-height: 2.6666;
    padding: 7.7343vw 4vw 3vw;
  }
}
.about__text {
  font-size: 16px;
  margin: 30px auto;
  width: 80vw;
  line-height: 2.1;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .about__text {
    font-size: 1.09375vw;
    letter-spacing: 0.02em;
    line-height: 2.333;
    padding: 0 6.25vw;
    width: auto;
    width: initial;
    margin: 0;
    margin: initial;
  }
}

.about2__wrapper {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about2__wrapper {
    position: relative;
  }
}
.about2__bg {
  margin-left: 20px;
  text-align: center;
  height: 302px;
  background: #4C586F;
  z-index: -1;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, .25);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, .25);
}
@media screen and (min-width: 768px) {
  .about2__bg {
    position: absolute;
    top: -8%;
    left: 27%;
    width: 55.5vw;
    height: 43.609375vw;
  }
}
.about2__container {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about2__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 11.71875vw;
    margin-left: -8vw;
  }
}
.about2__img {
  margin-top: -300px;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .about2__img {
    width: 43.875vw;
    margin-top: 1.5vw;
  }
}
.about2__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about2__content {
    width: 35.625vw;
    height: 36.5vw;
    font-size: 18px;
    background: #fff;
    z-index: 3;
    margin-left: 2.6895vw;
    margin-top: 1vw;
  }
}
.about2__title {
  font-size: 20px;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .about2__title {
    font-size: 1.40625vw;
    letter-spacing: 0.02em;
    line-height: 2.6666;
    padding: 7.7343vw 5vw 3.5vw;
    text-align: center;
  }
}
.about2__text {
  font-size: 16px;
  margin: 30px auto;
  width: 80vw;
  line-height: 2.1;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .about2__text {
    margin: 0;
    margin: initial;
    font-size: 1.09375vw;
    letter-spacing: 0.075em;
    line-height: 2.333;
    padding: 0 7.25vw;
    width: auto;
    width: initial;
  }
}

.footer {
  background: #4C586F;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-top: 0;
  }
}
.footer__inner {
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-bottom: 1.25rem;
  }
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__sns > img {
  width: 25px;
  width: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .footer__sns > img {
    width: 3.125vw;
  }
}
.footer__copyright {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  margin-top: 19.2px;
  margin-top: 1.2rem;
  color: #fff;
  letter-spacing: 0.2em;
  font-family: "Futura PT Demi";
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.6875rem;
    color: #fff;
    letter-spacing: 0.2em;
    font-family: "Futura PT Demi";
  }
}

.line {
  width: 28px !important;
  width: 1.75rem !important;
}
@media screen and (min-width: 768px) {
  .line {
    width: 2.890625vw !important;
  }
}

.insta {
  width: 30px !important;
  width: 1.875rem !important;
}
@media screen and (min-width: 768px) {
  .insta {
    width: 3.125vw !important;
  }
}

.footer__image img {
  width: 23.4375vw;
  margin: 3.125vw auto;
}
@media screen and (min-width: 768px) {
  .footer__image img {
    margin: 2.34375vw auto;
    width: 16.40625vw;
  }
}

.garally {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .garally {
    margin-top: 7.915695vw;
  }
}
.garally__img {
  margin-top: 10.15625vw;
  margin-left: 15.625vw;
}
.garally__wrapper {
  position: relative;
}
.garally__bg {
  position: relative;
}
.garally__bg > img {
  position: absolute;
  width: 85.546875vw;
  top: 14.0625vw;
  left: 15%;
  z-index: -2;
}

.card__items-garally {
  margin-top: 40px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .card__items-garally {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 81.5vw;
    margin: 9vw auto 0;
    padding: 0;
    padding: initial;
  }
}

@media screen and (min-width: 768px) {
  .card__item__garally a > img {
    width: 20.3125vw;
  }
}

.header {
  position: fixed;
  top: 0;
  background: #46679C;
  opacity: 0.9;
  width: 100%;
  z-index: 20;
  padding-top: 4.8px;
  padding-top: 0.3rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 3.90625vw;
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 0vw;
    padding-left: 7vw;
    padding-right: 5.55vw;
    padding-bottom: 1.5625vw;
  }
}
@media screen and (min-width: 768px) {
  .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .header__nav {
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .header__nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.171875vw;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.05rem;
    margin-top: 1.171875vw;
  }
}
@media screen and (min-width: 768px) {
  .header__nav a {
    font-size: 1.171875vw;
    letter-spacing: 0.02em;
    font-weight: 700;
    font-family: "Futura PT Demi";
    position: relative;
    display: inline-block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header__nav a:hover {
    opacity: 1;
  }
  .header__nav a::after {
    position: absolute;
    bottom: -0.1875rem;
    left: 50%;
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header__nav a:hover::after {
    width: 100%;
  }
}
.header__logo {
  width: 150px;
  width: 9.375rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 21.875rem;
    margin-top: 1vw;
    margin-right: auto;
    padding-left: 0;
    padding-left: initial;
  }
}
@media screen and (min-width: 768px) {
  .header__logo a > img {
    width: 6.5vw;
  }
}
@media screen and (min-width: 768px) {
  .header__logo a {
    font-size: inherit;
  }
}

@media screen and (min-width: 768px) {
  .nav__item + .nav__item {
    margin-left: 4.84375vw;
  }
}

.info {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .info {
    margin-top: 10.15625vw;
  }
}
.info__map {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .info__map {
    margin-top: 6vw;
  }
}
.info__map .map {
  outline: none;
}
@media screen and (min-width: 768px) {
  .info__map .map > img {
    width: 63.90625vw;
    margin: 0 auto;
  }
}
.info__map span {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info__logo {
    margin-right: 2.734375vw;
  }
}
.info__logo > img {
  width: 130px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .info__logo > img {
    width: 5.46875vw;
  }
}
.info__access {
  margin: 30px auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .info__access {
    margin: 0;
    margin: initial;
    width: auto;
    width: initial;
  }
}
.info__salon {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .info__salon {
    margin: 0;
    margin: initial;
  }
}
.info__table__wrapper {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .info__table__wrapper {
    margin-top: 3.125vw;
    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 screen and (min-width: 768px) {
  .info__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 6.25vw;
    margin-left: -4.6875vw;
  }
}
.info__salon {
  margin-left: 4.6875vw;
}
@media screen and (min-width: 768px) {
  .info__border {
    border-right: 1px solid #333;
  }
}
.info__table__content > table {
  table-layout: auto;
}
@media screen and (min-width: 768px) {
  .info__table__content > table {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 768px) {
  .info__table__content > table th {
    font-family: "Futura PT Book";
    letter-spacing: 0.075em;
  }
}
@media screen and (min-width: 768px) {
  .info__table__content > table td {
    font-family: "Futura PT Book";
    padding: 0 2.734375vw;
    border-left: 1px solid #333;
  }
}
.info__table__content2 {
  border-collapse: collapse;
  padding: 0 20px;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .info__table__content2 {
    padding: 0;
    padding: initial;
    margin: 0;
    margin: initial;
  }
}
.info__table__content2 > table {
  width: 100%;
  table-layout: auto;
  font-size: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .info__table__content2 > table {
    font-size: 1.25vw;
    width: auto;
    width: initial;
  }
}
.info__table__content2 > table td {
  border: 1px solid #e5e5e5;
  border-collapse: collapse;
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info__table__content2 > table td {
    font-family: "Futura PT Book";
    padding: 0 2.734375vw;
    border-left: 1px solid #333;
  }
}

.tb01 {
  background: #333;
  color: #fff;
  font-family: "Futura PT Book";
  letter-spacing: 0.05em;
}
@media screen and (min-width: 601px) {
  .tb01 {
    display: block;
  }
}

.titleInfo {
  width: 295px !important;
}
@media screen and (min-width: 768px) {
  .titleInfo {
    width: 28.4375vw !important;
  }
}

.card__items-info {
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .card__items-info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 1;
    margin: 0;
    margin: initial;
    padding: 0 16.625vw;
    margin-top: 6.25vw;
    padding-bottom: 8vw;
  }
}

.card__item-info {
  margin-top: 40px;
  margin-top: 2.5rem;
  background: #fff;
}
@media screen and (min-width: 601px) {
  .card__item-info {
    width: 27.34375vw;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .card__item-info {
    width: 23.4375vw;
    height: 28vw;
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .card__item-info + .card__item-info {
    margin-left: 2.34375vw;
  }
}
@media screen and (min-width: 768px) {
  .card__item-info:last-child {
    width: 14.0625vw;
  }
}

.media__info__img {
  outline: none;
}
.media__info__img > img {
  width: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .media__info__img > img {
    width: 23.4375vw;
    margin: initial;
    margin: 10px auto;
  }
}
.media__info__body {
  margin: 5px auto;
  margin: 0.3125rem auto;
}
@media screen and (min-width: 768px) {
  .media__info__body {
    margin-top: 0;
    padding-right: 1.171875vw;
    padding-bottom: 1.171875vw;
    padding-left: 1.171875vw;
  }
}
.media__info__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.22;
  letter-spacing: 0.9px;
  letter-spacing: 0.05625rem;
}
@media screen and (min-width: 768px) {
  .media__info__title {
    line-height: 1.3;
    font-size: 1.015625vw;
  }
}
.media__info__text {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.015em;
  margin-top: 3.2px;
  margin-top: 0.2rem;
}
@media screen and (min-width: 768px) {
  .media__info__text {
    font-size: 0.9375vw;
    line-height: 1.7857;
    letter-spacing: 0.04375rem;
    margin-top: 0.05rem;
  }
}
@media screen and (min-width: 768px) {
  .media__info__price {
    margin-top: 1.5625vw;
    font-size: 0.9375vw;
    font-weight: bold;
  }
}

@media screen and (min-width: 768px) {
  .infoHeight {
    height: 17.96875vw;
  }
}

.menu {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .menu {
    margin-top: 8.5125vw;
  }
}
@media screen and (min-width: 768px) {
  .menu__bg {
    position: absolute;
    top: 29%;
    left: 0%;
    z-index: -1;
    width: 77vw;
  }
}

.reservation {
  padding: 50px 0;
  background: url(../images/common/img__reservation1.jpg) top right/cover;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .reservation {
    margin-top: 13vw;
    padding-top: 51%;
    background: url(../images/common/img__reservation1.jpg) top right/cover;
    padding-bottom: 0;
    padding-bottom: initial;
  }
}
.reservation__text {
  margin-top: 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .reservation__text {
    text-align: center;
    font-size: 1.25vw;
    margin-top: 11.71875vw;
    color: #333;
  }
}

@media screen and (min-width: 768px) {
  .btn__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* headerの色を変える */
.top {
  margin-top: 0px;
  margin-top: 0rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top {
    margin-top: 0vw;
    position: relative;
  }
}
.top__inner {
  position: relative;
  overflow: hidden;
  z-index: 6;
}
@media screen and (min-width: 768px) {
  .top__inner > img {
    width: 100%;
    height: 54.6875vw;
  }
}
.top__sns {
  position: absolute;
  right: 5%;
  top: 67%;
}
.top__sns a > img {
  width: 1.953125vw;
  margin-bottom: 1.5625vw;
}
.top__sns a:hover {
  opacity: 0.7;
}
.top__message {
  font-size: 5.75vw;
  color: #fff;
  position: absolute;
  letter-spacing: 0.23em;
  top: 20%;
  left: 7%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .top__message {
    font-size: 2.03125vw;
    line-height: 2;
    letter-spacing: 0.16em;
    top: 21%;
    left: 7%;
    z-index: 3;
  }
}
.top__message span {
  letter-spacing: 0.3em;
}
.top__logofv {
  position: absolute;
  top: 33%;
  left: 7%;
}
@media screen and (min-width: 768px) {
  .top__logofv {
    top: 41%;
    left: 7%;
  }
}
.top__logofv > img {
  width: 41.375vw;
}
@media screen and (min-width: 768px) {
  .top__logofv > img {
    width: 24.609375vw;
  }
}
.top__wrapper {
  padding-top: 227.2px;
  padding-top: 14.2rem;
  padding-bottom: 228.8px;
  padding-bottom: 14.3rem;
}
@media screen and (min-width: 768px) {
  .top__wrapper {
    text-align: center;
    padding-top: 16.375rem;
    padding-bottom: 16.5rem;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown2 {
  position: absolute;
  bottom: 0;
  left: 2.5%;
}
@media screen and (min-width: 601px) {
  .scrolldown2 {
    left: 50%;
  }
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 42vw;
  bottom: 22.3vw;
  /*テキスト*/
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .scrolldown2 span {
    /*描画位置*/
    position: absolute;
    left: -1.71875vw;
    bottom: 8.39vw;
    /*テキスト*/
    color: #fff;
    font-size: 1.015625vw;
    letter-spacing: 0.2em;
    font-weight: 700;
  }
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 46.2vw;
  /*丸の形状*/
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation: circlemove 1.9s ease-in-out infinite, cirlemovehide 1.9s ease-out infinite;
          animation: circlemove 1.9s ease-in-out infinite, cirlemovehide 1.9s ease-out infinite;
}
@media screen and (min-width: 768px) {
  .scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: -2px;
    /*丸の形状*/
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    z-index: 5;
    -webkit-animation: circlemove 1.9s ease-in-out infinite, cirlemovehide 1.9s ease-out infinite;
            animation: circlemove 1.9s ease-in-out infinite, cirlemovehide 1.9s ease-out infinite;
  }
}
@media screen and (min-width: 768px) {
  .scrolldown2:before {
    left: -3px;
    -webkit-animation: circlesp 1.9s ease-in-out infinite, cirlehidesp 1.9s ease-out infinite;
            animation: circlesp 1.9s ease-in-out infinite, cirlehidesp 1.9s ease-out infinite;
  }
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 70px;
  }
  100% {
    bottom: 5px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 70px;
  }
  100% {
    bottom: 5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.3;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.3;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes circlesp {
  0% {
    bottom: 70px;
  }
  100% {
    bottom: 5px;
  }
}
@keyframes circlesp {
  0% {
    bottom: 70px;
  }
  100% {
    bottom: 5px;
  }
}
@-webkit-keyframes cirlehidesp {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.3;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlehidesp {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.3;
  }
  85% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 4vw;
  left: 47.2vw;
  /*線の形状*/
  width: 1px;
  height: 15.31vw;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .scrolldown2:after {
    left: 0;
    bottom: 1.5vw;
    height: 6.31vw;
    background: #fff;
  }
}

.test {
  padding: 10px;
  margin: 0 auto;
  color: #f00;
  background-color: #fff;
}

body {
  font-size: 60px;
  font-size: 3.75rem;
}