@charset "utf-8";
/*===========================================
 reset 触らない
========================================== */
*,
::after,
::before {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  height: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

progress {
  display: inline-block;
}

small {
  font-size: 80%;
  font-size: 0.8em;
}

[hidden] {
  display: none;
}

[unselectable] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
}

button,
input,
select,
textarea {
  background-color: transparent;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
  outline-offset: -0.125rem;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

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

select::-ms-value {
  color: currentColor;
}

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

/*===========================================
 base プロジェクトによって編集可
========================================== */
@font-face {
  font-family: "stahl"; /* 任意のフォント名 */
  src: url("../fonts/StahlKl12OT-Normal.otf") format("opentype"); /* フォントファイルのパスとフォーマット */
  font-weight: normal; /* ウェイト (bold, lightなども指定可能) */
  font-style: normal; /* スタイル (italicなども指定可能) */
}

html {
  font-size: 100%;
}

@media (max-width: 414px) {
  html {
    font-size: calc((100vw - 320px) / 94 * 3.7 + 12.3px);
  }
}

@media (min-width: 414px) and (max-width: 699.98px) {
  html {
    font-size: calc((100vw - 414px) / 352 * 4 + 16px);
  }
}

@media (min-width: 700px) {
  html {
    font-size: 22px;
  }
}

:root {
  --color__txt: #352d21;
}

body {
  color: var(--color__txt);
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}

p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  /* -webkit-font-smoothing: antialiased; */
}

a {
  color: #f75e29;
}

p a {
  font-weight: bold;
  text-decoration: underline;
}

a > * {
}

/* a img {
  transition: all 0.6s cubic-bezier(0.12, 1.07, 0.15, 1.11);
}

a img:hover {
  opacity: 0.7;
} */

em {
  font-style: normal;
  font-weight: bold;
}

img {
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  /* margin-top: -0.3px;
  margin-bottom: -0.3px; */
}

picture {
  display: block;
  line-height: 0;
  font-size: 0;
}

picture > img {
  font-size: 0px;
  font-size: 0rem;
}

::placeholder {
  color: #d5d5d5;
}

*:focus {
  outline: none;
}

form input,
form textarea {
  /* -webkit-appearance: none; */
}

h1,
h2,
h3 {
  /* font-family: var(--font-family__mincho); */
  /* color: #fff; */
}

.is-show {
  opacity: 1 !important;
}

.is-hide {
  opacity: 0 !important;
}

@media (min-width: 700px) {
  .pc {
    display: block;
  }

  .pc--inline {
    display: inline;
  }

  .sp {
    display: none !important;
  }

  .sp--inline {
    display: none !important;
  }
}

@media (max-width: 699.98px) {
  .pc {
    display: none !important;
    pointer-events: none;
  }

  .pc--inline {
    display: none !important;
  }

  .sp {
    display: block;
  }

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

@media (max-width: 767.98px) {
  p {
    line-height: 1.75;
    font-size: 16px;
    font-size: 1rem;
  }
}

/*===========================================
 Project ここから独自CSS記載
========================================== */
a {
  transition: all 0.6s cubic-bezier(0.12, 1.07, 0.15, 1.11);
}

@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

.bz-wrap {
  position: relative;
}

.bz-wrap .bg_pc {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100lvh;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s;
}

.bz-wrap .bg_pc01 img {
  height: 100%;
  object-fit: cover;
}

.bz-wrap .bg_pc.is-active {
  opacity: 1;
  transition: opacity 1s;
}

.bz-wrap .bg_pc02 {
  background: linear-gradient(180deg, #ffeeee 0%, #fbf8f8 100%);
}

.bz-wrap .bg_pc02 img {
  top: 0;
  left: 0;
  width: calc(306 / 1680 * 100%);
  height: auto;
  position: absolute;
  z-index: 1;
  opacity: 1;
  aspect-ratio: 306/286;
}

.bz {
  background-color: #fff;
  position: relative;
}

@media (min-width: 700px) {
  .bz {
    display: flex;
    justify-content: center;
  }

  .pc-bg {
    position: fixed;
    inset: 0;
    aspect-ratio: 1680/921;
    object-fit: cover;
    height: 100%;
    display: block;
  }
}
@media (min-width: 1040px) {
  .bz {
    justify-content: center;
    padding-inline: 20px;
  }
  /* .bz-page {
    margin-left: calc(100 / 1040 * 100%);
  } */
}

@media (min-width: 1400px) {
  .bz {
    padding-inline: 20px;
  }
  .bz-page {
    margin-left: 16vw;
  }
}

@media (min-width: 1700px) {
  .bz {
    justify-content: center;
  }
}

/* PC部分 */
.bz-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 1330px) {
  .pc-1200 {
    display: none;
  }
}
.p1 {
  position: absolute;
  width: 418px;
  width: calc(418 / 1680 * 100%);
  left: 58px;
  left: calc(58 / 1680 * 100%);
  top: 17%;
  top: 50%;
  transform: translateY(-50%);
}
.p2 {
  position: absolute;
  width: 446px;
  width: calc(446 / 1680 * 100%);
  right: 73px;
  right: calc(73 / 1680 * 100%);
  top: 8%;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1441px) and (max-width: 1660px) {
  .p1 {
    width: calc(350 / 1680 * 100%);
    left: calc(35 / 1680 * 100%);
  }
  .p2 {
    width: calc(550 / 1680 * 100%);
    right: calc(35 / 1680 * 100%);
  }
}
@media (min-width: 1300px) and (max-width: 1440px) {
  .p1 {
    width: calc(390 / 1680 * 100%);
    left: calc(45 / 1680 * 100%);
  }
  .p2 {
    width: calc(570 / 1680 * 100%);
    right: calc(35 / 1680 * 100%);
  }
}
.bz-pc__heading {
  width: calc(254 / 418 * 100%);
}
.bz-pc__link {
  width: 418px;
  width: 100%;
  margin-top: 26px;
  display: block;
}
.bz-pc__link img {
  width: 100%;
}
.bz-pc__link + .bz-pc__link {
  margin-top: 12px;
}
.bz-pc__box02 {
  position: relative;
  width: 90%;
  margin-left: 1rem;
}
.pc-button {
  width: calc(306.27 / 446 * 100%);
  position: absolute;
  right: 10%;
  bottom: 7%;
}
.bz-pc,
.pc-logo__wrapper,
.pc-bg {
  display: none;
}
.bz-pc__box {
  position: relative;
  left: 8%;
}

.pc01 {
  object-fit: cover;
}

.pc-btn01,
.pc-btn02 {
  display: block;
}

.pc-btn01 {
  margin-top: 48px;
  display: block;
  width: calc(400 / 422 * 100%);
  margin-inline: auto;
  position: relative;
  top: 7px;
}
.pc-btn02 {
  margin-top: 11.16px;
}

.pc-btn01 {
  object-fit: cover;
}

.pc-btn02 {
  object-fit: cover;
}

.bz-page {
  background-color: #fff;
  width: 100%;
  position: relative;
  z-index: 9;
}

@media (min-width: 700px) {
  .bz-cta-group--02 {
    position: fixed;
    width: 446px;
    width: calc(446 / 1680 * 100%);
    z-index: 3;
  }
  .bz-page {
    max-width: 590px;
    flex: 1;
    border-inline: 5px solid #fff;
  }
  .pc-bg {
    display: block;
  }
}

@media (min-width: 1040px) {
  .bz-pc {
    display: block;
    position: relative;
    width: min(356px, 33%);
    z-index: 9;
  }
  .pc-logo__wrapper {
    display: block;
  }
}

/* SP部分 */
.bz-page {
  max-width: 641px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 0 30px rgb(0 0 0 / 10%);
  box-shadow: 0 0 1.875rem rgb(0 0 0 / 10%);
  position: relative;
  z-index: 999;
  /* width: 50%; */
  background-color: white;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .bz-page {
    /* border-left: 10px solid white;
    border-right: 10px solid white; */
    box-sizing: content-box;
    left: 0;
  }
}

@media (min-width: 1330px) and (max-width: 1440px) {
  .bz-page {
    max-width: 550px;
    left: -2rem;
  }
}

@media (min-width: 1441px) and (max-width: 1660px) {
  .bz-page {
    max-width: 550px;
    left: -3rem;
  }
}

@media (min-width: 1661px) {
  .bz-page {
    max-width: 641px;
  }
}
/* ファーストビュー */
.bz-fv {
  position: relative;
  z-index: 0;
}

@media (min-width: 700px) {
  .bz-fv {
    position: relative;
    z-index: 0;
  }
}

.bz-fv__button {
  position: absolute;
  left: 50.2%;
  transform: translateX(-50%);
  bottom: 1px;
  width: 372px;
  width: 23.25rem;
}

.contact-button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* 受講者様の声 */
.voice {
  background-color: #f7fbfd;
  padding: 59.6px 0 13px;
  padding: 3.725rem 0 0.8125rem;
}

.voice__inner {
  padding-inline: 11px;
}

.voice__heading {
  width: 357.58px;
  width: 22.34875rem;
  margin-inline: auto;
}

.voice__box {
  margin-top: 23px;
  margin-top: 1.4375rem;
  background-color: #fff;
  border-radius: 13px;
  border-radius: 0.8125rem;
  padding: 14px 15px 24px 13px;
  padding: 0.875rem 0.9375rem 1.5rem 0.8125rem;
  box-shadow: 0 1px 9px 0 rgb(0 0 0 / 8%);
}

.voice__note + .voice__box {
  margin-top: 46px;
  margin-top: 2.875rem;
}

.voice__box img {
  width: 100%;
  height: auto;
  aspect-ratio: 365/215;
  object-fit: cover;
}

.voice__item h3 {
  margin-top: 12px;
  margin-top: 0.75rem;
  width: 100%;
  background-color: rgba(255, 217, 217, 0.7);
  padding: 15px 14px;
  padding: 0.9375rem 0.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: calc(20.8 / 16);
  letter-spacing: 0.1em;
  color: #2a4855;
}

.voice__content {
  margin-top: 13px;
  margin-top: 0.8125rem;
  padding: 0 12px 0 8px;
  padding: 0 0.75rem 0 0.5rem;
}

.voice__text,
.voice__text-hide,
.voice__open,
.voice__close {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(25.2 / 14);
  letter-spacing: 0.1em;
  color: #2a4855;
  text-align: justify;
}

.voice__text.is-open {
  visibility: visible;
  opacity: 1;
  height: auto;
  transition: visibility 0s, opacity 0.3s, height 0.3s;
}

.voice__text01,
.voice__text02,
.voice__text-hide {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s, height 0.3s;
  text-align: justify;
  height: 0;
}

.voice__text-hide.is-open {
  visibility: visible;
  opacity: 1;
  height: auto;
  transition: visibility 0s, opacity 0.3s, height 0.3s;
}

.voice__open {
  cursor: pointer;
  border: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
}

.voice .line {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-color: #2a4855;
  text-decoration-color: #2a4855;
  text-underline-offset: 5px;
}

.voice__open.is-open {
  visibility: visible;
  opacity: 1;
  display: block;
  margin-left: auto;
}

.voice__close {
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: visibility 0s, opacity 0.3s;
}

.voice__close.is-open {
  visibility: visible;
  opacity: 1;
  border: none;
  display: block;
  margin-left: auto;
}

.voice__note {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: calc(13 / 10);
  letter-spacing: 0.04em;
  color: #2a4855;
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-right: 4px;
  margin-right: 0.25rem;
  text-align: right;
}

/* よくあるご質問・アコーディオン */
.faq {
  background-color: #fff;
  padding-bottom: 54.97px;
  padding-bottom: 3.435625rem;
}

.faq__inner {
  padding: 0 7px;
  padding: 0 0.4375rem;
}

.accordion__item {
  background-color: #fff;
  padding: 23px 47px 21px 17px;
  padding: 1.3125rem 2.9375rem 1.3125rem 1.0625rem;
  position: relative;
  margin-top: 16px;
  margin-top: 1rem;
}

.accordion__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border-radius: 0.625rem;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #edf4f9 0%, #e8cdd2 100%) border-box
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}

.accordion__item:first-of-type .accordion__content {
  display: block;
}

.accordion__item + .accordion__item {
  margin-top: 16px;
  margin-top: 1rem;
}

.accordion__title {
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  column-gap: 14px;
  column-gap: 0.875rem;
  color: #2a4855;
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.accordion__title::before,
.accordion__title::after {
  position: absolute;
  content: "";
  top: 38px;
  top: 2.375rem;
  right: 15px;
  right: 0.9375rem;
  width: 14px;
  width: 0.875rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #2a4855;
  transition: 0.3s transform, 0.3s opacity;
}

.accordion__title::before {
  transform: rotate(90deg);
}

.accordion__title.is-open::before {
  transform: rotate(180deg);
}

.accordion__title.is-open::after {
  opacity: 0;
}

.accordion__title-en {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #2a4855;
  position: relative;
  top: -3px;
  top: -0.1875rem;
}

.accordion__title-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: #2a4855;
}

.accordion__content {
  display: none;
}

.accordion__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: calc(28 / 14);
  letter-spacing: 0.04em;
  color: #2a4855;
  text-align: left;
  margin-top: 17px;
  margin-top: 1.0625rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  padding-left: 31px;
  padding-left: 1.9375rem;
}

.accordion__text .red {
  color: #eb7a7c;
  font-weight: bold;
}

/* フッター */
.bz-footer {
  background-color: #f8f1f1;
  padding: 17px 0 14px;
  padding: 1.0625rem 0 0.875rem;
  text-align: center;
  position: relative;
}

.bz-footer__inner {
  padding-inline: 15px;
}

.bz-footer__link {
  display: flex;
  align-items: center;
  column-gap: 28px;
  column-gap: 1.75rem;
  justify-content: center;
}

.bz-footer__link a {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: calc(26 / 11);
  letter-spacing: 0.1em;
  font-weight: 400;
  font-style: normal;
  color: #2a4855;
}

.bz-footer__copyright {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: calc(26 / 11);
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  color: rgba(42, 72, 85, 0.5);
}

/* ボタン関連 */
.bz-24,
.bz-40 {
  position: relative;
}

.bz-cta__button {
  position: absolute;
  width: 368px;
  width: 23rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.bz-fv__button {
  bottom: -25px;
  bottom: -1.5625rem;
}

.bz-cta__button01 {
  bottom: -41px;
  bottom: -2.5625rem;
}

.bz-cta__button02 {
  bottom: 8px;
  bottom: 0.5rem;
}

/* 他コンテンツ */
.bz-03,
.bz-10,
.bz-29 {
  position: relative;
}

.bz-18 {
  margin-top: -1px;
  margin-top: -0.0625rem;
}

.bz-26 {
  margin-top: -2px;
  margin-top: -0.125rem;
}

/* 固定ボタン */
.kotei-btn {
  position: fixed;
  bottom: 10px;
  bottom: 0.625rem;
  z-index: 999;
  width: 368px;
  width: 23rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}

.kotei-btn.is-active {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 700px) {
  .kotei-btn {
    display: none;
  }
}

.bz-04 {
  margin-top: -1px;
  margin-top: -0.0625rem;
}

/*===========================================
 コンタクトページ
========================================== */
.bz-c01 a {
  display: block;
  background-color: #feefef;
}

/*===========================================
 プライバシーポリシーページ
========================================== */
.privacy-page .bz-page {
  background-color: #fff;
}

.privacy-page .bz-sp {
  background-color: #feefef;
}

.bz-privacy__title {
  margin-top: 25px;
  margin-top: 1.5625rem;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #243153;
  text-align: center;
}

.bz-privacy {
  padding: 0 27px;
  max-width: 590px;
  margin-inline: auto;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.bz-privacy p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  color: #000;
}

.bz-privacy p + p {
  margin-top: 1.5rem;
}

.bz-privacy p:last-of-type {
  padding-bottom: 1.25rem;
}

@media (min-width: 700px) {
  .bz-privacy p {
    font-size: 0.8rem;
  }
}

/*===========================================
  お問い合わせページ
========================================== */
@media screen and (max-width: 768px) {
  .scroll-hint {
    overflow-x: scroll !important;
    overflow-y: hidden !important;
  }
}

.c-chat {
  display: none;
}
.c-chat + .c-chat {
  margin-top: 97px;
  margin-top: 6.0625rem;
}
.c-chat.js-scroll,
.c-chat.is-active {
  display: block;
}
.c-chat__item {
  opacity: 0;
  transition: all 0.7s ease 0s;
  transform: translate(0%, 10px);
}
.c-chat.is-active .c-chat__item {
  animation-name: fadeInUp;
  animation-duration: 0.7s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.c-chat__item:nth-child(1) {
  animation-delay: 0.5s;
}
.c-chat__item:nth-child(2) {
  animation-delay: 1.2s;
}
.c-chat__item:nth-child(3) {
  animation-delay: 1.9s;
}
.c-chat__item:nth-child(4) {
  animation-delay: 2.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(0%, 10px);
  }
  to {
    opacity: 1;
    transform: translate(0%, 0px);
  }
}

/* mail_form
============================ */
.c-form {
}

.c-form input {
  width: 100%;
  font-size: min(3.7vw, 16px);
  line-height: 1.5;
}

.bz-contact {
  background: rgba(238, 163, 165, 0.4);
  padding: 1.6875rem 0 2rem;
}

.bz-contact__inner {
  padding-inline: 10px;
  margin: auto;
}

.bz-contact__op {
  padding: 20px 0 20px;
  padding: 1.25rem 0 1.25rem;
}

.bz-contact__heading {
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.bz-contact__heading-subttl {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
  color: #884300;
}

.bz-contact__heading-ttl {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 100;
  line-height: 1.3;
  color: #884300;
}

.bz-contact__op-list {
  max-width: 670px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}

.bz-contact__op-item {
  width: 31%;
}

.bz-contact__op-item-thum {
  width: 110px;
  width: 5.875rem;
  margin: auto;
  margin-bottom: 0.5rem;
}

.bz-contact__op-item-thum img {
}

.bz-contact__op-item-txt {
  text-align: center;
  font-size: 11.5px;
  font-size: 0.71875rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #884300;
  letter-spacing: 0.08em;
}

.bz-contact__caution {
  font-size: 11.5px;
  font-size: 0.71875rem;
  margin: auto;
  background-color: #fff4e9;
  padding: 10px;
  padding: 0.625rem;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
  color: #884300;
}

.bz-contact__form {
}

.bz-contact__form-inner {
  width: 92%;
  margin: auto;
  background-color: #fffffb;
  border-radius: 10px;
  border-radius: 0.625rem;
  box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.bz-contact__form-cont {
  padding: 34px 0 1px;
  padding: 2.125rem 0 0.0625rem;
  background-color: white;
  border-radius: 15px;
}

.bz-contact__form-header {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  margin-bottom: 19px;
  margin-bottom: 1.1875rem;
  color: #243153;
}

.bz-contact__form-body {
  padding: 0 18px 0 19px;
  margin: auto;
}

.bz-contact__form-ava {
  display: flex;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.bz-contact__form-ava-icon {
  width: 20%;
  border-radius: 200px;
  overflow: hidden;
  height: 20%;
}

.bz-contact__form-ava-icon img {
}

.bz-contact__form-ava-fukidasi {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 16px 14px 18px 15px;
  padding: 1rem 0.875rem 1.125rem 0.9375rem;
  font-size: 15px;
  font-size: 0.9375rem;
  background: #fff;
  border: solid 2px #f6c9ca;
  margin-left: 18px;
  margin-left: 1.125rem;
  border-radius: 8px;
  border-radius: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  --background-color: #fff; /* 吹き出しの色 */
  --border-width: 1px; /*線の太さ */
  --border-width: 0.0625rem; /*線の太さ */
  --border-color: #f6c9ca; /*線の色 */
  --pick-size: 5px; /* 飛び出しのサイズ */
  --pick-size: 0.3125rem; /* 飛び出しのサイズ */
  --pick-radius: 4px; /* 飛び出しの丸め */
  --pick-radius: 0.25rem; /* 飛び出しの丸め */
  --scale: 2;
  --top-position: 23px;
  --top-position: 1.4375rem;
}

.bz-contact__form-ava-fukidasi small {
  font-size: 0.75em;
  line-height: 1.5;
  font-weight: 400;
}

/* .bz-contact__form-ava-fukidasi:before {
  content: "";
  position: absolute;
  top: 39px;
  top: 2.4375rem;
  left: -21px;
  left: -1.3125rem;
  margin-top: -12px;
  margin-top: -0.85rem;
  border: 0.6rem solid transparent;
  border-right: 12px solid #fff;
  border-right: 0.75rem solid #fff;
  z-index: 2;
}

.bz-contact__form-ava-fukidasi:after {
  content: "";
  position: absolute;
  top: 39px;
  top: 2.3375rem;
  left: -26px;
  left: -1.625rem;
  margin-top: -14px;
  margin-top: -0.875rem;
  border: 0.7rem solid transparent;
  border-right: 14px solid #f6c9ca;
  border-right: 0.875rem solid #f6c9ca;
  z-index: 1;
} */

.bz-contact__form-ava-fukidasi:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  transform: scaleX(var(--scale)) rotate(135deg);
  border-color: transparent var(--background-color) var(--background-color)
    transparent;
  left: -4.5px;
  left: -0.28125rem;
  bottom: calc(var(--pick-size) * -1);
  border-width: 6px;
  border-width: 0.375rem;
  border-radius: 0 0 var(--pick-radius) 0;
  top: var(--top-position);
}

.bz-contact__form-ava-fukidasi:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-style: solid;
  transform: scaleX(var(--scale)) rotate(135deg);
  border-color: transparent var(--border-color) var(--border-color) transparent;
  bottom: calc((var(--pick-size) + var(--border-width) * 2) * -1);
  left: -5px;
  left: -0.3125rem;
  border-width: 8px;
  border-width: 0.5rem;
  border-radius: 0px 0px calc(var(--pick-radius) * 1.5) 0px;
  top: calc(var(--top-position) - 2px);
  z-index: -1;
}

#c-chat-1 .bz-contact__form-item {
  margin-top: -8px;
  margin-top: -0.5rem;
}

.bz-contact__form-item {
  background-color: white;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  border-radius: 0.625rem;
  padding: 24px 17px 4px;
  padding: 1.5rem 1.0625rem 0.25rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.bz-contact__form-item--02 {
  margin-top: -17px;
  margin-top: -1.0625rem;
  padding: 18px 27px 17px 26px;
  padding: 1.125rem 1.6875rem 1.0625rem 1.625rem;
}
.bz-tyuuki {
  margin-top: 0.5rem;
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: calc(14 / 10);
  letter-spacing: 0.06em;
  color: #2a4855;
  text-indent: -1em;
  padding-left: 1em;
}

.c-form-item__ttl {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: calc(19.5 / 15);
  font-weight: bold;
  color: #243153;
  letter-spacing: 0.1em;
  margin-bottom: 19px;
  margin-bottom: 1.1875rem;
}

.c-form-item__ttl--02 {
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

.c-form-item__ttl small {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: calc(15.6 / 12);
}

/* c-chat-6
============================ */
.bz-contact__form-btn-txt-1 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
}
.bz-contact__form-btn-txt-2 {
  font-size: 12px;
  font-size: 0.75rem;
}

.c-chat {
}

.bz-contact__form-btn {
  margin-top: 36px;
  margin-top: 2.25rem;
  width: 342px;
  width: 21.375rem;
  margin-inline: auto;
}

.c-cta-btn__btn {
  font-size: 20px;
  font-size: 1.25rem !important;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #243153;
  margin: auto;
  padding: 23px;
  padding: 1.4375rem;
  background: rgb(245, 207, 44);
  background: linear-gradient(
    148deg,
    rgba(245, 207, 44, 1) 0%,
    rgba(255, 190, 47, 1) 100%
  );
  border: solid white 3px;
  border-radius: 50px;
}

.bz-contact__form-privacy {
}

.c-chat p {
  color: #777;
  line-height: 1.5;
  font-size: 0.8rem;
}

.group {
}

.tab-group {
}

.tab {
}

.panel-group {
}

.panel {
}

.c-radio label::after {
  border-radius: 0;
  opacity: 0;
  left: 5.8px;
  left: 0.3625rem;
  top: 16px;
  top: 2.4rem;
  width: 20px;
  width: 1.25rem;
  height: 10px;
  height: 0.625rem;
  border-left: 4px solid #ea8d9b;
  border-left: 0.25rem solid #ea8d9b;
  border-bottom: 4px solid #ea8d9b;
  border-bottom: 0.25rem solid #ea8d9b;
  transform: rotate(-45deg);
}

.bz-contact__txt a {
  color: #1c94ef;
}

/* .c-input {
  border: 2px solid #dedede;
  border-radius: 7px;
  border-radius: 0.3375rem;
  padding: 10px;
  padding: 0.825rem;
  width: 100%;
  font-size: 16px;
} */
.c-select {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 7px;
  border-radius: 0.4375rem;
  width: 100%;
  background-color: white;
}
.c-select select {
  width: 100%;
  padding: 10px;
  padding: 1.025rem;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-indent: 0.000625rem;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 15px;
  height: 3.4375rem;
}

c-select::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  right: 0.6em;
  width: 0;
  height: 0;
  padding: 0;
  border-left: 5px solid transparent;
  border-left: 0.3125rem solid transparent;
  border-right: 5px solid transparent;
  border-right: 0.3125rem solid transparent;
  border-top: 6px solid #c5c5c5;
  border-top: 0.375rem solid #c5c5c5;
  pointer-events: none;
}

input#c-date01.c-input,
input#c-date02.c-input {
  height: 55px !important;
  height: 3.4375rem !important;
  border: initial;
}

input[type="date"],
input[type="time"] {
  width: 100%;
  position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.c-form-item + .c-form-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.c-form-item + .c-form-item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.c-form-item input[type="text"] {
}

.c-radio {
}

.c-radio__item {
  display: block;
  padding: 5px 5px 10px 34px;
  padding: 0.3125rem 0.3125rem 0.625rem 2.125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.3;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
  position: relative;
  cursor: pointer;
}

.c-radio label input {
}

.c-radio__item small {
  font-weight: normal;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
  display: inline-block;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.c-form-item__hosoku {
}

.c-select {
}

.c-select select {
}

.c-select select option {
}

.c-form-item label {
}

.c-input {
  padding: 16px 16px 16px 11px;
  padding: 1rem 1rem 1rem 0.6875rem;
  border: 1px solid #acacac;
  border-radius: 7px;
  border-radius: 0.4375rem;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #243153;
}
.c-check {
}

.c-radio input {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  width: 0.0625rem;
  height: 1px;
  height: 0.0625rem;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
  margin: -0.0625rem;
}

.c-radio .c-input {
  border: 1px solid #243153;
  width: 306px;
  width: 19.125rem;
  width: 109%;
  height: 160px;
  height: 10rem;
  font-size: 15px;
  font-size: 0.9375rem;
  border-radius: 0px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  position: relative;
  clip: initial;
  clip-path: initial;
  margin-top: 17px;
  margin-top: 1.0625rem;
  padding: 16px 14px;
  padding: 1rem 0.875rem;
  left: -29px;
  left: -1.8125rem;
}

.c-message {
  height: 137px;
  height: 8.5625rem;
}

.bz-contact__doui {
  text-align: center;
  margin-top: -16px;
  margin-top: -1rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.bz-contact__doui label {
  border: none;
  display: inline-block;
  margin-bottom: -4px;
  margin-bottom: -0.25rem;
}

.c-radio label::before,
.c-radio label::after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  top: 0.4375rem;
}

.c-radio label::before {
  background-color: #fff;
  border: 1px solid #000000;
  width: 17px;
  width: 1.0625rem;
  height: 17px;
  height: 1.0625rem;
  left: 5px;
  left: 0.3125rem;
}

.c-radio input:checked + label::after,
.c-radio input:checked + label + label::after {
  opacity: 1;
}

.c-form-item__kakunin {
  font-size: 14px;
  font-size: 0.875rem;
}

/* 希望日 */
.c-form-item__label {
}
.c-form-item__label-ttl {
  margin-bottom: 1rem;
}
.c-form-item__label-wrap-inner {
  margin-bottom: 10px;
  position: relative;
}

.date-txt {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translate(0, -50%);
  z-index: 2;
  width: 10%;
  max-width: 27px;
}

p.bz-contact__form-btn-txt-1,
p.bz-contact__form-btn-txt-2 {
  text-align: center;
}

.placeholder {
  color: #d5d5d5;
}

/*===========================================
 サンクスページ
========================================== */
.thanks-page {
  background-color: #feefef;
}
.bz-thanks {
  text-align: center;
  background-color: #feefef;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}
.bz-thanks__inner {
  width: 100%;
  padding-inline: 34px;
}
.bz-thanks__ttl {
  background-color: #feefef;
}
.bz-thanks__01 {
  position: relative;
}
.bz-thanks__line {
  width: 303px;
  width: 18.9375rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 31.5%;
}
.bz-thanks__note {
  width: 373px;
  width: 23.3125rem;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: calc(18 / 10);
  letter-spacing: 0.1em;
  color: #000;
  margin-inline: auto;
  margin-bottom: 1rem;
  /* margin-top: 16px;
  margin-top: 1rem; */
  text-align: center;
  font-weight: 500;
}
.bz-thanks__note a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.bz-thanks__title {
  color: #243153;
  font-size: 19px;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  line-height: calc(30.4 / 19);
  font-weight: 700;
  padding-top: 30px;
  padding-top: 1.875rem;
}
.bz-thanks__text {
  color: #000000;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: calc(18.6 / 12);
  margin-top: 14px;
  margin-top: 0.875rem;
  font-weight: 500;
}
.bz-thanks-box {
  padding: 33px 21px 30px;
  padding: 2.0625rem 1.3125rem 1.875rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 38px;
  margin-top: 2.375rem;
}

.bz-thanks__subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  line-height: 1.55;
  font-weight: 700;
  color: #243153;
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.thanks-star-left {
  position: absolute;
  left: -13%;
  top: 0;
  transform: translateY(-15%);
  width: 18px;
  width: 1.125rem;
  height: auto;
  object-fit: contain;
}

.thanks-star-right {
  position: absolute;
  right: -12%;
  top: 0;
  transform: translateY(-15%);
  width: 18px;
  width: 1.125rem;
  height: auto;
  object-fit: contain;
}

.bz-thanks__description {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.55;
  color: #000;
  font-weight: 500;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.line-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 41.39px;
  width: 2.5875rem;
  height: auto;
  object-fit: cover;
  aspect-ratio: 41.39/39.44;
}

.thanks-button {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-top: 14px;
  margin-top: 0.875rem;
  display: inline-block;
}

.thanks-coach {
  width: 207px;
  width: 12.9375rem;
  height: auto;
  object-fit: cover;
  aspect-ratio: 207/71;
  margin-inline: auto;
  margin-top: 18.82px;
  margin-top: 1.175rem;
}
.thanks-btn {
  width: 92%;
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  z-index: 2;
}
.thanks-btn a {
  display: block;
  width: 89%;
  margin: auto;
}

@media (min-width: 700px) {
  .bz-thanks__title {
    font-size: 1.4rem;
  }
  .bz-thanks__text,
  .bz-thanks__description {
    font-size: 0.9rem;
  }
  .bz-thanks__subtitle {
    font-size: 1.25rem;
  }
  .bz-thanks__note {
    font-size: 0.8rem;
    /* margin-top: 1.75rem; */
  }
}

.contact-page .bz-51 {
  background-color: #74c7c2;
}

.thanks-page .bz-51 {
  background-color: #e3f3f3;
}

@media only screen and (min-width: 700px) {
  .c-form {
  }

  .c-form input {
  }

  .bz-contact {
  }

  .bz-contact__inner {
  }

  .bz-contact__op {
  }

  .bz-contact__heading {
  }

  .bz-contact__heading-subttl {
  }

  .bz-contact__heading-ttl {
  }

  .bz-contact__op-list {
  }

  .bz-contact__op-item {
  }

  .bz-contact__op-item-thum {
  }

  .bz-contact__op-item-thum img {
  }

  .bz-contact__op-item-txt {
  }

  .bz-contact__caution {
  }

  .bz-contact__form {
  }

  .bz-contact__form-inner {
  }

  .bz-contact__form-cont {
  }

  .bz-contact__form-header {
  }

  .bz-contact__form-body {
  }

  .c-chat {
  }

  .bz-contact__form-ava {
  }

  .bz-contact__form-ava-icon {
  }

  .bz-contact__form-ava-icon img {
  }

  .bz-contact__form-ava-fukidasi {
  }

  /* .bz-contact__form-ava-fukidasi:before {
    top: 2.1rem;
    left: -1.3rem;
  } */

  .bz-contact__form-ava-fukidasi:after {
    left: -8px;
    left: -0.35rem;
    top: 32px;
    top: 1.48rem;
  }

  .edge-browser .bz-contact__form-ava-fukidasi:before {
    left: -0.3rem;
    border-width: 0.48rem;
  }

  .edge-browser .bz-contact__form-ava-fukidasi:after {
    left: -0.3rem;
    top: 1.46rem;
  }

  .bz-contact__form-item {
  }
  .bz-tyuuki {
  }

  .c-form-item {
  }

  .c-form-item__ttl {
  }

  .c-input {
  }

  /* c-chat-6
============================ */
  .bz-contact__form-btn-txt-1 {
  }
  .bz-contact__form-btn-txt-2 {
  }

  .c-chat {
  }

  .bz-contact__form-btn {
  }

  .c-cta-btn__btn {
  }

  .bz-contact__form-privacy {
  }

  .c-radio label::after {
  }

  .bz-contact__txt a {
  }

  .c-input {
  }
  .c-select {
  }
  .c-select select {
  }

  c-select::before {
  }

  input#c-date.c-input {
  }

  input[type="date"],
  input[type="time"] {
  }
  input[type="date"]::-webkit-calendar-picker-indicator,
  input[type="time"]::-webkit-calendar-picker-indicator {
  }
  input[type="date"]::-webkit-calendar-picker-indicator,
  input[type="time"]::-webkit-calendar-picker-indicator {
  }

  .c-form-item {
  }
  .c-form-item + .c-form-item {
  }

  .c-form-item {
  }
  .c-form-item + .c-form-item {
  }

  .c-form-item input[type="text"] {
  }

  .c-radio {
  }

  .c-radio__item {
  }

  .c-radio label input {
  }

  .c-form-item__ttl {
  }

  .c-radio__item small {
  }

  .c-form-item__hosoku {
  }

  .c-select {
  }

  .c-select select {
  }

  .c-select select option {
  }

  .c-form-item label {
  }

  .c-input {
  }
  .c-check {
  }

  .c-radio input {
  }

  .c-radio .c-input {
  }

  .c-radio__item {
  }

  .bz-contact__doui {
  }

  .bz-contact__doui label {
  }

  .c-radio label::before,
  .c-radio label::after {
  }

  .c-radio label::before {
  }

  /* .c-radio label::after {} */

  .c-radio input:checked + label::after,
  .c-radio input:checked + label + label::after {
  }

  .c-form-item__kakunin {
  }

  /* 希望日 */
  .c-form-item__label-wrap {
    display: flex;
    justify-content: space-between;
  }
  .c-form-item__label-wrap-inner {
    width: 49%;
  }

  /* thanks========= */
  .bz-thanks {
  }
  .bz-thanks__inner {
  }
  .bz-thanks__inner h2 {
  }
  .bz-thanks__inner h3 {
  }
  .bz-thanks__inner p {
  }
  .t1 {
  }
  .t1 img {
  }
  .t2 {
  }
  .t2 img {
  }

  .thanks-btn {
  }
  .thanks-btn a {
  }
}

/* safariのみ適用 */
.safari a img {
  transition: all 0.6s cubic-bezier(0.12, 1.07, 0.15, 1.11);
}

.safari a:hover img {
  opacity: 0.7;
}
.bz-pc__box01 {
  margin-left: 1rem;
  width: 85%;
}

/* 250617追加 */
.grecaptcha-badge {
  z-index: 1000;
}
