@charset "UTF-8";
/* =========================================================
   汎用パーツ
   ========================================================= */
.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-link-text {
  color: #ff6216;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.u-link-text:hover {
  opacity: 0.7;
}

/* =========================================================
   セクションヘッダー
   ========================================================= */
.section-heading__wrapper {
  margin-bottom: min(4.16vw, 80px);
}

.section-heading__subheading {
  margin-bottom: 12px;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 24px;
  letter-spacing: 2.88px;
  color: #ff6216;
  line-height: 1;
}

.section-heading__heading {
  font-weight: 900;
  font-size: min(60px, 4.7vw);
  letter-spacing: 2.4px;
  color: #ff6216;
  white-space: nowrap;
  line-height: 1.4;
}

.section-heading__message {
  padding-top: min(20px, 3vw);
  letter-spacing: 0.8px;
  line-height: 2;
}

@media (max-width: 768px) {
  .section-heading__subheading {
    font-size: 14px;
  }
}
/* =========================================================
   セクションラッパー、スペーサー
   ========================================================= */
.section__wrapper_w_1520 {
  width: min(80%, 1520px);
  margin: 0 auto;
  position: relative;
}

.section__wrapper_w_1400 {
  width: min(80%, 1400px);
  margin: 0 auto;
  position: relative;
}

.section__wrapper_w_1200 {
  width: min(80%, 1200px);
  margin: 0 auto;
  position: relative;
}

.section__wrapper_w_1000 {
  width: min(80%, 1000px);
  margin: 0 auto;
}

.section__spacer {
  padding: min(120px, 6.25vw) 0;
}

.section__spacer_underpage {
  padding: 200px 0 120px;
}

.section__spacer-concept-feature {
  padding: min(170px, 10.625vw) 0;
}

@media (max-width: 768px) {
  .section__spacer,
  .section__spacer-concept-feature {
    padding: 16vw 0;
  }
  .section__spacer_underpage {
    padding: 18vw 0;
  }
}
/* =========================================================
   ボタン（リンク）
   ========================================================= */
.link-button-more__wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.link-button-more {
  width: min(460px, 100%);
  border: 1px solid #464646;
  padding: 24px min(18px, 3vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  background: transparent;
  position: relative;
  overflow: visible;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.link-button-more::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(#ff6216, #ff6216) left top/0 1px no-repeat, linear-gradient(#ff6216, #ff6216) right top/1px 0 no-repeat, linear-gradient(#ff6216, #ff6216) right bottom/0 1px no-repeat, linear-gradient(#ff6216, #ff6216) left bottom/1px 0 no-repeat;
  transition: inset 0.15s ease;
}

.link-button-more__text {
  font-weight: 500;
  letter-spacing: 0.8px;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.link-button-more__arrow {
  display: block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  border-left: 1px solid var(--color-primary-dark);
  border-bottom: 1px solid var(--color-primary-dark);
  transform: rotate(-135deg);
  transition: border-color 0.15s ease, border-width 0.15s ease;
}

.link-button-trial {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  text-decoration: none;
  color: #ff6216;
  background: #fff;
  border: 3px solid #ff6216;
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto;
  width: min(1000px, 100%);
  transition: background-color 0.15s ease;
}

.link-button-trial__text {
  margin: 0;
  line-height: 1.8;
  padding: 45px min(18px, 3vw);
  width: 92%;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ff6216;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}

.link-button-trial__text::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: #ff6216;
  pointer-events: none;
  transition: width 0.15s ease;
}

.link-button-trial__arrow {
  position: relative;
  width: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.link-button-trial__arrow > span {
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  width: 12px;
  height: 12px;
  border-left: 2px solid #ff6216;
  border-bottom: 2px solid #ff6216;
  transform: rotate(-135deg) translate(-50%, -50%);
  transform-origin: center;
  transition: border-color 0.15s ease;
}

@media (hover: hover) {
  .link-button-more:hover {
    border-color: transparent;
    background: #fff;
  }
  .link-button-more:hover::after {
    inset: -2px;
    opacity: 1;
    animation: link-button-more-border-trace 0.25s linear forwards;
  }
  .link-button-more:hover .link-button-more__text {
    color: #ff6216;
  }
  .link-button-more:hover .link-button-more__arrow {
    border-left-color: #ff6216;
    border-bottom-color: #ff6216;
  }
  .link-button-trial:hover .link-button-trial__arrow {
    background: #ff6412;
  }
  .link-button-trial:hover .link-button-trial__arrow > span {
    border-left-color: #fff;
    border-bottom-color: #fff;
  }
}
@media (max-width: 768px) {
  .link-button-trial {
    font-size: 4.5vw;
  }
}
/* =========================================================
   フォーム共通パーツ
   ========================================================= */
.section__wrapper_w_1200__site-form-page {
  width: min(92%, 1200px);
  margin: 0 auto;
  position: relative;
}

.site-form-page {
  background: #eee;
  min-height: 100vh;
}

.site-form-page__title {
  margin: 0 0 130px;
  text-align: center;
  color: #ff6216;
  font-size: min(60px, 3.2vw);
  font-weight: 900;
  letter-spacing: 2.4px;
}

.site-form-page__panel {
  background: #fff;
  border-radius: 16px;
  padding: 98px 104px;
}

.site-form-page__list-item_wrapper {
  margin-bottom: 32px;
}

.site-form-page__list-item {
  padding: 10px 10px 10px 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.site-form-page__list-item::before {
  content: "●";
  font-size: 12px;
  line-height: 1em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.site-form-page__list-note_wrapper {
  background: #eee;
  border-radius: 10px;
  padding: 40px;
}

.site-form-page__list-note {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.site-form-page__list-note:not(:last-child) {
  margin-bottom: 10px;
}

.site-form-page__list-note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.site-form-page__lang {
  margin: 0 0 72px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.site-form-page__lang-btn {
  border: 0;
  background: transparent;
  font-weight: 700;
  color: rgba(70, 70, 70, 0.33);
}

.site-form-page__lang-sep {
  font-weight: 700;
}

.site-form__field {
  margin-bottom: 48px;
}

.site-form__field label,
.site-form__field legend,
.site-form__field .site-form__field-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-weight: 700;
}

.site-form__field-note {
  font-size: 14px;
  padding-top: 10px;
}

.site-form__required {
  display: inline-block;
  border-radius: 4px;
  background: #d80000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36px;
  padding: 4px 8px;
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #eee;
  padding: 16px 24px;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.site-form input::placeholder {
  color: #c8c8c8;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
  background: #fff;
  border-color: #ff6216;
  outline: none;
}

@media (hover: hover) {
  .site-form input:hover:not(:disabled),
  .site-form select:hover:not(:disabled) {
    background: #fff;
    border-color: #ff6216;
    outline: none;
  }
}
.site-form__field--radio {
  border: 0;
  padding: 0;
  margin: 0 0 48px;
}

.site-form__field--radio legend {
  margin-bottom: 16px;
}

.site-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-right: 32px;
}

.site-form__radio input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #464646;
}

.site-form__select-wrap {
  position: relative;
}

.site-form__select-wrap select {
  appearance: none;
  padding-right: 48px;
}

.site-form__select-arrow {
  position: absolute;
  right: 16px;
  top: calc(50% - 2px);
  width: 10px;
  height: 10px;
  border-top: 2px solid #464646;
  border-right: 2px solid #464646;
  transform: translate3d(0, -50%, 0) rotate(135deg);
}

.site-form__submit {
  margin: 0 auto;
  border: 0;
  border-radius: 8px;
  background: #ff6216;
  color: #fff;
  min-height: 56px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.site-form__submit:hover {
  opacity: 0.7;
}

.site-form__submit:disabled {
  background: #c8c8c8;
  color: #fff;
  cursor: not-allowed;
  opacity: 1;
}

.site-form__submit:disabled:hover {
  opacity: 1;
}

.site-form__submit-icon {
  width: 18px;
  height: 18px;
  display: flex;
}

.site-form__submit-icon img {
  width: 18px;
  height: 18px;
}

.site-form__date-btn {
  cursor: pointer;
  border-bottom: 1px solid #464646;
  padding: 10px 50px 10px 10px;
  position: relative;
  transform: 0.15s ease;
}

.site-form__date-btn:hover {
  opacity: 0.7;
}

.site-form__date-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #464646;
  border-right: 2px solid #464646;
  transform: translate3d(0, -50%, 0) rotate(135deg);
}

.site-form__flex_row {
  display: flex;
  gap: 10px;
}

@media (max-width: 768px) {
  .site-form-page__section {
    padding: 18vw 0;
  }
  .site-form-page__title {
    font-size: 7vw;
    margin-bottom: 12vw;
  }
  .site-form-page__panel {
    padding: 5%;
  }
  .site-form-page__lang {
    margin-bottom: 7vw;
  }
  .site-form-page__list-note_wrapper {
    padding: 5%;
  }
}
.wpcf7-submit {
  border: none !important;
  border-radius: 0 !important;
  background: none !important;
  padding: 0 !important;
  color: #fff !important;
  cursor: pointer;
}

.wpcf7-spinner {
  display: none;
}

/* =========================================================
   サイドオブジェクト
   ========================================================= */
.side-object {
  position: absolute;
  left: 0;
  top: min(120px, 6.25vw);
  z-index: 2;
}

/* .side-object { position: fixed; left: 0; top: min(120px, 6.25vw); z-index: 2; } */
.side-object__section-concept-feature {
  color: #fff;
}

.side-object__sidebar-img {
  display: block;
  width: 70px;
  object-fit: contain;
}

.side-object__section-concept-feature {
  top: min(170px, 10.625vw);
}

.side-object__section-concept-feature .side-object__sidebar-img {
  height: 526px;
}

.side-object__section-dojo .side-object__sidebar-img {
  height: 441px;
}

.side-object__section-instructor .side-object__sidebar-img {
  height: 614px;
}

.side-object__section-programs .side-object__sidebar-img {
  height: 666px;
}

.side-object__section-news .side-object__sidebar-img {
  height: 330px;
}

@media (max-width: 768px) {
  .side-object {
    width: 35px;
  }
  .side-object__sidebar-img {
    width: 35px;
  }
  .side-object__section-concept-feature .side-object__sidebar-img {
    height: 263px;
  }
  .side-object__section-dojo .side-object__sidebar-img {
    height: 220.5px;
  }
  .side-object__section-instructor .side-object__sidebar-img {
    height: 307px;
  }
  .side-object__section-programs .side-object__sidebar-img {
    height: 333px;
  }
  .side-object__section-news .side-object__sidebar-img {
    height: 165px;
  }
}
/* コンセプト、フィーチャー */
.side-object__section-concept-feature .side-object__line {
  background: #fff;
}

/* =========================================================
   ユーティリティ
   ========================================================= */
.u-d-pc-none {
  display: none;
}

.u-mb-80 {
  margin-bottom: min(80px, 12vw);
}

.u-font-small {
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .u-d-pc-none {
    display: block !important;
  }
}
.site-footer__trial[hidden] {
  display: none !important;
}

.site-footer__trial-link {
  width: 100%;
  height: 100%;
  border-radius: 75px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.site-footer__trial-link span {
  font-family: "Jost", system-ui, sans-serif;
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1em;
}

@media (max-width: 768px) {
  .site-footer__trial {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
  .site-footer__trial-link {
    font-size: 20px;
  }
  .site-footer__trial-link span {
    font-size: 12px;
  }
}
