@charset "UTF-8";
/* ========== ========== ==========
アニメーション
========== ========== ========== */
/* ----- ホバー ----- */
@media screen and (min-width: 768px) {
  .css-hover {
    transition: all 0.3s;
  }
  .css-hover:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
/* ----- フェードイン ----- */
.js-fadeIn {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 0.4s;
}

.js-fadeIn.-active {
  opacity: 1;
  transform: translate(0, 0);
}

/* ----- ぼかしが消えながらフェードイン ----- */
.js-fadeIn-blurry {
  overflow: hidden;
}
.js-fadeIn-blurry:not(:has(.animation)), .js-fadeIn-blurry .animation {
  opacity: 0;
  transition: all 0.6s;
  filter: blur(100px);
}

.js-fadeIn-blurry.-active:not(:has(.animation)), .js-fadeIn-blurry.-active .animation {
  opacity: 1;
  -webkit-animation: animation-blurry 0.6s ease-in forwards;
          animation: animation-blurry 0.6s ease-in forwards;
}

@-webkit-keyframes animation-blurry {
  0% {
    filter: blur(5px);
    transform: scale(1.02);
  }
  100% {
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes animation-blurry {
  0% {
    filter: blur(5px);
    transform: scale(1.02);
  }
  100% {
    filter: blur(0);
    transform: scale(1);
  }
}
/* ----- 左から徐々に見えるようになるフェードイン ----- */
.js-fadeIn-fromLeft {
  opacity: 0;
}

.js-fadeIn-fromLeft.-active {
  -webkit-animation: js-fadeIn-fromLeft 0.6s ease-out forwards;
          animation: js-fadeIn-fromLeft 0.6s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes js-fadeIn-fromLeft {
  0% {
    -webkit-clip-path: inset(-100% 100% -100% 0);
            clip-path: inset(-100% 100% -100% 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(-100% 0 -100% 0);
            clip-path: inset(-100% 0 -100% 0);
    opacity: 1;
  }
}

@keyframes js-fadeIn-fromLeft {
  0% {
    -webkit-clip-path: inset(-100% 100% -100% 0);
            clip-path: inset(-100% 100% -100% 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(-100% 0 -100% 0);
            clip-path: inset(-100% 0 -100% 0);
    opacity: 1;
  }
}
/* ----- 右から徐々に見えるようになるフェードイン ----- */
.js-fadeIn-fromRight {
  opacity: 0;
}

.js-fadeIn-fromRight.-active {
  -webkit-animation: js-fadeIn-fromRight 0.6s ease-out forwards;
          animation: js-fadeIn-fromRight 0.6s ease-out forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

@-webkit-keyframes js-fadeIn-fromRight {
  0% {
    -webkit-clip-path: inset(-100% 0 -100% 100%);
            clip-path: inset(-100% 0 -100% 100%);
    /* 左100%カット → 右から徐々に見える */
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(-100% 0 -100% 0);
            clip-path: inset(-100% 0 -100% 0);
    /* 全表示 */
    opacity: 1;
  }
}

@keyframes js-fadeIn-fromRight {
  0% {
    -webkit-clip-path: inset(-100% 0 -100% 100%);
            clip-path: inset(-100% 0 -100% 100%);
    /* 左100%カット → 右から徐々に見える */
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(-100% 0 -100% 0);
            clip-path: inset(-100% 0 -100% 0);
    /* 全表示 */
    opacity: 1;
  }
}
/* ========== ========== ==========
共通部
========== ========== ========== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  line-height: 1.7;
  font-family: var(--font-main);
  background-color: #02070E;
}
body * {
  color: white;
}

.pageTop {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .pageTop {
    padding-top: 80px;
  }
}

#html #body .sp-show,
#html #body .sp-show-flex {
  display: none;
}

@media screen and (max-width: 768px) {
  #html #body .sp-show {
    display: block;
  }
  #html #body .sp-show-flex {
    display: flex;
  }
  #html #body .sp-hide {
    display: none;
  }
}
#html #body .tb-show,
#html #body .tb-show-flex {
  display: none;
}

@media screen and (max-width: 1000px) {
  #html #body .tb-show {
    display: block;
  }
  #html #body .tb-show-flex {
    display: flex;
  }
  #html #body .tb-hide {
    display: none;
  }
}
.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

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

span {
  font-weight: inherit;
  color: inherit;
}

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

.color-red {
  color: red;
}

.-hidden {
  visibility: hidden;
  pointer-events: none;
}

.sectionWrap {
  width: 100%;
  padding-inline: 30px;
  margin-inline: auto;
}

.sectionWrap-left {
  width: 100%;
  padding-left: var(--section-padding-pc-maxWidth);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sectionWrap-left {
    width: 100%;
    padding-left: var(--section-padding-sp);
  }
}

.sectionWrap-right {
  width: 100%;
  padding-right: var(--section-padding-pc-maxWidth);
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .sectionWrap-right {
    width: 100%;
    padding-right: var(--section-padding-sp);
  }
}

.sectionWrap2 {
  width: 100%;
  padding-inline: 30px;
  margin-inline: auto;
  padding-inline: var(--section-padding-pc2-maxWidth);
}

.sectionWrap2-left {
  width: 100%;
  padding-left: var(--section-padding-pc-maxWidth);
  margin-left: auto;
  padding-left: var(--section-padding-pc2-maxWidth);
}
@media screen and (max-width: 768px) {
  .sectionWrap2-left {
    width: 100%;
    padding-left: var(--section-padding-sp);
  }
}

.sectionWrap2-right {
  width: 100%;
  padding-right: var(--section-padding-pc-maxWidth);
  margin-right: auto;
  padding-right: var(--section-padding-pc2-maxWidth);
}
@media screen and (max-width: 768px) {
  .sectionWrap2-right {
    width: 100%;
    padding-right: var(--section-padding-sp);
  }
}

.sectionTitle {
  font-size: clamp(25.2px, calc(36 / var(--base-width-sp) * 100vw), 46px);
  font-family: var(--font-sub1);
  background: linear-gradient(to top, #F39800 10%, #E9DE80 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-left: 30px;
}
.sectionTitle_span {
  display: block;
  color: white;
  font-size: clamp(8.4px, calc(12 / var(--base-width-sp) * 100vw), 18px);
  font-weight: normal;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sectionTitle_span::after {
  content: "";
  display: block;
  width: clamp(64.4px, calc(92 / var(--base-width-sp) * 100vw), 120px);
  height: 1px;
  background-color: white;
}

.c-header-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #383838;
  border-bottom: 1px solid #c9b79e;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .c-header-wrapper {
    height: 80px;
  }
}

.c-header-area {
  height: 100%;
}

.c-header-logo-link {
  display: inline-flex;
  align-items: center;
  color: white;
  font-family: "Josefin Sans", "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 0 0 0 15px;
  transition: ease 0.3s;
}
.c-header-logo-link:hover {
  transition: ease 0.3s;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-header-logo-link {
    font-size: 1.6rem;
  }
}

.c-header-logo-title {
  display: inline-flex;
  align-items: center;
  color: white;
  font-family: "Josefin Sans", "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  padding: 0 0 0 15px;
  transition: ease 0.3s;
}
.c-header-logo-title:hover {
  transition: ease 0.3s;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .c-header-logo-title {
    font-size: 1.6rem;
  }
}

.c-header-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 70px;
}
@media screen and (max-width: 768px) {
  .c-header-logo {
    max-height: 60px;
  }
}

.c-header-nav-cont {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.c-header-nav-wrap {
  display: inline-block;
  width: auto;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-header-nav-wrap {
    width: 100%;
    padding-right: 2vw;
  }
}

.c-header-nav-wrap-act {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.c-header-nav {
  display: flex;
  display: inline-flex;
  justify-content: flex-end;
  width: auto;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .c-header-nav {
    display: none;
  }
}

.c-header-nav-act {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-header-nav-act {
    display: none;
  }
}

.c-header-nav-list {
  vertical-align: middle;
}

.c-header-nav-menu {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-align: left;
  position: relative;
  top: 0;
  left: 0;
  font-size: 1vw;
  font-weight: bold;
  color: white;
  padding-left: 15px;
  transition: ease 0.3s;
  background-color: transparent;
  padding: 0.5vw 1vw;
}
.c-header-nav-menu:hover {
  transition: ease 0.3s;
  background-color: white;
  color: #333;
}
@media screen and (max-width: 768px) {
  .c-header-nav-menu {
    font-size: 1.4rem;
  }
}

.c-header-nav-wrap-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header-nav-wrap-sp {
    display: flex;
    align-items: center;
  }
}

.c-header-menu-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-header-menu-sp {
    display: inline-block;
    text-align: right;
    margin-left: auto;
    padding-right: 5px;
  }
}

.c-header-trigger-wrapper {
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  padding: 0;
  z-index: 9999;
  transition: ease-out 0.3s;
}
.c-header-trigger-wrapper.active.c-header-navmenu-area {
  -webkit-animation: c-navmenu-list-fade 1.2s ease 0.8s both;
  animation: c-navmenu-list-fade 1.2s ease 0.8s both;
}

@-webkit-keyframes c-navmenu-list-fade {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes c-navmenu-list-fade {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-header-trigger-line {
  position: absolute;
  width: 30px;
  height: 1px;
  left: 12px;
  top: 0;
  margin: 0 auto;
  text-align: left;
  transition: ease 0.3s;
  background-color: white;
}

.c-header-trigger-line:nth-of-type(1) {
  top: 14px;
}

.c-header-trigger-line:nth-of-type(2) {
  top: 25px;
}

.c-header-trigger-line:nth-of-type(3) {
  top: 36px;
  width: 25px;
}

.c-header-trigger-wrapper.active .c-header-trigger-line:nth-of-type(1) {
  transform: translate3d(0, 11px, 0) rotate3d(0, 0, 1, -315deg);
  transition: ease 0.4s;
}

.c-header-trigger-wrapper.active .c-header-trigger-line:nth-of-type(2) {
  opacity: 0;
  transition: ease-out 0.4s;
}

.c-header-trigger-wrapper.active .c-header-trigger-line:nth-of-type(3) {
  transform: translate3d(0, -11px, 0) rotate3d(0, 0, 1, 315deg);
  transition: ease-out 0.4s;
  width: 30px;
}

.c-header-navmenu-cont {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.c-header-navmenu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  z-index: -999;
  display: none;
  visibility: hidden;
}
.c-header-navmenu-wrapper.active {
  visibility: visible !important;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  transform: translate3d(0, 0, 0);
  -webkit-animation: c-header-navmenu-fade 0.2s ease-in 0s both;
  animation: c-header-navmenu-fade 0.2s ease-in 0s both;
  background-color: #383838;
}
.c-header-navmenu-wrapper.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(240, 240, 240, 0.5);
}
.c-header-navmenu-wrapper.inactive {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  transform: translate3d(0, 0, 0);
  -webkit-animation: c-header-navmenu-inactive 0.3s ease-out 0s both;
  animation: c-header-navmenu-inactive 0.3s ease-out 0s both;
}

@-webkit-keyframes c-header-navmenu-fade {
  0% {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    z-index: 9998;
  }
}
@keyframes c-header-navmenu-fade {
  0% {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    z-index: 9998;
  }
}
@-webkit-keyframes c-header-navmenu-inactive {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    z-index: 9998;
  }
  100% {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    z-index: -999;
  }
}
@keyframes c-header-navmenu-inactive {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    z-index: 9998;
  }
  100% {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
    z-index: -999;
  }
}
.c-header-logo-img {
  width: auto;
  max-width: 100%;
  max-height: 76px;
  padding: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .c-header-logo-img {
    padding: 10px 0;
    width: auto;
    max-height: 76px;
    margin: 0 auto;
  }
}

.c-header-navmenu-list {
  max-width: 1170px;
  margin: 0 auto;
  padding: 10px 0;
  margin-bottom: 10px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 1170px) {
  .c-header-navmenu-list {
    max-width: 100%;
  }
}

@-webkit-keyframes a-menu-fadein {
  0% {
    opacity: 0;
    transform: translate(0, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes a-menu-fadein {
  0% {
    opacity: 0;
    transform: translate(0, 10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.c-header-navmenu-listintitle {
  max-width: 600px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
  color: white;
  text-align: left;
  padding: 20px;
  margin: 0 auto;
  transition: ease 0.3s;
  cursor: pointer;
  transition: ease 0.3s;
  background-color: rgba(140, 140, 140, 0.2);
}
@media screen and (max-width: 1170px) {
  .c-header-navmenu-listintitle {
    font-size: 1.6rem;
    padding: 15px 15px;
  }
}
.c-header-navmenu-listintitle:hover {
  background-color: rgba(0, 0, 0, 0.9);
  transition: ease 0.2s;
}

.c-header-navmenu-listin-box {
  display: block;
}

.c-header-navmenu-listin {
  width: 100%;
  margin: 0 auto 15px auto;
}
@media screen and (max-width: 768px) {
  .c-header-navmenu-listin {
    margin: 0 auto 10px auto;
  }
}

.c-header-navmenu-logo {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 140px;
}

.c-header-navmenu-sns-box {
  margin-top: 40px;
}

.c-header-navmenu-sns-area {
  margin-top: 20px;
}

.c-header-navmenu-listin.active:nth-child(1) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.1s both;
  animation: c-navmenu-list-fade 0.2s ease 0.1s both;
}

.c-header-navmenu-listin.active:nth-child(2) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.2s both;
  animation: c-navmenu-list-fade 0.2s ease 0.2s both;
}

.c-header-navmenu-listin.active:nth-child(3) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.3s both;
  animation: c-navmenu-list-fade 0.2s ease 0.3s both;
}

.c-header-navmenu-listin.active:nth-child(4) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.4s both;
  animation: c-navmenu-list-fade 0.2s ease 0.4s both;
}

.c-header-navmenu-listin.active:nth-child(5) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.5s both;
  animation: c-navmenu-list-fade 0.2s ease 0.5s both;
}

.c-header-navmenu-listin.active:nth-child(6) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.6s both;
  animation: c-navmenu-list-fade 0.2s ease 0.6s both;
}

.c-header-navmenu-listin.active:nth-child(7) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.7s both;
  animation: c-navmenu-list-fade 0.2s ease 0.7s both;
}

.c-header-navmenu-listin.active:nth-child(8) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.8s both;
  animation: c-navmenu-list-fade 0.2s ease 0.8s both;
}

.c-header-navmenu-listin.active:nth-child(9) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 0.9s both;
  animation: c-navmenu-list-fade 0.2s ease 0.9s both;
}

.c-header-navmenu-listin.active:nth-child(10) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 1s both;
  animation: c-navmenu-list-fade 0.2s ease 1s both;
}

.c-header-navmenu-listin.active:nth-child(11) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 1.1s both;
  animation: c-navmenu-list-fade 0.2s ease 1.1s both;
}

.c-header-navmenu-listin.active:nth-child(12) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 1.2s both;
  animation: c-navmenu-list-fade 0.2s ease 1.2s both;
}

.c-header-navmenu-listin.active:nth-child(13) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 1.3s both;
  animation: c-navmenu-list-fade 0.2s ease 1.3s both;
}

.c-header-navmenu-listin.active:nth-child(14) {
  -webkit-animation: c-navmenu-list-fade 0.2s ease 1.4s both;
  animation: c-navmenu-list-fade 0.2s ease 1.4s both;
}

.c-header-navmenu-link {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #111;
  text-align: center;
  padding: 5px 0;
  margin: 0 auto;
  transition: ease 0.4s;
  z-index: 9999;
}
.c-header-navmenu-link:hover {
  transition: ease 0.3s;
  color: white;
}
.c-header-navmenu-link .c-header-sns-icon {
  display: inline;
  font-size: 2.4rem;
  line-height: 1;
  color: #111;
  background-color: transparent;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  transition: ease 0.3s;
}
.c-header-navmenu-link .c-header-sns-icon:hover {
  transition: ease 0.2s;
  color: white;
}
@media screen and (max-width: 768px) {
  .c-header-navmenu-link .c-header-sns-icon {
    display: inline-block;
    width: 100%;
    padding: 10px;
  }
}
.c-header-navmenu-link .c-header-icon-wrapper {
  display: flex;
  flex-flow: column;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translate3d(0, -50%, 0);
  padding: 0;
  z-index: 10;
}
@media screen and (max-width: 1170px) {
  .c-header-navmenu-link .c-header-icon-wrapper {
    display: none;
  }
}
.c-header-navmenu-link .c-header-tel {
  color: white;
  font-size: 1.6vw;
  margin-right: 20px;
  transition: ease 0.3s;
}
.c-header-navmenu-link .c-header-tel span {
  font-size: 1.4vw;
  margin-right: 0.5vw;
}
.c-header-navmenu-link .c-header-tel:hover {
  transition: ease 0.3s;
  color: #e133ff;
}
.c-header-navmenu-link .c-header-nav-link {
  color: white;
  font-size: 1.8rem;
  margin: 0 10px;
  font-family: "Josefin Sans", "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  transition: ease 0.3s;
}
.c-header-navmenu-link .c-header-nav-link:hover {
  transition: ease 0.3s;
  color: #e133ff;
}
.c-header-navmenu-link .c-header-sns-link {
  color: white;
  font-size: 1.4vw;
  margin: 0 0.8vw;
  transition: ease 0.3s;
}
.c-header-navmenu-link .c-header-sns-link:hover {
  transition: ease 0.3s;
  color: #e133ff;
}
@media screen and (max-width: 768px) {
  .c-header-navmenu-link .c-header-sns-link {
    font-size: 7vw;
    margin: 0 3vw;
  }
}
.c-header-navmenu-link .c-header-sp-tel {
  display: block;
  position: relative;
  top: 0;
  right: 0;
  font-size: 3rem;
  color: white;
  text-align: right;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .c-header-navmenu-link .c-header-sp-tel {
    font-size: 6vw;
  }
}
.c-header-navmenu-link .c-header-nav-sp {
  display: flex;
  justify-content: flex-end;
}
.c-header-navmenu-link .c-header-vip {
  position: fixed;
  top: 120px;
  right: 20px;
  display: block;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .c-header-navmenu-link .c-header-vip {
    top: 100px;
  }
}
.c-header-navmenu-link .c-header-vip-btn {
  width: 100%;
}
.c-header-navmenu-link .c-header-vip-btn-link {
  display: block;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.75;
  text-align: left;
  position: relative;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  font-weight: bold;
  font-family: "Josefin Sans", "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: black;
  padding: 10px 20px 7px 20px;
  transition: ease 0.3s;
  z-index: 1;
}
.c-header-navmenu-link .c-header-vip-btn-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: black;
  transition: ease 0.3s;
  z-index: -1;
}
.c-header-navmenu-link .c-header-vip-btn-link:hover {
  transition: ease 0.3s;
}
.c-header-navmenu-link .c-header-vip-btn-link:hover::before {
  width: 100%;
  transition: ease 0.3s;
}

/* ----- よくある質問 ----- */
.faq {
  margin-bottom: 100px;
}
.faq_lists {
  width: 100%;
}
.faq_list {
  border-radius: 10px;
  position: relative;
}
.faq_list::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background: linear-gradient(to right, #F39800 0%, #E9DE80 100%);
  border-radius: inherit;
}
.faq_list:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq_list:hover {
  cursor: pointer;
}
.faq_list.-active {
  box-shadow: none;
}
.faq_textQ, .faq_textA {
  padding: 22px 10px;
  display: flex;
  gap: 0 10px;
  font-size: clamp(9.8px, calc(14 / var(--base-width-sp) * 100vw), 16px);
  font-weight: bold;
}
.faq_textQ {
  align-items: center;
  position: relative;
  font-family: var(--font-sub3);
}
.faq_textQ::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #03272A 0%, #051628 100%);
  z-index: -1;
  border-radius: 10px;
}
.faq_textQ:where(.-active *)::before {
  border-radius: 10px 10px 0 0;
}
.faq_singleLetter {
  flex-shrink: 0;
  font-family: var(--font-sub2);
  font-size: clamp(16.8px, calc(24 / var(--base-width-sp) * 100vw), 28px);
  font-weight: bold;
  letter-spacing: 0.05em;
  background: linear-gradient(to top, #F39800 10%, #E9DE80 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq_textA .faq_singleLetter {
  margin-top: -5px;
}
.faq_plusMinus {
  position: relative;
  width: 12px;
  height: 12px;
  margin-left: auto;
}
.faq_plusMinus::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  transform: translate(0, -50%) rotate(-45deg);
  transition: all 0.5s;
}
.faq_plusMinus:is(.-active *)::after {
  transform: translate(0, -50%) rotate(135deg);
}
.faq_answer {
  display: none;
  background-color: black;
  border-radius: 0 0 10px 10px;
}

/* ----- スライダー ----- */
.slick-track {
  display: flex !important;
}

.slick-list {
  overflow: hidden;
}

.slick-slide {
  height: auto !important;
}

* {
  min-width: 0;
  min-height: 0;
}

.slick-dots {
  bottom: -20px !important;
}

.slick-dots li button:before {
  color: white !important;
  font-size: 10px !important;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  color: #54BEC4 !important;
}

.slider_ul {
  margin-bottom: 100px;
}
.slider_ulWrap {
  position: relative;
}
.slider_li {
  padding: 0 0 20px;
  margin: 0 9px;
}
.slider_link {
  text-decoration: none;
  position: relative;
}
.slider_link:visited {
  color: black;
}
.slider_images {
  display: flex;
  margin-bottom: clamp(15px, 3vw, 32px);
  width: 100%;
}
.slider_images img {
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
}
.slider_texts {
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: calc(100% - 30px);
}
@media screen and (min-width: 769px) {
  .slider_texts {
    bottom: 70px;
  }
}
@media screen and (min-width: 600px) {
  .slider_texts {
    bottom: 50px;
  }
}
@media screen and (min-width: 500px) {
  .slider_texts {
    bottom: 30px;
  }
}
.slider_name {
  font-size: clamp(11.2px, calc(16 / var(--base-width-sp) * 100vw), 20px);
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 15px;
}
.slider_sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}
.slider_sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider_sns_link_image {
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
.slider_sns_link_image:hover {
  transform: scale(1.2);
}
.slider_sns_link_image:where(.-insta *) {
  width: 47px;
}
.slider_sns_link_image:where(.-spotify *) {
  width: 40px;
}
.slider_sns_link_image:where(.-youtube *) {
  width: 44px;
}
.slider_text1 {
  font-size: clamp(8.4px, calc(12 / var(--base-width-sp) * 100vw), 18px);
  line-height: 1.5714285714;
  height: 120px;
}
.slider_arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  border-radius: 999px;
}
.slider_arrows {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: space-between;
}
.slider_arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: solid 1px white;
  border-right: solid 1px white;
}
.slider_arrow.-prev::before {
  margin-left: 4px;
  transform: rotate(135deg);
}
.slider_arrow.-next::before {
  margin-right: 4px;
  transform: rotate(-45deg);
}

.contents {
  max-width: 768px;
  margin-inline: auto;
}

.FV {
  margin-bottom: clamp(56.7px, calc(81 / var(--base-width-sp) * 100vw), 100px);
}
.FV_inner {
  position: relative;
}
.FV_texts {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.FV_text1 {
  padding-inline: clamp(4.9px, calc(7 / var(--base-width-sp) * 100vw), 15px) clamp(11.2px, calc(16 / var(--base-width-sp) * 100vw), 30px);
}
.FV_text2 {
  font-size: clamp(16.8px, calc(24 / var(--base-width-sp) * 100vw), 30px);
  color: #FAFAFA;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
}
.FV_text3 {
  padding-inline: clamp(21px, calc(30 / var(--base-width-sp) * 100vw), 50px);
}
.FV_back {
  width: 100%;
}

.cta {
  display: block;
  width: clamp(238px, calc(340 / var(--base-width-sp) * 100vw), 400px);
  margin-inline: auto;
  position: relative;
  transition: all 0.3s;
  margin-bottom: clamp(48.3px, calc(69 / var(--base-width-sp) * 100vw), 100px);
}
.cta_text {
  font-size: clamp(14px, calc(20 / var(--base-width-sp) * 100vw), 24px);
  font-weight: 500;
  text-align: center;
  margin-left: clamp(17.5px, calc(25 / var(--base-width-sp) * 100vw), 40px);
}
.cta_texts {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  gap: 0 clamp(20px, 40 / var(--base-width-sp) * 100vw, 40px);
  justify-content: center;
  align-items: center;
  width: 100%;
}
.cta_texts_arrow {
  transition: all 0.3s;
  margin-top: clamp(2.1px, calc(3 / var(--base-width-sp) * 100vw), 5px);
  transform: translate(0, 0);
  width: clamp(9.8px, calc(14 / var(--base-width-sp) * 100vw), 20px);
}
.cta:hover .cta_texts_arrow {
  transform: translate(5px, 0);
}

.table {
  margin-bottom: clamp(59.5px, calc(85 / var(--base-width-sp) * 100vw), 100px);
}
.table .sectionWrap :where(a) {
  position: absolute;
  font-size: clamp(22.4px, calc(32 / var(--base-width-sp) * 100vw), 50px);
  -webkit-text-stroke: 2px #000;
  font-family: var(--font-sub1);
  background: linear-gradient(to top, #F39800 10%, #E9DE80 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
}
.table_inner {
  position: relative;
}
.table_text1 {
  top: clamp(19.6px, calc(28 / var(--base-width-sp) * 100vw), 40px);
  left: clamp(19.6px, calc(28 / var(--base-width-sp) * 100vw), 56px);
}
@media screen and (min-width: 650px) {
  .table_text1 {
    left: clamp(35px, calc(50 / var(--base-width-sp) * 100vw), 100px);
  }
}
.table_text2 {
  bottom: clamp(126px, calc(180 / var(--base-width-sp) * 100vw), 360px);
  left: clamp(19.6px, calc(28 / var(--base-width-sp) * 100vw), 56px);
  text-align: center;
}
@media screen and (min-width: 650px) {
  .table_text2 {
    left: clamp(35px, calc(50 / var(--base-width-sp) * 100vw), 100px);
  }
}
.table_text3 {
  right: clamp(7.7px, calc(11 / var(--base-width-sp) * 100vw), 22px);
  bottom: clamp(126px, calc(180 / var(--base-width-sp) * 100vw), 360px);
}
@media screen and (min-width: 550px) {
  .table_text3 {
    right: clamp(21px, calc(30 / var(--base-width-sp) * 100vw), 60px);
  }
}
.table_text4 {
  right: clamp(7.7px, calc(11 / var(--base-width-sp) * 100vw), 22px);
  bottom: clamp(20.3px, calc(29 / var(--base-width-sp) * 100vw), 50px);
}
@media screen and (min-width: 550px) {
  .table_text4 {
    right: clamp(21px, calc(30 / var(--base-width-sp) * 100vw), 60px);
  }
}
.table_back {
  width: 100%;
}

.block1 {
  margin-bottom: clamp(48.3px, calc(69 / var(--base-width-sp) * 100vw), 100px);
}
.block1_head_text {
  font-size: clamp(14px, calc(20 / var(--base-width-sp) * 100vw), 26px);
  text-shadow: 0 0 6px #D323A4;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.block1_body {
  display: flex;
  gap: clamp(15.4px, calc(22 / var(--base-width-sp) * 100vw), 30px);
}
.block1_body_texts {
  flex-shrink: 0;
  display: flex;
  flex-direction: row-reverse;
}
.block1_body_text1, .block1_body_text2 {
  font-size: clamp(16.8px, calc(24 / var(--base-width-sp) * 100vw), 30px);
  writing-mode: vertical-rl;
  display: block;
  letter-spacing: 0.3em;
}
.block1_body_text1 .yellow, .block1_body_text2 .yellow {
  background: linear-gradient(to top, #F39800 50%, #E9DE80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.block1_body_text2 {
  margin-top: 160px;
}
.block1_body_image {
  width: 100%;
}

.school {
  margin-bottom: 100px;
}
.school .sectionTitle {
  margin-bottom: 40px;
}
.school .sectionTitle_text {
  margin-left: 30px;
}
.school_block {
  position: relative;
  overflow: visible;
  height: clamp(105px, calc(150 / var(--base-width-sp) * 100vw), 225px);
  width: 100%;
  transition: all 0.5s;
}
.school_block:not(:first-of-type, :last-of-type):nth-of-type(2n+1) .school_block_image {
  -webkit-clip-path: polygon(100% 25%, 0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(100% 25%, 0% 0%, 0% 100%, 100% 100%);
}
.school_block:not(:first-of-type, :last-of-type):nth-of-type(2n+1) .school_block_image:where(.-halfActive2 *) {
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
}
.school_block:not(:first-of-type, :last-of-type):nth-of-type(2n+1) .school_block_image:where(.-active *) {
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
}
.school_block:not(:first-of-type, :last-of-type):nth-of-type(2n) .school_block_image {
  -webkit-clip-path: polygon(0% 25%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 25%, 100% 0%, 100% 100%, 0% 100%);
}
.school_block:not(:first-of-type, :last-of-type):nth-of-type(2n) .school_block_image:where(.-halfActive2 *) {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.school_block:not(:first-of-type, :last-of-type):nth-of-type(2n) .school_block_image:where(.-active *) {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.school_block:last-of-type .school_block_image {
  -webkit-clip-path: polygon(100% 25%, 0% 0%, 0% 75%, 100% 75%);
          clip-path: polygon(100% 25%, 0% 0%, 0% 75%, 100% 75%);
}
.school_block:last-of-type .school_block_image:where(.-halfActive2 *) {
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 75%, 100% 75%);
          clip-path: polygon(100% 0%, 0% 0%, 0% 75%, 100% 75%);
}
.school_block:last-of-type .school_block_image:where(.-active *) {
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
}
.school_block:hover .school_block_image {
  cursor: pointer;
}
.school_block.-halfActive1 {
  height: calc((clamp(144.2px, calc(206 / var(--base-width-sp) * 100vw), 309px) - clamp(105px, calc(150 / var(--base-width-sp) * 100vw), 225px)) / 2 + clamp(105px, calc(150 / var(--base-width-sp) * 100vw), 225px));
}
.school_block.-active {
  height: clamp(144.2px, calc(206 / var(--base-width-sp) * 100vw), 309px);
}
.school_block_image {
  position: absolute;
  top: 0;
  max-height: initial;
  height: clamp(144.2px, calc(206 / var(--base-width-sp) * 100vw), 309px);
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.school_texts {
  position: absolute;
  z-index: 10;
  top: clamp(33.6px, calc(48 / var(--base-width-sp) * 100vw), 60px);
  transition: all 0.5s;
  pointer-events: none;
}
.school_block:nth-of-type(2n+1) .school_texts {
  left: clamp(28px, calc(40 / var(--base-width-sp) * 100vw), 60px);
}
.school_block:nth-of-type(2n+1) .school_texts:where(.-active *) {
  top: clamp(9.1px, calc(13 / var(--base-width-sp) * 100vw), 26px);
}
.school_block:nth-of-type(2n) .school_texts {
  right: clamp(28px, calc(40 / var(--base-width-sp) * 100vw), 60px);
  text-align: right;
}
.school_block:nth-of-type(2n) .school_texts:where(.-active *) {
  top: clamp(9.1px, calc(13 / var(--base-width-sp) * 100vw), 26px);
}
.school_block:first-of-type .school_texts {
  top: clamp(9.1px, calc(13 / var(--base-width-sp) * 100vw), 26px);
}
.school_text1 {
  font-family: var(--font-sub1);
  font-size: clamp(40.6px, calc(58 / var(--base-width-sp) * 100vw), 80px);
  background: linear-gradient(to top, #F19B9B 0%, #EEE0BE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 0 10px rgba(209, 0, 167, 0.6));
}
.school_text1:where(.-n02 *) {
  background: linear-gradient(to top, #D0F19B 0%, #EEDFBE 100%);
  -webkit-background-clip: text;
}
.school_text1:where(.-n03 *) {
  background: linear-gradient(to top, #9BC9F1 0%, #EEDFBE 100%);
  -webkit-background-clip: text;
}
.school_text1:where(.-n04 *) {
  background: linear-gradient(to top, #C39BF1 0%, #EEDFBE 100%);
  -webkit-background-clip: text;
}
.school_text1:where(.-n05 *) {
  background: linear-gradient(to top, #F19B9D 0%, #EEDFBE 100%);
  -webkit-background-clip: text;
}
.school_text2 {
  font-size: clamp(14px, calc(20 / var(--base-width-sp) * 100vw), 30px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 0 #2F0001, -2px 2px 0 #2F0001, 2px -2px 0 #2F0001, -2px -2px 0 #2F0001, 0 2px 0 #2F0001, 2px 0 0 #2F0001, 0 -2px 0 #2F0001, -2px 0 0 #2F0001;
  margin-bottom: clamp(14px, calc(20 / var(--base-width-sp) * 100vw), 40px);
}
.school_text3 {
  position: absolute;
  z-index: 1;
  bottom: 15px;
  text-align: right;
  font-size: clamp(9.8px, calc(14 / var(--base-width-sp) * 100vw), 18px);
  line-height: 1.4285714286;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.school_text3:where(.-active *) {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.school_block:nth-of-type(2n+1) .school_text3 {
  right: clamp(21px, calc(30 / var(--base-width-sp) * 100vw), 50px);
}
.school_block:nth-of-type(2n) .school_text3 {
  left: clamp(21px, calc(30 / var(--base-width-sp) * 100vw), 50px);
  text-align: left;
}

.coursePrice {
  margin-bottom: 100px;
}
.coursePrice .sectionTitle {
  margin-bottom: 40px;
}
.coursePrice_price {
  margin-bottom: 40px;
  border-width: 2px;
  border-style: solid;
  -o-border-image: linear-gradient(to left, #F39800 0%, #E9DE80 100%) 1;
     border-image: linear-gradient(to left, #F39800 0%, #E9DE80 100%) 1;
  padding-block: 37px 33px;
  text-align: center;
  position: relative;
}
.coursePrice_price::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: linear-gradient(150deg, #09B19D 0%, #1B0787 100%);
}
.coursePrice_price_subtitle {
  background-color: #54BEC4;
  color: black;
  font-size: clamp(14px, calc(20 / var(--base-width-sp) * 100vw), 30px);
  letter-spacing: 0.05em;
  line-height: 1.3;
  max-width: clamp(154.7px, calc(221 / var(--base-width-sp) * 100vw), 350px);
  margin-inline: auto;
}
.coursePrice_price_amount {
  font-size: clamp(40.6px, calc(58 / var(--base-width-sp) * 100vw), 70px);
  font-weight: bold;
  background: linear-gradient(to top, #F39800 10%, #E9DE80 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.4;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(209, 0, 167, 0.6)) drop-shadow(0 0 4px rgba(209, 0, 167, 0.6));
}
.coursePrice_price_amount_span {
  font-size: clamp(33.6px, calc(48 / var(--base-width-sp) * 100vw), 60px);
}
.coursePrice_price_note {
  font-size: clamp(13.3px, calc(19 / var(--base-width-sp) * 100vw), 24px);
  line-height: 1.4;
}
.coursePrice_price_note.-n01 {
  margin-bottom: 10px;
}
.coursePrice_price_note.-n02 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  max-width: clamp(154.7px, calc(221 / var(--base-width-sp) * 100vw), 350px);
  margin-inline: auto;
  position: relative;
}
.coursePrice_price_note.-n02::before, .coursePrice_price_note.-n02::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #fff;
}
.coursePrice_block {
  margin-bottom: 40px;
}
.coursePrice_block_title {
  background: linear-gradient(to top, #F39800 10%, #E9DE80 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, calc(20 / var(--base-width-sp) * 100vw), 40px);
  letter-spacing: 0.05em;
}
.coursePrice_block_title:where(.contents *) {
  margin-bottom: 20px;
}
.coursePrice_block_title_icon {
  width: clamp(16.8px, calc(24 / var(--base-width-sp) * 100vw), 40px);
}
.coursePrice_block_text {
  margin-left: calc(clamp(14px, calc(20 / var(--base-width-sp) * 100vw), 40px) + 10px);
  font-size: clamp(11.2px, calc(16 / var(--base-width-sp) * 100vw), 18px);
  line-height: 2;
}

.access {
  margin-bottom: clamp(39.2px, calc(56 / var(--base-width-sp) * 100vw), 100px);
}
.access .sectionTitle {
  margin-bottom: 40px;
}
.access_text1 {
  text-align: center;
  font-size: clamp(11.2px, calc(16 / var(--base-width-sp) * 100vw), 18px);
  letter-spacing: 0.05em;
  margin-bottom: 31px;
}
.access_image {
  margin-bottom: 40px;
}
.access iframe {
  aspect-ratio: 380/214;
}

.teacher {
  margin-bottom: 100px;
}
.teacher .sectionTitle {
  margin-bottom: 36px;
}

.faq .sectionTitle {
  margin-bottom: 40px;
}

/* 共通部ここまで
---------- ---------- */