<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*====================
 * [Suggested order by mozilla.org]
 * z-index
 * display
 * list-style
 * position
 * float
 * clear
 *
 * width
 * height
 * margin
 * padding
 * border
 *
 * background
 * color
 *
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *====================*/
@font-face {
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: 400;
  src: url("font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-style: bold;
  font-weight: 700;
  src: url("font/NotoSansJP-Bold.woff") format("woff");
}
@keyframes pageTopShake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(0px, -5px) rotateZ(5deg);
  }
  50% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  75% {
    transform: translate(0px, -5px) rotateZ(-5deg);
  }
}
@keyframes iconShake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(0px, 0px) rotateZ(8deg);
  }
  50% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  75% {
    transform: translate(0px, 0px) rotateZ(-8deg);
  }
}
/*!
	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;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  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;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 90vw;
  height: 550px;
  box-sizing: border-box;
  margin: auto;
  text-align: left;
  color: #1d1d1f;
  max-width: 1000px;
  max-height: 550px;
  border-radius: 0px;
  background: #f5f5f7;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
  overflow-x: hidden;
  overflow-y: scroll;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 640px) {
  .modaal-container img {
    float: none;
    width: 100%;
    margin: 0px 0px 20px 0px;
  }
}

.modaal-close {
  position: fixed;
  right: 10px;
  top: 10px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 40px;
  height: 40px;
  background: #1d1d1f;
  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: #1d1d1f;
}
.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: 9px;
  left: 18px;
  width: 4px;
  height: 22px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 40px;
}
@media screen and (max-width: 640px) {
  .modaal-content-container {
    padding: 20px;
  }
}

.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;
  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;
  }
}
@-o-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container &gt; 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;
  box-shadow: none !important;
  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%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  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;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.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;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  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;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  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%;
  box-shadow: 0 0 10px rgba(0, 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;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .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;
  transform: scale(0.25);
}

@-ms-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner &gt; div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

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

.modaal-loading-spinner &gt; div:nth-of-type(1) &gt; 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;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner &gt; div:nth-of-type(2) &gt; div, .modaal-loading-spinner &gt; div:nth-of-type(3) &gt; 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 &gt; div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

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

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

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

.modaal-loading-spinner &gt; div:nth-of-type(4) &gt; div, .modaal-loading-spinner &gt; div:nth-of-type(5) &gt; 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 &gt; div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

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

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

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

.modaal-loading-spinner &gt; div:nth-of-type(6) &gt; div, .modaal-loading-spinner &gt; div:nth-of-type(7) &gt; 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 &gt; div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

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

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

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

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

.modaal-loading-spinner &gt; div:nth-of-type(8) &gt; 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;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.87s;
  -moz-animation-delay: 0.87s;
  -webkit-animation-delay: 0.87s;
  -o-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*====================
 *   Base
 *====================*/
body {
  color: #1d1d1f;
  font-family: "NotoSansJP", "Noto Sans", "Noto Sans CJK JP", sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic";
  font-size: 17px;
  line-height: 1.9rem;
  text-align: center;
}

html, body {
  height: 100%;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
  letter-spacing: 0.1rem;
}

dl,
dt,
dd,
ul,
nav,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
  border: none;
  outline: none;
}

a img {
  border-style: none;
}

em {
  font-weight: 700;
  font-style: normal;
}

i {
  color: #b7b7b7;
}

*:focus {
  border: none;
}

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

strong {
  color: #1d1d1f;
  background: linear-gradient(transparent 60%, #ffff66 60%);
  font-weight: 700;
  letter-spacing: 0.1rem;
}

article:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

section {
  position: relative;
  /*p:last-child {
    margin-bottom: 0px;
  }*/
}
section:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* common */
.lp-wrap {
  max-width: 750px;
  margin: 0px auto;
}

.tonicTxt {
  color: #d246a0;
}

.mb0 {
  margin-bottom: 0px !important;
}

.lp-mainvisual {
  position: relative;
  overflow: hidden;
}

.lp-mainvisual-button {
  position: absolute;
  bottom: 4%;
  left: 0;
  right: 0;
  margin: auto;
  width: 86.7%;
}

video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  min-height: 100%;
  min-width: 100%;
}

.lp-methods {
  background: url("../osaka-new/images/methods-bg.webp") repeat-y;
  background-size: 100% auto;
}

.lp-methods-buttons {
  padding: 5% 6.66% 12%;
}
.lp-methods-buttons li {
  margin-bottom: 6%;
}

.lp-features {
  padding-bottom: 16%;
}

.lp-features-wrap {
  margin: 0 6.66%;
}

.lp-features-card {
  position: relative;
}

.lp-features-button {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 87.8%;
}

.lp-cta {
  position: relative;
}

.lp-privilege-button {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 89.4%;
}

.lp-privilege-button01 {
  top: 38%;
}

.lp-privilege-button02 {
  top: 49%;
}

.lp-privilege-button03 {
  top: 60%;
}

.lp-privilege-button04 {
  top: 72%;
}

.lp-cta-button {
  position: absolute;
  bottom: 4%;
  left: 0;
  right: 0;
  margin: auto;
  width: 86.7%;
}

.lp-instructor-wrap {
  margin: 0 6.66%;
}

.lp-instructor-profile a {
  display: block;
  margin-bottom: 4%;
}

.lp-instructor-sakuradahiroki {
  position: relative;
  margin: 8% 6.66% 18%;
}

.lp-instructor-sakuradahiroki-button {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  margin: auto;
  width: 87.8%;
}

.lp-recommend {
  padding: 33.5% 6.66% 20%;
  background: url("../osaka-new/images/recommend-bg.webp") #000 no-repeat;
  background-size: 100% auto;
}

.lp-studio {
  background-color: #f5f5f7;
}

.lp-studio-map {
  margin: auto;
  width: 86.7%;
  height: 30vh;
  border: 5px solid #b7b7b7;
}
.lp-studio-map iframe {
  vertical-align: bottom;
}

.lp-faq {
  background: #f7f1e8;
  padding-bottom: 14%;
}

.lp-faq-button {
  margin: 0 auto 4%;
  width: 86.7%;
  cursor: pointer;
}

.lp-faq-answer {
  margin: 0 auto 4%;
  width: 86.7%;
}

.lp-faq-answer {
  display: none;
}

.lp-reservation {
  margin: 0% 6.66%;
  padding: 16% 0%;
  text-align: center;
  letter-spacing: 0.1rem;
}

.lp-reservation-title {
  margin: 0% auto 10%;
  font-size: 24px;
  font-size: 1.5rem;
}

.lp-reservation-oneminuite {
  margin: 0% auto 10%;
  text-align: center;
  font-weight: bold;
  color: #d246a0;
}
.lp-reservation-oneminuite span {
  font-size: 34px;
  font-size: 2.125rem;
}

.lp-reservation-step {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6%;
}
.lp-reservation-step div {
  position: relative;
  box-sizing: border-box;
  width: 28%;
  margin-right: 2%;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 36px;
  color: #fff;
  font-weight: bold;
  background: #1d1d1f;
}
.lp-reservation-step div:before {
  display: block;
  position: absolute;
  content: "";
  right: -14px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 14px solid #1d1d1f;
  border-right: 0;
}
.lp-reservation-step div:nth-child(2), .lp-reservation-step div:nth-child(3) {
  background: #b7b7b7;
}
.lp-reservation-step div:nth-child(2):before, .lp-reservation-step div:nth-child(3):before {
  border-left: 14px solid #b7b7b7;
}

.lp-reservation-label {
  margin-bottom: 6%;
  font-size: 17px;
  font-size: 1.0625rem;
  text-align: left;
  font-weight: bold;
}
.lp-reservation-label input, .lp-reservation-label select {
  box-sizing: border-box;
  width: 100%;
  margin-top: 2%;
  padding: 3% 5%;
  border-radius: 8px;
  border: 1px solid #1d1d1f;
  background: #f5f5f7;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: normal;
}

.lp-reservation-required {
  position: relative;
  display: inline-block;
}
.lp-reservation-required:before {
  box-sizing: border-box;
  display: block;
  position: absolute;
  content: "";
  right: -60px;
  margin: 8px auto 0px;
  padding: 0px 5px;
  border: 1px solid #e64632;
  color: #e64632;
  content: "必須";
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
}

.lp-reservation-check {
  display: flex;
  align-items: flex-start;
  font-weight: normal;
  margin: 3% 0;
}
.lp-reservation-check input {
  width: auto;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 0;
  margin-right: 20px;
  appearance: auto;
}

.lp-reservation-instructor {
  margin-bottom: 14%;
  display: none;
}

/*
.lp-reservation-button{
  position: relative;
  display: block;
  &amp;:before{
    @include pe;
    right: 30px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 10px;
    height: 10px;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    transform: rotate(45deg);
  }
  input{
    width: 100%;
    border: none;
    border-radius: 30px;
    background: $color-cta;
    font-weight: bold;
    color: #fff;
    @include fz(17);
    line-height: 60px;
    letter-spacing: 0.2rem;
  }
}
*/
.lp-reservation-button {
  position: relative;
  display: block;
}
.lp-reservation-button:before {
  display: block;
  position: absolute;
  content: "";
  left: 30px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 33px;
  height: 27px;
  background-image: url("../osaka-new/images/button-icon.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 33px auto;
}
.lp-reservation-button input {
  width: 100%;
  border: none;
  border-radius: 15px;
  background: linear-gradient(to right, #ffbe32, #e64632, #d246a0);
  font-weight: bold;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  height: 74px;
  letter-spacing: 0.2rem;
}

.lp-reservation-visitor {
  display: block;
  padding: 14% 0;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #0071e3;
}

footer {
  border-top: 1px solid #1d1d1f;
  font-size: 12px;
  font-size: 0.75rem;
}

/* modal */
.modal {
  display: none;
}

.modaal-container {
  background: #fff;
  border-radius: 18px;
}

.modaal-close {
  background: #d246a0 !important;
  top: calc((100% - 550px) / 2 + 8px);
  right: 7vw;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  /*span{
    bottom: 3px;
    left: 0px;
    right: 0px;
    margin: auto;
    display: block;
    clip: auto;
    width: 100% !important;
    height: 20px !important;
    text-align: center;
    color: $color-tonic;
    &amp;:before{
      @include pe;
      width: 100%;
      display: block;
      content: '閉じる';
      @include fz(11);
      color: #fff; 
      text-align: center;
      letter-spacing: -0.1rem;
    }
  }*/
}
.modaal-close:before, .modaal-close:after {
  top: 5px;
  left: 15px;
  background: #fff;
  width: 3px;
}

.modal-wrap {
  text-align: center;
}
.modal-wrap:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.modal-wrap p {
  margin-bottom: 20px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8rem;
  text-align: left;
}
.modal-wrap img {
  margin: auto;
  margin-bottom: 20px;
}
.modal-wrap .modaal-close {
  position: relative;
  background: #1d1d1f !important;
  width: 100%;
  height: 44px;
  top: auto;
  right: auto;
  font-weight: bold;
}
.modal-wrap .modaal-close:before, .modal-wrap .modaal-close:after {
  content: none;
}

.modal-title {
  border-bottom: 4px solid #1d1d1f;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1d1d1f;
  text-align: left;
}
.modal-title span {
  display: inline-block;
  font-size: 17px;
  font-size: 1.0625rem;
}

.modal-subTitle {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.8rem;
  font-weight: bold;
  color: #1d1d1f;
  text-align: left;
}
.modal-subTitle span {
  display: inline-block;
  padding: 0px 8px;
  color: #fff;
  background: #1d1d1f;
  font-size: 15px;
  font-size: 0.9375rem;
}

.modal-subTitle-notion {
  color: #666;
  margin-bottom: 10px;
  font-size: 13px !important;
}

.modal-list {
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
}
.modal-list li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1.5rem;
}

.modal-miniTitle {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8rem;
  font-weight: bold;
  color: #1d1d1f;
  text-align: left;
}

.modal-priceList {
  margin-bottom: 30px;
  text-align: left;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8rem;
}
.modal-priceList li {
  margin-bottom: 10px;
  padding: 0px 0px 10px 0px;
  border-bottom: dotted 1px #1d1d1f;
}
.modal-priceList li:last-child {
  margin-bottom: 0px;
}
.modal-priceList li span {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

/* footer nav */
.footerNav {
  position: relative;
  display: none;
  background: #fff;
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  transition: 0.7s;
  opacity: 0;
  z-index: 100;
}
.footerNav:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.footerNav a {
  display: block;
  margin: auto;
  width: 100%;
}
.footerNav-show {
  opacity: 1;
  display: block;
}

.footerNav-hide {
  opacity: 0;
}

/* slickカスタマイズ  */
.slick-arrow {
  position: absolute;
  top: auto;
  bottom: -90px;
  margin: auto;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 44px;
  background: #b7b7b7 !important;
  opacity: 1 !important;
  outline: none;
  border: none;
  text-indent: -9999px;
}
.slick-arrow:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  margin: auto;
  width: 25%;
  height: 25%;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  opacity: 1 !important;
}

.slick-next {
  right: 15%;
  z-index: 10;
}
.slick-next:before {
  transform: rotate(-135deg);
  right: 40%;
}

.slick-prev {
  left: 15%;
  z-index: 11;
}
.slick-prev:before {
  transform: rotate(45deg);
  left: 40%;
}

.slick-dots {
  bottom: -60px;
}
.slick-dots li {
  width: 10px;
  height: 10px;
  margin: 10px;
}

.slick-dots li button:before {
  width: 10px;
  height: 10px;
  background: #b7b7b7;
  border-radius: 10px;
  content: " ";
  opacity: 0.5;
}/*# sourceMappingURL=osaka-lp-style.css.map */</pre></body></html>