@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
html {
  font-size: 100%;
}

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Typography
 * *********************************** */
html {
  font-size: 100%;
}

body {
  line-height: 1.4;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

a:hover {
  text-decoration: none;
}

/* Layout
 * *********************************** */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

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

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Elements
 * *********************************** */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

/* Attributes & states
 * *********************************** */
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Utility classes
 * *********************************** */
.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  left: -9999px;
  top: -9999px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  margin: 0;
  padding: 0;
  appearance: none;
}

select {
  outline: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

select option {
  background-color: #fff;
  color: #333;
}

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

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

*:focus {
  outline: none;
}

.btn,
a.btn,
button.btn {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .btn,
  a.btn,
  button.btn {
    font-size: 16px;
  }
}

a.btn-standard {
  display: inline-block;
  font-weight: normal;
  color: #fff;
  min-width: 256px;
  text-decoration: none !important;
  background-color: #D871F8;
  border-radius: 100vh;
}
@media screen and (min-width: 1024px) {
  a.btn-standard {
    font-size: 20px;
  }
}
a.btn-standard:hover {
  opacity: 0.8;
}
a.btn-standard span {
  position: relative;
  z-index: 1;
}

a.btn-gradient {
  display: inline-block;
  font-weight: normal;
  color: #fff;
  min-width: 256px;
  text-decoration: none !important;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #3FCCD1), to(#D871F8));
  background-image: linear-gradient(90deg, #3FCCD1 30%, #A88DEC 100%);
  border-radius: 100vh;
}
@media screen and (min-width: 1024px) {
  a.btn-gradient {
    font-size: 20px;
  }
}
a.btn-gradient.size-s {
  min-width: auto;
  font-size: 14px;
  padding: 8px 24px;
}
@media screen and (min-width: 1024px) {
  a.btn-gradient.size-s {
    font-size: 16px;
  }
}
a.btn-gradient span {
  position: relative;
  z-index: 1;
}
a.btn-gradient:hover {
  color: #fff;
}
a.btn-gradient:hover::after {
  opacity: 0;
}
a.btn-gradient::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.5s;
  background-image: linear-gradient(90deg, #3FCCD1 0%, #D871F8 100%);
  border-radius: 100vh;
}

a.link-type-1 {
  display: inline-block;
  border: 1px solid #262524;
  padding: 16px 32px;
  border-radius: 100vh;
  transition: all 0.3s;
  font-weight: 400;
}
a.link-type-1:hover {
  background-color: #262524;
  color: #fff;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(255, 255, 255);
  z-index: 100;
  padding: 6px 12px;
  transition: all 0.3s;
  justify-content: flex-end;
}
@media screen and (min-width: 1280px) {
  header {
    justify-content: space-between;
    padding: 12px 24px;
  }
}
header #logo {
  position: absolute;
  top: 6px;
  left: 12px;
  width: 52px;
  z-index: 80;
}
@media screen and (min-width: 1280px) {
  header #logo {
    width: 60px;
    top: 10px;
    left: 24px;
  }
}
header #logo a {
  display: flex;
  align-items: center;
  padding: 0;
}
@media screen and (min-width: 1280px) {
  header #logo a {
    display: block;
    padding: 0;
  }
}
header #logo a img {
  width: 100%;
}
header a.btn-gradient.reserve {
  font-size: 14px;
  padding: 6px 16px;
  min-width: 90px;
  margin: 0 8px;
}
@media screen and (min-width: 1280px) {
  header a.btn-gradient.reserve {
    display: flex;
    padding: 8px 16px;
    margin: 0;
    min-width: 120px;
  }
}
header a.language {
  font-size: 14px;
  padding: 6px 16px;
  min-width: 90px;
  margin: 0 0;
  background-color: #fff;
  color: #333;
  border-radius: 100vh;
}
header a.language:hover {
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 1280px) {
  header a.language {
    display: flex;
    padding: 8px 16px;
    margin: 0;
    min-width: 120px;
  }
}
header .navbar {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: none;
  width: 100%;
  background-image: linear-gradient(180deg, #80DCDF 30%, #EEB8FF 100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
header .navbar.active {
  transform: translateY(0);
  display: block;
  opacity: 1;
  z-index: 90;
}
@media screen and (min-width: 1280px) {
  header .navbar {
    position: static;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: transparent;
    opacity: 1;
  }
}
header .navbar .inner {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3rem 1rem;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner {
    flex-direction: inherit;
    justify-content: flex-end;
    margin: 0 12px;
    padding: 0;
  }
}
header .navbar .inner .dropdown {
  padding-right: 0;
  position: relative;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner .dropdown {
    padding-right: 16px;
  }
}
header .navbar .inner .dropdown .dropdownbtn {
  outline: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 8px 16px;
  color: #333;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  pointer-events: none;
  border-radius: 0;
  transition: all 0.3s ease-out;
  border-bottom: none;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner .dropdown .dropdownbtn {
    width: auto;
    display: inline-flex;
    justify-content: space-between;
    text-indent: -99999px;
    border-radius: 100vh;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.3);
  }
}
header .navbar .inner .dropdown .dropdownbtn::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(/assets/img/icon-language.svg) center center no-repeat;
  background-size: 16px;
  margin: 0 4px;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner .dropdown .dropdownbtn::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: url(/assets/img/icon-dropdown.svg) center center no-repeat;
    background-size: 8px;
    margin: 0 4px;
  }
}
header .navbar .inner .dropdown .dropdownbtn:hover {
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 1280px) {
  header .navbar .inner .dropdown .dropdownbtn.active::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: url(/assets/img/icon-dropup.svg) center center no-repeat;
    background-size: 8px;
    margin: 0 4px;
  }
}
header .navbar .inner .dropdown .dropdown-content {
  position: static;
  width: 100%;
  border-radius: 6px;
  box-shadow: none;
  text-align: left;
  transition: 0.3s ease;
  padding: 0;
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 1280px) {
  header .navbar .inner .dropdown .dropdown-content {
    display: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    border: none;
    margin: 16px 0 24px 0;
  }
}
@media screen and (min-width: 1280px) {
  header .navbar .inner .dropdown .dropdown-content::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    box-shadow: 2px -2px 6px rgba(0, 0, 0, 0.05);
    border-top: 6px solid #FFFFFF;
    border-right: 6px solid #FFFFFF;
    border-bottom: 6px solid transparent;
    border-left: 6px solid transparent;
    transform: rotate(-45deg);
    mix-blend-mode: multiple;
  }
}
header .navbar .inner .dropdown .dropdown-content li {
  z-index: 1;
  position: relative;
  padding: 0.5rem 1rem;
  color: #333;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner .dropdown .dropdown-content li {
    background: #FFFFFF;
  }
}
header .navbar .inner .dropdown .dropdown-content li a:hover {
  color: #888;
}
header .navbar .inner ul.gn {
  display: flex;
  flex: 1;
  flex-direction: column;
  text-align: center;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner ul.gn {
    flex-direction: row;
  }
}
header .navbar .inner ul.gn li {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner ul.gn li {
    padding: 0 12px;
  }
}
header .navbar .inner ul.gn li span {
  font-size: 15px;
  color: black;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner ul.gn li span {
    color: #262524;
  }
}
@media screen and (min-width: 1280px) {
  header .navbar .inner ul.gn li a {
    text-align: center;
  }
  header .navbar .inner ul.gn li a::after {
    transition: all 0.3s ease-out;
    display: block;
    content: "";
    width: 1%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0);
    margin: 0 auto;
  }
  header .navbar .inner ul.gn li a:hover::after, header .navbar .inner ul.gn li a.current::after {
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #262524;
  }
}
header .navbar .inner ul.gn li a, header .navbar .inner ul.gn li span {
  font-size: 18px;
  display: block;
  color: black;
  padding: 1rem 0;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner ul.gn li a, header .navbar .inner ul.gn li span {
    font-size: 14px;
    color: #262524;
  }
}
@media screen and (min-width: 1280px) {
  header .navbar .inner ul.gn li a, header .navbar .inner ul.gn li span {
    font-size: 14px;
    color: #262524;
  }
}
header .navbar .inner ul.gn li.btnSP {
  display: block;
  width: 100%;
  padding-top: 1rem;
}
@media screen and (min-width: 1280px) {
  header .navbar .inner ul.gn li.btnSP {
    display: none;
  }
}
header .navbar .inner ul.gn li.btnSP a.reserve {
  display: block;
  background-color: #fff;
  width: 100%;
  max-width: 240px;
  color: #262524;
  border-radius: 100vh;
  padding: 0;
}
header .navbar .inner ul.gn li.btnSP a.language {
  display: block;
  background-color: #fff;
  width: 100%;
  max-width: 240px;
  color: #262524;
  border-radius: 100vh;
  padding: 0;
  margin: 0 auto;
}
header .navbar .close {
  position: absolute;
  top: 20px;
  right: 0;
  display: block;
  width: 24px;
  height: 20px;
  margin: 0 16px;
}
@media screen and (min-width: 1280px) {
  header .navbar .close {
    top: 30px;
    margin: 0 24px;
  }
}
@media screen and (min-width: 1280px) {
  header .navbar .close {
    display: none;
  }
}
header .navbar .close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transform: rotate(45deg);
}
header .navbar .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transform: rotate(-45deg);
}
header .menu-trigger,
header .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
header .menu-trigger {
  padding: 12px 12px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (min-width: 1280px) {
  header .menu-trigger {
    display: none;
  }
}
header .menu-trigger .icon {
  position: relative;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  appearance: none;
}
header .menu-trigger .icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 4px;
}
header .menu-trigger .icon span:nth-of-type(1) {
  top: 0;
  background-color: #262524;
}
header .menu-trigger .icon span:nth-of-type(2) {
  top: 8px;
  background-color: #262524;
}
header .menu-trigger .icon span:nth-of-type(3) {
  bottom: 0;
  background-color: #262524;
}
header .menu-trigger.active {
  z-index: 100;
}
header .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-40deg);
}
header .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
header .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(40deg);
}

.home header {
  background-color: rgba(255, 255, 255, 0);
  justify-content: flex-end;
}
.home header #logo {
  width: 90px;
  transition: all 0.3s;
  position: absolute;
  top: 14px;
  left: 10px;
  width: 90px;
}
@media screen and (min-width: 1280px) {
  .home header #logo {
    transition: all 0.5s;
    top: 60px;
    left: 60px;
    width: 214px;
  }
}
.home header #logo .def {
  opacity: 0;
}
.home header.isSmall {
  animation-name: fadeInAnime;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
}
@media screen and (min-width: 1280px) {
  .home header.isSmall {
    animation-duration: 0.2s;
    animation-delay: 0.5s;
  }
}
@keyframes fadeInAnime {
  0% {
    background-color: rgba(255, 255, 255, 0);
  }
  100% {
    background-color: rgb(255, 255, 255);
  }
}
.home header.isSmall #logo {
  width: 52px;
  top: 6px;
  left: 12px;
}
@media screen and (min-width: 1280px) {
  .home header.isSmall #logo {
    width: 60px;
    top: 10px;
    left: 24px;
  }
}
.home header.isSmall #logo .def {
  opacity: 1;
}
.home header.isSmall #logo .white {
  display: none;
}

/* footer */
.breadcrumbs {
  padding: 1rem 20px;
  border-top: 1px solid #EAEAEA;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs ol li a {
  display: flex;
  align-items: center;
}
.breadcrumbs ol li a span {
  text-decoration: underline;
}
.breadcrumbs ol li a span:hover {
  text-decoration: none;
}
.breadcrumbs ol li a::after {
  font-size: 10px;
  content: "＞";
  padding: 0 8px;
}

footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #F0F2F2;
  padding: 32px 24px;
}
@media screen and (min-width: 1024px) {
  footer {
    padding: 64px 24px;
  }
}
footer .footer-navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  footer .footer-navigation {
    margin-bottom: 64px;
  }
}
footer .footer-navigation ul {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .footer-navigation ul li {
  padding: 0 16px;
}
footer .logo-kitamura {
  width: 100%;
  text-align: center;
  margin: 0 0 20px 0;
}
footer .logo-kitamura img {
  width: 56px;
}
footer .copyright {
  font-size: 12px;
}

/* base */
body {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 1px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  background-color: #FFF;
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}
body.home {
  background-color: #f5f7f7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
}

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

.text-c1 {
  color: #4CCCD5;
}

.text-c2 {
  color: #F796DD;
}

.sns {
  position: fixed;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  z-index: 98;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.sns .title {
  font-size: 12px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 1024px) {
  .sns .title {
    font-size: 14px;
  }
}
.sns li {
  width: 16px;
  height: 16px;
  margin: 16px 0;
}

main {
  margin-top: 72px;
}
@media screen and (min-width: 1024px) {
  main {
    margin-top: 90px;
  }
}
main .kv {
  width: 100%;
  height: calc(100vh - 64px);
  position: relative;
}
@media screen and (min-width: 1024px) {
  main .kv {
    height: 100vh;
    min-height: 760px;
  }
}
main .kv .kv-swiper {
  width: 100%;
  height: 100%;
}
main .kv .kv-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
main .kv .kv-swiper .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center top;
}
main .kv .kv-copy {
  position: absolute;
  left: 0;
  bottom: 6rem;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
}
@media screen and (min-width: 375px) {
  main .kv .kv-copy {
    bottom: 7rem;
  }
}
@media screen and (min-width: 768px) {
  main .kv .kv-copy {
    bottom: 9rem;
  }
}
@media screen and (min-width: 1024px) {
  main .kv .kv-copy {
    left: 3rem;
    bottom: 4rem;
    text-align: left;
  }
}
main .kv .kv-copy .copy01 {
  display: inline-block;
  position: relative;
  padding: 0 16px;
}
main .kv .kv-copy .copy01 span {
  display: inline-block;
  background-color: #fff;
  padding: 8px 1rem;
  line-height: 1;
  font-size: 3.8vw;
  margin: 2px 0;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  main .kv .kv-copy .copy01 span {
    display: inline-block;
    font-size: 32px;
    padding: 8px 1.5rem;
    font-weight: 300;
  }
}
main .kv .kv-copy .copy01 span.kc01 {
  color: #4CCCD5;
}
main .kv .kv-copy .copy01 span.kc02 {
  color: #F796DD;
}
main .kv .kv-copy .copy02 {
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 12px 1rem;
  line-height: 1;
  color: #777;
  font-size: 3.6vw;
  margin: 2px 0;
}
@media screen and (min-width: 1024px) {
  main .kv .kv-copy .copy02 {
    font-size: 24px;
    padding: 12px 2rem;
  }
}
main .kv .reserve {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 0);
  width: 80%;
  padding: 16px;
  font-size: 4vw;
  z-index: 4;
}
@media screen and (min-width: 1024px) {
  main .kv .reserve {
    display: none;
  }
}

.home main {
  margin-top: 0;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-home {
  padding: 36px 0;
}
@media screen and (min-width: 1024px) {
  .section-home {
    padding: 72px 0;
  }
}
.section-home .section-header {
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .section-home .section-header {
    margin-bottom: 64px;
  }
}
.section-home .section-header .sub {
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding: 0 8px;
  z-index: 2;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .section-home .section-header .sub {
    font-size: 18px;
    padding: 0 16px;
  }
}
.section-home .section-header .title {
  display: inline-block;
  position: relative;
  font-size: 24px;
  padding: 0 8px;
  z-index: 2;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .section-home .section-header .title {
    font-size: 32px;
    padding: 0 16px;
  }
}
#news {
  background-color: #fff;
}

.ls-news {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .ls-news {
    margin: 0 -26px;
  }
}
.ls-news li {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #EAEAEA;
}
@media screen and (min-width: 1024px) {
  .ls-news li {
    width: 33.3333%;
    padding: 0 26px 3rem;
    border: none;
  }
}
.ls-news li a {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .ls-news li a {
    display: block;
  }
}
.ls-news li a figure {
  position: relative;
  border-radius: 6px;
  width: 128px;
  height: 90px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .ls-news li a figure {
    width: 100%;
    height: 228px;
  }
}
.ls-news li a figure img {
  max-width: none;
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ls-news li a .data {
  flex: 1;
  padding: 0 0 0 16px;
}
@media screen and (min-width: 1024px) {
  .ls-news li a .data {
    padding: 16px 0 0 0;
  }
}
.ls-news li a .data .date {
  display: block;
  color: #405662;
  font-size: 14px;
}
.ls-news li a .data .title {
  display: block;
  margin-top: 6px;
}

#price {
  background: url(../img/price-bg.png) center 0 no-repeat;
  background-size: 980px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #price {
    background-size: contain;
  }
}
#price .wrapper {
  position: relative;
  z-index: 2;
}
#price.section-home .section-header {
  margin-bottom: 12rem;
}
@media screen and (min-width: 1024px) {
  #price.section-home .section-header {
    margin-bottom: 24rem;
  }
}
#price::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #80DCDF 30%, #EEB8FF 100%);
  opacity: 0.55;
  z-index: 1;
}
#price .campaign-header {
  width: 100%;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 24px;
  color: #151721;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  #price .campaign-header {
    margin-bottom: 40px;
  }
}
#price .campaign-header .sub {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 18px;
  padding: 0 8px;
  z-index: 2;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  #price .campaign-header .sub {
    font-size: 30px;
    padding: 0 16px;
  }
}
#price .campaign-header .sub span {
  font-size: 14px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100vh;
  background-color: #4cccd5;
  color: #151721;
  margin: 0 8px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  #price .campaign-header .sub span {
    font-size: 20px;
  }
}
#price .campaign-header .sub span.c1 {
  background-color: #4cccd5;
}
#price .campaign-header .sub span.c2 {
  background-color: #bdcbec;
}
#price .campaign-header .sub span.c3 {
  background-color: #f796dd;
}
@media screen and (min-width: 1024px) {
  #price .campaign-header h2 {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
#price .campaign-header .title {
  display: inline-block;
  position: relative;
  font-size: 20px;
  padding: 0 8px;
  z-index: 2;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  #price .campaign-header .title {
    font-size: 32px;
    padding: 0 0 0 16px;
  }
}
#price .campaign-header .title strong {
  font-size: 64px !important;
  font-weight: 500;
  letter-spacing: -4px;
  margin-right: 6px;
}
@media screen and (min-width: 1024px) {
  #price .campaign-header .title strong {
    font-size: 96px !important;
  }
}
#price .campaign-header .title small {
  font-size: 75%;
}
#price .campaign-header .title::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 12px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #f796dd;
  content: "";
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  #price .campaign-header .title::after {
    height: 16px;
  }
}
@media screen and (min-width: 1024px) {
  #price .campaign-header .title.item02 {
    padding: 10px 0;
  }
}
#price .section-body .read {
  font-size: 16px;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  #price .section-body .read {
    font-size: 18px;
    margin-bottom: 48px;
  }
}
#price .section-body .ls-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}
#price .section-body .ls-price h2 {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 24px;
  margin: 2rem 0;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price h2 {
    font-size: 32px;
  }
}
#price .section-body .ls-price h2 strong {
  font-weight: 500;
  font-size: 150%;
}
#price .section-body .ls-price h2 small {
  font-size: 75%;
}
#price .section-body .ls-price h2.type02 {
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price h2.type02 {
    font-size: 32px;
  }
}
#price .section-body .ls-price .priceBox {
  background-color: #fff;
  padding: 32px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox {
    padding: 32px 60px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .price-main {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#price .section-body .ls-price .priceBox .price-main h3 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .price-main h3 {
    font-size: 32px;
    margin: 0 2.5rem 0 0;
  }
}
#price .section-body .ls-price .priceBox .price-main h3 .plan {
  display: inline-block;
  font-size: 18px;
  background-color: rgba(76, 204, 213, 0.25);
  padding: 6px 8px 5px;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  border-radius: 100vh;
  line-height: 1;
}
#price .section-body .ls-price .priceBox .price-main h3 .plan small {
  font-size: 75%;
  margin-left: 0.1rem;
}
#price .section-body .ls-price .priceBox .price-main .price-body .comment {
  display: inline-block;
  font-weight: 500;
  background-color: #4CCCD5;
  padding: 0.25rem 1.5rem;
  border-radius: 100vh;
  color: #151721;
}
#price .section-body .ls-price .priceBox .price-main .price-body .price {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .price-main .price-body .price {
    font-size: 20px;
  }
}
#price .section-body .ls-price .priceBox .price-main .price-body .price strong {
  font-size: 40px;
  padding: 0 8px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .price-main .price-body .price strong {
    font-size: 48px;
  }
}
#price .section-body .ls-price .priceBox .price-main .price-body .price em {
  font-size: 18px;
  padding: 0 8px;
  font-weight: 300;
  font-style: normal;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .price-main .price-body .price em {
    font-size: 24px;
  }
}
#price .section-body .ls-price .priceBox .price-main .price-body .notes {
  margin: 0.5rem 0 0 0;
  text-align: left;
  font-size: 75%;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .price-main .price-body .notes {
    margin: 0;
  }
}
#price .section-body .ls-price .priceBox .list li {
  border-bottom: 1px solid #EAEAEA;
  padding: 1.5rem 0;
}
#price .section-body .ls-price .priceBox .list li:first-child {
  padding-top: 0;
}
#price .section-body .ls-price .priceBox .list li:last-child {
  border: none;
}
#price .section-body .ls-price .priceBox .list li .price-main h3 {
  font-size: 24px;
  margin: 0 0 0.5rem 0;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .list li .price-main h3 {
    margin: -1.6rem 4rem 0 4rem;
    font-size: 24px;
    min-width: 172px;
  }
}
#price .section-body .ls-price .priceBox .list li .text {
  margin: 1rem 0 0 0;
  text-align: left;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .list li .text {
    margin: 2rem 0 0 0;
    font-size: 14px;
  }
}
#price .section-body .ls-price .priceBox .spec {
  width: 100%;
  border-top: 1px solid #EAEAEA;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .spec {
    border: none;
    border-left: 1px solid #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#price .section-body .ls-price .priceBox .spec li {
  flex: 1;
  border-bottom: 1px solid #EAEAEA;
  padding: 8px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox .spec li {
    border: none;
    border-right: 1px solid #EAEAEA;
  }
}
#price .section-body .ls-price .priceBox .spec li small {
  display: block;
  font-size: 12px;
}
#price .section-body .ls-price .priceBox.row {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.row {
    width: 49%;
  }
}
#price .section-body .ls-price .priceBox.type03 .list li {
  border: none;
  padding: 0 0;
}
#price .section-body .ls-price .priceBox.type03 .list li .price-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#price .section-body .ls-price .priceBox.type03 .list li .price-main h3 {
  font-size: 16px;
  margin: 0;
  min-width: auto;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .list li .price-main h3 {
    font-size: 24px;
  }
}
#price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price {
    font-size: 20px;
  }
}
#price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price .num {
  display: inline;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price .num {
    display: inline;
  }
}
#price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price.minus {
  color: #E51F4E;
}
#price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price strong {
  font-size: 150%;
  padding: 0 8px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price strong {
    font-size: 40px;
  }
}
#price .section-body .ls-price .priceBox.type03 .list li .price-main .price-body .price small {
  font-size: 75%;
  padding: 0 8px;
  color: #000;
}
#price .section-body .ls-price .priceBox.type03 .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #151721;
  padding: 1rem 0 0 0;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .total {
    padding: 1rem 0;
    margin-top: 1.5rem;
    justify-content: flex-end;
  }
}
#price .section-body .ls-price .priceBox.type03 .total .comment {
  font-weight: 500;
  background-color: #4CCCD5;
  margin-right: 0.5rem;
  padding: 0.25rem 1.2rem;
  border-radius: 100vh;
  color: #151721;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .total .comment {
    margin-right: 1rem;
    padding: 0.25rem 1.5rem;
    font-size: 16px;
  }
}
#price .section-body .ls-price .priceBox.type03 .total .price {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .total .price {
    font-size: 20px;
  }
}
#price .section-body .ls-price .priceBox.type03 .total .price strong {
  font-size: 200%;
  padding: 0 8px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  #price .section-body .ls-price .priceBox.type03 .total .price strong {
    font-size: 48px;
  }
}
#price .section-body .ls-price .priceBox.type03 .total .price small {
  font-size: 75%;
  padding: 0 8px;
}
#price .section-body .period {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 24px 24px;
  background-color: rgba(247, 150, 221, 0.2);
  border-radius: 8px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #price .section-body .period {
    padding: 32px 32px;
    margin-bottom: 20px;
  }
}
#price .section-body .period h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .period h3 {
    font-size: 28px;
  }
}
#price .section-body .period .data {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
  #price .section-body .period .data {
    font-size: 40px;
  }
}
#price .section-body .period .data small {
  display: inline-block;
  font-size: 70%;
}

#waribiki .ls-price {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#waribiki .ls-price > li {
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  #waribiki .ls-price > li {
    width: 100%;
    display: flex;
    align-items: center;
  }
}
#waribiki .ls-price > li .priceBox {
  margin: 0;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  #waribiki .ls-price > li .priceBox {
    width: 50%;
    padding: 32px;
    margin: 0;
  }
}
#waribiki .ls-price > li .priceBox .spec li {
  justify-content: center;
}
#waribiki .ls-price > li .text {
  padding: 0 1rem;
}
@media screen and (min-width: 1024px) {
  #waribiki .ls-price > li .text {
    width: 50%;
    padding: 1rem 3rem;
  }
}
#waribiki .ls-price .priceBox {
  border: 1px solid #EAEAEA;
  background-color: #fff;
  padding: 32px 20px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #waribiki .ls-price .priceBox {
    padding: 32px 60px;
    margin-bottom: 24px;
  }
}
#waribiki .ls-price .priceBox h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 500;
}
#waribiki .ls-price .priceBox .price {
  font-size: 20px;
}
#waribiki .ls-price .priceBox .price strong {
  font-size: 48px;
  padding: 0 8px;
  font-weight: 500;
}
#waribiki .ls-price .priceBox .spec {
  width: 100%;
  border-top: 1px solid #EAEAEA;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  #waribiki .ls-price .priceBox .spec {
    border: none;
    border-left: 1px solid #EAEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#waribiki .ls-price .priceBox .spec li {
  flex: 1;
  border-bottom: 1px solid #EAEAEA;
  padding: 8px;
}
@media screen and (min-width: 1024px) {
  #waribiki .ls-price .priceBox .spec li {
    border: none;
    border-right: 1px solid #EAEAEA;
  }
}
#waribiki .ls-price .priceBox .spec li small {
  display: block;
  font-size: 12px;
}

#point .wrapper {
  max-width: 980px;
}
#point .list-point li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 4rem 0;
}
#point .list-point li .data {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 4px 16px 0;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .data {
    display: flex;
    padding: 0px 16px 0;
    margin: 0 0 0 0;
  }
}
#point .list-point li .data .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #4cccd5;
  border-radius: 100vh;
  font-size: 24px;
  line-height: 1;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .data .icon {
    width: 56px;
    height: 56px;
    margin: 0.5rem 0;
  }
}
#point .list-point li .data .text {
  padding: 0 0 0 1rem;
  margin: 0 0 16px 0;
  flex: 1;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .data .text {
    flex: 1;
    padding: 0 48px 0 16px;
    margin: 0 0 0 0;
  }
}
#point .list-point li .data .text h3 {
  font-size: 18px;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .data .text h3 {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  #point .list-point li .data .text p {
    font-size: 18px;
  }
}
#point .list-point li .data .text .notes {
  margin-top: 1rem;
}
#point .list-point li .data .text .block-button {
  margin: 2rem 0 0 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .data .text .block-button {
    text-align: left;
  }
}
#point .list-point li .data .text .block-button .link-type-1.isSmall {
  padding: 8px 16px;
}
#point .list-point li .data.full {
  width: 100%;
}
#point .list-point li .data.full .text {
  padding-right: 0;
}
#point .list-point li .photo {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding-left: 19vw;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .photo {
    width: 400px;
    height: 400px;
    padding-left: 0;
  }
}
#point .list-point li .photo-gallery {
  width: 100%;
  padding-left: 19vw;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .photo-gallery {
    width: 400px;
    padding-left: 0;
  }
}
#point .list-point li .photo-gallery .swiper {
  border-radius: 8px;
}
#point .list-point li .photo-gallery .swiper .swiper-slide .title {
  background-color: #e5e5e5;
  text-align: center;
  padding: 0.5rem 1rem;
}
#point .list-point li .room {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0;
}
#point .list-point li .room li {
  width: 50%;
  padding: 8px;
  margin: 0;
}
#point .list-point li .room li figure {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
}
#point .list-point li .room li .title {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #point .list-point li .room li {
    width: 33.3333%;
  }
}

#use .wrapper {
  max-width: 980px;
}
#use .list-point li {
  display: flex;
  flex-wrap: wrap;
}
#use .list-point li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #4cccd5;
  border-radius: 100vh;
  font-size: 24px;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  #use .list-point li .icon {
    width: 56px;
    height: 56px;
  }
}
#use .list-point li .data {
  flex: 1;
  padding: 4px 16px 0;
  margin: 0 0 30px 0;
}
@media screen and (min-width: 1024px) {
  #use .list-point li .data {
    display: flex;
    padding: 0px 16px 0;
    margin: 0 0 56px 0;
  }
}
#use .list-point li .data .text {
  margin: 0 0 16px 0;
}
@media screen and (min-width: 1024px) {
  #use .list-point li .data .text {
    width: 66.666%;
    padding: 0 48px 0 16px;
  }
}
#use .list-point li .data .text h3 {
  font-size: 18px;
  margin: 0 0 16px 0;
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  #use .list-point li .data .text h3 {
    font-size: 24px;
  }
}
#use .list-point li .data .text h3 small {
  display: block;
  font-size: 12px;
  padding: 6px 0;
}
@media screen and (min-width: 1024px) {
  #use .list-point li .data .text h3 small {
    font-size: 14px;
  }
}
#use .list-point li .data .photo {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  #use .list-point li .data .photo {
    width: 33.333%;
    height: 176px;
  }
}

#requirement {
  background-color: #fff;
}
#requirement .wrapper {
  max-width: 800px;
}
#requirement .block-requirement h3 {
  font-size: 16px;
  margin: 32px 0 16px 0;
  line-height: 1.3;
  font-weight: 400;
}
#requirement .block-requirement h4 {
  font-size: 14px;
  margin: 0 0 12px 0;
}
#requirement .block-requirement p {
  font-size: 14px;
}

#shop .block-shop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#shop .block-shop li {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #shop .block-shop li {
    width: 33.3333%;
    padding: 0 1rem;
  }
}
#shop .block-shop li figure {
  width: 100%;
  height: 60vw;
  position: relative;
  margin: 0 0 14px 0;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  #shop .block-shop li figure {
    max-height: 240px;
  }
}
#shop .block-shop li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
}
#shop .block-shop li .data {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  #shop .block-shop li .data {
    margin: 0;
  }
}
#shop .block-shop li .name {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
#shop .block-shop li .address {
  font-size: 14px;
  margin: 0 0 10px 0;
}
#shop .block-shop li .info {
  font-size: 14px;
  margin: 0 0 10px 0;
}
#shop .block-shop li .link-map {
  font-size: 14px;
}

#reserve .block-shop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#reserve .block-shop li {
  width: 100%;
  padding: 1.5rem 0;
}
@media screen and (min-width: 1024px) {
  #reserve .block-shop li {
    width: 50%;
    padding: 0 1.5rem;
  }
}
#reserve .block-shop li figure {
  width: 100%;
  height: 60vw;
  position: relative;
  margin: 0 0 14px 0;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  #reserve .block-shop li figure {
    max-height: 336px;
  }
}
#reserve .block-shop li figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  max-width: none;
}
#reserve .block-shop li .name {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
#reserve .block-shop li .address {
  font-size: 14px;
  margin: 0 0 10px 0;
}
#reserve .block-shop li .info {
  font-size: 14px;
  margin: 0 0 10px 0;
}
#reserve .block-shop li .link-map {
  font-size: 14px;
}

.block-button {
  margin: 32px 0 0 0;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .block-button {
    margin: 40px 0 0 0;
  }
}

main .page-header {
  padding: 2rem 1.5rem;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  main .page-header {
    padding: 3rem 1.5rem;
  }
}
main .page-header h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  main .page-header h1 {
    font-size: 40px;
  }
}
main article {
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  main article {
    padding-bottom: 72px;
  }
}
main article h2 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  main article h2 {
    font-size: 32px;
    margin-bottom: 3rem;
  }
}
main article .news h2 {
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  main article .news h2 {
    font-size: 32px;
    margin-bottom: 3rem;
  }
}
main article .news h2 span {
  color: #4CCCD5;
  display: inline;
  font-size: 70%;
  padding: 0.5rem 0;
}
main article .news h2 small {
  color: #F796DD;
  display: inline;
  font-size: 70%;
  padding: 0.5rem 0;
}
main article h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 2rem 0 1rem;
}
@media screen and (min-width: 1024px) {
  main article h3 {
    font-size: 18px;
  }
}
main article p {
  margin-bottom: 1.35rem;
}
main article .carousel-contents-about {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
}
main article .block-body {
  padding: 32px 0;
}
@media screen and (min-width: 1024px) {
  main article .block-body {
    padding: 72px 0;
  }
}
main article .block-body .read-copy {
  font-size: 24px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  main article .block-body .read-copy {
    font-size: 32px;
    margin-bottom: 2rem;
    text-align: center;
  }
}
main article .block-body .read {
  font-size: 16px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  main article .block-body .read {
    font-size: 18px;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 2;
  }
  main article .block-body .read p {
    margin-bottom: 1.35rem;
    line-height: 1.8;
  }
}
main article .block-body .borderbox {
  padding: 1.5rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #eaeaea;
}
@media screen and (min-width: 1024px) {
  main article .block-body .borderbox {
    padding: 3rem 2rem;
  }
}
main article .block-body .borderbox p {
  width: 100%;
  display: block;
}
main article .block-body .borderbox .linkbox .item {
  display: flex;
  align-items: center;
}
main article .block-body .borderbox .linkbox .item .item-title.icon-mail::before {
  display: block;
  content: "";
  width: 32px;
  height: 32px;
  background: url(../../../assets/img/icon-mail.svg) center center no-repeat;
  background-size: cover;
  margin: 0 auto;
  margin-right: 0.5rem;
}
@media screen and (min-width: 1024px) {
  main article .block-body .borderbox .linkbox .item .item-title.icon-mail::before {
    width: 36px;
    height: 36px;
    margin-right: 1rem;
  }
}
main article .block-body .borderbox .linkbox .item .item-body a {
  transition: all 0.3s ease-out;
}
main article .block-body .borderbox .linkbox .item .item-body a img {
  width: auto;
  height: 6vw;
  max-height: 36px;
}
main article .block-body .borderbox .linkbox .item .item-body a:hover {
  opacity: 0.8;
}
main article .block-body.type02 h2 {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  margin: 2rem 0 0.5rem;
}
@media screen and (min-width: 1024px) {
  main article .block-body.type02 h2 {
    font-size: 24px;
    margin: 3rem 0 1rem;
  }
}
main article .block-body.type02 p a {
  text-decoration: underline;
}
main article .block-body.type02 p a:hover {
  text-decoration: none;
}
main article .block-body a {
  text-decoration: underline;
}
main article .block-body a:hover {
  text-decoration: none;
}
main article .section-bg {
  background-color: #f5f7f7;
}
main article #shop .block-shop {
  margin-bottom: 72px;
  display: block;
}
main article #shop .block-shop li {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 2rem;
}
main article #shop .block-shop li figure {
  width: 100%;
  height: 60vw;
}
@media screen and (min-width: 1024px) {
  main article #shop .block-shop li figure {
    width: 50%;
    max-height: 360px;
  }
}
main article #shop .block-shop li .data {
  width: 100%;
  padding: 1rem 0;
}
@media screen and (min-width: 1024px) {
  main article #shop .block-shop li .data {
    width: 50%;
    padding: 2rem 3rem;
  }
}
main article #shop .block-shop li .data .name {
  font-size: 135%;
}
main article #shop .block-shop li .data .address {
  font-size: 100%;
}
main article #shop .block-shop li .data .info {
  font-size: 100%;
}
main article #shop .block-shop li .data .link-map {
  font-size: 100%;
}
main article .ls-option {
  border-top: 1px solid #EAEAEA;
  margin-bottom: 4rem;
}
main article .ls-option > li {
  border-bottom: 1px solid #EAEAEA;
  padding: 1rem 0;
}
@media screen and (min-width: 1024px) {
  main article .ls-option > li {
    padding: 2rem 0;
  }
}
main article .ls-option > li .ls-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
main article .ls-option > li .ls-header .title {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}
@media screen and (min-width: 768px) {
  main article .ls-option > li .ls-header .title {
    font-size: 20px;
    width: auto;
  }
}
main article .ls-option > li .ls-header .price {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  main article .ls-option > li .ls-header .price {
    font-size: 28px;
  }
}
main article .ls-option > li .ls-header .price small {
  font-size: 16px;
}
main article .ls-option > li .ls-header .notes {
  width: 100%;
  margin: 0.5rem 0 0 0;
  text-align: left;
  font-size: 87.5%;
}
@media screen and (min-width: 1024px) {
  main article .ls-option > li .ls-header .notes {
    margin: 0;
  }
}
main article .ls-option > p {
  margin-top: 1.5rem;
}
main article .flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}
main article .flexbox li {
  padding: 8px;
}
@media screen and (min-width: 1024px) {
  main article .flexbox li {
    padding: 16px;
  }
}
main article .flexbox.row1_2 li {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  main article .flexbox.row1_2 li {
    width: 50%;
  }
}
main article .flexbox.row1_3 li {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  main article .flexbox.row1_3 li {
    width: 33.3333%;
  }
}
main article .flexbox.row2_3 li {
  width: 50%;
}
@media screen and (min-width: 1024px) {
  main article .flexbox.row2_3 li {
    width: 33.3333%;
  }
}
main article .flexbox.row2_3 li .title {
  padding: 1rem 0;
  text-align: center;
}
main article #article .cover {
  width: 100%;
  height: 60vw;
  max-height: 760px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
main article #article .cover img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
}
main article .ls-faq {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  main article .ls-faq {
    margin-bottom: 48px;
  }
}
main article .ls-faq dl {
  width: 100%;
  margin-bottom: 2px;
  background-color: #fff;
  border-bottom: 1px solid #EAEAEA;
}
main article .ls-faq dl dt {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  main article .ls-faq dl dt {
    padding: 2rem 3rem 2rem 0;
  }
}
main article .ls-faq dl dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: url(../img/icon-toggle01.svg) center center no-repeat;
  background-size: cover;
}
main article .ls-faq dl dt.open::after {
  background: url(../img/icon-toggle02.svg) center center no-repeat;
  background-size: cover;
}
main article .ls-faq dl dd {
  display: none;
  padding: 1.5rem 3rem 1.5rem 0;
}
@media screen and (min-width: 1024px) {
  main article .ls-faq dl dd {
    padding: 2rem 3rem 2rem 0;
    padding-top: 0;
  }
}
main article .ls-inquiry {
  margin: 2rem 0;
}
@media screen and (min-width: 1024px) {
  main article .ls-inquiry {
    margin: 3rem 0;
  }
}
main article .ls-inquiry li {
  text-align: center;
  border: 1px solid #EAEAEA;
  padding: 2rem 1rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  main article .ls-inquiry li {
    padding: 3rem 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
main article .ls-inquiry li .title {
  width: 100%;
  font-size: 20px;
}
main article .ls-inquiry li .link {
  width: 100%;
  font-size: 32px;
}
main article .ls-inquiry li .number {
  width: 100%;
  font-size: 32px;
}
main article .ls-inquiry li .data {
  width: 100%;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
}

.brSP {
  display: none;
}

@media screen and (max-width: 768px) {
  .brPC {
    display: none;
  }
  .brSP {
    display: block;
  }
}
.studio-gallary {
  margin: 0 0 4rem 0;
}
.studio-gallary .swiper-container {
  background-color: rgba(76, 204, 213, 0.5);
}
.studio-gallary .studio-swiper {
  height: 138vw;
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .studio-gallary .studio-swiper {
    height: 580px;
  }
}
.studio-gallary .studio-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.studio-gallary .studio-swiper .swiper-slide .title {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  font-size: 75%;
  color: #FFF;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}
.studio-gallary.small {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}
@media screen and (min-width: 1024px) {
  .studio-gallary.small .studio-swiper {
    height: 400px;
  }
}

.ls-room {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .ls-room {
    margin: 0 -26px;
    margin-bottom: 2rem;
  }
}
.ls-room li {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #EAEAEA;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .ls-room li {
    width: 33.3333%;
    padding: 0 20px 3rem;
    border: none;
  }
}
.ls-room li .strong {
  display: block;
  color: #D30E0F;
  font-weight: 700;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .ls-room li {
    display: block;
  }
  .ls-room li .strong {
    font-size: 14px;
  }
}
.ls-room li figure {
  position: relative;
  border-radius: 6px;
  width: 128px;
  height: 90px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .ls-room li figure {
    width: 100%;
    height: 236px;
  }
}
.ls-room li figure img {
  max-width: none;
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ls-room li .data {
  flex: 1;
  padding: 0 0 0 16px;
}
@media screen and (min-width: 1024px) {
  .ls-room li .data {
    padding: 12px 0 0 0;
  }
}
.ls-room li .data .text {
  display: block;
  color: #405662;
  font-size: 14px;
  margin-top: 6px;
}
.ls-room li .data .title {
  display: block;
  margin-top: 6px;
}
.ls-room li .data .label {
  display: block;
  font-size: 12px;
  padding: 4px 0;
}
@media screen and (min-width: 1024px) {
  .ls-room li .data .label {
    display: block;
    font-size: 14px;
  }
}

.ls-standard {
  margin: 2rem 0;
}
.ls-standard li {
  display: block;
  margin-bottom: 1rem;
}
.ls-standard li .title, .ls-standard li .text {
  display: block;
}
.ls-standard li .title {
  width: 100%;
  padding: 0 0 0.5rem 0;
  font-weight: 400;
}
.ls-standard li .text {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .ls-standard li {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 1rem;
  }
  .ls-standard li .title, .ls-standard li .text {
    display: block;
    padding: 0 0 1rem 0;
  }
  .ls-standard li .title {
    width: 20%;
  }
  .ls-standard li .text {
    width: 80%;
  }
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #000 !important;
}

.modaal-video-container {
  max-height: 90% !important;
}

.modaal-wrapper video {
  max-height: 720px;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: center;
  color: #000;
  max-width: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.modal-open {
  overflow: visible !important;
  position: static !important;
}

.bannerbox {
  padding: 3rem 1rem 3rem 1rem;
  background-color: #F0F2F2;
}
.bannerbox .wrapper {
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .bannerbox .wrapper {
    display: flex;
  }
}
.bannerbox .wrapper a {
  display: inline-block;
}
.bannerbox .wrapper a:hover {
  opacity: 0.7;
}
.bannerbox .wrapper a .photo {
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .bannerbox .wrapper a {
    width: 50%;
    padding: 0 1rem;
  }
}
.bannerbox .wrapper h2 {
  text-align: center;
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  margin: 2rem 0;
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .bannerbox .wrapper h2 {
    font-size: 24px;
  }
}
.bannerbox .wrapper .list-item {
  display: flex;
  justify-content: center;
  font-size: 12px;
  margin: -1.5rem 0 -1rem;
}
@media screen and (min-width: 1024px) {
  .bannerbox .wrapper .list-item {
    font-size: 16px;
  }
}
.bannerbox .wrapper .list-item li {
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  padding: 4px 12px;
  margin: 0.25rem;
}

.point {
  width: 100%;
  margin: 4rem 0;
}
.point .flexbox .data {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .point .flexbox .data {
    width: 50%;
    padding-right: 3rem;
  }
}
.point .flexbox .data h2 {
  margin: 1rem 0 1rem;
  font-size: 26px;
}
.point .flexbox .data .text p {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .point .flexbox .data .text p {
    font-size: 18px;
  }
}
.point .flexbox .data .text p small {
  display: block;
  font-size: 14px;
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .point .flexbox .data .text p small {
    font-size: 16px;
  }
}
.point .flexbox .photo {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (min-width: 1024px) {
  .point .flexbox .photo {
    width: 50%;
  }
}

.list-style-disc {
  list-style-type: disc;
  margin-left: 1.5rem;
}
.list-style-disc li {
  padding: 0.25rem 0;
}

.cmt {
  margin: 1em 0 0 0;
  font-size: 12px;
}
@media screen and (min-width: 1024px) {
  .cmt {
    font-size: 14px;
  }
}
.cmt span {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.cmt span::before {
  content: "※";
}

.alert-text {
  color: #D30E0F;
}

.infoBox {
  text-align: center;
}
.infoBox span {
  display: inline-block;
  border-radius: 12px;
  background-color: #fff;
  color: #4CCCD5;
  border: 3px dotted #4CCCD5;
  margin: 0 0 2rem 0;
  padding: 3rem 2rem;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .infoBox span {
    padding: 4rem;
    font-size: 32px;
    margin: 0 auto 2rem auto;
  }
}

.br-pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: block;
  }
}
.formBox {
  max-width: 800px;
  margin: 0 auto;
}
.formBox .checklist li {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}
.formBox .checklist input[type=checkbox] {
  display: none;
}
.formBox .checklist label {
  position: relative;
  padding: 0 32px;
  cursor: pointer;
}
.formBox .checklist label::before {
  width: 18px; /* チェックボックスの幅 */
  height: 18px; /* チェックボックスの高さ */
  left: 5px;
  border: 1px solid #E0E0E0; /* チェックボックスの枠 */
  border-radius: 2px;
}
.formBox .checklist label::after,
.formBox .checklist label::before {
  position: absolute;
  content: "";
  top: 4px;
}
.formBox .checklist label::after {
  position: absolute;
  width: 6px;
  height: 10px;
  top: 6px;
  left: 11px;
  border-right: 2px solid white; /* チェックマークの色 */
  border-bottom: 3px solid white; /* チェックマークの色 */
  content: "";
  opacity: 0;
  transform: rotate(45deg);
}
.formBox .checklist input[type=checkbox]:checked + label::after {
  opacity: 1;
}
.formBox .checklist input[type=checkbox]:checked + label::before {
  background-color: #43AFB2;
  border: 1px solid #43AFB2;
}

.change a.btn-gradient {
  display: inline-block;
  font-weight: normal;
  color: #fff;
  min-width: 256px;
  pointer-events: none;
  border-radius: 100vh;
}
@media screen and (min-width: 1024px) {
  .change a.btn-gradient {
    font-size: 20px;
  }
}
.change a.btn-gradient span {
  position: relative;
  z-index: 1;
}
.change a.btn-gradient:hover {
  color: #fff;
}
.change a.btn-gradient:hover::after {
  opacity: 0;
}
.change a.btn-gradient::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.5s;
  border-radius: 100vh;
  background: none;
  background-color: #ccc;
}
.change a.btn-gradient.active {
  pointer-events: auto;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #3FCCD1), to(#D871F8));
  background-image: linear-gradient(90deg, #3FCCD1 30%, #A88DEC 100%);
}
.change a.btn-gradient.active::after {
  content: "";
  transition: all 0.5s;
  background-image: linear-gradient(90deg, #3FCCD1 0%, #D871F8 100%);
  border-radius: 100vh;
}

.block-error404 {
  text-align: center;
}
.block-error404 .title {
  font-size: 18px;
  margin: 0 0 16px 0;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .block-error404 .title {
    font-size: 24px;
  }
}
.block-error404 .title .sub {
  display: block;
  font-size: 14px;
  padding: 6px 0;
}
@media screen and (min-width: 1024px) {
  .block-error404 .title .sub {
    font-size: 16px;
  }
}
.block-error404 .lead br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .block-error404 .lead br {
    display: block;
  }
}

.block-text {
  margin: 0 0 2rem 0;
}

.price-text span {
  font-size: 150%;
  font-weight: 500;
}
.price-text strong {
  font-size: 300%;
}
.price-text small {
  font-weight: 500;
}

.icon-new::before {
  display: inline-block;
  content: "New";
  color: #D30E0F;
  font-weight: 500;
  margin-left: 8px;
}

.event_mes-end {
  display: inline-block;
  font-weight: normal;
  color: #fff;
  min-width: 256px;
  text-decoration: none !important;
  background-color: #b5b5b5;
  border-radius: 100vh;
  padding: 1rem 1.6rem;
  margin: 1rem 0 0 0;
}
@media screen and (min-width: 1024px) {
  .event_mes-end.large {
    font-size: 150%;
  }
}

.block-button .event_mes-end {
  margin: 0 0 0 0;
}/*# sourceMappingURL=style.css.map */