@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");

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');


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;
  color: #303030;
}

* {
  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;
}

/* 外部リンク用アイコンスタイル
 * *********************************** */

a[href^="http"]:not([href*="picmii.studio"]):not(.btn)::after {
  content: "\e89e";
  /* open_in_new のコードポイント */
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  margin-left: 0.3em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

a.no-icon::after {
  content: none !important;
}

/* 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 {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 256px;
  height: 56px;
  padding: 0 32px;

  color: #fff;
  text-decoration: none !important;
  background: linear-gradient(90deg, #303030 30%, #625950 100%);
  border-radius: 9999px;

  z-index: 1;
}

a.btn-gradient::before {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;

  border: 2px solid #3a3a3a;
  /* 外側の黒線 */
  border-radius: 9999px;

  pointer-events: none;
}

a.btn-gradient::before {
  content: "";
  position: absolute;
  inset: -5px;
  /* ボタンとの隙間 */
  border: 2px solid #3a3a3a;
  /* 外側の黒線 */
  border-radius: 100vh;
  pointer-events: none;
}

a.btn-gradient:hover {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #625950), to(#303030));
  background-image: linear-gradient(90deg, #625950 30%, #303030 100%);
}

@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, #303030 0%, #625950 100%);
  border-radius: 100vh;
  z-index: -1;
}

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 {
  --header-height: 64px;
  --header-side-padding: 12px;
  --header-logo-width: 52px;
  --header-logo-left: 12px;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  width: 100%;
  height: var(--header-height);
  padding: 0 var(--header-side-padding);

  background-color: #fff;

  transition:
    background-color 0.3s ease,
    padding 0.3s ease;
}


/* =======================================================
   Logo
======================================================= */

header #logo {
  position: absolute;
  top: 50%;
  left: var(--header-logo-left);
  z-index: 80;

  width: var(--header-logo-width);

  transform: translateY(-50%);

  transition:
    top 0.3s ease,
    left 0.3s ease,
    width 0.3s ease,
    transform 0.3s ease;
}

header #logo a {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
}

header #logo img {
  display: block;
  width: 100%;
  height: auto;
}

header #logo img.white {
  display: none;
}


/* =======================================================
   Header reserve button
======================================================= */

header > a.btn-gradient.reserve.header {
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;

  width: auto;
  min-width: 90px;
  height: 36px;
  padding: 0 16px;
  margin: 0 8px;

  font-size: 14px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;

  background: linear-gradient(
    90deg,
    #303030 30%,
    #625950 100%
  );

  border: 0;
  border-radius: 100vh;
}

header > a.btn-gradient.reserve.header span {
  color: #fff;
  line-height: 1;
}

/* 共通ボタンの外側線・疑似背景をヘッダーでは使用しない */
header > a.btn-gradient.reserve.header::before,
header > a.btn-gradient.reserve.header::after {
  content: none;
}


/* =======================================================
   Navigation
   Mobile / Tablet
======================================================= */

header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;

  display: none;

  width: 100%;
  height: 100dvh;

  overflow-y: auto;

  background-color: #f5f1ef;
  opacity: 0;
}

header .navbar.active {
  display: block;
  opacity: 1;
}

header .navbar .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
  min-height: 100%;
  padding: 72px 16px 40px;
}


/* =======================================================
   Language selector
======================================================= */

header .navbar .inner .dropdown {
  position: relative;
  flex: 0 0 auto;

  padding: 0;
}

header .navbar .inner .dropdown .dropdownbtn {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: 8px 16px;

  overflow: hidden;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #333;
  text-transform: uppercase;

  cursor: pointer;
  pointer-events: none;

  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;

  transition: background-color 0.3s ease;
}

header .navbar .inner .dropdown .dropdownbtn::before {
  content: "";

  display: block;
  flex: 0 0 auto;

  width: 16px;
  height: 16px;

  background:
    url("/wp-content/themes/picmii/assets/img/icon-language.svg")
    center / 16px no-repeat;
}

header .navbar .inner .dropdown .dropdownbtn:hover {
  background-color: #fff;
}


/* =======================================================
   Language dropdown
   Mobile / Tablet
======================================================= */

header .navbar .inner .dropdown .dropdown-content {
  position: static;

  display: flex;
  flex-wrap: wrap;

  width: 100%;
  padding: 8px;
  margin: 0 0 16px;

  list-style: none;
  text-align: left;

  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
  box-shadow: none;
}

header .navbar .inner .dropdown .dropdown-content li {
  position: relative;
  z-index: 1;

  padding: 4px 7px;

  color: #333;
}

header .navbar .inner .dropdown .dropdown-content li a:hover {
  color: #888;
}


/* =======================================================
   Global navigation
   Mobile / Tablet
======================================================= */

header .navbar .inner ul.gn {
  display: flex;
  flex: 1;
  flex-direction: column;

  width: 100%;

  text-align: center;
}

header .navbar .inner ul.gn > li {
  margin: 0;
  padding: 0;
}

header .navbar .inner ul.gn > li > a {
  display: block;

  padding: 7px 0;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
}


/* =======================================================
   Mobile navigation reserve button
======================================================= */

header .navbar .inner ul.gn > li.btnSP {
  display: block;

  width: 100%;
  padding-top: 16px;
}

header .navbar .inner ul.gn > li.btnSP > a.reserve {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 256px;
  height: 56px;
  padding: 0;
  margin: 0 auto;

  color: #fff !important;

  background: linear-gradient(
    135deg,
    #303030 0%,
    #625950 100%
  );

  border: 2px solid #fff;
  border-radius: 100vh;
}

header .navbar .inner ul.gn > li.btnSP > a.reserve::before {
  content: "";

  position: absolute;
  inset: -4px;

  border: 2px solid #3a3a3a;
  border-radius: 100vh;

  pointer-events: none;
}

header .navbar .inner ul.gn > li.btnSP > a.reserve::after {
  content: none;
}

header .navbar .inner ul.gn > li.btnSP > a.reserve span {
  display: block;

  color: #fff !important;
  line-height: 1;
}


/* =======================================================
   Menu trigger
======================================================= */

header .menu-trigger,
header .menu-trigger span {
  display: inline-block;

  box-sizing: border-box;

  transition: all 0.4s ease;
}

header .menu-trigger {
  position: relative;
  z-index: 100;

  padding: 12px;

  cursor: pointer;
}

header .menu-trigger .icon {
  position: relative;

  width: 24px;
  height: 18px;

  background: none;
  border: 0;

  appearance: none;
}

header .menu-trigger .icon span {
  position: absolute;
  left: 0;

  width: 100%;
  height: 2px;

  background-color: #262524;
  border-radius: 4px;
}

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

header .menu-trigger .icon span:nth-of-type(2) {
  top: 8px;
}

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

header .menu-trigger.active .icon span:nth-of-type(1) {
  transform: translateY(8px) rotate(-40deg);
}

header .menu-trigger.active .icon span:nth-of-type(2) {
  opacity: 0;
}

header .menu-trigger.active .icon span:nth-of-type(3) {
  transform: translateY(-8px) rotate(40deg);
}


/* =======================================================
   Home header
======================================================= */

/*
 * HOME初期表示
 * 背景を透明にして白ロゴを使用
 */

.home header {
  background-color: transparent;
}

.home header #logo img.white {
  display: block;
}

.home header #logo img.def {
  position: absolute;
  inset: 0;

  opacity: 0;
}


/*
 * HOME初期表示：Mobile / Tablet
 */

.home header:not(.isSmall) #logo {
  top: 14px;
  left: 10px;

  width: 90px;

  transform: none;
}


/*
 * HOMEスクロール後
 * 通常ページと同じ小型ロゴに戻す
 */

.home header.isSmall {
  background-color: #fff;
}

.home header.isSmall #logo img.white {
  display: none;
}

.home header.isSmall #logo img.def {
  position: static;

  opacity: 1;
}


/* =======================================================
   Desktop
   1400px以上
======================================================= */

@media screen and (min-width: 1400px) {

  /* ---------------------------------------------------
     Header
  --------------------------------------------------- */

  header {
    --header-height: 78px;
    --header-side-padding: 24px;
    --header-logo-width: 60px;
    --header-logo-left: 24px;

    gap: 12px;

    /*
     * 左側
     * 24px + logo 60px + 約26px
     */
    padding-left: 110px;
  }


  /*
   * HOME初期表示のみ大型ロゴ分のスペースを確保
   */

  .home header:not(.isSmall) {
    padding-left: 290px;
  }


  /* ---------------------------------------------------
     Desktop logo
  --------------------------------------------------- */

  /*
   * 通常ページおよびHOMEスクロール後は
   * 共通の header #logo をそのまま使用。
   *
   * top: 50%;
   * transform: translateY(-50%);
   * left: 24px;
   * width: 60px;
   */


  /*
   * HOME初期表示だけ大型ロゴ
   */

  .home header:not(.isSmall) #logo {
    top: 60px;
    left: 60px;

    width: 214px;

    transform: none;

    transition:
      top 0.5s ease,
      left 0.5s ease,
      width 0.5s ease,
      transform 0.5s ease;
  }


  /* ---------------------------------------------------
     Navigation container
  --------------------------------------------------- */

  header .navbar {
    position: static;
    z-index: 1;

    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;

    width: auto;
    min-width: 0;
    height: auto;

    overflow: visible;

    background: transparent;
    opacity: 1;
  }

  header .navbar .inner {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;

    gap: 14px;

    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;

    padding: 0;
    margin: 0;
  }


  /* ---------------------------------------------------
     Language selector
  --------------------------------------------------- */

  header .navbar .inner .dropdown {
    flex: 0 0 52px;

    padding: 0;
  }

  header .navbar .inner .dropdown .dropdownbtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 3px;

    width: 52px;
    height: 36px;
    padding: 0;

    cursor: pointer;
    pointer-events: auto;

    text-indent: -99999px;

    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 100vh;
  }

  header .navbar .inner .dropdown .dropdownbtn::after {
    content: "";

    display: block;
    flex: 0 0 auto;

    width: 8px;
    height: 8px;

    background:
      url("/wp-content/themes/picmii/assets/img/icon-dropdown.svg")
      center / 8px no-repeat;
  }

  header .navbar .inner .dropdown .dropdownbtn.active::after {
    background-image:
      url("/wp-content/themes/picmii/assets/img/icon-dropup.svg");
  }


  /* ---------------------------------------------------
     Language dropdown
  --------------------------------------------------- */

  header .navbar .inner .dropdown .dropdown-content {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    display: none;
    flex-wrap: wrap;

    width: 200px;
    padding: 8px;
    margin: 0;

    background-color: #fff;

    border: 0;
    border-radius: 4px;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }

  header .navbar .inner .dropdown .dropdown-content::before {
    content: "";

    position: absolute;
    top: -6px;
    left: 20px;

    width: 12px;
    height: 12px;

    background-color: #fff;

    transform: rotate(45deg);

    box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.03);
  }

  header .navbar .inner .dropdown .dropdown-content li {
    background-color: #fff;
  }


  /* ---------------------------------------------------
     Global navigation
  --------------------------------------------------- */

  header .navbar .inner ul.gn {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;

    width: max-content;
    min-width: max-content;
  }

  header .navbar .inner ul.gn > li {
    flex: 0 0 auto;

    padding: 0 16px;
  }

  header .navbar .inner ul.gn > li > a {
    position: relative;

    padding: 7px 0;

    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #262524;

    text-align: center;
    white-space: nowrap;
  }


  /* ナビゲーション下線 */

  header .navbar .inner ul.gn > li > a:not(.btn)::after {
    content: "";

    display: block;

    width: 0;
    height: 2px;
    margin: 0 auto;

    background-color: #262524;

    transition: width 0.3s ease;
  }

  header .navbar .inner ul.gn > li > a:not(.btn):hover::after,
  header .navbar .inner ul.gn > li > a:not(.btn).current::after {
    width: 100%;
  }


  /* モバイルメニュー用予約ボタンを非表示 */

  header .navbar .inner ul.gn > li.btnSP {
    display: none;
  }


  /* ---------------------------------------------------
     Header reserve button
  --------------------------------------------------- */

  header > a.btn-gradient.reserve.header {
    min-width: 104px;
    height: 36px;
    padding: 0 14px;
    margin: 0;

    font-size: 13px;
  }


  /* ---------------------------------------------------
     Menu trigger
  --------------------------------------------------- */

  header .menu-trigger {
    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;
}
.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span {
    font-weight:400;
}

footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #303030;
  padding: 32px 24px;
}

footer,
footer a,
footer li,
footer .copyright {
    font-weight:400;
}

@media screen and (min-width: 1024px) {
  footer {
    padding: 64px 24px;
  }
}

footer .footer-navigation {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

footer .footer-navigation a,
footer .footer-navigation {
  color: #fff;
}

@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;
  color: #fff;
}

/* スマホ */
@media screen and (max-width: 767px) {

  footer .footer-navigation ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer .footer-navigation ul li {
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }

}

/* base */
body {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  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: #F5F1EF;
}

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

.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 {
  width: 100%;
  height: 100%;
}

main .kv .kv-swiper .swiper-wrapper .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

main .kv .kv-swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/*
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: 400;
  }
}

main .kv .kv-copy .copy01 span.kc01 {
  color: #303030;
}

main .kv .kv-copy .copy01 span.kc02 {
  color: #303030;
}

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:400;
}

@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: 400;
}

@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_sp.webp) center top / 100% auto no-repeat;
  position: relative;
}

@media screen and (min-width: 1024px) {
  #price {
    background-image: url(../img/price-bg.webp);
    background-size: cover;
  }
}

#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-color: #E7DDD3;
  /*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;*/
  background-color: #303030;
  color: #fff;
}

#price .campaign-header .sub span.c2 {
  background-color: #bdcbec;
}

#price .campaign-header .sub span.c3 {
  /*background-color: #f796dd;*/
  background-color: #303030;
  color: #fff;
}

@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;*/
  background-color: #EDDAB6;
  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);*/
  border: 2px solid #303030;
  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: #303030;
  color: #fff;
  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: 400;
  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 {
    padding: 0 16px;
    margin: 0;
  }
}

#point .list-point li .data .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

@media screen and (min-width:1024px) {
  #point .list-point li .data {
    padding: 0 16px;
    margin: 0;
    align-items: flex-start;
  }

  #point .list-point li .data .icon {
    width: 56px;
    height: 56px;
    margin: 8px 0 0;
  }
}

#point .list-point li .data .text {
  flex: 1;
  padding-left: 1rem;
  margin-bottom: 16px;
}

@media screen and (min-width:1024px) {
  #point .list-point li .data .text {
    padding: 0 48px 0 16px;
    margin: 0;
  }
}

#point .list-point li .data .text h3 {
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 1.5rem;
}

@media screen and (min-width:1024px) {
  #point .list-point li .data .text h3 {
    font-size: 28px;
  }

  #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-top: 2rem;
  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%;
  padding-left: 19vw;
  border-radius: 8px;
  overflow: hidden;
}

#point .list-point li .photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media screen and (min-width:1024px) {
  #point .list-point li .photo {
    width: 400px;
    height: 400px;
    padding-left: 0;
  }

  #point .list-point li .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ------------------------------------
   Swiper Gallery
------------------------------------ */

#point .list-point li .photo-gallery {
  width: 100%;
  padding-left: 19vw;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (min-width:1024px) {
  #point .list-point li .photo-gallery {
    width: 400px;
    padding-left: 0;
  }
}

#point .list-point li .photo-gallery .swiper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

#point .list-point li .photo-gallery .swiper-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

#point .list-point li .photo-gallery .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
}

#point .list-point li .photo-gallery img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

#point .list-point li .photo-gallery .swiper.corners {
  width: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

#point .list-point li .photo-gallery .swiper.corners .swiper-wrapper {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

#point .list-point li .photo-gallery .swiper.corners .swiper-slide {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

#point .list-point li .photo-gallery .swiper.corners img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px 8px 0 0;
}

@media screen and (min-width:1024px) {
  #point .list-point li .photo-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  }
}

#point .list-point li .photo-gallery .swiper-slide .title {
  background: #e5e5e5;
  text-align: center;
  padding: .5rem 1rem;
}

/* ------------------------------------
   Room
------------------------------------ */

#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: #fff;
  border-radius: 100vh;
  font-size: 24px;
  line-height: 1;
}

#use.fix-page .list-point li .icon {
  background-color: #F7F4F1;
}

@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 {
  overflow: hidden;
  border-radius: 8px;
}

#use .list-point li .data .photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

@media screen and (min-width:1024px) {
  #use .list-point li .data .photo {
    width: 33.333%;
    height: 176px;
  }

  #use .list-point li .data .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#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: flex-start;
}

#shop .block-shop li {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  #shop .block-shop li {
    width: 33.3333%;
    padding: 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;
}

#shop .block-shop li .data .info p {
  margin-bottom: 0.5rem;
}

#shop .block-shop li .data .info a {
  text-decoration: underline;
}

#shop .block-shop li .data .info a:hover {
  text-decoration: none;
}

.home #shop .block-shop li .data .block-button {
  display: none;
}

@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;
}

/*archive-shopの時*/
#shop.archive-shop a.btn {
  color: inherit;
  border: thin solid #303030;
  border-radius: 100vh;
  display: inline-block;
  padding: 8px 20px;
}


.archive-shop #reserve .block-shop {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#reserve .block-shop li {
  width: 100%;
  padding: 1.5rem 0;
}

@media screen and (min-width: 1024px) {
  #reserve .block-shop li {
    width: 50%;
    padding: 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;
}

.block-button.shop {
  margin-bottom: 40px;
}

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

.block-button .textbox {
  margin: 1rem 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 .carousel-contents-about {
    height: 520px;
  }
}

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(../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: #F5F1EF;
}

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;
    margin-bottom: 0;
  }
}

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 #shop .block-shop .data .info .block-button {
  display: none;
}

main article #shop .block-shop .data .block-button {
  margin: 32px 0 0 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  main article #shop .block-shop .data .block-button {
    margin: 20px 0 0 0;
    text-align: left;
  }

  main article #shop .block-shop .data .block-button a.btn-gradient {
    font-size: 16px;
    min-width: auto;
    padding: 8px 20px;
  }
}

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;
    flex: 1;
  }
}

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: 2rem 0 4rem 0;
}

.block-columns .studio-gallary {
  margin: 2rem 0 2rem 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;
  }

  .block-columns .studio-gallary .studio-swiper {
    height: 400px;
  }
}

.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: #fff;
}

.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;
}

.bannerbox .wrapper a.photo .photo img {
  display: block;
  width: 100%;
  height: auto;
}

@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;
}



.ls-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 4枚を最大幅で */
  gap: 8px;
  /* 写真の間隔だけここで制御 */
}

.ls-gallery li {
  width: 100%;
}

.ls-gallery li a {
  aspect-ratio: 2 / 3;
  /* 縦長 */
  display: block;
  position: relative;
  overflow: hidden;
}

.ls-gallery li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .ls-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 4枚を最大幅で */
    gap: 8px;
    /* 写真の間隔だけここで制御 */
  }
}


/*
.ls-gallery {
  display: flex;
  flex-wrap: wrap;
}

.ls-gallery li {
  width: 29.6666vw;
  margin: 2px 0;
  padding: 2px;
  height: 29.6666vw;
}

.ls-gallery li a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 29.6666vw;
}

.ls-gallery li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

*/

.image-category-section-wrap {
  background-color: #F5F1EF;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.image-category-section {
  max-width: 1200px;
  margin: 0 auto 50px auto;
  padding: 20px 0;
}

.image-category-section .image-category-title {
  text-align: left;
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 500;
  margin-bottom: 30px;
}

.image-category-section .image-category-title::before {
  content: '\e3a6';
  /* Unicode (コードポイント) を指定 */
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
  /* h2のサイズに合わせて調整（必要に応じて変更） */
  /*color: #6dc0cc;*/
  color: #303030;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
  /* アイコンとテキストの間隔 */
}

/*
@media screen and (min-width: 1024px) {
  .ls-gallery li {
    width: 25%;
    height: 290px;
  }

  .ls-gallery li a {
    height: 290px;
  }
}
*/
.shop-detail section {
  padding: 2rem 0;
}

@media screen and (min-width: 767px) {
  .shop-detail section {
    padding: 3rem 0;
  }
}

.shop-detail section.section-type02 {
  background-color: #f0f4f4;
}

.shop-detail section#article {
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
}

.shop-detail .section-header {
  text-align: center;
}

.shop-detail .section-header h2 {
  text-align: center;
  margin-bottom: 0;
}

.shop-detail .section-header h2 span {
  font-weight: 400;
}

.shop-detail .ls-news {
  margin-top: 1.5rem;
}

@media screen and (min-width: 767px) {
  .shop-detail .ls-news {
    margin-top: 2rem;
  }

  .shop-detail .ls-news li {
    width: 33.3333%;
    padding: 0 26px 2rem;
    border: none;
  }
}

.shop-detail .ls-price {
  margin-top: 1.5rem;
}

.shop-detail .ls-price ul {
  margin-bottom: 1rem;
}

.shop-detail .ls-price ul li {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  margin: 0.25rem 0;
}

@media screen and (min-width: 1024px) {
  .shop-detail .ls-price ul {
    display: flex;
  }

  .shop-detail .ls-price {
    margin-top: 2rem;
  }

  .shop-detail .ls-price ul li {
    width: 33.3333%;
    margin: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.shop-detail .notes {
  margin-top: 1rem;
}

.shop-detail .notes li {
  display: flex;
}

main article.shop-detail .wrapper .block-body {
  padding: 2rem 0;
}

@media screen and (min-width: 767px) {
  main article.shop-detail .wrapper .block-body {
    padding: 3rem 0;
  }
}

main article.shop-detail .wrapper>h3 {
  font-size: 1.125rem;
}

@media screen and (min-width: 767px) {
  main article.shop-detail .wrapper>h3 {
    text-align: center;
  }
}

main article.shop-detail .wrapper>h3.m0 {
  margin-top: 0;
}

main article.shop-detail .ls-price .price-main h3 {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  margin: 0;
  text-align: center;
}

main article.shop-detail .ls-price .price-main h3 small {
  display: block;
  text-align: center;
  font-size: 85%;
}

main article.shop-detail .ls-price .price-body .price {
  text-align: center;
  font-weight: 400;
}

main article.shop-detail .ls-price .price-body .price strong {
  font-size: 2rem;
  font-weight: 700;
}

main article.shop-detail .block-body a {
  text-decoration: none;
}

.shop-detail section .studio-gallary {
  margin: 0 0 2rem 0;
}

.shop-detail section .ls-payment {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 12px;
  background-color: #fff;
  margin-top: 2rem;
}

.shop-detail section .ls-payment li {
  width: 50%;
}

@media screen and (min-width: 767px) {
  .shop-detail section .ls-payment li {
    width: 16.6666%;
  }
}

#cloumn .wrapper {
  display: block;
}

@media screen and (min-width: 992px) {
  #cloumn .wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}

#cloumn .block-columns {
  width: 100%;
}

#cloumn .block-secondary {
  width: 100%;
  margin-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  #cloumn .block-secondary {
    margin-bottom: 0;
  }
}

#cloumn .block-secondary .block-latest,
#cloumn .block-secondary .block-cat,
#cloumn .block-secondary .block-tag {
  padding: 0.75em 0;
}

#cloumn .block-columns .page-header {
  text-align: left;
  padding: 0;
}

#cloumn .block-columns .page-header h1 {
  font-size: 26px;
  margin: 0;
}

#cloumn .block-columns .page-header,
#cloumn .block-columns .secondary-header {
  border-bottom: 1px solid #e9e9e9;
}

.page-header strong,
.secondary-header strong {
  display: inline-block;
  position: relative;
  padding: 0.25em 0;
  font-weight: 400;
}

.secondary-header strong {
  font-size: 18px;
}

.page-header strong::after,
.secondary-header strong::after {
  width: 100%;
  content: "";
  /*border-bottom: 2px solid #3fccd1;*/
  border-bottom: 2px solid #303030;
  display: block;
  position: absolute;
  bottom: -1px;
}

@media screen and (min-width: 767px) {
  #cloumn .wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    margin: 50px auto;
  }

  #cloumn .block-columns {
    width: 66.66%;
  }

  #cloumn .block-secondary {
    width: 33.33%;
  }
}

.ls-cloumn li {
  display: flex;
  flex-wrap: wrap;
  padding: 1.25em 0;
  border-bottom: 1px solid #e9e9e9;
}

.ls-cloumn li figure {
  width: 100%;
  margin: 0 0 1em 0;
}

.ls-cloumn li figure a {
  display: block;
}

.ls-cloumn li figure a img {
  vertical-align: bottom;
}

.ls-cloumn li .data .name {}

.ls-cloumn li .data .name a {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0.5em;
  line-height: 1.4;
}

.ls-cloumn li .data .name .date {
  color: #888;
}

.ls-cloumn li .data .info {
  margin-top: 0.5em;
}


.page-header .date-right {
  text-align: right;
}

@media screen and (min-width: 767px) {
  .ls-cloumn li {
    display: flex;
    flex-wrap: nowrap;
  }

  .ls-cloumn li figure {
    width: 35%;
    margin: 0 1.25em 0 0;
  }

  .ls-cloumn li .data {
    flex: 1;
  }
}

.secondary-body .ls-cloumn li .data .name a {
  font-size: 16px;
}

.secondary-body .ls-cloumn li .data .name .date {
  font-size: 14px;
}

.block-cat .secondary-body ul,
.block-tag .secondary-body ul {
  margin: 5px 0 0 0;
}

.block-cat .secondary-body ul li,
.block-tag .secondary-body ul li {
  border-bottom: 1px solid #e9e9e9;
  list-style: none;
  padding: 12px 0;
}

.secondary-body ul.news-archive {
  margin: 20px;
}

.secondary-body ul.news-archive li {
  border-bottom: dotted thin #ccc;
  padding: 4px 0;
}

.secondary-body ul.news-archive li:last-child {
  border-bottom: none;
}

/* Google Material Symbols アイコン表示 */
.secondary-body ul.news-archive ul.month-list li::before {
  font-family: 'Material Symbols Outlined';
  content: '\e315';
  /* Unicodeの書き方 */
  margin-right: 8px;
  vertical-align: middle;
  font-size: 1rem;
}


.news-archive .year-title {
  display: block;
  cursor: pointer;
  font-weight: bold;
  margin: 10px 0;
}

.news-archive .month-list {
  margin-left: 20px;
}





#cloumn .block-columns article .page-header {
  text-align: left;
  padding: 0;
}

#cloumn .block-columns article .page-header h1 {
  font-size: 28px;
  margin: 0;
}

#cloumn .block-columns article .page-header {
  border: none;
}

#cloumn .block-columns article .page-header strong {
  display: block;
  position: relative;
  padding: 0.25em 0;
  font-weight: 400;
}

#cloumn .block-columns article .page-header strong::after {
  display: none;
}

#cloumn .block-columns article .cover {
  width: 100%;
  height: auto;
  position: static;
  overflow: auto;
  margin-bottom: 2em;
}

#cloumn .block-columns article .cover img {
  width: 100%;
  height: auto;
  position: static;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  max-width: none;
  vertical-align: bottom;
}

#cloumn .block-columns article .block-body {
  padding: 1.25em 0;
}

@media screen and (min-width: 767px) {
  #cloumn .block-columns article .block-body {}
}

#cloumn .block-columns article .block-body h2 {
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  line-height: 1.4;
  margin: 1rem 0 0.75rem 0;
}

#cloumn .block-columns article .block-body h3 {
  font-size: 18px;
  font-weight: 400;
  margin: 1rem 0 0.75rem;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #d5d5d5;
}

#cloumn .block-columns article .block-body h4 {
  font-size: 14px;
  font-weight: 400;
  margin: 1rem 0 0.5rem;
}

@media screen and (min-width: 767px) {
  #cloumn .block-columns article .block-body h2 {
    font-size: 24px;
    margin: 2rem 0 1.25rem 0;
  }

  #cloumn .block-columns article .block-body h3 {
    font-size: 20px;
    margin: 2rem 0 1.25rem;
    padding-bottom: 0.5em;
  }

  #cloumn .block-columns article .block-body h4 {
    font-size: 16px;
    margin: 2rem 0 1rem;
  }
}

.block-columns .archive-ttl {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.7em;
  margin-top: 1em;
}


/* ページネーション
 * *********************************** */

.pagination {
  margin: 30px 0;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 4px 10px;
  margin: 0 4px;
  border: thin solid #eee;
  text-align: center;
}

.pagination .current {
  background-color: #000;
  color: #fff;
}

@media (max-width: 991px) {
  .pagination .page-numbers {
    font-size: 80% !important;
    padding: 4px 8px;
    margin: 0 2px;
  }

}

/*****/


.wp-block-table {
  margin: 1rem 0;
}

.wp-block-table tr {
  display: block;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #eaeaea;
}

.wp-block-table tr td {
  display: block;
  border: none;
}

.wp-block-table tr td strong {
  width: 100%;
  padding: 0 0 0.5rem 0;
  font-weight: 400;
}

.wp-block-table tr td {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .wp-block-table {
    margin: 2rem 0;
  }

  .wp-block-table tr {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0;
    margin-bottom: 1rem;
  }

  .wp-block-table tr td {
    display: block;
    padding: 0 0 1rem 0;
  }

  .wp-block-table tr td:first-child {
    width: 20%;
  }

  .wp-block-table tr td {
    width: 80%;
  }
}

.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-image img {
  width: 100%;
}

.tbl-std {
  margin: 1rem 0 0 0;
  border-top: solid 1px #ddd;
  border-left: solid 1px #ddd;
}

.tbl-std thead tr th {
  padding: 8px;
  border-bottom: solid 1px #ddd;
  border-right: solid 1px #ddd;
  background: #f0f0f0;
  font-weight: 400;
}

.tbl-std tbody tr td {
  padding: 8px;
  border-bottom: solid 1px #ddd;
  border-right: solid 1px #ddd;
  background: #ffffff;
  font-weight: 400;
}

/* =====================================================
   Font Weight Adjustment
===================================================== */

body{
    font-weight:400;
}

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

.section-home .section-header .sub,
.section-home .section-header .title,
main .kv .kv-copy .copy01 span{
    font-weight:400;
}

header .navbar .inner ul.gn > li > a{
    font-weight:400;
}

.breadcrumbs,
.breadcrumbs a,
.breadcrumbs span{
    font-weight:400;
}

footer,
footer a,
footer li,
footer .copyright{
    font-weight:400;
}