@charset "UTF-8";
/* CSS Document */
/*reset css--------------------*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li, a,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, improve, nav, section, summary,
time, mark, audio, video, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font-weight: normal;
  word-break: break-all;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, improve, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

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

/*reset css--------------------*/
/*base--------------------*/
html {
  margin: 0;
}

a {
  transition: all 0.5s;
}
a:hover {
  opacity: 0.8;
  cursor: pointer;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

/*base--------------------*/
/*font--------------------*/
body {
  font-size: 16px;
  line-height: 1.95;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  color: #57523F;
}
@media screen and (max-width: 1024px) {
  body {
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  }
}
body a {
  color: #57523F;
}
body h2, body h3, body h4, body p, body dt, body dd, body span {
  text-box-trim: trim-both;
}

/*font--------------------*/
/*inner--------------------*/
.l-inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 95%;
  }
}

/*inner--------------------*/
/*br--------------------*/
.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/*br--------------------*/
/*anime--------------------*/
.js-fade-up {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1000ms;
}

.js-fade-left {
  opacity: 0;
  transform: translate(-30px, 0px);
  transition: all 1000ms;
}

.js-fade-right {
  opacity: 0;
  transform: translate(30px, 0px);
  transition: all 1000ms;
}

.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

/*anime--------------------*/
/*button--------------------*/
.c-button {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.c-button-link {
  font-size: clamp(1.25rem, 0.833rem + 0.87vw, 1.875rem);
  font-weight: bold;
  border-radius: 9px;
  background: #D92D44;
  border: 1px solid #D92D44;
  padding: 25px 0;
  display: block;
  color: #ffffff;
  text-align: center;
  position: relative;
}
.c-button-link:hover {
  opacity: 1;
  color: #D92D44;
  background: #ffffff;
}
.c-button-link:hover:before, .c-button-link:hover::after {
  background: #D92D44;
}
@media screen and (max-width: 768px) {
  .c-button-link {
    font-size: 20px;
    padding: 10px 0;
    line-height: 1.5;
  }
}
.c-button-link::before, .c-button-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 40px;
  width: 15px;
  height: 3px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 2px) 50%;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .c-button-link::before, .c-button-link::after {
    right: 10px;
  }
}
.c-button-link::before {
  transform: rotate(45deg);
}
.c-button-link::after {
  transform: rotate(-45deg);
}
.c-button-link span {
  font-size: clamp(1.25rem, 1.208rem + 0.09vw, 1.313rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-button-link span {
    font-size: 15px;
  }
}
.c-button-link .pc {
  display: inline;
}
@media screen and (max-width: 1024px) {
  .c-button-link .pc {
    display: none;
  }
}

/*button--------------------*/
/*ttl--------------------*/
.c-ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 70px;
}
.c-ttl-en {
  font-size: clamp(1.25rem, 0.25rem + 2.08vw, 2.75rem);
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  color: #C1A438;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .c-ttl-en {
    font-size: 38px;
    margin-bottom: 15px;
  }
}
.c-ttl-jp {
  font-size: clamp(1rem, 0.875rem + 0.26vw, 1.188rem);
  font-weight: bold;
  color: #825121;
}
@media screen and (max-width: 1024px) {
  .c-ttl-jp {
    font-size: 17px;
  }
}

.c-ttl-gra {
  font-size: clamp(1.25rem, 0.583rem + 1.39vw, 2.25rem);
  font-weight: bold;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  color: #ffffff;
  text-align: center;
  padding: 35px 0;
  background: radial-gradient(circle, rgb(97, 90, 62) 0%, rgb(128, 112, 56) 100%);
  margin-bottom: 90px;
}
@media screen and (max-width: 1024px) {
  .c-ttl-gra {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
  }
}
@media screen and (max-width: 768px) {
  .c-ttl-gra {
    font-size: 24px;
    padding: 25px 0;
    margin-bottom: 50px;
  }
}

/*ttl--------------------*/
/*sns--------------------*/
.c-sns {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .c-sns {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.c-sns-list {
  width: 370px;
}
@media screen and (max-width: 768px) {
  .c-sns-list {
    width: 100%;
    max-width: 350px;
  }
}
.c-sns-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #C1A438;
  border-radius: 9px;
  padding: 15px 0;
}
.c-sns-frame {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.c-sns-icon {
  width: 35px;
  margin-right: 10px;
}
.c-sns-ttl {
  font-size: clamp(1.25rem, 0.958rem + 0.61vw, 1.688rem);
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .c-sns-ttl {
    font-size: 25px;
  }
}
.c-sns-txt {
  font-size: 14px;
  font-weight: bold;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .c-sns-txt {
    font-size: 13px;
  }
}
.c-sns .LINE * {
  color: #ffffff;
}
.c-sns .LINE .c-sns-link {
  background: #C1A438;
  border: 1px solid #C1A438;
}
.c-sns .LINE .c-sns-link:hover {
  opacity: 1;
  background: #ffffff;
}
.c-sns .LINE .c-sns-link:hover .c-sns-ttl,
.c-sns .LINE .c-sns-link:hover .c-sns-txt {
  color: #C1A438;
}
.c-sns .Instagram * {
  color: #C1A438;
}
.c-sns .Instagram .c-sns-link {
  background: #ffffff;
  border: 1px solid #C1A438;
}
.c-sns .Instagram .c-sns-link:hover {
  opacity: 1;
  background: #C1A438;
}
.c-sns .Instagram .c-sns-link:hover .c-sns-icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(63%) saturate(2%) hue-rotate(249deg) brightness(117%) contrast(100%);
}
.c-sns .Instagram .c-sns-link:hover .c-sns-ttl,
.c-sns .Instagram .c-sns-link:hover .c-sns-txt {
  color: #ffffff;
}

/*sns--------------------*/
/*header--------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  background: #ffffff;
  z-index: 999999;
}
@media screen and (max-width: 1024px) {
  .l-header {
    background: transparent;
    height: 80px;
  }
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media screen and (max-width: 1920px) {
  .l-header__inner {
    width: 99%;
  }
}
.l-header__wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
.l-header__logo {
  width: 250px;
}
@media screen and (max-width: 1920px) {
  .l-header__logo {
    width: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__logo {
    width: 170px;
    position: fixed;
    top: 15px;
    left: 10px;
  }
}
.l-header__logo-link {
  width: 100%;
  height: 100%;
  display: block;
}
.l-header__group {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1600px) {
  .l-header__group {
    position: fixed;
    flex-direction: column;
    width: 450px;
    height: calc(100% - 110px);
    top: 110px;
    right: 0;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: ease-in 0.2s;
    z-index: 999999;
    background: #ffffff;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__group {
    width: 100%;
    height: 100%;
    top: 0;
    padding-top: 105px;
  }
}
@media screen and (max-width: 1600px) {
  .l-header__group-list {
    width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 1600px) {
  .l-header__group-list:not(:last-of-type) {
    border-bottom: 1px solid #D9D9D9;
  }
}
.l-header__group-link {
  font-size: 16px;
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 1920px) {
  .l-header__group-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 1600px) {
  .l-header__group-link {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px 15px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__group-link {
    padding: 15px 0;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
  }
}
@media screen and (max-width: 1600px) {
  .l-header__group.active {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__contact {
  display: flex;
  align-items: flex-end;
  gap: 25px;
}
@media screen and (max-width: 1920px) {
  .l-header__contact {
    gap: 15px;
  }
}
.l-header__tel {
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-3px);
}
@media screen and (max-width: 1024px) {
  .l-header__tel {
    display: none;
  }
}
.l-header__tel-icon {
  width: 295px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1920px) {
  .l-header__tel-icon {
    width: 250px;
  }
}
.l-header__tel-link {
  width: 100%;
  height: 100%;
  display: block;
}
.l-header__tel-txt {
  font-size: 14px;
  line-height: 1;
  color: #000000;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-header__frame {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media screen and (max-width: 1920px) {
  .l-header__frame {
    gap: 15px;
  }
}
.l-header .c-sns-list {
  width: 255px;
}
@media screen and (max-width: 1024px) {
  .l-header .c-sns-list {
    display: none;
  }
}
.l-header .c-sns-link {
  background: #C1A438;
  color: #ffffff;
}
.l-header .c-sns-link:hover {
  opacity: 1;
  background: #ffffff;
}
.l-header .c-sns-link:hover .c-sns-ttl,
.l-header .c-sns-link:hover .c-sns-txt {
  color: #C1A438;
}
.l-header .c-sns-ttl {
  font-size: clamp(1.25rem, 1.125rem + 0.26vw, 1.438rem);
}
.l-header .c-sns-icon a {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .l-header .c-sns-icon {
    display: none;
  }
}
.l-header .js-btn {
  cursor: pointer;
  width: 40px;
  height: 30px;
  position: relative;
  display: none;
  z-index: 999999;
}
@media screen and (max-width: 1600px) {
  .l-header .js-btn {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .l-header .js-btn {
    position: fixed;
    top: 25px;
    right: 20px;
    width: 30px;
    height: 20px;
  }
}
.l-header .js-btn span {
  display: block;
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  height: 3px;
  background: #C1A438;
  width: 40px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .l-header .js-btn span {
    width: 30px;
    background: #ffffff;
  }
}
.l-header .js-btn span:nth-of-type(1) {
  top: 0;
}
.l-header .js-btn span:nth-of-type(2) {
  top: 15px;
}
@media screen and (max-width: 1024px) {
  .l-header .js-btn span:nth-of-type(2) {
    top: 8px;
  }
}
.l-header .js-btn span:nth-of-type(3) {
  top: 30px;
}
@media screen and (max-width: 1024px) {
  .l-header .js-btn span:nth-of-type(3) {
    top: 16px;
  }
}
.l-header .js-btn.active span:nth-of-type(1) {
  top: 10px;
  left: 50%;
  transform: translate(-50%, 6px) rotate(-45deg);
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .l-header .js-btn.active span:nth-of-type(1) {
    width: 30px;
    top: 6px;
    background: #C1A438;
  }
}
.l-header .js-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .js-btn.active span:nth-of-type(3) {
  top: 22px;
  left: 50%;
  transform: translate(-50%, -6px) rotate(45deg);
  width: 40px;
}
@media screen and (max-width: 1024px) {
  .l-header .js-btn.active span:nth-of-type(3) {
    width: 30px;
    top: 19px;
    background: #C1A438;
  }
}
.l-header .js-btn.scroll span {
  background: #C1A438;
}

.l-header.scroll {
  background: #ffffff;
}

/*header--------------------*/
/*footer--------------------*/
.l-footer {
  padding: 0 0 95px 0;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 0 0 130px 0;
  }
}
.l-footer__copy {
  font-size: clamp(1rem, 0.875rem + 0.26vw, 1.188rem);
  color: #C1A438;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: 15px;
  }
}

.l-footer__fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
}
@media screen and (max-width: 768px) {
  .l-footer__fixed {
    display: block;
    z-index: 99999;
  }
}
.l-footer__fixed-group {
  border-top: 3px solid #C1A438;
  display: flex;
}
.l-footer__fixed-list {
  flex: 1;
}
.l-footer__fixed-list:not(:last-of-type) {
  border-right: 3px solid #C1A438;
}
.l-footer__fixed-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 15px 0;
}
.l-footer__fixed-link:hover {
  opacity: 1;
}
.l-footer__fixed-icon {
  width: 30px;
  margin-bottom: 8px;
}
.l-footer__fixed-icon img {
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__fixed-txt {
  font-size: 12px;
  font-weight: bold;
  color: #C1A438;
}

/*footer--------------------*/
/*main--------------------*/
.l-main {
  margin-left: auto;
  margin-right: auto;
  max-width: 2500px;
  margin-top: 110px;
}
@media screen and (max-width: 1024px) {
  .l-main {
    margin-top: 0;
  }
}

/*main--------------------*/
/*home--------------------*/
.home .fv {
  height: 770px;
  position: relative;
  background-image: url(/wp-content/themes/luma-belle/images/fv_bg_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1366px) {
  .home .fv {
    background-position: 90%;
  }
}
@media screen and (max-width: 768px) {
  .home .fv {
    background-image: url(/wp-content/themes/luma-belle/images/fv_bg_sp.jpg);
    background-position: top;
    height: 970px;
  }
}
@media screen and (max-width: 500px) {
  .home .fv {
    background: transparent;
    height: auto;
  }
}
.home .fv__thumbnail {
  display: none;
}
@media screen and (max-width: 500px) {
  .home .fv__thumbnail {
    display: block;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.home .fv__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .home .fv__box {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .home .fv__box {
    top: unset;
    bottom: 50px;
    transform: translateX(-50%);
  }
}
.home .fv__content {
  text-align: center;
}
.home .fv__content-ttl {
  font-size: clamp(1.25rem, 0.583rem + 1.39vw, 2.25rem);
  line-height: 1.36;
  font-weight: 800;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .home .fv__content-ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 900;
  }
}
@media screen and (max-width: 768px) {
  .home .fv__content-ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.home .fv__content-ttl span {
  font-size: clamp(1.875rem, 0.708rem + 2.43vw, 3.625rem);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .home .fv__content-ttl span {
    font-size: 28px;
  }
}
.home .fv__content-lead {
  font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
  line-height: 1.35;
  font-weight: bold;
  color: #825121;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .home .fv__content-lead {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.home .fv__content-txt {
  font-size: 15px;
  line-height: 2.22;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .fv__content-txt {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.79;
    margin-bottom: 25px;
  }
}
.home .fv__group {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .home .fv__group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}
.home .fv__group-list {
  width: 380px;
}
@media screen and (max-width: 1024px) {
  .home .fv__group-list {
    width: 100%;
  }
}
.home .fv__group-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 35px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .fv__group-link {
    padding: 10px 0;
  }
}
.home .fv__group-link::before, .home .fv__group-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 30px;
  width: 15px;
  height: 3px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 2px) 50%;
  transition: all 0.5s;
}
.home .fv__group-link::before {
  transform: rotate(45deg);
}
.home .fv__group-link::after {
  transform: rotate(-45deg);
}
.home .fv__group-icon {
  width: 25px;
  margin-right: 10px;
  transform: translate(-10px, -3px);
}
.home .fv__group-txt {
  font-size: clamp(1.25rem, 1.125rem + 0.26vw, 1.438rem);
  font-weight: bold;
  color: #ffffff;
  transform: translateX(-10px);
  transition: all 0.5s;
}
.home .fv__group .lesson a {
  background: #D92D44;
  border: 1px solid #D92D44;
}
.home .fv__group .lesson a:hover {
  opacity: 1;
  background: #ffffff;
}
.home .fv__group .lesson a:hover::before, .home .fv__group .lesson a:hover::after {
  background: #D92D44;
}
.home .fv__group .lesson a:hover .fv__group-icon {
  filter: brightness(0) saturate(100%) invert(32%) sepia(47%) saturate(2616%) hue-rotate(327deg) brightness(84%) contrast(104%);
}
.home .fv__group .lesson a:hover .fv__group-txt {
  color: #D92D44;
}
.home .fv__group .document a {
  background: #4CBFBA;
  border: 1px solid #4CBFBA;
}
.home .fv__group .document a:hover {
  opacity: 1;
  background: #ffffff;
}
.home .fv__group .document a:hover::before, .home .fv__group .document a:hover::after {
  background: #4CBFBA;
}
.home .fv__group .document a:hover .fv__group-icon {
  filter: brightness(0) saturate(100%) invert(68%) sepia(46%) saturate(447%) hue-rotate(128deg) brightness(88%) contrast(95%);
}
.home .fv__group .document a:hover .fv__group-txt {
  color: #4CBFBA;
}

.home .style {
  padding: 95px 0;
  background-image: url(/wp-content/themes/luma-belle/images/style_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .home .style {
    padding: 50px 0;
  }
}
.home .style .l-inner {
  max-width: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
}
@media screen and (max-width: 768px) {
  .home .style .l-inner {
    gap: 50px;
    flex-direction: column;
  }
}
.home .style__content {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .home .style__content {
    width: 100%;
  }
}
.home .style__content-ttl {
  font-size: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  color: #C1A438;
  font-weight: 600;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .home .style__content-ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
  }
}
@media screen and (max-width: 768px) {
  .home .style__content-ttl {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.home .style__content-lead {
  font-size: clamp(1.25rem, 1.167rem + 0.17vw, 1.375rem);
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  color: #825121;
  font-weight: 600;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .home .style__content-lead {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
  }
}
@media screen and (max-width: 768px) {
  .home .style__content-lead {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
.home .style__content-txt:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .home .style__content-txt:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
.home .style__thumbnail {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .home .style__thumbnail {
    width: 100%;
  }
}

.home .school {
  padding: 75px 0 115px 0;
  background-image: url(/wp-content/themes/luma-belle/images/school_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .home .school {
    padding: 0 0 50px 0;
  }
}
.home .school .c-ttl {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .home .school .c-ttl {
    margin-bottom: 25px;
  }
}
.home .school__lead {
  font-size: clamp(1.25rem, 0.375rem + 1.82vw, 2.563rem);
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .home .school__lead {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
  }
}
@media screen and (max-width: 768px) {
  .home .school__lead {
    font-size: 21px;
    margin-bottom: 20px;
  }
}
.home .school__txt {
  font-size: 16px;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 1024px) {
  .home .school__txt {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .home .school__txt {
    font-size: 14px;
    margin-bottom: 45px;
  }
}
.home .school__feature {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .home .school__feature {
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 55px;
  }
}
.home .school__feature * {
  text-box-trim: unset;
}
.home .school__feature-list {
  width: 220px;
}
.home .school__feature-list:nth-of-type(even) {
  width: 20px;
}
.home .school__feature-pc {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .home .school__feature-pc {
    display: none;
  }
}
.home .school__feature-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .home .school__feature-sp {
    display: block;
  }
}
.home .school__catch {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.25rem, 1.167rem + 0.17vw, 1.375rem);
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .school__catch {
    font-size: 20px;
    margin-bottom: 35px;
  }
}
.home .school__catch::before {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%) rotate(60deg);
  background: #57523F;
}
.home .school__catch::after {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%) rotate(-60deg);
  background: #57523F;
}
.home .school__group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 27px 48px;
}
@media screen and (max-width: 768px) {
  .home .school__group {
    font-size: 14px;
  }
}
.home .school__group-list {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  font-weight: bold;
  text-align: center;
  width: calc(50% - 24px);
}
@media screen and (max-width: 768px) {
  .home .school__group-list {
    width: 100%;
    font-size: 14px;
  }
}
.home .school__group-list span {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  font-weight: bold;
  color: #C1A438;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .home .school__group-list span {
    font-size: 14px;
  }
}
.home .school__group-list:nth-of-type(even) .school__group-frame {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .home .school__group-list:nth-of-type(even) .school__group-frame {
    margin: 0;
  }
}
.home .school__group-frame {
  width: 376px;
  height: 93px;
  box-shadow: 5px 5px 6px -2px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}
@media screen and (max-width: 1024px) {
  .home .school__group-frame {
    width: 100%;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .home .school__group-frame {
    flex-direction: row;
  }
}
.home .school__group-list:first-of-type {
  width: 100%;
}
.home .school__group-list:first-of-type .school__group-frame {
  margin-left: auto;
  margin-right: auto;
}

.home .course {
  padding: 0 0 200px 0;
}
@media screen and (max-width: 768px) {
  .home .course {
    padding: 0 0 50px 0;
  }
}
.home .course__block {
  display: flex;
  flex-direction: column;
  gap: 85px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .home .course__block {
    gap: 50px;
    margin-bottom: 50px;
  }
}
.home .course__block-item {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .home .course__block-item {
    flex-direction: column;
  }
}
.home .course__block-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .home .course__block-item:nth-of-type(even) {
    flex-direction: column;
  }
}
.home .course__block-thumbnail {
  width: 50%;
  aspect-ratio: 1920/1000;
}
.home .course__block-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .home .course__block-thumbnail {
    width: 100%;
  }
}
.home .course__block-content {
  width: 50%;
  aspect-ratio: 1920/1000;
  padding: 10px;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .home .course__block-content {
    width: 100%;
    padding: 50px 0;
  }
}
.home .course__block-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/themes/luma-belle/images/course_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.home .course__block-ttl {
  font-size: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  font-weight: bold;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .home .course__block-ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 900;
  }
}
@media screen and (max-width: 768px) {
  .home .course__block-ttl {
    font-size: 31px;
  }
}
.home .course__block-about {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .home .course__block-about {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.home .course__block-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.home .course__block-name {
  font-size: clamp(1.25rem, 1.208rem + 0.09vw, 1.313rem);
  font-weight: bold;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .home .course__block-name {
    font-size: 18px;
  }
}
.home .course__block-price {
  font-size: clamp(1.25rem, 0.375rem + 1.82vw, 2.563rem);
  color: #C1A438;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .home .course__block-price {
    font-size: 35px;
  }
}
.home .course__block-yen {
  font-size: clamp(1.25rem, 1.083rem + 0.35vw, 1.5rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .home .course__block-yen {
    font-size: 20px;
  }
}
.home .course__block-detail {
  font-size: 17px;
  margin-bottom: 50px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home .course__block-detail {
    font-size: 15px;
  }
}
.home .course__block-detail::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 83%;
  height: 1px;
  background: #000000;
}
@media screen and (max-width: 768px) {
  .home .course__block-detail::before {
    width: 90%;
  }
}
.home .course__block-license {
  font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home .course__block-license {
    font-size: 18px;
  }
}
.home .course__block-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.home .course__block-list {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .home .course__block-list {
    font-size: 14px;
  }
}
.home .course .l-inner {
  text-align: center;
}
.home .course__short-ttl {
  font-size: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
  font-weight: bold;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .home .course__short-ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 900;
  }
}
@media screen and (max-width: 768px) {
  .home .course__short-ttl {
    font-size: 26px;
    margin-bottom: 25px;
  }
}
.home .course__short-lead {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .home .course__short-lead {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.home .course__short-txt {
  font-size: 16px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .home .course__short-txt {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.home .course__short-table {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #57523F;
}
@media screen and (max-width: 1024px) {
  .home .course__short-table {
    width: 200%;
  }
}
@media screen and (max-width: 1024px) {
  .home .course__short-table-frame {
    overflow-x: scroll;
  }
}
.home .course__short-table * {
  font-size: clamp(1.25rem, 1.083rem + 0.35vw, 1.5rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .home .course__short-table * {
    font-size: 18px;
  }
}
.home .course__short-table tr td:first-of-type {
  font-size: clamp(1.25rem, 1.208rem + 0.09vw, 1.313rem);
}
.home .course__short-table tr:first-of-type td:not(:first-of-type) {
  color: #C1A438;
  background: rgba(193, 164, 56, 0.18);
}
.home .course__short-table td {
  padding: 15px 40px;
  text-align: center;
  border: 1px solid #57523F;
}
@media screen and (max-width: 768px) {
  .home .course__short-table td {
    padding: 15px;
  }
}
.home .course__short-table td span {
  font-size: 17px;
}
.home .course__short-scroll {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .course__short-scroll {
    display: block;
    font-size: 15px;
    text-align: center;
    margin-top: 25px;
  }
}
.home .course__short-group {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .home .course__short-group {
    flex-direction: column;
    gap: 10px;
  }
}
.home .course__short-group-list {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .home .course__short-group-list {
    width: 100%;
  }
}
.home .course__short-group-link {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #825121;
  border-radius: 9px;
  color: #825121;
  background: #ffffff;
  position: relative;
  padding: 20px;
}
.home .course__short-group-link:hover {
  opacity: 1;
  background: #825121;
  color: #ffffff;
}
.home .course__short-group-link:hover::before, .home .course__short-group-link:hover::after {
  background: #ffffff;
}
.home .course__short-group-link::before, .home .course__short-group-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 20px;
  width: 15px;
  height: 3px;
  border-radius: 9999px;
  background-color: #825121;
  transform-origin: calc(100% - 2px) 50%;
  transition: all 0.5s;
}
.home .course__short-group-link::before {
  transform: rotate(45deg);
}
.home .course__short-group-link::after {
  transform: rotate(-45deg);
}

.home .contact {
  padding: 90px 0;
  background-image: url(/wp-content/themes/luma-belle/images/contact_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .home .contact {
    padding: 50px 0;
  }
}
.home .contact__ttl {
  font-size: clamp(1.25rem, 0.375rem + 1.82vw, 2.563rem);
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .home .contact__ttl {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
  }
}
@media screen and (max-width: 768px) {
  .home .contact__ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.home .contact .c-button {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .contact .c-button {
    margin-bottom: 10px;
  }
}
.home .contact__group {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .home .contact__group {
    flex-direction: column;
    gap: 10px;
  }
}
.home .contact__group-list {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .home .contact__group-list {
    width: 100%;
  }
}
.home .contact__group-link {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #825121;
  border-radius: 9px;
  color: #825121;
  background: #ffffff;
  position: relative;
  padding: 20px;
}
.home .contact__group-link:hover {
  opacity: 1;
  background: #825121;
  color: #ffffff;
}
.home .contact__group-link:hover::before, .home .contact__group-link:hover::after {
  background: #ffffff;
}
.home .contact__group-link::before, .home .contact__group-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 20px;
  width: 15px;
  height: 3px;
  border-radius: 9999px;
  background-color: #825121;
  transform-origin: calc(100% - 2px) 50%;
  transition: all 0.5s;
}
.home .contact__group-link::before {
  transform: rotate(45deg);
}
.home .contact__group-link::after {
  transform: rotate(-45deg);
}

.home .salon {
  padding: 145px 0 220px 0;
  background-image: url(/wp-content/themes/luma-belle/images/salon_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home .salon {
    padding: 50px 0;
  }
}
.home .salon .c-ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .home .salon .c-ttl {
    margin-bottom: 35px;
  }
}
.home .salon__thumbnail {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .home .salon__thumbnail {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 50px;
  }
}
.home .salon__logo {
  width: 100%;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .salon__logo {
    max-width: 250px;
    margin-bottom: 30px;
  }
}
.home .salon__lead {
  font-size: clamp(1.25rem, 0.375rem + 1.82vw, 2.563rem);
  line-height: 1.6666666667;
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .home .salon__lead {
    font-family: "Shippori Mincho", serif;
    font-weight: 800;
  }
}
@media screen and (max-width: 768px) {
  .home .salon__lead {
    margin-bottom: 25px;
  }
}
.home .salon__txt {
  font-size: clamp(1rem, 0.875rem + 0.26vw, 1.188rem);
  line-height: 2.09;
  margin-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .home .salon__txt {
    font-size: 15px;
    margin-bottom: 75px;
  }
}
.home .salon__group {
  display: flex;
  justify-content: center;
  gap: 65px;
}
@media screen and (max-width: 768px) {
  .home .salon__group {
    flex-direction: column;
    align-items: center;
    gap: 55px;
  }
}
.home .salon__group-list {
  width: 290px;
}
@media screen and (max-width: 768px) {
  .home .salon__group-list {
    width: 250px;
  }
}
.home .salon__group-frame {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .home .salon__group-frame {
    margin-bottom: 25px;
  }
}
.home .salon__group-point {
  width: 105px;
  position: absolute;
  top: -20px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .home .salon__group-point {
    width: 90px;
  }
}
.home .salon__group-txt {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  line-height: 1.3888888889;
  font-weight: bold;
  color: #C1A438;
}
@media screen and (max-width: 768px) {
  .home .salon__group-txt {
    font-size: 19px;
  }
}

.home .menu {
  padding: 0 0 175px 0;
}
@media screen and (max-width: 768px) {
  .home .menu {
    padding: 0 0 50px 0;
  }
}
.home .menu .c-ttl-gra {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .menu .c-ttl-gra {
    margin-bottom: 50px;
  }
}
.home .menu__frame {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  margin-bottom: 85px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .menu__frame {
    margin-bottom: 50px;
  }
}
.home .menu__frame::before {
  content: "※税抜き価格";
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .home .menu__frame::before {
    font-size: 14px;
  }
}
.home .menu__frame-ttl {
  font-size: clamp(1.25rem, 0.583rem + 1.39vw, 2.25rem);
  font-weight: bold;
  margin-right: 26px;
}
@media screen and (max-width: 768px) {
  .home .menu__frame-ttl {
    font-size: 20px;
    margin-right: 15px;
  }
}
.home .menu__frame-price {
  font-size: clamp(1.875rem, 0.25rem + 3.39vw, 4.313rem);
  font-weight: 600;
  color: #D92D44;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  transform: translateY(-5px);
}
@media screen and (max-width: 1024px) {
  .home .menu__frame-price {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .home .menu__frame-price {
    font-size: 40px;
  }
}
.home .menu__frame-yen {
  font-size: clamp(1.25rem, 0.583rem + 1.39vw, 2.25rem);
  font-weight: bold;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
}
@media screen and (max-width: 1024px) {
  .home .menu__frame-yen {
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .home .menu__frame-yen {
    font-size: 20px;
  }
}
.home .menu__frame-from {
  font-size: clamp(1.875rem, 1rem + 1.82vw, 3.188rem);
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
}
@media screen and (max-width: 1024px) {
  .home .menu__frame-from {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .home .menu__frame-from {
    font-size: 32px;
  }
}
.home .menu__overview {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-top: 4px solid #A3A3A3;
  border-bottom: 4px solid #A3A3A3;
  padding: 0 50px;
  margin-bottom: 125px;
}
@media screen and (max-width: 768px) {
  .home .menu__overview {
    padding: 0;
    margin-bottom: 55px;
  }
}
.home .menu__overview-item {
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .home .menu__overview-item {
    padding: 55px 0 40px 0;
  }
}
.home .menu__overview-item:not(:last-of-type) {
  border-bottom: 1px solid #A3A3A3;
}
.home .menu__overview-lead {
  font-size: clamp(1.25rem, 0.792rem + 0.95vw, 1.938rem);
  font-weight: bold;
  color: #C1A438;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .home .menu__overview-lead {
    font-size: 31px;
  }
}
.home .menu__overview-list {
  font-size: 16px;
  position: relative;
  padding-left: 15px;
}
.home .menu__overview-list::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .home .menu__overview-list {
    font-size: 13px;
  }
}
.home .menu__overview-price {
  font-size: clamp(1.25rem, 1.167rem + 0.17vw, 1.375rem);
  line-height: 1;
  font-weight: bold;
}
.home .menu__overview-small {
  font-size: 14px;
}
.home .menu__overview-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.home .menu__overview-flex div {
  display: flex;
  align-items: center;
}
.home .menu__overview-flex img {
  width: 165px;
  margin-right: 10px;
}
.home .menu__btn {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.home .contact02 {
  padding: 105px 0;
  background-image: url(/wp-content/themes/luma-belle/images/contact02_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .home .contact02 {
    padding: 50px 0;
  }
}
.home .contact02 .c-button {
  margin-bottom: 0;
}

.home .instructor {
  padding: 145px 0 210px 0;
}
@media screen and (max-width: 768px) {
  .home .instructor {
    padding: 50px 0;
  }
}
.home .instructor .c-ttl {
  margin-bottom: 55px;
}
.home .instructor__block {
  display: flex;
  justify-content: center;
  gap: 95px;
}
@media screen and (max-width: 1024px) {
  .home .instructor__block {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .home .instructor__block {
    gap: 80px;
    flex-direction: column;
    align-items: center;
  }
}
.home .instructor__block-item {
  width: 360px;
}
@media screen and (max-width: 768px) {
  .home .instructor__block-item {
    width: 100%;
    max-width: 400px;
  }
}
.home .instructor__block-image {
  margin-bottom: 35px;
}
.home .instructor__block-position {
  font-size: clamp(1rem, 0.875rem + 0.26vw, 1.188rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .home .instructor__block-position {
    font-size: 15px;
  }
}
.home .instructor__block-en {
  font-size: clamp(1.25rem, 0.667rem + 1.22vw, 2.125rem);
  font-weight: 600;
  color: #C1A438;
  text-align: center;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .home .instructor__block-en {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .home .instructor__block-en {
    font-size: 34px;
  }
}
.home .instructor__block-name {
  font-size: 17px;
  font-weight: 600;
  color: #C1A438;
  text-align: center;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .home .instructor__block-name {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .home .instructor__block-name {
    font-size: 21px;
  }
}
.home .instructor__block-txt {
  font-size: 15px;
  line-height: 1.64;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home .instructor__block-txt {
    min-height: unset;
    height: auto;
  }
}
.home .instructor__block-license {
  position: relative;
  padding: 15px 10px;
  aspect-ratio: 360/270;
}
@media screen and (max-width: 768px) {
  .home .instructor__block-license {
    aspect-ratio: unset;
  }
}
.home .instructor__block-license::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/themes/luma-belle/images/instructor_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.home .instructor__block-license-lead {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
.home .instructor__block-license-list {
  padding-left: 15px;
  font-size: 13px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .home .instructor__block-license-list {
    font-size: 12px;
  }
}
.home .instructor__block-license-list::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.home .voice {
  padding: 85px 0 80px 0;
  background-image: url(/wp-content/themes/luma-belle/images/voice_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .home .voice {
    padding: 50px 0;
  }
}
.home .voice .c-ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .home .voice .c-ttl {
    margin-bottom: 60px;
  }
}
.home .voice .c-ttl-top {
  font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .home .voice .c-ttl-top {
    font-size: 18px;
  }
}
.home .voice .c-ttl-bottom {
  font-size: clamp(1.25rem, 0.25rem + 2.08vw, 2.75rem);
  font-weight: 600;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  color: #C1A438;
}
@media screen and (max-width: 1024px) {
  .home .voice .c-ttl-bottom {
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .home .voice .c-ttl-bottom {
    font-size: 26px;
  }
}
.home .voice__group {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}
.home .voice__group-list {
  display: flex;
  align-items: center;
}
.home .voice__group-icon {
  width: 115px;
  margin-right: 35px;
}
@media screen and (max-width: 768px) {
  .home .voice__group-icon {
    margin-right: 20px;
  }
}
.home .voice__group-txt {
  font-size: clamp(1.25rem, 1.208rem + 0.09vw, 1.313rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .home .voice__group-txt {
    font-size: 15px;
  }
}
.home .voice__group-txt span {
  font-size: clamp(1.25rem, 1.208rem + 0.09vw, 1.313rem);
  font-weight: bold;
  color: #C1A438;
}
@media screen and (max-width: 768px) {
  .home .voice__group-txt span {
    font-size: 15px;
  }
}

.home .faq {
  padding: 110px 0 160px 0;
}
@media screen and (max-width: 768px) {
  .home .faq {
    padding: 50px 0 5px 0;
  }
}
.home .faq .c-ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .home .faq .c-ttl {
    margin-bottom: 55px;
  }
}
.home .faq__block {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.home .faq__block-item:not(:last-of-type) {
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .faq__block-item:not(:last-of-type) {
    margin-bottom: 45px;
  }
}
.home .faq__block-question {
  background: #C1A438;
  padding: 15px 20px;
}
.home .faq__block-question h3 {
  font-size: clamp(1rem, 0.875rem + 0.26vw, 1.188rem);
  font-weight: bold;
  color: #FFFFFF;
}
.home .faq__block-answer {
  font-size: clamp(1rem, 0.875rem + 0.26vw, 1.188rem);
  padding: 35px 0 55px 0;
}
@media screen and (max-width: 768px) {
  .home .faq__block-answer {
    padding: 25px 20px 45px 20px;
  }
}

.home .access {
  padding: 150px 0 165px 0;
}
@media screen and (max-width: 768px) {
  .home .access {
    padding: 50px 0;
  }
}
.home .access .c-ttl {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .home .access .c-ttl {
    margin-bottom: 45px;
  }
}
.home .access__iframe {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .access__iframe {
    margin-bottom: 40px;
  }
}
.home .access__iframe iframe {
  aspect-ratio: 900/446;
}
.home .access__group {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .home .access__group {
    gap: 30px;
    margin-bottom: 50px;
  }
}
.home .access__group-item {
  font-size: clamp(1rem, 0.875rem + 0.26vw, 1.188rem);
  display: flex;
}
@media screen and (max-width: 768px) {
  .home .access__group-item {
    flex-direction: column;
  }
}
.home .access__group-ttl {
  min-width: 90px;
  font-weight: bold;
  color: #825121;
}
@media screen and (max-width: 768px) {
  .home .access__group-ttl {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home .access__group-txt {
    font-size: 16px;
  }
}
.home .access__mark {
  width: 230px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .home .access__mark {
    width: 200px;
    margin-bottom: 50px;
  }
}

.bg {
  background-image: url(/wp-content/themes/luma-belle/images/access_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*home--------------------*//*# sourceMappingURL=style.css.map */