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

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: rgba(0, 0, 0, 0.2);
}

*: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;
  }
  .scroll-infinity {
    display: none;
  }
}

@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 {
  background-color: #fff;
  position: relative;
}

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

  .pc-logo__wrapper {
    position: fixed;
    top: 24px;
    left: 28px;
    width: calc(208.55 / 1680 * 100%);
    z-index: 10;
  }

  .pc-logo {
    aspect-ratio: 208.55/31;
    object-fit: cover;
  }

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

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

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

/* PC部分 */
.bz-pc,
.pc-logo__wrapper,
.pc-bg {
  display: none;
}
.bz-pc__box {
  position: relative;
  left: 8%;
}

.pc01 {
  aspect-ratio: 368/448;
  object-fit: cover;
}

.pc-btn01 {
  width: calc(376 / 398 * 100%);
  margin-inline: auto;
  margin-top: 3px;
  display: block;
}

.pc-btn01 img {
  width: 100%;
  height: auto;
  aspect-ratio: 370/91;
  object-fit: cover;
}

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

@media (min-width: 700px) {
  .bz-pc__content {
    position: sticky;
    top: 51%;
    transform: translate(0%, -50%);
  }
  .bz-page {
    max-width: 643px;
    min-width: 643px;
    flex: 1;
    border-inline: 10px solid #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  }
  .pc-bg {
    display: block;
  }
}

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

/* SP部分 */
/* ファーストビュー */
.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: 7%;
  width: 372px;
  width: 23.25rem;
  width: calc(372 / 414 * 100%);
}

/* 画像が左に流れ続けるアニメーション */
.scroll-infinity {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 2263px;
  height: auto;
  z-index: 1;
}

.scroll-infinity__list {
  display: flex;
  column-gap: 50px; /* 要素間の隙間 */
  align-items: center;
  animation: infinity-scroll-left 35s infinite linear;
}

.firefox .scroll-infinity {
  width: 5000px;
}

.firefox .scroll-infinity__list {
  animation: infinity-scroll-left 80s infinite linear;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 50px)); /* 全幅+column-gap分を移動 */
  }
}

/* ふわっと表示テキスト */
.bz-06 {
  position: relative;
}

.fade-text {
  font-size: 5.7971vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.11em;
  color: #0199e0;
}

@media (min-width: 700px) {
  .fade-text {
    font-size: 35px;
  }
}

.bz-06__text01 {
  position: absolute;
  top: 108px;
  top: 6.75rem;
  top: 11%;
  left: 161px;
  left: 10.0625rem;
  left: calc(161 / 414 * 100%);
}

.bz-06__text02 {
  position: absolute;
  top: 26.7%;
  top: 27.2%;
  left: 46px;
  left: 2.875rem;
  left: calc(46 / 414 * 100%);
}

.bz-06__text03 {
  position: absolute;
  top: 411px;
  top: 25.6875rem;
  top: 42.3%;
  top: 42.8%;
  left: 156px;
  left: 9.75rem;
  left: calc(156 / 414 * 100%);
}

.bz-06__text04 {
  position: absolute;
  top: 564px;
  top: 35.25rem;
  top: 58.1%;
  top: 58.6%;
  left: 42px;
  left: 2.625rem;
  left: calc(42 / 414 * 100%);
}

.bz-06__text05 {
  position: absolute;
  top: 715px;
  top: 44.6875rem;
  top: 73.8%;
  top: 74.3%;
  left: 164px;
  left: 10.25rem;
  left: calc(164 / 414 * 100%);
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* 喜びの声 アコーディオン */
.bz-32__inner,
.bz-33__inner,
.bz-34__inner {
  padding-right: 20px;
  padding-left: 24px;
}

.card {
  width: 100%;
  border-radius: 13px;
  border-radius: 0.8125rem;
  background-color: #fff;
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.1);
  padding: 17px 17px 18px;
  padding: 1.0625rem 1.0625rem 1.125rem;
}

.card img {
  width: 100%;
  aspect-ratio: 337/223;
  object-fit: cover;
  height: auto;
}

.card__title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: calc(24 / 17);
  letter-spacing: 0.04em;
  color: var(--color__txt);
  margin-top: 14px;
  margin-top: 0.875rem;
  padding-left: 12px;
  padding-left: 0.75rem;
}

.card__content {
  margin-top: 9px;
  margin-top: 0.5625rem;
  padding-right: 7px;
}

.card__text,
.card__text-hide {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: calc(24 / 15);
  letter-spacing: 0.04em;
  padding-left: 14px;
  padding-left: 0.875rem;
  text-align: justify;
}

.card__text {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s, height 0.3s;
  height: 0;
}

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

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

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

.card__open {
  cursor: pointer;
  border: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: calc(24 / 15);
  letter-spacing: 0.04em;
}

.card .line {
  text-decoration: underline;
}

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

.card__close {
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: visibility 0s, opacity 0.3s;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: calc(24 / 15);
  letter-spacing: 0.04em;
}

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

.card__note {
  margin-top: 19px;
  margin-top: 1.1875rem;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: right;
}

.bz-31,
.bz-32,
.bz-33,
.bz-34 {
  position: relative;
}

.bz-32 {
  margin-top: 12px;
}

.bz-33 {
  margin-top: 34px;
}

.bz-34 {
  margin-top: 30px;
}

.bz-radius01,
.bz-radius02,
.bz-radius03,
.bz-radius04 {
  object-fit: cover;
  height: auto;
  position: absolute;
  z-index: -1;
}

.bz-radius01 {
  width: 150px;
  width: 9.375rem;
  aspect-ratio: 150/259;
  top: -91px;
  top: -5.6875rem;
  left: 0;
}

.bz-radius02 {
  width: 193px;
  aspect-ratio: 193/256;
  bottom: -110px;
  bottom: -6.875rem;
  right: 0;
}

.bz-radius03 {
  width: 173px;
  width: 10.8125rem;
  aspect-ratio: 173/260;
  bottom: -42px;
  bottom: -2.625rem;
  left: 0;
}

.bz-radius04 {
  width: 164px;
  width: 10.25rem;
  aspect-ratio: 164/260;
  bottom: -157px;
  bottom: -9.8125rem;
  right: 0;
}

.bz-35 {
  margin-top: 36px;
  margin-top: 2.25rem;
  position: relative;
  z-index: 9;
}

/* フッター */
.bz-footer {
  background-color: #e6e6e6;
  padding: 35px 0 15px;
  padding: 2.1875rem 0 0.9375rem;
  text-align: center;
  position: relative;
}

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

.bz-footer__link {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--color__txt);
}

.bz-footer__copyright {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: calc(26 / 11);
  letter-spacing: 0.04em;
  margin-top: 12px;
  margin-top: 0.75rem;
}

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

.bz-cta-group {
  position: absolute;
  bottom: 7.1%;
  left: 50%;
  transform: translateX(-50%);
  width: 370px;
  width: 23.125rem;
  width: calc(370 / 414 * 100%);
  margin-inline: auto;
}

.bz-23 .bz-cta-group {
  bottom: 17%;
}

.bz-37 .bz-cta-group {
  bottom: 0;
}

/* 他コンテンツ */
.bz-06,
.bz-07,
.bz-08,
.bz-09,
.bz-10,
.bz-11,
.bz-24,
.bz-25,
.bz-26,
.bz-27,
.bz-28,
.bz-29,
.bz-30,
.bz-36 {
  margin-top: -1px;
  margin-top: -0.0625rem;
}

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

/* 固定ボタン */
.kotei-btn {
  position: fixed;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 370px;
  width: 23.125rem;
  width: calc(370 / 414 * 100%);
  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;
  }
}

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

/*===========================================
 プライバシーポリシーページ
========================================== */
.privacy {
  padding: 52px 0 72px;
  padding: 3.25rem 0 4.5rem;
  background-color: #ecfbff;
}

.privacy__inner {
  padding-inline: 22px;
}

.privacy__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}

.privacy__text {
  margin-top: 26px;
  margin-top: 1.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0.1em;
  color: #000;
}

.privacy__text + .privacy__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.bz-footer--white {
  background-color: #fff;
}

/*===========================================
 サンクスページ
========================================== */
.bz-thanks {
  text-align: center;
  background-color: #ecfbff;
  padding: 54px 0 28px;
  padding: 3.375rem 0 1.75rem;
}
.bz-thanks__inner {
  width: 100%;
  padding-inline: 34px;
}
.bz-thanks__title {
  color: #0199e0;
  font-size: 19px;
  font-size: 1.1875rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.bz-thanks__text {
  color: #000000;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.55;
  margin-top: 14px;
  margin-top: 0.875rem;
  font-weight: 500;
}
.bz-thanks__note {
  color: #000000;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 500;
}
.bz-thanks__note a {
  color: #000;
  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;
}

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

.thanks__coach-profile {
  display: flex;
  align-items: center;
  column-gap: 11px;
  column-gap: 0.6875rem;
  margin-top: 18.82px;
  margin-top: 1.175rem;
  justify-content: center;
}

.thanks__coach-image {
  width: 71px;
  width: 4.4375rem;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
}

.thanks__coach-right {
  text-align: left;
}

.thanks__coach-company {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: calc(17 / 12);
  color: #bf9f2f;
}

.thanks__coach-job {
  font-size: 10.42px;
  font-size: 0.65125rem;
  line-height: 1.3;
  letter-spacing: 0;
  color: #243153;
  margin-top: 1px;
  margin-top: 0.0625rem;
}

.thanks__coach-name {
  font-size: 15.42px;
  font-size: 0.96375rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.08em;
  color: #243153;
  margin-top: 2px;
  margin-top: 0.125rem;
}

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

.bz-thanks__note {
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 500;
  color: #000;
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.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 {
  padding: 31px 0 47px;
  padding: 1.9375rem 0 2.9375rem;
  background-color: #ecfbff;
}

.contact__inner {
  padding-inline: 22px;
}

.contact__box {
  background-color: #fff;
  border-radius: 10px;
  border-radius: 0.625rem;
  padding: 32px 26px 38.56px;
  padding: 2rem 1.625rem 2.41rem;
  text-align: center;
}

.contact__subtitle {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: #0199e0;
}

.contact__subtitle .small {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 8px;
}

.contact__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
  margin-top: 19px;
  margin-top: 1.1875rem;
}

.contact-image {
  width: 100%;
  aspect-ratio: 317/212;
  object-fit: cover;
  height: auto;
  margin-top: 14px;
  margin-top: 0.875rem;
  display: block;
}

.contact__message {
  margin-top: 33px;
  margin-top: 2.0625rem;
  display: flex;
  column-gap: 3.33px;
  column-gap: 0.208125rem;
  column-gap: calc(3.33 / 318 * 100%);
  align-items: center;
}

.contact__message-coach {
  width: 69px;
  width: 4.3125rem;
  width: calc(69 / 318 * 100%);
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
}

.contact__message-image {
  width: calc(241.88 / 318 * 100%);
  aspect-ratio: 233.88/61;
  object-fit: cover;
  height: auto;
}

@media (min-width: 1040px) {
  .contact__message {
    justify-content: center;
    column-gap: 2%;
    width: 98%;
  }
  .contact__message-coach {
    width: 25%;
  }
  .contact__message-image {
    width: 69%;
  }
}

.c-form {
  text-align: left;
  margin-top: 29px;
  margin-top: 1.8125rem;
}

.bz-contact__form-body {
}

.c-form-item {
}

.c-form-item + .c-form-item {
  margin-top: 17px;
  margin-top: 1.0625rem;
}

.c-form-item__ttl {
  display: flex;
  align-items: center;
  column-gap: 13px;
  column-gap: 0.8125rem;
}

.c-form-item__ttl p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.c-form-item__ttl span {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 0 5px;
  padding: 0 0.3125rem;
  background-color: #ff5235;
  width: 41px;
  width: 2.5625rem;
  height: 22px;
  height: 1.375rem;
  display: grid;
  place-items: center;
  border-radius: 3px;
  border-radius: 0.1875rem;
}

.c-input {
  margin-top: 7px;
  margin-top: 0.4375rem;
  border: 2px solid #d9d9d9;
  border: 0.125rem solid #d9d9d9;
  border-radius: 10px;
  border-radius: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 11px 14px 14px;
  padding: 0.6875rem 0.875rem 0.875rem;
  width: 100%;
}

.c-form-item__label {
}

.c-form-item__label-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 10px;
  column-gap: 0.625rem;
  margin-top: 7px;
  margin-top: 0.4375rem;
}

.c-select {
  position: relative;
  border: 2px solid #d9d9d9;
  border: 0.125rem solid #d9d9d9;
  border-radius: 10px;
  border-radius: 0.625rem;
  width: 100%;
  background-color: #fff;
}
.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: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  height: 53px !important;
  height: 3.3125rem !important;
  color: #3c677b;
}
.c-date-placeholder {
  position: absolute;
  font-size: 14px;
  font-size: 0.875rem;
  left: 14px; /* 調整が必要 */
  left: 0.875rem; /* 調整が必要 */
  top: 50%;
  transform: translateY(-50%);
  color: #3c677b; /* プレースホルダーっぽい色 */
  pointer-events: none; /* クリックイベントを無効化 */
  transition: 0.3s ease; /* スムーズな移動 */
  font-weight: 500;
}
.c-date-placeholder.is-hidden {
  display: none; /* 値が入力されたら非表示 */
}
.c-select .c-input {
  margin-top: 0;
}

.c-select__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  right: 0.75rem;
  width: 12px;
  width: 0.75rem;
  aspect-ratio: 2/1;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}
input#c-date.c-input {
  height: 53px !important;
  height: 3.3125rem !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;
}
/* firefox用 */
input[type="date"]::-moz-calendar-picker-indicator {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
}
input[type="date"]::-moz-inner-spin-button {
  -moz-appearance: none;
}
input[type="date"]::-moz-clear-button {
  -moz-appearance: none;
}
/* ここまでfirefox用 */
input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}
input[type="date"] {
  color: transparent; /* テキストを非表示 */
  font-size: 14px;
  font-size: 0.875rem;
}
input[type="date"]:focus {
  color: #3c677b; /* フォーカス時に入力値を表示 */
  font-size: 14px;
  font-size: 0.875rem;
}
input[type="date"].has-value {
  color: #3c677b; /* 値が入力済みの場合にテキストを表示 */
}
/* Firefox専用のスタイル */
.firefox .js-date-input:focus + .c-select__arrow-firefox {
  display: none; /* フォーカス時も矢印を非表示 */
}

.firefox .js-date-input.has-value + .c-select__arrow-firefox {
  display: none; /* 値が入力済みの場合も矢印を非表示 */
}

.c-input__textarea {
  height: 151px;
  height: 9.4375rem;
}

.bz-contact__form-btn {
  margin-top: 22px;
  margin-top: 1.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.c-cta-btn__btn-contact {
  width: 201.03px;
  width: 12.564375rem;
  margin-inline: auto;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: calc(22 / 18);
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #e15457;
  border-radius: 106.91px;
  border-radius: 6.681875rem;
  padding: 13px 15px 12px;
  padding: 0.8125rem 0.9375rem 0.75rem;
  text-align: center;
  position: relative;
  border: none;
  z-index: 1;
}

.bz-contact__form-btn span {
  position: absolute;
  top: 2.17px;
  top: 0.135625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 201.03px;
  width: 12.564375rem;
  height: 100%;
  border-radius: 107.46px;
  border-radius: 6.71625rem;
  background-color: #a93c3e;
  z-index: 0;
}
.placeholder {
  color: #d1d1d1;
}
