@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: "Yu Gothic";
  src: local("Yu Gothic Medium"), local("YuGothic-Medium");
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold"), local("YuGothic-Bold");
  font-weight: bold;
}

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

body {
  color: #243153;
  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: #243153;
}

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

a > * {
}

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

a img:hover {
  /*  opacity: .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;
  }
}

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

/*===========================================
 Project ここから独自CSS記載
========================================== */
a {
  transition: opacity 0.3s;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  .bz-fv a:hover {
    opacity: 0.9;
  }
}

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

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

@media (min-width: 1040px) {
  /* .bz {
    justify-content: flex-start;
    padding: 0 calc(202 / 1680 * 100%);
    column-gap: calc(129 / 1680 * 100%);
  } */
}

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

/* PC部分 */
.bz-pc {
  display: none;
}

.bz-page {
  background-color: #fff;
  width: 100%;
  position: relative;
  z-index: 9;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
}

@media (min-width: 700px) {
  .bz-page {
    max-width: 644px;
    min-width: 0;
    flex: 1;
    padding: 0 6px;
    box-shadow: 0 3px 26px rgba(0, 0, 0, 0.15);
  }
}

@media (min-width: 1331px) {
  .bz-pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9;
    background-color: #ecf7f4;
  }
  .bz-pc__content-left {
    position: absolute;
    /* top: calc(152 / 921 * 100%); */
    top: 50%;
    transform: translateY(-50%);
    left: clamp(
      27px,
      calc(27px + (85 - 27) * ((100vw - 1330px) / (1680 - 1330))),
      85px
    );
    width: calc(364 / 1680 * 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 1.19047vw;
  }

  .bz-pc__content-left > img {
    width: 100%;
    margin-inline: auto;
  }

  .pc-btn {
    width: 100%;
  }

  .pc-btn img {
    width: 100%;
    aspect-ratio: 364/90;
    height: auto;
    object-fit: contain;
  }

  .bz-pc__content-right {
    position: absolute;
    /* top: calc(203 / 921 * 100%); */
    top: 50%;
    transform: translateY(-50%);
    right: clamp(
      27px,
      calc(27px + (84 - 27) * ((100vw - 1330px) / (1680 - 1330))),
      84px
    );
    width: calc(351 / 1680 * 100%);
  }
}

/* SP部分 */
/* ファーストビュー */
.bz-fv {
  position: relative;
  z-index: 0;
}

.bz-fv__button,
.bz-sp__button {
  width: calc(364 / 414 * 100%);
  height: auto;
  position: absolute;
  bottom: -7.5%;
  left: 50%;
  transform: translateX(-50%);
}

/* 他コンテンツ */
.bz-sp__button {
  bottom: -15px;
}

.bz-32,
.bz-50 {
  position: relative;
}

.bz-32 .bz-sp__button {
  bottom: -3.5%;
}

.bz-50 .bz-sp__button {
  bottom: 12%;
}

.bz-51 {
  position: relative;
}

.privacy-box {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
}

.privacy-box a {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #243153;
  display: block;
  font-weight: normal;
}

.privacy-box small {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  line-height: calc(26 / 11);
  margin-top: 0.4375rem;
  font-weight: normal;
  display: inline-block;
}

.bz-09 {
  margin-top: -1px;
}

.bz-15 {
  margin-top: -1px;
}

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

.bz-21 {
  margin-top: -1px;
}

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

.bz-31 {
  margin-top: -1px;
}

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

.bz-47 {
  margin-top: -1px;
}

.bz-48 {
  margin-top: -1px;
}

.bz-49 {
  margin-top: -1px;
}

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

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

.bz-privacy {
  padding: 0 22px;
  max-width: 590px;
  margin-inline: auto;
}

.bz-privacy p {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #262b3d;
  margin-top: 0.3125rem;
}

.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.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-color: #74c7c2;
  padding: 2rem 0 2rem;
}

.bz-contact__inner {
  width: 92%;
  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: 30px 0;
  padding: 1.875rem 0;
  background-color: white;
  border-radius: 15px;
}

.bz-contact__form-header {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  letter-spacing: 0.05em;
  color: white;
}

.bz-contact__form-body {
  width: 92%;
  margin: auto;
}

.c-radio__item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #333;
}

.bz-contact__form-ava {
  display: flex;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

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

.bz-contact__form-ava-icon img {
}

.bz-contact__form-ava-fukidasi {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 19px 25px;
  padding: 1.1875rem 1.5625rem;
  font-size: 15px;
  font-size: 0.9375rem;
  background: #fff;
  border: solid 2px #94d5e4;
  margin-left: 21px;
  margin-left: 1.3125rem;
  border-radius: 15px;
  border-radius: 0.9375rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color__txt);
  letter-spacing: 0.05rem;
}

.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 #94d5e4;
  border-right: 0.875rem solid #94d5e4;
  z-index: 1;
}

.bz-contact__form-item {
  background-color: white;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  border-radius: 0.625rem;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.bz-tyuuki {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.68em;
  color: #444;
  letter-spacing: 0.05em;
}

.c-form-item__ttl {
  font-size: 16.5px;
  font-size: 1.03125rem;
  margin-bottom: 19px;
  margin-bottom: 1.1875rem;
  letter-spacing: 0.04em;
  color: #333;
}

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

.c-chat {
}

.bz-contact__form-btn {
  margin-bottom: 40px;
}

.c-cta-btn__btn {
  font-size: 1.2rem !important;
  font-weight: 600;
  margin: auto;
  padding: 1.5875rem 1.6875rem;
  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: 16.8px;
  left: 1.05rem;
  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-date.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;
  border: 1px solid #acacac;
  border-radius: 8px;
  border-radius: 0.5rem;
  padding: 15px;
  padding: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-left: 48px;
  padding-left: 3rem;
  font-size: 14.4px;
  font-size: 0.9rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}

.c-radio label input {
}

.c-form-item__ttl {
  font-size: 14.4px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  line-height: 1.7;
}

.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: 18px;
  padding: 1.125rem;
  border: 1px solid #acacac;
  border-radius: 7px;
  border-radius: 0.4375rem;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
}
.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 {
  padding: 18px;
  padding: 1.125rem;
  border: 1px solid #acacac;
  border-radius: 7px;
  border-radius: 0.4375rem;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  clip: initial;
  clip-path: initial;
  margin-top: 12px;
  padding: 10px 10px;
}

.c-radio__item {
  position: relative;
  cursor: pointer;
  padding-left: 44px;
  padding-left: 2.75rem;
  border: solid 1px #a8a8a8;
}

.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: 27px;
  top: 1.2875rem;
}

.c-radio label::before {
  background-color: #fff;
  border: 1px solid #a1a1a1;
  border-radius: 5%;
  width: 14.4px;
  width: 0.9rem;
  height: 14.4px;
  height: 0.9rem;
  left: 16px;
  left: 1rem;
}

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

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

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

.placeholder {
  color: rgba(0, 0, 0, 0.2);
}

/* thanks========= */
.thanks-page {
  background-color: #fff;
}
.bz-thanks {
  text-align: center;
  color: #243153;
  background-color: #e3f3f3;
}
.bz-thanks__inner {
  width: 100%;
  padding-inline: 34px;
}
.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: #243153;
  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__note {
  color: #243153;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  padding-bottom: 1rem;
}
.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: #243153;
  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;
}

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

.t1 {
  position: relative;
}
.t1 img {
}
.t2 {
  position: relative;
}
.t2 img {
}

.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: #fff2f2;
}

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

@media only screen and (min-width: 640px) {
  .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 {
    top: 2.05rem;
    left: -1.55rem;
  }

  .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 {
  }
  .bz-51 {
    position: relative;
    height: 167px;
  }
}